@wix/metro-common-builders 1.0.1079 → 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.
- package/dist/es/src/proto/client/index.d.ts +62 -0
- package/dist/es/src/proto/index.d.ts +31 -0
- package/dist/es/src/proto/index.js +850 -56
- package/dist/es/src/proto/server/index.d.ts +62 -0
- package/dist/src/proto/client/index.d.ts +62 -0
- package/dist/src/proto/index.d.ts +31 -0
- package/dist/src/proto/index.js +850 -56
- package/dist/src/proto/server/index.d.ts +62 -0
- package/package.json +2 -2
|
@@ -558,10 +558,12 @@ declare namespace $requests {
|
|
|
558
558
|
}
|
|
559
559
|
export interface IWql {
|
|
560
560
|
operatorFieldSupport?: $requests.wix.coreservices.businessschema.v1.Wql.IOperatorFieldSupport[];
|
|
561
|
+
pattern?: $requests.wix.coreservices.businessschema.v1.Wql.IOperatorFieldSupport[];
|
|
561
562
|
}
|
|
562
563
|
export class Wql implements IWql {
|
|
563
564
|
constructor(data?: IWql);
|
|
564
565
|
operatorFieldSupport?: $requests.wix.coreservices.businessschema.v1.Wql.IOperatorFieldSupport[];
|
|
566
|
+
pattern?: $requests.wix.coreservices.businessschema.v1.Wql.IOperatorFieldSupport[];
|
|
565
567
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
566
568
|
}
|
|
567
569
|
export namespace Wql {
|
|
@@ -579,6 +581,7 @@ declare namespace $requests {
|
|
|
579
581
|
EXISTS = "EXISTS",
|
|
580
582
|
ALL = "ALL",
|
|
581
583
|
ANY = "ANY",
|
|
584
|
+
EMPTY = "EMPTY",
|
|
582
585
|
}
|
|
583
586
|
export enum Sort {
|
|
584
587
|
NONE = "NONE",
|
|
@@ -588,15 +591,30 @@ declare namespace $requests {
|
|
|
588
591
|
}
|
|
589
592
|
export interface IRequiredFields {
|
|
590
593
|
field?: string[];
|
|
594
|
+
requiredField?: $requests.wix.coreservices.businessschema.v1.Wql.RequiredFields.IRequiredField[];
|
|
591
595
|
}
|
|
592
596
|
export class RequiredFields implements IRequiredFields {
|
|
593
597
|
constructor(data?: IRequiredFields);
|
|
594
598
|
field?: string[];
|
|
599
|
+
requiredField?: $requests.wix.coreservices.businessschema.v1.Wql.RequiredFields.IRequiredField[];
|
|
595
600
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
596
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
|
+
}
|
|
597
614
|
export interface IOperatorFieldSupport {
|
|
598
615
|
operator?: $requests.wix.coreservices.businessschema.v1.Wql.Operator[];
|
|
599
616
|
glob?: string;
|
|
617
|
+
field?: string[];
|
|
600
618
|
sort?: $requests.wix.coreservices.businessschema.v1.Wql.Sort;
|
|
601
619
|
requiredFields?: $requests.wix.coreservices.businessschema.v1.Wql.IRequiredFields[];
|
|
602
620
|
}
|
|
@@ -604,6 +622,7 @@ declare namespace $requests {
|
|
|
604
622
|
constructor(data?: IOperatorFieldSupport);
|
|
605
623
|
operator?: $requests.wix.coreservices.businessschema.v1.Wql.Operator[];
|
|
606
624
|
glob?: string;
|
|
625
|
+
field?: string[];
|
|
607
626
|
sort?: $requests.wix.coreservices.businessschema.v1.Wql.Sort;
|
|
608
627
|
requiredFields?: $requests.wix.coreservices.businessschema.v1.Wql.IRequiredFields[];
|
|
609
628
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
@@ -1991,6 +2010,18 @@ declare namespace $requests {
|
|
|
1991
2010
|
hasNext?: boolean;
|
|
1992
2011
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1993
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
|
+
}
|
|
1994
2025
|
export interface ICursors {
|
|
1995
2026
|
next?: string;
|
|
1996
2027
|
prev?: string;
|
|
@@ -3194,10 +3225,12 @@ declare namespace $responses {
|
|
|
3194
3225
|
}
|
|
3195
3226
|
export interface IWql {
|
|
3196
3227
|
operatorFieldSupport: $responses.wix.coreservices.businessschema.v1.Wql.IOperatorFieldSupport[];
|
|
3228
|
+
pattern: $responses.wix.coreservices.businessschema.v1.Wql.IOperatorFieldSupport[];
|
|
3197
3229
|
}
|
|
3198
3230
|
export class Wql implements IWql {
|
|
3199
3231
|
constructor(data?: IWql);
|
|
3200
3232
|
operatorFieldSupport: $responses.wix.coreservices.businessschema.v1.Wql.IOperatorFieldSupport[];
|
|
3233
|
+
pattern: $responses.wix.coreservices.businessschema.v1.Wql.IOperatorFieldSupport[];
|
|
3201
3234
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3202
3235
|
}
|
|
3203
3236
|
export namespace Wql {
|
|
@@ -3215,6 +3248,7 @@ declare namespace $responses {
|
|
|
3215
3248
|
EXISTS = "EXISTS",
|
|
3216
3249
|
ALL = "ALL",
|
|
3217
3250
|
ANY = "ANY",
|
|
3251
|
+
EMPTY = "EMPTY",
|
|
3218
3252
|
}
|
|
3219
3253
|
export enum Sort {
|
|
3220
3254
|
NONE = "NONE",
|
|
@@ -3224,15 +3258,30 @@ declare namespace $responses {
|
|
|
3224
3258
|
}
|
|
3225
3259
|
export interface IRequiredFields {
|
|
3226
3260
|
field: string[];
|
|
3261
|
+
requiredField: $responses.wix.coreservices.businessschema.v1.Wql.RequiredFields.IRequiredField[];
|
|
3227
3262
|
}
|
|
3228
3263
|
export class RequiredFields implements IRequiredFields {
|
|
3229
3264
|
constructor(data?: IRequiredFields);
|
|
3230
3265
|
field: string[];
|
|
3266
|
+
requiredField: $responses.wix.coreservices.businessschema.v1.Wql.RequiredFields.IRequiredField[];
|
|
3231
3267
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3232
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
|
+
}
|
|
3233
3281
|
export interface IOperatorFieldSupport {
|
|
3234
3282
|
operator: $responses.wix.coreservices.businessschema.v1.Wql.Operator[];
|
|
3235
3283
|
glob: string;
|
|
3284
|
+
field: string[];
|
|
3236
3285
|
sort: $responses.wix.coreservices.businessschema.v1.Wql.Sort;
|
|
3237
3286
|
requiredFields: $responses.wix.coreservices.businessschema.v1.Wql.IRequiredFields[];
|
|
3238
3287
|
}
|
|
@@ -3240,6 +3289,7 @@ declare namespace $responses {
|
|
|
3240
3289
|
constructor(data?: IOperatorFieldSupport);
|
|
3241
3290
|
operator: $responses.wix.coreservices.businessschema.v1.Wql.Operator[];
|
|
3242
3291
|
glob: string;
|
|
3292
|
+
field: string[];
|
|
3243
3293
|
sort: $responses.wix.coreservices.businessschema.v1.Wql.Sort;
|
|
3244
3294
|
requiredFields: $responses.wix.coreservices.businessschema.v1.Wql.IRequiredFields[];
|
|
3245
3295
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
@@ -4627,6 +4677,18 @@ declare namespace $responses {
|
|
|
4627
4677
|
hasNext?: boolean;
|
|
4628
4678
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4629
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
|
+
}
|
|
4630
4692
|
export interface ICursors {
|
|
4631
4693
|
next?: string;
|
|
4632
4694
|
prev?: string;
|
|
@@ -558,10 +558,12 @@ declare namespace $wrapper {
|
|
|
558
558
|
}
|
|
559
559
|
export interface IWql {
|
|
560
560
|
operatorFieldSupport?: ($wrapper.wix.coreservices.businessschema.v1.Wql.IOperatorFieldSupport[] | null);
|
|
561
|
+
pattern?: ($wrapper.wix.coreservices.businessschema.v1.Wql.IOperatorFieldSupport[] | null);
|
|
561
562
|
}
|
|
562
563
|
export class Wql implements IWql {
|
|
563
564
|
constructor(data?: IWql);
|
|
564
565
|
operatorFieldSupport?: ($wrapper.wix.coreservices.businessschema.v1.Wql.IOperatorFieldSupport[] | null);
|
|
566
|
+
pattern?: ($wrapper.wix.coreservices.businessschema.v1.Wql.IOperatorFieldSupport[] | null);
|
|
565
567
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
566
568
|
}
|
|
567
569
|
export namespace Wql {
|
|
@@ -579,6 +581,7 @@ declare namespace $wrapper {
|
|
|
579
581
|
EXISTS = "EXISTS",
|
|
580
582
|
ALL = "ALL",
|
|
581
583
|
ANY = "ANY",
|
|
584
|
+
EMPTY = "EMPTY",
|
|
582
585
|
}
|
|
583
586
|
export enum Sort {
|
|
584
587
|
NONE = "NONE",
|
|
@@ -588,15 +591,30 @@ declare namespace $wrapper {
|
|
|
588
591
|
}
|
|
589
592
|
export interface IRequiredFields {
|
|
590
593
|
field?: (string[] | null);
|
|
594
|
+
requiredField?: ($wrapper.wix.coreservices.businessschema.v1.Wql.RequiredFields.IRequiredField[] | null);
|
|
591
595
|
}
|
|
592
596
|
export class RequiredFields implements IRequiredFields {
|
|
593
597
|
constructor(data?: IRequiredFields);
|
|
594
598
|
field?: (string[] | null);
|
|
599
|
+
requiredField?: ($wrapper.wix.coreservices.businessschema.v1.Wql.RequiredFields.IRequiredField[] | null);
|
|
595
600
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
596
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
|
+
}
|
|
597
614
|
export interface IOperatorFieldSupport {
|
|
598
615
|
operator?: ($wrapper.wix.coreservices.businessschema.v1.Wql.Operator[] | null);
|
|
599
616
|
glob?: (string | null);
|
|
617
|
+
field?: (string[] | null);
|
|
600
618
|
sort?: ($wrapper.wix.coreservices.businessschema.v1.Wql.Sort | null);
|
|
601
619
|
requiredFields?: ($wrapper.wix.coreservices.businessschema.v1.Wql.IRequiredFields[] | null);
|
|
602
620
|
}
|
|
@@ -604,6 +622,7 @@ declare namespace $wrapper {
|
|
|
604
622
|
constructor(data?: IOperatorFieldSupport);
|
|
605
623
|
operator?: ($wrapper.wix.coreservices.businessschema.v1.Wql.Operator[] | null);
|
|
606
624
|
glob?: (string | null);
|
|
625
|
+
field?: (string[] | null);
|
|
607
626
|
sort?: ($wrapper.wix.coreservices.businessschema.v1.Wql.Sort | null);
|
|
608
627
|
requiredFields?: ($wrapper.wix.coreservices.businessschema.v1.Wql.IRequiredFields[] | null);
|
|
609
628
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
@@ -2004,6 +2023,18 @@ declare namespace $wrapper {
|
|
|
2004
2023
|
hasNext?: (boolean | null);
|
|
2005
2024
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2006
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
|
+
}
|
|
2007
2038
|
export interface ICursors {
|
|
2008
2039
|
next?: (string | null);
|
|
2009
2040
|
prev?: (string | null);
|