@wix/metro-common-builders 1.0.1088 → 1.0.1090
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/dist/es/src/proto/client/index.d.ts +86 -0
- package/dist/es/src/proto/index.d.ts +43 -0
- package/dist/es/src/proto/index.js +614 -5
- package/dist/es/src/proto/server/index.d.ts +86 -0
- package/dist/src/proto/client/index.d.ts +86 -0
- package/dist/src/proto/index.d.ts +43 -0
- package/dist/src/proto/index.js +614 -5
- package/dist/src/proto/server/index.d.ts +86 -0
- package/package.json +3 -3
|
@@ -87,6 +87,7 @@ declare namespace $requests {
|
|
|
87
87
|
oldFqdn?: string;
|
|
88
88
|
spiInfo?: $requests.wix.coreservices.businessschema.v1.ISpiInfo;
|
|
89
89
|
implementsInterfaceFqdns?: string[];
|
|
90
|
+
domainEventsReadPermission?: string;
|
|
90
91
|
}
|
|
91
92
|
export class EntityInfo implements IEntityInfo {
|
|
92
93
|
constructor(data?: IEntityInfo);
|
|
@@ -106,6 +107,7 @@ declare namespace $requests {
|
|
|
106
107
|
oldFqdn?: string;
|
|
107
108
|
spiInfo?: $requests.wix.coreservices.businessschema.v1.ISpiInfo;
|
|
108
109
|
implementsInterfaceFqdns?: string[];
|
|
110
|
+
domainEventsReadPermission?: string;
|
|
109
111
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
110
112
|
}
|
|
111
113
|
export interface ISpiInfo {
|
|
@@ -400,58 +402,68 @@ declare namespace $requests {
|
|
|
400
402
|
actionName?: string;
|
|
401
403
|
itemField?: string;
|
|
402
404
|
fieldmaskField?: string;
|
|
405
|
+
namespace?: string;
|
|
403
406
|
}
|
|
404
407
|
export class CreateMethod implements ICreateMethod {
|
|
405
408
|
constructor(data?: ICreateMethod);
|
|
406
409
|
actionName?: string;
|
|
407
410
|
itemField?: string;
|
|
408
411
|
fieldmaskField?: string;
|
|
412
|
+
namespace?: string;
|
|
409
413
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
410
414
|
}
|
|
411
415
|
export interface IGetItemMethod {
|
|
412
416
|
actionName?: string;
|
|
413
417
|
idField?: string;
|
|
414
418
|
itemField?: string;
|
|
419
|
+
namespace?: string;
|
|
415
420
|
}
|
|
416
421
|
export class GetItemMethod implements IGetItemMethod {
|
|
417
422
|
constructor(data?: IGetItemMethod);
|
|
418
423
|
actionName?: string;
|
|
419
424
|
idField?: string;
|
|
420
425
|
itemField?: string;
|
|
426
|
+
namespace?: string;
|
|
421
427
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
422
428
|
}
|
|
423
429
|
export interface IUpdateMethod {
|
|
424
430
|
actionName?: string;
|
|
425
431
|
itemField?: string;
|
|
426
432
|
fieldmaskField?: string;
|
|
433
|
+
namespace?: string;
|
|
427
434
|
}
|
|
428
435
|
export class UpdateMethod implements IUpdateMethod {
|
|
429
436
|
constructor(data?: IUpdateMethod);
|
|
430
437
|
actionName?: string;
|
|
431
438
|
itemField?: string;
|
|
432
439
|
fieldmaskField?: string;
|
|
440
|
+
namespace?: string;
|
|
433
441
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
434
442
|
}
|
|
435
443
|
export interface IUpsertMethod {
|
|
436
444
|
actionName?: string;
|
|
437
445
|
itemField?: string;
|
|
438
446
|
fieldmaskField?: string;
|
|
447
|
+
namespace?: string;
|
|
439
448
|
}
|
|
440
449
|
export class UpsertMethod implements IUpsertMethod {
|
|
441
450
|
constructor(data?: IUpsertMethod);
|
|
442
451
|
actionName?: string;
|
|
443
452
|
itemField?: string;
|
|
444
453
|
fieldmaskField?: string;
|
|
454
|
+
namespace?: string;
|
|
445
455
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
446
456
|
}
|
|
447
457
|
export interface IDeleteMethod {
|
|
448
458
|
actionName?: string;
|
|
449
459
|
idField?: string;
|
|
460
|
+
namespace?: string;
|
|
450
461
|
}
|
|
451
462
|
export class DeleteMethod implements IDeleteMethod {
|
|
452
463
|
constructor(data?: IDeleteMethod);
|
|
453
464
|
actionName?: string;
|
|
454
465
|
idField?: string;
|
|
466
|
+
namespace?: string;
|
|
455
467
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
456
468
|
}
|
|
457
469
|
export interface IListMethod {
|
|
@@ -459,6 +471,7 @@ declare namespace $requests {
|
|
|
459
471
|
idsField?: string;
|
|
460
472
|
itemsField?: string;
|
|
461
473
|
paging?: $requests.wix.coreservices.businessschema.v1.IPaging;
|
|
474
|
+
namespace?: string;
|
|
462
475
|
}
|
|
463
476
|
export class ListMethod implements IListMethod {
|
|
464
477
|
constructor(data?: IListMethod);
|
|
@@ -466,6 +479,7 @@ declare namespace $requests {
|
|
|
466
479
|
idsField?: string;
|
|
467
480
|
itemsField?: string;
|
|
468
481
|
paging?: $requests.wix.coreservices.businessschema.v1.IPaging;
|
|
482
|
+
namespace?: string;
|
|
469
483
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
470
484
|
}
|
|
471
485
|
export interface IQueryMethod {
|
|
@@ -475,6 +489,7 @@ declare namespace $requests {
|
|
|
475
489
|
paging?: $requests.wix.coreservices.businessschema.v1.IPaging;
|
|
476
490
|
wql?: $requests.wix.coreservices.businessschema.v1.IWql;
|
|
477
491
|
itemField?: string;
|
|
492
|
+
namespace?: string;
|
|
478
493
|
}
|
|
479
494
|
export class QueryMethod implements IQueryMethod {
|
|
480
495
|
constructor(data?: IQueryMethod);
|
|
@@ -484,30 +499,35 @@ declare namespace $requests {
|
|
|
484
499
|
paging?: $requests.wix.coreservices.businessschema.v1.IPaging;
|
|
485
500
|
wql?: $requests.wix.coreservices.businessschema.v1.IWql;
|
|
486
501
|
itemField?: string;
|
|
502
|
+
namespace?: string;
|
|
487
503
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
488
504
|
}
|
|
489
505
|
export interface IBulkCreateMethod {
|
|
490
506
|
actionName?: string;
|
|
491
507
|
itemField?: string;
|
|
492
508
|
fieldmaskField?: string;
|
|
509
|
+
namespace?: string;
|
|
493
510
|
}
|
|
494
511
|
export class BulkCreateMethod implements IBulkCreateMethod {
|
|
495
512
|
constructor(data?: IBulkCreateMethod);
|
|
496
513
|
actionName?: string;
|
|
497
514
|
itemField?: string;
|
|
498
515
|
fieldmaskField?: string;
|
|
516
|
+
namespace?: string;
|
|
499
517
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
500
518
|
}
|
|
501
519
|
export interface IBulkUpdateMethod {
|
|
502
520
|
actionName?: string;
|
|
503
521
|
itemField?: string;
|
|
504
522
|
fieldmaskField?: string;
|
|
523
|
+
namespace?: string;
|
|
505
524
|
}
|
|
506
525
|
export class BulkUpdateMethod implements IBulkUpdateMethod {
|
|
507
526
|
constructor(data?: IBulkUpdateMethod);
|
|
508
527
|
actionName?: string;
|
|
509
528
|
itemField?: string;
|
|
510
529
|
fieldmaskField?: string;
|
|
530
|
+
namespace?: string;
|
|
511
531
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
512
532
|
}
|
|
513
533
|
export interface IBulkUpdateByFilterMethod {
|
|
@@ -515,6 +535,7 @@ declare namespace $requests {
|
|
|
515
535
|
itemField?: string;
|
|
516
536
|
fieldmaskField?: string;
|
|
517
537
|
filterField?: string;
|
|
538
|
+
namespace?: string;
|
|
518
539
|
}
|
|
519
540
|
export class BulkUpdateByFilterMethod implements IBulkUpdateByFilterMethod {
|
|
520
541
|
constructor(data?: IBulkUpdateByFilterMethod);
|
|
@@ -522,38 +543,45 @@ declare namespace $requests {
|
|
|
522
543
|
itemField?: string;
|
|
523
544
|
fieldmaskField?: string;
|
|
524
545
|
filterField?: string;
|
|
546
|
+
namespace?: string;
|
|
525
547
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
526
548
|
}
|
|
527
549
|
export interface IBulkUpsertMethod {
|
|
528
550
|
actionName?: string;
|
|
529
551
|
itemField?: string;
|
|
530
552
|
fieldmaskField?: string;
|
|
553
|
+
namespace?: string;
|
|
531
554
|
}
|
|
532
555
|
export class BulkUpsertMethod implements IBulkUpsertMethod {
|
|
533
556
|
constructor(data?: IBulkUpsertMethod);
|
|
534
557
|
actionName?: string;
|
|
535
558
|
itemField?: string;
|
|
536
559
|
fieldmaskField?: string;
|
|
560
|
+
namespace?: string;
|
|
537
561
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
538
562
|
}
|
|
539
563
|
export interface IBulkDeleteMethod {
|
|
540
564
|
actionName?: string;
|
|
541
565
|
idsField?: string;
|
|
566
|
+
namespace?: string;
|
|
542
567
|
}
|
|
543
568
|
export class BulkDeleteMethod implements IBulkDeleteMethod {
|
|
544
569
|
constructor(data?: IBulkDeleteMethod);
|
|
545
570
|
actionName?: string;
|
|
546
571
|
idsField?: string;
|
|
572
|
+
namespace?: string;
|
|
547
573
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
548
574
|
}
|
|
549
575
|
export interface IBulkDeleteByFilterMethod {
|
|
550
576
|
actionName?: string;
|
|
551
577
|
filterField?: string;
|
|
578
|
+
namespace?: string;
|
|
552
579
|
}
|
|
553
580
|
export class BulkDeleteByFilterMethod implements IBulkDeleteByFilterMethod {
|
|
554
581
|
constructor(data?: IBulkDeleteByFilterMethod);
|
|
555
582
|
actionName?: string;
|
|
556
583
|
filterField?: string;
|
|
584
|
+
namespace?: string;
|
|
557
585
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
558
586
|
}
|
|
559
587
|
export interface IWql {
|
|
@@ -777,6 +805,7 @@ declare namespace $requests {
|
|
|
777
805
|
FORMAT = "FORMAT",
|
|
778
806
|
READ_ONLY = "READ_ONLY",
|
|
779
807
|
DECIMAL_VALUE = "DECIMAL_VALUE",
|
|
808
|
+
IMMUTABLE = "IMMUTABLE",
|
|
780
809
|
}
|
|
781
810
|
}
|
|
782
811
|
export interface IUniqueCombination {
|
|
@@ -970,10 +999,12 @@ declare namespace $requests {
|
|
|
970
999
|
}
|
|
971
1000
|
export interface ITriggerProtoArtifactRequest {
|
|
972
1001
|
protoArtifactId?: string;
|
|
1002
|
+
fqdns?: string[];
|
|
973
1003
|
}
|
|
974
1004
|
export class TriggerProtoArtifactRequest implements ITriggerProtoArtifactRequest {
|
|
975
1005
|
constructor(data?: ITriggerProtoArtifactRequest);
|
|
976
1006
|
protoArtifactId?: string;
|
|
1007
|
+
fqdns?: string[];
|
|
977
1008
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
978
1009
|
}
|
|
979
1010
|
export interface ITriggerProtoArtifactResponse {
|
|
@@ -1750,6 +1781,18 @@ declare namespace $requests {
|
|
|
1750
1781
|
cursorPaging?: $requests.wix.common.ICursorPaging;
|
|
1751
1782
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1752
1783
|
}
|
|
1784
|
+
export interface ICursorQuery {
|
|
1785
|
+
filter?: { [key: string]: any };
|
|
1786
|
+
sort?: $requests.wix.common.ISorting[];
|
|
1787
|
+
cursorPaging?: $requests.wix.common.ICursorPaging;
|
|
1788
|
+
}
|
|
1789
|
+
export class CursorQuery implements ICursorQuery {
|
|
1790
|
+
constructor(data?: ICursorQuery);
|
|
1791
|
+
filter?: { [key: string]: any };
|
|
1792
|
+
sort?: $requests.wix.common.ISorting[];
|
|
1793
|
+
cursorPaging?: $requests.wix.common.ICursorPaging;
|
|
1794
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1795
|
+
}
|
|
1753
1796
|
export interface ISearch {
|
|
1754
1797
|
filter?: { [key: string]: any };
|
|
1755
1798
|
sort?: $requests.wix.common.ISorting[];
|
|
@@ -2754,6 +2797,7 @@ declare namespace $responses {
|
|
|
2754
2797
|
oldFqdn: string;
|
|
2755
2798
|
spiInfo?: $responses.wix.coreservices.businessschema.v1.ISpiInfo;
|
|
2756
2799
|
implementsInterfaceFqdns: string[];
|
|
2800
|
+
domainEventsReadPermission?: string;
|
|
2757
2801
|
}
|
|
2758
2802
|
export class EntityInfo implements IEntityInfo {
|
|
2759
2803
|
constructor(data?: IEntityInfo);
|
|
@@ -2773,6 +2817,7 @@ declare namespace $responses {
|
|
|
2773
2817
|
oldFqdn: string;
|
|
2774
2818
|
spiInfo?: $responses.wix.coreservices.businessschema.v1.ISpiInfo;
|
|
2775
2819
|
implementsInterfaceFqdns: string[];
|
|
2820
|
+
domainEventsReadPermission?: string;
|
|
2776
2821
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2777
2822
|
}
|
|
2778
2823
|
export interface ISpiInfo {
|
|
@@ -3067,58 +3112,68 @@ declare namespace $responses {
|
|
|
3067
3112
|
actionName: string;
|
|
3068
3113
|
itemField: string;
|
|
3069
3114
|
fieldmaskField?: string;
|
|
3115
|
+
namespace?: string;
|
|
3070
3116
|
}
|
|
3071
3117
|
export class CreateMethod implements ICreateMethod {
|
|
3072
3118
|
constructor(data?: ICreateMethod);
|
|
3073
3119
|
actionName: string;
|
|
3074
3120
|
itemField: string;
|
|
3075
3121
|
fieldmaskField?: string;
|
|
3122
|
+
namespace?: string;
|
|
3076
3123
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3077
3124
|
}
|
|
3078
3125
|
export interface IGetItemMethod {
|
|
3079
3126
|
actionName: string;
|
|
3080
3127
|
idField: string;
|
|
3081
3128
|
itemField: string;
|
|
3129
|
+
namespace?: string;
|
|
3082
3130
|
}
|
|
3083
3131
|
export class GetItemMethod implements IGetItemMethod {
|
|
3084
3132
|
constructor(data?: IGetItemMethod);
|
|
3085
3133
|
actionName: string;
|
|
3086
3134
|
idField: string;
|
|
3087
3135
|
itemField: string;
|
|
3136
|
+
namespace?: string;
|
|
3088
3137
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3089
3138
|
}
|
|
3090
3139
|
export interface IUpdateMethod {
|
|
3091
3140
|
actionName: string;
|
|
3092
3141
|
itemField: string;
|
|
3093
3142
|
fieldmaskField?: string;
|
|
3143
|
+
namespace?: string;
|
|
3094
3144
|
}
|
|
3095
3145
|
export class UpdateMethod implements IUpdateMethod {
|
|
3096
3146
|
constructor(data?: IUpdateMethod);
|
|
3097
3147
|
actionName: string;
|
|
3098
3148
|
itemField: string;
|
|
3099
3149
|
fieldmaskField?: string;
|
|
3150
|
+
namespace?: string;
|
|
3100
3151
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3101
3152
|
}
|
|
3102
3153
|
export interface IUpsertMethod {
|
|
3103
3154
|
actionName: string;
|
|
3104
3155
|
itemField: string;
|
|
3105
3156
|
fieldmaskField?: string;
|
|
3157
|
+
namespace?: string;
|
|
3106
3158
|
}
|
|
3107
3159
|
export class UpsertMethod implements IUpsertMethod {
|
|
3108
3160
|
constructor(data?: IUpsertMethod);
|
|
3109
3161
|
actionName: string;
|
|
3110
3162
|
itemField: string;
|
|
3111
3163
|
fieldmaskField?: string;
|
|
3164
|
+
namespace?: string;
|
|
3112
3165
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3113
3166
|
}
|
|
3114
3167
|
export interface IDeleteMethod {
|
|
3115
3168
|
actionName: string;
|
|
3116
3169
|
idField: string;
|
|
3170
|
+
namespace?: string;
|
|
3117
3171
|
}
|
|
3118
3172
|
export class DeleteMethod implements IDeleteMethod {
|
|
3119
3173
|
constructor(data?: IDeleteMethod);
|
|
3120
3174
|
actionName: string;
|
|
3121
3175
|
idField: string;
|
|
3176
|
+
namespace?: string;
|
|
3122
3177
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3123
3178
|
}
|
|
3124
3179
|
export interface IListMethod {
|
|
@@ -3126,6 +3181,7 @@ declare namespace $responses {
|
|
|
3126
3181
|
idsField: string;
|
|
3127
3182
|
itemsField: string;
|
|
3128
3183
|
paging?: $responses.wix.coreservices.businessschema.v1.IPaging;
|
|
3184
|
+
namespace?: string;
|
|
3129
3185
|
}
|
|
3130
3186
|
export class ListMethod implements IListMethod {
|
|
3131
3187
|
constructor(data?: IListMethod);
|
|
@@ -3133,6 +3189,7 @@ declare namespace $responses {
|
|
|
3133
3189
|
idsField: string;
|
|
3134
3190
|
itemsField: string;
|
|
3135
3191
|
paging?: $responses.wix.coreservices.businessschema.v1.IPaging;
|
|
3192
|
+
namespace?: string;
|
|
3136
3193
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3137
3194
|
}
|
|
3138
3195
|
export interface IQueryMethod {
|
|
@@ -3142,6 +3199,7 @@ declare namespace $responses {
|
|
|
3142
3199
|
paging?: $responses.wix.coreservices.businessschema.v1.IPaging;
|
|
3143
3200
|
wql?: $responses.wix.coreservices.businessschema.v1.IWql;
|
|
3144
3201
|
itemField: string;
|
|
3202
|
+
namespace?: string;
|
|
3145
3203
|
}
|
|
3146
3204
|
export class QueryMethod implements IQueryMethod {
|
|
3147
3205
|
constructor(data?: IQueryMethod);
|
|
@@ -3151,30 +3209,35 @@ declare namespace $responses {
|
|
|
3151
3209
|
paging?: $responses.wix.coreservices.businessschema.v1.IPaging;
|
|
3152
3210
|
wql?: $responses.wix.coreservices.businessschema.v1.IWql;
|
|
3153
3211
|
itemField: string;
|
|
3212
|
+
namespace?: string;
|
|
3154
3213
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3155
3214
|
}
|
|
3156
3215
|
export interface IBulkCreateMethod {
|
|
3157
3216
|
actionName: string;
|
|
3158
3217
|
itemField: string;
|
|
3159
3218
|
fieldmaskField?: string;
|
|
3219
|
+
namespace?: string;
|
|
3160
3220
|
}
|
|
3161
3221
|
export class BulkCreateMethod implements IBulkCreateMethod {
|
|
3162
3222
|
constructor(data?: IBulkCreateMethod);
|
|
3163
3223
|
actionName: string;
|
|
3164
3224
|
itemField: string;
|
|
3165
3225
|
fieldmaskField?: string;
|
|
3226
|
+
namespace?: string;
|
|
3166
3227
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3167
3228
|
}
|
|
3168
3229
|
export interface IBulkUpdateMethod {
|
|
3169
3230
|
actionName: string;
|
|
3170
3231
|
itemField: string;
|
|
3171
3232
|
fieldmaskField?: string;
|
|
3233
|
+
namespace?: string;
|
|
3172
3234
|
}
|
|
3173
3235
|
export class BulkUpdateMethod implements IBulkUpdateMethod {
|
|
3174
3236
|
constructor(data?: IBulkUpdateMethod);
|
|
3175
3237
|
actionName: string;
|
|
3176
3238
|
itemField: string;
|
|
3177
3239
|
fieldmaskField?: string;
|
|
3240
|
+
namespace?: string;
|
|
3178
3241
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3179
3242
|
}
|
|
3180
3243
|
export interface IBulkUpdateByFilterMethod {
|
|
@@ -3182,6 +3245,7 @@ declare namespace $responses {
|
|
|
3182
3245
|
itemField: string;
|
|
3183
3246
|
fieldmaskField?: string;
|
|
3184
3247
|
filterField: string;
|
|
3248
|
+
namespace?: string;
|
|
3185
3249
|
}
|
|
3186
3250
|
export class BulkUpdateByFilterMethod implements IBulkUpdateByFilterMethod {
|
|
3187
3251
|
constructor(data?: IBulkUpdateByFilterMethod);
|
|
@@ -3189,38 +3253,45 @@ declare namespace $responses {
|
|
|
3189
3253
|
itemField: string;
|
|
3190
3254
|
fieldmaskField?: string;
|
|
3191
3255
|
filterField: string;
|
|
3256
|
+
namespace?: string;
|
|
3192
3257
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3193
3258
|
}
|
|
3194
3259
|
export interface IBulkUpsertMethod {
|
|
3195
3260
|
actionName: string;
|
|
3196
3261
|
itemField: string;
|
|
3197
3262
|
fieldmaskField?: string;
|
|
3263
|
+
namespace?: string;
|
|
3198
3264
|
}
|
|
3199
3265
|
export class BulkUpsertMethod implements IBulkUpsertMethod {
|
|
3200
3266
|
constructor(data?: IBulkUpsertMethod);
|
|
3201
3267
|
actionName: string;
|
|
3202
3268
|
itemField: string;
|
|
3203
3269
|
fieldmaskField?: string;
|
|
3270
|
+
namespace?: string;
|
|
3204
3271
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3205
3272
|
}
|
|
3206
3273
|
export interface IBulkDeleteMethod {
|
|
3207
3274
|
actionName: string;
|
|
3208
3275
|
idsField: string;
|
|
3276
|
+
namespace?: string;
|
|
3209
3277
|
}
|
|
3210
3278
|
export class BulkDeleteMethod implements IBulkDeleteMethod {
|
|
3211
3279
|
constructor(data?: IBulkDeleteMethod);
|
|
3212
3280
|
actionName: string;
|
|
3213
3281
|
idsField: string;
|
|
3282
|
+
namespace?: string;
|
|
3214
3283
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3215
3284
|
}
|
|
3216
3285
|
export interface IBulkDeleteByFilterMethod {
|
|
3217
3286
|
actionName: string;
|
|
3218
3287
|
filterField: string;
|
|
3288
|
+
namespace?: string;
|
|
3219
3289
|
}
|
|
3220
3290
|
export class BulkDeleteByFilterMethod implements IBulkDeleteByFilterMethod {
|
|
3221
3291
|
constructor(data?: IBulkDeleteByFilterMethod);
|
|
3222
3292
|
actionName: string;
|
|
3223
3293
|
filterField: string;
|
|
3294
|
+
namespace?: string;
|
|
3224
3295
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3225
3296
|
}
|
|
3226
3297
|
export interface IWql {
|
|
@@ -3444,6 +3515,7 @@ declare namespace $responses {
|
|
|
3444
3515
|
FORMAT = "FORMAT",
|
|
3445
3516
|
READ_ONLY = "READ_ONLY",
|
|
3446
3517
|
DECIMAL_VALUE = "DECIMAL_VALUE",
|
|
3518
|
+
IMMUTABLE = "IMMUTABLE",
|
|
3447
3519
|
}
|
|
3448
3520
|
}
|
|
3449
3521
|
export interface IUniqueCombination {
|
|
@@ -3637,10 +3709,12 @@ declare namespace $responses {
|
|
|
3637
3709
|
}
|
|
3638
3710
|
export interface ITriggerProtoArtifactRequest {
|
|
3639
3711
|
protoArtifactId: string;
|
|
3712
|
+
fqdns: string[];
|
|
3640
3713
|
}
|
|
3641
3714
|
export class TriggerProtoArtifactRequest implements ITriggerProtoArtifactRequest {
|
|
3642
3715
|
constructor(data?: ITriggerProtoArtifactRequest);
|
|
3643
3716
|
protoArtifactId: string;
|
|
3717
|
+
fqdns: string[];
|
|
3644
3718
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3645
3719
|
}
|
|
3646
3720
|
export interface ITriggerProtoArtifactResponse {
|
|
@@ -4417,6 +4491,18 @@ declare namespace $responses {
|
|
|
4417
4491
|
cursorPaging?: $responses.wix.common.ICursorPaging;
|
|
4418
4492
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4419
4493
|
}
|
|
4494
|
+
export interface ICursorQuery {
|
|
4495
|
+
filter?: { [key: string]: any };
|
|
4496
|
+
sort: $responses.wix.common.ISorting[];
|
|
4497
|
+
cursorPaging?: $responses.wix.common.ICursorPaging;
|
|
4498
|
+
}
|
|
4499
|
+
export class CursorQuery implements ICursorQuery {
|
|
4500
|
+
constructor(data?: ICursorQuery);
|
|
4501
|
+
filter?: { [key: string]: any };
|
|
4502
|
+
sort: $responses.wix.common.ISorting[];
|
|
4503
|
+
cursorPaging?: $responses.wix.common.ICursorPaging;
|
|
4504
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4505
|
+
}
|
|
4420
4506
|
export interface ISearch {
|
|
4421
4507
|
filter?: { [key: string]: any };
|
|
4422
4508
|
sort: $responses.wix.common.ISorting[];
|