pmcf 3.1.1 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/services/influxdb.mjs +13 -2
- package/src/services/mosquitto.mjs +24 -5
- package/types/base.d.mts +0 -6
- package/types/cluster.d.mts +0 -38
- package/types/extra-source-service.d.mts +0 -16
- package/types/host.d.mts +0 -24
- package/types/location.d.mts +0 -29
- package/types/network-interfaces/ethernet.d.mts +0 -40
- package/types/network-interfaces/loopback.d.mts +0 -40
- package/types/network-interfaces/network-interface.d.mts +0 -40
- package/types/network-interfaces/wireguard.d.mts +0 -40
- package/types/network-interfaces/wlan.d.mts +0 -60
- package/types/network-support.d.mts +0 -11
- package/types/network.d.mts +0 -20
- package/types/owner.d.mts +0 -14
- package/types/root.d.mts +0 -29
- package/types/service.d.mts +0 -36
- package/types/services/bind.d.mts +0 -44
- package/types/services/chrony.d.mts +0 -32
- package/types/services/influxdb.d.mts +17 -33
- package/types/services/kea.d.mts +0 -37
- package/types/services/mosquitto.d.mts +32 -33
- package/types/services/openldap.d.mts +0 -35
- package/types/services/systemd-journal-remote.d.mts +0 -32
- package/types/services/systemd-journal-upload.d.mts +0 -33
- package/types/services/systemd-journal.d.mts +0 -32
- package/types/services/systemd-resolved.d.mts +0 -32
- package/types/services/systemd-timesyncd.d.mts +0 -32
- package/types/subnet.d.mts +0 -1
package/types/service.d.mts
CHANGED
|
@@ -31,7 +31,6 @@ export namespace endpointProperties {
|
|
|
31
31
|
collection: boolean;
|
|
32
32
|
private?: boolean;
|
|
33
33
|
depends?: string;
|
|
34
|
-
additionalAttributes: string[];
|
|
35
34
|
description?: string;
|
|
36
35
|
default?: any;
|
|
37
36
|
set?: Function;
|
|
@@ -46,7 +45,6 @@ export namespace endpointProperties {
|
|
|
46
45
|
collection: boolean;
|
|
47
46
|
private?: boolean;
|
|
48
47
|
depends?: string;
|
|
49
|
-
additionalAttributes: string[];
|
|
50
48
|
description?: string;
|
|
51
49
|
default?: any;
|
|
52
50
|
set?: Function;
|
|
@@ -62,7 +60,6 @@ export namespace endpointProperties {
|
|
|
62
60
|
mandatory: boolean;
|
|
63
61
|
private?: boolean;
|
|
64
62
|
depends?: string;
|
|
65
|
-
additionalAttributes: string[];
|
|
66
63
|
description?: string;
|
|
67
64
|
default?: any;
|
|
68
65
|
set?: Function;
|
|
@@ -77,7 +74,6 @@ export namespace endpointProperties {
|
|
|
77
74
|
collection: boolean;
|
|
78
75
|
private?: boolean;
|
|
79
76
|
depends?: string;
|
|
80
|
-
additionalAttributes: string[];
|
|
81
77
|
description?: string;
|
|
82
78
|
default?: any;
|
|
83
79
|
set?: Function;
|
|
@@ -117,7 +113,6 @@ export namespace ServiceTypeDefinition {
|
|
|
117
113
|
collection: boolean;
|
|
118
114
|
private?: boolean;
|
|
119
115
|
depends?: string;
|
|
120
|
-
additionalAttributes: string[];
|
|
121
116
|
description?: string;
|
|
122
117
|
default?: any;
|
|
123
118
|
set?: Function;
|
|
@@ -132,7 +127,6 @@ export namespace ServiceTypeDefinition {
|
|
|
132
127
|
collection: boolean;
|
|
133
128
|
private?: boolean;
|
|
134
129
|
depends?: string;
|
|
135
|
-
additionalAttributes: string[];
|
|
136
130
|
description?: string;
|
|
137
131
|
default?: any;
|
|
138
132
|
set?: Function;
|
|
@@ -152,7 +146,6 @@ export namespace ServiceTypeDefinition {
|
|
|
152
146
|
collection: boolean;
|
|
153
147
|
private?: boolean;
|
|
154
148
|
depends?: string;
|
|
155
|
-
additionalAttributes: string[];
|
|
156
149
|
description?: string;
|
|
157
150
|
default?: any;
|
|
158
151
|
set?: Function;
|
|
@@ -167,7 +160,6 @@ export namespace ServiceTypeDefinition {
|
|
|
167
160
|
collection: boolean;
|
|
168
161
|
private?: boolean;
|
|
169
162
|
depends?: string;
|
|
170
|
-
additionalAttributes: string[];
|
|
171
163
|
description?: string;
|
|
172
164
|
default?: any;
|
|
173
165
|
set?: Function;
|
|
@@ -183,7 +175,6 @@ export namespace ServiceTypeDefinition {
|
|
|
183
175
|
collection: boolean;
|
|
184
176
|
private?: boolean;
|
|
185
177
|
depends?: string;
|
|
186
|
-
additionalAttributes: string[];
|
|
187
178
|
description?: string;
|
|
188
179
|
set?: Function;
|
|
189
180
|
get?: Function;
|
|
@@ -197,7 +188,6 @@ export namespace ServiceTypeDefinition {
|
|
|
197
188
|
mandatory: boolean;
|
|
198
189
|
private?: boolean;
|
|
199
190
|
depends?: string;
|
|
200
|
-
additionalAttributes: string[];
|
|
201
191
|
description?: string;
|
|
202
192
|
default?: any;
|
|
203
193
|
set?: Function;
|
|
@@ -219,7 +209,6 @@ export namespace ServiceTypeDefinition {
|
|
|
219
209
|
collection: boolean;
|
|
220
210
|
private?: boolean;
|
|
221
211
|
depends?: string;
|
|
222
|
-
additionalAttributes: string[];
|
|
223
212
|
description?: string;
|
|
224
213
|
default?: any;
|
|
225
214
|
set?: Function;
|
|
@@ -251,7 +240,6 @@ export namespace ServiceTypeDefinition {
|
|
|
251
240
|
collection: boolean;
|
|
252
241
|
private?: boolean;
|
|
253
242
|
depends?: string;
|
|
254
|
-
additionalAttributes: string[];
|
|
255
243
|
description?: string;
|
|
256
244
|
default?: any;
|
|
257
245
|
set?: Function;
|
|
@@ -266,7 +254,6 @@ export namespace ServiceTypeDefinition {
|
|
|
266
254
|
collection: boolean;
|
|
267
255
|
private?: boolean;
|
|
268
256
|
depends?: string;
|
|
269
|
-
additionalAttributes: string[];
|
|
270
257
|
description?: string;
|
|
271
258
|
default?: any;
|
|
272
259
|
set?: Function;
|
|
@@ -281,7 +268,6 @@ export namespace ServiceTypeDefinition {
|
|
|
281
268
|
mandatory: boolean;
|
|
282
269
|
private?: boolean;
|
|
283
270
|
depends?: string;
|
|
284
|
-
additionalAttributes: string[];
|
|
285
271
|
description?: string;
|
|
286
272
|
default?: any;
|
|
287
273
|
set?: Function;
|
|
@@ -296,7 +282,6 @@ export namespace ServiceTypeDefinition {
|
|
|
296
282
|
collection: boolean;
|
|
297
283
|
private?: boolean;
|
|
298
284
|
depends?: string;
|
|
299
|
-
additionalAttributes: string[];
|
|
300
285
|
description?: string;
|
|
301
286
|
default?: any;
|
|
302
287
|
set?: Function;
|
|
@@ -311,7 +296,6 @@ export namespace ServiceTypeDefinition {
|
|
|
311
296
|
collection: boolean;
|
|
312
297
|
private?: boolean;
|
|
313
298
|
depends?: string;
|
|
314
|
-
additionalAttributes: string[];
|
|
315
299
|
description?: string;
|
|
316
300
|
default?: any;
|
|
317
301
|
set?: Function;
|
|
@@ -326,7 +310,6 @@ export namespace ServiceTypeDefinition {
|
|
|
326
310
|
mandatory: boolean;
|
|
327
311
|
private?: boolean;
|
|
328
312
|
depends?: string;
|
|
329
|
-
additionalAttributes: string[];
|
|
330
313
|
description?: string;
|
|
331
314
|
default?: any;
|
|
332
315
|
set?: Function;
|
|
@@ -341,7 +324,6 @@ export namespace ServiceTypeDefinition {
|
|
|
341
324
|
collection: boolean;
|
|
342
325
|
private?: boolean;
|
|
343
326
|
depends?: string;
|
|
344
|
-
additionalAttributes: string[];
|
|
345
327
|
description?: string;
|
|
346
328
|
default?: any;
|
|
347
329
|
set?: Function;
|
|
@@ -356,7 +338,6 @@ export namespace ServiceTypeDefinition {
|
|
|
356
338
|
mandatory: boolean;
|
|
357
339
|
private?: boolean;
|
|
358
340
|
depends?: string;
|
|
359
|
-
additionalAttributes: string[];
|
|
360
341
|
description?: string;
|
|
361
342
|
default?: any;
|
|
362
343
|
set?: Function;
|
|
@@ -371,7 +352,6 @@ export namespace ServiceTypeDefinition {
|
|
|
371
352
|
collection: boolean;
|
|
372
353
|
private?: boolean;
|
|
373
354
|
depends?: string;
|
|
374
|
-
additionalAttributes: string[];
|
|
375
355
|
description?: string;
|
|
376
356
|
default?: any;
|
|
377
357
|
set?: Function;
|
|
@@ -403,7 +383,6 @@ export class Service extends Base {
|
|
|
403
383
|
collection: boolean;
|
|
404
384
|
private?: boolean;
|
|
405
385
|
depends?: string;
|
|
406
|
-
additionalAttributes: string[];
|
|
407
386
|
description?: string;
|
|
408
387
|
default?: any;
|
|
409
388
|
set?: Function;
|
|
@@ -418,7 +397,6 @@ export class Service extends Base {
|
|
|
418
397
|
collection: boolean;
|
|
419
398
|
private?: boolean;
|
|
420
399
|
depends?: string;
|
|
421
|
-
additionalAttributes: string[];
|
|
422
400
|
description?: string;
|
|
423
401
|
default?: any;
|
|
424
402
|
set?: Function;
|
|
@@ -438,7 +416,6 @@ export class Service extends Base {
|
|
|
438
416
|
collection: boolean;
|
|
439
417
|
private?: boolean;
|
|
440
418
|
depends?: string;
|
|
441
|
-
additionalAttributes: string[];
|
|
442
419
|
description?: string;
|
|
443
420
|
default?: any;
|
|
444
421
|
set?: Function;
|
|
@@ -453,7 +430,6 @@ export class Service extends Base {
|
|
|
453
430
|
collection: boolean;
|
|
454
431
|
private?: boolean;
|
|
455
432
|
depends?: string;
|
|
456
|
-
additionalAttributes: string[];
|
|
457
433
|
description?: string;
|
|
458
434
|
default?: any;
|
|
459
435
|
set?: Function;
|
|
@@ -469,7 +445,6 @@ export class Service extends Base {
|
|
|
469
445
|
collection: boolean;
|
|
470
446
|
private?: boolean;
|
|
471
447
|
depends?: string;
|
|
472
|
-
additionalAttributes: string[];
|
|
473
448
|
description?: string;
|
|
474
449
|
set?: Function;
|
|
475
450
|
get?: Function;
|
|
@@ -483,7 +458,6 @@ export class Service extends Base {
|
|
|
483
458
|
mandatory: boolean;
|
|
484
459
|
private?: boolean;
|
|
485
460
|
depends?: string;
|
|
486
|
-
additionalAttributes: string[];
|
|
487
461
|
description?: string;
|
|
488
462
|
default?: any;
|
|
489
463
|
set?: Function;
|
|
@@ -503,7 +477,6 @@ export class Service extends Base {
|
|
|
503
477
|
collection: boolean;
|
|
504
478
|
private?: boolean;
|
|
505
479
|
depends?: string;
|
|
506
|
-
additionalAttributes: string[];
|
|
507
480
|
description?: string;
|
|
508
481
|
default?: any;
|
|
509
482
|
set?: Function;
|
|
@@ -535,7 +508,6 @@ export class Service extends Base {
|
|
|
535
508
|
collection: boolean;
|
|
536
509
|
private?: boolean;
|
|
537
510
|
depends?: string;
|
|
538
|
-
additionalAttributes: string[];
|
|
539
511
|
description?: string;
|
|
540
512
|
default?: any;
|
|
541
513
|
set?: Function;
|
|
@@ -550,7 +522,6 @@ export class Service extends Base {
|
|
|
550
522
|
collection: boolean;
|
|
551
523
|
private?: boolean;
|
|
552
524
|
depends?: string;
|
|
553
|
-
additionalAttributes: string[];
|
|
554
525
|
description?: string;
|
|
555
526
|
default?: any;
|
|
556
527
|
set?: Function;
|
|
@@ -565,7 +536,6 @@ export class Service extends Base {
|
|
|
565
536
|
mandatory: boolean;
|
|
566
537
|
private?: boolean;
|
|
567
538
|
depends?: string;
|
|
568
|
-
additionalAttributes: string[];
|
|
569
539
|
description?: string;
|
|
570
540
|
default?: any;
|
|
571
541
|
set?: Function;
|
|
@@ -580,7 +550,6 @@ export class Service extends Base {
|
|
|
580
550
|
collection: boolean;
|
|
581
551
|
private?: boolean;
|
|
582
552
|
depends?: string;
|
|
583
|
-
additionalAttributes: string[];
|
|
584
553
|
description?: string;
|
|
585
554
|
default?: any;
|
|
586
555
|
set?: Function;
|
|
@@ -595,7 +564,6 @@ export class Service extends Base {
|
|
|
595
564
|
collection: boolean;
|
|
596
565
|
private?: boolean;
|
|
597
566
|
depends?: string;
|
|
598
|
-
additionalAttributes: string[];
|
|
599
567
|
description?: string;
|
|
600
568
|
default?: any;
|
|
601
569
|
set?: Function;
|
|
@@ -610,7 +578,6 @@ export class Service extends Base {
|
|
|
610
578
|
mandatory: boolean;
|
|
611
579
|
private?: boolean;
|
|
612
580
|
depends?: string;
|
|
613
|
-
additionalAttributes: string[];
|
|
614
581
|
description?: string;
|
|
615
582
|
default?: any;
|
|
616
583
|
set?: Function;
|
|
@@ -625,7 +592,6 @@ export class Service extends Base {
|
|
|
625
592
|
collection: boolean;
|
|
626
593
|
private?: boolean;
|
|
627
594
|
depends?: string;
|
|
628
|
-
additionalAttributes: string[];
|
|
629
595
|
description?: string;
|
|
630
596
|
default?: any;
|
|
631
597
|
set?: Function;
|
|
@@ -640,7 +606,6 @@ export class Service extends Base {
|
|
|
640
606
|
mandatory: boolean;
|
|
641
607
|
private?: boolean;
|
|
642
608
|
depends?: string;
|
|
643
|
-
additionalAttributes: string[];
|
|
644
609
|
description?: string;
|
|
645
610
|
default?: any;
|
|
646
611
|
set?: Function;
|
|
@@ -655,7 +620,6 @@ export class Service extends Base {
|
|
|
655
620
|
collection: boolean;
|
|
656
621
|
private?: boolean;
|
|
657
622
|
depends?: string;
|
|
658
|
-
additionalAttributes: string[];
|
|
659
623
|
description?: string;
|
|
660
624
|
default?: any;
|
|
661
625
|
set?: Function;
|
|
@@ -23,7 +23,6 @@ export class BindService extends ExtraSourceService {
|
|
|
23
23
|
collection: boolean;
|
|
24
24
|
private?: boolean;
|
|
25
25
|
depends?: string;
|
|
26
|
-
additionalAttributes: string[];
|
|
27
26
|
description?: string;
|
|
28
27
|
default?: any;
|
|
29
28
|
set?: Function;
|
|
@@ -38,7 +37,6 @@ export class BindService extends ExtraSourceService {
|
|
|
38
37
|
collection: boolean;
|
|
39
38
|
private?: boolean;
|
|
40
39
|
depends?: string;
|
|
41
|
-
additionalAttributes: string[];
|
|
42
40
|
description?: string;
|
|
43
41
|
default?: any;
|
|
44
42
|
set?: Function;
|
|
@@ -58,7 +56,6 @@ export class BindService extends ExtraSourceService {
|
|
|
58
56
|
collection: boolean;
|
|
59
57
|
private?: boolean;
|
|
60
58
|
depends?: string;
|
|
61
|
-
additionalAttributes: string[];
|
|
62
59
|
description?: string;
|
|
63
60
|
default?: any;
|
|
64
61
|
set?: Function;
|
|
@@ -73,7 +70,6 @@ export class BindService extends ExtraSourceService {
|
|
|
73
70
|
collection: boolean;
|
|
74
71
|
private?: boolean;
|
|
75
72
|
depends?: string;
|
|
76
|
-
additionalAttributes: string[];
|
|
77
73
|
description?: string;
|
|
78
74
|
default?: any;
|
|
79
75
|
set?: Function;
|
|
@@ -89,7 +85,6 @@ export class BindService extends ExtraSourceService {
|
|
|
89
85
|
collection: boolean;
|
|
90
86
|
private?: boolean;
|
|
91
87
|
depends?: string;
|
|
92
|
-
additionalAttributes: string[];
|
|
93
88
|
description?: string;
|
|
94
89
|
set?: Function;
|
|
95
90
|
get?: Function;
|
|
@@ -103,7 +98,6 @@ export class BindService extends ExtraSourceService {
|
|
|
103
98
|
mandatory: boolean;
|
|
104
99
|
private?: boolean;
|
|
105
100
|
depends?: string;
|
|
106
|
-
additionalAttributes: string[];
|
|
107
101
|
description?: string;
|
|
108
102
|
default?: any;
|
|
109
103
|
set?: Function;
|
|
@@ -123,7 +117,6 @@ export class BindService extends ExtraSourceService {
|
|
|
123
117
|
collection: boolean;
|
|
124
118
|
private?: boolean;
|
|
125
119
|
depends?: string;
|
|
126
|
-
additionalAttributes: string[];
|
|
127
120
|
description?: string;
|
|
128
121
|
default?: any;
|
|
129
122
|
set?: Function;
|
|
@@ -155,7 +148,6 @@ export class BindService extends ExtraSourceService {
|
|
|
155
148
|
collection: boolean;
|
|
156
149
|
private?: boolean;
|
|
157
150
|
depends?: string;
|
|
158
|
-
additionalAttributes: string[];
|
|
159
151
|
description?: string;
|
|
160
152
|
default?: any;
|
|
161
153
|
set?: Function;
|
|
@@ -170,7 +162,6 @@ export class BindService extends ExtraSourceService {
|
|
|
170
162
|
collection: boolean;
|
|
171
163
|
private?: boolean;
|
|
172
164
|
depends?: string;
|
|
173
|
-
additionalAttributes: string[];
|
|
174
165
|
description?: string;
|
|
175
166
|
default?: any;
|
|
176
167
|
set?: Function;
|
|
@@ -185,7 +176,6 @@ export class BindService extends ExtraSourceService {
|
|
|
185
176
|
mandatory: boolean;
|
|
186
177
|
private?: boolean;
|
|
187
178
|
depends?: string;
|
|
188
|
-
additionalAttributes: string[];
|
|
189
179
|
description?: string;
|
|
190
180
|
default?: any;
|
|
191
181
|
set?: Function;
|
|
@@ -200,7 +190,6 @@ export class BindService extends ExtraSourceService {
|
|
|
200
190
|
collection: boolean;
|
|
201
191
|
private?: boolean;
|
|
202
192
|
depends?: string;
|
|
203
|
-
additionalAttributes: string[];
|
|
204
193
|
description?: string;
|
|
205
194
|
default?: any;
|
|
206
195
|
set?: Function;
|
|
@@ -215,7 +204,6 @@ export class BindService extends ExtraSourceService {
|
|
|
215
204
|
collection: boolean;
|
|
216
205
|
private?: boolean;
|
|
217
206
|
depends?: string;
|
|
218
|
-
additionalAttributes: string[];
|
|
219
207
|
description?: string;
|
|
220
208
|
default?: any;
|
|
221
209
|
set?: Function;
|
|
@@ -230,7 +218,6 @@ export class BindService extends ExtraSourceService {
|
|
|
230
218
|
mandatory: boolean;
|
|
231
219
|
private?: boolean;
|
|
232
220
|
depends?: string;
|
|
233
|
-
additionalAttributes: string[];
|
|
234
221
|
description?: string;
|
|
235
222
|
default?: any;
|
|
236
223
|
set?: Function;
|
|
@@ -245,7 +232,6 @@ export class BindService extends ExtraSourceService {
|
|
|
245
232
|
collection: boolean;
|
|
246
233
|
private?: boolean;
|
|
247
234
|
depends?: string;
|
|
248
|
-
additionalAttributes: string[];
|
|
249
235
|
description?: string;
|
|
250
236
|
default?: any;
|
|
251
237
|
set?: Function;
|
|
@@ -260,7 +246,6 @@ export class BindService extends ExtraSourceService {
|
|
|
260
246
|
mandatory: boolean;
|
|
261
247
|
private?: boolean;
|
|
262
248
|
depends?: string;
|
|
263
|
-
additionalAttributes: string[];
|
|
264
249
|
description?: string;
|
|
265
250
|
default?: any;
|
|
266
251
|
set?: Function;
|
|
@@ -275,7 +260,6 @@ export class BindService extends ExtraSourceService {
|
|
|
275
260
|
collection: boolean;
|
|
276
261
|
private?: boolean;
|
|
277
262
|
depends?: string;
|
|
278
|
-
additionalAttributes: string[];
|
|
279
263
|
description?: string;
|
|
280
264
|
default?: any;
|
|
281
265
|
set?: Function;
|
|
@@ -310,7 +294,6 @@ export class BindService extends ExtraSourceService {
|
|
|
310
294
|
collection: boolean;
|
|
311
295
|
private?: boolean;
|
|
312
296
|
depends?: string;
|
|
313
|
-
additionalAttributes: string[];
|
|
314
297
|
description?: string;
|
|
315
298
|
default?: any;
|
|
316
299
|
set?: Function;
|
|
@@ -325,7 +308,6 @@ export class BindService extends ExtraSourceService {
|
|
|
325
308
|
collection: boolean;
|
|
326
309
|
private?: boolean;
|
|
327
310
|
depends?: string;
|
|
328
|
-
additionalAttributes: string[];
|
|
329
311
|
description?: string;
|
|
330
312
|
default?: any;
|
|
331
313
|
set?: Function;
|
|
@@ -345,7 +327,6 @@ export class BindService extends ExtraSourceService {
|
|
|
345
327
|
collection: boolean;
|
|
346
328
|
private?: boolean;
|
|
347
329
|
depends?: string;
|
|
348
|
-
additionalAttributes: string[];
|
|
349
330
|
description?: string;
|
|
350
331
|
default?: any;
|
|
351
332
|
set?: Function;
|
|
@@ -360,7 +341,6 @@ export class BindService extends ExtraSourceService {
|
|
|
360
341
|
collection: boolean;
|
|
361
342
|
private?: boolean;
|
|
362
343
|
depends?: string;
|
|
363
|
-
additionalAttributes: string[];
|
|
364
344
|
description?: string;
|
|
365
345
|
default?: any;
|
|
366
346
|
set?: Function;
|
|
@@ -376,7 +356,6 @@ export class BindService extends ExtraSourceService {
|
|
|
376
356
|
collection: boolean;
|
|
377
357
|
private?: boolean;
|
|
378
358
|
depends?: string;
|
|
379
|
-
additionalAttributes: string[];
|
|
380
359
|
description?: string;
|
|
381
360
|
set?: Function;
|
|
382
361
|
get?: Function;
|
|
@@ -390,7 +369,6 @@ export class BindService extends ExtraSourceService {
|
|
|
390
369
|
mandatory: boolean;
|
|
391
370
|
private?: boolean;
|
|
392
371
|
depends?: string;
|
|
393
|
-
additionalAttributes: string[];
|
|
394
372
|
description?: string;
|
|
395
373
|
default?: any;
|
|
396
374
|
set?: Function;
|
|
@@ -410,7 +388,6 @@ export class BindService extends ExtraSourceService {
|
|
|
410
388
|
collection: boolean;
|
|
411
389
|
private?: boolean;
|
|
412
390
|
depends?: string;
|
|
413
|
-
additionalAttributes: string[];
|
|
414
391
|
description?: string;
|
|
415
392
|
default?: any;
|
|
416
393
|
set?: Function;
|
|
@@ -442,7 +419,6 @@ export class BindService extends ExtraSourceService {
|
|
|
442
419
|
collection: boolean;
|
|
443
420
|
private?: boolean;
|
|
444
421
|
depends?: string;
|
|
445
|
-
additionalAttributes: string[];
|
|
446
422
|
description?: string;
|
|
447
423
|
default?: any;
|
|
448
424
|
set?: Function;
|
|
@@ -457,7 +433,6 @@ export class BindService extends ExtraSourceService {
|
|
|
457
433
|
collection: boolean;
|
|
458
434
|
private?: boolean;
|
|
459
435
|
depends?: string;
|
|
460
|
-
additionalAttributes: string[];
|
|
461
436
|
description?: string;
|
|
462
437
|
default?: any;
|
|
463
438
|
set?: Function;
|
|
@@ -472,7 +447,6 @@ export class BindService extends ExtraSourceService {
|
|
|
472
447
|
mandatory: boolean;
|
|
473
448
|
private?: boolean;
|
|
474
449
|
depends?: string;
|
|
475
|
-
additionalAttributes: string[];
|
|
476
450
|
description?: string;
|
|
477
451
|
default?: any;
|
|
478
452
|
set?: Function;
|
|
@@ -487,7 +461,6 @@ export class BindService extends ExtraSourceService {
|
|
|
487
461
|
collection: boolean;
|
|
488
462
|
private?: boolean;
|
|
489
463
|
depends?: string;
|
|
490
|
-
additionalAttributes: string[];
|
|
491
464
|
description?: string;
|
|
492
465
|
default?: any;
|
|
493
466
|
set?: Function;
|
|
@@ -502,7 +475,6 @@ export class BindService extends ExtraSourceService {
|
|
|
502
475
|
collection: boolean;
|
|
503
476
|
private?: boolean;
|
|
504
477
|
depends?: string;
|
|
505
|
-
additionalAttributes: string[];
|
|
506
478
|
description?: string;
|
|
507
479
|
default?: any;
|
|
508
480
|
set?: Function;
|
|
@@ -517,7 +489,6 @@ export class BindService extends ExtraSourceService {
|
|
|
517
489
|
mandatory: boolean;
|
|
518
490
|
private?: boolean;
|
|
519
491
|
depends?: string;
|
|
520
|
-
additionalAttributes: string[];
|
|
521
492
|
description?: string;
|
|
522
493
|
default?: any;
|
|
523
494
|
set?: Function;
|
|
@@ -532,7 +503,6 @@ export class BindService extends ExtraSourceService {
|
|
|
532
503
|
collection: boolean;
|
|
533
504
|
private?: boolean;
|
|
534
505
|
depends?: string;
|
|
535
|
-
additionalAttributes: string[];
|
|
536
506
|
description?: string;
|
|
537
507
|
default?: any;
|
|
538
508
|
set?: Function;
|
|
@@ -547,7 +517,6 @@ export class BindService extends ExtraSourceService {
|
|
|
547
517
|
mandatory: boolean;
|
|
548
518
|
private?: boolean;
|
|
549
519
|
depends?: string;
|
|
550
|
-
additionalAttributes: string[];
|
|
551
520
|
description?: string;
|
|
552
521
|
default?: any;
|
|
553
522
|
set?: Function;
|
|
@@ -562,7 +531,6 @@ export class BindService extends ExtraSourceService {
|
|
|
562
531
|
collection: boolean;
|
|
563
532
|
private?: boolean;
|
|
564
533
|
depends?: string;
|
|
565
|
-
additionalAttributes: string[];
|
|
566
534
|
description?: string;
|
|
567
535
|
default?: any;
|
|
568
536
|
set?: Function;
|
|
@@ -610,7 +578,6 @@ export class BindService extends ExtraSourceService {
|
|
|
610
578
|
collection: boolean;
|
|
611
579
|
private?: boolean;
|
|
612
580
|
depends?: string;
|
|
613
|
-
additionalAttributes: string[];
|
|
614
581
|
description?: string;
|
|
615
582
|
default?: any;
|
|
616
583
|
set?: Function;
|
|
@@ -625,7 +592,6 @@ export class BindService extends ExtraSourceService {
|
|
|
625
592
|
collection: boolean;
|
|
626
593
|
private?: boolean;
|
|
627
594
|
depends?: string;
|
|
628
|
-
additionalAttributes: string[];
|
|
629
595
|
description?: string;
|
|
630
596
|
default?: any;
|
|
631
597
|
set?: Function;
|
|
@@ -640,7 +606,6 @@ export class BindService extends ExtraSourceService {
|
|
|
640
606
|
collection: boolean;
|
|
641
607
|
private?: boolean;
|
|
642
608
|
depends?: string;
|
|
643
|
-
additionalAttributes: string[];
|
|
644
609
|
description?: string;
|
|
645
610
|
default?: any;
|
|
646
611
|
set?: Function;
|
|
@@ -656,7 +621,6 @@ export class BindService extends ExtraSourceService {
|
|
|
656
621
|
collection: boolean;
|
|
657
622
|
private?: boolean;
|
|
658
623
|
depends?: string;
|
|
659
|
-
additionalAttributes: string[];
|
|
660
624
|
description?: string;
|
|
661
625
|
set?: Function;
|
|
662
626
|
get?: Function;
|
|
@@ -670,7 +634,6 @@ export class BindService extends ExtraSourceService {
|
|
|
670
634
|
mandatory: boolean;
|
|
671
635
|
private?: boolean;
|
|
672
636
|
depends?: string;
|
|
673
|
-
additionalAttributes: string[];
|
|
674
637
|
description?: string;
|
|
675
638
|
default?: any;
|
|
676
639
|
set?: Function;
|
|
@@ -691,7 +654,6 @@ export class BindService extends ExtraSourceService {
|
|
|
691
654
|
collection: boolean;
|
|
692
655
|
private?: boolean;
|
|
693
656
|
depends?: string;
|
|
694
|
-
additionalAttributes: string[];
|
|
695
657
|
description?: string;
|
|
696
658
|
set?: Function;
|
|
697
659
|
get?: Function;
|
|
@@ -705,7 +667,6 @@ export class BindService extends ExtraSourceService {
|
|
|
705
667
|
collection: boolean;
|
|
706
668
|
private?: boolean;
|
|
707
669
|
depends?: string;
|
|
708
|
-
additionalAttributes: string[];
|
|
709
670
|
description?: string;
|
|
710
671
|
default?: any;
|
|
711
672
|
set?: Function;
|
|
@@ -725,7 +686,6 @@ export class BindService extends ExtraSourceService {
|
|
|
725
686
|
collection: boolean;
|
|
726
687
|
private?: boolean;
|
|
727
688
|
depends?: string;
|
|
728
|
-
additionalAttributes: string[];
|
|
729
689
|
description?: string;
|
|
730
690
|
default?: any;
|
|
731
691
|
set?: Function;
|
|
@@ -740,7 +700,6 @@ export class BindService extends ExtraSourceService {
|
|
|
740
700
|
collection: boolean;
|
|
741
701
|
private?: boolean;
|
|
742
702
|
depends?: string;
|
|
743
|
-
additionalAttributes: string[];
|
|
744
703
|
description?: string;
|
|
745
704
|
default?: any;
|
|
746
705
|
set?: Function;
|
|
@@ -755,7 +714,6 @@ export class BindService extends ExtraSourceService {
|
|
|
755
714
|
collection: boolean;
|
|
756
715
|
private?: boolean;
|
|
757
716
|
depends?: string;
|
|
758
|
-
additionalAttributes: string[];
|
|
759
717
|
description?: string;
|
|
760
718
|
default?: any;
|
|
761
719
|
set?: Function;
|
|
@@ -770,7 +728,6 @@ export class BindService extends ExtraSourceService {
|
|
|
770
728
|
collection: boolean;
|
|
771
729
|
private?: boolean;
|
|
772
730
|
depends?: string;
|
|
773
|
-
additionalAttributes: string[];
|
|
774
731
|
description?: string;
|
|
775
732
|
default?: any;
|
|
776
733
|
set?: Function;
|
|
@@ -785,7 +742,6 @@ export class BindService extends ExtraSourceService {
|
|
|
785
742
|
mandatory: boolean;
|
|
786
743
|
private?: boolean;
|
|
787
744
|
depends?: string;
|
|
788
|
-
additionalAttributes: string[];
|
|
789
745
|
description?: string;
|
|
790
746
|
default?: any;
|
|
791
747
|
set?: Function;
|