@wix/metro-common-builders 1.0.1145 → 1.0.1147
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 +48 -0
- package/dist/es/src/proto/index.d.ts +24 -0
- package/dist/es/src/proto/index.js +334 -1
- package/dist/es/src/proto/server/index.d.ts +48 -0
- package/dist/src/proto/client/index.d.ts +48 -0
- package/dist/src/proto/index.d.ts +24 -0
- package/dist/src/proto/index.js +334 -1
- package/dist/src/proto/server/index.d.ts +48 -0
- package/package.json +3 -3
|
@@ -1201,6 +1201,14 @@ declare namespace $requests {
|
|
|
1201
1201
|
eventSequenceNumber?: boolean;
|
|
1202
1202
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1203
1203
|
}
|
|
1204
|
+
export interface IReferenceEntityField {
|
|
1205
|
+
path?: string;
|
|
1206
|
+
}
|
|
1207
|
+
export class ReferenceEntityField implements IReferenceEntityField {
|
|
1208
|
+
constructor(data?: IReferenceEntityField);
|
|
1209
|
+
path?: string;
|
|
1210
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1211
|
+
}
|
|
1204
1212
|
export interface ICacheSettings {
|
|
1205
1213
|
maxAgeSeconds?: number;
|
|
1206
1214
|
}
|
|
@@ -1404,6 +1412,7 @@ declare namespace $requests {
|
|
|
1404
1412
|
paging?: $requests.wix.api.IPaging;
|
|
1405
1413
|
wql?: $requests.wix.api.IWql;
|
|
1406
1414
|
meAliasableField?: string[];
|
|
1415
|
+
search?: $requests.wix.api.ISearch[];
|
|
1407
1416
|
}
|
|
1408
1417
|
export class SearchMethodOptions implements ISearchMethodOptions {
|
|
1409
1418
|
constructor(data?: ISearchMethodOptions);
|
|
@@ -1412,6 +1421,7 @@ declare namespace $requests {
|
|
|
1412
1421
|
paging?: $requests.wix.api.IPaging;
|
|
1413
1422
|
wql?: $requests.wix.api.IWql;
|
|
1414
1423
|
meAliasableField?: string[];
|
|
1424
|
+
search?: $requests.wix.api.ISearch[];
|
|
1415
1425
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1416
1426
|
}
|
|
1417
1427
|
export interface IBulkCreateMethodOptions {
|
|
@@ -1583,6 +1593,7 @@ declare namespace $requests {
|
|
|
1583
1593
|
field?: string[];
|
|
1584
1594
|
sort?: $requests.wix.api.Wql.Sort;
|
|
1585
1595
|
requiredFields?: $requests.wix.api.Wql.IRequiredFields[];
|
|
1596
|
+
maturity?: $requests.wix.api.Maturity;
|
|
1586
1597
|
}
|
|
1587
1598
|
export class OperatorFieldSupport implements IOperatorFieldSupport {
|
|
1588
1599
|
constructor(data?: IOperatorFieldSupport);
|
|
@@ -1591,9 +1602,20 @@ declare namespace $requests {
|
|
|
1591
1602
|
field?: string[];
|
|
1592
1603
|
sort?: $requests.wix.api.Wql.Sort;
|
|
1593
1604
|
requiredFields?: $requests.wix.api.Wql.IRequiredFields[];
|
|
1605
|
+
maturity?: $requests.wix.api.Maturity;
|
|
1594
1606
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1595
1607
|
}
|
|
1596
1608
|
}
|
|
1609
|
+
export interface ISearch {
|
|
1610
|
+
field?: string[];
|
|
1611
|
+
maturity?: $requests.wix.api.Maturity;
|
|
1612
|
+
}
|
|
1613
|
+
export class Search implements ISearch {
|
|
1614
|
+
constructor(data?: ISearch);
|
|
1615
|
+
field?: string[];
|
|
1616
|
+
maturity?: $requests.wix.api.Maturity;
|
|
1617
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1618
|
+
}
|
|
1597
1619
|
export interface IHookable {
|
|
1598
1620
|
}
|
|
1599
1621
|
export class Hookable implements IHookable {
|
|
@@ -2588,6 +2610,7 @@ declare namespace $requests {
|
|
|
2588
2610
|
'.wix.api.fieldMaturity'?: $requests.wix.api.Maturity;
|
|
2589
2611
|
'.wix.api.pii'?: boolean;
|
|
2590
2612
|
'.wix.api.referencedEntity'?: string;
|
|
2613
|
+
'.wix.api.referencedEntityField'?: $requests.wix.api.IReferenceEntityField;
|
|
2591
2614
|
'.wix.api.fieldDeprecated'?: $requests.wix.api.IDeprecated;
|
|
2592
2615
|
'.wix.api.translatable'?: $requests.wix.api.ITranslatable;
|
|
2593
2616
|
'.wix.api.sampleData'?: string;
|
|
@@ -2617,6 +2640,7 @@ declare namespace $requests {
|
|
|
2617
2640
|
'.wix.api.fieldMaturity'?: $requests.wix.api.Maturity;
|
|
2618
2641
|
'.wix.api.pii'?: boolean;
|
|
2619
2642
|
'.wix.api.referencedEntity'?: string;
|
|
2643
|
+
'.wix.api.referencedEntityField'?: $requests.wix.api.IReferenceEntityField;
|
|
2620
2644
|
'.wix.api.fieldDeprecated'?: $requests.wix.api.IDeprecated;
|
|
2621
2645
|
'.wix.api.translatable'?: $requests.wix.api.ITranslatable;
|
|
2622
2646
|
'.wix.api.sampleData'?: string;
|
|
@@ -4086,6 +4110,14 @@ declare namespace $responses {
|
|
|
4086
4110
|
eventSequenceNumber: boolean;
|
|
4087
4111
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4088
4112
|
}
|
|
4113
|
+
export interface IReferenceEntityField {
|
|
4114
|
+
path: string;
|
|
4115
|
+
}
|
|
4116
|
+
export class ReferenceEntityField implements IReferenceEntityField {
|
|
4117
|
+
constructor(data?: IReferenceEntityField);
|
|
4118
|
+
path: string;
|
|
4119
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4120
|
+
}
|
|
4089
4121
|
export interface ICacheSettings {
|
|
4090
4122
|
maxAgeSeconds: number;
|
|
4091
4123
|
}
|
|
@@ -4289,6 +4321,7 @@ declare namespace $responses {
|
|
|
4289
4321
|
paging?: $responses.wix.api.IPaging;
|
|
4290
4322
|
wql?: $responses.wix.api.IWql;
|
|
4291
4323
|
meAliasableField: string[];
|
|
4324
|
+
search: $responses.wix.api.ISearch[];
|
|
4292
4325
|
}
|
|
4293
4326
|
export class SearchMethodOptions implements ISearchMethodOptions {
|
|
4294
4327
|
constructor(data?: ISearchMethodOptions);
|
|
@@ -4297,6 +4330,7 @@ declare namespace $responses {
|
|
|
4297
4330
|
paging?: $responses.wix.api.IPaging;
|
|
4298
4331
|
wql?: $responses.wix.api.IWql;
|
|
4299
4332
|
meAliasableField: string[];
|
|
4333
|
+
search: $responses.wix.api.ISearch[];
|
|
4300
4334
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4301
4335
|
}
|
|
4302
4336
|
export interface IBulkCreateMethodOptions {
|
|
@@ -4468,6 +4502,7 @@ declare namespace $responses {
|
|
|
4468
4502
|
field: string[];
|
|
4469
4503
|
sort: $responses.wix.api.Wql.Sort;
|
|
4470
4504
|
requiredFields: $responses.wix.api.Wql.IRequiredFields[];
|
|
4505
|
+
maturity: $responses.wix.api.Maturity;
|
|
4471
4506
|
}
|
|
4472
4507
|
export class OperatorFieldSupport implements IOperatorFieldSupport {
|
|
4473
4508
|
constructor(data?: IOperatorFieldSupport);
|
|
@@ -4476,9 +4511,20 @@ declare namespace $responses {
|
|
|
4476
4511
|
field: string[];
|
|
4477
4512
|
sort: $responses.wix.api.Wql.Sort;
|
|
4478
4513
|
requiredFields: $responses.wix.api.Wql.IRequiredFields[];
|
|
4514
|
+
maturity: $responses.wix.api.Maturity;
|
|
4479
4515
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4480
4516
|
}
|
|
4481
4517
|
}
|
|
4518
|
+
export interface ISearch {
|
|
4519
|
+
field: string[];
|
|
4520
|
+
maturity: $responses.wix.api.Maturity;
|
|
4521
|
+
}
|
|
4522
|
+
export class Search implements ISearch {
|
|
4523
|
+
constructor(data?: ISearch);
|
|
4524
|
+
field: string[];
|
|
4525
|
+
maturity: $responses.wix.api.Maturity;
|
|
4526
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4527
|
+
}
|
|
4482
4528
|
export interface IHookable {
|
|
4483
4529
|
}
|
|
4484
4530
|
export class Hookable implements IHookable {
|
|
@@ -5473,6 +5519,7 @@ declare namespace $responses {
|
|
|
5473
5519
|
'.wix.api.fieldMaturity': $responses.wix.api.Maturity;
|
|
5474
5520
|
'.wix.api.pii': boolean;
|
|
5475
5521
|
'.wix.api.referencedEntity': string;
|
|
5522
|
+
'.wix.api.referencedEntityField'?: $responses.wix.api.IReferenceEntityField;
|
|
5476
5523
|
'.wix.api.fieldDeprecated'?: $responses.wix.api.IDeprecated;
|
|
5477
5524
|
'.wix.api.translatable'?: $responses.wix.api.ITranslatable;
|
|
5478
5525
|
'.wix.api.sampleData': string;
|
|
@@ -5502,6 +5549,7 @@ declare namespace $responses {
|
|
|
5502
5549
|
'.wix.api.fieldMaturity': $responses.wix.api.Maturity;
|
|
5503
5550
|
'.wix.api.pii': boolean;
|
|
5504
5551
|
'.wix.api.referencedEntity': string;
|
|
5552
|
+
'.wix.api.referencedEntityField'?: $responses.wix.api.IReferenceEntityField;
|
|
5505
5553
|
'.wix.api.fieldDeprecated'?: $responses.wix.api.IDeprecated;
|
|
5506
5554
|
'.wix.api.translatable'?: $responses.wix.api.ITranslatable;
|
|
5507
5555
|
'.wix.api.sampleData': string;
|
|
@@ -1215,6 +1215,14 @@ declare namespace $wrapper {
|
|
|
1215
1215
|
eventSequenceNumber?: (boolean | null);
|
|
1216
1216
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1217
1217
|
}
|
|
1218
|
+
export interface IReferenceEntityField {
|
|
1219
|
+
path?: (string | null);
|
|
1220
|
+
}
|
|
1221
|
+
export class ReferenceEntityField implements IReferenceEntityField {
|
|
1222
|
+
constructor(data?: IReferenceEntityField);
|
|
1223
|
+
path?: (string | null);
|
|
1224
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1225
|
+
}
|
|
1218
1226
|
export interface ICacheSettings {
|
|
1219
1227
|
maxAgeSeconds?: (number | null);
|
|
1220
1228
|
}
|
|
@@ -1418,6 +1426,7 @@ declare namespace $wrapper {
|
|
|
1418
1426
|
paging?: ($wrapper.wix.api.IPaging | null);
|
|
1419
1427
|
wql?: ($wrapper.wix.api.IWql | null);
|
|
1420
1428
|
meAliasableField?: (string[] | null);
|
|
1429
|
+
search?: ($wrapper.wix.api.ISearch[] | null);
|
|
1421
1430
|
}
|
|
1422
1431
|
export class SearchMethodOptions implements ISearchMethodOptions {
|
|
1423
1432
|
constructor(data?: ISearchMethodOptions);
|
|
@@ -1426,6 +1435,7 @@ declare namespace $wrapper {
|
|
|
1426
1435
|
paging?: ($wrapper.wix.api.IPaging | null);
|
|
1427
1436
|
wql?: ($wrapper.wix.api.IWql | null);
|
|
1428
1437
|
meAliasableField?: (string[] | null);
|
|
1438
|
+
search?: ($wrapper.wix.api.ISearch[] | null);
|
|
1429
1439
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1430
1440
|
}
|
|
1431
1441
|
export interface IBulkCreateMethodOptions {
|
|
@@ -1597,6 +1607,7 @@ declare namespace $wrapper {
|
|
|
1597
1607
|
field?: (string[] | null);
|
|
1598
1608
|
sort?: ($wrapper.wix.api.Wql.Sort | null);
|
|
1599
1609
|
requiredFields?: ($wrapper.wix.api.Wql.IRequiredFields[] | null);
|
|
1610
|
+
maturity?: ($wrapper.wix.api.Maturity | null);
|
|
1600
1611
|
}
|
|
1601
1612
|
export class OperatorFieldSupport implements IOperatorFieldSupport {
|
|
1602
1613
|
constructor(data?: IOperatorFieldSupport);
|
|
@@ -1605,9 +1616,20 @@ declare namespace $wrapper {
|
|
|
1605
1616
|
field?: (string[] | null);
|
|
1606
1617
|
sort?: ($wrapper.wix.api.Wql.Sort | null);
|
|
1607
1618
|
requiredFields?: ($wrapper.wix.api.Wql.IRequiredFields[] | null);
|
|
1619
|
+
maturity?: ($wrapper.wix.api.Maturity | null);
|
|
1608
1620
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1609
1621
|
}
|
|
1610
1622
|
}
|
|
1623
|
+
export interface ISearch {
|
|
1624
|
+
field?: (string[] | null);
|
|
1625
|
+
maturity?: ($wrapper.wix.api.Maturity | null);
|
|
1626
|
+
}
|
|
1627
|
+
export class Search implements ISearch {
|
|
1628
|
+
constructor(data?: ISearch);
|
|
1629
|
+
field?: (string[] | null);
|
|
1630
|
+
maturity?: ($wrapper.wix.api.Maturity | null);
|
|
1631
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1632
|
+
}
|
|
1611
1633
|
export interface IHookable {
|
|
1612
1634
|
}
|
|
1613
1635
|
export class Hookable implements IHookable {
|
|
@@ -2602,6 +2624,7 @@ declare namespace $wrapper {
|
|
|
2602
2624
|
'.wix.api.fieldMaturity'?: ($wrapper.wix.api.Maturity | null);
|
|
2603
2625
|
'.wix.api.pii'?: (boolean | null);
|
|
2604
2626
|
'.wix.api.referencedEntity'?: (string | null);
|
|
2627
|
+
'.wix.api.referencedEntityField'?: ($wrapper.wix.api.IReferenceEntityField | null);
|
|
2605
2628
|
'.wix.api.fieldDeprecated'?: ($wrapper.wix.api.IDeprecated | null);
|
|
2606
2629
|
'.wix.api.translatable'?: ($wrapper.wix.api.ITranslatable | null);
|
|
2607
2630
|
'.wix.api.sampleData'?: (string | null);
|
|
@@ -2631,6 +2654,7 @@ declare namespace $wrapper {
|
|
|
2631
2654
|
'.wix.api.fieldMaturity'?: ($wrapper.wix.api.Maturity | null);
|
|
2632
2655
|
'.wix.api.pii'?: (boolean | null);
|
|
2633
2656
|
'.wix.api.referencedEntity'?: (string | null);
|
|
2657
|
+
'.wix.api.referencedEntityField'?: ($wrapper.wix.api.IReferenceEntityField | null);
|
|
2634
2658
|
'.wix.api.fieldDeprecated'?: ($wrapper.wix.api.IDeprecated | null);
|
|
2635
2659
|
'.wix.api.translatable'?: ($wrapper.wix.api.ITranslatable | null);
|
|
2636
2660
|
'.wix.api.sampleData'?: (string | null);
|