@wix/metro-common-builders 1.0.1078 → 1.0.1080

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.
@@ -22,6 +22,13 @@ declare namespace $requests {
22
22
  files?: { [k: string]: string };
23
23
  static __$$generatedFromProtobuf$$__: Symbol;
24
24
  }
25
+ export enum DomainEventType {
26
+ NOT_DOMAIN_EVENT = "NOT_DOMAIN_EVENT",
27
+ CREATED = "CREATED",
28
+ UPDATED = "UPDATED",
29
+ DELETED = "DELETED",
30
+ CUSTOM_ACTION = "CUSTOM_ACTION",
31
+ }
25
32
  export enum Exposure {
26
33
  PRIVATE = "PRIVATE",
27
34
  INTERNAL = "INTERNAL",
@@ -37,12 +44,18 @@ declare namespace $requests {
37
44
  message?: string;
38
45
  replacedBy?: string;
39
46
  targetRemovalDate?: string;
47
+ eventType?: $requests.wix.coreservices.businessschema.v1.DomainEventType;
48
+ payload?: string;
49
+ customSlug?: string;
40
50
  }
41
51
  export class Deprecated implements IDeprecated {
42
52
  constructor(data?: IDeprecated);
43
53
  message?: string;
44
54
  replacedBy?: string;
45
55
  targetRemovalDate?: string;
56
+ eventType?: $requests.wix.coreservices.businessschema.v1.DomainEventType;
57
+ payload?: string;
58
+ customSlug?: string;
46
59
  static __$$generatedFromProtobuf$$__: Symbol;
47
60
  }
48
61
  export interface IEntity {
@@ -161,13 +174,6 @@ declare namespace $requests {
161
174
  envelopeSchemaName?: string;
162
175
  static __$$generatedFromProtobuf$$__: Symbol;
163
176
  }
164
- export enum DomainEventType {
165
- NOT_DOMAIN_EVENT = "NOT_DOMAIN_EVENT",
166
- CREATED = "CREATED",
167
- UPDATED = "UPDATED",
168
- DELETED = "DELETED",
169
- CUSTOM_ACTION = "CUSTOM_ACTION",
170
- }
171
177
  export interface IProtocols {
172
178
  rest?: boolean;
173
179
  grpc?: boolean;
@@ -552,10 +558,12 @@ declare namespace $requests {
552
558
  }
553
559
  export interface IWql {
554
560
  operatorFieldSupport?: $requests.wix.coreservices.businessschema.v1.Wql.IOperatorFieldSupport[];
561
+ pattern?: $requests.wix.coreservices.businessschema.v1.Wql.IOperatorFieldSupport[];
555
562
  }
556
563
  export class Wql implements IWql {
557
564
  constructor(data?: IWql);
558
565
  operatorFieldSupport?: $requests.wix.coreservices.businessschema.v1.Wql.IOperatorFieldSupport[];
566
+ pattern?: $requests.wix.coreservices.businessschema.v1.Wql.IOperatorFieldSupport[];
559
567
  static __$$generatedFromProtobuf$$__: Symbol;
560
568
  }
561
569
  export namespace Wql {
@@ -573,6 +581,7 @@ declare namespace $requests {
573
581
  EXISTS = "EXISTS",
574
582
  ALL = "ALL",
575
583
  ANY = "ANY",
584
+ EMPTY = "EMPTY",
576
585
  }
577
586
  export enum Sort {
578
587
  NONE = "NONE",
@@ -582,15 +591,30 @@ declare namespace $requests {
582
591
  }
583
592
  export interface IRequiredFields {
584
593
  field?: string[];
594
+ requiredField?: $requests.wix.coreservices.businessschema.v1.Wql.RequiredFields.IRequiredField[];
585
595
  }
586
596
  export class RequiredFields implements IRequiredFields {
587
597
  constructor(data?: IRequiredFields);
588
598
  field?: string[];
599
+ requiredField?: $requests.wix.coreservices.businessschema.v1.Wql.RequiredFields.IRequiredField[];
589
600
  static __$$generatedFromProtobuf$$__: Symbol;
590
601
  }
602
+ export namespace RequiredFields {
603
+ export interface IRequiredField {
604
+ path?: string;
605
+ sort?: $requests.wix.coreservices.businessschema.v1.Wql.Sort;
606
+ }
607
+ export class RequiredField implements IRequiredField {
608
+ constructor(data?: IRequiredField);
609
+ path?: string;
610
+ sort?: $requests.wix.coreservices.businessschema.v1.Wql.Sort;
611
+ static __$$generatedFromProtobuf$$__: Symbol;
612
+ }
613
+ }
591
614
  export interface IOperatorFieldSupport {
592
615
  operator?: $requests.wix.coreservices.businessschema.v1.Wql.Operator[];
593
616
  glob?: string;
617
+ field?: string[];
594
618
  sort?: $requests.wix.coreservices.businessschema.v1.Wql.Sort;
595
619
  requiredFields?: $requests.wix.coreservices.businessschema.v1.Wql.IRequiredFields[];
596
620
  }
@@ -598,6 +622,7 @@ declare namespace $requests {
598
622
  constructor(data?: IOperatorFieldSupport);
599
623
  operator?: $requests.wix.coreservices.businessschema.v1.Wql.Operator[];
600
624
  glob?: string;
625
+ field?: string[];
601
626
  sort?: $requests.wix.coreservices.businessschema.v1.Wql.Sort;
602
627
  requiredFields?: $requests.wix.coreservices.businessschema.v1.Wql.IRequiredFields[];
603
628
  static __$$generatedFromProtobuf$$__: Symbol;
@@ -1381,10 +1406,12 @@ declare namespace $requests {
1381
1406
  }
1382
1407
  export interface IWql {
1383
1408
  operatorFieldSupport?: $requests.wix.api.Wql.IOperatorFieldSupport[];
1409
+ pattern?: $requests.wix.api.Wql.IOperatorFieldSupport[];
1384
1410
  }
1385
1411
  export class Wql implements IWql {
1386
1412
  constructor(data?: IWql);
1387
1413
  operatorFieldSupport?: $requests.wix.api.Wql.IOperatorFieldSupport[];
1414
+ pattern?: $requests.wix.api.Wql.IOperatorFieldSupport[];
1388
1415
  static __$$generatedFromProtobuf$$__: Symbol;
1389
1416
  }
1390
1417
  export namespace Wql {
@@ -1412,15 +1439,30 @@ declare namespace $requests {
1412
1439
  }
1413
1440
  export interface IRequiredFields {
1414
1441
  field?: string[];
1442
+ requiredField?: $requests.wix.api.Wql.RequiredFields.IRequiredField[];
1415
1443
  }
1416
1444
  export class RequiredFields implements IRequiredFields {
1417
1445
  constructor(data?: IRequiredFields);
1418
1446
  field?: string[];
1447
+ requiredField?: $requests.wix.api.Wql.RequiredFields.IRequiredField[];
1419
1448
  static __$$generatedFromProtobuf$$__: Symbol;
1420
1449
  }
1450
+ export namespace RequiredFields {
1451
+ export interface IRequiredField {
1452
+ path?: string;
1453
+ sort?: $requests.wix.api.Wql.Sort;
1454
+ }
1455
+ export class RequiredField implements IRequiredField {
1456
+ constructor(data?: IRequiredField);
1457
+ path?: string;
1458
+ sort?: $requests.wix.api.Wql.Sort;
1459
+ static __$$generatedFromProtobuf$$__: Symbol;
1460
+ }
1461
+ }
1421
1462
  export interface IOperatorFieldSupport {
1422
1463
  operator?: $requests.wix.api.Wql.Operator[];
1423
1464
  glob?: string;
1465
+ field?: string[];
1424
1466
  sort?: $requests.wix.api.Wql.Sort;
1425
1467
  requiredFields?: $requests.wix.api.Wql.IRequiredFields[];
1426
1468
  }
@@ -1428,6 +1470,7 @@ declare namespace $requests {
1428
1470
  constructor(data?: IOperatorFieldSupport);
1429
1471
  operator?: $requests.wix.api.Wql.Operator[];
1430
1472
  glob?: string;
1473
+ field?: string[];
1431
1474
  sort?: $requests.wix.api.Wql.Sort;
1432
1475
  requiredFields?: $requests.wix.api.Wql.IRequiredFields[];
1433
1476
  static __$$generatedFromProtobuf$$__: Symbol;
@@ -1967,6 +2010,18 @@ declare namespace $requests {
1967
2010
  hasNext?: boolean;
1968
2011
  static __$$generatedFromProtobuf$$__: Symbol;
1969
2012
  }
2013
+ export interface ICursorPagingMetadata {
2014
+ count?: number;
2015
+ cursors?: $requests.wix.common.ICursors;
2016
+ hasNext?: boolean;
2017
+ }
2018
+ export class CursorPagingMetadata implements ICursorPagingMetadata {
2019
+ constructor(data?: ICursorPagingMetadata);
2020
+ count?: number;
2021
+ cursors?: $requests.wix.common.ICursors;
2022
+ hasNext?: boolean;
2023
+ static __$$generatedFromProtobuf$$__: Symbol;
2024
+ }
1970
2025
  export interface ICursors {
1971
2026
  next?: string;
1972
2027
  prev?: string;
@@ -2634,6 +2689,13 @@ declare namespace $responses {
2634
2689
  files?: { [k: string]: string };
2635
2690
  static __$$generatedFromProtobuf$$__: Symbol;
2636
2691
  }
2692
+ export enum DomainEventType {
2693
+ NOT_DOMAIN_EVENT = "NOT_DOMAIN_EVENT",
2694
+ CREATED = "CREATED",
2695
+ UPDATED = "UPDATED",
2696
+ DELETED = "DELETED",
2697
+ CUSTOM_ACTION = "CUSTOM_ACTION",
2698
+ }
2637
2699
  export enum Exposure {
2638
2700
  PRIVATE = "PRIVATE",
2639
2701
  INTERNAL = "INTERNAL",
@@ -2649,12 +2711,18 @@ declare namespace $responses {
2649
2711
  message?: string;
2650
2712
  replacedBy?: string;
2651
2713
  targetRemovalDate?: string;
2714
+ eventType?: $responses.wix.coreservices.businessschema.v1.DomainEventType;
2715
+ payload?: string;
2716
+ customSlug?: string;
2652
2717
  }
2653
2718
  export class Deprecated implements IDeprecated {
2654
2719
  constructor(data?: IDeprecated);
2655
2720
  message?: string;
2656
2721
  replacedBy?: string;
2657
2722
  targetRemovalDate?: string;
2723
+ eventType?: $responses.wix.coreservices.businessschema.v1.DomainEventType;
2724
+ payload?: string;
2725
+ customSlug?: string;
2658
2726
  static __$$generatedFromProtobuf$$__: Symbol;
2659
2727
  }
2660
2728
  export interface IEntity {
@@ -2773,13 +2841,6 @@ declare namespace $responses {
2773
2841
  envelopeSchemaName?: string;
2774
2842
  static __$$generatedFromProtobuf$$__: Symbol;
2775
2843
  }
2776
- export enum DomainEventType {
2777
- NOT_DOMAIN_EVENT = "NOT_DOMAIN_EVENT",
2778
- CREATED = "CREATED",
2779
- UPDATED = "UPDATED",
2780
- DELETED = "DELETED",
2781
- CUSTOM_ACTION = "CUSTOM_ACTION",
2782
- }
2783
2844
  export interface IProtocols {
2784
2845
  rest: boolean;
2785
2846
  grpc: boolean;
@@ -3164,10 +3225,12 @@ declare namespace $responses {
3164
3225
  }
3165
3226
  export interface IWql {
3166
3227
  operatorFieldSupport: $responses.wix.coreservices.businessschema.v1.Wql.IOperatorFieldSupport[];
3228
+ pattern: $responses.wix.coreservices.businessschema.v1.Wql.IOperatorFieldSupport[];
3167
3229
  }
3168
3230
  export class Wql implements IWql {
3169
3231
  constructor(data?: IWql);
3170
3232
  operatorFieldSupport: $responses.wix.coreservices.businessschema.v1.Wql.IOperatorFieldSupport[];
3233
+ pattern: $responses.wix.coreservices.businessschema.v1.Wql.IOperatorFieldSupport[];
3171
3234
  static __$$generatedFromProtobuf$$__: Symbol;
3172
3235
  }
3173
3236
  export namespace Wql {
@@ -3185,6 +3248,7 @@ declare namespace $responses {
3185
3248
  EXISTS = "EXISTS",
3186
3249
  ALL = "ALL",
3187
3250
  ANY = "ANY",
3251
+ EMPTY = "EMPTY",
3188
3252
  }
3189
3253
  export enum Sort {
3190
3254
  NONE = "NONE",
@@ -3194,15 +3258,30 @@ declare namespace $responses {
3194
3258
  }
3195
3259
  export interface IRequiredFields {
3196
3260
  field: string[];
3261
+ requiredField: $responses.wix.coreservices.businessschema.v1.Wql.RequiredFields.IRequiredField[];
3197
3262
  }
3198
3263
  export class RequiredFields implements IRequiredFields {
3199
3264
  constructor(data?: IRequiredFields);
3200
3265
  field: string[];
3266
+ requiredField: $responses.wix.coreservices.businessschema.v1.Wql.RequiredFields.IRequiredField[];
3201
3267
  static __$$generatedFromProtobuf$$__: Symbol;
3202
3268
  }
3269
+ export namespace RequiredFields {
3270
+ export interface IRequiredField {
3271
+ path: string;
3272
+ sort: $responses.wix.coreservices.businessschema.v1.Wql.Sort;
3273
+ }
3274
+ export class RequiredField implements IRequiredField {
3275
+ constructor(data?: IRequiredField);
3276
+ path: string;
3277
+ sort: $responses.wix.coreservices.businessschema.v1.Wql.Sort;
3278
+ static __$$generatedFromProtobuf$$__: Symbol;
3279
+ }
3280
+ }
3203
3281
  export interface IOperatorFieldSupport {
3204
3282
  operator: $responses.wix.coreservices.businessschema.v1.Wql.Operator[];
3205
3283
  glob: string;
3284
+ field: string[];
3206
3285
  sort: $responses.wix.coreservices.businessschema.v1.Wql.Sort;
3207
3286
  requiredFields: $responses.wix.coreservices.businessschema.v1.Wql.IRequiredFields[];
3208
3287
  }
@@ -3210,6 +3289,7 @@ declare namespace $responses {
3210
3289
  constructor(data?: IOperatorFieldSupport);
3211
3290
  operator: $responses.wix.coreservices.businessschema.v1.Wql.Operator[];
3212
3291
  glob: string;
3292
+ field: string[];
3213
3293
  sort: $responses.wix.coreservices.businessschema.v1.Wql.Sort;
3214
3294
  requiredFields: $responses.wix.coreservices.businessschema.v1.Wql.IRequiredFields[];
3215
3295
  static __$$generatedFromProtobuf$$__: Symbol;
@@ -3993,10 +4073,12 @@ declare namespace $responses {
3993
4073
  }
3994
4074
  export interface IWql {
3995
4075
  operatorFieldSupport: $responses.wix.api.Wql.IOperatorFieldSupport[];
4076
+ pattern: $responses.wix.api.Wql.IOperatorFieldSupport[];
3996
4077
  }
3997
4078
  export class Wql implements IWql {
3998
4079
  constructor(data?: IWql);
3999
4080
  operatorFieldSupport: $responses.wix.api.Wql.IOperatorFieldSupport[];
4081
+ pattern: $responses.wix.api.Wql.IOperatorFieldSupport[];
4000
4082
  static __$$generatedFromProtobuf$$__: Symbol;
4001
4083
  }
4002
4084
  export namespace Wql {
@@ -4024,15 +4106,30 @@ declare namespace $responses {
4024
4106
  }
4025
4107
  export interface IRequiredFields {
4026
4108
  field: string[];
4109
+ requiredField: $responses.wix.api.Wql.RequiredFields.IRequiredField[];
4027
4110
  }
4028
4111
  export class RequiredFields implements IRequiredFields {
4029
4112
  constructor(data?: IRequiredFields);
4030
4113
  field: string[];
4114
+ requiredField: $responses.wix.api.Wql.RequiredFields.IRequiredField[];
4031
4115
  static __$$generatedFromProtobuf$$__: Symbol;
4032
4116
  }
4117
+ export namespace RequiredFields {
4118
+ export interface IRequiredField {
4119
+ path: string;
4120
+ sort: $responses.wix.api.Wql.Sort;
4121
+ }
4122
+ export class RequiredField implements IRequiredField {
4123
+ constructor(data?: IRequiredField);
4124
+ path: string;
4125
+ sort: $responses.wix.api.Wql.Sort;
4126
+ static __$$generatedFromProtobuf$$__: Symbol;
4127
+ }
4128
+ }
4033
4129
  export interface IOperatorFieldSupport {
4034
4130
  operator: $responses.wix.api.Wql.Operator[];
4035
4131
  glob: string;
4132
+ field: string[];
4036
4133
  sort: $responses.wix.api.Wql.Sort;
4037
4134
  requiredFields: $responses.wix.api.Wql.IRequiredFields[];
4038
4135
  }
@@ -4040,6 +4137,7 @@ declare namespace $responses {
4040
4137
  constructor(data?: IOperatorFieldSupport);
4041
4138
  operator: $responses.wix.api.Wql.Operator[];
4042
4139
  glob: string;
4140
+ field: string[];
4043
4141
  sort: $responses.wix.api.Wql.Sort;
4044
4142
  requiredFields: $responses.wix.api.Wql.IRequiredFields[];
4045
4143
  static __$$generatedFromProtobuf$$__: Symbol;
@@ -4579,6 +4677,18 @@ declare namespace $responses {
4579
4677
  hasNext?: boolean;
4580
4678
  static __$$generatedFromProtobuf$$__: Symbol;
4581
4679
  }
4680
+ export interface ICursorPagingMetadata {
4681
+ count?: number;
4682
+ cursors?: $responses.wix.common.ICursors;
4683
+ hasNext?: boolean;
4684
+ }
4685
+ export class CursorPagingMetadata implements ICursorPagingMetadata {
4686
+ constructor(data?: ICursorPagingMetadata);
4687
+ count?: number;
4688
+ cursors?: $responses.wix.common.ICursors;
4689
+ hasNext?: boolean;
4690
+ static __$$generatedFromProtobuf$$__: Symbol;
4691
+ }
4582
4692
  export interface ICursors {
4583
4693
  next?: string;
4584
4694
  prev?: string;
@@ -22,6 +22,13 @@ declare namespace $wrapper {
22
22
  files?: ({ [k: string]: string });
23
23
  static __$$generatedFromProtobuf$$__: Symbol;
24
24
  }
25
+ export enum DomainEventType {
26
+ NOT_DOMAIN_EVENT = "NOT_DOMAIN_EVENT",
27
+ CREATED = "CREATED",
28
+ UPDATED = "UPDATED",
29
+ DELETED = "DELETED",
30
+ CUSTOM_ACTION = "CUSTOM_ACTION",
31
+ }
25
32
  export enum Exposure {
26
33
  PRIVATE = "PRIVATE",
27
34
  INTERNAL = "INTERNAL",
@@ -37,12 +44,18 @@ declare namespace $wrapper {
37
44
  message?: (string | null);
38
45
  replacedBy?: (string | null);
39
46
  targetRemovalDate?: (string | null);
47
+ eventType?: ($wrapper.wix.coreservices.businessschema.v1.DomainEventType | null);
48
+ payload?: (string | null);
49
+ customSlug?: (string | null);
40
50
  }
41
51
  export class Deprecated implements IDeprecated {
42
52
  constructor(data?: IDeprecated);
43
53
  message?: (string | null);
44
54
  replacedBy?: (string | null);
45
55
  targetRemovalDate?: (string | null);
56
+ eventType?: ($wrapper.wix.coreservices.businessschema.v1.DomainEventType | null);
57
+ payload?: (string | null);
58
+ customSlug?: (string | null);
46
59
  static __$$generatedFromProtobuf$$__: Symbol;
47
60
  }
48
61
  export interface IEntity {
@@ -161,13 +174,6 @@ declare namespace $wrapper {
161
174
  envelopeSchemaName?: (string | null);
162
175
  static __$$generatedFromProtobuf$$__: Symbol;
163
176
  }
164
- export enum DomainEventType {
165
- NOT_DOMAIN_EVENT = "NOT_DOMAIN_EVENT",
166
- CREATED = "CREATED",
167
- UPDATED = "UPDATED",
168
- DELETED = "DELETED",
169
- CUSTOM_ACTION = "CUSTOM_ACTION",
170
- }
171
177
  export interface IProtocols {
172
178
  rest?: (boolean | null);
173
179
  grpc?: (boolean | null);
@@ -552,10 +558,12 @@ declare namespace $wrapper {
552
558
  }
553
559
  export interface IWql {
554
560
  operatorFieldSupport?: ($wrapper.wix.coreservices.businessschema.v1.Wql.IOperatorFieldSupport[] | null);
561
+ pattern?: ($wrapper.wix.coreservices.businessschema.v1.Wql.IOperatorFieldSupport[] | null);
555
562
  }
556
563
  export class Wql implements IWql {
557
564
  constructor(data?: IWql);
558
565
  operatorFieldSupport?: ($wrapper.wix.coreservices.businessschema.v1.Wql.IOperatorFieldSupport[] | null);
566
+ pattern?: ($wrapper.wix.coreservices.businessschema.v1.Wql.IOperatorFieldSupport[] | null);
559
567
  static __$$generatedFromProtobuf$$__: Symbol;
560
568
  }
561
569
  export namespace Wql {
@@ -573,6 +581,7 @@ declare namespace $wrapper {
573
581
  EXISTS = "EXISTS",
574
582
  ALL = "ALL",
575
583
  ANY = "ANY",
584
+ EMPTY = "EMPTY",
576
585
  }
577
586
  export enum Sort {
578
587
  NONE = "NONE",
@@ -582,15 +591,30 @@ declare namespace $wrapper {
582
591
  }
583
592
  export interface IRequiredFields {
584
593
  field?: (string[] | null);
594
+ requiredField?: ($wrapper.wix.coreservices.businessschema.v1.Wql.RequiredFields.IRequiredField[] | null);
585
595
  }
586
596
  export class RequiredFields implements IRequiredFields {
587
597
  constructor(data?: IRequiredFields);
588
598
  field?: (string[] | null);
599
+ requiredField?: ($wrapper.wix.coreservices.businessschema.v1.Wql.RequiredFields.IRequiredField[] | null);
589
600
  static __$$generatedFromProtobuf$$__: Symbol;
590
601
  }
602
+ export namespace RequiredFields {
603
+ export interface IRequiredField {
604
+ path?: (string | null);
605
+ sort?: ($wrapper.wix.coreservices.businessschema.v1.Wql.Sort | null);
606
+ }
607
+ export class RequiredField implements IRequiredField {
608
+ constructor(data?: IRequiredField);
609
+ path?: (string | null);
610
+ sort?: ($wrapper.wix.coreservices.businessschema.v1.Wql.Sort | null);
611
+ static __$$generatedFromProtobuf$$__: Symbol;
612
+ }
613
+ }
591
614
  export interface IOperatorFieldSupport {
592
615
  operator?: ($wrapper.wix.coreservices.businessschema.v1.Wql.Operator[] | null);
593
616
  glob?: (string | null);
617
+ field?: (string[] | null);
594
618
  sort?: ($wrapper.wix.coreservices.businessschema.v1.Wql.Sort | null);
595
619
  requiredFields?: ($wrapper.wix.coreservices.businessschema.v1.Wql.IRequiredFields[] | null);
596
620
  }
@@ -598,6 +622,7 @@ declare namespace $wrapper {
598
622
  constructor(data?: IOperatorFieldSupport);
599
623
  operator?: ($wrapper.wix.coreservices.businessschema.v1.Wql.Operator[] | null);
600
624
  glob?: (string | null);
625
+ field?: (string[] | null);
601
626
  sort?: ($wrapper.wix.coreservices.businessschema.v1.Wql.Sort | null);
602
627
  requiredFields?: ($wrapper.wix.coreservices.businessschema.v1.Wql.IRequiredFields[] | null);
603
628
  static __$$generatedFromProtobuf$$__: Symbol;
@@ -1394,10 +1419,12 @@ declare namespace $wrapper {
1394
1419
  }
1395
1420
  export interface IWql {
1396
1421
  operatorFieldSupport?: ($wrapper.wix.api.Wql.IOperatorFieldSupport[] | null);
1422
+ pattern?: ($wrapper.wix.api.Wql.IOperatorFieldSupport[] | null);
1397
1423
  }
1398
1424
  export class Wql implements IWql {
1399
1425
  constructor(data?: IWql);
1400
1426
  operatorFieldSupport?: ($wrapper.wix.api.Wql.IOperatorFieldSupport[] | null);
1427
+ pattern?: ($wrapper.wix.api.Wql.IOperatorFieldSupport[] | null);
1401
1428
  static __$$generatedFromProtobuf$$__: Symbol;
1402
1429
  }
1403
1430
  export namespace Wql {
@@ -1425,15 +1452,30 @@ declare namespace $wrapper {
1425
1452
  }
1426
1453
  export interface IRequiredFields {
1427
1454
  field?: (string[] | null);
1455
+ requiredField?: ($wrapper.wix.api.Wql.RequiredFields.IRequiredField[] | null);
1428
1456
  }
1429
1457
  export class RequiredFields implements IRequiredFields {
1430
1458
  constructor(data?: IRequiredFields);
1431
1459
  field?: (string[] | null);
1460
+ requiredField?: ($wrapper.wix.api.Wql.RequiredFields.IRequiredField[] | null);
1432
1461
  static __$$generatedFromProtobuf$$__: Symbol;
1433
1462
  }
1463
+ export namespace RequiredFields {
1464
+ export interface IRequiredField {
1465
+ path?: (string | null);
1466
+ sort?: ($wrapper.wix.api.Wql.Sort | null);
1467
+ }
1468
+ export class RequiredField implements IRequiredField {
1469
+ constructor(data?: IRequiredField);
1470
+ path?: (string | null);
1471
+ sort?: ($wrapper.wix.api.Wql.Sort | null);
1472
+ static __$$generatedFromProtobuf$$__: Symbol;
1473
+ }
1474
+ }
1434
1475
  export interface IOperatorFieldSupport {
1435
1476
  operator?: ($wrapper.wix.api.Wql.Operator[] | null);
1436
1477
  glob?: (string | null);
1478
+ field?: (string[] | null);
1437
1479
  sort?: ($wrapper.wix.api.Wql.Sort | null);
1438
1480
  requiredFields?: ($wrapper.wix.api.Wql.IRequiredFields[] | null);
1439
1481
  }
@@ -1441,6 +1483,7 @@ declare namespace $wrapper {
1441
1483
  constructor(data?: IOperatorFieldSupport);
1442
1484
  operator?: ($wrapper.wix.api.Wql.Operator[] | null);
1443
1485
  glob?: (string | null);
1486
+ field?: (string[] | null);
1444
1487
  sort?: ($wrapper.wix.api.Wql.Sort | null);
1445
1488
  requiredFields?: ($wrapper.wix.api.Wql.IRequiredFields[] | null);
1446
1489
  static __$$generatedFromProtobuf$$__: Symbol;
@@ -1980,6 +2023,18 @@ declare namespace $wrapper {
1980
2023
  hasNext?: (boolean | null);
1981
2024
  static __$$generatedFromProtobuf$$__: Symbol;
1982
2025
  }
2026
+ export interface ICursorPagingMetadata {
2027
+ count?: (number | null);
2028
+ cursors?: ($wrapper.wix.common.ICursors | null);
2029
+ hasNext?: (boolean | null);
2030
+ }
2031
+ export class CursorPagingMetadata implements ICursorPagingMetadata {
2032
+ constructor(data?: ICursorPagingMetadata);
2033
+ count?: (number | null);
2034
+ cursors?: ($wrapper.wix.common.ICursors | null);
2035
+ hasNext?: (boolean | null);
2036
+ static __$$generatedFromProtobuf$$__: Symbol;
2037
+ }
1983
2038
  export interface ICursors {
1984
2039
  next?: (string | null);
1985
2040
  prev?: (string | null);