@wix/metro-common-builders 1.0.1481 → 1.0.1483
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 +336 -2
- 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 +336 -2
- package/dist/src/proto/server/index.d.ts +48 -0
- package/package.json +4 -4
|
@@ -112,6 +112,7 @@ declare namespace $requests {
|
|
|
112
112
|
segment: $requests.wix.coreservices.businessschema.v1.Segment.Segment;
|
|
113
113
|
domainEventsSettings?: $requests.wix.coreservices.businessschema.v1.IDomainEventsSettings;
|
|
114
114
|
queryOptions?: $requests.wix.coreservices.businessschema.v1.IQueryOptions;
|
|
115
|
+
taggable?: $requests.wix.coreservices.businessschema.v1.ITaggable;
|
|
115
116
|
}
|
|
116
117
|
export class EntityInfo implements IEntityInfo {
|
|
117
118
|
constructor(data?: IEntityInfo);
|
|
@@ -140,6 +141,17 @@ declare namespace $requests {
|
|
|
140
141
|
segment: $requests.wix.coreservices.businessschema.v1.Segment.Segment;
|
|
141
142
|
domainEventsSettings?: $requests.wix.coreservices.businessschema.v1.IDomainEventsSettings;
|
|
142
143
|
queryOptions?: $requests.wix.coreservices.businessschema.v1.IQueryOptions;
|
|
144
|
+
taggable?: $requests.wix.coreservices.businessschema.v1.ITaggable;
|
|
145
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
146
|
+
}
|
|
147
|
+
export interface ITaggable {
|
|
148
|
+
tags: boolean;
|
|
149
|
+
privateTags: boolean;
|
|
150
|
+
}
|
|
151
|
+
export class Taggable implements ITaggable {
|
|
152
|
+
constructor(data?: ITaggable);
|
|
153
|
+
tags: boolean;
|
|
154
|
+
privateTags: boolean;
|
|
143
155
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
144
156
|
}
|
|
145
157
|
export interface IQueryOptions {
|
|
@@ -188,12 +200,24 @@ declare namespace $requests {
|
|
|
188
200
|
rootExtensionEnabled: boolean;
|
|
189
201
|
nestedExtensionFieldPath?: string;
|
|
190
202
|
filterable?: boolean;
|
|
203
|
+
nestedExtensionPointMappings: $requests.wix.coreservices.businessschema.v1.INestedExtensionPointMapping[];
|
|
191
204
|
}
|
|
192
205
|
export class Extensible implements IExtensible {
|
|
193
206
|
constructor(data?: IExtensible);
|
|
194
207
|
rootExtensionEnabled: boolean;
|
|
195
208
|
nestedExtensionFieldPath?: string;
|
|
196
209
|
filterable?: boolean;
|
|
210
|
+
nestedExtensionPointMappings: $requests.wix.coreservices.businessschema.v1.INestedExtensionPointMapping[];
|
|
211
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
212
|
+
}
|
|
213
|
+
export interface INestedExtensionPointMapping {
|
|
214
|
+
extensionPoint: string;
|
|
215
|
+
path: string;
|
|
216
|
+
}
|
|
217
|
+
export class NestedExtensionPointMapping implements INestedExtensionPointMapping {
|
|
218
|
+
constructor(data?: INestedExtensionPointMapping);
|
|
219
|
+
extensionPoint: string;
|
|
220
|
+
path: string;
|
|
197
221
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
198
222
|
}
|
|
199
223
|
export interface ISpiInfo {
|
|
@@ -3766,6 +3790,7 @@ declare namespace $responses {
|
|
|
3766
3790
|
segment?: $responses.wix.coreservices.businessschema.v1.Segment.Segment;
|
|
3767
3791
|
domainEventsSettings?: $responses.wix.coreservices.businessschema.v1.IDomainEventsSettings;
|
|
3768
3792
|
queryOptions?: $responses.wix.coreservices.businessschema.v1.IQueryOptions;
|
|
3793
|
+
taggable?: $responses.wix.coreservices.businessschema.v1.ITaggable;
|
|
3769
3794
|
}
|
|
3770
3795
|
export class EntityInfo implements IEntityInfo {
|
|
3771
3796
|
constructor(data?: IEntityInfo);
|
|
@@ -3794,6 +3819,17 @@ declare namespace $responses {
|
|
|
3794
3819
|
segment?: $responses.wix.coreservices.businessschema.v1.Segment.Segment;
|
|
3795
3820
|
domainEventsSettings?: $responses.wix.coreservices.businessschema.v1.IDomainEventsSettings;
|
|
3796
3821
|
queryOptions?: $responses.wix.coreservices.businessschema.v1.IQueryOptions;
|
|
3822
|
+
taggable?: $responses.wix.coreservices.businessschema.v1.ITaggable;
|
|
3823
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3824
|
+
}
|
|
3825
|
+
export interface ITaggable {
|
|
3826
|
+
tags?: boolean;
|
|
3827
|
+
privateTags?: boolean;
|
|
3828
|
+
}
|
|
3829
|
+
export class Taggable implements ITaggable {
|
|
3830
|
+
constructor(data?: ITaggable);
|
|
3831
|
+
tags?: boolean;
|
|
3832
|
+
privateTags?: boolean;
|
|
3797
3833
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3798
3834
|
}
|
|
3799
3835
|
export interface IQueryOptions {
|
|
@@ -3842,12 +3878,24 @@ declare namespace $responses {
|
|
|
3842
3878
|
rootExtensionEnabled?: boolean;
|
|
3843
3879
|
nestedExtensionFieldPath?: string;
|
|
3844
3880
|
filterable?: boolean;
|
|
3881
|
+
nestedExtensionPointMappings?: $responses.wix.coreservices.businessschema.v1.INestedExtensionPointMapping[];
|
|
3845
3882
|
}
|
|
3846
3883
|
export class Extensible implements IExtensible {
|
|
3847
3884
|
constructor(data?: IExtensible);
|
|
3848
3885
|
rootExtensionEnabled?: boolean;
|
|
3849
3886
|
nestedExtensionFieldPath?: string;
|
|
3850
3887
|
filterable?: boolean;
|
|
3888
|
+
nestedExtensionPointMappings?: $responses.wix.coreservices.businessschema.v1.INestedExtensionPointMapping[];
|
|
3889
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3890
|
+
}
|
|
3891
|
+
export interface INestedExtensionPointMapping {
|
|
3892
|
+
extensionPoint?: string;
|
|
3893
|
+
path?: string;
|
|
3894
|
+
}
|
|
3895
|
+
export class NestedExtensionPointMapping implements INestedExtensionPointMapping {
|
|
3896
|
+
constructor(data?: INestedExtensionPointMapping);
|
|
3897
|
+
extensionPoint?: string;
|
|
3898
|
+
path?: string;
|
|
3851
3899
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3852
3900
|
}
|
|
3853
3901
|
export interface ISpiInfo {
|
|
@@ -112,6 +112,7 @@ declare namespace $requests {
|
|
|
112
112
|
segment?: $requests.wix.coreservices.businessschema.v1.Segment.Segment;
|
|
113
113
|
domainEventsSettings?: $requests.wix.coreservices.businessschema.v1.IDomainEventsSettings;
|
|
114
114
|
queryOptions?: $requests.wix.coreservices.businessschema.v1.IQueryOptions;
|
|
115
|
+
taggable?: $requests.wix.coreservices.businessschema.v1.ITaggable;
|
|
115
116
|
}
|
|
116
117
|
export class EntityInfo implements IEntityInfo {
|
|
117
118
|
constructor(data?: IEntityInfo);
|
|
@@ -140,6 +141,17 @@ declare namespace $requests {
|
|
|
140
141
|
segment?: $requests.wix.coreservices.businessschema.v1.Segment.Segment;
|
|
141
142
|
domainEventsSettings?: $requests.wix.coreservices.businessschema.v1.IDomainEventsSettings;
|
|
142
143
|
queryOptions?: $requests.wix.coreservices.businessschema.v1.IQueryOptions;
|
|
144
|
+
taggable?: $requests.wix.coreservices.businessschema.v1.ITaggable;
|
|
145
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
146
|
+
}
|
|
147
|
+
export interface ITaggable {
|
|
148
|
+
tags?: boolean;
|
|
149
|
+
privateTags?: boolean;
|
|
150
|
+
}
|
|
151
|
+
export class Taggable implements ITaggable {
|
|
152
|
+
constructor(data?: ITaggable);
|
|
153
|
+
tags?: boolean;
|
|
154
|
+
privateTags?: boolean;
|
|
143
155
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
144
156
|
}
|
|
145
157
|
export interface IQueryOptions {
|
|
@@ -188,12 +200,24 @@ declare namespace $requests {
|
|
|
188
200
|
rootExtensionEnabled?: boolean;
|
|
189
201
|
nestedExtensionFieldPath?: string;
|
|
190
202
|
filterable?: boolean;
|
|
203
|
+
nestedExtensionPointMappings?: $requests.wix.coreservices.businessschema.v1.INestedExtensionPointMapping[];
|
|
191
204
|
}
|
|
192
205
|
export class Extensible implements IExtensible {
|
|
193
206
|
constructor(data?: IExtensible);
|
|
194
207
|
rootExtensionEnabled?: boolean;
|
|
195
208
|
nestedExtensionFieldPath?: string;
|
|
196
209
|
filterable?: boolean;
|
|
210
|
+
nestedExtensionPointMappings?: $requests.wix.coreservices.businessschema.v1.INestedExtensionPointMapping[];
|
|
211
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
212
|
+
}
|
|
213
|
+
export interface INestedExtensionPointMapping {
|
|
214
|
+
extensionPoint?: string;
|
|
215
|
+
path?: string;
|
|
216
|
+
}
|
|
217
|
+
export class NestedExtensionPointMapping implements INestedExtensionPointMapping {
|
|
218
|
+
constructor(data?: INestedExtensionPointMapping);
|
|
219
|
+
extensionPoint?: string;
|
|
220
|
+
path?: string;
|
|
197
221
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
198
222
|
}
|
|
199
223
|
export interface ISpiInfo {
|
|
@@ -3766,6 +3790,7 @@ declare namespace $responses {
|
|
|
3766
3790
|
segment: $responses.wix.coreservices.businessschema.v1.Segment.Segment;
|
|
3767
3791
|
domainEventsSettings?: $responses.wix.coreservices.businessschema.v1.IDomainEventsSettings;
|
|
3768
3792
|
queryOptions?: $responses.wix.coreservices.businessschema.v1.IQueryOptions;
|
|
3793
|
+
taggable?: $responses.wix.coreservices.businessschema.v1.ITaggable;
|
|
3769
3794
|
}
|
|
3770
3795
|
export class EntityInfo implements IEntityInfo {
|
|
3771
3796
|
constructor(data?: IEntityInfo);
|
|
@@ -3794,6 +3819,17 @@ declare namespace $responses {
|
|
|
3794
3819
|
segment: $responses.wix.coreservices.businessschema.v1.Segment.Segment;
|
|
3795
3820
|
domainEventsSettings?: $responses.wix.coreservices.businessschema.v1.IDomainEventsSettings;
|
|
3796
3821
|
queryOptions?: $responses.wix.coreservices.businessschema.v1.IQueryOptions;
|
|
3822
|
+
taggable?: $responses.wix.coreservices.businessschema.v1.ITaggable;
|
|
3823
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3824
|
+
}
|
|
3825
|
+
export interface ITaggable {
|
|
3826
|
+
tags: boolean;
|
|
3827
|
+
privateTags: boolean;
|
|
3828
|
+
}
|
|
3829
|
+
export class Taggable implements ITaggable {
|
|
3830
|
+
constructor(data?: ITaggable);
|
|
3831
|
+
tags: boolean;
|
|
3832
|
+
privateTags: boolean;
|
|
3797
3833
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3798
3834
|
}
|
|
3799
3835
|
export interface IQueryOptions {
|
|
@@ -3842,12 +3878,24 @@ declare namespace $responses {
|
|
|
3842
3878
|
rootExtensionEnabled: boolean;
|
|
3843
3879
|
nestedExtensionFieldPath?: string;
|
|
3844
3880
|
filterable?: boolean;
|
|
3881
|
+
nestedExtensionPointMappings: $responses.wix.coreservices.businessschema.v1.INestedExtensionPointMapping[];
|
|
3845
3882
|
}
|
|
3846
3883
|
export class Extensible implements IExtensible {
|
|
3847
3884
|
constructor(data?: IExtensible);
|
|
3848
3885
|
rootExtensionEnabled: boolean;
|
|
3849
3886
|
nestedExtensionFieldPath?: string;
|
|
3850
3887
|
filterable?: boolean;
|
|
3888
|
+
nestedExtensionPointMappings: $responses.wix.coreservices.businessschema.v1.INestedExtensionPointMapping[];
|
|
3889
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3890
|
+
}
|
|
3891
|
+
export interface INestedExtensionPointMapping {
|
|
3892
|
+
extensionPoint: string;
|
|
3893
|
+
path: string;
|
|
3894
|
+
}
|
|
3895
|
+
export class NestedExtensionPointMapping implements INestedExtensionPointMapping {
|
|
3896
|
+
constructor(data?: INestedExtensionPointMapping);
|
|
3897
|
+
extensionPoint: string;
|
|
3898
|
+
path: string;
|
|
3851
3899
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3852
3900
|
}
|
|
3853
3901
|
export interface ISpiInfo {
|
|
@@ -112,6 +112,7 @@ declare namespace $wrapper {
|
|
|
112
112
|
segment?: ($wrapper.wix.coreservices.businessschema.v1.Segment.Segment | null);
|
|
113
113
|
domainEventsSettings?: ($wrapper.wix.coreservices.businessschema.v1.IDomainEventsSettings | null);
|
|
114
114
|
queryOptions?: ($wrapper.wix.coreservices.businessschema.v1.IQueryOptions | null);
|
|
115
|
+
taggable?: ($wrapper.wix.coreservices.businessschema.v1.ITaggable | null);
|
|
115
116
|
}
|
|
116
117
|
export class EntityInfo implements IEntityInfo {
|
|
117
118
|
constructor(data?: IEntityInfo);
|
|
@@ -140,6 +141,17 @@ declare namespace $wrapper {
|
|
|
140
141
|
segment?: ($wrapper.wix.coreservices.businessschema.v1.Segment.Segment | null);
|
|
141
142
|
domainEventsSettings?: ($wrapper.wix.coreservices.businessschema.v1.IDomainEventsSettings | null);
|
|
142
143
|
queryOptions?: ($wrapper.wix.coreservices.businessschema.v1.IQueryOptions | null);
|
|
144
|
+
taggable?: ($wrapper.wix.coreservices.businessschema.v1.ITaggable | null);
|
|
145
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
146
|
+
}
|
|
147
|
+
export interface ITaggable {
|
|
148
|
+
tags?: (boolean | null);
|
|
149
|
+
privateTags?: (boolean | null);
|
|
150
|
+
}
|
|
151
|
+
export class Taggable implements ITaggable {
|
|
152
|
+
constructor(data?: ITaggable);
|
|
153
|
+
tags?: (boolean | null);
|
|
154
|
+
privateTags?: (boolean | null);
|
|
143
155
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
144
156
|
}
|
|
145
157
|
export interface IQueryOptions {
|
|
@@ -188,12 +200,24 @@ declare namespace $wrapper {
|
|
|
188
200
|
rootExtensionEnabled?: (boolean | null);
|
|
189
201
|
nestedExtensionFieldPath?: (string | null);
|
|
190
202
|
filterable?: (boolean | null);
|
|
203
|
+
nestedExtensionPointMappings?: ($wrapper.wix.coreservices.businessschema.v1.INestedExtensionPointMapping[] | null);
|
|
191
204
|
}
|
|
192
205
|
export class Extensible implements IExtensible {
|
|
193
206
|
constructor(data?: IExtensible);
|
|
194
207
|
rootExtensionEnabled?: (boolean | null);
|
|
195
208
|
nestedExtensionFieldPath?: (string | null);
|
|
196
209
|
filterable?: (boolean | null);
|
|
210
|
+
nestedExtensionPointMappings?: ($wrapper.wix.coreservices.businessschema.v1.INestedExtensionPointMapping[] | null);
|
|
211
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
212
|
+
}
|
|
213
|
+
export interface INestedExtensionPointMapping {
|
|
214
|
+
extensionPoint?: (string | null);
|
|
215
|
+
path?: (string | null);
|
|
216
|
+
}
|
|
217
|
+
export class NestedExtensionPointMapping implements INestedExtensionPointMapping {
|
|
218
|
+
constructor(data?: INestedExtensionPointMapping);
|
|
219
|
+
extensionPoint?: (string | null);
|
|
220
|
+
path?: (string | null);
|
|
197
221
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
198
222
|
}
|
|
199
223
|
export interface ISpiInfo {
|