@wix/metro-common-builders 1.0.1089 → 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 +56 -0
- package/dist/es/src/proto/index.d.ts +28 -0
- package/dist/es/src/proto/index.js +379 -1
- package/dist/es/src/proto/server/index.d.ts +56 -0
- package/dist/src/proto/client/index.d.ts +56 -0
- package/dist/src/proto/index.d.ts +28 -0
- package/dist/src/proto/index.js +379 -1
- package/dist/src/proto/server/index.d.ts +56 -0
- package/package.json +2 -2
|
@@ -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 {
|
|
@@ -2769,6 +2797,7 @@ declare namespace $responses {
|
|
|
2769
2797
|
oldFqdn: string;
|
|
2770
2798
|
spiInfo?: $responses.wix.coreservices.businessschema.v1.ISpiInfo;
|
|
2771
2799
|
implementsInterfaceFqdns: string[];
|
|
2800
|
+
domainEventsReadPermission?: string;
|
|
2772
2801
|
}
|
|
2773
2802
|
export class EntityInfo implements IEntityInfo {
|
|
2774
2803
|
constructor(data?: IEntityInfo);
|
|
@@ -2788,6 +2817,7 @@ declare namespace $responses {
|
|
|
2788
2817
|
oldFqdn: string;
|
|
2789
2818
|
spiInfo?: $responses.wix.coreservices.businessschema.v1.ISpiInfo;
|
|
2790
2819
|
implementsInterfaceFqdns: string[];
|
|
2820
|
+
domainEventsReadPermission?: string;
|
|
2791
2821
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2792
2822
|
}
|
|
2793
2823
|
export interface ISpiInfo {
|
|
@@ -3082,58 +3112,68 @@ declare namespace $responses {
|
|
|
3082
3112
|
actionName: string;
|
|
3083
3113
|
itemField: string;
|
|
3084
3114
|
fieldmaskField?: string;
|
|
3115
|
+
namespace?: string;
|
|
3085
3116
|
}
|
|
3086
3117
|
export class CreateMethod implements ICreateMethod {
|
|
3087
3118
|
constructor(data?: ICreateMethod);
|
|
3088
3119
|
actionName: string;
|
|
3089
3120
|
itemField: string;
|
|
3090
3121
|
fieldmaskField?: string;
|
|
3122
|
+
namespace?: string;
|
|
3091
3123
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3092
3124
|
}
|
|
3093
3125
|
export interface IGetItemMethod {
|
|
3094
3126
|
actionName: string;
|
|
3095
3127
|
idField: string;
|
|
3096
3128
|
itemField: string;
|
|
3129
|
+
namespace?: string;
|
|
3097
3130
|
}
|
|
3098
3131
|
export class GetItemMethod implements IGetItemMethod {
|
|
3099
3132
|
constructor(data?: IGetItemMethod);
|
|
3100
3133
|
actionName: string;
|
|
3101
3134
|
idField: string;
|
|
3102
3135
|
itemField: string;
|
|
3136
|
+
namespace?: string;
|
|
3103
3137
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3104
3138
|
}
|
|
3105
3139
|
export interface IUpdateMethod {
|
|
3106
3140
|
actionName: string;
|
|
3107
3141
|
itemField: string;
|
|
3108
3142
|
fieldmaskField?: string;
|
|
3143
|
+
namespace?: string;
|
|
3109
3144
|
}
|
|
3110
3145
|
export class UpdateMethod implements IUpdateMethod {
|
|
3111
3146
|
constructor(data?: IUpdateMethod);
|
|
3112
3147
|
actionName: string;
|
|
3113
3148
|
itemField: string;
|
|
3114
3149
|
fieldmaskField?: string;
|
|
3150
|
+
namespace?: string;
|
|
3115
3151
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3116
3152
|
}
|
|
3117
3153
|
export interface IUpsertMethod {
|
|
3118
3154
|
actionName: string;
|
|
3119
3155
|
itemField: string;
|
|
3120
3156
|
fieldmaskField?: string;
|
|
3157
|
+
namespace?: string;
|
|
3121
3158
|
}
|
|
3122
3159
|
export class UpsertMethod implements IUpsertMethod {
|
|
3123
3160
|
constructor(data?: IUpsertMethod);
|
|
3124
3161
|
actionName: string;
|
|
3125
3162
|
itemField: string;
|
|
3126
3163
|
fieldmaskField?: string;
|
|
3164
|
+
namespace?: string;
|
|
3127
3165
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3128
3166
|
}
|
|
3129
3167
|
export interface IDeleteMethod {
|
|
3130
3168
|
actionName: string;
|
|
3131
3169
|
idField: string;
|
|
3170
|
+
namespace?: string;
|
|
3132
3171
|
}
|
|
3133
3172
|
export class DeleteMethod implements IDeleteMethod {
|
|
3134
3173
|
constructor(data?: IDeleteMethod);
|
|
3135
3174
|
actionName: string;
|
|
3136
3175
|
idField: string;
|
|
3176
|
+
namespace?: string;
|
|
3137
3177
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3138
3178
|
}
|
|
3139
3179
|
export interface IListMethod {
|
|
@@ -3141,6 +3181,7 @@ declare namespace $responses {
|
|
|
3141
3181
|
idsField: string;
|
|
3142
3182
|
itemsField: string;
|
|
3143
3183
|
paging?: $responses.wix.coreservices.businessschema.v1.IPaging;
|
|
3184
|
+
namespace?: string;
|
|
3144
3185
|
}
|
|
3145
3186
|
export class ListMethod implements IListMethod {
|
|
3146
3187
|
constructor(data?: IListMethod);
|
|
@@ -3148,6 +3189,7 @@ declare namespace $responses {
|
|
|
3148
3189
|
idsField: string;
|
|
3149
3190
|
itemsField: string;
|
|
3150
3191
|
paging?: $responses.wix.coreservices.businessschema.v1.IPaging;
|
|
3192
|
+
namespace?: string;
|
|
3151
3193
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3152
3194
|
}
|
|
3153
3195
|
export interface IQueryMethod {
|
|
@@ -3157,6 +3199,7 @@ declare namespace $responses {
|
|
|
3157
3199
|
paging?: $responses.wix.coreservices.businessschema.v1.IPaging;
|
|
3158
3200
|
wql?: $responses.wix.coreservices.businessschema.v1.IWql;
|
|
3159
3201
|
itemField: string;
|
|
3202
|
+
namespace?: string;
|
|
3160
3203
|
}
|
|
3161
3204
|
export class QueryMethod implements IQueryMethod {
|
|
3162
3205
|
constructor(data?: IQueryMethod);
|
|
@@ -3166,30 +3209,35 @@ declare namespace $responses {
|
|
|
3166
3209
|
paging?: $responses.wix.coreservices.businessschema.v1.IPaging;
|
|
3167
3210
|
wql?: $responses.wix.coreservices.businessschema.v1.IWql;
|
|
3168
3211
|
itemField: string;
|
|
3212
|
+
namespace?: string;
|
|
3169
3213
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3170
3214
|
}
|
|
3171
3215
|
export interface IBulkCreateMethod {
|
|
3172
3216
|
actionName: string;
|
|
3173
3217
|
itemField: string;
|
|
3174
3218
|
fieldmaskField?: string;
|
|
3219
|
+
namespace?: string;
|
|
3175
3220
|
}
|
|
3176
3221
|
export class BulkCreateMethod implements IBulkCreateMethod {
|
|
3177
3222
|
constructor(data?: IBulkCreateMethod);
|
|
3178
3223
|
actionName: string;
|
|
3179
3224
|
itemField: string;
|
|
3180
3225
|
fieldmaskField?: string;
|
|
3226
|
+
namespace?: string;
|
|
3181
3227
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3182
3228
|
}
|
|
3183
3229
|
export interface IBulkUpdateMethod {
|
|
3184
3230
|
actionName: string;
|
|
3185
3231
|
itemField: string;
|
|
3186
3232
|
fieldmaskField?: string;
|
|
3233
|
+
namespace?: string;
|
|
3187
3234
|
}
|
|
3188
3235
|
export class BulkUpdateMethod implements IBulkUpdateMethod {
|
|
3189
3236
|
constructor(data?: IBulkUpdateMethod);
|
|
3190
3237
|
actionName: string;
|
|
3191
3238
|
itemField: string;
|
|
3192
3239
|
fieldmaskField?: string;
|
|
3240
|
+
namespace?: string;
|
|
3193
3241
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3194
3242
|
}
|
|
3195
3243
|
export interface IBulkUpdateByFilterMethod {
|
|
@@ -3197,6 +3245,7 @@ declare namespace $responses {
|
|
|
3197
3245
|
itemField: string;
|
|
3198
3246
|
fieldmaskField?: string;
|
|
3199
3247
|
filterField: string;
|
|
3248
|
+
namespace?: string;
|
|
3200
3249
|
}
|
|
3201
3250
|
export class BulkUpdateByFilterMethod implements IBulkUpdateByFilterMethod {
|
|
3202
3251
|
constructor(data?: IBulkUpdateByFilterMethod);
|
|
@@ -3204,38 +3253,45 @@ declare namespace $responses {
|
|
|
3204
3253
|
itemField: string;
|
|
3205
3254
|
fieldmaskField?: string;
|
|
3206
3255
|
filterField: string;
|
|
3256
|
+
namespace?: string;
|
|
3207
3257
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3208
3258
|
}
|
|
3209
3259
|
export interface IBulkUpsertMethod {
|
|
3210
3260
|
actionName: string;
|
|
3211
3261
|
itemField: string;
|
|
3212
3262
|
fieldmaskField?: string;
|
|
3263
|
+
namespace?: string;
|
|
3213
3264
|
}
|
|
3214
3265
|
export class BulkUpsertMethod implements IBulkUpsertMethod {
|
|
3215
3266
|
constructor(data?: IBulkUpsertMethod);
|
|
3216
3267
|
actionName: string;
|
|
3217
3268
|
itemField: string;
|
|
3218
3269
|
fieldmaskField?: string;
|
|
3270
|
+
namespace?: string;
|
|
3219
3271
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3220
3272
|
}
|
|
3221
3273
|
export interface IBulkDeleteMethod {
|
|
3222
3274
|
actionName: string;
|
|
3223
3275
|
idsField: string;
|
|
3276
|
+
namespace?: string;
|
|
3224
3277
|
}
|
|
3225
3278
|
export class BulkDeleteMethod implements IBulkDeleteMethod {
|
|
3226
3279
|
constructor(data?: IBulkDeleteMethod);
|
|
3227
3280
|
actionName: string;
|
|
3228
3281
|
idsField: string;
|
|
3282
|
+
namespace?: string;
|
|
3229
3283
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3230
3284
|
}
|
|
3231
3285
|
export interface IBulkDeleteByFilterMethod {
|
|
3232
3286
|
actionName: string;
|
|
3233
3287
|
filterField: string;
|
|
3288
|
+
namespace?: string;
|
|
3234
3289
|
}
|
|
3235
3290
|
export class BulkDeleteByFilterMethod implements IBulkDeleteByFilterMethod {
|
|
3236
3291
|
constructor(data?: IBulkDeleteByFilterMethod);
|
|
3237
3292
|
actionName: string;
|
|
3238
3293
|
filterField: string;
|
|
3294
|
+
namespace?: string;
|
|
3239
3295
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3240
3296
|
}
|
|
3241
3297
|
export interface IWql {
|
|
@@ -87,6 +87,7 @@ declare namespace $wrapper {
|
|
|
87
87
|
oldFqdn?: (string | null);
|
|
88
88
|
spiInfo?: ($wrapper.wix.coreservices.businessschema.v1.ISpiInfo | null);
|
|
89
89
|
implementsInterfaceFqdns?: (string[] | null);
|
|
90
|
+
domainEventsReadPermission?: (string | null);
|
|
90
91
|
}
|
|
91
92
|
export class EntityInfo implements IEntityInfo {
|
|
92
93
|
constructor(data?: IEntityInfo);
|
|
@@ -106,6 +107,7 @@ declare namespace $wrapper {
|
|
|
106
107
|
oldFqdn?: (string | null);
|
|
107
108
|
spiInfo?: ($wrapper.wix.coreservices.businessschema.v1.ISpiInfo | null);
|
|
108
109
|
implementsInterfaceFqdns?: (string[] | null);
|
|
110
|
+
domainEventsReadPermission?: (string | null);
|
|
109
111
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
110
112
|
}
|
|
111
113
|
export interface ISpiInfo {
|
|
@@ -400,58 +402,68 @@ declare namespace $wrapper {
|
|
|
400
402
|
actionName?: (string | null);
|
|
401
403
|
itemField?: (string | null);
|
|
402
404
|
fieldmaskField?: (string | null);
|
|
405
|
+
namespace?: (string | null);
|
|
403
406
|
}
|
|
404
407
|
export class CreateMethod implements ICreateMethod {
|
|
405
408
|
constructor(data?: ICreateMethod);
|
|
406
409
|
actionName?: (string | null);
|
|
407
410
|
itemField?: (string | null);
|
|
408
411
|
fieldmaskField?: (string | null);
|
|
412
|
+
namespace?: (string | null);
|
|
409
413
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
410
414
|
}
|
|
411
415
|
export interface IGetItemMethod {
|
|
412
416
|
actionName?: (string | null);
|
|
413
417
|
idField?: (string | null);
|
|
414
418
|
itemField?: (string | null);
|
|
419
|
+
namespace?: (string | null);
|
|
415
420
|
}
|
|
416
421
|
export class GetItemMethod implements IGetItemMethod {
|
|
417
422
|
constructor(data?: IGetItemMethod);
|
|
418
423
|
actionName?: (string | null);
|
|
419
424
|
idField?: (string | null);
|
|
420
425
|
itemField?: (string | null);
|
|
426
|
+
namespace?: (string | null);
|
|
421
427
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
422
428
|
}
|
|
423
429
|
export interface IUpdateMethod {
|
|
424
430
|
actionName?: (string | null);
|
|
425
431
|
itemField?: (string | null);
|
|
426
432
|
fieldmaskField?: (string | null);
|
|
433
|
+
namespace?: (string | null);
|
|
427
434
|
}
|
|
428
435
|
export class UpdateMethod implements IUpdateMethod {
|
|
429
436
|
constructor(data?: IUpdateMethod);
|
|
430
437
|
actionName?: (string | null);
|
|
431
438
|
itemField?: (string | null);
|
|
432
439
|
fieldmaskField?: (string | null);
|
|
440
|
+
namespace?: (string | null);
|
|
433
441
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
434
442
|
}
|
|
435
443
|
export interface IUpsertMethod {
|
|
436
444
|
actionName?: (string | null);
|
|
437
445
|
itemField?: (string | null);
|
|
438
446
|
fieldmaskField?: (string | null);
|
|
447
|
+
namespace?: (string | null);
|
|
439
448
|
}
|
|
440
449
|
export class UpsertMethod implements IUpsertMethod {
|
|
441
450
|
constructor(data?: IUpsertMethod);
|
|
442
451
|
actionName?: (string | null);
|
|
443
452
|
itemField?: (string | null);
|
|
444
453
|
fieldmaskField?: (string | null);
|
|
454
|
+
namespace?: (string | null);
|
|
445
455
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
446
456
|
}
|
|
447
457
|
export interface IDeleteMethod {
|
|
448
458
|
actionName?: (string | null);
|
|
449
459
|
idField?: (string | null);
|
|
460
|
+
namespace?: (string | null);
|
|
450
461
|
}
|
|
451
462
|
export class DeleteMethod implements IDeleteMethod {
|
|
452
463
|
constructor(data?: IDeleteMethod);
|
|
453
464
|
actionName?: (string | null);
|
|
454
465
|
idField?: (string | null);
|
|
466
|
+
namespace?: (string | null);
|
|
455
467
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
456
468
|
}
|
|
457
469
|
export interface IListMethod {
|
|
@@ -459,6 +471,7 @@ declare namespace $wrapper {
|
|
|
459
471
|
idsField?: (string | null);
|
|
460
472
|
itemsField?: (string | null);
|
|
461
473
|
paging?: ($wrapper.wix.coreservices.businessschema.v1.IPaging | null);
|
|
474
|
+
namespace?: (string | null);
|
|
462
475
|
}
|
|
463
476
|
export class ListMethod implements IListMethod {
|
|
464
477
|
constructor(data?: IListMethod);
|
|
@@ -466,6 +479,7 @@ declare namespace $wrapper {
|
|
|
466
479
|
idsField?: (string | null);
|
|
467
480
|
itemsField?: (string | null);
|
|
468
481
|
paging?: ($wrapper.wix.coreservices.businessschema.v1.IPaging | null);
|
|
482
|
+
namespace?: (string | null);
|
|
469
483
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
470
484
|
}
|
|
471
485
|
export interface IQueryMethod {
|
|
@@ -475,6 +489,7 @@ declare namespace $wrapper {
|
|
|
475
489
|
paging?: ($wrapper.wix.coreservices.businessschema.v1.IPaging | null);
|
|
476
490
|
wql?: ($wrapper.wix.coreservices.businessschema.v1.IWql | null);
|
|
477
491
|
itemField?: (string | null);
|
|
492
|
+
namespace?: (string | null);
|
|
478
493
|
}
|
|
479
494
|
export class QueryMethod implements IQueryMethod {
|
|
480
495
|
constructor(data?: IQueryMethod);
|
|
@@ -484,30 +499,35 @@ declare namespace $wrapper {
|
|
|
484
499
|
paging?: ($wrapper.wix.coreservices.businessschema.v1.IPaging | null);
|
|
485
500
|
wql?: ($wrapper.wix.coreservices.businessschema.v1.IWql | null);
|
|
486
501
|
itemField?: (string | null);
|
|
502
|
+
namespace?: (string | null);
|
|
487
503
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
488
504
|
}
|
|
489
505
|
export interface IBulkCreateMethod {
|
|
490
506
|
actionName?: (string | null);
|
|
491
507
|
itemField?: (string | null);
|
|
492
508
|
fieldmaskField?: (string | null);
|
|
509
|
+
namespace?: (string | null);
|
|
493
510
|
}
|
|
494
511
|
export class BulkCreateMethod implements IBulkCreateMethod {
|
|
495
512
|
constructor(data?: IBulkCreateMethod);
|
|
496
513
|
actionName?: (string | null);
|
|
497
514
|
itemField?: (string | null);
|
|
498
515
|
fieldmaskField?: (string | null);
|
|
516
|
+
namespace?: (string | null);
|
|
499
517
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
500
518
|
}
|
|
501
519
|
export interface IBulkUpdateMethod {
|
|
502
520
|
actionName?: (string | null);
|
|
503
521
|
itemField?: (string | null);
|
|
504
522
|
fieldmaskField?: (string | null);
|
|
523
|
+
namespace?: (string | null);
|
|
505
524
|
}
|
|
506
525
|
export class BulkUpdateMethod implements IBulkUpdateMethod {
|
|
507
526
|
constructor(data?: IBulkUpdateMethod);
|
|
508
527
|
actionName?: (string | null);
|
|
509
528
|
itemField?: (string | null);
|
|
510
529
|
fieldmaskField?: (string | null);
|
|
530
|
+
namespace?: (string | null);
|
|
511
531
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
512
532
|
}
|
|
513
533
|
export interface IBulkUpdateByFilterMethod {
|
|
@@ -515,6 +535,7 @@ declare namespace $wrapper {
|
|
|
515
535
|
itemField?: (string | null);
|
|
516
536
|
fieldmaskField?: (string | null);
|
|
517
537
|
filterField?: (string | null);
|
|
538
|
+
namespace?: (string | null);
|
|
518
539
|
}
|
|
519
540
|
export class BulkUpdateByFilterMethod implements IBulkUpdateByFilterMethod {
|
|
520
541
|
constructor(data?: IBulkUpdateByFilterMethod);
|
|
@@ -522,38 +543,45 @@ declare namespace $wrapper {
|
|
|
522
543
|
itemField?: (string | null);
|
|
523
544
|
fieldmaskField?: (string | null);
|
|
524
545
|
filterField?: (string | null);
|
|
546
|
+
namespace?: (string | null);
|
|
525
547
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
526
548
|
}
|
|
527
549
|
export interface IBulkUpsertMethod {
|
|
528
550
|
actionName?: (string | null);
|
|
529
551
|
itemField?: (string | null);
|
|
530
552
|
fieldmaskField?: (string | null);
|
|
553
|
+
namespace?: (string | null);
|
|
531
554
|
}
|
|
532
555
|
export class BulkUpsertMethod implements IBulkUpsertMethod {
|
|
533
556
|
constructor(data?: IBulkUpsertMethod);
|
|
534
557
|
actionName?: (string | null);
|
|
535
558
|
itemField?: (string | null);
|
|
536
559
|
fieldmaskField?: (string | null);
|
|
560
|
+
namespace?: (string | null);
|
|
537
561
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
538
562
|
}
|
|
539
563
|
export interface IBulkDeleteMethod {
|
|
540
564
|
actionName?: (string | null);
|
|
541
565
|
idsField?: (string | null);
|
|
566
|
+
namespace?: (string | null);
|
|
542
567
|
}
|
|
543
568
|
export class BulkDeleteMethod implements IBulkDeleteMethod {
|
|
544
569
|
constructor(data?: IBulkDeleteMethod);
|
|
545
570
|
actionName?: (string | null);
|
|
546
571
|
idsField?: (string | null);
|
|
572
|
+
namespace?: (string | null);
|
|
547
573
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
548
574
|
}
|
|
549
575
|
export interface IBulkDeleteByFilterMethod {
|
|
550
576
|
actionName?: (string | null);
|
|
551
577
|
filterField?: (string | null);
|
|
578
|
+
namespace?: (string | null);
|
|
552
579
|
}
|
|
553
580
|
export class BulkDeleteByFilterMethod implements IBulkDeleteByFilterMethod {
|
|
554
581
|
constructor(data?: IBulkDeleteByFilterMethod);
|
|
555
582
|
actionName?: (string | null);
|
|
556
583
|
filterField?: (string | null);
|
|
584
|
+
namespace?: (string | null);
|
|
557
585
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
558
586
|
}
|
|
559
587
|
export interface IWql {
|