Skip to content

Commit 1fbb3ab

Browse files
Generate new package class
1 parent 813a495 commit 1fbb3ab

File tree

1 file changed

+142
-0
lines changed

1 file changed

+142
-0
lines changed

src/package.ts

Lines changed: 142 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,33 @@ const deviceRegistrationTokenTypeLinkId = package["DeviceRegistrationToken"].idL
7272
const pushNotificationNotifyInsertHandlerCodeTypeLinkId = package["PushNotificationNotifyInsertHandlerCode"].idLocal();
7373
const pushNotificationTreeTypeLinkId = package["PushNotificationTree"].idLocal();
7474
```
75+
#### Use name field to get the name of the link
76+
```ts
77+
const package = new Package({deep});
78+
const pushNotificationNotifyInsertHandler = package["PushNotificationNotifyInsertHandler"].name;
79+
const typeOfValueOfPushNotificationBody = package["TypeOfValueOfPushNotificationBody"].name;
80+
const pushNotificationTitle = package["PushNotificationTitle"].name;
81+
const typeOfValueOfPushNotificationTitle = package["TypeOfValueOfPushNotificationTitle"].name;
82+
const notify = package["Notify"].name;
83+
const notified = package["Notified"].name;
84+
const handlePushNotificationNotifyInsert = package["HandlePushNotificationNotifyInsert"].name;
85+
const treeIncludeFromCurrentPushNotificationBody = package["TreeIncludeFromCurrentPushNotificationBody"].name;
86+
const treeIncludeFromCurrentPushNotificationTitle = package["TreeIncludeFromCurrentPushNotificationTitle"].name;
87+
const treeIncludeNodePushNotification = package["TreeIncludeNodePushNotification"].name;
88+
const handleUpdateOfPushNotification = package["HandleUpdateOfPushNotification"].name;
89+
const serviceAccount = package["ServiceAccount"].name;
90+
const typeOfValueOfServiceAccount = package["TypeOfValueOfServiceAccount"].name;
91+
const usesServiceAccount = package["UsesServiceAccount"].name;
92+
const pushNotification = package["PushNotification"].name;
93+
const pushNotificationBody = package["PushNotificationBody"].name;
94+
const typeOfValueOfPushNotification = package["TypeOfValueOfPushNotification"].name;
95+
const webPushCertificate = package["WebPushCertificate"].name;
96+
const usesWebPushCertificate = package["UsesWebPushCertificate"].name;
97+
const typeOfValueOfWebPushCertificate = package["TypeOfValueOfWebPushCertificate"].name;
98+
const deviceRegistrationToken = package["DeviceRegistrationToken"].name;
99+
const pushNotificationNotifyInsertHandlerCode = package["PushNotificationNotifyInsertHandlerCode"].name;
100+
const pushNotificationTree = package["PushNotificationTree"].name;
101+
```
75102
*/
76103
export class Package extends BasePackage {
77104

@@ -95,6 +122,11 @@ export class Package extends BasePackage {
95122
const package = new Package({deep});
96123
const pushNotificationNotifyInsertHandlerTypeLinkId = await package["PushNotificationNotifyInsertHandler"].localId();
97124
```
125+
#### Use name field to get the name of the PushNotificationNotifyInsertHandler link
126+
```ts
127+
const package = new Package({deep});
128+
const pushNotificationNotifyInsertHandler = await package["PushNotificationNotifyInsertHandler"].name;
129+
```
98130
*/
99131
public "PushNotificationNotifyInsertHandler" = this.createEntity("PushNotificationNotifyInsertHandler");
100132
/**
@@ -109,6 +141,11 @@ export class Package extends BasePackage {
109141
const package = new Package({deep});
110142
const typeOfValueOfPushNotificationBodyTypeLinkId = await package["TypeOfValueOfPushNotificationBody"].localId();
111143
```
144+
#### Use name field to get the name of the TypeOfValueOfPushNotificationBody link
145+
```ts
146+
const package = new Package({deep});
147+
const typeOfValueOfPushNotificationBody = await package["TypeOfValueOfPushNotificationBody"].name;
148+
```
112149
*/
113150
public "TypeOfValueOfPushNotificationBody" = this.createEntity("TypeOfValueOfPushNotificationBody");
114151
/**
@@ -123,6 +160,11 @@ export class Package extends BasePackage {
123160
const package = new Package({deep});
124161
const pushNotificationTitleTypeLinkId = await package["PushNotificationTitle"].localId();
125162
```
163+
#### Use name field to get the name of the PushNotificationTitle link
164+
```ts
165+
const package = new Package({deep});
166+
const pushNotificationTitle = await package["PushNotificationTitle"].name;
167+
```
126168
*/
127169
public "PushNotificationTitle" = this.createEntity("PushNotificationTitle");
128170
/**
@@ -137,6 +179,11 @@ export class Package extends BasePackage {
137179
const package = new Package({deep});
138180
const typeOfValueOfPushNotificationTitleTypeLinkId = await package["TypeOfValueOfPushNotificationTitle"].localId();
139181
```
182+
#### Use name field to get the name of the TypeOfValueOfPushNotificationTitle link
183+
```ts
184+
const package = new Package({deep});
185+
const typeOfValueOfPushNotificationTitle = await package["TypeOfValueOfPushNotificationTitle"].name;
186+
```
140187
*/
141188
public "TypeOfValueOfPushNotificationTitle" = this.createEntity("TypeOfValueOfPushNotificationTitle");
142189
/**
@@ -151,6 +198,11 @@ export class Package extends BasePackage {
151198
const package = new Package({deep});
152199
const notifyTypeLinkId = await package["Notify"].localId();
153200
```
201+
#### Use name field to get the name of the Notify link
202+
```ts
203+
const package = new Package({deep});
204+
const notify = await package["Notify"].name;
205+
```
154206
*/
155207
public "Notify" = this.createEntity("Notify");
156208
/**
@@ -165,6 +217,11 @@ export class Package extends BasePackage {
165217
const package = new Package({deep});
166218
const notifiedTypeLinkId = await package["Notified"].localId();
167219
```
220+
#### Use name field to get the name of the Notified link
221+
```ts
222+
const package = new Package({deep});
223+
const notified = await package["Notified"].name;
224+
```
168225
*/
169226
public "Notified" = this.createEntity("Notified");
170227
/**
@@ -179,6 +236,11 @@ export class Package extends BasePackage {
179236
const package = new Package({deep});
180237
const handlePushNotificationNotifyInsertTypeLinkId = await package["HandlePushNotificationNotifyInsert"].localId();
181238
```
239+
#### Use name field to get the name of the HandlePushNotificationNotifyInsert link
240+
```ts
241+
const package = new Package({deep});
242+
const handlePushNotificationNotifyInsert = await package["HandlePushNotificationNotifyInsert"].name;
243+
```
182244
*/
183245
public "HandlePushNotificationNotifyInsert" = this.createEntity("HandlePushNotificationNotifyInsert");
184246
/**
@@ -193,6 +255,11 @@ export class Package extends BasePackage {
193255
const package = new Package({deep});
194256
const treeIncludeFromCurrentPushNotificationBodyTypeLinkId = await package["TreeIncludeFromCurrentPushNotificationBody"].localId();
195257
```
258+
#### Use name field to get the name of the TreeIncludeFromCurrentPushNotificationBody link
259+
```ts
260+
const package = new Package({deep});
261+
const treeIncludeFromCurrentPushNotificationBody = await package["TreeIncludeFromCurrentPushNotificationBody"].name;
262+
```
196263
*/
197264
public "TreeIncludeFromCurrentPushNotificationBody" = this.createEntity("TreeIncludeFromCurrentPushNotificationBody");
198265
/**
@@ -207,6 +274,11 @@ export class Package extends BasePackage {
207274
const package = new Package({deep});
208275
const treeIncludeFromCurrentPushNotificationTitleTypeLinkId = await package["TreeIncludeFromCurrentPushNotificationTitle"].localId();
209276
```
277+
#### Use name field to get the name of the TreeIncludeFromCurrentPushNotificationTitle link
278+
```ts
279+
const package = new Package({deep});
280+
const treeIncludeFromCurrentPushNotificationTitle = await package["TreeIncludeFromCurrentPushNotificationTitle"].name;
281+
```
210282
*/
211283
public "TreeIncludeFromCurrentPushNotificationTitle" = this.createEntity("TreeIncludeFromCurrentPushNotificationTitle");
212284
/**
@@ -221,6 +293,11 @@ export class Package extends BasePackage {
221293
const package = new Package({deep});
222294
const treeIncludeNodePushNotificationTypeLinkId = await package["TreeIncludeNodePushNotification"].localId();
223295
```
296+
#### Use name field to get the name of the TreeIncludeNodePushNotification link
297+
```ts
298+
const package = new Package({deep});
299+
const treeIncludeNodePushNotification = await package["TreeIncludeNodePushNotification"].name;
300+
```
224301
*/
225302
public "TreeIncludeNodePushNotification" = this.createEntity("TreeIncludeNodePushNotification");
226303
/**
@@ -235,6 +312,11 @@ export class Package extends BasePackage {
235312
const package = new Package({deep});
236313
const handleUpdateOfPushNotificationTypeLinkId = await package["HandleUpdateOfPushNotification"].localId();
237314
```
315+
#### Use name field to get the name of the HandleUpdateOfPushNotification link
316+
```ts
317+
const package = new Package({deep});
318+
const handleUpdateOfPushNotification = await package["HandleUpdateOfPushNotification"].name;
319+
```
238320
*/
239321
public "HandleUpdateOfPushNotification" = this.createEntity("HandleUpdateOfPushNotification");
240322
/**
@@ -249,6 +331,11 @@ export class Package extends BasePackage {
249331
const package = new Package({deep});
250332
const serviceAccountTypeLinkId = await package["ServiceAccount"].localId();
251333
```
334+
#### Use name field to get the name of the ServiceAccount link
335+
```ts
336+
const package = new Package({deep});
337+
const serviceAccount = await package["ServiceAccount"].name;
338+
```
252339
*/
253340
public "ServiceAccount" = this.createEntity("ServiceAccount");
254341
/**
@@ -263,6 +350,11 @@ export class Package extends BasePackage {
263350
const package = new Package({deep});
264351
const typeOfValueOfServiceAccountTypeLinkId = await package["TypeOfValueOfServiceAccount"].localId();
265352
```
353+
#### Use name field to get the name of the TypeOfValueOfServiceAccount link
354+
```ts
355+
const package = new Package({deep});
356+
const typeOfValueOfServiceAccount = await package["TypeOfValueOfServiceAccount"].name;
357+
```
266358
*/
267359
public "TypeOfValueOfServiceAccount" = this.createEntity("TypeOfValueOfServiceAccount");
268360
/**
@@ -277,6 +369,11 @@ export class Package extends BasePackage {
277369
const package = new Package({deep});
278370
const usesServiceAccountTypeLinkId = await package["UsesServiceAccount"].localId();
279371
```
372+
#### Use name field to get the name of the UsesServiceAccount link
373+
```ts
374+
const package = new Package({deep});
375+
const usesServiceAccount = await package["UsesServiceAccount"].name;
376+
```
280377
*/
281378
public "UsesServiceAccount" = this.createEntity("UsesServiceAccount");
282379
/**
@@ -291,6 +388,11 @@ export class Package extends BasePackage {
291388
const package = new Package({deep});
292389
const pushNotificationTypeLinkId = await package["PushNotification"].localId();
293390
```
391+
#### Use name field to get the name of the PushNotification link
392+
```ts
393+
const package = new Package({deep});
394+
const pushNotification = await package["PushNotification"].name;
395+
```
294396
*/
295397
public "PushNotification" = this.createEntity("PushNotification");
296398
/**
@@ -305,6 +407,11 @@ export class Package extends BasePackage {
305407
const package = new Package({deep});
306408
const pushNotificationBodyTypeLinkId = await package["PushNotificationBody"].localId();
307409
```
410+
#### Use name field to get the name of the PushNotificationBody link
411+
```ts
412+
const package = new Package({deep});
413+
const pushNotificationBody = await package["PushNotificationBody"].name;
414+
```
308415
*/
309416
public "PushNotificationBody" = this.createEntity("PushNotificationBody");
310417
/**
@@ -319,6 +426,11 @@ export class Package extends BasePackage {
319426
const package = new Package({deep});
320427
const typeOfValueOfPushNotificationTypeLinkId = await package["TypeOfValueOfPushNotification"].localId();
321428
```
429+
#### Use name field to get the name of the TypeOfValueOfPushNotification link
430+
```ts
431+
const package = new Package({deep});
432+
const typeOfValueOfPushNotification = await package["TypeOfValueOfPushNotification"].name;
433+
```
322434
*/
323435
public "TypeOfValueOfPushNotification" = this.createEntity("TypeOfValueOfPushNotification");
324436
/**
@@ -333,6 +445,11 @@ export class Package extends BasePackage {
333445
const package = new Package({deep});
334446
const webPushCertificateTypeLinkId = await package["WebPushCertificate"].localId();
335447
```
448+
#### Use name field to get the name of the WebPushCertificate link
449+
```ts
450+
const package = new Package({deep});
451+
const webPushCertificate = await package["WebPushCertificate"].name;
452+
```
336453
*/
337454
public "WebPushCertificate" = this.createEntity("WebPushCertificate");
338455
/**
@@ -347,6 +464,11 @@ export class Package extends BasePackage {
347464
const package = new Package({deep});
348465
const usesWebPushCertificateTypeLinkId = await package["UsesWebPushCertificate"].localId();
349466
```
467+
#### Use name field to get the name of the UsesWebPushCertificate link
468+
```ts
469+
const package = new Package({deep});
470+
const usesWebPushCertificate = await package["UsesWebPushCertificate"].name;
471+
```
350472
*/
351473
public "UsesWebPushCertificate" = this.createEntity("UsesWebPushCertificate");
352474
/**
@@ -361,6 +483,11 @@ export class Package extends BasePackage {
361483
const package = new Package({deep});
362484
const typeOfValueOfWebPushCertificateTypeLinkId = await package["TypeOfValueOfWebPushCertificate"].localId();
363485
```
486+
#### Use name field to get the name of the TypeOfValueOfWebPushCertificate link
487+
```ts
488+
const package = new Package({deep});
489+
const typeOfValueOfWebPushCertificate = await package["TypeOfValueOfWebPushCertificate"].name;
490+
```
364491
*/
365492
public "TypeOfValueOfWebPushCertificate" = this.createEntity("TypeOfValueOfWebPushCertificate");
366493
/**
@@ -375,6 +502,11 @@ export class Package extends BasePackage {
375502
const package = new Package({deep});
376503
const deviceRegistrationTokenTypeLinkId = await package["DeviceRegistrationToken"].localId();
377504
```
505+
#### Use name field to get the name of the DeviceRegistrationToken link
506+
```ts
507+
const package = new Package({deep});
508+
const deviceRegistrationToken = await package["DeviceRegistrationToken"].name;
509+
```
378510
*/
379511
public "DeviceRegistrationToken" = this.createEntity("DeviceRegistrationToken");
380512
/**
@@ -389,6 +521,11 @@ export class Package extends BasePackage {
389521
const package = new Package({deep});
390522
const pushNotificationNotifyInsertHandlerCodeTypeLinkId = await package["PushNotificationNotifyInsertHandlerCode"].localId();
391523
```
524+
#### Use name field to get the name of the PushNotificationNotifyInsertHandlerCode link
525+
```ts
526+
const package = new Package({deep});
527+
const pushNotificationNotifyInsertHandlerCode = await package["PushNotificationNotifyInsertHandlerCode"].name;
528+
```
392529
*/
393530
public "PushNotificationNotifyInsertHandlerCode" = this.createEntity("PushNotificationNotifyInsertHandlerCode");
394531
/**
@@ -403,6 +540,11 @@ export class Package extends BasePackage {
403540
const package = new Package({deep});
404541
const pushNotificationTreeTypeLinkId = await package["PushNotificationTree"].localId();
405542
```
543+
#### Use name field to get the name of the PushNotificationTree link
544+
```ts
545+
const package = new Package({deep});
546+
const pushNotificationTree = await package["PushNotificationTree"].name;
547+
```
406548
*/
407549
public "PushNotificationTree" = this.createEntity("PushNotificationTree");
408550

0 commit comments

Comments
 (0)