@wix/metro-common-builders 1.0.1187 → 1.0.1189
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 +246 -0
- package/dist/es/src/proto/index.d.ts +123 -0
- package/dist/es/src/proto/index.js +3563 -102
- package/dist/es/src/proto/server/index.d.ts +245 -0
- package/dist/src/proto/client/index.d.ts +246 -0
- package/dist/src/proto/index.d.ts +123 -0
- package/dist/src/proto/index.js +3563 -102
- package/dist/src/proto/server/index.d.ts +245 -0
- package/package.json +3 -3
|
@@ -40,6 +40,20 @@ declare namespace $requests {
|
|
|
40
40
|
GA = "GA",
|
|
41
41
|
NOT_IMPLEMENTED = "NOT_IMPLEMENTED",
|
|
42
42
|
}
|
|
43
|
+
export interface ISegment {
|
|
44
|
+
}
|
|
45
|
+
export class Segment implements ISegment {
|
|
46
|
+
constructor(data?: ISegment);
|
|
47
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
48
|
+
}
|
|
49
|
+
export namespace Segment {
|
|
50
|
+
export enum Segment {
|
|
51
|
+
UNSPECIFIED = "UNSPECIFIED",
|
|
52
|
+
USERS = "USERS",
|
|
53
|
+
PUBLIC = "PUBLIC",
|
|
54
|
+
OTHERS = "OTHERS",
|
|
55
|
+
}
|
|
56
|
+
}
|
|
43
57
|
export interface IDeprecated {
|
|
44
58
|
message?: string;
|
|
45
59
|
replacedBy?: string;
|
|
@@ -93,6 +107,7 @@ declare namespace $requests {
|
|
|
93
107
|
exposure?: $requests.wix.coreservices.businessschema.v1.Exposure;
|
|
94
108
|
extensible?: $requests.wix.coreservices.businessschema.v1.IExtensible;
|
|
95
109
|
containsPii?: boolean;
|
|
110
|
+
segment?: $requests.wix.coreservices.businessschema.v1.Segment.Segment;
|
|
96
111
|
}
|
|
97
112
|
export class EntityInfo implements IEntityInfo {
|
|
98
113
|
constructor(data?: IEntityInfo);
|
|
@@ -118,6 +133,7 @@ declare namespace $requests {
|
|
|
118
133
|
exposure?: $requests.wix.coreservices.businessschema.v1.Exposure;
|
|
119
134
|
extensible?: $requests.wix.coreservices.businessschema.v1.IExtensible;
|
|
120
135
|
containsPii?: boolean;
|
|
136
|
+
segment?: $requests.wix.coreservices.businessschema.v1.Segment.Segment;
|
|
121
137
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
122
138
|
}
|
|
123
139
|
export interface IExtensible {
|
|
@@ -256,6 +272,7 @@ declare namespace $requests {
|
|
|
256
272
|
sdkSignatures?: $requests.wix.coreservices.businessschema.v1.ISdkMethodSignature;
|
|
257
273
|
inferredFieldmask?: $requests.wix.coreservices.businessschema.v1.IInferredFieldmask;
|
|
258
274
|
applicableIdentities?: $requests.wix.coreservices.businessschema.v1.ApplicableIdentity[];
|
|
275
|
+
externalPermissionScopes?: $requests.wix.coreservices.businessschema.v1.IExternalPermissionScope[];
|
|
259
276
|
}
|
|
260
277
|
export class Action implements IAction {
|
|
261
278
|
constructor(data?: IAction);
|
|
@@ -278,6 +295,7 @@ declare namespace $requests {
|
|
|
278
295
|
sdkSignatures?: $requests.wix.coreservices.businessschema.v1.ISdkMethodSignature;
|
|
279
296
|
inferredFieldmask?: $requests.wix.coreservices.businessschema.v1.IInferredFieldmask;
|
|
280
297
|
applicableIdentities?: $requests.wix.coreservices.businessschema.v1.ApplicableIdentity[];
|
|
298
|
+
externalPermissionScopes?: $requests.wix.coreservices.businessschema.v1.IExternalPermissionScope[];
|
|
281
299
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
282
300
|
}
|
|
283
301
|
export enum ApplicableIdentity {
|
|
@@ -287,6 +305,16 @@ declare namespace $requests {
|
|
|
287
305
|
USER = "USER",
|
|
288
306
|
APP = "APP",
|
|
289
307
|
}
|
|
308
|
+
export interface IExternalPermissionScope {
|
|
309
|
+
name?: string;
|
|
310
|
+
scopeId?: string;
|
|
311
|
+
}
|
|
312
|
+
export class ExternalPermissionScope implements IExternalPermissionScope {
|
|
313
|
+
constructor(data?: IExternalPermissionScope);
|
|
314
|
+
name?: string;
|
|
315
|
+
scopeId?: string;
|
|
316
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
317
|
+
}
|
|
290
318
|
export interface IInferredFieldmask {
|
|
291
319
|
fieldmaskField?: string;
|
|
292
320
|
inferredFromField?: string;
|
|
@@ -741,12 +769,16 @@ declare namespace $requests {
|
|
|
741
769
|
order?: number;
|
|
742
770
|
value?: string;
|
|
743
771
|
description?: string;
|
|
772
|
+
maturity?: $requests.wix.coreservices.businessschema.v1.Maturity;
|
|
773
|
+
exposure?: $requests.wix.coreservices.businessschema.v1.Exposure;
|
|
744
774
|
}
|
|
745
775
|
export class EnumItem implements IEnumItem {
|
|
746
776
|
constructor(data?: IEnumItem);
|
|
747
777
|
order?: number;
|
|
748
778
|
value?: string;
|
|
749
779
|
description?: string;
|
|
780
|
+
maturity?: $requests.wix.coreservices.businessschema.v1.Maturity;
|
|
781
|
+
exposure?: $requests.wix.coreservices.businessschema.v1.Exposure;
|
|
750
782
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
751
783
|
}
|
|
752
784
|
export interface IField {
|
|
@@ -764,6 +796,7 @@ declare namespace $requests {
|
|
|
764
796
|
validations?: $requests.wix.coreservices.businessschema.v1.IValidation[];
|
|
765
797
|
example?: any;
|
|
766
798
|
translatable?: $requests.wix.coreservices.businessschema.v1.ITranslatable;
|
|
799
|
+
maturity?: $requests.wix.coreservices.businessschema.v1.Maturity;
|
|
767
800
|
}
|
|
768
801
|
export class Field implements IField {
|
|
769
802
|
constructor(data?: IField);
|
|
@@ -781,6 +814,7 @@ declare namespace $requests {
|
|
|
781
814
|
validations?: $requests.wix.coreservices.businessschema.v1.IValidation[];
|
|
782
815
|
example?: any;
|
|
783
816
|
translatable?: $requests.wix.coreservices.businessschema.v1.ITranslatable;
|
|
817
|
+
maturity?: $requests.wix.coreservices.businessschema.v1.Maturity;
|
|
784
818
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
785
819
|
}
|
|
786
820
|
export interface IMember {
|
|
@@ -955,6 +989,22 @@ declare namespace $requests {
|
|
|
955
989
|
constructor(data?: IDeleteServiceDocumentResponse);
|
|
956
990
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
957
991
|
}
|
|
992
|
+
export interface IValidateFqdnRequest {
|
|
993
|
+
fqdn?: string;
|
|
994
|
+
}
|
|
995
|
+
export class ValidateFqdnRequest implements IValidateFqdnRequest {
|
|
996
|
+
constructor(data?: IValidateFqdnRequest);
|
|
997
|
+
fqdn?: string;
|
|
998
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
999
|
+
}
|
|
1000
|
+
export interface IValidateFqdnResponse {
|
|
1001
|
+
valid?: boolean;
|
|
1002
|
+
}
|
|
1003
|
+
export class ValidateFqdnResponse implements IValidateFqdnResponse {
|
|
1004
|
+
constructor(data?: IValidateFqdnResponse);
|
|
1005
|
+
valid?: boolean;
|
|
1006
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1007
|
+
}
|
|
958
1008
|
export interface IQueryEntitiesRequest {
|
|
959
1009
|
query?: $requests.wix.common.IQueryV2;
|
|
960
1010
|
}
|
|
@@ -2050,6 +2100,7 @@ declare namespace $requests {
|
|
|
2050
2100
|
value?: $requests.wix.common.Aggregation.IValueAggregation;
|
|
2051
2101
|
range?: $requests.wix.common.Aggregation.IRangeAggregation;
|
|
2052
2102
|
scalar?: $requests.wix.common.Aggregation.IScalarAggregation;
|
|
2103
|
+
groupBy?: $requests.wix.common.Aggregation.IGroupByAggregation;
|
|
2053
2104
|
}
|
|
2054
2105
|
export class Aggregation implements IAggregation {
|
|
2055
2106
|
constructor(data?: IAggregation);
|
|
@@ -2059,6 +2110,7 @@ declare namespace $requests {
|
|
|
2059
2110
|
value?: $requests.wix.common.Aggregation.IValueAggregation;
|
|
2060
2111
|
range?: $requests.wix.common.Aggregation.IRangeAggregation;
|
|
2061
2112
|
scalar?: $requests.wix.common.Aggregation.IScalarAggregation;
|
|
2113
|
+
groupBy?: $requests.wix.common.Aggregation.IGroupByAggregation;
|
|
2062
2114
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2063
2115
|
}
|
|
2064
2116
|
export namespace Aggregation {
|
|
@@ -2086,12 +2138,16 @@ declare namespace $requests {
|
|
|
2086
2138
|
sortType?: $requests.wix.common.Aggregation.ValueAggregation.SortType;
|
|
2087
2139
|
sortDirection?: $requests.wix.common.Aggregation.ValueAggregation.SortDirection;
|
|
2088
2140
|
limit?: number;
|
|
2141
|
+
missingValues?: $requests.wix.common.Aggregation.ValueAggregation.MissingValues;
|
|
2142
|
+
includeOptions?: $requests.wix.common.Aggregation.ValueAggregation.IIncludeMissingValuesOptions;
|
|
2089
2143
|
}
|
|
2090
2144
|
export class ValueAggregation implements IValueAggregation {
|
|
2091
2145
|
constructor(data?: IValueAggregation);
|
|
2092
2146
|
sortType?: $requests.wix.common.Aggregation.ValueAggregation.SortType;
|
|
2093
2147
|
sortDirection?: $requests.wix.common.Aggregation.ValueAggregation.SortDirection;
|
|
2094
2148
|
limit?: number;
|
|
2149
|
+
missingValues?: $requests.wix.common.Aggregation.ValueAggregation.MissingValues;
|
|
2150
|
+
includeOptions?: $requests.wix.common.Aggregation.ValueAggregation.IIncludeMissingValuesOptions;
|
|
2095
2151
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2096
2152
|
}
|
|
2097
2153
|
export namespace ValueAggregation {
|
|
@@ -2103,6 +2159,18 @@ declare namespace $requests {
|
|
|
2103
2159
|
DESC = "DESC",
|
|
2104
2160
|
ASC = "ASC",
|
|
2105
2161
|
}
|
|
2162
|
+
export enum MissingValues {
|
|
2163
|
+
EXCLUDE = "EXCLUDE",
|
|
2164
|
+
INCLUDE = "INCLUDE",
|
|
2165
|
+
}
|
|
2166
|
+
export interface IIncludeMissingValuesOptions {
|
|
2167
|
+
addToBucket?: string;
|
|
2168
|
+
}
|
|
2169
|
+
export class IncludeMissingValuesOptions implements IIncludeMissingValuesOptions {
|
|
2170
|
+
constructor(data?: IIncludeMissingValuesOptions);
|
|
2171
|
+
addToBucket?: string;
|
|
2172
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2173
|
+
}
|
|
2106
2174
|
}
|
|
2107
2175
|
export interface IScalarAggregation {
|
|
2108
2176
|
type?: $requests.wix.common.ScalarType;
|
|
@@ -2112,6 +2180,18 @@ declare namespace $requests {
|
|
|
2112
2180
|
type?: $requests.wix.common.ScalarType;
|
|
2113
2181
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2114
2182
|
}
|
|
2183
|
+
export interface IGroupByAggregation {
|
|
2184
|
+
name?: string;
|
|
2185
|
+
fieldPath?: string;
|
|
2186
|
+
value?: $requests.wix.common.Aggregation.IValueAggregation;
|
|
2187
|
+
}
|
|
2188
|
+
export class GroupByAggregation implements IGroupByAggregation {
|
|
2189
|
+
constructor(data?: IGroupByAggregation);
|
|
2190
|
+
name?: string;
|
|
2191
|
+
fieldPath?: string;
|
|
2192
|
+
value?: $requests.wix.common.Aggregation.IValueAggregation;
|
|
2193
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2194
|
+
}
|
|
2115
2195
|
}
|
|
2116
2196
|
export interface IAggregationData {
|
|
2117
2197
|
results?: $requests.wix.common.AggregationData.IAggregationResults[];
|
|
@@ -2125,17 +2205,21 @@ declare namespace $requests {
|
|
|
2125
2205
|
export interface IAggregationResults {
|
|
2126
2206
|
name?: string;
|
|
2127
2207
|
type?: $requests.wix.common.AggregationType;
|
|
2208
|
+
fieldPath?: string;
|
|
2128
2209
|
values?: $requests.wix.common.AggregationData.AggregationResults.IValueResults;
|
|
2129
2210
|
ranges?: $requests.wix.common.AggregationData.AggregationResults.IRangeResults;
|
|
2130
2211
|
scalar?: $requests.wix.common.AggregationData.AggregationResults.IScalarResult;
|
|
2212
|
+
groupedByValue?: $requests.wix.common.AggregationData.AggregationResults.IGroupByValueResults;
|
|
2131
2213
|
}
|
|
2132
2214
|
export class AggregationResults implements IAggregationResults {
|
|
2133
2215
|
constructor(data?: IAggregationResults);
|
|
2134
2216
|
name?: string;
|
|
2135
2217
|
type?: $requests.wix.common.AggregationType;
|
|
2218
|
+
fieldPath?: string;
|
|
2136
2219
|
values?: $requests.wix.common.AggregationData.AggregationResults.IValueResults;
|
|
2137
2220
|
ranges?: $requests.wix.common.AggregationData.AggregationResults.IRangeResults;
|
|
2138
2221
|
scalar?: $requests.wix.common.AggregationData.AggregationResults.IScalarResult;
|
|
2222
|
+
groupedByValue?: $requests.wix.common.AggregationData.AggregationResults.IGroupByValueResults;
|
|
2139
2223
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2140
2224
|
}
|
|
2141
2225
|
export namespace AggregationResults {
|
|
@@ -2191,6 +2275,44 @@ declare namespace $requests {
|
|
|
2191
2275
|
value?: number;
|
|
2192
2276
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2193
2277
|
}
|
|
2278
|
+
export interface IGroupByValueResults {
|
|
2279
|
+
results?: $requests.wix.common.AggregationData.AggregationResults.GroupByValueResults.INestedValueAggregationResult[];
|
|
2280
|
+
}
|
|
2281
|
+
export class GroupByValueResults implements IGroupByValueResults {
|
|
2282
|
+
constructor(data?: IGroupByValueResults);
|
|
2283
|
+
results?: $requests.wix.common.AggregationData.AggregationResults.GroupByValueResults.INestedValueAggregationResult[];
|
|
2284
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2285
|
+
}
|
|
2286
|
+
export namespace GroupByValueResults {
|
|
2287
|
+
export interface INestedValueAggregationResult {
|
|
2288
|
+
value?: string;
|
|
2289
|
+
nestedResults?: $requests.wix.common.AggregationData.AggregationResults.INestedAggregationResults;
|
|
2290
|
+
}
|
|
2291
|
+
export class NestedValueAggregationResult implements INestedValueAggregationResult {
|
|
2292
|
+
constructor(data?: INestedValueAggregationResult);
|
|
2293
|
+
value?: string;
|
|
2294
|
+
nestedResults?: $requests.wix.common.AggregationData.AggregationResults.INestedAggregationResults;
|
|
2295
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2296
|
+
}
|
|
2297
|
+
}
|
|
2298
|
+
export interface INestedAggregationResults {
|
|
2299
|
+
name?: string;
|
|
2300
|
+
type?: $requests.wix.common.AggregationType;
|
|
2301
|
+
fieldPath?: string;
|
|
2302
|
+
values?: $requests.wix.common.AggregationData.AggregationResults.IValueResults;
|
|
2303
|
+
ranges?: $requests.wix.common.AggregationData.AggregationResults.IRangeResults;
|
|
2304
|
+
scalar?: $requests.wix.common.AggregationData.AggregationResults.IScalarResult;
|
|
2305
|
+
}
|
|
2306
|
+
export class NestedAggregationResults implements INestedAggregationResults {
|
|
2307
|
+
constructor(data?: INestedAggregationResults);
|
|
2308
|
+
name?: string;
|
|
2309
|
+
type?: $requests.wix.common.AggregationType;
|
|
2310
|
+
fieldPath?: string;
|
|
2311
|
+
values?: $requests.wix.common.AggregationData.AggregationResults.IValueResults;
|
|
2312
|
+
ranges?: $requests.wix.common.AggregationData.AggregationResults.IRangeResults;
|
|
2313
|
+
scalar?: $requests.wix.common.AggregationData.AggregationResults.IScalarResult;
|
|
2314
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2315
|
+
}
|
|
2194
2316
|
}
|
|
2195
2317
|
}
|
|
2196
2318
|
export interface IPaging {
|
|
@@ -2954,6 +3076,20 @@ declare namespace $responses {
|
|
|
2954
3076
|
GA = "GA",
|
|
2955
3077
|
NOT_IMPLEMENTED = "NOT_IMPLEMENTED",
|
|
2956
3078
|
}
|
|
3079
|
+
export interface ISegment {
|
|
3080
|
+
}
|
|
3081
|
+
export class Segment implements ISegment {
|
|
3082
|
+
constructor(data?: ISegment);
|
|
3083
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3084
|
+
}
|
|
3085
|
+
export namespace Segment {
|
|
3086
|
+
export enum Segment {
|
|
3087
|
+
UNSPECIFIED = "UNSPECIFIED",
|
|
3088
|
+
USERS = "USERS",
|
|
3089
|
+
PUBLIC = "PUBLIC",
|
|
3090
|
+
OTHERS = "OTHERS",
|
|
3091
|
+
}
|
|
3092
|
+
}
|
|
2957
3093
|
export interface IDeprecated {
|
|
2958
3094
|
message?: string;
|
|
2959
3095
|
replacedBy?: string;
|
|
@@ -3007,6 +3143,7 @@ declare namespace $responses {
|
|
|
3007
3143
|
exposure: $responses.wix.coreservices.businessschema.v1.Exposure;
|
|
3008
3144
|
extensible?: $responses.wix.coreservices.businessschema.v1.IExtensible;
|
|
3009
3145
|
containsPii: boolean;
|
|
3146
|
+
segment: $responses.wix.coreservices.businessschema.v1.Segment.Segment;
|
|
3010
3147
|
}
|
|
3011
3148
|
export class EntityInfo implements IEntityInfo {
|
|
3012
3149
|
constructor(data?: IEntityInfo);
|
|
@@ -3032,6 +3169,7 @@ declare namespace $responses {
|
|
|
3032
3169
|
exposure: $responses.wix.coreservices.businessschema.v1.Exposure;
|
|
3033
3170
|
extensible?: $responses.wix.coreservices.businessschema.v1.IExtensible;
|
|
3034
3171
|
containsPii: boolean;
|
|
3172
|
+
segment: $responses.wix.coreservices.businessschema.v1.Segment.Segment;
|
|
3035
3173
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3036
3174
|
}
|
|
3037
3175
|
export interface IExtensible {
|
|
@@ -3170,6 +3308,7 @@ declare namespace $responses {
|
|
|
3170
3308
|
sdkSignatures?: $responses.wix.coreservices.businessschema.v1.ISdkMethodSignature;
|
|
3171
3309
|
inferredFieldmask?: $responses.wix.coreservices.businessschema.v1.IInferredFieldmask;
|
|
3172
3310
|
applicableIdentities: $responses.wix.coreservices.businessschema.v1.ApplicableIdentity[];
|
|
3311
|
+
externalPermissionScopes: $responses.wix.coreservices.businessschema.v1.IExternalPermissionScope[];
|
|
3173
3312
|
}
|
|
3174
3313
|
export class Action implements IAction {
|
|
3175
3314
|
constructor(data?: IAction);
|
|
@@ -3192,6 +3331,7 @@ declare namespace $responses {
|
|
|
3192
3331
|
sdkSignatures?: $responses.wix.coreservices.businessschema.v1.ISdkMethodSignature;
|
|
3193
3332
|
inferredFieldmask?: $responses.wix.coreservices.businessschema.v1.IInferredFieldmask;
|
|
3194
3333
|
applicableIdentities: $responses.wix.coreservices.businessschema.v1.ApplicableIdentity[];
|
|
3334
|
+
externalPermissionScopes: $responses.wix.coreservices.businessschema.v1.IExternalPermissionScope[];
|
|
3195
3335
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3196
3336
|
}
|
|
3197
3337
|
export enum ApplicableIdentity {
|
|
@@ -3201,6 +3341,16 @@ declare namespace $responses {
|
|
|
3201
3341
|
USER = "USER",
|
|
3202
3342
|
APP = "APP",
|
|
3203
3343
|
}
|
|
3344
|
+
export interface IExternalPermissionScope {
|
|
3345
|
+
name: string;
|
|
3346
|
+
scopeId: string;
|
|
3347
|
+
}
|
|
3348
|
+
export class ExternalPermissionScope implements IExternalPermissionScope {
|
|
3349
|
+
constructor(data?: IExternalPermissionScope);
|
|
3350
|
+
name: string;
|
|
3351
|
+
scopeId: string;
|
|
3352
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3353
|
+
}
|
|
3204
3354
|
export interface IInferredFieldmask {
|
|
3205
3355
|
fieldmaskField: string;
|
|
3206
3356
|
inferredFromField: string;
|
|
@@ -3655,12 +3805,16 @@ declare namespace $responses {
|
|
|
3655
3805
|
order: number;
|
|
3656
3806
|
value: string;
|
|
3657
3807
|
description: string;
|
|
3808
|
+
maturity: $responses.wix.coreservices.businessschema.v1.Maturity;
|
|
3809
|
+
exposure: $responses.wix.coreservices.businessschema.v1.Exposure;
|
|
3658
3810
|
}
|
|
3659
3811
|
export class EnumItem implements IEnumItem {
|
|
3660
3812
|
constructor(data?: IEnumItem);
|
|
3661
3813
|
order: number;
|
|
3662
3814
|
value: string;
|
|
3663
3815
|
description: string;
|
|
3816
|
+
maturity: $responses.wix.coreservices.businessschema.v1.Maturity;
|
|
3817
|
+
exposure: $responses.wix.coreservices.businessschema.v1.Exposure;
|
|
3664
3818
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3665
3819
|
}
|
|
3666
3820
|
export interface IField {
|
|
@@ -3678,6 +3832,7 @@ declare namespace $responses {
|
|
|
3678
3832
|
validations: $responses.wix.coreservices.businessschema.v1.IValidation[];
|
|
3679
3833
|
example?: any;
|
|
3680
3834
|
translatable?: $responses.wix.coreservices.businessschema.v1.ITranslatable;
|
|
3835
|
+
maturity: $responses.wix.coreservices.businessschema.v1.Maturity;
|
|
3681
3836
|
}
|
|
3682
3837
|
export class Field implements IField {
|
|
3683
3838
|
constructor(data?: IField);
|
|
@@ -3695,6 +3850,7 @@ declare namespace $responses {
|
|
|
3695
3850
|
validations: $responses.wix.coreservices.businessschema.v1.IValidation[];
|
|
3696
3851
|
example?: any;
|
|
3697
3852
|
translatable?: $responses.wix.coreservices.businessschema.v1.ITranslatable;
|
|
3853
|
+
maturity: $responses.wix.coreservices.businessschema.v1.Maturity;
|
|
3698
3854
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3699
3855
|
}
|
|
3700
3856
|
export interface IMember {
|
|
@@ -3869,6 +4025,22 @@ declare namespace $responses {
|
|
|
3869
4025
|
constructor(data?: IDeleteServiceDocumentResponse);
|
|
3870
4026
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3871
4027
|
}
|
|
4028
|
+
export interface IValidateFqdnRequest {
|
|
4029
|
+
fqdn: string;
|
|
4030
|
+
}
|
|
4031
|
+
export class ValidateFqdnRequest implements IValidateFqdnRequest {
|
|
4032
|
+
constructor(data?: IValidateFqdnRequest);
|
|
4033
|
+
fqdn: string;
|
|
4034
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4035
|
+
}
|
|
4036
|
+
export interface IValidateFqdnResponse {
|
|
4037
|
+
valid: boolean;
|
|
4038
|
+
}
|
|
4039
|
+
export class ValidateFqdnResponse implements IValidateFqdnResponse {
|
|
4040
|
+
constructor(data?: IValidateFqdnResponse);
|
|
4041
|
+
valid: boolean;
|
|
4042
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4043
|
+
}
|
|
3872
4044
|
export interface IQueryEntitiesRequest {
|
|
3873
4045
|
query?: $responses.wix.common.IQueryV2;
|
|
3874
4046
|
}
|
|
@@ -4964,6 +5136,7 @@ declare namespace $responses {
|
|
|
4964
5136
|
value?: $responses.wix.common.Aggregation.IValueAggregation;
|
|
4965
5137
|
range?: $responses.wix.common.Aggregation.IRangeAggregation;
|
|
4966
5138
|
scalar?: $responses.wix.common.Aggregation.IScalarAggregation;
|
|
5139
|
+
groupBy?: $responses.wix.common.Aggregation.IGroupByAggregation;
|
|
4967
5140
|
}
|
|
4968
5141
|
export class Aggregation implements IAggregation {
|
|
4969
5142
|
constructor(data?: IAggregation);
|
|
@@ -4973,6 +5146,7 @@ declare namespace $responses {
|
|
|
4973
5146
|
value?: $responses.wix.common.Aggregation.IValueAggregation;
|
|
4974
5147
|
range?: $responses.wix.common.Aggregation.IRangeAggregation;
|
|
4975
5148
|
scalar?: $responses.wix.common.Aggregation.IScalarAggregation;
|
|
5149
|
+
groupBy?: $responses.wix.common.Aggregation.IGroupByAggregation;
|
|
4976
5150
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4977
5151
|
}
|
|
4978
5152
|
export namespace Aggregation {
|
|
@@ -5000,12 +5174,16 @@ declare namespace $responses {
|
|
|
5000
5174
|
sortType: $responses.wix.common.Aggregation.ValueAggregation.SortType;
|
|
5001
5175
|
sortDirection: $responses.wix.common.Aggregation.ValueAggregation.SortDirection;
|
|
5002
5176
|
limit?: number;
|
|
5177
|
+
missingValues: $responses.wix.common.Aggregation.ValueAggregation.MissingValues;
|
|
5178
|
+
includeOptions?: $responses.wix.common.Aggregation.ValueAggregation.IIncludeMissingValuesOptions;
|
|
5003
5179
|
}
|
|
5004
5180
|
export class ValueAggregation implements IValueAggregation {
|
|
5005
5181
|
constructor(data?: IValueAggregation);
|
|
5006
5182
|
sortType: $responses.wix.common.Aggregation.ValueAggregation.SortType;
|
|
5007
5183
|
sortDirection: $responses.wix.common.Aggregation.ValueAggregation.SortDirection;
|
|
5008
5184
|
limit?: number;
|
|
5185
|
+
missingValues: $responses.wix.common.Aggregation.ValueAggregation.MissingValues;
|
|
5186
|
+
includeOptions?: $responses.wix.common.Aggregation.ValueAggregation.IIncludeMissingValuesOptions;
|
|
5009
5187
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5010
5188
|
}
|
|
5011
5189
|
export namespace ValueAggregation {
|
|
@@ -5017,6 +5195,18 @@ declare namespace $responses {
|
|
|
5017
5195
|
DESC = "DESC",
|
|
5018
5196
|
ASC = "ASC",
|
|
5019
5197
|
}
|
|
5198
|
+
export enum MissingValues {
|
|
5199
|
+
EXCLUDE = "EXCLUDE",
|
|
5200
|
+
INCLUDE = "INCLUDE",
|
|
5201
|
+
}
|
|
5202
|
+
export interface IIncludeMissingValuesOptions {
|
|
5203
|
+
addToBucket: string;
|
|
5204
|
+
}
|
|
5205
|
+
export class IncludeMissingValuesOptions implements IIncludeMissingValuesOptions {
|
|
5206
|
+
constructor(data?: IIncludeMissingValuesOptions);
|
|
5207
|
+
addToBucket: string;
|
|
5208
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5209
|
+
}
|
|
5020
5210
|
}
|
|
5021
5211
|
export interface IScalarAggregation {
|
|
5022
5212
|
type: $responses.wix.common.ScalarType;
|
|
@@ -5026,6 +5216,18 @@ declare namespace $responses {
|
|
|
5026
5216
|
type: $responses.wix.common.ScalarType;
|
|
5027
5217
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5028
5218
|
}
|
|
5219
|
+
export interface IGroupByAggregation {
|
|
5220
|
+
name?: string;
|
|
5221
|
+
fieldPath: string;
|
|
5222
|
+
value?: $responses.wix.common.Aggregation.IValueAggregation;
|
|
5223
|
+
}
|
|
5224
|
+
export class GroupByAggregation implements IGroupByAggregation {
|
|
5225
|
+
constructor(data?: IGroupByAggregation);
|
|
5226
|
+
name?: string;
|
|
5227
|
+
fieldPath: string;
|
|
5228
|
+
value?: $responses.wix.common.Aggregation.IValueAggregation;
|
|
5229
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5230
|
+
}
|
|
5029
5231
|
}
|
|
5030
5232
|
export interface IAggregationData {
|
|
5031
5233
|
results: $responses.wix.common.AggregationData.IAggregationResults[];
|
|
@@ -5039,17 +5241,21 @@ declare namespace $responses {
|
|
|
5039
5241
|
export interface IAggregationResults {
|
|
5040
5242
|
name: string;
|
|
5041
5243
|
type: $responses.wix.common.AggregationType;
|
|
5244
|
+
fieldPath: string;
|
|
5042
5245
|
values?: $responses.wix.common.AggregationData.AggregationResults.IValueResults;
|
|
5043
5246
|
ranges?: $responses.wix.common.AggregationData.AggregationResults.IRangeResults;
|
|
5044
5247
|
scalar?: $responses.wix.common.AggregationData.AggregationResults.IScalarResult;
|
|
5248
|
+
groupedByValue?: $responses.wix.common.AggregationData.AggregationResults.IGroupByValueResults;
|
|
5045
5249
|
}
|
|
5046
5250
|
export class AggregationResults implements IAggregationResults {
|
|
5047
5251
|
constructor(data?: IAggregationResults);
|
|
5048
5252
|
name: string;
|
|
5049
5253
|
type: $responses.wix.common.AggregationType;
|
|
5254
|
+
fieldPath: string;
|
|
5050
5255
|
values?: $responses.wix.common.AggregationData.AggregationResults.IValueResults;
|
|
5051
5256
|
ranges?: $responses.wix.common.AggregationData.AggregationResults.IRangeResults;
|
|
5052
5257
|
scalar?: $responses.wix.common.AggregationData.AggregationResults.IScalarResult;
|
|
5258
|
+
groupedByValue?: $responses.wix.common.AggregationData.AggregationResults.IGroupByValueResults;
|
|
5053
5259
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5054
5260
|
}
|
|
5055
5261
|
export namespace AggregationResults {
|
|
@@ -5105,6 +5311,44 @@ declare namespace $responses {
|
|
|
5105
5311
|
value: number;
|
|
5106
5312
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5107
5313
|
}
|
|
5314
|
+
export interface IGroupByValueResults {
|
|
5315
|
+
results: $responses.wix.common.AggregationData.AggregationResults.GroupByValueResults.INestedValueAggregationResult[];
|
|
5316
|
+
}
|
|
5317
|
+
export class GroupByValueResults implements IGroupByValueResults {
|
|
5318
|
+
constructor(data?: IGroupByValueResults);
|
|
5319
|
+
results: $responses.wix.common.AggregationData.AggregationResults.GroupByValueResults.INestedValueAggregationResult[];
|
|
5320
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5321
|
+
}
|
|
5322
|
+
export namespace GroupByValueResults {
|
|
5323
|
+
export interface INestedValueAggregationResult {
|
|
5324
|
+
value: string;
|
|
5325
|
+
nestedResults?: $responses.wix.common.AggregationData.AggregationResults.INestedAggregationResults;
|
|
5326
|
+
}
|
|
5327
|
+
export class NestedValueAggregationResult implements INestedValueAggregationResult {
|
|
5328
|
+
constructor(data?: INestedValueAggregationResult);
|
|
5329
|
+
value: string;
|
|
5330
|
+
nestedResults?: $responses.wix.common.AggregationData.AggregationResults.INestedAggregationResults;
|
|
5331
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5332
|
+
}
|
|
5333
|
+
}
|
|
5334
|
+
export interface INestedAggregationResults {
|
|
5335
|
+
name: string;
|
|
5336
|
+
type: $responses.wix.common.AggregationType;
|
|
5337
|
+
fieldPath: string;
|
|
5338
|
+
values?: $responses.wix.common.AggregationData.AggregationResults.IValueResults;
|
|
5339
|
+
ranges?: $responses.wix.common.AggregationData.AggregationResults.IRangeResults;
|
|
5340
|
+
scalar?: $responses.wix.common.AggregationData.AggregationResults.IScalarResult;
|
|
5341
|
+
}
|
|
5342
|
+
export class NestedAggregationResults implements INestedAggregationResults {
|
|
5343
|
+
constructor(data?: INestedAggregationResults);
|
|
5344
|
+
name: string;
|
|
5345
|
+
type: $responses.wix.common.AggregationType;
|
|
5346
|
+
fieldPath: string;
|
|
5347
|
+
values?: $responses.wix.common.AggregationData.AggregationResults.IValueResults;
|
|
5348
|
+
ranges?: $responses.wix.common.AggregationData.AggregationResults.IRangeResults;
|
|
5349
|
+
scalar?: $responses.wix.common.AggregationData.AggregationResults.IScalarResult;
|
|
5350
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5351
|
+
}
|
|
5108
5352
|
}
|
|
5109
5353
|
}
|
|
5110
5354
|
export interface IPaging {
|
|
@@ -5843,6 +6087,8 @@ declare namespace $services {
|
|
|
5843
6087
|
abstract deleteServiceDocument(req: $requests.wix.coreservices.businessschema.v1.IDeleteServiceDocumentRequest): Promise<$responses.wix.coreservices.businessschema.v1.IDeleteServiceDocumentResponse>
|
|
5844
6088
|
}
|
|
5845
6089
|
export abstract class BusinessSchemaService {
|
|
6090
|
+
abstract validateFqdn(aspects: object, req: $requests.wix.coreservices.businessschema.v1.IValidateFqdnRequest): Promise<$responses.wix.coreservices.businessschema.v1.IValidateFqdnResponse>
|
|
6091
|
+
abstract validateFqdn(req: $requests.wix.coreservices.businessschema.v1.IValidateFqdnRequest): Promise<$responses.wix.coreservices.businessschema.v1.IValidateFqdnResponse>
|
|
5846
6092
|
abstract queryEntities(aspects: object, req: $requests.wix.coreservices.businessschema.v1.IQueryEntitiesRequest): Promise<$responses.wix.coreservices.businessschema.v1.IQueryEntitiesResponse>
|
|
5847
6093
|
abstract queryEntities(req: $requests.wix.coreservices.businessschema.v1.IQueryEntitiesRequest): Promise<$responses.wix.coreservices.businessschema.v1.IQueryEntitiesResponse>
|
|
5848
6094
|
abstract listEntities(aspects: object, req: $requests.wix.coreservices.businessschema.v1.IListEntitiesRequest): Promise<$responses.wix.coreservices.businessschema.v1.IListEntitiesResponse>
|