@wix/metro-common-builders 1.0.1413 → 1.0.1414
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 +76 -0
- package/dist/es/src/proto/index.d.ts +38 -0
- package/dist/es/src/proto/index.js +544 -1
- package/dist/es/src/proto/server/index.d.ts +76 -0
- package/dist/src/proto/client/index.d.ts +76 -0
- package/dist/src/proto/index.d.ts +38 -0
- package/dist/src/proto/index.js +544 -1
- package/dist/src/proto/server/index.d.ts +76 -0
- package/package.json +4 -4
|
@@ -109,6 +109,7 @@ declare namespace $requests {
|
|
|
109
109
|
containsPii?: boolean;
|
|
110
110
|
segment?: $requests.wix.coreservices.businessschema.v1.Segment.Segment;
|
|
111
111
|
domainEventsSettings?: $requests.wix.coreservices.businessschema.v1.IDomainEventsSettings;
|
|
112
|
+
queryOptions?: $requests.wix.coreservices.businessschema.v1.IQueryOptions;
|
|
112
113
|
}
|
|
113
114
|
export class EntityInfo implements IEntityInfo {
|
|
114
115
|
constructor(data?: IEntityInfo);
|
|
@@ -136,6 +137,41 @@ declare namespace $requests {
|
|
|
136
137
|
containsPii?: boolean;
|
|
137
138
|
segment?: $requests.wix.coreservices.businessschema.v1.Segment.Segment;
|
|
138
139
|
domainEventsSettings?: $requests.wix.coreservices.businessschema.v1.IDomainEventsSettings;
|
|
140
|
+
queryOptions?: $requests.wix.coreservices.businessschema.v1.IQueryOptions;
|
|
141
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
142
|
+
}
|
|
143
|
+
export interface IQueryOptions {
|
|
144
|
+
wql?: $requests.wix.coreservices.businessschema.v1.IWql;
|
|
145
|
+
search?: $requests.wix.coreservices.businessschema.v1.ISearch[];
|
|
146
|
+
additionalQueryOptions?: $requests.wix.coreservices.businessschema.v1.INamedQueryOptions[];
|
|
147
|
+
}
|
|
148
|
+
export class QueryOptions implements IQueryOptions {
|
|
149
|
+
constructor(data?: IQueryOptions);
|
|
150
|
+
wql?: $requests.wix.coreservices.businessschema.v1.IWql;
|
|
151
|
+
search?: $requests.wix.coreservices.businessschema.v1.ISearch[];
|
|
152
|
+
additionalQueryOptions?: $requests.wix.coreservices.businessschema.v1.INamedQueryOptions[];
|
|
153
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
154
|
+
}
|
|
155
|
+
export interface INamedQueryOptions {
|
|
156
|
+
name?: string;
|
|
157
|
+
wql?: $requests.wix.coreservices.businessschema.v1.IWql;
|
|
158
|
+
search?: $requests.wix.coreservices.businessschema.v1.ISearch[];
|
|
159
|
+
}
|
|
160
|
+
export class NamedQueryOptions implements INamedQueryOptions {
|
|
161
|
+
constructor(data?: INamedQueryOptions);
|
|
162
|
+
name?: string;
|
|
163
|
+
wql?: $requests.wix.coreservices.businessschema.v1.IWql;
|
|
164
|
+
search?: $requests.wix.coreservices.businessschema.v1.ISearch[];
|
|
165
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
166
|
+
}
|
|
167
|
+
export interface ISearch {
|
|
168
|
+
field?: string[];
|
|
169
|
+
maturity?: $requests.wix.coreservices.businessschema.v1.Maturity;
|
|
170
|
+
}
|
|
171
|
+
export class Search implements ISearch {
|
|
172
|
+
constructor(data?: ISearch);
|
|
173
|
+
field?: string[];
|
|
174
|
+
maturity?: $requests.wix.coreservices.businessschema.v1.Maturity;
|
|
139
175
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
140
176
|
}
|
|
141
177
|
export interface IDomainEventsSettings {
|
|
@@ -601,6 +637,7 @@ declare namespace $requests {
|
|
|
601
637
|
itemsField?: string;
|
|
602
638
|
paging?: $requests.wix.coreservices.businessschema.v1.IPaging;
|
|
603
639
|
wql?: $requests.wix.coreservices.businessschema.v1.IWql;
|
|
640
|
+
queryOptionsName?: string;
|
|
604
641
|
itemField?: string;
|
|
605
642
|
namespace?: string;
|
|
606
643
|
}
|
|
@@ -611,6 +648,7 @@ declare namespace $requests {
|
|
|
611
648
|
itemsField?: string;
|
|
612
649
|
paging?: $requests.wix.coreservices.businessschema.v1.IPaging;
|
|
613
650
|
wql?: $requests.wix.coreservices.businessschema.v1.IWql;
|
|
651
|
+
queryOptionsName?: string;
|
|
614
652
|
itemField?: string;
|
|
615
653
|
namespace?: string;
|
|
616
654
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
@@ -3647,6 +3685,7 @@ declare namespace $responses {
|
|
|
3647
3685
|
containsPii: boolean;
|
|
3648
3686
|
segment: $responses.wix.coreservices.businessschema.v1.Segment.Segment;
|
|
3649
3687
|
domainEventsSettings?: $responses.wix.coreservices.businessschema.v1.IDomainEventsSettings;
|
|
3688
|
+
queryOptions?: $responses.wix.coreservices.businessschema.v1.IQueryOptions;
|
|
3650
3689
|
}
|
|
3651
3690
|
export class EntityInfo implements IEntityInfo {
|
|
3652
3691
|
constructor(data?: IEntityInfo);
|
|
@@ -3674,6 +3713,41 @@ declare namespace $responses {
|
|
|
3674
3713
|
containsPii: boolean;
|
|
3675
3714
|
segment: $responses.wix.coreservices.businessschema.v1.Segment.Segment;
|
|
3676
3715
|
domainEventsSettings?: $responses.wix.coreservices.businessschema.v1.IDomainEventsSettings;
|
|
3716
|
+
queryOptions?: $responses.wix.coreservices.businessschema.v1.IQueryOptions;
|
|
3717
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3718
|
+
}
|
|
3719
|
+
export interface IQueryOptions {
|
|
3720
|
+
wql?: $responses.wix.coreservices.businessschema.v1.IWql;
|
|
3721
|
+
search: $responses.wix.coreservices.businessschema.v1.ISearch[];
|
|
3722
|
+
additionalQueryOptions: $responses.wix.coreservices.businessschema.v1.INamedQueryOptions[];
|
|
3723
|
+
}
|
|
3724
|
+
export class QueryOptions implements IQueryOptions {
|
|
3725
|
+
constructor(data?: IQueryOptions);
|
|
3726
|
+
wql?: $responses.wix.coreservices.businessschema.v1.IWql;
|
|
3727
|
+
search: $responses.wix.coreservices.businessschema.v1.ISearch[];
|
|
3728
|
+
additionalQueryOptions: $responses.wix.coreservices.businessschema.v1.INamedQueryOptions[];
|
|
3729
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3730
|
+
}
|
|
3731
|
+
export interface INamedQueryOptions {
|
|
3732
|
+
name: string;
|
|
3733
|
+
wql?: $responses.wix.coreservices.businessschema.v1.IWql;
|
|
3734
|
+
search: $responses.wix.coreservices.businessschema.v1.ISearch[];
|
|
3735
|
+
}
|
|
3736
|
+
export class NamedQueryOptions implements INamedQueryOptions {
|
|
3737
|
+
constructor(data?: INamedQueryOptions);
|
|
3738
|
+
name: string;
|
|
3739
|
+
wql?: $responses.wix.coreservices.businessschema.v1.IWql;
|
|
3740
|
+
search: $responses.wix.coreservices.businessschema.v1.ISearch[];
|
|
3741
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3742
|
+
}
|
|
3743
|
+
export interface ISearch {
|
|
3744
|
+
field: string[];
|
|
3745
|
+
maturity: $responses.wix.coreservices.businessschema.v1.Maturity;
|
|
3746
|
+
}
|
|
3747
|
+
export class Search implements ISearch {
|
|
3748
|
+
constructor(data?: ISearch);
|
|
3749
|
+
field: string[];
|
|
3750
|
+
maturity: $responses.wix.coreservices.businessschema.v1.Maturity;
|
|
3677
3751
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3678
3752
|
}
|
|
3679
3753
|
export interface IDomainEventsSettings {
|
|
@@ -4139,6 +4213,7 @@ declare namespace $responses {
|
|
|
4139
4213
|
itemsField: string;
|
|
4140
4214
|
paging?: $responses.wix.coreservices.businessschema.v1.IPaging;
|
|
4141
4215
|
wql?: $responses.wix.coreservices.businessschema.v1.IWql;
|
|
4216
|
+
queryOptionsName?: string;
|
|
4142
4217
|
itemField: string;
|
|
4143
4218
|
namespace?: string;
|
|
4144
4219
|
}
|
|
@@ -4149,6 +4224,7 @@ declare namespace $responses {
|
|
|
4149
4224
|
itemsField: string;
|
|
4150
4225
|
paging?: $responses.wix.coreservices.businessschema.v1.IPaging;
|
|
4151
4226
|
wql?: $responses.wix.coreservices.businessschema.v1.IWql;
|
|
4227
|
+
queryOptionsName?: string;
|
|
4152
4228
|
itemField: string;
|
|
4153
4229
|
namespace?: string;
|
|
4154
4230
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
@@ -109,6 +109,7 @@ declare namespace $wrapper {
|
|
|
109
109
|
containsPii?: (boolean | null);
|
|
110
110
|
segment?: ($wrapper.wix.coreservices.businessschema.v1.Segment.Segment | null);
|
|
111
111
|
domainEventsSettings?: ($wrapper.wix.coreservices.businessschema.v1.IDomainEventsSettings | null);
|
|
112
|
+
queryOptions?: ($wrapper.wix.coreservices.businessschema.v1.IQueryOptions | null);
|
|
112
113
|
}
|
|
113
114
|
export class EntityInfo implements IEntityInfo {
|
|
114
115
|
constructor(data?: IEntityInfo);
|
|
@@ -136,6 +137,41 @@ declare namespace $wrapper {
|
|
|
136
137
|
containsPii?: (boolean | null);
|
|
137
138
|
segment?: ($wrapper.wix.coreservices.businessschema.v1.Segment.Segment | null);
|
|
138
139
|
domainEventsSettings?: ($wrapper.wix.coreservices.businessschema.v1.IDomainEventsSettings | null);
|
|
140
|
+
queryOptions?: ($wrapper.wix.coreservices.businessschema.v1.IQueryOptions | null);
|
|
141
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
142
|
+
}
|
|
143
|
+
export interface IQueryOptions {
|
|
144
|
+
wql?: ($wrapper.wix.coreservices.businessschema.v1.IWql | null);
|
|
145
|
+
search?: ($wrapper.wix.coreservices.businessschema.v1.ISearch[] | null);
|
|
146
|
+
additionalQueryOptions?: ($wrapper.wix.coreservices.businessschema.v1.INamedQueryOptions[] | null);
|
|
147
|
+
}
|
|
148
|
+
export class QueryOptions implements IQueryOptions {
|
|
149
|
+
constructor(data?: IQueryOptions);
|
|
150
|
+
wql?: ($wrapper.wix.coreservices.businessschema.v1.IWql | null);
|
|
151
|
+
search?: ($wrapper.wix.coreservices.businessschema.v1.ISearch[] | null);
|
|
152
|
+
additionalQueryOptions?: ($wrapper.wix.coreservices.businessschema.v1.INamedQueryOptions[] | null);
|
|
153
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
154
|
+
}
|
|
155
|
+
export interface INamedQueryOptions {
|
|
156
|
+
name?: (string | null);
|
|
157
|
+
wql?: ($wrapper.wix.coreservices.businessschema.v1.IWql | null);
|
|
158
|
+
search?: ($wrapper.wix.coreservices.businessschema.v1.ISearch[] | null);
|
|
159
|
+
}
|
|
160
|
+
export class NamedQueryOptions implements INamedQueryOptions {
|
|
161
|
+
constructor(data?: INamedQueryOptions);
|
|
162
|
+
name?: (string | null);
|
|
163
|
+
wql?: ($wrapper.wix.coreservices.businessschema.v1.IWql | null);
|
|
164
|
+
search?: ($wrapper.wix.coreservices.businessschema.v1.ISearch[] | null);
|
|
165
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
166
|
+
}
|
|
167
|
+
export interface ISearch {
|
|
168
|
+
field?: (string[] | null);
|
|
169
|
+
maturity?: ($wrapper.wix.coreservices.businessschema.v1.Maturity | null);
|
|
170
|
+
}
|
|
171
|
+
export class Search implements ISearch {
|
|
172
|
+
constructor(data?: ISearch);
|
|
173
|
+
field?: (string[] | null);
|
|
174
|
+
maturity?: ($wrapper.wix.coreservices.businessschema.v1.Maturity | null);
|
|
139
175
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
140
176
|
}
|
|
141
177
|
export interface IDomainEventsSettings {
|
|
@@ -601,6 +637,7 @@ declare namespace $wrapper {
|
|
|
601
637
|
itemsField?: (string | null);
|
|
602
638
|
paging?: ($wrapper.wix.coreservices.businessschema.v1.IPaging | null);
|
|
603
639
|
wql?: ($wrapper.wix.coreservices.businessschema.v1.IWql | null);
|
|
640
|
+
queryOptionsName?: (string | null);
|
|
604
641
|
itemField?: (string | null);
|
|
605
642
|
namespace?: (string | null);
|
|
606
643
|
}
|
|
@@ -611,6 +648,7 @@ declare namespace $wrapper {
|
|
|
611
648
|
itemsField?: (string | null);
|
|
612
649
|
paging?: ($wrapper.wix.coreservices.businessschema.v1.IPaging | null);
|
|
613
650
|
wql?: ($wrapper.wix.coreservices.businessschema.v1.IWql | null);
|
|
651
|
+
queryOptionsName?: (string | null);
|
|
614
652
|
itemField?: (string | null);
|
|
615
653
|
namespace?: (string | null);
|
|
616
654
|
static __$$generatedFromProtobuf$$__: Symbol;
|