@wix/bex-utils 2.43.0 → 2.44.0
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/@wix/ambassador-os-tags-v1-tag/build/cjs/builders.impl.js +3 -0
- package/@wix/ambassador-os-tags-v1-tag/build/cjs/builders.impl.js.map +1 -1
- package/@wix/ambassador-os-tags-v1-tag/build/cjs/http.impl.js +36 -0
- package/@wix/ambassador-os-tags-v1-tag/build/cjs/http.impl.js.map +1 -1
- package/@wix/ambassador-os-tags-v1-tag/build/cjs/proto/client/proto-generated.d.ts +2047 -963
- package/@wix/ambassador-os-tags-v1-tag/build/cjs/proto/proto-generated.d.ts +1046 -508
- package/@wix/ambassador-os-tags-v1-tag/build/cjs/proto/proto-generated.js +19667 -10932
- package/@wix/ambassador-os-tags-v1-tag/build/cjs/proto/server/proto-generated.d.ts +2046 -963
- package/@wix/ambassador-os-tags-v1-tag/build/cjs/types.impl.d.ts +20 -5
- package/@wix/ambassador-os-tags-v1-tag/build/cjs/types.impl.js.map +1 -1
- package/@wix/ambassador-os-tags-v1-tag/build/es/builders.impl.js +3 -0
- package/@wix/ambassador-os-tags-v1-tag/build/es/builders.impl.js.map +1 -1
- package/@wix/ambassador-os-tags-v1-tag/build/es/http.impl.js +36 -0
- package/@wix/ambassador-os-tags-v1-tag/build/es/http.impl.js.map +1 -1
- package/@wix/ambassador-os-tags-v1-tag/build/es/types.impl.d.ts +20 -5
- package/@wix/ambassador-os-tags-v1-tag/build/es/types.impl.js.map +1 -1
- package/@wix/ambassador-os-tags-v1-tag/package.json +3 -3
- package/@wix/ambassador-os-tags-v1-tag/src/main/proto/src/main/proto/com/wixpress/items_selection/spi/v1/additional_data/ecom_catalog_data.proto +20 -0
- package/@wix/ambassador-os-tags-v1-tag/src/main/proto/src/main/proto/com/wixpress/items_selection/spi/v1/additional_data/inbox_data.proto +17 -0
- package/@wix/ambassador-os-tags-v1-tag/src/main/proto/src/main/proto/com/wixpress/items_selection/spi/v1/additional_data.proto +16 -0
- package/@wix/ambassador-os-tags-v1-tag/src/main/proto/src/main/proto/com/wixpress/items_selection/spi/v1/image.proto +11 -0
- package/@wix/ambassador-os-tags-v1-tag/src/main/proto/src/main/proto/com/wixpress/items_selection/spi/v1/items_selection_config.proto +266 -0
- package/@wix/ambassador-os-tags-v1-tag/src/main/proto/src/main/proto/com/wixpress/items_selection/spi/v1/items_selection_spi.proto +145 -0
- package/@wix/ambassador-os-tags-v1-tag/src/main/proto/wix/api/annotations.proto +69 -9
- package/@wix/ambassador-os-tags-v1-tag/src/main/proto/wix/api/callback.proto +7 -0
- package/@wix/ambassador-os-tags-v1-tag/src/main/proto/wix/api/entity.proto +10 -0
- package/@wix/ambassador-os-tags-v1-tag/src/main/proto/wix/api/errors.proto +8 -0
- package/@wix/ambassador-os-tags-v1-tag/src/main/proto/wix/api/validations.proto +8 -0
- package/@wix/ambassador-os-tags-v1-tag/src/main/proto/wix/common/data/errors.proto +14 -1
- package/@wix/ambassador-os-tags-v1-tag/src/main/proto/wix/common/media.proto +19 -0
- package/@wix/ambassador-os-tags-v1-tag/src/main/proto/wix/common/query.proto +118 -118
- package/@wix/ambassador-os-tags-v1-tag/src/main/proto/wix/common/wixlink.proto +2 -0
- package/@wix/ambassador-os-tags-v1-tag/src/main/proto/wix/os/v1/tag.proto +4 -1
- package/@wix/ambassador-os-tags-v1-tag/src/main/proto/wix/spi/definitions.proto +2 -1
- package/package.json +3 -3
|
@@ -6,16 +6,483 @@ type $GeneratedMessageClassNominal$ = {
|
|
|
6
6
|
type $$GeneratedMessage$$<C> = Function & { prototype: C } & $GeneratedMessageClassNominal$;
|
|
7
7
|
|
|
8
8
|
declare namespace $requests {
|
|
9
|
+
export namespace com {
|
|
10
|
+
export namespace wixpress {
|
|
11
|
+
export namespace items_selection {
|
|
12
|
+
export namespace spi {
|
|
13
|
+
export namespace v1 {
|
|
14
|
+
export interface IAdditionalData {
|
|
15
|
+
ecomCatalogData?: $requests.com.wixpress.items_selection.spi.v1.IEcomCatalogData;
|
|
16
|
+
inboxData?: $requests.com.wixpress.items_selection.spi.v1.IInboxData;
|
|
17
|
+
}
|
|
18
|
+
export class AdditionalData implements IAdditionalData {
|
|
19
|
+
constructor(data?: IAdditionalData);
|
|
20
|
+
ecomCatalogData?: $requests.com.wixpress.items_selection.spi.v1.IEcomCatalogData;
|
|
21
|
+
inboxData?: $requests.com.wixpress.items_selection.spi.v1.IInboxData;
|
|
22
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
23
|
+
}
|
|
24
|
+
export interface IEcomCatalogData {
|
|
25
|
+
appId?: string;
|
|
26
|
+
catalogItemId?: string;
|
|
27
|
+
price?: string;
|
|
28
|
+
options?: { [key: string]: any };
|
|
29
|
+
}
|
|
30
|
+
export class EcomCatalogData implements IEcomCatalogData {
|
|
31
|
+
constructor(data?: IEcomCatalogData);
|
|
32
|
+
appId?: string;
|
|
33
|
+
catalogItemId?: string;
|
|
34
|
+
price?: string;
|
|
35
|
+
options?: { [key: string]: any };
|
|
36
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
37
|
+
}
|
|
38
|
+
export interface IInboxData {
|
|
39
|
+
actions?: $requests.com.wixpress.items_selection.spi.v1.IAction[];
|
|
40
|
+
}
|
|
41
|
+
export class InboxData implements IInboxData {
|
|
42
|
+
constructor(data?: IInboxData);
|
|
43
|
+
actions?: $requests.com.wixpress.items_selection.spi.v1.IAction[];
|
|
44
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
45
|
+
}
|
|
46
|
+
export interface IAction {
|
|
47
|
+
title?: string;
|
|
48
|
+
url?: string;
|
|
49
|
+
}
|
|
50
|
+
export class Action implements IAction {
|
|
51
|
+
constructor(data?: IAction);
|
|
52
|
+
title?: string;
|
|
53
|
+
url?: string;
|
|
54
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
55
|
+
}
|
|
56
|
+
export interface IImage {
|
|
57
|
+
url?: string;
|
|
58
|
+
}
|
|
59
|
+
export class Image implements IImage {
|
|
60
|
+
constructor(data?: IImage);
|
|
61
|
+
url?: string;
|
|
62
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
63
|
+
}
|
|
64
|
+
export interface IItemsSelectionProviderConfig {
|
|
65
|
+
deploymentUri?: string;
|
|
66
|
+
key?: string;
|
|
67
|
+
searchParams?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.ISearchParams;
|
|
68
|
+
contentData?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IContentData;
|
|
69
|
+
additionalStepInfo?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IAdditionalStepInfo;
|
|
70
|
+
supportedTags?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.Tag[];
|
|
71
|
+
createNewItemInfo?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.ICreateNewItemInfo;
|
|
72
|
+
itemThumbnail?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IItemThumbnail;
|
|
73
|
+
}
|
|
74
|
+
export class ItemsSelectionProviderConfig implements IItemsSelectionProviderConfig {
|
|
75
|
+
constructor(data?: IItemsSelectionProviderConfig);
|
|
76
|
+
deploymentUri?: string;
|
|
77
|
+
key?: string;
|
|
78
|
+
searchParams?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.ISearchParams;
|
|
79
|
+
contentData?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IContentData;
|
|
80
|
+
additionalStepInfo?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IAdditionalStepInfo;
|
|
81
|
+
supportedTags?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.Tag[];
|
|
82
|
+
createNewItemInfo?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.ICreateNewItemInfo;
|
|
83
|
+
itemThumbnail?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IItemThumbnail;
|
|
84
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
85
|
+
}
|
|
86
|
+
export namespace ItemsSelectionProviderConfig {
|
|
87
|
+
export enum Tag {
|
|
88
|
+
UNKNOWN_TAG = "UNKNOWN_TAG",
|
|
89
|
+
EMBEDDABLE = "EMBEDDABLE",
|
|
90
|
+
ECOM_EDIT_ORDER = "ECOM_EDIT_ORDER",
|
|
91
|
+
ECOM_CREATE_ORDER = "ECOM_CREATE_ORDER",
|
|
92
|
+
INBOX = "INBOX",
|
|
93
|
+
ECOM_CREATE_PAY_LINK = "ECOM_CREATE_PAY_LINK",
|
|
94
|
+
ECOM_DELIVERY_PROFILES = "ECOM_DELIVERY_PROFILES",
|
|
95
|
+
ADD_TO_CATEGORY = "ADD_TO_CATEGORY",
|
|
96
|
+
}
|
|
97
|
+
export interface IAdditionalStepInfo {
|
|
98
|
+
widgetId?: string;
|
|
99
|
+
mobileComponentId?: string;
|
|
100
|
+
title?: string;
|
|
101
|
+
subtitle?: string;
|
|
102
|
+
hideItemNote?: boolean;
|
|
103
|
+
}
|
|
104
|
+
export class AdditionalStepInfo implements IAdditionalStepInfo {
|
|
105
|
+
constructor(data?: IAdditionalStepInfo);
|
|
106
|
+
widgetId?: string;
|
|
107
|
+
mobileComponentId?: string;
|
|
108
|
+
title?: string;
|
|
109
|
+
subtitle?: string;
|
|
110
|
+
hideItemNote?: boolean;
|
|
111
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
112
|
+
}
|
|
113
|
+
export interface ICreateNewItemInfo {
|
|
114
|
+
widgetId?: string;
|
|
115
|
+
mobileComponentId?: string;
|
|
116
|
+
buttonText?: string;
|
|
117
|
+
}
|
|
118
|
+
export class CreateNewItemInfo implements ICreateNewItemInfo {
|
|
119
|
+
constructor(data?: ICreateNewItemInfo);
|
|
120
|
+
widgetId?: string;
|
|
121
|
+
mobileComponentId?: string;
|
|
122
|
+
buttonText?: string;
|
|
123
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
124
|
+
}
|
|
125
|
+
export interface IContentData {
|
|
126
|
+
iconKey?: string;
|
|
127
|
+
providerName?: string;
|
|
128
|
+
title?: string;
|
|
129
|
+
button?: string;
|
|
130
|
+
subtitle?: string;
|
|
131
|
+
learnMore?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.ILearnMore;
|
|
132
|
+
}
|
|
133
|
+
export class ContentData implements IContentData {
|
|
134
|
+
constructor(data?: IContentData);
|
|
135
|
+
iconKey?: string;
|
|
136
|
+
providerName?: string;
|
|
137
|
+
title?: string;
|
|
138
|
+
button?: string;
|
|
139
|
+
subtitle?: string;
|
|
140
|
+
learnMore?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.ILearnMore;
|
|
141
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
142
|
+
}
|
|
143
|
+
export interface IItemThumbnail {
|
|
144
|
+
type?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.ThumbnailType;
|
|
145
|
+
hidden?: boolean;
|
|
146
|
+
imageConfig?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IImageConfig;
|
|
147
|
+
avatarConfig?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IAvatarConfig;
|
|
148
|
+
}
|
|
149
|
+
export class ItemThumbnail implements IItemThumbnail {
|
|
150
|
+
constructor(data?: IItemThumbnail);
|
|
151
|
+
type?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.ThumbnailType;
|
|
152
|
+
hidden?: boolean;
|
|
153
|
+
imageConfig?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IImageConfig;
|
|
154
|
+
avatarConfig?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IAvatarConfig;
|
|
155
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
156
|
+
}
|
|
157
|
+
export enum ThumbnailType {
|
|
158
|
+
UNKNOWN_THUMBNAIL_TYPE = "UNKNOWN_THUMBNAIL_TYPE",
|
|
159
|
+
IMAGE = "IMAGE",
|
|
160
|
+
AVATAR = "AVATAR",
|
|
161
|
+
}
|
|
162
|
+
export interface IImageConfig {
|
|
163
|
+
shape?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.ImageConfig.ImageShape;
|
|
164
|
+
}
|
|
165
|
+
export class ImageConfig implements IImageConfig {
|
|
166
|
+
constructor(data?: IImageConfig);
|
|
167
|
+
shape?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.ImageConfig.ImageShape;
|
|
168
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
169
|
+
}
|
|
170
|
+
export namespace ImageConfig {
|
|
171
|
+
export enum ImageShape {
|
|
172
|
+
UNKNOWN_SHAPE = "UNKNOWN_SHAPE",
|
|
173
|
+
CIRCLE = "CIRCLE",
|
|
174
|
+
SQUARE = "SQUARE",
|
|
175
|
+
RECTANGLE = "RECTANGLE",
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
export interface IAvatarConfig {
|
|
179
|
+
shape?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.AvatarConfig.AvatarShape;
|
|
180
|
+
}
|
|
181
|
+
export class AvatarConfig implements IAvatarConfig {
|
|
182
|
+
constructor(data?: IAvatarConfig);
|
|
183
|
+
shape?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.AvatarConfig.AvatarShape;
|
|
184
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
185
|
+
}
|
|
186
|
+
export namespace AvatarConfig {
|
|
187
|
+
export enum AvatarShape {
|
|
188
|
+
UNKNOWN_SHAPE = "UNKNOWN_SHAPE",
|
|
189
|
+
CIRCLE = "CIRCLE",
|
|
190
|
+
SQUARE = "SQUARE",
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
export interface ISearchParams {
|
|
194
|
+
fields?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.ISearchField[];
|
|
195
|
+
filters?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IFilterInfo[];
|
|
196
|
+
}
|
|
197
|
+
export class SearchParams implements ISearchParams {
|
|
198
|
+
constructor(data?: ISearchParams);
|
|
199
|
+
fields?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.ISearchField[];
|
|
200
|
+
filters?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IFilterInfo[];
|
|
201
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
202
|
+
}
|
|
203
|
+
export interface ISearchField {
|
|
204
|
+
key?: string;
|
|
205
|
+
description?: string;
|
|
206
|
+
}
|
|
207
|
+
export class SearchField implements ISearchField {
|
|
208
|
+
constructor(data?: ISearchField);
|
|
209
|
+
key?: string;
|
|
210
|
+
description?: string;
|
|
211
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
212
|
+
}
|
|
213
|
+
export interface IFilterInfo {
|
|
214
|
+
key?: string;
|
|
215
|
+
tag?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.Tag;
|
|
216
|
+
selectionType?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.FilterSelectionType;
|
|
217
|
+
optionsType?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.FilterOptionsType;
|
|
218
|
+
staticOptions?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IStaticFilterOptions;
|
|
219
|
+
providerOptions?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IProviderFilterOptions;
|
|
220
|
+
placeholder?: string;
|
|
221
|
+
}
|
|
222
|
+
export class FilterInfo implements IFilterInfo {
|
|
223
|
+
constructor(data?: IFilterInfo);
|
|
224
|
+
key?: string;
|
|
225
|
+
tag?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.Tag;
|
|
226
|
+
selectionType?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.FilterSelectionType;
|
|
227
|
+
optionsType?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.FilterOptionsType;
|
|
228
|
+
staticOptions?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IStaticFilterOptions;
|
|
229
|
+
providerOptions?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IProviderFilterOptions;
|
|
230
|
+
placeholder?: string;
|
|
231
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
232
|
+
}
|
|
233
|
+
export interface IProviderFilterOptions {
|
|
234
|
+
key?: string;
|
|
235
|
+
}
|
|
236
|
+
export class ProviderFilterOptions implements IProviderFilterOptions {
|
|
237
|
+
constructor(data?: IProviderFilterOptions);
|
|
238
|
+
key?: string;
|
|
239
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
240
|
+
}
|
|
241
|
+
export interface IStaticFilterOptions {
|
|
242
|
+
data?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IStaticFilterOption[];
|
|
243
|
+
}
|
|
244
|
+
export class StaticFilterOptions implements IStaticFilterOptions {
|
|
245
|
+
constructor(data?: IStaticFilterOptions);
|
|
246
|
+
data?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IStaticFilterOption[];
|
|
247
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
248
|
+
}
|
|
249
|
+
export interface IStaticFilterOption {
|
|
250
|
+
label?: string;
|
|
251
|
+
value?: string;
|
|
252
|
+
}
|
|
253
|
+
export class StaticFilterOption implements IStaticFilterOption {
|
|
254
|
+
constructor(data?: IStaticFilterOption);
|
|
255
|
+
label?: string;
|
|
256
|
+
value?: string;
|
|
257
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
258
|
+
}
|
|
259
|
+
export interface ILearnMore {
|
|
260
|
+
url?: string;
|
|
261
|
+
label?: string;
|
|
262
|
+
}
|
|
263
|
+
export class LearnMore implements ILearnMore {
|
|
264
|
+
constructor(data?: ILearnMore);
|
|
265
|
+
url?: string;
|
|
266
|
+
label?: string;
|
|
267
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
268
|
+
}
|
|
269
|
+
export enum FilterSelectionType {
|
|
270
|
+
UNKNOWN_SELECTION = "UNKNOWN_SELECTION",
|
|
271
|
+
SINGLE_SELECTION = "SINGLE_SELECTION",
|
|
272
|
+
MULTIPLE_SELECTION = "MULTIPLE_SELECTION",
|
|
273
|
+
}
|
|
274
|
+
export enum FilterOptionsType {
|
|
275
|
+
UNKNOWN_FILTER_OPTIONS = "UNKNOWN_FILTER_OPTIONS",
|
|
276
|
+
STATIC = "STATIC",
|
|
277
|
+
PROVIDER = "PROVIDER",
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
export interface IFailureData {
|
|
281
|
+
error?: $requests.com.wixpress.items_selection.spi.v1.IQueryError;
|
|
282
|
+
}
|
|
283
|
+
export class FailureData implements IFailureData {
|
|
284
|
+
constructor(data?: IFailureData);
|
|
285
|
+
error?: $requests.com.wixpress.items_selection.spi.v1.IQueryError;
|
|
286
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
287
|
+
}
|
|
288
|
+
export interface IQueryError {
|
|
289
|
+
code?: $requests.com.wixpress.items_selection.spi.v1.QueryError.Code;
|
|
290
|
+
message?: string;
|
|
291
|
+
data?: { [key: string]: any };
|
|
292
|
+
}
|
|
293
|
+
export class QueryError implements IQueryError {
|
|
294
|
+
constructor(data?: IQueryError);
|
|
295
|
+
code?: $requests.com.wixpress.items_selection.spi.v1.QueryError.Code;
|
|
296
|
+
message?: string;
|
|
297
|
+
data?: { [key: string]: any };
|
|
298
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
299
|
+
}
|
|
300
|
+
export namespace QueryError {
|
|
301
|
+
export enum Code {
|
|
302
|
+
NONE = "NONE",
|
|
303
|
+
SYSTEM_ERROR = "SYSTEM_ERROR",
|
|
304
|
+
OTHER = "OTHER",
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
export interface IQueryItemsRequest {
|
|
308
|
+
query?: $requests.com.wixpress.items_selection.spi.v1.IQuery;
|
|
309
|
+
tag?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.Tag;
|
|
310
|
+
}
|
|
311
|
+
export class QueryItemsRequest implements IQueryItemsRequest {
|
|
312
|
+
constructor(data?: IQueryItemsRequest);
|
|
313
|
+
query?: $requests.com.wixpress.items_selection.spi.v1.IQuery;
|
|
314
|
+
tag?: $requests.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.Tag;
|
|
315
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
316
|
+
}
|
|
317
|
+
export interface IQueryItemsResponse {
|
|
318
|
+
items?: $requests.com.wixpress.items_selection.spi.v1.IItem[];
|
|
319
|
+
pagingMetadata?: $requests.wix.common.IPagingMetadataV2;
|
|
320
|
+
}
|
|
321
|
+
export class QueryItemsResponse implements IQueryItemsResponse {
|
|
322
|
+
constructor(data?: IQueryItemsResponse);
|
|
323
|
+
items?: $requests.com.wixpress.items_selection.spi.v1.IItem[];
|
|
324
|
+
pagingMetadata?: $requests.wix.common.IPagingMetadataV2;
|
|
325
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
326
|
+
}
|
|
327
|
+
export interface IQuery {
|
|
328
|
+
filter?: { [key: string]: any };
|
|
329
|
+
sort?: $requests.wix.common.ISorting[];
|
|
330
|
+
search?: string;
|
|
331
|
+
paging?: $requests.wix.common.IPaging;
|
|
332
|
+
cursorPaging?: $requests.wix.common.ICursorPaging;
|
|
333
|
+
}
|
|
334
|
+
export class Query implements IQuery {
|
|
335
|
+
constructor(data?: IQuery);
|
|
336
|
+
filter?: { [key: string]: any };
|
|
337
|
+
sort?: $requests.wix.common.ISorting[];
|
|
338
|
+
search?: string;
|
|
339
|
+
paging?: $requests.wix.common.IPaging;
|
|
340
|
+
cursorPaging?: $requests.wix.common.ICursorPaging;
|
|
341
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
342
|
+
}
|
|
343
|
+
export interface IItem {
|
|
344
|
+
id?: string;
|
|
345
|
+
name?: string;
|
|
346
|
+
description?: string;
|
|
347
|
+
image?: $requests.com.wixpress.items_selection.spi.v1.IImage;
|
|
348
|
+
note?: string;
|
|
349
|
+
hasAdditionalStep?: boolean;
|
|
350
|
+
additionalData?: $requests.com.wixpress.items_selection.spi.v1.IAdditionalData;
|
|
351
|
+
additionalFields?: { [key: string]: any };
|
|
352
|
+
}
|
|
353
|
+
export class Item implements IItem {
|
|
354
|
+
constructor(data?: IItem);
|
|
355
|
+
id?: string;
|
|
356
|
+
name?: string;
|
|
357
|
+
description?: string;
|
|
358
|
+
image?: $requests.com.wixpress.items_selection.spi.v1.IImage;
|
|
359
|
+
note?: string;
|
|
360
|
+
hasAdditionalStep?: boolean;
|
|
361
|
+
additionalData?: $requests.com.wixpress.items_selection.spi.v1.IAdditionalData;
|
|
362
|
+
additionalFields?: { [key: string]: any };
|
|
363
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
}
|
|
9
370
|
export namespace wix {
|
|
10
371
|
export namespace api {
|
|
11
|
-
|
|
12
|
-
|
|
372
|
+
/**
|
|
373
|
+
* Decimal value validation rules.
|
|
374
|
+
* Based on java.math.BigDecimal, implies (wix.api.format) = DECIMAL_VALUE
|
|
375
|
+
*/
|
|
376
|
+
export interface IDecimalValueOptions {
|
|
377
|
+
lte?: string;
|
|
378
|
+
gte?: string;
|
|
379
|
+
lt?: string;
|
|
380
|
+
gt?: string;
|
|
381
|
+
maxScale?: number;
|
|
13
382
|
}
|
|
14
|
-
export class
|
|
15
|
-
constructor(data?:
|
|
16
|
-
|
|
383
|
+
export class DecimalValueOptions implements IDecimalValueOptions {
|
|
384
|
+
constructor(data?: IDecimalValueOptions);
|
|
385
|
+
lte?: string;
|
|
386
|
+
gte?: string;
|
|
387
|
+
lt?: string;
|
|
388
|
+
gt?: string;
|
|
389
|
+
maxScale?: number;
|
|
390
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
391
|
+
}
|
|
392
|
+
export interface IAlignedWithEnum {
|
|
393
|
+
field?: string;
|
|
394
|
+
suffix?: string;
|
|
395
|
+
}
|
|
396
|
+
export class AlignedWithEnum implements IAlignedWithEnum {
|
|
397
|
+
constructor(data?: IAlignedWithEnum);
|
|
398
|
+
field?: string;
|
|
399
|
+
suffix?: string;
|
|
400
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
401
|
+
}
|
|
402
|
+
export enum Format {
|
|
403
|
+
EMAIL = "EMAIL",
|
|
404
|
+
HOSTNAME = "HOSTNAME",
|
|
405
|
+
IPV4 = "IPV4",
|
|
406
|
+
IPV6 = "IPV6",
|
|
407
|
+
URI = "URI",
|
|
408
|
+
WEB_URL = "WEB_URL",
|
|
409
|
+
PHONE = "PHONE",
|
|
410
|
+
CREDIT_CARD = "CREDIT_CARD",
|
|
411
|
+
GUID = "GUID",
|
|
412
|
+
COUNTRY = "COUNTRY",
|
|
413
|
+
LANGUAGE = "LANGUAGE",
|
|
414
|
+
DECIMAL_VALUE = "DECIMAL_VALUE",
|
|
415
|
+
CURRENCY = "CURRENCY",
|
|
416
|
+
LANGUAGE_TAG = "LANGUAGE_TAG",
|
|
417
|
+
COLOR_HEX = "COLOR_HEX",
|
|
418
|
+
LOCAL_DATE = "LOCAL_DATE",
|
|
419
|
+
LOCAL_TIME = "LOCAL_TIME",
|
|
420
|
+
LOCAL_DATE_TIME = "LOCAL_DATE_TIME",
|
|
421
|
+
URL_SLUG = "URL_SLUG",
|
|
422
|
+
SYSTEM_SLUG = "SYSTEM_SLUG",
|
|
423
|
+
SECURE_WEB_URL = "SECURE_WEB_URL",
|
|
424
|
+
SUBDIVISION = "SUBDIVISION",
|
|
425
|
+
}
|
|
426
|
+
/**
|
|
427
|
+
* ApplicationError: named Error for backwards compatibility
|
|
428
|
+
*/
|
|
429
|
+
export interface IError {
|
|
430
|
+
httpCode?: $requests.wix.api.StatusCodes.HttpStatusCode;
|
|
431
|
+
applicationCode?: string;
|
|
432
|
+
data?: string;
|
|
433
|
+
}
|
|
434
|
+
export class Error implements IError {
|
|
435
|
+
constructor(data?: IError);
|
|
436
|
+
httpCode?: $requests.wix.api.StatusCodes.HttpStatusCode;
|
|
437
|
+
applicationCode?: string;
|
|
438
|
+
data?: string;
|
|
439
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
440
|
+
}
|
|
441
|
+
/**
|
|
442
|
+
* CustomValidationError: field level validation, only declare when you have specific validation in your service that is not coming from infra
|
|
443
|
+
*/
|
|
444
|
+
export interface ICustomValidationError {
|
|
445
|
+
ruleName?: string;
|
|
446
|
+
data?: string;
|
|
447
|
+
}
|
|
448
|
+
export class CustomValidationError implements ICustomValidationError {
|
|
449
|
+
constructor(data?: ICustomValidationError);
|
|
450
|
+
ruleName?: string;
|
|
451
|
+
data?: string;
|
|
452
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
453
|
+
}
|
|
454
|
+
/**
|
|
455
|
+
* InheritCrudErrors: does this method throw standard crud errors?
|
|
456
|
+
*/
|
|
457
|
+
export interface IInheritCrudErrors {
|
|
458
|
+
method?: $requests.wix.api.Crud.Method;
|
|
459
|
+
}
|
|
460
|
+
export class InheritCrudErrors implements IInheritCrudErrors {
|
|
461
|
+
constructor(data?: IInheritCrudErrors);
|
|
462
|
+
method?: $requests.wix.api.Crud.Method;
|
|
17
463
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
18
464
|
}
|
|
465
|
+
export interface IStatusCodes {
|
|
466
|
+
}
|
|
467
|
+
export class StatusCodes implements IStatusCodes {
|
|
468
|
+
constructor(data?: IStatusCodes);
|
|
469
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
470
|
+
}
|
|
471
|
+
export namespace StatusCodes {
|
|
472
|
+
export enum HttpStatusCode {
|
|
473
|
+
OK = "OK",
|
|
474
|
+
UNAUTHENTICATED = "UNAUTHENTICATED",
|
|
475
|
+
PERMISSION_DENIED = "PERMISSION_DENIED",
|
|
476
|
+
INVALID_ARGUMENT = "INVALID_ARGUMENT",
|
|
477
|
+
NOT_FOUND = "NOT_FOUND",
|
|
478
|
+
INTERNAL = "INTERNAL",
|
|
479
|
+
UNAVAILABLE = "UNAVAILABLE",
|
|
480
|
+
RESOURCE_EXHAUSTED = "RESOURCE_EXHAUSTED",
|
|
481
|
+
CANCELED = "CANCELED",
|
|
482
|
+
ALREADY_EXISTS = "ALREADY_EXISTS",
|
|
483
|
+
FAILED_PRECONDITION = "FAILED_PRECONDITION",
|
|
484
|
+
}
|
|
485
|
+
}
|
|
19
486
|
export interface IReferenceEntityField {
|
|
20
487
|
path?: string;
|
|
21
488
|
}
|
|
@@ -83,6 +550,9 @@ declare namespace $requests {
|
|
|
83
550
|
countOptions?: $requests.wix.api.ICountOptions;
|
|
84
551
|
searchRelatedOptions?: $requests.wix.api.ISearchRelatedOptions;
|
|
85
552
|
updateExtendedFieldsOptions?: $requests.wix.api.IUpdateExtendedFieldsOptions;
|
|
553
|
+
customActionOptions?: $requests.wix.api.ICustomActionOptions;
|
|
554
|
+
bulkUpdateTagsOptions?: $requests.wix.api.IBulkUpdateTagsMethodOptions;
|
|
555
|
+
bulkUpdateTagsByFilterOptions?: $requests.wix.api.IBulkUpdateTagsByFilterMethodOptions;
|
|
86
556
|
}
|
|
87
557
|
export class Crud implements ICrud {
|
|
88
558
|
constructor(data?: ICrud);
|
|
@@ -108,6 +578,9 @@ declare namespace $requests {
|
|
|
108
578
|
countOptions?: $requests.wix.api.ICountOptions;
|
|
109
579
|
searchRelatedOptions?: $requests.wix.api.ISearchRelatedOptions;
|
|
110
580
|
updateExtendedFieldsOptions?: $requests.wix.api.IUpdateExtendedFieldsOptions;
|
|
581
|
+
customActionOptions?: $requests.wix.api.ICustomActionOptions;
|
|
582
|
+
bulkUpdateTagsOptions?: $requests.wix.api.IBulkUpdateTagsMethodOptions;
|
|
583
|
+
bulkUpdateTagsByFilterOptions?: $requests.wix.api.IBulkUpdateTagsByFilterMethodOptions;
|
|
111
584
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
112
585
|
}
|
|
113
586
|
export namespace Crud {
|
|
@@ -136,16 +609,21 @@ declare namespace $requests {
|
|
|
136
609
|
UPDATE_EXTENDED_FIELDS = "UPDATE_EXTENDED_FIELDS",
|
|
137
610
|
BULK_UPDATE_TAGS = "BULK_UPDATE_TAGS",
|
|
138
611
|
BULK_UPDATE_TAGS_BY_FILTER = "BULK_UPDATE_TAGS_BY_FILTER",
|
|
612
|
+
CUSTOM_ACTION = "CUSTOM_ACTION",
|
|
139
613
|
}
|
|
140
614
|
}
|
|
141
615
|
export interface IPaging {
|
|
142
616
|
type?: $requests.wix.api.Paging.Type;
|
|
143
617
|
pagingMetadataField?: string;
|
|
618
|
+
cursorPagingMetadataField?: string;
|
|
619
|
+
offsetPagingMetadataField?: string;
|
|
144
620
|
}
|
|
145
621
|
export class Paging implements IPaging {
|
|
146
622
|
constructor(data?: IPaging);
|
|
147
623
|
type?: $requests.wix.api.Paging.Type;
|
|
148
624
|
pagingMetadataField?: string;
|
|
625
|
+
cursorPagingMetadataField?: string;
|
|
626
|
+
offsetPagingMetadataField?: string;
|
|
149
627
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
150
628
|
}
|
|
151
629
|
export namespace Paging {
|
|
@@ -153,8 +631,33 @@ declare namespace $requests {
|
|
|
153
631
|
UNKNOWN_TYPE = "UNKNOWN_TYPE",
|
|
154
632
|
OFFSET = "OFFSET",
|
|
155
633
|
CURSOR = "CURSOR",
|
|
634
|
+
BOTH = "BOTH",
|
|
156
635
|
}
|
|
157
636
|
}
|
|
637
|
+
export interface ICustomActionOptions {
|
|
638
|
+
readOperation?: boolean;
|
|
639
|
+
wql?: $requests.wix.api.IWqlOptions;
|
|
640
|
+
}
|
|
641
|
+
export class CustomActionOptions implements ICustomActionOptions {
|
|
642
|
+
constructor(data?: ICustomActionOptions);
|
|
643
|
+
readOperation?: boolean;
|
|
644
|
+
wql?: $requests.wix.api.IWqlOptions;
|
|
645
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
646
|
+
}
|
|
647
|
+
export interface IWqlOptions {
|
|
648
|
+
queryOptionsName?: string;
|
|
649
|
+
filterField?: string;
|
|
650
|
+
queryField?: string;
|
|
651
|
+
searchField?: string;
|
|
652
|
+
}
|
|
653
|
+
export class WqlOptions implements IWqlOptions {
|
|
654
|
+
constructor(data?: IWqlOptions);
|
|
655
|
+
queryOptionsName?: string;
|
|
656
|
+
filterField?: string;
|
|
657
|
+
queryField?: string;
|
|
658
|
+
searchField?: string;
|
|
659
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
660
|
+
}
|
|
158
661
|
export interface ICreateMethodOptions {
|
|
159
662
|
itemField?: string;
|
|
160
663
|
}
|
|
@@ -217,6 +720,8 @@ declare namespace $requests {
|
|
|
217
720
|
}
|
|
218
721
|
export interface IQueryMethodOptions {
|
|
219
722
|
queryField?: string;
|
|
723
|
+
cursorQueryField?: string;
|
|
724
|
+
offsetQueryField?: string;
|
|
220
725
|
itemsField?: string;
|
|
221
726
|
paging?: $requests.wix.api.IPaging;
|
|
222
727
|
wql?: $requests.wix.api.IWql;
|
|
@@ -226,6 +731,8 @@ declare namespace $requests {
|
|
|
226
731
|
export class QueryMethodOptions implements IQueryMethodOptions {
|
|
227
732
|
constructor(data?: IQueryMethodOptions);
|
|
228
733
|
queryField?: string;
|
|
734
|
+
cursorQueryField?: string;
|
|
735
|
+
offsetQueryField?: string;
|
|
229
736
|
itemsField?: string;
|
|
230
737
|
paging?: $requests.wix.api.IPaging;
|
|
231
738
|
wql?: $requests.wix.api.IWql;
|
|
@@ -235,6 +742,8 @@ declare namespace $requests {
|
|
|
235
742
|
}
|
|
236
743
|
export interface ISearchMethodOptions {
|
|
237
744
|
searchField?: string;
|
|
745
|
+
cursorSearchField?: string;
|
|
746
|
+
offsetSearchField?: string;
|
|
238
747
|
itemsField?: string;
|
|
239
748
|
paging?: $requests.wix.api.IPaging;
|
|
240
749
|
wql?: $requests.wix.api.IWql;
|
|
@@ -245,6 +754,8 @@ declare namespace $requests {
|
|
|
245
754
|
export class SearchMethodOptions implements ISearchMethodOptions {
|
|
246
755
|
constructor(data?: ISearchMethodOptions);
|
|
247
756
|
searchField?: string;
|
|
757
|
+
cursorSearchField?: string;
|
|
758
|
+
offsetSearchField?: string;
|
|
248
759
|
itemsField?: string;
|
|
249
760
|
paging?: $requests.wix.api.IPaging;
|
|
250
761
|
wql?: $requests.wix.api.IWql;
|
|
@@ -285,6 +796,24 @@ declare namespace $requests {
|
|
|
285
796
|
queryOptionsName?: string;
|
|
286
797
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
287
798
|
}
|
|
799
|
+
export interface IBulkUpdateTagsMethodOptions {
|
|
800
|
+
idsField?: string;
|
|
801
|
+
}
|
|
802
|
+
export class BulkUpdateTagsMethodOptions implements IBulkUpdateTagsMethodOptions {
|
|
803
|
+
constructor(data?: IBulkUpdateTagsMethodOptions);
|
|
804
|
+
idsField?: string;
|
|
805
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
806
|
+
}
|
|
807
|
+
export interface IBulkUpdateTagsByFilterMethodOptions {
|
|
808
|
+
filterField?: string;
|
|
809
|
+
queryOptionsName?: string;
|
|
810
|
+
}
|
|
811
|
+
export class BulkUpdateTagsByFilterMethodOptions implements IBulkUpdateTagsByFilterMethodOptions {
|
|
812
|
+
constructor(data?: IBulkUpdateTagsByFilterMethodOptions);
|
|
813
|
+
filterField?: string;
|
|
814
|
+
queryOptionsName?: string;
|
|
815
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
816
|
+
}
|
|
288
817
|
export interface IBulkUpsertMethodOptions {
|
|
289
818
|
itemField?: string;
|
|
290
819
|
fieldmaskField?: string;
|
|
@@ -358,11 +887,15 @@ declare namespace $requests {
|
|
|
358
887
|
export interface ICountOptions {
|
|
359
888
|
inheritWqlFrom?: string;
|
|
360
889
|
queryOptionsName?: string;
|
|
890
|
+
filterField?: string;
|
|
891
|
+
countField?: string;
|
|
361
892
|
}
|
|
362
893
|
export class CountOptions implements ICountOptions {
|
|
363
894
|
constructor(data?: ICountOptions);
|
|
364
895
|
inheritWqlFrom?: string;
|
|
365
896
|
queryOptionsName?: string;
|
|
897
|
+
filterField?: string;
|
|
898
|
+
countField?: string;
|
|
366
899
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
367
900
|
}
|
|
368
901
|
export interface ISearchRelatedOptions {
|
|
@@ -415,6 +948,7 @@ declare namespace $requests {
|
|
|
415
948
|
EMPTY = "EMPTY",
|
|
416
949
|
MATCH_ALL = "MATCH_ALL",
|
|
417
950
|
MATCH_ITEMS = "MATCH_ITEMS",
|
|
951
|
+
ENHANCED_DATE = "ENHANCED_DATE",
|
|
418
952
|
}
|
|
419
953
|
export enum Sort {
|
|
420
954
|
NONE = "NONE",
|
|
@@ -444,6 +978,10 @@ declare namespace $requests {
|
|
|
444
978
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
445
979
|
}
|
|
446
980
|
}
|
|
981
|
+
export enum VirtualSubfields {
|
|
982
|
+
NO_VIRTUAL_SUBFIELDS = "NO_VIRTUAL_SUBFIELDS",
|
|
983
|
+
DATE = "DATE",
|
|
984
|
+
}
|
|
447
985
|
export interface IOperatorFieldSupport {
|
|
448
986
|
operator?: $requests.wix.api.Wql.Operator[];
|
|
449
987
|
glob?: string;
|
|
@@ -451,6 +989,7 @@ declare namespace $requests {
|
|
|
451
989
|
sort?: $requests.wix.api.Wql.Sort;
|
|
452
990
|
requiredFields?: $requests.wix.api.Wql.IRequiredFields[];
|
|
453
991
|
maturity?: $requests.wix.api.Maturity;
|
|
992
|
+
virtualSubfields?: $requests.wix.api.Wql.VirtualSubfields;
|
|
454
993
|
}
|
|
455
994
|
export class OperatorFieldSupport implements IOperatorFieldSupport {
|
|
456
995
|
constructor(data?: IOperatorFieldSupport);
|
|
@@ -460,6 +999,7 @@ declare namespace $requests {
|
|
|
460
999
|
sort?: $requests.wix.api.Wql.Sort;
|
|
461
1000
|
requiredFields?: $requests.wix.api.Wql.IRequiredFields[];
|
|
462
1001
|
maturity?: $requests.wix.api.Maturity;
|
|
1002
|
+
virtualSubfields?: $requests.wix.api.Wql.VirtualSubfields;
|
|
463
1003
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
464
1004
|
}
|
|
465
1005
|
}
|
|
@@ -543,66 +1083,155 @@ declare namespace $requests {
|
|
|
543
1083
|
GA = "GA",
|
|
544
1084
|
NOT_IMPLEMENTED = "NOT_IMPLEMENTED",
|
|
545
1085
|
}
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
export interface IError {
|
|
550
|
-
httpCode?: $requests.wix.api.StatusCodes.HttpStatusCode;
|
|
551
|
-
applicationCode?: string;
|
|
552
|
-
data?: string;
|
|
1086
|
+
export interface IServiceEntity {
|
|
1087
|
+
message?: string;
|
|
1088
|
+
namespace?: string;
|
|
553
1089
|
}
|
|
554
|
-
export class
|
|
555
|
-
constructor(data?:
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
data?: string;
|
|
1090
|
+
export class ServiceEntity implements IServiceEntity {
|
|
1091
|
+
constructor(data?: IServiceEntity);
|
|
1092
|
+
message?: string;
|
|
1093
|
+
namespace?: string;
|
|
559
1094
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
560
1095
|
}
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
1096
|
+
export interface IEntity {
|
|
1097
|
+
fqdn?: string;
|
|
1098
|
+
exposure?: $requests.wix.api.Exposure;
|
|
1099
|
+
appendixFiles?: $requests.wix.api.IMessageAppendix[];
|
|
1100
|
+
oldFqdnForBackwardsCompatibility?: string;
|
|
1101
|
+
segment?: $requests.wix.api.Segment.SegmentName;
|
|
1102
|
+
implements?: string[];
|
|
1103
|
+
extensible?: $requests.wix.api.IExtensible;
|
|
1104
|
+
trashbin?: boolean;
|
|
1105
|
+
plural?: string;
|
|
1106
|
+
domainEventsReadPermission?: string;
|
|
1107
|
+
appDefId?: string;
|
|
1108
|
+
domainEvents?: $requests.wix.api.IDomainEventOptions;
|
|
1109
|
+
taggable?: $requests.wix.api.ITaggable;
|
|
1110
|
+
queryOptions?: $requests.wix.api.IQueryOptions;
|
|
1111
|
+
eventsExposure?: $requests.wix.api.Exposure;
|
|
1112
|
+
eventsMaturity?: $requests.wix.api.Maturity;
|
|
1113
|
+
persistence?: $requests.wix.api.IPersistence;
|
|
567
1114
|
}
|
|
568
|
-
export class
|
|
569
|
-
constructor(data?:
|
|
570
|
-
|
|
571
|
-
|
|
1115
|
+
export class Entity implements IEntity {
|
|
1116
|
+
constructor(data?: IEntity);
|
|
1117
|
+
fqdn?: string;
|
|
1118
|
+
exposure?: $requests.wix.api.Exposure;
|
|
1119
|
+
appendixFiles?: $requests.wix.api.IMessageAppendix[];
|
|
1120
|
+
oldFqdnForBackwardsCompatibility?: string;
|
|
1121
|
+
segment?: $requests.wix.api.Segment.SegmentName;
|
|
1122
|
+
implements?: string[];
|
|
1123
|
+
extensible?: $requests.wix.api.IExtensible;
|
|
1124
|
+
trashbin?: boolean;
|
|
1125
|
+
plural?: string;
|
|
1126
|
+
domainEventsReadPermission?: string;
|
|
1127
|
+
appDefId?: string;
|
|
1128
|
+
domainEvents?: $requests.wix.api.IDomainEventOptions;
|
|
1129
|
+
taggable?: $requests.wix.api.ITaggable;
|
|
1130
|
+
queryOptions?: $requests.wix.api.IQueryOptions;
|
|
1131
|
+
eventsExposure?: $requests.wix.api.Exposure;
|
|
1132
|
+
eventsMaturity?: $requests.wix.api.Maturity;
|
|
1133
|
+
persistence?: $requests.wix.api.IPersistence;
|
|
572
1134
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
573
1135
|
}
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
*/
|
|
577
|
-
export interface IInheritCrudErrors {
|
|
578
|
-
method?: $requests.wix.api.Crud.Method;
|
|
1136
|
+
export interface IPersistence {
|
|
1137
|
+
type?: $requests.wix.api.Persistence.Type;
|
|
579
1138
|
}
|
|
580
|
-
export class
|
|
581
|
-
constructor(data?:
|
|
582
|
-
|
|
1139
|
+
export class Persistence implements IPersistence {
|
|
1140
|
+
constructor(data?: IPersistence);
|
|
1141
|
+
type?: $requests.wix.api.Persistence.Type;
|
|
583
1142
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
584
1143
|
}
|
|
585
|
-
export
|
|
1144
|
+
export namespace Persistence {
|
|
1145
|
+
export enum Type {
|
|
1146
|
+
STANDARD = "STANDARD",
|
|
1147
|
+
SINGLETON = "SINGLETON",
|
|
1148
|
+
NONE = "NONE",
|
|
1149
|
+
}
|
|
586
1150
|
}
|
|
587
|
-
export
|
|
588
|
-
|
|
1151
|
+
export interface IExtensible {
|
|
1152
|
+
nestedExtensionFieldPath?: string;
|
|
1153
|
+
filterable?: boolean;
|
|
1154
|
+
nestedExtensionPointMappings?: $requests.wix.api.INestedExtensionPointMapping[];
|
|
1155
|
+
}
|
|
1156
|
+
export class Extensible implements IExtensible {
|
|
1157
|
+
constructor(data?: IExtensible);
|
|
1158
|
+
nestedExtensionFieldPath?: string;
|
|
1159
|
+
filterable?: boolean;
|
|
1160
|
+
nestedExtensionPointMappings?: $requests.wix.api.INestedExtensionPointMapping[];
|
|
589
1161
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
590
1162
|
}
|
|
591
|
-
export
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
1163
|
+
export interface INestedExtensionPointMapping {
|
|
1164
|
+
extensionPoint?: string;
|
|
1165
|
+
path?: string;
|
|
1166
|
+
}
|
|
1167
|
+
export class NestedExtensionPointMapping implements INestedExtensionPointMapping {
|
|
1168
|
+
constructor(data?: INestedExtensionPointMapping);
|
|
1169
|
+
extensionPoint?: string;
|
|
1170
|
+
path?: string;
|
|
1171
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1172
|
+
}
|
|
1173
|
+
export interface IMessageAppendix {
|
|
1174
|
+
type?: $requests.wix.api.MessageAppendix.Type;
|
|
1175
|
+
path?: string;
|
|
1176
|
+
}
|
|
1177
|
+
export class MessageAppendix implements IMessageAppendix {
|
|
1178
|
+
constructor(data?: IMessageAppendix);
|
|
1179
|
+
type?: $requests.wix.api.MessageAppendix.Type;
|
|
1180
|
+
path?: string;
|
|
1181
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1182
|
+
}
|
|
1183
|
+
export namespace MessageAppendix {
|
|
1184
|
+
export enum Type {
|
|
1185
|
+
UNKNOWN_APPENDIX_TYPE = "UNKNOWN_APPENDIX_TYPE",
|
|
1186
|
+
AUTO_VELO = "AUTO_VELO",
|
|
1187
|
+
DOCS_CONF = "DOCS_CONF",
|
|
1188
|
+
MULTILINGUAL = "MULTILINGUAL",
|
|
1189
|
+
SEARCH = "SEARCH",
|
|
1190
|
+
AUTO_SDK = "AUTO_SDK",
|
|
604
1191
|
}
|
|
605
1192
|
}
|
|
1193
|
+
export interface IDomainEventOptions {
|
|
1194
|
+
eventSequenceNumber?: boolean;
|
|
1195
|
+
deletedIncludeEntity?: boolean;
|
|
1196
|
+
updatedIncludeModifiedFields?: boolean;
|
|
1197
|
+
}
|
|
1198
|
+
export class DomainEventOptions implements IDomainEventOptions {
|
|
1199
|
+
constructor(data?: IDomainEventOptions);
|
|
1200
|
+
eventSequenceNumber?: boolean;
|
|
1201
|
+
deletedIncludeEntity?: boolean;
|
|
1202
|
+
updatedIncludeModifiedFields?: boolean;
|
|
1203
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1204
|
+
}
|
|
1205
|
+
export interface ITaggable {
|
|
1206
|
+
}
|
|
1207
|
+
export class Taggable implements ITaggable {
|
|
1208
|
+
constructor(data?: ITaggable);
|
|
1209
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1210
|
+
}
|
|
1211
|
+
export interface IQueryOptions {
|
|
1212
|
+
wql?: $requests.wix.api.IWql;
|
|
1213
|
+
search?: $requests.wix.api.ISearch[];
|
|
1214
|
+
additionalQueryOptions?: $requests.wix.api.INamedQueryOptions[];
|
|
1215
|
+
}
|
|
1216
|
+
export class QueryOptions implements IQueryOptions {
|
|
1217
|
+
constructor(data?: IQueryOptions);
|
|
1218
|
+
wql?: $requests.wix.api.IWql;
|
|
1219
|
+
search?: $requests.wix.api.ISearch[];
|
|
1220
|
+
additionalQueryOptions?: $requests.wix.api.INamedQueryOptions[];
|
|
1221
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1222
|
+
}
|
|
1223
|
+
export interface INamedQueryOptions {
|
|
1224
|
+
name?: string;
|
|
1225
|
+
wql?: $requests.wix.api.IWql;
|
|
1226
|
+
search?: $requests.wix.api.ISearch[];
|
|
1227
|
+
}
|
|
1228
|
+
export class NamedQueryOptions implements INamedQueryOptions {
|
|
1229
|
+
constructor(data?: INamedQueryOptions);
|
|
1230
|
+
name?: string;
|
|
1231
|
+
wql?: $requests.wix.api.IWql;
|
|
1232
|
+
search?: $requests.wix.api.ISearch[];
|
|
1233
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1234
|
+
}
|
|
606
1235
|
export interface ICallback {
|
|
607
1236
|
topic?: string;
|
|
608
1237
|
segment?: $requests.wix.api.Segment.SegmentName;
|
|
@@ -638,6 +1267,8 @@ declare namespace $requests {
|
|
|
638
1267
|
eventType?: $requests.wix.api.DomainEvent.EventType;
|
|
639
1268
|
exposure?: $requests.wix.api.Exposure;
|
|
640
1269
|
maturity?: $requests.wix.api.Maturity;
|
|
1270
|
+
additionalMetadataFqn?: string;
|
|
1271
|
+
deprecated?: $requests.wix.api.IDomainEventDeprecation;
|
|
641
1272
|
}
|
|
642
1273
|
export class DomainEvent implements IDomainEvent {
|
|
643
1274
|
constructor(data?: IDomainEvent);
|
|
@@ -646,6 +1277,8 @@ declare namespace $requests {
|
|
|
646
1277
|
eventType?: $requests.wix.api.DomainEvent.EventType;
|
|
647
1278
|
exposure?: $requests.wix.api.Exposure;
|
|
648
1279
|
maturity?: $requests.wix.api.Maturity;
|
|
1280
|
+
additionalMetadataFqn?: string;
|
|
1281
|
+
deprecated?: $requests.wix.api.IDomainEventDeprecation;
|
|
649
1282
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
650
1283
|
}
|
|
651
1284
|
export namespace DomainEvent {
|
|
@@ -667,6 +1300,16 @@ declare namespace $requests {
|
|
|
667
1300
|
actionMessageFqn?: string;
|
|
668
1301
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
669
1302
|
}
|
|
1303
|
+
export interface IDomainEventDeprecation {
|
|
1304
|
+
replacedBy?: string;
|
|
1305
|
+
targetRemovalDate?: string;
|
|
1306
|
+
}
|
|
1307
|
+
export class DomainEventDeprecation implements IDomainEventDeprecation {
|
|
1308
|
+
constructor(data?: IDomainEventDeprecation);
|
|
1309
|
+
replacedBy?: string;
|
|
1310
|
+
targetRemovalDate?: string;
|
|
1311
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1312
|
+
}
|
|
670
1313
|
export interface ICallbackDeprecation {
|
|
671
1314
|
replacedBy?: string;
|
|
672
1315
|
targetRemovalDate?: string;
|
|
@@ -703,6 +1346,14 @@ declare namespace $requests {
|
|
|
703
1346
|
OTHERS = "OTHERS",
|
|
704
1347
|
}
|
|
705
1348
|
}
|
|
1349
|
+
export interface IActionPayload {
|
|
1350
|
+
customSlug?: string;
|
|
1351
|
+
}
|
|
1352
|
+
export class ActionPayload implements IActionPayload {
|
|
1353
|
+
constructor(data?: IActionPayload);
|
|
1354
|
+
customSlug?: string;
|
|
1355
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1356
|
+
}
|
|
706
1357
|
export interface IRequestContext {
|
|
707
1358
|
aspects?: { [k: string]: string };
|
|
708
1359
|
}
|
|
@@ -727,138 +1378,6 @@ declare namespace $requests {
|
|
|
727
1378
|
aspectEntry?: { [k: string]: string };
|
|
728
1379
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
729
1380
|
}
|
|
730
|
-
export interface IServiceEntity {
|
|
731
|
-
message?: string;
|
|
732
|
-
namespace?: string;
|
|
733
|
-
}
|
|
734
|
-
export class ServiceEntity implements IServiceEntity {
|
|
735
|
-
constructor(data?: IServiceEntity);
|
|
736
|
-
message?: string;
|
|
737
|
-
namespace?: string;
|
|
738
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
739
|
-
}
|
|
740
|
-
export interface IEntity {
|
|
741
|
-
fqdn?: string;
|
|
742
|
-
exposure?: $requests.wix.api.Exposure;
|
|
743
|
-
appendixFiles?: $requests.wix.api.IMessageAppendix[];
|
|
744
|
-
oldFqdnForBackwardsCompatibility?: string;
|
|
745
|
-
segment?: $requests.wix.api.Segment.SegmentName;
|
|
746
|
-
implements?: string[];
|
|
747
|
-
extensible?: $requests.wix.api.IExtensible;
|
|
748
|
-
trashbin?: boolean;
|
|
749
|
-
plural?: string;
|
|
750
|
-
domainEventsReadPermission?: string;
|
|
751
|
-
appDefId?: string;
|
|
752
|
-
domainEvents?: $requests.wix.api.IDomainEventOptions;
|
|
753
|
-
taggable?: $requests.wix.api.ITaggable;
|
|
754
|
-
queryOptions?: $requests.wix.api.IQueryOptions;
|
|
755
|
-
eventsExposure?: $requests.wix.api.Exposure;
|
|
756
|
-
eventsMaturity?: $requests.wix.api.Maturity;
|
|
757
|
-
}
|
|
758
|
-
export class Entity implements IEntity {
|
|
759
|
-
constructor(data?: IEntity);
|
|
760
|
-
fqdn?: string;
|
|
761
|
-
exposure?: $requests.wix.api.Exposure;
|
|
762
|
-
appendixFiles?: $requests.wix.api.IMessageAppendix[];
|
|
763
|
-
oldFqdnForBackwardsCompatibility?: string;
|
|
764
|
-
segment?: $requests.wix.api.Segment.SegmentName;
|
|
765
|
-
implements?: string[];
|
|
766
|
-
extensible?: $requests.wix.api.IExtensible;
|
|
767
|
-
trashbin?: boolean;
|
|
768
|
-
plural?: string;
|
|
769
|
-
domainEventsReadPermission?: string;
|
|
770
|
-
appDefId?: string;
|
|
771
|
-
domainEvents?: $requests.wix.api.IDomainEventOptions;
|
|
772
|
-
taggable?: $requests.wix.api.ITaggable;
|
|
773
|
-
queryOptions?: $requests.wix.api.IQueryOptions;
|
|
774
|
-
eventsExposure?: $requests.wix.api.Exposure;
|
|
775
|
-
eventsMaturity?: $requests.wix.api.Maturity;
|
|
776
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
777
|
-
}
|
|
778
|
-
export interface IExtensible {
|
|
779
|
-
nestedExtensionFieldPath?: string;
|
|
780
|
-
filterable?: boolean;
|
|
781
|
-
nestedExtensionPointMappings?: $requests.wix.api.INestedExtensionPointMapping[];
|
|
782
|
-
}
|
|
783
|
-
export class Extensible implements IExtensible {
|
|
784
|
-
constructor(data?: IExtensible);
|
|
785
|
-
nestedExtensionFieldPath?: string;
|
|
786
|
-
filterable?: boolean;
|
|
787
|
-
nestedExtensionPointMappings?: $requests.wix.api.INestedExtensionPointMapping[];
|
|
788
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
789
|
-
}
|
|
790
|
-
export interface INestedExtensionPointMapping {
|
|
791
|
-
extensionPoint?: string;
|
|
792
|
-
path?: string;
|
|
793
|
-
}
|
|
794
|
-
export class NestedExtensionPointMapping implements INestedExtensionPointMapping {
|
|
795
|
-
constructor(data?: INestedExtensionPointMapping);
|
|
796
|
-
extensionPoint?: string;
|
|
797
|
-
path?: string;
|
|
798
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
799
|
-
}
|
|
800
|
-
export interface IMessageAppendix {
|
|
801
|
-
type?: $requests.wix.api.MessageAppendix.Type;
|
|
802
|
-
path?: string;
|
|
803
|
-
}
|
|
804
|
-
export class MessageAppendix implements IMessageAppendix {
|
|
805
|
-
constructor(data?: IMessageAppendix);
|
|
806
|
-
type?: $requests.wix.api.MessageAppendix.Type;
|
|
807
|
-
path?: string;
|
|
808
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
809
|
-
}
|
|
810
|
-
export namespace MessageAppendix {
|
|
811
|
-
export enum Type {
|
|
812
|
-
UNKNOWN_APPENDIX_TYPE = "UNKNOWN_APPENDIX_TYPE",
|
|
813
|
-
AUTO_VELO = "AUTO_VELO",
|
|
814
|
-
DOCS_CONF = "DOCS_CONF",
|
|
815
|
-
MULTILINGUAL = "MULTILINGUAL",
|
|
816
|
-
SEARCH = "SEARCH",
|
|
817
|
-
AUTO_SDK = "AUTO_SDK",
|
|
818
|
-
}
|
|
819
|
-
}
|
|
820
|
-
export interface IDomainEventOptions {
|
|
821
|
-
eventSequenceNumber?: boolean;
|
|
822
|
-
deletedIncludeEntity?: boolean;
|
|
823
|
-
updatedIncludeModifiedFields?: boolean;
|
|
824
|
-
}
|
|
825
|
-
export class DomainEventOptions implements IDomainEventOptions {
|
|
826
|
-
constructor(data?: IDomainEventOptions);
|
|
827
|
-
eventSequenceNumber?: boolean;
|
|
828
|
-
deletedIncludeEntity?: boolean;
|
|
829
|
-
updatedIncludeModifiedFields?: boolean;
|
|
830
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
831
|
-
}
|
|
832
|
-
export interface ITaggable {
|
|
833
|
-
}
|
|
834
|
-
export class Taggable implements ITaggable {
|
|
835
|
-
constructor(data?: ITaggable);
|
|
836
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
837
|
-
}
|
|
838
|
-
export interface IQueryOptions {
|
|
839
|
-
wql?: $requests.wix.api.IWql;
|
|
840
|
-
search?: $requests.wix.api.ISearch[];
|
|
841
|
-
additionalQueryOptions?: $requests.wix.api.INamedQueryOptions[];
|
|
842
|
-
}
|
|
843
|
-
export class QueryOptions implements IQueryOptions {
|
|
844
|
-
constructor(data?: IQueryOptions);
|
|
845
|
-
wql?: $requests.wix.api.IWql;
|
|
846
|
-
search?: $requests.wix.api.ISearch[];
|
|
847
|
-
additionalQueryOptions?: $requests.wix.api.INamedQueryOptions[];
|
|
848
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
849
|
-
}
|
|
850
|
-
export interface INamedQueryOptions {
|
|
851
|
-
name?: string;
|
|
852
|
-
wql?: $requests.wix.api.IWql;
|
|
853
|
-
search?: $requests.wix.api.ISearch[];
|
|
854
|
-
}
|
|
855
|
-
export class NamedQueryOptions implements INamedQueryOptions {
|
|
856
|
-
constructor(data?: INamedQueryOptions);
|
|
857
|
-
name?: string;
|
|
858
|
-
wql?: $requests.wix.api.IWql;
|
|
859
|
-
search?: $requests.wix.api.ISearch[];
|
|
860
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
861
|
-
}
|
|
862
1381
|
export interface IDetails {
|
|
863
1382
|
applicationError?: $requests.wix.api.IApplicationError;
|
|
864
1383
|
validationError?: $requests.wix.api.IValidationError;
|
|
@@ -953,6 +1472,9 @@ declare namespace $requests {
|
|
|
953
1472
|
REQUIRED_FIELD = "REQUIRED_FIELD",
|
|
954
1473
|
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
955
1474
|
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
|
|
1475
|
+
EXACT_LENGTH = "EXACT_LENGTH",
|
|
1476
|
+
EXACT_SIZE = "EXACT_SIZE",
|
|
1477
|
+
REQUIRED_ONE_OF_FIELD = "REQUIRED_ONE_OF_FIELD",
|
|
956
1478
|
}
|
|
957
1479
|
export interface IFieldViolation {
|
|
958
1480
|
field?: string;
|
|
@@ -1011,6 +1533,14 @@ declare namespace $requests {
|
|
|
1011
1533
|
supported?: string[];
|
|
1012
1534
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1013
1535
|
}
|
|
1536
|
+
export interface IRequiredOneOfRuleDataPayload {
|
|
1537
|
+
supported?: string[];
|
|
1538
|
+
}
|
|
1539
|
+
export class RequiredOneOfRuleDataPayload implements IRequiredOneOfRuleDataPayload {
|
|
1540
|
+
constructor(data?: IRequiredOneOfRuleDataPayload);
|
|
1541
|
+
supported?: string[];
|
|
1542
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1543
|
+
}
|
|
1014
1544
|
export interface IIdempotency {
|
|
1015
1545
|
key?: string;
|
|
1016
1546
|
}
|
|
@@ -1057,60 +1587,177 @@ declare namespace $requests {
|
|
|
1057
1587
|
dynamic?: boolean;
|
|
1058
1588
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1059
1589
|
}
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1590
|
+
}
|
|
1591
|
+
export namespace spi {
|
|
1592
|
+
export interface IService {
|
|
1593
|
+
spiIdentifier?: string;
|
|
1594
|
+
configMessage?: string;
|
|
1595
|
+
hostService?: string;
|
|
1596
|
+
businessManagerUrl?: string;
|
|
1597
|
+
fqdn?: string;
|
|
1598
|
+
appId?: string;
|
|
1599
|
+
appendixFiles?: $requests.wix.spi.IServiceAppendix[];
|
|
1070
1600
|
}
|
|
1071
|
-
export class
|
|
1072
|
-
constructor(data?:
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1601
|
+
export class Service implements IService {
|
|
1602
|
+
constructor(data?: IService);
|
|
1603
|
+
spiIdentifier?: string;
|
|
1604
|
+
configMessage?: string;
|
|
1605
|
+
hostService?: string;
|
|
1606
|
+
businessManagerUrl?: string;
|
|
1607
|
+
fqdn?: string;
|
|
1608
|
+
appId?: string;
|
|
1609
|
+
appendixFiles?: $requests.wix.spi.IServiceAppendix[];
|
|
1078
1610
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1079
1611
|
}
|
|
1080
|
-
export interface
|
|
1081
|
-
|
|
1082
|
-
|
|
1612
|
+
export interface IServiceAppendix {
|
|
1613
|
+
type?: $requests.wix.spi.ServiceAppendix.Type;
|
|
1614
|
+
path?: string;
|
|
1083
1615
|
}
|
|
1084
|
-
export class
|
|
1085
|
-
constructor(data?:
|
|
1086
|
-
|
|
1087
|
-
|
|
1616
|
+
export class ServiceAppendix implements IServiceAppendix {
|
|
1617
|
+
constructor(data?: IServiceAppendix);
|
|
1618
|
+
type?: $requests.wix.spi.ServiceAppendix.Type;
|
|
1619
|
+
path?: string;
|
|
1088
1620
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1089
1621
|
}
|
|
1090
|
-
export
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1622
|
+
export namespace ServiceAppendix {
|
|
1623
|
+
export enum Type {
|
|
1624
|
+
UNKNOWN_APPENDIX_TYPE = "UNKNOWN_APPENDIX_TYPE",
|
|
1625
|
+
AUTO_VELO = "AUTO_VELO",
|
|
1626
|
+
DOCS_CONF = "DOCS_CONF",
|
|
1627
|
+
MULTILINGUAL = "MULTILINGUAL",
|
|
1628
|
+
SEARCH = "SEARCH",
|
|
1629
|
+
AUTO_SDK = "AUTO_SDK",
|
|
1630
|
+
}
|
|
1631
|
+
}
|
|
1632
|
+
export interface IError {
|
|
1633
|
+
name?: string;
|
|
1634
|
+
httpCode?: $requests.wix.spi.HttpStatusCode;
|
|
1635
|
+
applicationCode?: string;
|
|
1636
|
+
data?: string;
|
|
1637
|
+
}
|
|
1638
|
+
export class Error implements IError {
|
|
1639
|
+
constructor(data?: IError);
|
|
1640
|
+
name?: string;
|
|
1641
|
+
httpCode?: $requests.wix.spi.HttpStatusCode;
|
|
1642
|
+
applicationCode?: string;
|
|
1643
|
+
data?: string;
|
|
1644
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1645
|
+
}
|
|
1646
|
+
export interface IEvent {
|
|
1647
|
+
methodName?: string;
|
|
1648
|
+
}
|
|
1649
|
+
export class Event implements IEvent {
|
|
1650
|
+
constructor(data?: IEvent);
|
|
1651
|
+
methodName?: string;
|
|
1652
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1653
|
+
}
|
|
1654
|
+
export enum HttpStatusCode {
|
|
1655
|
+
UNKNOWN_ERROR = "UNKNOWN_ERROR",
|
|
1656
|
+
UNAUTHENTICATED = "UNAUTHENTICATED",
|
|
1657
|
+
INVALID_ARGUMENT = "INVALID_ARGUMENT",
|
|
1658
|
+
INTERNAL = "INTERNAL",
|
|
1659
|
+
RESOURCE_EXHAUSTED = "RESOURCE_EXHAUSTED",
|
|
1660
|
+
CANCELED = "CANCELED",
|
|
1661
|
+
NOT_FOUND = "NOT_FOUND",
|
|
1662
|
+
ALREADY_EXISTS = "ALREADY_EXISTS",
|
|
1663
|
+
FAILED_PRECONDITION = "FAILED_PRECONDITION",
|
|
1111
1664
|
}
|
|
1112
1665
|
}
|
|
1113
1666
|
export namespace common {
|
|
1667
|
+
export interface IPaging {
|
|
1668
|
+
limit?: number;
|
|
1669
|
+
offset?: number;
|
|
1670
|
+
}
|
|
1671
|
+
export class Paging implements IPaging {
|
|
1672
|
+
constructor(data?: IPaging);
|
|
1673
|
+
limit?: number;
|
|
1674
|
+
offset?: number;
|
|
1675
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1676
|
+
}
|
|
1677
|
+
export interface ICursorPaging {
|
|
1678
|
+
limit?: number;
|
|
1679
|
+
cursor?: string;
|
|
1680
|
+
}
|
|
1681
|
+
export class CursorPaging implements ICursorPaging {
|
|
1682
|
+
constructor(data?: ICursorPaging);
|
|
1683
|
+
limit?: number;
|
|
1684
|
+
cursor?: string;
|
|
1685
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1686
|
+
}
|
|
1687
|
+
export interface IPagingMetadata {
|
|
1688
|
+
count?: number;
|
|
1689
|
+
offset?: number;
|
|
1690
|
+
total?: number;
|
|
1691
|
+
tooManyToCount?: boolean;
|
|
1692
|
+
hasNext?: boolean;
|
|
1693
|
+
}
|
|
1694
|
+
export class PagingMetadata implements IPagingMetadata {
|
|
1695
|
+
constructor(data?: IPagingMetadata);
|
|
1696
|
+
count?: number;
|
|
1697
|
+
offset?: number;
|
|
1698
|
+
total?: number;
|
|
1699
|
+
tooManyToCount?: boolean;
|
|
1700
|
+
hasNext?: boolean;
|
|
1701
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1702
|
+
}
|
|
1703
|
+
export interface IPagingMetadataV2 {
|
|
1704
|
+
count?: number;
|
|
1705
|
+
offset?: number;
|
|
1706
|
+
total?: number;
|
|
1707
|
+
tooManyToCount?: boolean;
|
|
1708
|
+
cursors?: $requests.wix.common.ICursors;
|
|
1709
|
+
hasNext?: boolean;
|
|
1710
|
+
}
|
|
1711
|
+
export class PagingMetadataV2 implements IPagingMetadataV2 {
|
|
1712
|
+
constructor(data?: IPagingMetadataV2);
|
|
1713
|
+
count?: number;
|
|
1714
|
+
offset?: number;
|
|
1715
|
+
total?: number;
|
|
1716
|
+
tooManyToCount?: boolean;
|
|
1717
|
+
cursors?: $requests.wix.common.ICursors;
|
|
1718
|
+
hasNext?: boolean;
|
|
1719
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1720
|
+
}
|
|
1721
|
+
export interface ICursorPagingMetadata {
|
|
1722
|
+
count?: number;
|
|
1723
|
+
cursors?: $requests.wix.common.ICursors;
|
|
1724
|
+
hasNext?: boolean;
|
|
1725
|
+
total?: number;
|
|
1726
|
+
}
|
|
1727
|
+
export class CursorPagingMetadata implements ICursorPagingMetadata {
|
|
1728
|
+
constructor(data?: ICursorPagingMetadata);
|
|
1729
|
+
count?: number;
|
|
1730
|
+
cursors?: $requests.wix.common.ICursors;
|
|
1731
|
+
hasNext?: boolean;
|
|
1732
|
+
total?: number;
|
|
1733
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1734
|
+
}
|
|
1735
|
+
export interface ICursors {
|
|
1736
|
+
next?: string;
|
|
1737
|
+
prev?: string;
|
|
1738
|
+
}
|
|
1739
|
+
export class Cursors implements ICursors {
|
|
1740
|
+
constructor(data?: ICursors);
|
|
1741
|
+
next?: string;
|
|
1742
|
+
prev?: string;
|
|
1743
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1744
|
+
}
|
|
1745
|
+
export interface ISorting {
|
|
1746
|
+
fieldName?: string;
|
|
1747
|
+
order?: $requests.wix.common.SortOrder;
|
|
1748
|
+
selectItemsBy?: { [key: string]: any }[];
|
|
1749
|
+
}
|
|
1750
|
+
export class Sorting implements ISorting {
|
|
1751
|
+
constructor(data?: ISorting);
|
|
1752
|
+
fieldName?: string;
|
|
1753
|
+
order?: $requests.wix.common.SortOrder;
|
|
1754
|
+
selectItemsBy?: { [key: string]: any }[];
|
|
1755
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1756
|
+
}
|
|
1757
|
+
export enum SortOrder {
|
|
1758
|
+
ASC = "ASC",
|
|
1759
|
+
DESC = "DESC",
|
|
1760
|
+
}
|
|
1114
1761
|
export interface IAddress {
|
|
1115
1762
|
country?: string;
|
|
1116
1763
|
subdivision?: string;
|
|
@@ -1596,6 +2243,7 @@ declare namespace $requests {
|
|
|
1596
2243
|
valueExceeded?: $requests.wix.common.data.PatchErrorDetails.IValueExceeded;
|
|
1597
2244
|
invalidUuid?: $requests.wix.common.data.PatchErrorDetails.IInvalidUUID;
|
|
1598
2245
|
systemFieldNotAllowed?: $requests.wix.common.data.PatchErrorDetails.ISystemFieldNotAllowed;
|
|
2246
|
+
failedToWriteType?: $requests.wix.common.data.PatchErrorDetails.IFailedToWriteType;
|
|
1599
2247
|
}
|
|
1600
2248
|
export class PatchErrorDetails implements IPatchErrorDetails {
|
|
1601
2249
|
constructor(data?: IPatchErrorDetails);
|
|
@@ -1610,6 +2258,7 @@ declare namespace $requests {
|
|
|
1610
2258
|
valueExceeded?: $requests.wix.common.data.PatchErrorDetails.IValueExceeded;
|
|
1611
2259
|
invalidUuid?: $requests.wix.common.data.PatchErrorDetails.IInvalidUUID;
|
|
1612
2260
|
systemFieldNotAllowed?: $requests.wix.common.data.PatchErrorDetails.ISystemFieldNotAllowed;
|
|
2261
|
+
failedToWriteType?: $requests.wix.common.data.PatchErrorDetails.IFailedToWriteType;
|
|
1613
2262
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1614
2263
|
}
|
|
1615
2264
|
export namespace PatchErrorDetails {
|
|
@@ -1665,6 +2314,18 @@ declare namespace $requests {
|
|
|
1665
2314
|
expected?: string;
|
|
1666
2315
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1667
2316
|
}
|
|
2317
|
+
export interface IFailedToWriteType {
|
|
2318
|
+
path?: string;
|
|
2319
|
+
expectedType?: string;
|
|
2320
|
+
value?: string;
|
|
2321
|
+
}
|
|
2322
|
+
export class FailedToWriteType implements IFailedToWriteType {
|
|
2323
|
+
constructor(data?: IFailedToWriteType);
|
|
2324
|
+
path?: string;
|
|
2325
|
+
expectedType?: string;
|
|
2326
|
+
value?: string;
|
|
2327
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2328
|
+
}
|
|
1668
2329
|
export interface IIllegalPath {
|
|
1669
2330
|
path?: string;
|
|
1670
2331
|
}
|
|
@@ -1810,6 +2471,7 @@ declare namespace $requests {
|
|
|
1810
2471
|
uniqueKeyNotFound?: $requests.wix.common.data.ErrorDetails.IUniqueKeyNotFound;
|
|
1811
2472
|
invalidUniqueKey?: $requests.wix.common.data.ErrorDetails.IInvalidUniqueKey;
|
|
1812
2473
|
maxSizeViolations?: $requests.wix.common.data.ErrorDetails.IMaxSizeViolations;
|
|
2474
|
+
pageSizeExceedsMaximum?: $requests.wix.common.data.ErrorDetails.IPageSizeExceedsMaximum;
|
|
1813
2475
|
}
|
|
1814
2476
|
export class ErrorDetails implements IErrorDetails {
|
|
1815
2477
|
constructor(data?: IErrorDetails);
|
|
@@ -1842,6 +2504,7 @@ declare namespace $requests {
|
|
|
1842
2504
|
uniqueKeyNotFound?: $requests.wix.common.data.ErrorDetails.IUniqueKeyNotFound;
|
|
1843
2505
|
invalidUniqueKey?: $requests.wix.common.data.ErrorDetails.IInvalidUniqueKey;
|
|
1844
2506
|
maxSizeViolations?: $requests.wix.common.data.ErrorDetails.IMaxSizeViolations;
|
|
2507
|
+
pageSizeExceedsMaximum?: $requests.wix.common.data.ErrorDetails.IPageSizeExceedsMaximum;
|
|
1845
2508
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1846
2509
|
}
|
|
1847
2510
|
export namespace ErrorDetails {
|
|
@@ -2131,6 +2794,16 @@ declare namespace $requests {
|
|
|
2131
2794
|
fieldType?: string;
|
|
2132
2795
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2133
2796
|
}
|
|
2797
|
+
export interface IPageSizeExceedsMaximum {
|
|
2798
|
+
size?: number;
|
|
2799
|
+
maxPageSize?: number;
|
|
2800
|
+
}
|
|
2801
|
+
export class PageSizeExceedsMaximum implements IPageSizeExceedsMaximum {
|
|
2802
|
+
constructor(data?: IPageSizeExceedsMaximum);
|
|
2803
|
+
size?: number;
|
|
2804
|
+
maxPageSize?: number;
|
|
2805
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2806
|
+
}
|
|
2134
2807
|
}
|
|
2135
2808
|
}
|
|
2136
2809
|
export interface IIdentificationData {
|
|
@@ -2169,6 +2842,7 @@ declare namespace $requests {
|
|
|
2169
2842
|
urlExpirationDate?: Date;
|
|
2170
2843
|
filename?: string;
|
|
2171
2844
|
sizeInBytes?: string;
|
|
2845
|
+
focalPoint?: $requests.wix.common.IFocalPoint;
|
|
2172
2846
|
}
|
|
2173
2847
|
export class Image implements IImage {
|
|
2174
2848
|
constructor(data?: IImage);
|
|
@@ -2180,6 +2854,7 @@ declare namespace $requests {
|
|
|
2180
2854
|
urlExpirationDate?: Date;
|
|
2181
2855
|
filename?: string;
|
|
2182
2856
|
sizeInBytes?: string;
|
|
2857
|
+
focalPoint?: $requests.wix.common.IFocalPoint;
|
|
2183
2858
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2184
2859
|
}
|
|
2185
2860
|
export interface IVideo {
|
|
@@ -2209,6 +2884,8 @@ declare namespace $requests {
|
|
|
2209
2884
|
durationInMilliseconds?: number;
|
|
2210
2885
|
title?: string;
|
|
2211
2886
|
description?: string;
|
|
2887
|
+
height?: number;
|
|
2888
|
+
width?: number;
|
|
2212
2889
|
}
|
|
2213
2890
|
export class VideoV2 implements IVideoV2 {
|
|
2214
2891
|
constructor(data?: IVideoV2);
|
|
@@ -2222,6 +2899,8 @@ declare namespace $requests {
|
|
|
2222
2899
|
durationInMilliseconds?: number;
|
|
2223
2900
|
title?: string;
|
|
2224
2901
|
description?: string;
|
|
2902
|
+
height?: number;
|
|
2903
|
+
width?: number;
|
|
2225
2904
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2226
2905
|
}
|
|
2227
2906
|
export interface IVideoResolution {
|
|
@@ -2288,6 +2967,7 @@ declare namespace $requests {
|
|
|
2288
2967
|
urlExpirationDate?: Date;
|
|
2289
2968
|
sizeInBytes?: string;
|
|
2290
2969
|
filename?: string;
|
|
2970
|
+
thumbnail?: $requests.wix.common.IImage;
|
|
2291
2971
|
}
|
|
2292
2972
|
export class Document implements IDocument {
|
|
2293
2973
|
constructor(data?: IDocument);
|
|
@@ -2296,6 +2976,7 @@ declare namespace $requests {
|
|
|
2296
2976
|
urlExpirationDate?: Date;
|
|
2297
2977
|
sizeInBytes?: string;
|
|
2298
2978
|
filename?: string;
|
|
2979
|
+
thumbnail?: $requests.wix.common.IImage;
|
|
2299
2980
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2300
2981
|
}
|
|
2301
2982
|
export interface IModel3D {
|
|
@@ -2346,6 +3027,20 @@ declare namespace $requests {
|
|
|
2346
3027
|
document?: $requests.wix.common.IDocument;
|
|
2347
3028
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2348
3029
|
}
|
|
3030
|
+
export interface IFocalPoint {
|
|
3031
|
+
x?: number;
|
|
3032
|
+
y?: number;
|
|
3033
|
+
height?: number;
|
|
3034
|
+
width?: number;
|
|
3035
|
+
}
|
|
3036
|
+
export class FocalPoint implements IFocalPoint {
|
|
3037
|
+
constructor(data?: IFocalPoint);
|
|
3038
|
+
x?: number;
|
|
3039
|
+
y?: number;
|
|
3040
|
+
height?: number;
|
|
3041
|
+
width?: number;
|
|
3042
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3043
|
+
}
|
|
2349
3044
|
export interface IMoney {
|
|
2350
3045
|
value?: string;
|
|
2351
3046
|
currency?: string;
|
|
@@ -2378,98 +3073,20 @@ declare namespace $requests {
|
|
|
2378
3073
|
url?: string;
|
|
2379
3074
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2380
3075
|
}
|
|
2381
|
-
export interface
|
|
2382
|
-
|
|
2383
|
-
|
|
3076
|
+
export interface IQuery {
|
|
3077
|
+
filter?: any;
|
|
3078
|
+
sort?: $requests.wix.common.ISorting[];
|
|
3079
|
+
paging?: $requests.wix.common.IPaging;
|
|
3080
|
+
fields?: string[];
|
|
3081
|
+
fieldsets?: string[];
|
|
2384
3082
|
}
|
|
2385
|
-
export class
|
|
2386
|
-
constructor(data?:
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
limit?: number;
|
|
2393
|
-
cursor?: string;
|
|
2394
|
-
}
|
|
2395
|
-
export class CursorPaging implements ICursorPaging {
|
|
2396
|
-
constructor(data?: ICursorPaging);
|
|
2397
|
-
limit?: number;
|
|
2398
|
-
cursor?: string;
|
|
2399
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2400
|
-
}
|
|
2401
|
-
export interface IPagingMetadata {
|
|
2402
|
-
count?: number;
|
|
2403
|
-
offset?: number;
|
|
2404
|
-
total?: number;
|
|
2405
|
-
tooManyToCount?: boolean;
|
|
2406
|
-
hasNext?: boolean;
|
|
2407
|
-
}
|
|
2408
|
-
export class PagingMetadata implements IPagingMetadata {
|
|
2409
|
-
constructor(data?: IPagingMetadata);
|
|
2410
|
-
count?: number;
|
|
2411
|
-
offset?: number;
|
|
2412
|
-
total?: number;
|
|
2413
|
-
tooManyToCount?: boolean;
|
|
2414
|
-
hasNext?: boolean;
|
|
2415
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2416
|
-
}
|
|
2417
|
-
export interface IPagingMetadataV2 {
|
|
2418
|
-
count?: number;
|
|
2419
|
-
offset?: number;
|
|
2420
|
-
total?: number;
|
|
2421
|
-
tooManyToCount?: boolean;
|
|
2422
|
-
cursors?: $requests.wix.common.ICursors;
|
|
2423
|
-
hasNext?: boolean;
|
|
2424
|
-
}
|
|
2425
|
-
export class PagingMetadataV2 implements IPagingMetadataV2 {
|
|
2426
|
-
constructor(data?: IPagingMetadataV2);
|
|
2427
|
-
count?: number;
|
|
2428
|
-
offset?: number;
|
|
2429
|
-
total?: number;
|
|
2430
|
-
tooManyToCount?: boolean;
|
|
2431
|
-
cursors?: $requests.wix.common.ICursors;
|
|
2432
|
-
hasNext?: boolean;
|
|
2433
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2434
|
-
}
|
|
2435
|
-
export interface ICursorPagingMetadata {
|
|
2436
|
-
count?: number;
|
|
2437
|
-
cursors?: $requests.wix.common.ICursors;
|
|
2438
|
-
hasNext?: boolean;
|
|
2439
|
-
total?: number;
|
|
2440
|
-
}
|
|
2441
|
-
export class CursorPagingMetadata implements ICursorPagingMetadata {
|
|
2442
|
-
constructor(data?: ICursorPagingMetadata);
|
|
2443
|
-
count?: number;
|
|
2444
|
-
cursors?: $requests.wix.common.ICursors;
|
|
2445
|
-
hasNext?: boolean;
|
|
2446
|
-
total?: number;
|
|
2447
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2448
|
-
}
|
|
2449
|
-
export interface ICursors {
|
|
2450
|
-
next?: string;
|
|
2451
|
-
prev?: string;
|
|
2452
|
-
}
|
|
2453
|
-
export class Cursors implements ICursors {
|
|
2454
|
-
constructor(data?: ICursors);
|
|
2455
|
-
next?: string;
|
|
2456
|
-
prev?: string;
|
|
2457
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2458
|
-
}
|
|
2459
|
-
export interface IQuery {
|
|
2460
|
-
filter?: any;
|
|
2461
|
-
sort?: $requests.wix.common.ISorting[];
|
|
2462
|
-
paging?: $requests.wix.common.IPaging;
|
|
2463
|
-
fields?: string[];
|
|
2464
|
-
fieldsets?: string[];
|
|
2465
|
-
}
|
|
2466
|
-
export class Query implements IQuery {
|
|
2467
|
-
constructor(data?: IQuery);
|
|
2468
|
-
filter?: any;
|
|
2469
|
-
sort?: $requests.wix.common.ISorting[];
|
|
2470
|
-
paging?: $requests.wix.common.IPaging;
|
|
2471
|
-
fields?: string[];
|
|
2472
|
-
fieldsets?: string[];
|
|
3083
|
+
export class Query implements IQuery {
|
|
3084
|
+
constructor(data?: IQuery);
|
|
3085
|
+
filter?: any;
|
|
3086
|
+
sort?: $requests.wix.common.ISorting[];
|
|
3087
|
+
paging?: $requests.wix.common.IPaging;
|
|
3088
|
+
fields?: string[];
|
|
3089
|
+
fieldsets?: string[];
|
|
2473
3090
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2474
3091
|
}
|
|
2475
3092
|
export interface IQueryV2 {
|
|
@@ -2975,22 +3592,6 @@ declare namespace $requests {
|
|
|
2975
3592
|
}
|
|
2976
3593
|
}
|
|
2977
3594
|
}
|
|
2978
|
-
export interface ISorting {
|
|
2979
|
-
fieldName?: string;
|
|
2980
|
-
order?: $requests.wix.common.SortOrder;
|
|
2981
|
-
selectItemsBy?: { [key: string]: any }[];
|
|
2982
|
-
}
|
|
2983
|
-
export class Sorting implements ISorting {
|
|
2984
|
-
constructor(data?: ISorting);
|
|
2985
|
-
fieldName?: string;
|
|
2986
|
-
order?: $requests.wix.common.SortOrder;
|
|
2987
|
-
selectItemsBy?: { [key: string]: any }[];
|
|
2988
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
2989
|
-
}
|
|
2990
|
-
export enum SortOrder {
|
|
2991
|
-
ASC = "ASC",
|
|
2992
|
-
DESC = "DESC",
|
|
2993
|
-
}
|
|
2994
3595
|
export namespace spi {
|
|
2995
3596
|
export interface ISpiBaseUri {
|
|
2996
3597
|
baseUri?: string;
|
|
@@ -3146,11 +3747,13 @@ declare namespace $requests {
|
|
|
3146
3747
|
export interface IExternalLink {
|
|
3147
3748
|
url?: string;
|
|
3148
3749
|
target?: string;
|
|
3750
|
+
rel?: $requests.wix.common.LinkRel[];
|
|
3149
3751
|
}
|
|
3150
3752
|
export class ExternalLink implements IExternalLink {
|
|
3151
3753
|
constructor(data?: IExternalLink);
|
|
3152
3754
|
url?: string;
|
|
3153
3755
|
target?: string;
|
|
3756
|
+
rel?: $requests.wix.common.LinkRel[];
|
|
3154
3757
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3155
3758
|
}
|
|
3156
3759
|
export interface IPageLink {
|
|
@@ -3482,80 +4085,6 @@ declare namespace $requests {
|
|
|
3482
4085
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3483
4086
|
}
|
|
3484
4087
|
}
|
|
3485
|
-
export namespace spi {
|
|
3486
|
-
export interface IService {
|
|
3487
|
-
spiIdentifier?: string;
|
|
3488
|
-
configMessage?: string;
|
|
3489
|
-
hostService?: string;
|
|
3490
|
-
businessManagerUrl?: string;
|
|
3491
|
-
fqdn?: string;
|
|
3492
|
-
appId?: string;
|
|
3493
|
-
appendixFiles?: $requests.wix.spi.IServiceAppendix[];
|
|
3494
|
-
}
|
|
3495
|
-
export class Service implements IService {
|
|
3496
|
-
constructor(data?: IService);
|
|
3497
|
-
spiIdentifier?: string;
|
|
3498
|
-
configMessage?: string;
|
|
3499
|
-
hostService?: string;
|
|
3500
|
-
businessManagerUrl?: string;
|
|
3501
|
-
fqdn?: string;
|
|
3502
|
-
appId?: string;
|
|
3503
|
-
appendixFiles?: $requests.wix.spi.IServiceAppendix[];
|
|
3504
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3505
|
-
}
|
|
3506
|
-
export interface IServiceAppendix {
|
|
3507
|
-
type?: $requests.wix.spi.ServiceAppendix.Type;
|
|
3508
|
-
path?: string;
|
|
3509
|
-
}
|
|
3510
|
-
export class ServiceAppendix implements IServiceAppendix {
|
|
3511
|
-
constructor(data?: IServiceAppendix);
|
|
3512
|
-
type?: $requests.wix.spi.ServiceAppendix.Type;
|
|
3513
|
-
path?: string;
|
|
3514
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3515
|
-
}
|
|
3516
|
-
export namespace ServiceAppendix {
|
|
3517
|
-
export enum Type {
|
|
3518
|
-
UNKNOWN_APPENDIX_TYPE = "UNKNOWN_APPENDIX_TYPE",
|
|
3519
|
-
AUTO_VELO = "AUTO_VELO",
|
|
3520
|
-
DOCS_CONF = "DOCS_CONF",
|
|
3521
|
-
MULTILINGUAL = "MULTILINGUAL",
|
|
3522
|
-
SEARCH = "SEARCH",
|
|
3523
|
-
}
|
|
3524
|
-
}
|
|
3525
|
-
export interface IError {
|
|
3526
|
-
name?: string;
|
|
3527
|
-
httpCode?: $requests.wix.spi.HttpStatusCode;
|
|
3528
|
-
applicationCode?: string;
|
|
3529
|
-
data?: string;
|
|
3530
|
-
}
|
|
3531
|
-
export class Error implements IError {
|
|
3532
|
-
constructor(data?: IError);
|
|
3533
|
-
name?: string;
|
|
3534
|
-
httpCode?: $requests.wix.spi.HttpStatusCode;
|
|
3535
|
-
applicationCode?: string;
|
|
3536
|
-
data?: string;
|
|
3537
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3538
|
-
}
|
|
3539
|
-
export interface IEvent {
|
|
3540
|
-
methodName?: string;
|
|
3541
|
-
}
|
|
3542
|
-
export class Event implements IEvent {
|
|
3543
|
-
constructor(data?: IEvent);
|
|
3544
|
-
methodName?: string;
|
|
3545
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3546
|
-
}
|
|
3547
|
-
export enum HttpStatusCode {
|
|
3548
|
-
UNKNOWN_ERROR = "UNKNOWN_ERROR",
|
|
3549
|
-
UNAUTHENTICATED = "UNAUTHENTICATED",
|
|
3550
|
-
INVALID_ARGUMENT = "INVALID_ARGUMENT",
|
|
3551
|
-
INTERNAL = "INTERNAL",
|
|
3552
|
-
RESOURCE_EXHAUSTED = "RESOURCE_EXHAUSTED",
|
|
3553
|
-
CANCELED = "CANCELED",
|
|
3554
|
-
NOT_FOUND = "NOT_FOUND",
|
|
3555
|
-
ALREADY_EXISTS = "ALREADY_EXISTS",
|
|
3556
|
-
FAILED_PRECONDITION = "FAILED_PRECONDITION",
|
|
3557
|
-
}
|
|
3558
|
-
}
|
|
3559
4088
|
}
|
|
3560
4089
|
export namespace google {
|
|
3561
4090
|
export namespace protobuf {
|
|
@@ -3853,7 +4382,6 @@ declare namespace $requests {
|
|
|
3853
4382
|
deprecated?: boolean;
|
|
3854
4383
|
mapEntry?: boolean;
|
|
3855
4384
|
uninterpretedOption?: $requests.google.protobuf.IUninterpretedOption[];
|
|
3856
|
-
'.wix.api.actionPayload'?: $requests.wix.api.IActionPayload;
|
|
3857
4385
|
'.wix.api.decompositeOf'?: string;
|
|
3858
4386
|
'.wix.api.decompositionMinimumFields'?: $requests.wix.api.IFieldSet[];
|
|
3859
4387
|
'.wix.api.unwrapArrayValue'?: boolean;
|
|
@@ -3861,6 +4389,7 @@ declare namespace $requests {
|
|
|
3861
4389
|
'.wix.api.unique'?: $requests.wix.api.IUnique[];
|
|
3862
4390
|
'.wix.api.entity'?: $requests.wix.api.IEntity;
|
|
3863
4391
|
'.wix.api.domainEvent'?: $requests.wix.api.IDomainEvent[];
|
|
4392
|
+
'.wix.api.actionPayload'?: $requests.wix.api.IActionPayload;
|
|
3864
4393
|
}
|
|
3865
4394
|
export class MessageOptions implements IMessageOptions {
|
|
3866
4395
|
constructor(data?: IMessageOptions);
|
|
@@ -3869,7 +4398,6 @@ declare namespace $requests {
|
|
|
3869
4398
|
deprecated?: boolean;
|
|
3870
4399
|
mapEntry?: boolean;
|
|
3871
4400
|
uninterpretedOption?: $requests.google.protobuf.IUninterpretedOption[];
|
|
3872
|
-
'.wix.api.actionPayload'?: $requests.wix.api.IActionPayload;
|
|
3873
4401
|
'.wix.api.decompositeOf'?: string;
|
|
3874
4402
|
'.wix.api.decompositionMinimumFields'?: $requests.wix.api.IFieldSet[];
|
|
3875
4403
|
'.wix.api.unwrapArrayValue'?: boolean;
|
|
@@ -3877,6 +4405,7 @@ declare namespace $requests {
|
|
|
3877
4405
|
'.wix.api.unique'?: $requests.wix.api.IUnique[];
|
|
3878
4406
|
'.wix.api.entity'?: $requests.wix.api.IEntity;
|
|
3879
4407
|
'.wix.api.domainEvent'?: $requests.wix.api.IDomainEvent[];
|
|
4408
|
+
'.wix.api.actionPayload'?: $requests.wix.api.IActionPayload;
|
|
3880
4409
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3881
4410
|
}
|
|
3882
4411
|
export interface IFieldOptions {
|
|
@@ -3887,29 +4416,32 @@ declare namespace $requests {
|
|
|
3887
4416
|
deprecated?: boolean;
|
|
3888
4417
|
weak?: boolean;
|
|
3889
4418
|
uninterpretedOption?: $requests.google.protobuf.IUninterpretedOption[];
|
|
3890
|
-
'.wix.api.fieldExposure'?: $requests.wix.api.Exposure;
|
|
3891
|
-
'.wix.api.fieldMaturity'?: $requests.wix.api.Maturity;
|
|
3892
|
-
'.wix.api.pii'?: boolean;
|
|
3893
|
-
'.wix.api.referencedEntity'?: string;
|
|
3894
|
-
'.wix.api.referencedEntityField'?: $requests.wix.api.IReferenceEntityField;
|
|
3895
|
-
'.wix.api.fieldDeprecated'?: $requests.wix.api.IDeprecated;
|
|
3896
|
-
'.wix.api.translatable'?: $requests.wix.api.ITranslatable;
|
|
3897
|
-
'.wix.api.sampleData'?: string;
|
|
3898
|
-
'.wix.api.conditional'?: $requests.wix.api.IConditional;
|
|
3899
|
-
'.wix.api.nullable'?: boolean;
|
|
3900
4419
|
'.wix.api.max'?: number;
|
|
3901
4420
|
'.wix.api.min'?: number;
|
|
3902
4421
|
'.wix.api.maxLength'?: number;
|
|
3903
4422
|
'.wix.api.minLength'?: number;
|
|
4423
|
+
'.wix.api.exactLength'?: number;
|
|
3904
4424
|
'.wix.api.maxSize'?: number;
|
|
3905
4425
|
'.wix.api.minSize'?: number;
|
|
4426
|
+
'.wix.api.exactSize'?: number;
|
|
3906
4427
|
'.wix.api.format'?: $requests.wix.api.Format;
|
|
3907
4428
|
'.wix.api.readOnly'?: boolean;
|
|
3908
4429
|
'.wix.api.immutable'?: boolean;
|
|
4430
|
+
'.wix.api.writeOnly'?: boolean;
|
|
3909
4431
|
'.wix.api.decimalValue'?: $requests.wix.api.IDecimalValueOptions;
|
|
3910
4432
|
'.wix.api.customValidation'?: $requests.wix.api.ICustomValidationError;
|
|
3911
|
-
'.wix.
|
|
4433
|
+
'.wix.api.fieldExposure'?: $requests.wix.api.Exposure;
|
|
4434
|
+
'.wix.api.fieldMaturity'?: $requests.wix.api.Maturity;
|
|
4435
|
+
'.wix.api.pii'?: boolean;
|
|
4436
|
+
'.wix.api.referencedEntity'?: string;
|
|
4437
|
+
'.wix.api.referencedEntityField'?: $requests.wix.api.IReferenceEntityField;
|
|
4438
|
+
'.wix.api.fieldDeprecated'?: $requests.wix.api.IDeprecated;
|
|
4439
|
+
'.wix.api.translatable'?: $requests.wix.api.ITranslatable;
|
|
4440
|
+
'.wix.api.sampleData'?: string;
|
|
4441
|
+
'.wix.api.conditional'?: $requests.wix.api.IConditional;
|
|
4442
|
+
'.wix.api.nullable'?: boolean;
|
|
3912
4443
|
'.wix.spi.baseUri'?: boolean;
|
|
4444
|
+
'.wix.http.inferFieldmaskFrom'?: string;
|
|
3913
4445
|
}
|
|
3914
4446
|
export class FieldOptions implements IFieldOptions {
|
|
3915
4447
|
constructor(data?: IFieldOptions);
|
|
@@ -3920,29 +4452,32 @@ declare namespace $requests {
|
|
|
3920
4452
|
deprecated?: boolean;
|
|
3921
4453
|
weak?: boolean;
|
|
3922
4454
|
uninterpretedOption?: $requests.google.protobuf.IUninterpretedOption[];
|
|
3923
|
-
'.wix.api.fieldExposure'?: $requests.wix.api.Exposure;
|
|
3924
|
-
'.wix.api.fieldMaturity'?: $requests.wix.api.Maturity;
|
|
3925
|
-
'.wix.api.pii'?: boolean;
|
|
3926
|
-
'.wix.api.referencedEntity'?: string;
|
|
3927
|
-
'.wix.api.referencedEntityField'?: $requests.wix.api.IReferenceEntityField;
|
|
3928
|
-
'.wix.api.fieldDeprecated'?: $requests.wix.api.IDeprecated;
|
|
3929
|
-
'.wix.api.translatable'?: $requests.wix.api.ITranslatable;
|
|
3930
|
-
'.wix.api.sampleData'?: string;
|
|
3931
|
-
'.wix.api.conditional'?: $requests.wix.api.IConditional;
|
|
3932
|
-
'.wix.api.nullable'?: boolean;
|
|
3933
4455
|
'.wix.api.max'?: number;
|
|
3934
4456
|
'.wix.api.min'?: number;
|
|
3935
4457
|
'.wix.api.maxLength'?: number;
|
|
3936
4458
|
'.wix.api.minLength'?: number;
|
|
4459
|
+
'.wix.api.exactLength'?: number;
|
|
3937
4460
|
'.wix.api.maxSize'?: number;
|
|
3938
4461
|
'.wix.api.minSize'?: number;
|
|
4462
|
+
'.wix.api.exactSize'?: number;
|
|
3939
4463
|
'.wix.api.format'?: $requests.wix.api.Format;
|
|
3940
4464
|
'.wix.api.readOnly'?: boolean;
|
|
3941
4465
|
'.wix.api.immutable'?: boolean;
|
|
4466
|
+
'.wix.api.writeOnly'?: boolean;
|
|
3942
4467
|
'.wix.api.decimalValue'?: $requests.wix.api.IDecimalValueOptions;
|
|
3943
4468
|
'.wix.api.customValidation'?: $requests.wix.api.ICustomValidationError;
|
|
3944
|
-
'.wix.
|
|
4469
|
+
'.wix.api.fieldExposure'?: $requests.wix.api.Exposure;
|
|
4470
|
+
'.wix.api.fieldMaturity'?: $requests.wix.api.Maturity;
|
|
4471
|
+
'.wix.api.pii'?: boolean;
|
|
4472
|
+
'.wix.api.referencedEntity'?: string;
|
|
4473
|
+
'.wix.api.referencedEntityField'?: $requests.wix.api.IReferenceEntityField;
|
|
4474
|
+
'.wix.api.fieldDeprecated'?: $requests.wix.api.IDeprecated;
|
|
4475
|
+
'.wix.api.translatable'?: $requests.wix.api.ITranslatable;
|
|
4476
|
+
'.wix.api.sampleData'?: string;
|
|
4477
|
+
'.wix.api.conditional'?: $requests.wix.api.IConditional;
|
|
4478
|
+
'.wix.api.nullable'?: boolean;
|
|
3945
4479
|
'.wix.spi.baseUri'?: boolean;
|
|
4480
|
+
'.wix.http.inferFieldmaskFrom'?: string;
|
|
3946
4481
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
3947
4482
|
}
|
|
3948
4483
|
export namespace FieldOptions {
|
|
@@ -4000,11 +4535,11 @@ declare namespace $requests {
|
|
|
4000
4535
|
'.wix.api.serviceExposure'?: $requests.wix.api.Exposure;
|
|
4001
4536
|
'.wix.api.serviceDeprecated'?: $requests.wix.api.IDeprecated;
|
|
4002
4537
|
'.wix.api.appendixFiles'?: $requests.wix.api.IServiceAppendix[];
|
|
4003
|
-
'.wix.api.event'?: $requests.wix.api.ICallback[];
|
|
4004
|
-
'.wix.api.eventDeprecated'?: $requests.wix.api.ICallbackDeprecation[];
|
|
4005
|
-
'.wix.api.serviceEntity'?: $requests.wix.api.IServiceEntity;
|
|
4006
4538
|
'.wix.spi.service'?: $requests.wix.spi.IService;
|
|
4007
4539
|
'.wix.spi.event'?: $requests.wix.spi.IEvent[];
|
|
4540
|
+
'.wix.api.serviceEntity'?: $requests.wix.api.IServiceEntity;
|
|
4541
|
+
'.wix.api.event'?: $requests.wix.api.ICallback[];
|
|
4542
|
+
'.wix.api.eventDeprecated'?: $requests.wix.api.ICallbackDeprecation[];
|
|
4008
4543
|
}
|
|
4009
4544
|
export class ServiceOptions implements IServiceOptions {
|
|
4010
4545
|
constructor(data?: IServiceOptions);
|
|
@@ -4014,26 +4549,30 @@ declare namespace $requests {
|
|
|
4014
4549
|
'.wix.api.serviceExposure'?: $requests.wix.api.Exposure;
|
|
4015
4550
|
'.wix.api.serviceDeprecated'?: $requests.wix.api.IDeprecated;
|
|
4016
4551
|
'.wix.api.appendixFiles'?: $requests.wix.api.IServiceAppendix[];
|
|
4017
|
-
'.wix.api.event'?: $requests.wix.api.ICallback[];
|
|
4018
|
-
'.wix.api.eventDeprecated'?: $requests.wix.api.ICallbackDeprecation[];
|
|
4019
|
-
'.wix.api.serviceEntity'?: $requests.wix.api.IServiceEntity;
|
|
4020
4552
|
'.wix.spi.service'?: $requests.wix.spi.IService;
|
|
4021
4553
|
'.wix.spi.event'?: $requests.wix.spi.IEvent[];
|
|
4554
|
+
'.wix.api.serviceEntity'?: $requests.wix.api.IServiceEntity;
|
|
4555
|
+
'.wix.api.event'?: $requests.wix.api.ICallback[];
|
|
4556
|
+
'.wix.api.eventDeprecated'?: $requests.wix.api.ICallbackDeprecation[];
|
|
4022
4557
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4023
4558
|
}
|
|
4024
4559
|
export interface IMethodOptions {
|
|
4025
4560
|
deprecated?: boolean;
|
|
4026
4561
|
idempotencyLevel?: $requests.google.protobuf.MethodOptions.IdempotencyLevel;
|
|
4027
4562
|
uninterpretedOption?: $requests.google.protobuf.IUninterpretedOption[];
|
|
4563
|
+
'.wix.api.required'?: string[];
|
|
4564
|
+
'.wix.api.writable'?: string[];
|
|
4565
|
+
'.wix.api.error'?: $requests.wix.api.IError[];
|
|
4566
|
+
'.wix.api.customValidationError'?: $requests.wix.api.ICustomValidationError[];
|
|
4567
|
+
'.wix.api.inheritCrudErrors'?: $requests.wix.api.IInheritCrudErrors[];
|
|
4028
4568
|
'.wix.api.exposure'?: $requests.wix.api.Exposure;
|
|
4029
4569
|
'.wix.api.maturity'?: $requests.wix.api.Maturity;
|
|
4030
4570
|
'.wix.api.cacheable'?: $requests.wix.api.ICacheSettings;
|
|
4031
4571
|
'.wix.api.deprecated'?: $requests.wix.api.IDeprecated;
|
|
4032
4572
|
'.wix.api.crud'?: $requests.wix.api.ICrud;
|
|
4033
4573
|
'.wix.api.acceptsLinguist'?: boolean;
|
|
4034
|
-
'.wix.
|
|
4035
|
-
'.wix.
|
|
4036
|
-
'.wix.api.inheritCrudErrors'?: $requests.wix.api.IInheritCrudErrors[];
|
|
4574
|
+
'.wix.spi.error'?: $requests.wix.spi.IError[];
|
|
4575
|
+
'.wix.spi.featureToggle'?: string;
|
|
4037
4576
|
'.wix.api.callback'?: $requests.wix.api.ICallback[];
|
|
4038
4577
|
'.wix.api.emits'?: $requests.wix.api.IEmits[];
|
|
4039
4578
|
'.wix.api.idempotency'?: $requests.wix.api.IIdempotency;
|
|
@@ -4041,28 +4580,28 @@ declare namespace $requests {
|
|
|
4041
4580
|
'.wix.api.additionalPermission'?: $requests.wix.api.IPermissionRule[];
|
|
4042
4581
|
'.wix.api.sla'?: $requests.wix.api.ISla;
|
|
4043
4582
|
'.wix.api.subscription'?: $requests.wix.api.ISubscription;
|
|
4044
|
-
'.wix.api.required'?: string[];
|
|
4045
|
-
'.wix.api.writable'?: string[];
|
|
4046
|
-
'.wix.http.inferFieldmask'?: $requests.wix.http.IInferFieldmask;
|
|
4047
4583
|
'.google.api.http'?: $requests.google.api.IHttpRule;
|
|
4584
|
+
'.wix.http.inferFieldmask'?: $requests.wix.http.IInferFieldmask;
|
|
4048
4585
|
'.wix.sdk.signature'?: $requests.wix.sdk.ISignature[];
|
|
4049
|
-
'.wix.spi.error'?: $requests.wix.spi.IError[];
|
|
4050
|
-
'.wix.spi.featureToggle'?: string;
|
|
4051
4586
|
}
|
|
4052
4587
|
export class MethodOptions implements IMethodOptions {
|
|
4053
4588
|
constructor(data?: IMethodOptions);
|
|
4054
4589
|
deprecated?: boolean;
|
|
4055
4590
|
idempotencyLevel?: $requests.google.protobuf.MethodOptions.IdempotencyLevel;
|
|
4056
4591
|
uninterpretedOption?: $requests.google.protobuf.IUninterpretedOption[];
|
|
4592
|
+
'.wix.api.required'?: string[];
|
|
4593
|
+
'.wix.api.writable'?: string[];
|
|
4594
|
+
'.wix.api.error'?: $requests.wix.api.IError[];
|
|
4595
|
+
'.wix.api.customValidationError'?: $requests.wix.api.ICustomValidationError[];
|
|
4596
|
+
'.wix.api.inheritCrudErrors'?: $requests.wix.api.IInheritCrudErrors[];
|
|
4057
4597
|
'.wix.api.exposure'?: $requests.wix.api.Exposure;
|
|
4058
4598
|
'.wix.api.maturity'?: $requests.wix.api.Maturity;
|
|
4059
4599
|
'.wix.api.cacheable'?: $requests.wix.api.ICacheSettings;
|
|
4060
4600
|
'.wix.api.deprecated'?: $requests.wix.api.IDeprecated;
|
|
4061
4601
|
'.wix.api.crud'?: $requests.wix.api.ICrud;
|
|
4062
4602
|
'.wix.api.acceptsLinguist'?: boolean;
|
|
4063
|
-
'.wix.
|
|
4064
|
-
'.wix.
|
|
4065
|
-
'.wix.api.inheritCrudErrors'?: $requests.wix.api.IInheritCrudErrors[];
|
|
4603
|
+
'.wix.spi.error'?: $requests.wix.spi.IError[];
|
|
4604
|
+
'.wix.spi.featureToggle'?: string;
|
|
4066
4605
|
'.wix.api.callback'?: $requests.wix.api.ICallback[];
|
|
4067
4606
|
'.wix.api.emits'?: $requests.wix.api.IEmits[];
|
|
4068
4607
|
'.wix.api.idempotency'?: $requests.wix.api.IIdempotency;
|
|
@@ -4070,13 +4609,9 @@ declare namespace $requests {
|
|
|
4070
4609
|
'.wix.api.additionalPermission'?: $requests.wix.api.IPermissionRule[];
|
|
4071
4610
|
'.wix.api.sla'?: $requests.wix.api.ISla;
|
|
4072
4611
|
'.wix.api.subscription'?: $requests.wix.api.ISubscription;
|
|
4073
|
-
'.wix.api.required'?: string[];
|
|
4074
|
-
'.wix.api.writable'?: string[];
|
|
4075
|
-
'.wix.http.inferFieldmask'?: $requests.wix.http.IInferFieldmask;
|
|
4076
4612
|
'.google.api.http'?: $requests.google.api.IHttpRule;
|
|
4613
|
+
'.wix.http.inferFieldmask'?: $requests.wix.http.IInferFieldmask;
|
|
4077
4614
|
'.wix.sdk.signature'?: $requests.wix.sdk.ISignature[];
|
|
4078
|
-
'.wix.spi.error'?: $requests.wix.spi.IError[];
|
|
4079
|
-
'.wix.spi.featureToggle'?: string;
|
|
4080
4615
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4081
4616
|
}
|
|
4082
4617
|
export namespace MethodOptions {
|
|
@@ -4218,16 +4753,483 @@ declare namespace $requests {
|
|
|
4218
4753
|
export {$requests as requests};
|
|
4219
4754
|
|
|
4220
4755
|
declare namespace $responses {
|
|
4756
|
+
export namespace com {
|
|
4757
|
+
export namespace wixpress {
|
|
4758
|
+
export namespace items_selection {
|
|
4759
|
+
export namespace spi {
|
|
4760
|
+
export namespace v1 {
|
|
4761
|
+
export interface IAdditionalData {
|
|
4762
|
+
ecomCatalogData?: $responses.com.wixpress.items_selection.spi.v1.IEcomCatalogData;
|
|
4763
|
+
inboxData?: $responses.com.wixpress.items_selection.spi.v1.IInboxData;
|
|
4764
|
+
}
|
|
4765
|
+
export class AdditionalData implements IAdditionalData {
|
|
4766
|
+
constructor(data?: IAdditionalData);
|
|
4767
|
+
ecomCatalogData?: $responses.com.wixpress.items_selection.spi.v1.IEcomCatalogData;
|
|
4768
|
+
inboxData?: $responses.com.wixpress.items_selection.spi.v1.IInboxData;
|
|
4769
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4770
|
+
}
|
|
4771
|
+
export interface IEcomCatalogData {
|
|
4772
|
+
appId: string;
|
|
4773
|
+
catalogItemId: string;
|
|
4774
|
+
price: string;
|
|
4775
|
+
options?: { [key: string]: any };
|
|
4776
|
+
}
|
|
4777
|
+
export class EcomCatalogData implements IEcomCatalogData {
|
|
4778
|
+
constructor(data?: IEcomCatalogData);
|
|
4779
|
+
appId: string;
|
|
4780
|
+
catalogItemId: string;
|
|
4781
|
+
price: string;
|
|
4782
|
+
options?: { [key: string]: any };
|
|
4783
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4784
|
+
}
|
|
4785
|
+
export interface IInboxData {
|
|
4786
|
+
actions: $responses.com.wixpress.items_selection.spi.v1.IAction[];
|
|
4787
|
+
}
|
|
4788
|
+
export class InboxData implements IInboxData {
|
|
4789
|
+
constructor(data?: IInboxData);
|
|
4790
|
+
actions: $responses.com.wixpress.items_selection.spi.v1.IAction[];
|
|
4791
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4792
|
+
}
|
|
4793
|
+
export interface IAction {
|
|
4794
|
+
title: string;
|
|
4795
|
+
url: string;
|
|
4796
|
+
}
|
|
4797
|
+
export class Action implements IAction {
|
|
4798
|
+
constructor(data?: IAction);
|
|
4799
|
+
title: string;
|
|
4800
|
+
url: string;
|
|
4801
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4802
|
+
}
|
|
4803
|
+
export interface IImage {
|
|
4804
|
+
url?: string;
|
|
4805
|
+
}
|
|
4806
|
+
export class Image implements IImage {
|
|
4807
|
+
constructor(data?: IImage);
|
|
4808
|
+
url?: string;
|
|
4809
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4810
|
+
}
|
|
4811
|
+
export interface IItemsSelectionProviderConfig {
|
|
4812
|
+
deploymentUri: string;
|
|
4813
|
+
key: string;
|
|
4814
|
+
searchParams?: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.ISearchParams;
|
|
4815
|
+
contentData?: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IContentData;
|
|
4816
|
+
additionalStepInfo?: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IAdditionalStepInfo;
|
|
4817
|
+
supportedTags: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.Tag[];
|
|
4818
|
+
createNewItemInfo?: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.ICreateNewItemInfo;
|
|
4819
|
+
itemThumbnail?: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IItemThumbnail;
|
|
4820
|
+
}
|
|
4821
|
+
export class ItemsSelectionProviderConfig implements IItemsSelectionProviderConfig {
|
|
4822
|
+
constructor(data?: IItemsSelectionProviderConfig);
|
|
4823
|
+
deploymentUri: string;
|
|
4824
|
+
key: string;
|
|
4825
|
+
searchParams?: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.ISearchParams;
|
|
4826
|
+
contentData?: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IContentData;
|
|
4827
|
+
additionalStepInfo?: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IAdditionalStepInfo;
|
|
4828
|
+
supportedTags: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.Tag[];
|
|
4829
|
+
createNewItemInfo?: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.ICreateNewItemInfo;
|
|
4830
|
+
itemThumbnail?: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IItemThumbnail;
|
|
4831
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4832
|
+
}
|
|
4833
|
+
export namespace ItemsSelectionProviderConfig {
|
|
4834
|
+
export enum Tag {
|
|
4835
|
+
UNKNOWN_TAG = "UNKNOWN_TAG",
|
|
4836
|
+
EMBEDDABLE = "EMBEDDABLE",
|
|
4837
|
+
ECOM_EDIT_ORDER = "ECOM_EDIT_ORDER",
|
|
4838
|
+
ECOM_CREATE_ORDER = "ECOM_CREATE_ORDER",
|
|
4839
|
+
INBOX = "INBOX",
|
|
4840
|
+
ECOM_CREATE_PAY_LINK = "ECOM_CREATE_PAY_LINK",
|
|
4841
|
+
ECOM_DELIVERY_PROFILES = "ECOM_DELIVERY_PROFILES",
|
|
4842
|
+
ADD_TO_CATEGORY = "ADD_TO_CATEGORY",
|
|
4843
|
+
}
|
|
4844
|
+
export interface IAdditionalStepInfo {
|
|
4845
|
+
widgetId: string;
|
|
4846
|
+
mobileComponentId?: string;
|
|
4847
|
+
title: string;
|
|
4848
|
+
subtitle?: string;
|
|
4849
|
+
hideItemNote?: boolean;
|
|
4850
|
+
}
|
|
4851
|
+
export class AdditionalStepInfo implements IAdditionalStepInfo {
|
|
4852
|
+
constructor(data?: IAdditionalStepInfo);
|
|
4853
|
+
widgetId: string;
|
|
4854
|
+
mobileComponentId?: string;
|
|
4855
|
+
title: string;
|
|
4856
|
+
subtitle?: string;
|
|
4857
|
+
hideItemNote?: boolean;
|
|
4858
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4859
|
+
}
|
|
4860
|
+
export interface ICreateNewItemInfo {
|
|
4861
|
+
widgetId: string;
|
|
4862
|
+
mobileComponentId?: string;
|
|
4863
|
+
buttonText?: string;
|
|
4864
|
+
}
|
|
4865
|
+
export class CreateNewItemInfo implements ICreateNewItemInfo {
|
|
4866
|
+
constructor(data?: ICreateNewItemInfo);
|
|
4867
|
+
widgetId: string;
|
|
4868
|
+
mobileComponentId?: string;
|
|
4869
|
+
buttonText?: string;
|
|
4870
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4871
|
+
}
|
|
4872
|
+
export interface IContentData {
|
|
4873
|
+
iconKey?: string;
|
|
4874
|
+
providerName: string;
|
|
4875
|
+
title: string;
|
|
4876
|
+
button: string;
|
|
4877
|
+
subtitle?: string;
|
|
4878
|
+
learnMore?: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.ILearnMore;
|
|
4879
|
+
}
|
|
4880
|
+
export class ContentData implements IContentData {
|
|
4881
|
+
constructor(data?: IContentData);
|
|
4882
|
+
iconKey?: string;
|
|
4883
|
+
providerName: string;
|
|
4884
|
+
title: string;
|
|
4885
|
+
button: string;
|
|
4886
|
+
subtitle?: string;
|
|
4887
|
+
learnMore?: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.ILearnMore;
|
|
4888
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4889
|
+
}
|
|
4890
|
+
export interface IItemThumbnail {
|
|
4891
|
+
type: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.ThumbnailType;
|
|
4892
|
+
hidden?: boolean;
|
|
4893
|
+
imageConfig?: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IImageConfig;
|
|
4894
|
+
avatarConfig?: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IAvatarConfig;
|
|
4895
|
+
}
|
|
4896
|
+
export class ItemThumbnail implements IItemThumbnail {
|
|
4897
|
+
constructor(data?: IItemThumbnail);
|
|
4898
|
+
type: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.ThumbnailType;
|
|
4899
|
+
hidden?: boolean;
|
|
4900
|
+
imageConfig?: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IImageConfig;
|
|
4901
|
+
avatarConfig?: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IAvatarConfig;
|
|
4902
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4903
|
+
}
|
|
4904
|
+
export enum ThumbnailType {
|
|
4905
|
+
UNKNOWN_THUMBNAIL_TYPE = "UNKNOWN_THUMBNAIL_TYPE",
|
|
4906
|
+
IMAGE = "IMAGE",
|
|
4907
|
+
AVATAR = "AVATAR",
|
|
4908
|
+
}
|
|
4909
|
+
export interface IImageConfig {
|
|
4910
|
+
shape: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.ImageConfig.ImageShape;
|
|
4911
|
+
}
|
|
4912
|
+
export class ImageConfig implements IImageConfig {
|
|
4913
|
+
constructor(data?: IImageConfig);
|
|
4914
|
+
shape: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.ImageConfig.ImageShape;
|
|
4915
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4916
|
+
}
|
|
4917
|
+
export namespace ImageConfig {
|
|
4918
|
+
export enum ImageShape {
|
|
4919
|
+
UNKNOWN_SHAPE = "UNKNOWN_SHAPE",
|
|
4920
|
+
CIRCLE = "CIRCLE",
|
|
4921
|
+
SQUARE = "SQUARE",
|
|
4922
|
+
RECTANGLE = "RECTANGLE",
|
|
4923
|
+
}
|
|
4924
|
+
}
|
|
4925
|
+
export interface IAvatarConfig {
|
|
4926
|
+
shape: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.AvatarConfig.AvatarShape;
|
|
4927
|
+
}
|
|
4928
|
+
export class AvatarConfig implements IAvatarConfig {
|
|
4929
|
+
constructor(data?: IAvatarConfig);
|
|
4930
|
+
shape: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.AvatarConfig.AvatarShape;
|
|
4931
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4932
|
+
}
|
|
4933
|
+
export namespace AvatarConfig {
|
|
4934
|
+
export enum AvatarShape {
|
|
4935
|
+
UNKNOWN_SHAPE = "UNKNOWN_SHAPE",
|
|
4936
|
+
CIRCLE = "CIRCLE",
|
|
4937
|
+
SQUARE = "SQUARE",
|
|
4938
|
+
}
|
|
4939
|
+
}
|
|
4940
|
+
export interface ISearchParams {
|
|
4941
|
+
fields: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.ISearchField[];
|
|
4942
|
+
filters: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IFilterInfo[];
|
|
4943
|
+
}
|
|
4944
|
+
export class SearchParams implements ISearchParams {
|
|
4945
|
+
constructor(data?: ISearchParams);
|
|
4946
|
+
fields: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.ISearchField[];
|
|
4947
|
+
filters: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IFilterInfo[];
|
|
4948
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4949
|
+
}
|
|
4950
|
+
export interface ISearchField {
|
|
4951
|
+
key: string;
|
|
4952
|
+
description: string;
|
|
4953
|
+
}
|
|
4954
|
+
export class SearchField implements ISearchField {
|
|
4955
|
+
constructor(data?: ISearchField);
|
|
4956
|
+
key: string;
|
|
4957
|
+
description: string;
|
|
4958
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4959
|
+
}
|
|
4960
|
+
export interface IFilterInfo {
|
|
4961
|
+
key: string;
|
|
4962
|
+
tag: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.Tag;
|
|
4963
|
+
selectionType: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.FilterSelectionType;
|
|
4964
|
+
optionsType: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.FilterOptionsType;
|
|
4965
|
+
staticOptions?: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IStaticFilterOptions;
|
|
4966
|
+
providerOptions?: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IProviderFilterOptions;
|
|
4967
|
+
placeholder?: string;
|
|
4968
|
+
}
|
|
4969
|
+
export class FilterInfo implements IFilterInfo {
|
|
4970
|
+
constructor(data?: IFilterInfo);
|
|
4971
|
+
key: string;
|
|
4972
|
+
tag: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.Tag;
|
|
4973
|
+
selectionType: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.FilterSelectionType;
|
|
4974
|
+
optionsType: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.FilterOptionsType;
|
|
4975
|
+
staticOptions?: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IStaticFilterOptions;
|
|
4976
|
+
providerOptions?: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IProviderFilterOptions;
|
|
4977
|
+
placeholder?: string;
|
|
4978
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4979
|
+
}
|
|
4980
|
+
export interface IProviderFilterOptions {
|
|
4981
|
+
key: string;
|
|
4982
|
+
}
|
|
4983
|
+
export class ProviderFilterOptions implements IProviderFilterOptions {
|
|
4984
|
+
constructor(data?: IProviderFilterOptions);
|
|
4985
|
+
key: string;
|
|
4986
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4987
|
+
}
|
|
4988
|
+
export interface IStaticFilterOptions {
|
|
4989
|
+
data: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IStaticFilterOption[];
|
|
4990
|
+
}
|
|
4991
|
+
export class StaticFilterOptions implements IStaticFilterOptions {
|
|
4992
|
+
constructor(data?: IStaticFilterOptions);
|
|
4993
|
+
data: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.IStaticFilterOption[];
|
|
4994
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4995
|
+
}
|
|
4996
|
+
export interface IStaticFilterOption {
|
|
4997
|
+
label: string;
|
|
4998
|
+
value: string;
|
|
4999
|
+
}
|
|
5000
|
+
export class StaticFilterOption implements IStaticFilterOption {
|
|
5001
|
+
constructor(data?: IStaticFilterOption);
|
|
5002
|
+
label: string;
|
|
5003
|
+
value: string;
|
|
5004
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5005
|
+
}
|
|
5006
|
+
export interface ILearnMore {
|
|
5007
|
+
url: string;
|
|
5008
|
+
label?: string;
|
|
5009
|
+
}
|
|
5010
|
+
export class LearnMore implements ILearnMore {
|
|
5011
|
+
constructor(data?: ILearnMore);
|
|
5012
|
+
url: string;
|
|
5013
|
+
label?: string;
|
|
5014
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5015
|
+
}
|
|
5016
|
+
export enum FilterSelectionType {
|
|
5017
|
+
UNKNOWN_SELECTION = "UNKNOWN_SELECTION",
|
|
5018
|
+
SINGLE_SELECTION = "SINGLE_SELECTION",
|
|
5019
|
+
MULTIPLE_SELECTION = "MULTIPLE_SELECTION",
|
|
5020
|
+
}
|
|
5021
|
+
export enum FilterOptionsType {
|
|
5022
|
+
UNKNOWN_FILTER_OPTIONS = "UNKNOWN_FILTER_OPTIONS",
|
|
5023
|
+
STATIC = "STATIC",
|
|
5024
|
+
PROVIDER = "PROVIDER",
|
|
5025
|
+
}
|
|
5026
|
+
}
|
|
5027
|
+
export interface IFailureData {
|
|
5028
|
+
error?: $responses.com.wixpress.items_selection.spi.v1.IQueryError;
|
|
5029
|
+
}
|
|
5030
|
+
export class FailureData implements IFailureData {
|
|
5031
|
+
constructor(data?: IFailureData);
|
|
5032
|
+
error?: $responses.com.wixpress.items_selection.spi.v1.IQueryError;
|
|
5033
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5034
|
+
}
|
|
5035
|
+
export interface IQueryError {
|
|
5036
|
+
code: $responses.com.wixpress.items_selection.spi.v1.QueryError.Code;
|
|
5037
|
+
message: string;
|
|
5038
|
+
data?: { [key: string]: any };
|
|
5039
|
+
}
|
|
5040
|
+
export class QueryError implements IQueryError {
|
|
5041
|
+
constructor(data?: IQueryError);
|
|
5042
|
+
code: $responses.com.wixpress.items_selection.spi.v1.QueryError.Code;
|
|
5043
|
+
message: string;
|
|
5044
|
+
data?: { [key: string]: any };
|
|
5045
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5046
|
+
}
|
|
5047
|
+
export namespace QueryError {
|
|
5048
|
+
export enum Code {
|
|
5049
|
+
NONE = "NONE",
|
|
5050
|
+
SYSTEM_ERROR = "SYSTEM_ERROR",
|
|
5051
|
+
OTHER = "OTHER",
|
|
5052
|
+
}
|
|
5053
|
+
}
|
|
5054
|
+
export interface IQueryItemsRequest {
|
|
5055
|
+
query?: $responses.com.wixpress.items_selection.spi.v1.IQuery;
|
|
5056
|
+
tag: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.Tag;
|
|
5057
|
+
}
|
|
5058
|
+
export class QueryItemsRequest implements IQueryItemsRequest {
|
|
5059
|
+
constructor(data?: IQueryItemsRequest);
|
|
5060
|
+
query?: $responses.com.wixpress.items_selection.spi.v1.IQuery;
|
|
5061
|
+
tag: $responses.com.wixpress.items_selection.spi.v1.ItemsSelectionProviderConfig.Tag;
|
|
5062
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5063
|
+
}
|
|
5064
|
+
export interface IQueryItemsResponse {
|
|
5065
|
+
items: $responses.com.wixpress.items_selection.spi.v1.IItem[];
|
|
5066
|
+
pagingMetadata?: $responses.wix.common.IPagingMetadataV2;
|
|
5067
|
+
}
|
|
5068
|
+
export class QueryItemsResponse implements IQueryItemsResponse {
|
|
5069
|
+
constructor(data?: IQueryItemsResponse);
|
|
5070
|
+
items: $responses.com.wixpress.items_selection.spi.v1.IItem[];
|
|
5071
|
+
pagingMetadata?: $responses.wix.common.IPagingMetadataV2;
|
|
5072
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5073
|
+
}
|
|
5074
|
+
export interface IQuery {
|
|
5075
|
+
filter?: { [key: string]: any };
|
|
5076
|
+
sort: $responses.wix.common.ISorting[];
|
|
5077
|
+
search?: string;
|
|
5078
|
+
paging?: $responses.wix.common.IPaging;
|
|
5079
|
+
cursorPaging?: $responses.wix.common.ICursorPaging;
|
|
5080
|
+
}
|
|
5081
|
+
export class Query implements IQuery {
|
|
5082
|
+
constructor(data?: IQuery);
|
|
5083
|
+
filter?: { [key: string]: any };
|
|
5084
|
+
sort: $responses.wix.common.ISorting[];
|
|
5085
|
+
search?: string;
|
|
5086
|
+
paging?: $responses.wix.common.IPaging;
|
|
5087
|
+
cursorPaging?: $responses.wix.common.ICursorPaging;
|
|
5088
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5089
|
+
}
|
|
5090
|
+
export interface IItem {
|
|
5091
|
+
id: string;
|
|
5092
|
+
name?: string;
|
|
5093
|
+
description?: string;
|
|
5094
|
+
image?: $responses.com.wixpress.items_selection.spi.v1.IImage;
|
|
5095
|
+
note?: string;
|
|
5096
|
+
hasAdditionalStep?: boolean;
|
|
5097
|
+
additionalData?: $responses.com.wixpress.items_selection.spi.v1.IAdditionalData;
|
|
5098
|
+
additionalFields?: { [key: string]: any };
|
|
5099
|
+
}
|
|
5100
|
+
export class Item implements IItem {
|
|
5101
|
+
constructor(data?: IItem);
|
|
5102
|
+
id: string;
|
|
5103
|
+
name?: string;
|
|
5104
|
+
description?: string;
|
|
5105
|
+
image?: $responses.com.wixpress.items_selection.spi.v1.IImage;
|
|
5106
|
+
note?: string;
|
|
5107
|
+
hasAdditionalStep?: boolean;
|
|
5108
|
+
additionalData?: $responses.com.wixpress.items_selection.spi.v1.IAdditionalData;
|
|
5109
|
+
additionalFields?: { [key: string]: any };
|
|
5110
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5111
|
+
}
|
|
5112
|
+
}
|
|
5113
|
+
}
|
|
5114
|
+
}
|
|
5115
|
+
}
|
|
5116
|
+
}
|
|
4221
5117
|
export namespace wix {
|
|
4222
5118
|
export namespace api {
|
|
4223
|
-
|
|
4224
|
-
|
|
5119
|
+
/**
|
|
5120
|
+
* Decimal value validation rules.
|
|
5121
|
+
* Based on java.math.BigDecimal, implies (wix.api.format) = DECIMAL_VALUE
|
|
5122
|
+
*/
|
|
5123
|
+
export interface IDecimalValueOptions {
|
|
5124
|
+
lte: string;
|
|
5125
|
+
gte: string;
|
|
5126
|
+
lt: string;
|
|
5127
|
+
gt: string;
|
|
5128
|
+
maxScale: number;
|
|
4225
5129
|
}
|
|
4226
|
-
export class
|
|
4227
|
-
constructor(data?:
|
|
4228
|
-
|
|
5130
|
+
export class DecimalValueOptions implements IDecimalValueOptions {
|
|
5131
|
+
constructor(data?: IDecimalValueOptions);
|
|
5132
|
+
lte: string;
|
|
5133
|
+
gte: string;
|
|
5134
|
+
lt: string;
|
|
5135
|
+
gt: string;
|
|
5136
|
+
maxScale: number;
|
|
5137
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5138
|
+
}
|
|
5139
|
+
export interface IAlignedWithEnum {
|
|
5140
|
+
field: string;
|
|
5141
|
+
suffix: string;
|
|
5142
|
+
}
|
|
5143
|
+
export class AlignedWithEnum implements IAlignedWithEnum {
|
|
5144
|
+
constructor(data?: IAlignedWithEnum);
|
|
5145
|
+
field: string;
|
|
5146
|
+
suffix: string;
|
|
5147
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5148
|
+
}
|
|
5149
|
+
export enum Format {
|
|
5150
|
+
EMAIL = "EMAIL",
|
|
5151
|
+
HOSTNAME = "HOSTNAME",
|
|
5152
|
+
IPV4 = "IPV4",
|
|
5153
|
+
IPV6 = "IPV6",
|
|
5154
|
+
URI = "URI",
|
|
5155
|
+
WEB_URL = "WEB_URL",
|
|
5156
|
+
PHONE = "PHONE",
|
|
5157
|
+
CREDIT_CARD = "CREDIT_CARD",
|
|
5158
|
+
GUID = "GUID",
|
|
5159
|
+
COUNTRY = "COUNTRY",
|
|
5160
|
+
LANGUAGE = "LANGUAGE",
|
|
5161
|
+
DECIMAL_VALUE = "DECIMAL_VALUE",
|
|
5162
|
+
CURRENCY = "CURRENCY",
|
|
5163
|
+
LANGUAGE_TAG = "LANGUAGE_TAG",
|
|
5164
|
+
COLOR_HEX = "COLOR_HEX",
|
|
5165
|
+
LOCAL_DATE = "LOCAL_DATE",
|
|
5166
|
+
LOCAL_TIME = "LOCAL_TIME",
|
|
5167
|
+
LOCAL_DATE_TIME = "LOCAL_DATE_TIME",
|
|
5168
|
+
URL_SLUG = "URL_SLUG",
|
|
5169
|
+
SYSTEM_SLUG = "SYSTEM_SLUG",
|
|
5170
|
+
SECURE_WEB_URL = "SECURE_WEB_URL",
|
|
5171
|
+
SUBDIVISION = "SUBDIVISION",
|
|
5172
|
+
}
|
|
5173
|
+
/**
|
|
5174
|
+
* ApplicationError: named Error for backwards compatibility
|
|
5175
|
+
*/
|
|
5176
|
+
export interface IError {
|
|
5177
|
+
httpCode: $responses.wix.api.StatusCodes.HttpStatusCode;
|
|
5178
|
+
applicationCode: string;
|
|
5179
|
+
data: string;
|
|
5180
|
+
}
|
|
5181
|
+
export class Error implements IError {
|
|
5182
|
+
constructor(data?: IError);
|
|
5183
|
+
httpCode: $responses.wix.api.StatusCodes.HttpStatusCode;
|
|
5184
|
+
applicationCode: string;
|
|
5185
|
+
data: string;
|
|
5186
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5187
|
+
}
|
|
5188
|
+
/**
|
|
5189
|
+
* CustomValidationError: field level validation, only declare when you have specific validation in your service that is not coming from infra
|
|
5190
|
+
*/
|
|
5191
|
+
export interface ICustomValidationError {
|
|
5192
|
+
ruleName: string;
|
|
5193
|
+
data: string;
|
|
5194
|
+
}
|
|
5195
|
+
export class CustomValidationError implements ICustomValidationError {
|
|
5196
|
+
constructor(data?: ICustomValidationError);
|
|
5197
|
+
ruleName: string;
|
|
5198
|
+
data: string;
|
|
5199
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5200
|
+
}
|
|
5201
|
+
/**
|
|
5202
|
+
* InheritCrudErrors: does this method throw standard crud errors?
|
|
5203
|
+
*/
|
|
5204
|
+
export interface IInheritCrudErrors {
|
|
5205
|
+
method: $responses.wix.api.Crud.Method;
|
|
5206
|
+
}
|
|
5207
|
+
export class InheritCrudErrors implements IInheritCrudErrors {
|
|
5208
|
+
constructor(data?: IInheritCrudErrors);
|
|
5209
|
+
method: $responses.wix.api.Crud.Method;
|
|
4229
5210
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4230
5211
|
}
|
|
5212
|
+
export interface IStatusCodes {
|
|
5213
|
+
}
|
|
5214
|
+
export class StatusCodes implements IStatusCodes {
|
|
5215
|
+
constructor(data?: IStatusCodes);
|
|
5216
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5217
|
+
}
|
|
5218
|
+
export namespace StatusCodes {
|
|
5219
|
+
export enum HttpStatusCode {
|
|
5220
|
+
OK = "OK",
|
|
5221
|
+
UNAUTHENTICATED = "UNAUTHENTICATED",
|
|
5222
|
+
PERMISSION_DENIED = "PERMISSION_DENIED",
|
|
5223
|
+
INVALID_ARGUMENT = "INVALID_ARGUMENT",
|
|
5224
|
+
NOT_FOUND = "NOT_FOUND",
|
|
5225
|
+
INTERNAL = "INTERNAL",
|
|
5226
|
+
UNAVAILABLE = "UNAVAILABLE",
|
|
5227
|
+
RESOURCE_EXHAUSTED = "RESOURCE_EXHAUSTED",
|
|
5228
|
+
CANCELED = "CANCELED",
|
|
5229
|
+
ALREADY_EXISTS = "ALREADY_EXISTS",
|
|
5230
|
+
FAILED_PRECONDITION = "FAILED_PRECONDITION",
|
|
5231
|
+
}
|
|
5232
|
+
}
|
|
4231
5233
|
export interface IReferenceEntityField {
|
|
4232
5234
|
path: string;
|
|
4233
5235
|
}
|
|
@@ -4295,6 +5297,9 @@ declare namespace $responses {
|
|
|
4295
5297
|
countOptions?: $responses.wix.api.ICountOptions;
|
|
4296
5298
|
searchRelatedOptions?: $responses.wix.api.ISearchRelatedOptions;
|
|
4297
5299
|
updateExtendedFieldsOptions?: $responses.wix.api.IUpdateExtendedFieldsOptions;
|
|
5300
|
+
customActionOptions?: $responses.wix.api.ICustomActionOptions;
|
|
5301
|
+
bulkUpdateTagsOptions?: $responses.wix.api.IBulkUpdateTagsMethodOptions;
|
|
5302
|
+
bulkUpdateTagsByFilterOptions?: $responses.wix.api.IBulkUpdateTagsByFilterMethodOptions;
|
|
4298
5303
|
}
|
|
4299
5304
|
export class Crud implements ICrud {
|
|
4300
5305
|
constructor(data?: ICrud);
|
|
@@ -4320,6 +5325,9 @@ declare namespace $responses {
|
|
|
4320
5325
|
countOptions?: $responses.wix.api.ICountOptions;
|
|
4321
5326
|
searchRelatedOptions?: $responses.wix.api.ISearchRelatedOptions;
|
|
4322
5327
|
updateExtendedFieldsOptions?: $responses.wix.api.IUpdateExtendedFieldsOptions;
|
|
5328
|
+
customActionOptions?: $responses.wix.api.ICustomActionOptions;
|
|
5329
|
+
bulkUpdateTagsOptions?: $responses.wix.api.IBulkUpdateTagsMethodOptions;
|
|
5330
|
+
bulkUpdateTagsByFilterOptions?: $responses.wix.api.IBulkUpdateTagsByFilterMethodOptions;
|
|
4323
5331
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4324
5332
|
}
|
|
4325
5333
|
export namespace Crud {
|
|
@@ -4348,16 +5356,21 @@ declare namespace $responses {
|
|
|
4348
5356
|
UPDATE_EXTENDED_FIELDS = "UPDATE_EXTENDED_FIELDS",
|
|
4349
5357
|
BULK_UPDATE_TAGS = "BULK_UPDATE_TAGS",
|
|
4350
5358
|
BULK_UPDATE_TAGS_BY_FILTER = "BULK_UPDATE_TAGS_BY_FILTER",
|
|
5359
|
+
CUSTOM_ACTION = "CUSTOM_ACTION",
|
|
4351
5360
|
}
|
|
4352
5361
|
}
|
|
4353
5362
|
export interface IPaging {
|
|
4354
5363
|
type: $responses.wix.api.Paging.Type;
|
|
4355
5364
|
pagingMetadataField: string;
|
|
5365
|
+
cursorPagingMetadataField: string;
|
|
5366
|
+
offsetPagingMetadataField: string;
|
|
4356
5367
|
}
|
|
4357
5368
|
export class Paging implements IPaging {
|
|
4358
5369
|
constructor(data?: IPaging);
|
|
4359
5370
|
type: $responses.wix.api.Paging.Type;
|
|
4360
5371
|
pagingMetadataField: string;
|
|
5372
|
+
cursorPagingMetadataField: string;
|
|
5373
|
+
offsetPagingMetadataField: string;
|
|
4361
5374
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4362
5375
|
}
|
|
4363
5376
|
export namespace Paging {
|
|
@@ -4365,8 +5378,33 @@ declare namespace $responses {
|
|
|
4365
5378
|
UNKNOWN_TYPE = "UNKNOWN_TYPE",
|
|
4366
5379
|
OFFSET = "OFFSET",
|
|
4367
5380
|
CURSOR = "CURSOR",
|
|
5381
|
+
BOTH = "BOTH",
|
|
4368
5382
|
}
|
|
4369
5383
|
}
|
|
5384
|
+
export interface ICustomActionOptions {
|
|
5385
|
+
readOperation: boolean;
|
|
5386
|
+
wql?: $responses.wix.api.IWqlOptions;
|
|
5387
|
+
}
|
|
5388
|
+
export class CustomActionOptions implements ICustomActionOptions {
|
|
5389
|
+
constructor(data?: ICustomActionOptions);
|
|
5390
|
+
readOperation: boolean;
|
|
5391
|
+
wql?: $responses.wix.api.IWqlOptions;
|
|
5392
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5393
|
+
}
|
|
5394
|
+
export interface IWqlOptions {
|
|
5395
|
+
queryOptionsName: string;
|
|
5396
|
+
filterField?: string;
|
|
5397
|
+
queryField?: string;
|
|
5398
|
+
searchField?: string;
|
|
5399
|
+
}
|
|
5400
|
+
export class WqlOptions implements IWqlOptions {
|
|
5401
|
+
constructor(data?: IWqlOptions);
|
|
5402
|
+
queryOptionsName: string;
|
|
5403
|
+
filterField?: string;
|
|
5404
|
+
queryField?: string;
|
|
5405
|
+
searchField?: string;
|
|
5406
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5407
|
+
}
|
|
4370
5408
|
export interface ICreateMethodOptions {
|
|
4371
5409
|
itemField: string;
|
|
4372
5410
|
}
|
|
@@ -4429,6 +5467,8 @@ declare namespace $responses {
|
|
|
4429
5467
|
}
|
|
4430
5468
|
export interface IQueryMethodOptions {
|
|
4431
5469
|
queryField: string;
|
|
5470
|
+
cursorQueryField: string;
|
|
5471
|
+
offsetQueryField: string;
|
|
4432
5472
|
itemsField: string;
|
|
4433
5473
|
paging?: $responses.wix.api.IPaging;
|
|
4434
5474
|
wql?: $responses.wix.api.IWql;
|
|
@@ -4438,6 +5478,8 @@ declare namespace $responses {
|
|
|
4438
5478
|
export class QueryMethodOptions implements IQueryMethodOptions {
|
|
4439
5479
|
constructor(data?: IQueryMethodOptions);
|
|
4440
5480
|
queryField: string;
|
|
5481
|
+
cursorQueryField: string;
|
|
5482
|
+
offsetQueryField: string;
|
|
4441
5483
|
itemsField: string;
|
|
4442
5484
|
paging?: $responses.wix.api.IPaging;
|
|
4443
5485
|
wql?: $responses.wix.api.IWql;
|
|
@@ -4447,6 +5489,8 @@ declare namespace $responses {
|
|
|
4447
5489
|
}
|
|
4448
5490
|
export interface ISearchMethodOptions {
|
|
4449
5491
|
searchField: string;
|
|
5492
|
+
cursorSearchField: string;
|
|
5493
|
+
offsetSearchField: string;
|
|
4450
5494
|
itemsField: string;
|
|
4451
5495
|
paging?: $responses.wix.api.IPaging;
|
|
4452
5496
|
wql?: $responses.wix.api.IWql;
|
|
@@ -4457,6 +5501,8 @@ declare namespace $responses {
|
|
|
4457
5501
|
export class SearchMethodOptions implements ISearchMethodOptions {
|
|
4458
5502
|
constructor(data?: ISearchMethodOptions);
|
|
4459
5503
|
searchField: string;
|
|
5504
|
+
cursorSearchField: string;
|
|
5505
|
+
offsetSearchField: string;
|
|
4460
5506
|
itemsField: string;
|
|
4461
5507
|
paging?: $responses.wix.api.IPaging;
|
|
4462
5508
|
wql?: $responses.wix.api.IWql;
|
|
@@ -4497,6 +5543,24 @@ declare namespace $responses {
|
|
|
4497
5543
|
queryOptionsName: string;
|
|
4498
5544
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4499
5545
|
}
|
|
5546
|
+
export interface IBulkUpdateTagsMethodOptions {
|
|
5547
|
+
idsField: string;
|
|
5548
|
+
}
|
|
5549
|
+
export class BulkUpdateTagsMethodOptions implements IBulkUpdateTagsMethodOptions {
|
|
5550
|
+
constructor(data?: IBulkUpdateTagsMethodOptions);
|
|
5551
|
+
idsField: string;
|
|
5552
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5553
|
+
}
|
|
5554
|
+
export interface IBulkUpdateTagsByFilterMethodOptions {
|
|
5555
|
+
filterField: string;
|
|
5556
|
+
queryOptionsName: string;
|
|
5557
|
+
}
|
|
5558
|
+
export class BulkUpdateTagsByFilterMethodOptions implements IBulkUpdateTagsByFilterMethodOptions {
|
|
5559
|
+
constructor(data?: IBulkUpdateTagsByFilterMethodOptions);
|
|
5560
|
+
filterField: string;
|
|
5561
|
+
queryOptionsName: string;
|
|
5562
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5563
|
+
}
|
|
4500
5564
|
export interface IBulkUpsertMethodOptions {
|
|
4501
5565
|
itemField: string;
|
|
4502
5566
|
fieldmaskField: string;
|
|
@@ -4570,11 +5634,15 @@ declare namespace $responses {
|
|
|
4570
5634
|
export interface ICountOptions {
|
|
4571
5635
|
inheritWqlFrom?: string;
|
|
4572
5636
|
queryOptionsName?: string;
|
|
5637
|
+
filterField: string;
|
|
5638
|
+
countField: string;
|
|
4573
5639
|
}
|
|
4574
5640
|
export class CountOptions implements ICountOptions {
|
|
4575
5641
|
constructor(data?: ICountOptions);
|
|
4576
5642
|
inheritWqlFrom?: string;
|
|
4577
5643
|
queryOptionsName?: string;
|
|
5644
|
+
filterField: string;
|
|
5645
|
+
countField: string;
|
|
4578
5646
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4579
5647
|
}
|
|
4580
5648
|
export interface ISearchRelatedOptions {
|
|
@@ -4627,6 +5695,7 @@ declare namespace $responses {
|
|
|
4627
5695
|
EMPTY = "EMPTY",
|
|
4628
5696
|
MATCH_ALL = "MATCH_ALL",
|
|
4629
5697
|
MATCH_ITEMS = "MATCH_ITEMS",
|
|
5698
|
+
ENHANCED_DATE = "ENHANCED_DATE",
|
|
4630
5699
|
}
|
|
4631
5700
|
export enum Sort {
|
|
4632
5701
|
NONE = "NONE",
|
|
@@ -4656,6 +5725,10 @@ declare namespace $responses {
|
|
|
4656
5725
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4657
5726
|
}
|
|
4658
5727
|
}
|
|
5728
|
+
export enum VirtualSubfields {
|
|
5729
|
+
NO_VIRTUAL_SUBFIELDS = "NO_VIRTUAL_SUBFIELDS",
|
|
5730
|
+
DATE = "DATE",
|
|
5731
|
+
}
|
|
4659
5732
|
export interface IOperatorFieldSupport {
|
|
4660
5733
|
operator: $responses.wix.api.Wql.Operator[];
|
|
4661
5734
|
glob: string;
|
|
@@ -4663,6 +5736,7 @@ declare namespace $responses {
|
|
|
4663
5736
|
sort: $responses.wix.api.Wql.Sort;
|
|
4664
5737
|
requiredFields: $responses.wix.api.Wql.IRequiredFields[];
|
|
4665
5738
|
maturity: $responses.wix.api.Maturity;
|
|
5739
|
+
virtualSubfields: $responses.wix.api.Wql.VirtualSubfields;
|
|
4666
5740
|
}
|
|
4667
5741
|
export class OperatorFieldSupport implements IOperatorFieldSupport {
|
|
4668
5742
|
constructor(data?: IOperatorFieldSupport);
|
|
@@ -4672,6 +5746,7 @@ declare namespace $responses {
|
|
|
4672
5746
|
sort: $responses.wix.api.Wql.Sort;
|
|
4673
5747
|
requiredFields: $responses.wix.api.Wql.IRequiredFields[];
|
|
4674
5748
|
maturity: $responses.wix.api.Maturity;
|
|
5749
|
+
virtualSubfields: $responses.wix.api.Wql.VirtualSubfields;
|
|
4675
5750
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4676
5751
|
}
|
|
4677
5752
|
}
|
|
@@ -4755,66 +5830,155 @@ declare namespace $responses {
|
|
|
4755
5830
|
GA = "GA",
|
|
4756
5831
|
NOT_IMPLEMENTED = "NOT_IMPLEMENTED",
|
|
4757
5832
|
}
|
|
4758
|
-
|
|
4759
|
-
|
|
4760
|
-
|
|
4761
|
-
export interface IError {
|
|
4762
|
-
httpCode: $responses.wix.api.StatusCodes.HttpStatusCode;
|
|
4763
|
-
applicationCode: string;
|
|
4764
|
-
data: string;
|
|
4765
|
-
}
|
|
4766
|
-
export class Error implements IError {
|
|
4767
|
-
constructor(data?: IError);
|
|
4768
|
-
httpCode: $responses.wix.api.StatusCodes.HttpStatusCode;
|
|
4769
|
-
applicationCode: string;
|
|
4770
|
-
data: string;
|
|
4771
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4772
|
-
}
|
|
4773
|
-
/**
|
|
4774
|
-
* CustomValidationError: field level validation, only declare when you have specific validation in your service that is not coming from infra
|
|
4775
|
-
*/
|
|
4776
|
-
export interface ICustomValidationError {
|
|
4777
|
-
ruleName: string;
|
|
4778
|
-
data: string;
|
|
4779
|
-
}
|
|
4780
|
-
export class CustomValidationError implements ICustomValidationError {
|
|
4781
|
-
constructor(data?: ICustomValidationError);
|
|
4782
|
-
ruleName: string;
|
|
4783
|
-
data: string;
|
|
4784
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4785
|
-
}
|
|
4786
|
-
/**
|
|
4787
|
-
* InheritCrudErrors: does this method throw standard crud errors?
|
|
4788
|
-
*/
|
|
4789
|
-
export interface IInheritCrudErrors {
|
|
4790
|
-
method: $responses.wix.api.Crud.Method;
|
|
5833
|
+
export interface IServiceEntity {
|
|
5834
|
+
message: string;
|
|
5835
|
+
namespace: string;
|
|
4791
5836
|
}
|
|
4792
|
-
export class
|
|
4793
|
-
constructor(data?:
|
|
4794
|
-
|
|
5837
|
+
export class ServiceEntity implements IServiceEntity {
|
|
5838
|
+
constructor(data?: IServiceEntity);
|
|
5839
|
+
message: string;
|
|
5840
|
+
namespace: string;
|
|
4795
5841
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4796
5842
|
}
|
|
4797
|
-
export interface
|
|
5843
|
+
export interface IEntity {
|
|
5844
|
+
fqdn: string;
|
|
5845
|
+
exposure: $responses.wix.api.Exposure;
|
|
5846
|
+
appendixFiles: $responses.wix.api.IMessageAppendix[];
|
|
5847
|
+
oldFqdnForBackwardsCompatibility: string;
|
|
5848
|
+
segment: $responses.wix.api.Segment.SegmentName;
|
|
5849
|
+
implements: string[];
|
|
5850
|
+
extensible?: $responses.wix.api.IExtensible;
|
|
5851
|
+
trashbin: boolean;
|
|
5852
|
+
plural: string;
|
|
5853
|
+
domainEventsReadPermission: string;
|
|
5854
|
+
appDefId: string;
|
|
5855
|
+
domainEvents?: $responses.wix.api.IDomainEventOptions;
|
|
5856
|
+
taggable?: $responses.wix.api.ITaggable;
|
|
5857
|
+
queryOptions?: $responses.wix.api.IQueryOptions;
|
|
5858
|
+
eventsExposure: $responses.wix.api.Exposure;
|
|
5859
|
+
eventsMaturity: $responses.wix.api.Maturity;
|
|
5860
|
+
persistence?: $responses.wix.api.IPersistence;
|
|
4798
5861
|
}
|
|
4799
|
-
export class
|
|
4800
|
-
constructor(data?:
|
|
5862
|
+
export class Entity implements IEntity {
|
|
5863
|
+
constructor(data?: IEntity);
|
|
5864
|
+
fqdn: string;
|
|
5865
|
+
exposure: $responses.wix.api.Exposure;
|
|
5866
|
+
appendixFiles: $responses.wix.api.IMessageAppendix[];
|
|
5867
|
+
oldFqdnForBackwardsCompatibility: string;
|
|
5868
|
+
segment: $responses.wix.api.Segment.SegmentName;
|
|
5869
|
+
implements: string[];
|
|
5870
|
+
extensible?: $responses.wix.api.IExtensible;
|
|
5871
|
+
trashbin: boolean;
|
|
5872
|
+
plural: string;
|
|
5873
|
+
domainEventsReadPermission: string;
|
|
5874
|
+
appDefId: string;
|
|
5875
|
+
domainEvents?: $responses.wix.api.IDomainEventOptions;
|
|
5876
|
+
taggable?: $responses.wix.api.ITaggable;
|
|
5877
|
+
queryOptions?: $responses.wix.api.IQueryOptions;
|
|
5878
|
+
eventsExposure: $responses.wix.api.Exposure;
|
|
5879
|
+
eventsMaturity: $responses.wix.api.Maturity;
|
|
5880
|
+
persistence?: $responses.wix.api.IPersistence;
|
|
4801
5881
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4802
5882
|
}
|
|
4803
|
-
export
|
|
4804
|
-
|
|
4805
|
-
|
|
4806
|
-
|
|
4807
|
-
|
|
4808
|
-
|
|
4809
|
-
|
|
4810
|
-
|
|
4811
|
-
|
|
4812
|
-
|
|
4813
|
-
|
|
4814
|
-
|
|
4815
|
-
|
|
5883
|
+
export interface IPersistence {
|
|
5884
|
+
type: $responses.wix.api.Persistence.Type;
|
|
5885
|
+
}
|
|
5886
|
+
export class Persistence implements IPersistence {
|
|
5887
|
+
constructor(data?: IPersistence);
|
|
5888
|
+
type: $responses.wix.api.Persistence.Type;
|
|
5889
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5890
|
+
}
|
|
5891
|
+
export namespace Persistence {
|
|
5892
|
+
export enum Type {
|
|
5893
|
+
STANDARD = "STANDARD",
|
|
5894
|
+
SINGLETON = "SINGLETON",
|
|
5895
|
+
NONE = "NONE",
|
|
5896
|
+
}
|
|
5897
|
+
}
|
|
5898
|
+
export interface IExtensible {
|
|
5899
|
+
nestedExtensionFieldPath: string;
|
|
5900
|
+
filterable: boolean;
|
|
5901
|
+
nestedExtensionPointMappings: $responses.wix.api.INestedExtensionPointMapping[];
|
|
5902
|
+
}
|
|
5903
|
+
export class Extensible implements IExtensible {
|
|
5904
|
+
constructor(data?: IExtensible);
|
|
5905
|
+
nestedExtensionFieldPath: string;
|
|
5906
|
+
filterable: boolean;
|
|
5907
|
+
nestedExtensionPointMappings: $responses.wix.api.INestedExtensionPointMapping[];
|
|
5908
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5909
|
+
}
|
|
5910
|
+
export interface INestedExtensionPointMapping {
|
|
5911
|
+
extensionPoint: string;
|
|
5912
|
+
path: string;
|
|
5913
|
+
}
|
|
5914
|
+
export class NestedExtensionPointMapping implements INestedExtensionPointMapping {
|
|
5915
|
+
constructor(data?: INestedExtensionPointMapping);
|
|
5916
|
+
extensionPoint: string;
|
|
5917
|
+
path: string;
|
|
5918
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5919
|
+
}
|
|
5920
|
+
export interface IMessageAppendix {
|
|
5921
|
+
type: $responses.wix.api.MessageAppendix.Type;
|
|
5922
|
+
path: string;
|
|
5923
|
+
}
|
|
5924
|
+
export class MessageAppendix implements IMessageAppendix {
|
|
5925
|
+
constructor(data?: IMessageAppendix);
|
|
5926
|
+
type: $responses.wix.api.MessageAppendix.Type;
|
|
5927
|
+
path: string;
|
|
5928
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5929
|
+
}
|
|
5930
|
+
export namespace MessageAppendix {
|
|
5931
|
+
export enum Type {
|
|
5932
|
+
UNKNOWN_APPENDIX_TYPE = "UNKNOWN_APPENDIX_TYPE",
|
|
5933
|
+
AUTO_VELO = "AUTO_VELO",
|
|
5934
|
+
DOCS_CONF = "DOCS_CONF",
|
|
5935
|
+
MULTILINGUAL = "MULTILINGUAL",
|
|
5936
|
+
SEARCH = "SEARCH",
|
|
5937
|
+
AUTO_SDK = "AUTO_SDK",
|
|
4816
5938
|
}
|
|
4817
5939
|
}
|
|
5940
|
+
export interface IDomainEventOptions {
|
|
5941
|
+
eventSequenceNumber: boolean;
|
|
5942
|
+
deletedIncludeEntity: boolean;
|
|
5943
|
+
updatedIncludeModifiedFields: boolean;
|
|
5944
|
+
}
|
|
5945
|
+
export class DomainEventOptions implements IDomainEventOptions {
|
|
5946
|
+
constructor(data?: IDomainEventOptions);
|
|
5947
|
+
eventSequenceNumber: boolean;
|
|
5948
|
+
deletedIncludeEntity: boolean;
|
|
5949
|
+
updatedIncludeModifiedFields: boolean;
|
|
5950
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5951
|
+
}
|
|
5952
|
+
export interface ITaggable {
|
|
5953
|
+
}
|
|
5954
|
+
export class Taggable implements ITaggable {
|
|
5955
|
+
constructor(data?: ITaggable);
|
|
5956
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5957
|
+
}
|
|
5958
|
+
export interface IQueryOptions {
|
|
5959
|
+
wql?: $responses.wix.api.IWql;
|
|
5960
|
+
search: $responses.wix.api.ISearch[];
|
|
5961
|
+
additionalQueryOptions: $responses.wix.api.INamedQueryOptions[];
|
|
5962
|
+
}
|
|
5963
|
+
export class QueryOptions implements IQueryOptions {
|
|
5964
|
+
constructor(data?: IQueryOptions);
|
|
5965
|
+
wql?: $responses.wix.api.IWql;
|
|
5966
|
+
search: $responses.wix.api.ISearch[];
|
|
5967
|
+
additionalQueryOptions: $responses.wix.api.INamedQueryOptions[];
|
|
5968
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5969
|
+
}
|
|
5970
|
+
export interface INamedQueryOptions {
|
|
5971
|
+
name: string;
|
|
5972
|
+
wql?: $responses.wix.api.IWql;
|
|
5973
|
+
search: $responses.wix.api.ISearch[];
|
|
5974
|
+
}
|
|
5975
|
+
export class NamedQueryOptions implements INamedQueryOptions {
|
|
5976
|
+
constructor(data?: INamedQueryOptions);
|
|
5977
|
+
name: string;
|
|
5978
|
+
wql?: $responses.wix.api.IWql;
|
|
5979
|
+
search: $responses.wix.api.ISearch[];
|
|
5980
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5981
|
+
}
|
|
4818
5982
|
export interface ICallback {
|
|
4819
5983
|
topic: string;
|
|
4820
5984
|
segment: $responses.wix.api.Segment.SegmentName;
|
|
@@ -4850,6 +6014,8 @@ declare namespace $responses {
|
|
|
4850
6014
|
eventType: $responses.wix.api.DomainEvent.EventType;
|
|
4851
6015
|
exposure: $responses.wix.api.Exposure;
|
|
4852
6016
|
maturity: $responses.wix.api.Maturity;
|
|
6017
|
+
additionalMetadataFqn: string;
|
|
6018
|
+
deprecated?: $responses.wix.api.IDomainEventDeprecation;
|
|
4853
6019
|
}
|
|
4854
6020
|
export class DomainEvent implements IDomainEvent {
|
|
4855
6021
|
constructor(data?: IDomainEvent);
|
|
@@ -4858,6 +6024,8 @@ declare namespace $responses {
|
|
|
4858
6024
|
eventType: $responses.wix.api.DomainEvent.EventType;
|
|
4859
6025
|
exposure: $responses.wix.api.Exposure;
|
|
4860
6026
|
maturity: $responses.wix.api.Maturity;
|
|
6027
|
+
additionalMetadataFqn: string;
|
|
6028
|
+
deprecated?: $responses.wix.api.IDomainEventDeprecation;
|
|
4861
6029
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4862
6030
|
}
|
|
4863
6031
|
export namespace DomainEvent {
|
|
@@ -4879,6 +6047,16 @@ declare namespace $responses {
|
|
|
4879
6047
|
actionMessageFqn: string;
|
|
4880
6048
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4881
6049
|
}
|
|
6050
|
+
export interface IDomainEventDeprecation {
|
|
6051
|
+
replacedBy: string;
|
|
6052
|
+
targetRemovalDate: string;
|
|
6053
|
+
}
|
|
6054
|
+
export class DomainEventDeprecation implements IDomainEventDeprecation {
|
|
6055
|
+
constructor(data?: IDomainEventDeprecation);
|
|
6056
|
+
replacedBy: string;
|
|
6057
|
+
targetRemovalDate: string;
|
|
6058
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6059
|
+
}
|
|
4882
6060
|
export interface ICallbackDeprecation {
|
|
4883
6061
|
replacedBy: string;
|
|
4884
6062
|
targetRemovalDate: string;
|
|
@@ -4915,6 +6093,14 @@ declare namespace $responses {
|
|
|
4915
6093
|
OTHERS = "OTHERS",
|
|
4916
6094
|
}
|
|
4917
6095
|
}
|
|
6096
|
+
export interface IActionPayload {
|
|
6097
|
+
customSlug: string;
|
|
6098
|
+
}
|
|
6099
|
+
export class ActionPayload implements IActionPayload {
|
|
6100
|
+
constructor(data?: IActionPayload);
|
|
6101
|
+
customSlug: string;
|
|
6102
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6103
|
+
}
|
|
4918
6104
|
export interface IRequestContext {
|
|
4919
6105
|
aspects?: { [k: string]: string };
|
|
4920
6106
|
}
|
|
@@ -4939,138 +6125,6 @@ declare namespace $responses {
|
|
|
4939
6125
|
aspectEntry?: { [k: string]: string };
|
|
4940
6126
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4941
6127
|
}
|
|
4942
|
-
export interface IServiceEntity {
|
|
4943
|
-
message: string;
|
|
4944
|
-
namespace: string;
|
|
4945
|
-
}
|
|
4946
|
-
export class ServiceEntity implements IServiceEntity {
|
|
4947
|
-
constructor(data?: IServiceEntity);
|
|
4948
|
-
message: string;
|
|
4949
|
-
namespace: string;
|
|
4950
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4951
|
-
}
|
|
4952
|
-
export interface IEntity {
|
|
4953
|
-
fqdn: string;
|
|
4954
|
-
exposure: $responses.wix.api.Exposure;
|
|
4955
|
-
appendixFiles: $responses.wix.api.IMessageAppendix[];
|
|
4956
|
-
oldFqdnForBackwardsCompatibility: string;
|
|
4957
|
-
segment: $responses.wix.api.Segment.SegmentName;
|
|
4958
|
-
implements: string[];
|
|
4959
|
-
extensible?: $responses.wix.api.IExtensible;
|
|
4960
|
-
trashbin: boolean;
|
|
4961
|
-
plural: string;
|
|
4962
|
-
domainEventsReadPermission: string;
|
|
4963
|
-
appDefId: string;
|
|
4964
|
-
domainEvents?: $responses.wix.api.IDomainEventOptions;
|
|
4965
|
-
taggable?: $responses.wix.api.ITaggable;
|
|
4966
|
-
queryOptions?: $responses.wix.api.IQueryOptions;
|
|
4967
|
-
eventsExposure: $responses.wix.api.Exposure;
|
|
4968
|
-
eventsMaturity: $responses.wix.api.Maturity;
|
|
4969
|
-
}
|
|
4970
|
-
export class Entity implements IEntity {
|
|
4971
|
-
constructor(data?: IEntity);
|
|
4972
|
-
fqdn: string;
|
|
4973
|
-
exposure: $responses.wix.api.Exposure;
|
|
4974
|
-
appendixFiles: $responses.wix.api.IMessageAppendix[];
|
|
4975
|
-
oldFqdnForBackwardsCompatibility: string;
|
|
4976
|
-
segment: $responses.wix.api.Segment.SegmentName;
|
|
4977
|
-
implements: string[];
|
|
4978
|
-
extensible?: $responses.wix.api.IExtensible;
|
|
4979
|
-
trashbin: boolean;
|
|
4980
|
-
plural: string;
|
|
4981
|
-
domainEventsReadPermission: string;
|
|
4982
|
-
appDefId: string;
|
|
4983
|
-
domainEvents?: $responses.wix.api.IDomainEventOptions;
|
|
4984
|
-
taggable?: $responses.wix.api.ITaggable;
|
|
4985
|
-
queryOptions?: $responses.wix.api.IQueryOptions;
|
|
4986
|
-
eventsExposure: $responses.wix.api.Exposure;
|
|
4987
|
-
eventsMaturity: $responses.wix.api.Maturity;
|
|
4988
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4989
|
-
}
|
|
4990
|
-
export interface IExtensible {
|
|
4991
|
-
nestedExtensionFieldPath: string;
|
|
4992
|
-
filterable: boolean;
|
|
4993
|
-
nestedExtensionPointMappings: $responses.wix.api.INestedExtensionPointMapping[];
|
|
4994
|
-
}
|
|
4995
|
-
export class Extensible implements IExtensible {
|
|
4996
|
-
constructor(data?: IExtensible);
|
|
4997
|
-
nestedExtensionFieldPath: string;
|
|
4998
|
-
filterable: boolean;
|
|
4999
|
-
nestedExtensionPointMappings: $responses.wix.api.INestedExtensionPointMapping[];
|
|
5000
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5001
|
-
}
|
|
5002
|
-
export interface INestedExtensionPointMapping {
|
|
5003
|
-
extensionPoint: string;
|
|
5004
|
-
path: string;
|
|
5005
|
-
}
|
|
5006
|
-
export class NestedExtensionPointMapping implements INestedExtensionPointMapping {
|
|
5007
|
-
constructor(data?: INestedExtensionPointMapping);
|
|
5008
|
-
extensionPoint: string;
|
|
5009
|
-
path: string;
|
|
5010
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5011
|
-
}
|
|
5012
|
-
export interface IMessageAppendix {
|
|
5013
|
-
type: $responses.wix.api.MessageAppendix.Type;
|
|
5014
|
-
path: string;
|
|
5015
|
-
}
|
|
5016
|
-
export class MessageAppendix implements IMessageAppendix {
|
|
5017
|
-
constructor(data?: IMessageAppendix);
|
|
5018
|
-
type: $responses.wix.api.MessageAppendix.Type;
|
|
5019
|
-
path: string;
|
|
5020
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5021
|
-
}
|
|
5022
|
-
export namespace MessageAppendix {
|
|
5023
|
-
export enum Type {
|
|
5024
|
-
UNKNOWN_APPENDIX_TYPE = "UNKNOWN_APPENDIX_TYPE",
|
|
5025
|
-
AUTO_VELO = "AUTO_VELO",
|
|
5026
|
-
DOCS_CONF = "DOCS_CONF",
|
|
5027
|
-
MULTILINGUAL = "MULTILINGUAL",
|
|
5028
|
-
SEARCH = "SEARCH",
|
|
5029
|
-
AUTO_SDK = "AUTO_SDK",
|
|
5030
|
-
}
|
|
5031
|
-
}
|
|
5032
|
-
export interface IDomainEventOptions {
|
|
5033
|
-
eventSequenceNumber: boolean;
|
|
5034
|
-
deletedIncludeEntity: boolean;
|
|
5035
|
-
updatedIncludeModifiedFields: boolean;
|
|
5036
|
-
}
|
|
5037
|
-
export class DomainEventOptions implements IDomainEventOptions {
|
|
5038
|
-
constructor(data?: IDomainEventOptions);
|
|
5039
|
-
eventSequenceNumber: boolean;
|
|
5040
|
-
deletedIncludeEntity: boolean;
|
|
5041
|
-
updatedIncludeModifiedFields: boolean;
|
|
5042
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5043
|
-
}
|
|
5044
|
-
export interface ITaggable {
|
|
5045
|
-
}
|
|
5046
|
-
export class Taggable implements ITaggable {
|
|
5047
|
-
constructor(data?: ITaggable);
|
|
5048
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5049
|
-
}
|
|
5050
|
-
export interface IQueryOptions {
|
|
5051
|
-
wql?: $responses.wix.api.IWql;
|
|
5052
|
-
search: $responses.wix.api.ISearch[];
|
|
5053
|
-
additionalQueryOptions: $responses.wix.api.INamedQueryOptions[];
|
|
5054
|
-
}
|
|
5055
|
-
export class QueryOptions implements IQueryOptions {
|
|
5056
|
-
constructor(data?: IQueryOptions);
|
|
5057
|
-
wql?: $responses.wix.api.IWql;
|
|
5058
|
-
search: $responses.wix.api.ISearch[];
|
|
5059
|
-
additionalQueryOptions: $responses.wix.api.INamedQueryOptions[];
|
|
5060
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5061
|
-
}
|
|
5062
|
-
export interface INamedQueryOptions {
|
|
5063
|
-
name: string;
|
|
5064
|
-
wql?: $responses.wix.api.IWql;
|
|
5065
|
-
search: $responses.wix.api.ISearch[];
|
|
5066
|
-
}
|
|
5067
|
-
export class NamedQueryOptions implements INamedQueryOptions {
|
|
5068
|
-
constructor(data?: INamedQueryOptions);
|
|
5069
|
-
name: string;
|
|
5070
|
-
wql?: $responses.wix.api.IWql;
|
|
5071
|
-
search: $responses.wix.api.ISearch[];
|
|
5072
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5073
|
-
}
|
|
5074
6128
|
export interface IDetails {
|
|
5075
6129
|
applicationError?: $responses.wix.api.IApplicationError;
|
|
5076
6130
|
validationError?: $responses.wix.api.IValidationError;
|
|
@@ -5165,6 +6219,9 @@ declare namespace $responses {
|
|
|
5165
6219
|
REQUIRED_FIELD = "REQUIRED_FIELD",
|
|
5166
6220
|
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
5167
6221
|
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
|
|
6222
|
+
EXACT_LENGTH = "EXACT_LENGTH",
|
|
6223
|
+
EXACT_SIZE = "EXACT_SIZE",
|
|
6224
|
+
REQUIRED_ONE_OF_FIELD = "REQUIRED_ONE_OF_FIELD",
|
|
5168
6225
|
}
|
|
5169
6226
|
export interface IFieldViolation {
|
|
5170
6227
|
field: string;
|
|
@@ -5215,114 +6272,239 @@ declare namespace $responses {
|
|
|
5215
6272
|
type: string;
|
|
5216
6273
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5217
6274
|
}
|
|
5218
|
-
export interface IEnumRuleDataPayload {
|
|
5219
|
-
supported: string[];
|
|
6275
|
+
export interface IEnumRuleDataPayload {
|
|
6276
|
+
supported: string[];
|
|
6277
|
+
}
|
|
6278
|
+
export class EnumRuleDataPayload implements IEnumRuleDataPayload {
|
|
6279
|
+
constructor(data?: IEnumRuleDataPayload);
|
|
6280
|
+
supported: string[];
|
|
6281
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6282
|
+
}
|
|
6283
|
+
export interface IRequiredOneOfRuleDataPayload {
|
|
6284
|
+
supported: string[];
|
|
6285
|
+
}
|
|
6286
|
+
export class RequiredOneOfRuleDataPayload implements IRequiredOneOfRuleDataPayload {
|
|
6287
|
+
constructor(data?: IRequiredOneOfRuleDataPayload);
|
|
6288
|
+
supported: string[];
|
|
6289
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6290
|
+
}
|
|
6291
|
+
export interface IIdempotency {
|
|
6292
|
+
key: string;
|
|
6293
|
+
}
|
|
6294
|
+
export class Idempotency implements IIdempotency {
|
|
6295
|
+
constructor(data?: IIdempotency);
|
|
6296
|
+
key: string;
|
|
6297
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6298
|
+
}
|
|
6299
|
+
export interface IPermissionRule {
|
|
6300
|
+
name: string;
|
|
6301
|
+
type: $responses.wix.api.PermissionType;
|
|
6302
|
+
}
|
|
6303
|
+
export class PermissionRule implements IPermissionRule {
|
|
6304
|
+
constructor(data?: IPermissionRule);
|
|
6305
|
+
name: string;
|
|
6306
|
+
type: $responses.wix.api.PermissionType;
|
|
6307
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6308
|
+
}
|
|
6309
|
+
export enum PermissionType {
|
|
6310
|
+
AUTO = "AUTO",
|
|
6311
|
+
MANUAL = "MANUAL",
|
|
6312
|
+
}
|
|
6313
|
+
export interface ISla {
|
|
6314
|
+
responseTimeMs: number;
|
|
6315
|
+
}
|
|
6316
|
+
export class Sla implements ISla {
|
|
6317
|
+
constructor(data?: ISla);
|
|
6318
|
+
responseTimeMs: number;
|
|
6319
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6320
|
+
}
|
|
6321
|
+
export interface ISubscription {
|
|
6322
|
+
topic: string;
|
|
6323
|
+
segment: $responses.wix.api.Segment.SegmentName;
|
|
6324
|
+
batch: boolean;
|
|
6325
|
+
entity: string;
|
|
6326
|
+
dynamic: boolean;
|
|
6327
|
+
}
|
|
6328
|
+
export class Subscription implements ISubscription {
|
|
6329
|
+
constructor(data?: ISubscription);
|
|
6330
|
+
topic: string;
|
|
6331
|
+
segment: $responses.wix.api.Segment.SegmentName;
|
|
6332
|
+
batch: boolean;
|
|
6333
|
+
entity: string;
|
|
6334
|
+
dynamic: boolean;
|
|
6335
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6336
|
+
}
|
|
6337
|
+
}
|
|
6338
|
+
export namespace spi {
|
|
6339
|
+
export interface IService {
|
|
6340
|
+
spiIdentifier: string;
|
|
6341
|
+
configMessage: string;
|
|
6342
|
+
hostService: string;
|
|
6343
|
+
businessManagerUrl: string;
|
|
6344
|
+
fqdn: string;
|
|
6345
|
+
appId: string;
|
|
6346
|
+
appendixFiles: $responses.wix.spi.IServiceAppendix[];
|
|
6347
|
+
}
|
|
6348
|
+
export class Service implements IService {
|
|
6349
|
+
constructor(data?: IService);
|
|
6350
|
+
spiIdentifier: string;
|
|
6351
|
+
configMessage: string;
|
|
6352
|
+
hostService: string;
|
|
6353
|
+
businessManagerUrl: string;
|
|
6354
|
+
fqdn: string;
|
|
6355
|
+
appId: string;
|
|
6356
|
+
appendixFiles: $responses.wix.spi.IServiceAppendix[];
|
|
6357
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6358
|
+
}
|
|
6359
|
+
export interface IServiceAppendix {
|
|
6360
|
+
type: $responses.wix.spi.ServiceAppendix.Type;
|
|
6361
|
+
path: string;
|
|
6362
|
+
}
|
|
6363
|
+
export class ServiceAppendix implements IServiceAppendix {
|
|
6364
|
+
constructor(data?: IServiceAppendix);
|
|
6365
|
+
type: $responses.wix.spi.ServiceAppendix.Type;
|
|
6366
|
+
path: string;
|
|
6367
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6368
|
+
}
|
|
6369
|
+
export namespace ServiceAppendix {
|
|
6370
|
+
export enum Type {
|
|
6371
|
+
UNKNOWN_APPENDIX_TYPE = "UNKNOWN_APPENDIX_TYPE",
|
|
6372
|
+
AUTO_VELO = "AUTO_VELO",
|
|
6373
|
+
DOCS_CONF = "DOCS_CONF",
|
|
6374
|
+
MULTILINGUAL = "MULTILINGUAL",
|
|
6375
|
+
SEARCH = "SEARCH",
|
|
6376
|
+
AUTO_SDK = "AUTO_SDK",
|
|
6377
|
+
}
|
|
6378
|
+
}
|
|
6379
|
+
export interface IError {
|
|
6380
|
+
name: string;
|
|
6381
|
+
httpCode: $responses.wix.spi.HttpStatusCode;
|
|
6382
|
+
applicationCode: string;
|
|
6383
|
+
data: string;
|
|
6384
|
+
}
|
|
6385
|
+
export class Error implements IError {
|
|
6386
|
+
constructor(data?: IError);
|
|
6387
|
+
name: string;
|
|
6388
|
+
httpCode: $responses.wix.spi.HttpStatusCode;
|
|
6389
|
+
applicationCode: string;
|
|
6390
|
+
data: string;
|
|
6391
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6392
|
+
}
|
|
6393
|
+
export interface IEvent {
|
|
6394
|
+
methodName: string;
|
|
5220
6395
|
}
|
|
5221
|
-
export class
|
|
5222
|
-
constructor(data?:
|
|
5223
|
-
|
|
6396
|
+
export class Event implements IEvent {
|
|
6397
|
+
constructor(data?: IEvent);
|
|
6398
|
+
methodName: string;
|
|
5224
6399
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5225
6400
|
}
|
|
5226
|
-
export
|
|
5227
|
-
|
|
6401
|
+
export enum HttpStatusCode {
|
|
6402
|
+
UNKNOWN_ERROR = "UNKNOWN_ERROR",
|
|
6403
|
+
UNAUTHENTICATED = "UNAUTHENTICATED",
|
|
6404
|
+
INVALID_ARGUMENT = "INVALID_ARGUMENT",
|
|
6405
|
+
INTERNAL = "INTERNAL",
|
|
6406
|
+
RESOURCE_EXHAUSTED = "RESOURCE_EXHAUSTED",
|
|
6407
|
+
CANCELED = "CANCELED",
|
|
6408
|
+
NOT_FOUND = "NOT_FOUND",
|
|
6409
|
+
ALREADY_EXISTS = "ALREADY_EXISTS",
|
|
6410
|
+
FAILED_PRECONDITION = "FAILED_PRECONDITION",
|
|
5228
6411
|
}
|
|
5229
|
-
|
|
5230
|
-
|
|
5231
|
-
|
|
6412
|
+
}
|
|
6413
|
+
export namespace common {
|
|
6414
|
+
export interface IPaging {
|
|
6415
|
+
limit?: number;
|
|
6416
|
+
offset?: number;
|
|
6417
|
+
}
|
|
6418
|
+
export class Paging implements IPaging {
|
|
6419
|
+
constructor(data?: IPaging);
|
|
6420
|
+
limit?: number;
|
|
6421
|
+
offset?: number;
|
|
5232
6422
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5233
6423
|
}
|
|
5234
|
-
export interface
|
|
5235
|
-
|
|
5236
|
-
|
|
6424
|
+
export interface ICursorPaging {
|
|
6425
|
+
limit?: number;
|
|
6426
|
+
cursor?: string;
|
|
5237
6427
|
}
|
|
5238
|
-
export class
|
|
5239
|
-
constructor(data?:
|
|
5240
|
-
|
|
5241
|
-
|
|
6428
|
+
export class CursorPaging implements ICursorPaging {
|
|
6429
|
+
constructor(data?: ICursorPaging);
|
|
6430
|
+
limit?: number;
|
|
6431
|
+
cursor?: string;
|
|
5242
6432
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5243
6433
|
}
|
|
5244
|
-
export
|
|
5245
|
-
|
|
5246
|
-
|
|
6434
|
+
export interface IPagingMetadata {
|
|
6435
|
+
count?: number;
|
|
6436
|
+
offset?: number;
|
|
6437
|
+
total?: number;
|
|
6438
|
+
tooManyToCount?: boolean;
|
|
6439
|
+
hasNext?: boolean;
|
|
5247
6440
|
}
|
|
5248
|
-
export
|
|
5249
|
-
|
|
6441
|
+
export class PagingMetadata implements IPagingMetadata {
|
|
6442
|
+
constructor(data?: IPagingMetadata);
|
|
6443
|
+
count?: number;
|
|
6444
|
+
offset?: number;
|
|
6445
|
+
total?: number;
|
|
6446
|
+
tooManyToCount?: boolean;
|
|
6447
|
+
hasNext?: boolean;
|
|
6448
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5250
6449
|
}
|
|
5251
|
-
export
|
|
5252
|
-
|
|
5253
|
-
|
|
6450
|
+
export interface IPagingMetadataV2 {
|
|
6451
|
+
count?: number;
|
|
6452
|
+
offset?: number;
|
|
6453
|
+
total?: number;
|
|
6454
|
+
tooManyToCount?: boolean;
|
|
6455
|
+
cursors?: $responses.wix.common.ICursors;
|
|
6456
|
+
hasNext?: boolean;
|
|
6457
|
+
}
|
|
6458
|
+
export class PagingMetadataV2 implements IPagingMetadataV2 {
|
|
6459
|
+
constructor(data?: IPagingMetadataV2);
|
|
6460
|
+
count?: number;
|
|
6461
|
+
offset?: number;
|
|
6462
|
+
total?: number;
|
|
6463
|
+
tooManyToCount?: boolean;
|
|
6464
|
+
cursors?: $responses.wix.common.ICursors;
|
|
6465
|
+
hasNext?: boolean;
|
|
5254
6466
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5255
6467
|
}
|
|
5256
|
-
export interface
|
|
5257
|
-
|
|
5258
|
-
|
|
5259
|
-
|
|
5260
|
-
|
|
5261
|
-
dynamic: boolean;
|
|
6468
|
+
export interface ICursorPagingMetadata {
|
|
6469
|
+
count?: number;
|
|
6470
|
+
cursors?: $responses.wix.common.ICursors;
|
|
6471
|
+
hasNext?: boolean;
|
|
6472
|
+
total?: number;
|
|
5262
6473
|
}
|
|
5263
|
-
export class
|
|
5264
|
-
constructor(data?:
|
|
5265
|
-
|
|
5266
|
-
|
|
5267
|
-
|
|
5268
|
-
|
|
5269
|
-
dynamic: boolean;
|
|
6474
|
+
export class CursorPagingMetadata implements ICursorPagingMetadata {
|
|
6475
|
+
constructor(data?: ICursorPagingMetadata);
|
|
6476
|
+
count?: number;
|
|
6477
|
+
cursors?: $responses.wix.common.ICursors;
|
|
6478
|
+
hasNext?: boolean;
|
|
6479
|
+
total?: number;
|
|
5270
6480
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5271
6481
|
}
|
|
5272
|
-
|
|
5273
|
-
|
|
5274
|
-
|
|
5275
|
-
*/
|
|
5276
|
-
export interface IDecimalValueOptions {
|
|
5277
|
-
lte: string;
|
|
5278
|
-
gte: string;
|
|
5279
|
-
lt: string;
|
|
5280
|
-
gt: string;
|
|
5281
|
-
maxScale: number;
|
|
6482
|
+
export interface ICursors {
|
|
6483
|
+
next?: string;
|
|
6484
|
+
prev?: string;
|
|
5282
6485
|
}
|
|
5283
|
-
export class
|
|
5284
|
-
constructor(data?:
|
|
5285
|
-
|
|
5286
|
-
|
|
5287
|
-
lt: string;
|
|
5288
|
-
gt: string;
|
|
5289
|
-
maxScale: number;
|
|
6486
|
+
export class Cursors implements ICursors {
|
|
6487
|
+
constructor(data?: ICursors);
|
|
6488
|
+
next?: string;
|
|
6489
|
+
prev?: string;
|
|
5290
6490
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5291
6491
|
}
|
|
5292
|
-
export interface
|
|
5293
|
-
|
|
5294
|
-
|
|
6492
|
+
export interface ISorting {
|
|
6493
|
+
fieldName: string;
|
|
6494
|
+
order: $responses.wix.common.SortOrder;
|
|
6495
|
+
selectItemsBy: { [key: string]: any }[];
|
|
5295
6496
|
}
|
|
5296
|
-
export class
|
|
5297
|
-
constructor(data?:
|
|
5298
|
-
|
|
5299
|
-
|
|
6497
|
+
export class Sorting implements ISorting {
|
|
6498
|
+
constructor(data?: ISorting);
|
|
6499
|
+
fieldName: string;
|
|
6500
|
+
order: $responses.wix.common.SortOrder;
|
|
6501
|
+
selectItemsBy: { [key: string]: any }[];
|
|
5300
6502
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5301
6503
|
}
|
|
5302
|
-
export enum
|
|
5303
|
-
|
|
5304
|
-
|
|
5305
|
-
IPV4 = "IPV4",
|
|
5306
|
-
IPV6 = "IPV6",
|
|
5307
|
-
URI = "URI",
|
|
5308
|
-
WEB_URL = "WEB_URL",
|
|
5309
|
-
PHONE = "PHONE",
|
|
5310
|
-
CREDIT_CARD = "CREDIT_CARD",
|
|
5311
|
-
GUID = "GUID",
|
|
5312
|
-
COUNTRY = "COUNTRY",
|
|
5313
|
-
LANGUAGE = "LANGUAGE",
|
|
5314
|
-
DECIMAL_VALUE = "DECIMAL_VALUE",
|
|
5315
|
-
CURRENCY = "CURRENCY",
|
|
5316
|
-
LANGUAGE_TAG = "LANGUAGE_TAG",
|
|
5317
|
-
COLOR_HEX = "COLOR_HEX",
|
|
5318
|
-
LOCAL_DATE = "LOCAL_DATE",
|
|
5319
|
-
LOCAL_TIME = "LOCAL_TIME",
|
|
5320
|
-
LOCAL_DATE_TIME = "LOCAL_DATE_TIME",
|
|
5321
|
-
URL_SLUG = "URL_SLUG",
|
|
5322
|
-
SYSTEM_SLUG = "SYSTEM_SLUG",
|
|
6504
|
+
export enum SortOrder {
|
|
6505
|
+
ASC = "ASC",
|
|
6506
|
+
DESC = "DESC",
|
|
5323
6507
|
}
|
|
5324
|
-
}
|
|
5325
|
-
export namespace common {
|
|
5326
6508
|
export interface IAddress {
|
|
5327
6509
|
country?: string;
|
|
5328
6510
|
subdivision?: string;
|
|
@@ -5808,6 +6990,7 @@ declare namespace $responses {
|
|
|
5808
6990
|
valueExceeded?: $responses.wix.common.data.PatchErrorDetails.IValueExceeded;
|
|
5809
6991
|
invalidUuid?: $responses.wix.common.data.PatchErrorDetails.IInvalidUUID;
|
|
5810
6992
|
systemFieldNotAllowed?: $responses.wix.common.data.PatchErrorDetails.ISystemFieldNotAllowed;
|
|
6993
|
+
failedToWriteType?: $responses.wix.common.data.PatchErrorDetails.IFailedToWriteType;
|
|
5811
6994
|
}
|
|
5812
6995
|
export class PatchErrorDetails implements IPatchErrorDetails {
|
|
5813
6996
|
constructor(data?: IPatchErrorDetails);
|
|
@@ -5822,6 +7005,7 @@ declare namespace $responses {
|
|
|
5822
7005
|
valueExceeded?: $responses.wix.common.data.PatchErrorDetails.IValueExceeded;
|
|
5823
7006
|
invalidUuid?: $responses.wix.common.data.PatchErrorDetails.IInvalidUUID;
|
|
5824
7007
|
systemFieldNotAllowed?: $responses.wix.common.data.PatchErrorDetails.ISystemFieldNotAllowed;
|
|
7008
|
+
failedToWriteType?: $responses.wix.common.data.PatchErrorDetails.IFailedToWriteType;
|
|
5825
7009
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5826
7010
|
}
|
|
5827
7011
|
export namespace PatchErrorDetails {
|
|
@@ -5877,6 +7061,18 @@ declare namespace $responses {
|
|
|
5877
7061
|
expected: string;
|
|
5878
7062
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
5879
7063
|
}
|
|
7064
|
+
export interface IFailedToWriteType {
|
|
7065
|
+
path: string;
|
|
7066
|
+
expectedType: string;
|
|
7067
|
+
value: string;
|
|
7068
|
+
}
|
|
7069
|
+
export class FailedToWriteType implements IFailedToWriteType {
|
|
7070
|
+
constructor(data?: IFailedToWriteType);
|
|
7071
|
+
path: string;
|
|
7072
|
+
expectedType: string;
|
|
7073
|
+
value: string;
|
|
7074
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
7075
|
+
}
|
|
5880
7076
|
export interface IIllegalPath {
|
|
5881
7077
|
path: string;
|
|
5882
7078
|
}
|
|
@@ -6022,6 +7218,7 @@ declare namespace $responses {
|
|
|
6022
7218
|
uniqueKeyNotFound?: $responses.wix.common.data.ErrorDetails.IUniqueKeyNotFound;
|
|
6023
7219
|
invalidUniqueKey?: $responses.wix.common.data.ErrorDetails.IInvalidUniqueKey;
|
|
6024
7220
|
maxSizeViolations?: $responses.wix.common.data.ErrorDetails.IMaxSizeViolations;
|
|
7221
|
+
pageSizeExceedsMaximum?: $responses.wix.common.data.ErrorDetails.IPageSizeExceedsMaximum;
|
|
6025
7222
|
}
|
|
6026
7223
|
export class ErrorDetails implements IErrorDetails {
|
|
6027
7224
|
constructor(data?: IErrorDetails);
|
|
@@ -6054,6 +7251,7 @@ declare namespace $responses {
|
|
|
6054
7251
|
uniqueKeyNotFound?: $responses.wix.common.data.ErrorDetails.IUniqueKeyNotFound;
|
|
6055
7252
|
invalidUniqueKey?: $responses.wix.common.data.ErrorDetails.IInvalidUniqueKey;
|
|
6056
7253
|
maxSizeViolations?: $responses.wix.common.data.ErrorDetails.IMaxSizeViolations;
|
|
7254
|
+
pageSizeExceedsMaximum?: $responses.wix.common.data.ErrorDetails.IPageSizeExceedsMaximum;
|
|
6057
7255
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6058
7256
|
}
|
|
6059
7257
|
export namespace ErrorDetails {
|
|
@@ -6343,6 +7541,16 @@ declare namespace $responses {
|
|
|
6343
7541
|
fieldType: string;
|
|
6344
7542
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6345
7543
|
}
|
|
7544
|
+
export interface IPageSizeExceedsMaximum {
|
|
7545
|
+
size: number;
|
|
7546
|
+
maxPageSize: number;
|
|
7547
|
+
}
|
|
7548
|
+
export class PageSizeExceedsMaximum implements IPageSizeExceedsMaximum {
|
|
7549
|
+
constructor(data?: IPageSizeExceedsMaximum);
|
|
7550
|
+
size: number;
|
|
7551
|
+
maxPageSize: number;
|
|
7552
|
+
static __$$generatedFromProtobuf$$__: Symbol;
|
|
7553
|
+
}
|
|
6346
7554
|
}
|
|
6347
7555
|
}
|
|
6348
7556
|
export interface IIdentificationData {
|
|
@@ -6381,6 +7589,7 @@ declare namespace $responses {
|
|
|
6381
7589
|
urlExpirationDate?: Date;
|
|
6382
7590
|
filename?: string;
|
|
6383
7591
|
sizeInBytes?: string;
|
|
7592
|
+
focalPoint?: $responses.wix.common.IFocalPoint;
|
|
6384
7593
|
}
|
|
6385
7594
|
export class Image implements IImage {
|
|
6386
7595
|
constructor(data?: IImage);
|
|
@@ -6392,6 +7601,7 @@ declare namespace $responses {
|
|
|
6392
7601
|
urlExpirationDate?: Date;
|
|
6393
7602
|
filename?: string;
|
|
6394
7603
|
sizeInBytes?: string;
|
|
7604
|
+
focalPoint?: $responses.wix.common.IFocalPoint;
|
|
6395
7605
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6396
7606
|
}
|
|
6397
7607
|
export interface IVideo {
|
|
@@ -6421,6 +7631,8 @@ declare namespace $responses {
|
|
|
6421
7631
|
durationInMilliseconds?: number;
|
|
6422
7632
|
title?: string;
|
|
6423
7633
|
description?: string;
|
|
7634
|
+
height?: number;
|
|
7635
|
+
width?: number;
|
|
6424
7636
|
}
|
|
6425
7637
|
export class VideoV2 implements IVideoV2 {
|
|
6426
7638
|
constructor(data?: IVideoV2);
|
|
@@ -6434,6 +7646,8 @@ declare namespace $responses {
|
|
|
6434
7646
|
durationInMilliseconds?: number;
|
|
6435
7647
|
title?: string;
|
|
6436
7648
|
description?: string;
|
|
7649
|
+
height?: number;
|
|
7650
|
+
width?: number;
|
|
6437
7651
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6438
7652
|
}
|
|
6439
7653
|
export interface IVideoResolution {
|
|
@@ -6500,6 +7714,7 @@ declare namespace $responses {
|
|
|
6500
7714
|
urlExpirationDate?: Date;
|
|
6501
7715
|
sizeInBytes?: string;
|
|
6502
7716
|
filename?: string;
|
|
7717
|
+
thumbnail?: $responses.wix.common.IImage;
|
|
6503
7718
|
}
|
|
6504
7719
|
export class Document implements IDocument {
|
|
6505
7720
|
constructor(data?: IDocument);
|
|
@@ -6508,6 +7723,7 @@ declare namespace $responses {
|
|
|
6508
7723
|
urlExpirationDate?: Date;
|
|
6509
7724
|
sizeInBytes?: string;
|
|
6510
7725
|
filename?: string;
|
|
7726
|
+
thumbnail?: $responses.wix.common.IImage;
|
|
6511
7727
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6512
7728
|
}
|
|
6513
7729
|
export interface IModel3D {
|
|
@@ -6558,114 +7774,50 @@ declare namespace $responses {
|
|
|
6558
7774
|
document?: $responses.wix.common.IDocument;
|
|
6559
7775
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6560
7776
|
}
|
|
6561
|
-
export interface
|
|
6562
|
-
|
|
6563
|
-
|
|
6564
|
-
|
|
6565
|
-
|
|
6566
|
-
export class Money implements IMoney {
|
|
6567
|
-
constructor(data?: IMoney);
|
|
6568
|
-
value: string;
|
|
6569
|
-
currency: string;
|
|
6570
|
-
formattedValue?: string;
|
|
6571
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6572
|
-
}
|
|
6573
|
-
export interface IPageUrl {
|
|
6574
|
-
base: string;
|
|
6575
|
-
path: string;
|
|
6576
|
-
}
|
|
6577
|
-
export class PageUrl implements IPageUrl {
|
|
6578
|
-
constructor(data?: IPageUrl);
|
|
6579
|
-
base: string;
|
|
6580
|
-
path: string;
|
|
6581
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6582
|
-
}
|
|
6583
|
-
export interface IPageUrlV2 {
|
|
6584
|
-
relativePath: string;
|
|
6585
|
-
url?: string;
|
|
6586
|
-
}
|
|
6587
|
-
export class PageUrlV2 implements IPageUrlV2 {
|
|
6588
|
-
constructor(data?: IPageUrlV2);
|
|
6589
|
-
relativePath: string;
|
|
6590
|
-
url?: string;
|
|
6591
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6592
|
-
}
|
|
6593
|
-
export interface IPaging {
|
|
6594
|
-
limit?: number;
|
|
6595
|
-
offset?: number;
|
|
6596
|
-
}
|
|
6597
|
-
export class Paging implements IPaging {
|
|
6598
|
-
constructor(data?: IPaging);
|
|
6599
|
-
limit?: number;
|
|
6600
|
-
offset?: number;
|
|
6601
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6602
|
-
}
|
|
6603
|
-
export interface ICursorPaging {
|
|
6604
|
-
limit?: number;
|
|
6605
|
-
cursor?: string;
|
|
6606
|
-
}
|
|
6607
|
-
export class CursorPaging implements ICursorPaging {
|
|
6608
|
-
constructor(data?: ICursorPaging);
|
|
6609
|
-
limit?: number;
|
|
6610
|
-
cursor?: string;
|
|
6611
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6612
|
-
}
|
|
6613
|
-
export interface IPagingMetadata {
|
|
6614
|
-
count?: number;
|
|
6615
|
-
offset?: number;
|
|
6616
|
-
total?: number;
|
|
6617
|
-
tooManyToCount?: boolean;
|
|
6618
|
-
hasNext?: boolean;
|
|
7777
|
+
export interface IFocalPoint {
|
|
7778
|
+
x: number;
|
|
7779
|
+
y: number;
|
|
7780
|
+
height?: number;
|
|
7781
|
+
width?: number;
|
|
6619
7782
|
}
|
|
6620
|
-
export class
|
|
6621
|
-
constructor(data?:
|
|
6622
|
-
|
|
6623
|
-
|
|
6624
|
-
|
|
6625
|
-
|
|
6626
|
-
hasNext?: boolean;
|
|
7783
|
+
export class FocalPoint implements IFocalPoint {
|
|
7784
|
+
constructor(data?: IFocalPoint);
|
|
7785
|
+
x: number;
|
|
7786
|
+
y: number;
|
|
7787
|
+
height?: number;
|
|
7788
|
+
width?: number;
|
|
6627
7789
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6628
7790
|
}
|
|
6629
|
-
export interface
|
|
6630
|
-
|
|
6631
|
-
|
|
6632
|
-
|
|
6633
|
-
tooManyToCount?: boolean;
|
|
6634
|
-
cursors?: $responses.wix.common.ICursors;
|
|
6635
|
-
hasNext?: boolean;
|
|
7791
|
+
export interface IMoney {
|
|
7792
|
+
value: string;
|
|
7793
|
+
currency: string;
|
|
7794
|
+
formattedValue?: string;
|
|
6636
7795
|
}
|
|
6637
|
-
export class
|
|
6638
|
-
constructor(data?:
|
|
6639
|
-
|
|
6640
|
-
|
|
6641
|
-
|
|
6642
|
-
tooManyToCount?: boolean;
|
|
6643
|
-
cursors?: $responses.wix.common.ICursors;
|
|
6644
|
-
hasNext?: boolean;
|
|
7796
|
+
export class Money implements IMoney {
|
|
7797
|
+
constructor(data?: IMoney);
|
|
7798
|
+
value: string;
|
|
7799
|
+
currency: string;
|
|
7800
|
+
formattedValue?: string;
|
|
6645
7801
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6646
7802
|
}
|
|
6647
|
-
export interface
|
|
6648
|
-
|
|
6649
|
-
|
|
6650
|
-
hasNext?: boolean;
|
|
6651
|
-
total?: number;
|
|
7803
|
+
export interface IPageUrl {
|
|
7804
|
+
base: string;
|
|
7805
|
+
path: string;
|
|
6652
7806
|
}
|
|
6653
|
-
export class
|
|
6654
|
-
constructor(data?:
|
|
6655
|
-
|
|
6656
|
-
|
|
6657
|
-
hasNext?: boolean;
|
|
6658
|
-
total?: number;
|
|
7807
|
+
export class PageUrl implements IPageUrl {
|
|
7808
|
+
constructor(data?: IPageUrl);
|
|
7809
|
+
base: string;
|
|
7810
|
+
path: string;
|
|
6659
7811
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6660
7812
|
}
|
|
6661
|
-
export interface
|
|
6662
|
-
|
|
6663
|
-
|
|
7813
|
+
export interface IPageUrlV2 {
|
|
7814
|
+
relativePath: string;
|
|
7815
|
+
url?: string;
|
|
6664
7816
|
}
|
|
6665
|
-
export class
|
|
6666
|
-
constructor(data?:
|
|
6667
|
-
|
|
6668
|
-
|
|
7817
|
+
export class PageUrlV2 implements IPageUrlV2 {
|
|
7818
|
+
constructor(data?: IPageUrlV2);
|
|
7819
|
+
relativePath: string;
|
|
7820
|
+
url?: string;
|
|
6669
7821
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
6670
7822
|
}
|
|
6671
7823
|
export interface IQuery {
|
|
@@ -7187,22 +8339,6 @@ declare namespace $responses {
|
|
|
7187
8339
|
}
|
|
7188
8340
|
}
|
|
7189
8341
|
}
|
|
7190
|
-
export interface ISorting {
|
|
7191
|
-
fieldName: string;
|
|
7192
|
-
order: $responses.wix.common.SortOrder;
|
|
7193
|
-
selectItemsBy: { [key: string]: any }[];
|
|
7194
|
-
}
|
|
7195
|
-
export class Sorting implements ISorting {
|
|
7196
|
-
constructor(data?: ISorting);
|
|
7197
|
-
fieldName: string;
|
|
7198
|
-
order: $responses.wix.common.SortOrder;
|
|
7199
|
-
selectItemsBy: { [key: string]: any }[];
|
|
7200
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
7201
|
-
}
|
|
7202
|
-
export enum SortOrder {
|
|
7203
|
-
ASC = "ASC",
|
|
7204
|
-
DESC = "DESC",
|
|
7205
|
-
}
|
|
7206
8342
|
export namespace spi {
|
|
7207
8343
|
export interface ISpiBaseUri {
|
|
7208
8344
|
baseUri: string;
|
|
@@ -7358,11 +8494,13 @@ declare namespace $responses {
|
|
|
7358
8494
|
export interface IExternalLink {
|
|
7359
8495
|
url: string;
|
|
7360
8496
|
target?: string;
|
|
8497
|
+
rel: $responses.wix.common.LinkRel[];
|
|
7361
8498
|
}
|
|
7362
8499
|
export class ExternalLink implements IExternalLink {
|
|
7363
8500
|
constructor(data?: IExternalLink);
|
|
7364
8501
|
url: string;
|
|
7365
8502
|
target?: string;
|
|
8503
|
+
rel: $responses.wix.common.LinkRel[];
|
|
7366
8504
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
7367
8505
|
}
|
|
7368
8506
|
export interface IPageLink {
|
|
@@ -7694,80 +8832,6 @@ declare namespace $responses {
|
|
|
7694
8832
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
7695
8833
|
}
|
|
7696
8834
|
}
|
|
7697
|
-
export namespace spi {
|
|
7698
|
-
export interface IService {
|
|
7699
|
-
spiIdentifier: string;
|
|
7700
|
-
configMessage: string;
|
|
7701
|
-
hostService: string;
|
|
7702
|
-
businessManagerUrl: string;
|
|
7703
|
-
fqdn: string;
|
|
7704
|
-
appId: string;
|
|
7705
|
-
appendixFiles: $responses.wix.spi.IServiceAppendix[];
|
|
7706
|
-
}
|
|
7707
|
-
export class Service implements IService {
|
|
7708
|
-
constructor(data?: IService);
|
|
7709
|
-
spiIdentifier: string;
|
|
7710
|
-
configMessage: string;
|
|
7711
|
-
hostService: string;
|
|
7712
|
-
businessManagerUrl: string;
|
|
7713
|
-
fqdn: string;
|
|
7714
|
-
appId: string;
|
|
7715
|
-
appendixFiles: $responses.wix.spi.IServiceAppendix[];
|
|
7716
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
7717
|
-
}
|
|
7718
|
-
export interface IServiceAppendix {
|
|
7719
|
-
type: $responses.wix.spi.ServiceAppendix.Type;
|
|
7720
|
-
path: string;
|
|
7721
|
-
}
|
|
7722
|
-
export class ServiceAppendix implements IServiceAppendix {
|
|
7723
|
-
constructor(data?: IServiceAppendix);
|
|
7724
|
-
type: $responses.wix.spi.ServiceAppendix.Type;
|
|
7725
|
-
path: string;
|
|
7726
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
7727
|
-
}
|
|
7728
|
-
export namespace ServiceAppendix {
|
|
7729
|
-
export enum Type {
|
|
7730
|
-
UNKNOWN_APPENDIX_TYPE = "UNKNOWN_APPENDIX_TYPE",
|
|
7731
|
-
AUTO_VELO = "AUTO_VELO",
|
|
7732
|
-
DOCS_CONF = "DOCS_CONF",
|
|
7733
|
-
MULTILINGUAL = "MULTILINGUAL",
|
|
7734
|
-
SEARCH = "SEARCH",
|
|
7735
|
-
}
|
|
7736
|
-
}
|
|
7737
|
-
export interface IError {
|
|
7738
|
-
name: string;
|
|
7739
|
-
httpCode: $responses.wix.spi.HttpStatusCode;
|
|
7740
|
-
applicationCode: string;
|
|
7741
|
-
data: string;
|
|
7742
|
-
}
|
|
7743
|
-
export class Error implements IError {
|
|
7744
|
-
constructor(data?: IError);
|
|
7745
|
-
name: string;
|
|
7746
|
-
httpCode: $responses.wix.spi.HttpStatusCode;
|
|
7747
|
-
applicationCode: string;
|
|
7748
|
-
data: string;
|
|
7749
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
7750
|
-
}
|
|
7751
|
-
export interface IEvent {
|
|
7752
|
-
methodName: string;
|
|
7753
|
-
}
|
|
7754
|
-
export class Event implements IEvent {
|
|
7755
|
-
constructor(data?: IEvent);
|
|
7756
|
-
methodName: string;
|
|
7757
|
-
static __$$generatedFromProtobuf$$__: Symbol;
|
|
7758
|
-
}
|
|
7759
|
-
export enum HttpStatusCode {
|
|
7760
|
-
UNKNOWN_ERROR = "UNKNOWN_ERROR",
|
|
7761
|
-
UNAUTHENTICATED = "UNAUTHENTICATED",
|
|
7762
|
-
INVALID_ARGUMENT = "INVALID_ARGUMENT",
|
|
7763
|
-
INTERNAL = "INTERNAL",
|
|
7764
|
-
RESOURCE_EXHAUSTED = "RESOURCE_EXHAUSTED",
|
|
7765
|
-
CANCELED = "CANCELED",
|
|
7766
|
-
NOT_FOUND = "NOT_FOUND",
|
|
7767
|
-
ALREADY_EXISTS = "ALREADY_EXISTS",
|
|
7768
|
-
FAILED_PRECONDITION = "FAILED_PRECONDITION",
|
|
7769
|
-
}
|
|
7770
|
-
}
|
|
7771
8835
|
}
|
|
7772
8836
|
export namespace google {
|
|
7773
8837
|
export namespace protobuf {
|
|
@@ -8065,7 +9129,6 @@ declare namespace $responses {
|
|
|
8065
9129
|
deprecated: boolean;
|
|
8066
9130
|
mapEntry: boolean;
|
|
8067
9131
|
uninterpretedOption: $responses.google.protobuf.IUninterpretedOption[];
|
|
8068
|
-
'.wix.api.actionPayload'?: $responses.wix.api.IActionPayload;
|
|
8069
9132
|
'.wix.api.decompositeOf': string;
|
|
8070
9133
|
'.wix.api.decompositionMinimumFields': $responses.wix.api.IFieldSet[];
|
|
8071
9134
|
'.wix.api.unwrapArrayValue': boolean;
|
|
@@ -8073,6 +9136,7 @@ declare namespace $responses {
|
|
|
8073
9136
|
'.wix.api.unique': $responses.wix.api.IUnique[];
|
|
8074
9137
|
'.wix.api.entity'?: $responses.wix.api.IEntity;
|
|
8075
9138
|
'.wix.api.domainEvent': $responses.wix.api.IDomainEvent[];
|
|
9139
|
+
'.wix.api.actionPayload'?: $responses.wix.api.IActionPayload;
|
|
8076
9140
|
}
|
|
8077
9141
|
export class MessageOptions implements IMessageOptions {
|
|
8078
9142
|
constructor(data?: IMessageOptions);
|
|
@@ -8081,7 +9145,6 @@ declare namespace $responses {
|
|
|
8081
9145
|
deprecated: boolean;
|
|
8082
9146
|
mapEntry: boolean;
|
|
8083
9147
|
uninterpretedOption: $responses.google.protobuf.IUninterpretedOption[];
|
|
8084
|
-
'.wix.api.actionPayload'?: $responses.wix.api.IActionPayload;
|
|
8085
9148
|
'.wix.api.decompositeOf': string;
|
|
8086
9149
|
'.wix.api.decompositionMinimumFields': $responses.wix.api.IFieldSet[];
|
|
8087
9150
|
'.wix.api.unwrapArrayValue': boolean;
|
|
@@ -8089,6 +9152,7 @@ declare namespace $responses {
|
|
|
8089
9152
|
'.wix.api.unique': $responses.wix.api.IUnique[];
|
|
8090
9153
|
'.wix.api.entity'?: $responses.wix.api.IEntity;
|
|
8091
9154
|
'.wix.api.domainEvent': $responses.wix.api.IDomainEvent[];
|
|
9155
|
+
'.wix.api.actionPayload'?: $responses.wix.api.IActionPayload;
|
|
8092
9156
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
8093
9157
|
}
|
|
8094
9158
|
export interface IFieldOptions {
|
|
@@ -8099,29 +9163,32 @@ declare namespace $responses {
|
|
|
8099
9163
|
deprecated: boolean;
|
|
8100
9164
|
weak: boolean;
|
|
8101
9165
|
uninterpretedOption: $responses.google.protobuf.IUninterpretedOption[];
|
|
8102
|
-
'.wix.api.fieldExposure': $responses.wix.api.Exposure;
|
|
8103
|
-
'.wix.api.fieldMaturity': $responses.wix.api.Maturity;
|
|
8104
|
-
'.wix.api.pii': boolean;
|
|
8105
|
-
'.wix.api.referencedEntity': string;
|
|
8106
|
-
'.wix.api.referencedEntityField'?: $responses.wix.api.IReferenceEntityField;
|
|
8107
|
-
'.wix.api.fieldDeprecated'?: $responses.wix.api.IDeprecated;
|
|
8108
|
-
'.wix.api.translatable'?: $responses.wix.api.ITranslatable;
|
|
8109
|
-
'.wix.api.sampleData': string;
|
|
8110
|
-
'.wix.api.conditional'?: $responses.wix.api.IConditional;
|
|
8111
|
-
'.wix.api.nullable': boolean;
|
|
8112
9166
|
'.wix.api.max': number;
|
|
8113
9167
|
'.wix.api.min': number;
|
|
8114
9168
|
'.wix.api.maxLength': number;
|
|
8115
9169
|
'.wix.api.minLength': number;
|
|
9170
|
+
'.wix.api.exactLength': number;
|
|
8116
9171
|
'.wix.api.maxSize': number;
|
|
8117
9172
|
'.wix.api.minSize': number;
|
|
9173
|
+
'.wix.api.exactSize': number;
|
|
8118
9174
|
'.wix.api.format': $responses.wix.api.Format;
|
|
8119
9175
|
'.wix.api.readOnly': boolean;
|
|
8120
9176
|
'.wix.api.immutable': boolean;
|
|
9177
|
+
'.wix.api.writeOnly': boolean;
|
|
8121
9178
|
'.wix.api.decimalValue'?: $responses.wix.api.IDecimalValueOptions;
|
|
8122
9179
|
'.wix.api.customValidation'?: $responses.wix.api.ICustomValidationError;
|
|
8123
|
-
'.wix.
|
|
9180
|
+
'.wix.api.fieldExposure': $responses.wix.api.Exposure;
|
|
9181
|
+
'.wix.api.fieldMaturity': $responses.wix.api.Maturity;
|
|
9182
|
+
'.wix.api.pii': boolean;
|
|
9183
|
+
'.wix.api.referencedEntity': string;
|
|
9184
|
+
'.wix.api.referencedEntityField'?: $responses.wix.api.IReferenceEntityField;
|
|
9185
|
+
'.wix.api.fieldDeprecated'?: $responses.wix.api.IDeprecated;
|
|
9186
|
+
'.wix.api.translatable'?: $responses.wix.api.ITranslatable;
|
|
9187
|
+
'.wix.api.sampleData': string;
|
|
9188
|
+
'.wix.api.conditional'?: $responses.wix.api.IConditional;
|
|
9189
|
+
'.wix.api.nullable': boolean;
|
|
8124
9190
|
'.wix.spi.baseUri': boolean;
|
|
9191
|
+
'.wix.http.inferFieldmaskFrom': string;
|
|
8125
9192
|
}
|
|
8126
9193
|
export class FieldOptions implements IFieldOptions {
|
|
8127
9194
|
constructor(data?: IFieldOptions);
|
|
@@ -8132,29 +9199,32 @@ declare namespace $responses {
|
|
|
8132
9199
|
deprecated: boolean;
|
|
8133
9200
|
weak: boolean;
|
|
8134
9201
|
uninterpretedOption: $responses.google.protobuf.IUninterpretedOption[];
|
|
8135
|
-
'.wix.api.fieldExposure': $responses.wix.api.Exposure;
|
|
8136
|
-
'.wix.api.fieldMaturity': $responses.wix.api.Maturity;
|
|
8137
|
-
'.wix.api.pii': boolean;
|
|
8138
|
-
'.wix.api.referencedEntity': string;
|
|
8139
|
-
'.wix.api.referencedEntityField'?: $responses.wix.api.IReferenceEntityField;
|
|
8140
|
-
'.wix.api.fieldDeprecated'?: $responses.wix.api.IDeprecated;
|
|
8141
|
-
'.wix.api.translatable'?: $responses.wix.api.ITranslatable;
|
|
8142
|
-
'.wix.api.sampleData': string;
|
|
8143
|
-
'.wix.api.conditional'?: $responses.wix.api.IConditional;
|
|
8144
|
-
'.wix.api.nullable': boolean;
|
|
8145
9202
|
'.wix.api.max': number;
|
|
8146
9203
|
'.wix.api.min': number;
|
|
8147
9204
|
'.wix.api.maxLength': number;
|
|
8148
9205
|
'.wix.api.minLength': number;
|
|
9206
|
+
'.wix.api.exactLength': number;
|
|
8149
9207
|
'.wix.api.maxSize': number;
|
|
8150
9208
|
'.wix.api.minSize': number;
|
|
9209
|
+
'.wix.api.exactSize': number;
|
|
8151
9210
|
'.wix.api.format': $responses.wix.api.Format;
|
|
8152
9211
|
'.wix.api.readOnly': boolean;
|
|
8153
9212
|
'.wix.api.immutable': boolean;
|
|
9213
|
+
'.wix.api.writeOnly': boolean;
|
|
8154
9214
|
'.wix.api.decimalValue'?: $responses.wix.api.IDecimalValueOptions;
|
|
8155
9215
|
'.wix.api.customValidation'?: $responses.wix.api.ICustomValidationError;
|
|
8156
|
-
'.wix.
|
|
9216
|
+
'.wix.api.fieldExposure': $responses.wix.api.Exposure;
|
|
9217
|
+
'.wix.api.fieldMaturity': $responses.wix.api.Maturity;
|
|
9218
|
+
'.wix.api.pii': boolean;
|
|
9219
|
+
'.wix.api.referencedEntity': string;
|
|
9220
|
+
'.wix.api.referencedEntityField'?: $responses.wix.api.IReferenceEntityField;
|
|
9221
|
+
'.wix.api.fieldDeprecated'?: $responses.wix.api.IDeprecated;
|
|
9222
|
+
'.wix.api.translatable'?: $responses.wix.api.ITranslatable;
|
|
9223
|
+
'.wix.api.sampleData': string;
|
|
9224
|
+
'.wix.api.conditional'?: $responses.wix.api.IConditional;
|
|
9225
|
+
'.wix.api.nullable': boolean;
|
|
8157
9226
|
'.wix.spi.baseUri': boolean;
|
|
9227
|
+
'.wix.http.inferFieldmaskFrom': string;
|
|
8158
9228
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
8159
9229
|
}
|
|
8160
9230
|
export namespace FieldOptions {
|
|
@@ -8212,11 +9282,11 @@ declare namespace $responses {
|
|
|
8212
9282
|
'.wix.api.serviceExposure': $responses.wix.api.Exposure;
|
|
8213
9283
|
'.wix.api.serviceDeprecated'?: $responses.wix.api.IDeprecated;
|
|
8214
9284
|
'.wix.api.appendixFiles': $responses.wix.api.IServiceAppendix[];
|
|
8215
|
-
'.wix.api.event': $responses.wix.api.ICallback[];
|
|
8216
|
-
'.wix.api.eventDeprecated': $responses.wix.api.ICallbackDeprecation[];
|
|
8217
|
-
'.wix.api.serviceEntity'?: $responses.wix.api.IServiceEntity;
|
|
8218
9285
|
'.wix.spi.service'?: $responses.wix.spi.IService;
|
|
8219
9286
|
'.wix.spi.event': $responses.wix.spi.IEvent[];
|
|
9287
|
+
'.wix.api.serviceEntity'?: $responses.wix.api.IServiceEntity;
|
|
9288
|
+
'.wix.api.event': $responses.wix.api.ICallback[];
|
|
9289
|
+
'.wix.api.eventDeprecated': $responses.wix.api.ICallbackDeprecation[];
|
|
8220
9290
|
}
|
|
8221
9291
|
export class ServiceOptions implements IServiceOptions {
|
|
8222
9292
|
constructor(data?: IServiceOptions);
|
|
@@ -8226,26 +9296,30 @@ declare namespace $responses {
|
|
|
8226
9296
|
'.wix.api.serviceExposure': $responses.wix.api.Exposure;
|
|
8227
9297
|
'.wix.api.serviceDeprecated'?: $responses.wix.api.IDeprecated;
|
|
8228
9298
|
'.wix.api.appendixFiles': $responses.wix.api.IServiceAppendix[];
|
|
8229
|
-
'.wix.api.event': $responses.wix.api.ICallback[];
|
|
8230
|
-
'.wix.api.eventDeprecated': $responses.wix.api.ICallbackDeprecation[];
|
|
8231
|
-
'.wix.api.serviceEntity'?: $responses.wix.api.IServiceEntity;
|
|
8232
9299
|
'.wix.spi.service'?: $responses.wix.spi.IService;
|
|
8233
9300
|
'.wix.spi.event': $responses.wix.spi.IEvent[];
|
|
9301
|
+
'.wix.api.serviceEntity'?: $responses.wix.api.IServiceEntity;
|
|
9302
|
+
'.wix.api.event': $responses.wix.api.ICallback[];
|
|
9303
|
+
'.wix.api.eventDeprecated': $responses.wix.api.ICallbackDeprecation[];
|
|
8234
9304
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
8235
9305
|
}
|
|
8236
9306
|
export interface IMethodOptions {
|
|
8237
9307
|
deprecated: boolean;
|
|
8238
9308
|
idempotencyLevel: $responses.google.protobuf.MethodOptions.IdempotencyLevel;
|
|
8239
9309
|
uninterpretedOption: $responses.google.protobuf.IUninterpretedOption[];
|
|
9310
|
+
'.wix.api.required': string[];
|
|
9311
|
+
'.wix.api.writable': string[];
|
|
9312
|
+
'.wix.api.error': $responses.wix.api.IError[];
|
|
9313
|
+
'.wix.api.customValidationError': $responses.wix.api.ICustomValidationError[];
|
|
9314
|
+
'.wix.api.inheritCrudErrors': $responses.wix.api.IInheritCrudErrors[];
|
|
8240
9315
|
'.wix.api.exposure': $responses.wix.api.Exposure;
|
|
8241
9316
|
'.wix.api.maturity': $responses.wix.api.Maturity;
|
|
8242
9317
|
'.wix.api.cacheable'?: $responses.wix.api.ICacheSettings;
|
|
8243
9318
|
'.wix.api.deprecated'?: $responses.wix.api.IDeprecated;
|
|
8244
9319
|
'.wix.api.crud'?: $responses.wix.api.ICrud;
|
|
8245
9320
|
'.wix.api.acceptsLinguist': boolean;
|
|
8246
|
-
'.wix.
|
|
8247
|
-
'.wix.
|
|
8248
|
-
'.wix.api.inheritCrudErrors': $responses.wix.api.IInheritCrudErrors[];
|
|
9321
|
+
'.wix.spi.error': $responses.wix.spi.IError[];
|
|
9322
|
+
'.wix.spi.featureToggle': string;
|
|
8249
9323
|
'.wix.api.callback': $responses.wix.api.ICallback[];
|
|
8250
9324
|
'.wix.api.emits': $responses.wix.api.IEmits[];
|
|
8251
9325
|
'.wix.api.idempotency'?: $responses.wix.api.IIdempotency;
|
|
@@ -8253,28 +9327,28 @@ declare namespace $responses {
|
|
|
8253
9327
|
'.wix.api.additionalPermission': $responses.wix.api.IPermissionRule[];
|
|
8254
9328
|
'.wix.api.sla'?: $responses.wix.api.ISla;
|
|
8255
9329
|
'.wix.api.subscription'?: $responses.wix.api.ISubscription;
|
|
8256
|
-
'.wix.api.required': string[];
|
|
8257
|
-
'.wix.api.writable': string[];
|
|
8258
|
-
'.wix.http.inferFieldmask'?: $responses.wix.http.IInferFieldmask;
|
|
8259
9330
|
'.google.api.http'?: $responses.google.api.IHttpRule;
|
|
9331
|
+
'.wix.http.inferFieldmask'?: $responses.wix.http.IInferFieldmask;
|
|
8260
9332
|
'.wix.sdk.signature': $responses.wix.sdk.ISignature[];
|
|
8261
|
-
'.wix.spi.error': $responses.wix.spi.IError[];
|
|
8262
|
-
'.wix.spi.featureToggle': string;
|
|
8263
9333
|
}
|
|
8264
9334
|
export class MethodOptions implements IMethodOptions {
|
|
8265
9335
|
constructor(data?: IMethodOptions);
|
|
8266
9336
|
deprecated: boolean;
|
|
8267
9337
|
idempotencyLevel: $responses.google.protobuf.MethodOptions.IdempotencyLevel;
|
|
8268
9338
|
uninterpretedOption: $responses.google.protobuf.IUninterpretedOption[];
|
|
9339
|
+
'.wix.api.required': string[];
|
|
9340
|
+
'.wix.api.writable': string[];
|
|
9341
|
+
'.wix.api.error': $responses.wix.api.IError[];
|
|
9342
|
+
'.wix.api.customValidationError': $responses.wix.api.ICustomValidationError[];
|
|
9343
|
+
'.wix.api.inheritCrudErrors': $responses.wix.api.IInheritCrudErrors[];
|
|
8269
9344
|
'.wix.api.exposure': $responses.wix.api.Exposure;
|
|
8270
9345
|
'.wix.api.maturity': $responses.wix.api.Maturity;
|
|
8271
9346
|
'.wix.api.cacheable'?: $responses.wix.api.ICacheSettings;
|
|
8272
9347
|
'.wix.api.deprecated'?: $responses.wix.api.IDeprecated;
|
|
8273
9348
|
'.wix.api.crud'?: $responses.wix.api.ICrud;
|
|
8274
9349
|
'.wix.api.acceptsLinguist': boolean;
|
|
8275
|
-
'.wix.
|
|
8276
|
-
'.wix.
|
|
8277
|
-
'.wix.api.inheritCrudErrors': $responses.wix.api.IInheritCrudErrors[];
|
|
9350
|
+
'.wix.spi.error': $responses.wix.spi.IError[];
|
|
9351
|
+
'.wix.spi.featureToggle': string;
|
|
8278
9352
|
'.wix.api.callback': $responses.wix.api.ICallback[];
|
|
8279
9353
|
'.wix.api.emits': $responses.wix.api.IEmits[];
|
|
8280
9354
|
'.wix.api.idempotency'?: $responses.wix.api.IIdempotency;
|
|
@@ -8282,13 +9356,9 @@ declare namespace $responses {
|
|
|
8282
9356
|
'.wix.api.additionalPermission': $responses.wix.api.IPermissionRule[];
|
|
8283
9357
|
'.wix.api.sla'?: $responses.wix.api.ISla;
|
|
8284
9358
|
'.wix.api.subscription'?: $responses.wix.api.ISubscription;
|
|
8285
|
-
'.wix.api.required': string[];
|
|
8286
|
-
'.wix.api.writable': string[];
|
|
8287
|
-
'.wix.http.inferFieldmask'?: $responses.wix.http.IInferFieldmask;
|
|
8288
9359
|
'.google.api.http'?: $responses.google.api.IHttpRule;
|
|
9360
|
+
'.wix.http.inferFieldmask'?: $responses.wix.http.IInferFieldmask;
|
|
8289
9361
|
'.wix.sdk.signature': $responses.wix.sdk.ISignature[];
|
|
8290
|
-
'.wix.spi.error': $responses.wix.spi.IError[];
|
|
8291
|
-
'.wix.spi.featureToggle': string;
|
|
8292
9362
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
8293
9363
|
}
|
|
8294
9364
|
export namespace MethodOptions {
|
|
@@ -8430,6 +9500,20 @@ declare namespace $responses {
|
|
|
8430
9500
|
export {$responses as responses};
|
|
8431
9501
|
|
|
8432
9502
|
declare namespace $services {
|
|
9503
|
+
export namespace com {
|
|
9504
|
+
export namespace wixpress {
|
|
9505
|
+
export namespace items_selection {
|
|
9506
|
+
export namespace spi {
|
|
9507
|
+
export namespace v1 {
|
|
9508
|
+
export abstract class ItemsSelectionProviderService {
|
|
9509
|
+
abstract queryItems(aspects: AspectStore, req: $requests.com.wixpress.items_selection.spi.v1.IQueryItemsRequest): Promise<$responses.com.wixpress.items_selection.spi.v1.IQueryItemsResponse>
|
|
9510
|
+
abstract queryItems(req: $requests.com.wixpress.items_selection.spi.v1.IQueryItemsRequest): Promise<$responses.com.wixpress.items_selection.spi.v1.IQueryItemsResponse>
|
|
9511
|
+
}
|
|
9512
|
+
}
|
|
9513
|
+
}
|
|
9514
|
+
}
|
|
9515
|
+
}
|
|
9516
|
+
}
|
|
8433
9517
|
export namespace wix {
|
|
8434
9518
|
export namespace os {
|
|
8435
9519
|
export namespace v1 {
|