@wix/forms 1.0.148 → 1.0.149

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.
@@ -1,29 +1,127 @@
1
- type RESTFunctionDescriptor<T extends (...args: any[]) => any = (...args: any[]) => any> = (httpClient: HttpClient) => T;
2
- interface HttpClient {
3
- request<TResponse, TData = any>(req: RequestOptionsFactory<TResponse, TData>): Promise<HttpResponse<TResponse>>;
1
+ type HostModule$2<T, H extends Host$2> = {
2
+ __type: 'host';
3
+ create(host: H): T;
4
+ };
5
+ type HostModuleAPI$2<T extends HostModule$2<any, any>> = T extends HostModule$2<infer U, any> ? U : never;
6
+ type Host$2<Environment = unknown> = {
7
+ channel: {
8
+ observeState(callback: (props: unknown, environment: Environment) => unknown): {
9
+ disconnect: () => void;
10
+ } | Promise<{
11
+ disconnect: () => void;
12
+ }>;
13
+ };
14
+ environment?: Environment;
15
+ /**
16
+ * Optional bast url to use for API requests, for example `www.wixapis.com`
17
+ */
18
+ apiBaseUrl?: string;
19
+ /**
20
+ * Possible data to be provided by every host, for cross cutting concerns
21
+ * like internationalization, billing, etc.
22
+ */
23
+ essentials?: {
24
+ /**
25
+ * The language of the currently viewed session
26
+ */
27
+ language?: string;
28
+ /**
29
+ * The locale of the currently viewed session
30
+ */
31
+ locale?: string;
32
+ /**
33
+ * Any headers that should be passed through to the API requests
34
+ */
35
+ passThroughHeaders?: Record<string, string>;
36
+ };
37
+ };
38
+
39
+ type RESTFunctionDescriptor$2<T extends (...args: any[]) => any = (...args: any[]) => any> = (httpClient: HttpClient$2) => T;
40
+ interface HttpClient$2 {
41
+ request<TResponse, TData = any>(req: RequestOptionsFactory$2<TResponse, TData>): Promise<HttpResponse$2<TResponse>>;
4
42
  fetchWithAuth: typeof fetch;
5
43
  wixAPIFetch: (relativeUrl: string, options: RequestInit) => Promise<Response>;
44
+ getActiveToken?: () => string | undefined;
6
45
  }
7
- type RequestOptionsFactory<TResponse = any, TData = any> = (context: any) => RequestOptions<TResponse, TData>;
8
- type HttpResponse<T = any> = {
46
+ type RequestOptionsFactory$2<TResponse = any, TData = any> = (context: any) => RequestOptions$2<TResponse, TData>;
47
+ type HttpResponse$2<T = any> = {
9
48
  data: T;
10
49
  status: number;
11
50
  statusText: string;
12
51
  headers: any;
13
52
  request?: any;
14
53
  };
15
- type RequestOptions<_TResponse = any, Data = any> = {
54
+ type RequestOptions$2<_TResponse = any, Data = any> = {
16
55
  method: 'POST' | 'GET' | 'PUT' | 'DELETE' | 'PATCH' | 'HEAD' | 'OPTIONS';
17
56
  url: string;
18
57
  data?: Data;
19
58
  params?: URLSearchParams;
20
- } & APIMetadata;
21
- type APIMetadata = {
59
+ } & APIMetadata$2;
60
+ type APIMetadata$2 = {
22
61
  methodFqn?: string;
23
62
  entityFqdn?: string;
24
63
  packageName?: string;
25
64
  };
26
- type BuildRESTFunction<T extends RESTFunctionDescriptor> = T extends RESTFunctionDescriptor<infer U> ? U : never;
65
+ type BuildRESTFunction$2<T extends RESTFunctionDescriptor$2> = T extends RESTFunctionDescriptor$2<infer U> ? U : never;
66
+ type EventDefinition$2<Payload = unknown, Type extends string = string> = {
67
+ __type: 'event-definition';
68
+ type: Type;
69
+ isDomainEvent?: boolean;
70
+ transformations?: (envelope: unknown) => Payload;
71
+ __payload: Payload;
72
+ };
73
+ declare function EventDefinition$2<Type extends string>(type: Type, isDomainEvent?: boolean, transformations?: (envelope: any) => unknown): <Payload = unknown>() => EventDefinition$2<Payload, Type>;
74
+ type EventHandler$2<T extends EventDefinition$2> = (payload: T['__payload']) => void | Promise<void>;
75
+ type BuildEventDefinition$2<T extends EventDefinition$2<any, string>> = (handler: EventHandler$2<T>) => void;
76
+
77
+ type ServicePluginMethodInput$2 = {
78
+ request: any;
79
+ metadata: any;
80
+ };
81
+ type ServicePluginContract$2 = Record<string, (payload: ServicePluginMethodInput$2) => unknown | Promise<unknown>>;
82
+ type ServicePluginMethodMetadata$2 = {
83
+ name: string;
84
+ primaryHttpMappingPath: string;
85
+ transformations: {
86
+ fromREST: (...args: unknown[]) => ServicePluginMethodInput$2;
87
+ toREST: (...args: unknown[]) => unknown;
88
+ };
89
+ };
90
+ type ServicePluginDefinition$2<Contract extends ServicePluginContract$2> = {
91
+ __type: 'service-plugin-definition';
92
+ componentType: string;
93
+ methods: ServicePluginMethodMetadata$2[];
94
+ __contract: Contract;
95
+ };
96
+ declare function ServicePluginDefinition$2<Contract extends ServicePluginContract$2>(componentType: string, methods: ServicePluginMethodMetadata$2[]): ServicePluginDefinition$2<Contract>;
97
+ type BuildServicePluginDefinition$2<T extends ServicePluginDefinition$2<any>> = (implementation: T['__contract']) => void;
98
+ declare const SERVICE_PLUGIN_ERROR_TYPE$2 = "wix_spi_error";
99
+
100
+ type RequestContext$2 = {
101
+ isSSR: boolean;
102
+ host: string;
103
+ protocol?: string;
104
+ };
105
+ type ResponseTransformer$2 = (data: any, headers?: any) => any;
106
+ /**
107
+ * Ambassador request options types are copied mostly from AxiosRequestConfig.
108
+ * They are copied and not imported to reduce the amount of dependencies (to reduce install time).
109
+ * https://github.com/axios/axios/blob/3f53eb6960f05a1f88409c4b731a40de595cb825/index.d.ts#L307-L315
110
+ */
111
+ type Method$2 = 'get' | 'GET' | 'delete' | 'DELETE' | 'head' | 'HEAD' | 'options' | 'OPTIONS' | 'post' | 'POST' | 'put' | 'PUT' | 'patch' | 'PATCH' | 'purge' | 'PURGE' | 'link' | 'LINK' | 'unlink' | 'UNLINK';
112
+ type AmbassadorRequestOptions$2<T = any> = {
113
+ _?: T;
114
+ url?: string;
115
+ method?: Method$2;
116
+ params?: any;
117
+ data?: any;
118
+ transformResponse?: ResponseTransformer$2 | ResponseTransformer$2[];
119
+ };
120
+ type AmbassadorFactory$2<Request, Response> = (payload: Request) => ((context: RequestContext$2) => AmbassadorRequestOptions$2<Response>) & {
121
+ __isAmbassador: boolean;
122
+ };
123
+ type AmbassadorFunctionDescriptor$2<Request = any, Response = any> = AmbassadorFactory$2<Request, Response>;
124
+ type BuildAmbassadorFunction$2<T extends AmbassadorFunctionDescriptor$2> = T extends AmbassadorFunctionDescriptor$2<infer Request, infer Response> ? (req: Request) => Promise<Response> : never;
27
125
 
28
126
  declare global {
29
127
  // eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- It has to be an `interface` so that it can be merged.
@@ -32,6 +130,284 @@ declare global {
32
130
  }
33
131
  }
34
132
 
133
+ declare const emptyObjectSymbol$2: unique symbol;
134
+
135
+ /**
136
+ Represents a strictly empty plain object, the `{}` value.
137
+
138
+ When you annotate something as the type `{}`, it can be anything except `null` and `undefined`. This means that you cannot use `{}` to represent an empty plain object ([read more](https://stackoverflow.com/questions/47339869/typescript-empty-object-and-any-difference/52193484#52193484)).
139
+
140
+ @example
141
+ ```
142
+ import type {EmptyObject} from 'type-fest';
143
+
144
+ // The following illustrates the problem with `{}`.
145
+ const foo1: {} = {}; // Pass
146
+ const foo2: {} = []; // Pass
147
+ const foo3: {} = 42; // Pass
148
+ const foo4: {} = {a: 1}; // Pass
149
+
150
+ // With `EmptyObject` only the first case is valid.
151
+ const bar1: EmptyObject = {}; // Pass
152
+ const bar2: EmptyObject = 42; // Fail
153
+ const bar3: EmptyObject = []; // Fail
154
+ const bar4: EmptyObject = {a: 1}; // Fail
155
+ ```
156
+
157
+ Unfortunately, `Record<string, never>`, `Record<keyof any, never>` and `Record<never, never>` do not work. See {@link https://github.com/sindresorhus/type-fest/issues/395 #395}.
158
+
159
+ @category Object
160
+ */
161
+ type EmptyObject$2 = {[emptyObjectSymbol$2]?: never};
162
+
163
+ /**
164
+ Returns a boolean for whether the two given types are equal.
165
+
166
+ @link https://github.com/microsoft/TypeScript/issues/27024#issuecomment-421529650
167
+ @link https://stackoverflow.com/questions/68961864/how-does-the-equals-work-in-typescript/68963796#68963796
168
+
169
+ Use-cases:
170
+ - If you want to make a conditional branch based on the result of a comparison of two types.
171
+
172
+ @example
173
+ ```
174
+ import type {IsEqual} from 'type-fest';
175
+
176
+ // This type returns a boolean for whether the given array includes the given item.
177
+ // `IsEqual` is used to compare the given array at position 0 and the given item and then return true if they are equal.
178
+ type Includes<Value extends readonly any[], Item> =
179
+ Value extends readonly [Value[0], ...infer rest]
180
+ ? IsEqual<Value[0], Item> extends true
181
+ ? true
182
+ : Includes<rest, Item>
183
+ : false;
184
+ ```
185
+
186
+ @category Type Guard
187
+ @category Utilities
188
+ */
189
+ type IsEqual$2<A, B> =
190
+ (<G>() => G extends A ? 1 : 2) extends
191
+ (<G>() => G extends B ? 1 : 2)
192
+ ? true
193
+ : false;
194
+
195
+ /**
196
+ Filter out keys from an object.
197
+
198
+ Returns `never` if `Exclude` is strictly equal to `Key`.
199
+ Returns `never` if `Key` extends `Exclude`.
200
+ Returns `Key` otherwise.
201
+
202
+ @example
203
+ ```
204
+ type Filtered = Filter<'foo', 'foo'>;
205
+ //=> never
206
+ ```
207
+
208
+ @example
209
+ ```
210
+ type Filtered = Filter<'bar', string>;
211
+ //=> never
212
+ ```
213
+
214
+ @example
215
+ ```
216
+ type Filtered = Filter<'bar', 'foo'>;
217
+ //=> 'bar'
218
+ ```
219
+
220
+ @see {Except}
221
+ */
222
+ type Filter$2<KeyType, ExcludeType> = IsEqual$2<KeyType, ExcludeType> extends true ? never : (KeyType extends ExcludeType ? never : KeyType);
223
+
224
+ type ExceptOptions$2 = {
225
+ /**
226
+ Disallow assigning non-specified properties.
227
+
228
+ Note that any omitted properties in the resulting type will be present in autocomplete as `undefined`.
229
+
230
+ @default false
231
+ */
232
+ requireExactProps?: boolean;
233
+ };
234
+
235
+ /**
236
+ Create a type from an object type without certain keys.
237
+
238
+ We recommend setting the `requireExactProps` option to `true`.
239
+
240
+ This type is a stricter version of [`Omit`](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-5.html#the-omit-helper-type). The `Omit` type does not restrict the omitted keys to be keys present on the given type, while `Except` does. The benefits of a stricter type are avoiding typos and allowing the compiler to pick up on rename refactors automatically.
241
+
242
+ This type was proposed to the TypeScript team, which declined it, saying they prefer that libraries implement stricter versions of the built-in types ([microsoft/TypeScript#30825](https://github.com/microsoft/TypeScript/issues/30825#issuecomment-523668235)).
243
+
244
+ @example
245
+ ```
246
+ import type {Except} from 'type-fest';
247
+
248
+ type Foo = {
249
+ a: number;
250
+ b: string;
251
+ };
252
+
253
+ type FooWithoutA = Except<Foo, 'a'>;
254
+ //=> {b: string}
255
+
256
+ const fooWithoutA: FooWithoutA = {a: 1, b: '2'};
257
+ //=> errors: 'a' does not exist in type '{ b: string; }'
258
+
259
+ type FooWithoutB = Except<Foo, 'b', {requireExactProps: true}>;
260
+ //=> {a: number} & Partial<Record<"b", never>>
261
+
262
+ const fooWithoutB: FooWithoutB = {a: 1, b: '2'};
263
+ //=> errors at 'b': Type 'string' is not assignable to type 'undefined'.
264
+ ```
265
+
266
+ @category Object
267
+ */
268
+ type Except$2<ObjectType, KeysType extends keyof ObjectType, Options extends ExceptOptions$2 = {requireExactProps: false}> = {
269
+ [KeyType in keyof ObjectType as Filter$2<KeyType, KeysType>]: ObjectType[KeyType];
270
+ } & (Options['requireExactProps'] extends true
271
+ ? Partial<Record<KeysType, never>>
272
+ : {});
273
+
274
+ /**
275
+ Extract the keys from a type where the value type of the key extends the given `Condition`.
276
+
277
+ Internally this is used for the `ConditionalPick` and `ConditionalExcept` types.
278
+
279
+ @example
280
+ ```
281
+ import type {ConditionalKeys} from 'type-fest';
282
+
283
+ interface Example {
284
+ a: string;
285
+ b: string | number;
286
+ c?: string;
287
+ d: {};
288
+ }
289
+
290
+ type StringKeysOnly = ConditionalKeys<Example, string>;
291
+ //=> 'a'
292
+ ```
293
+
294
+ To support partial types, make sure your `Condition` is a union of undefined (for example, `string | undefined`) as demonstrated below.
295
+
296
+ @example
297
+ ```
298
+ import type {ConditionalKeys} from 'type-fest';
299
+
300
+ type StringKeysAndUndefined = ConditionalKeys<Example, string | undefined>;
301
+ //=> 'a' | 'c'
302
+ ```
303
+
304
+ @category Object
305
+ */
306
+ type ConditionalKeys$2<Base, Condition> = NonNullable<
307
+ // Wrap in `NonNullable` to strip away the `undefined` type from the produced union.
308
+ {
309
+ // Map through all the keys of the given base type.
310
+ [Key in keyof Base]:
311
+ // Pick only keys with types extending the given `Condition` type.
312
+ Base[Key] extends Condition
313
+ // Retain this key since the condition passes.
314
+ ? Key
315
+ // Discard this key since the condition fails.
316
+ : never;
317
+
318
+ // Convert the produced object into a union type of the keys which passed the conditional test.
319
+ }[keyof Base]
320
+ >;
321
+
322
+ /**
323
+ Exclude keys from a shape that matches the given `Condition`.
324
+
325
+ This is useful when you want to create a new type with a specific set of keys from a shape. For example, you might want to exclude all the primitive properties from a class and form a new shape containing everything but the primitive properties.
326
+
327
+ @example
328
+ ```
329
+ import type {Primitive, ConditionalExcept} from 'type-fest';
330
+
331
+ class Awesome {
332
+ name: string;
333
+ successes: number;
334
+ failures: bigint;
335
+
336
+ run() {}
337
+ }
338
+
339
+ type ExceptPrimitivesFromAwesome = ConditionalExcept<Awesome, Primitive>;
340
+ //=> {run: () => void}
341
+ ```
342
+
343
+ @example
344
+ ```
345
+ import type {ConditionalExcept} from 'type-fest';
346
+
347
+ interface Example {
348
+ a: string;
349
+ b: string | number;
350
+ c: () => void;
351
+ d: {};
352
+ }
353
+
354
+ type NonStringKeysOnly = ConditionalExcept<Example, string>;
355
+ //=> {b: string | number; c: () => void; d: {}}
356
+ ```
357
+
358
+ @category Object
359
+ */
360
+ type ConditionalExcept$2<Base, Condition> = Except$2<
361
+ Base,
362
+ ConditionalKeys$2<Base, Condition>
363
+ >;
364
+
365
+ /**
366
+ * Descriptors are objects that describe the API of a module, and the module
367
+ * can either be a REST module or a host module.
368
+ * This type is recursive, so it can describe nested modules.
369
+ */
370
+ type Descriptors$2 = RESTFunctionDescriptor$2 | AmbassadorFunctionDescriptor$2 | HostModule$2<any, any> | EventDefinition$2<any> | ServicePluginDefinition$2<any> | {
371
+ [key: string]: Descriptors$2 | PublicMetadata$2 | any;
372
+ };
373
+ /**
374
+ * This type takes in a descriptors object of a certain Host (including an `unknown` host)
375
+ * and returns an object with the same structure, but with all descriptors replaced with their API.
376
+ * Any non-descriptor properties are removed from the returned object, including descriptors that
377
+ * do not match the given host (as they will not work with the given host).
378
+ */
379
+ type BuildDescriptors$2<T extends Descriptors$2, H extends Host$2<any> | undefined, Depth extends number = 5> = {
380
+ done: T;
381
+ recurse: T extends {
382
+ __type: typeof SERVICE_PLUGIN_ERROR_TYPE$2;
383
+ } ? never : T extends AmbassadorFunctionDescriptor$2 ? BuildAmbassadorFunction$2<T> : T extends RESTFunctionDescriptor$2 ? BuildRESTFunction$2<T> : T extends EventDefinition$2<any> ? BuildEventDefinition$2<T> : T extends ServicePluginDefinition$2<any> ? BuildServicePluginDefinition$2<T> : T extends HostModule$2<any, any> ? HostModuleAPI$2<T> : ConditionalExcept$2<{
384
+ [Key in keyof T]: T[Key] extends Descriptors$2 ? BuildDescriptors$2<T[Key], H, [
385
+ -1,
386
+ 0,
387
+ 1,
388
+ 2,
389
+ 3,
390
+ 4,
391
+ 5
392
+ ][Depth]> : never;
393
+ }, EmptyObject$2>;
394
+ }[Depth extends -1 ? 'done' : 'recurse'];
395
+ type PublicMetadata$2 = {
396
+ PACKAGE_NAME?: string;
397
+ };
398
+
399
+ declare global {
400
+ interface ContextualClient {
401
+ }
402
+ }
403
+ /**
404
+ * A type used to create concerete types from SDK descriptors in
405
+ * case a contextual client is available.
406
+ */
407
+ type MaybeContext$2<T extends Descriptors$2> = globalThis.ContextualClient extends {
408
+ host: Host$2;
409
+ } ? BuildDescriptors$2<T, globalThis.ContextualClient['host']> : T;
410
+
35
411
  interface Form$1 {
36
412
  /**
37
413
  * Form ID.
@@ -2028,6 +2404,11 @@ interface PhoneInput$1 {
2028
2404
  showLabel?: boolean | null;
2029
2405
  /** Default value of the country code */
2030
2406
  defaultCountryCode?: string | null;
2407
+ /**
2408
+ * Flag identifying to show country flag or not
2409
+ * Default: false
2410
+ */
2411
+ showCountryFlag?: boolean;
2031
2412
  }
2032
2413
  interface DateInput$1 {
2033
2414
  /** Label of the field. Displayed text for the date/time input. */
@@ -3949,6 +4330,7 @@ interface DateTimeInputNonNullableFields {
3949
4330
  }
3950
4331
  interface PhoneInputNonNullableFields {
3951
4332
  description?: RichContentNonNullableFields;
4333
+ showCountryFlag: boolean;
3952
4334
  }
3953
4335
  interface DateInputNonNullableFields {
3954
4336
  description?: RichContentNonNullableFields;
@@ -4547,7 +4929,7 @@ interface UpdateExtendedFieldsOptions {
4547
4929
  namespaceData: Record<string, any> | null;
4548
4930
  }
4549
4931
 
4550
- declare function createForm$1(httpClient: HttpClient): CreateFormSignature;
4932
+ declare function createForm$1(httpClient: HttpClient$2): CreateFormSignature;
4551
4933
  interface CreateFormSignature {
4552
4934
  /**
4553
4935
  * Creates a new form.
@@ -4556,14 +4938,14 @@ interface CreateFormSignature {
4556
4938
  */
4557
4939
  (form: Form$1): Promise<Form$1 & FormNonNullableFields>;
4558
4940
  }
4559
- declare function bulkCreateForm$1(httpClient: HttpClient): BulkCreateFormSignature;
4941
+ declare function bulkCreateForm$1(httpClient: HttpClient$2): BulkCreateFormSignature;
4560
4942
  interface BulkCreateFormSignature {
4561
4943
  /**
4562
4944
  * Creates multiple new forms.
4563
4945
  */
4564
4946
  (options?: BulkCreateFormOptions | undefined): Promise<BulkCreateFormResponse & BulkCreateFormResponseNonNullableFields>;
4565
4947
  }
4566
- declare function cloneForm$1(httpClient: HttpClient): CloneFormSignature;
4948
+ declare function cloneForm$1(httpClient: HttpClient$2): CloneFormSignature;
4567
4949
  interface CloneFormSignature {
4568
4950
  /**
4569
4951
  * Clones an existing form.
@@ -4571,7 +4953,7 @@ interface CloneFormSignature {
4571
4953
  */
4572
4954
  (formId: string): Promise<CloneFormResponse & CloneFormResponseNonNullableFields>;
4573
4955
  }
4574
- declare function getForm$1(httpClient: HttpClient): GetFormSignature;
4956
+ declare function getForm$1(httpClient: HttpClient$2): GetFormSignature;
4575
4957
  interface GetFormSignature {
4576
4958
  /**
4577
4959
  * Gets a form by id.
@@ -4580,7 +4962,7 @@ interface GetFormSignature {
4580
4962
  */
4581
4963
  (formId: string, options?: GetFormOptions | undefined): Promise<Form$1 & FormNonNullableFields>;
4582
4964
  }
4583
- declare function updateForm$1(httpClient: HttpClient): UpdateFormSignature;
4965
+ declare function updateForm$1(httpClient: HttpClient$2): UpdateFormSignature;
4584
4966
  interface UpdateFormSignature {
4585
4967
  /**
4586
4968
  * Updates a form, supports partial update.
@@ -4590,7 +4972,7 @@ interface UpdateFormSignature {
4590
4972
  */
4591
4973
  (_id: string | null, form: UpdateForm): Promise<Form$1 & FormNonNullableFields>;
4592
4974
  }
4593
- declare function removeFormFromTrashBin$1(httpClient: HttpClient): RemoveFormFromTrashBinSignature;
4975
+ declare function removeFormFromTrashBin$1(httpClient: HttpClient$2): RemoveFormFromTrashBinSignature;
4594
4976
  interface RemoveFormFromTrashBinSignature {
4595
4977
  /**
4596
4978
  * Deletes a form. It is stored in trash for 90 days.
@@ -4599,7 +4981,7 @@ interface RemoveFormFromTrashBinSignature {
4599
4981
  */
4600
4982
  (formId: string): Promise<void>;
4601
4983
  }
4602
- declare function deleteForm$1(httpClient: HttpClient): DeleteFormSignature;
4984
+ declare function deleteForm$1(httpClient: HttpClient$2): DeleteFormSignature;
4603
4985
  interface DeleteFormSignature {
4604
4986
  /**
4605
4987
  * Deletes a form. It is stored in trash for 90 days.
@@ -4608,7 +4990,7 @@ interface DeleteFormSignature {
4608
4990
  */
4609
4991
  (formId: string, options?: DeleteFormOptions | undefined): Promise<void>;
4610
4992
  }
4611
- declare function restoreFromTrashBin$1(httpClient: HttpClient): RestoreFromTrashBinSignature;
4993
+ declare function restoreFromTrashBin$1(httpClient: HttpClient$2): RestoreFromTrashBinSignature;
4612
4994
  interface RestoreFromTrashBinSignature {
4613
4995
  /**
4614
4996
  * Restores a form from trash.
@@ -4616,14 +4998,14 @@ interface RestoreFromTrashBinSignature {
4616
4998
  */
4617
4999
  (formId: string): Promise<RestoreFromTrashBinResponse & RestoreFromTrashBinResponseNonNullableFields>;
4618
5000
  }
4619
- declare function queryForms$1(httpClient: HttpClient): QueryFormsSignature;
5001
+ declare function queryForms$1(httpClient: HttpClient$2): QueryFormsSignature;
4620
5002
  interface QueryFormsSignature {
4621
5003
  /**
4622
5004
  * Query forms using [WQL - Wix Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language).
4623
5005
  */
4624
5006
  (options?: QueryFormsOptions | undefined): FormsQueryBuilder;
4625
5007
  }
4626
- declare function countForms$1(httpClient: HttpClient): CountFormsSignature;
5008
+ declare function countForms$1(httpClient: HttpClient$2): CountFormsSignature;
4627
5009
  interface CountFormsSignature {
4628
5010
  /**
4629
5011
  * Counts forms.
@@ -4631,7 +5013,7 @@ interface CountFormsSignature {
4631
5013
  */
4632
5014
  (namespace: string, options?: CountFormsOptions | undefined): Promise<CountFormsResponse & CountFormsResponseNonNullableFields>;
4633
5015
  }
4634
- declare function listForms$1(httpClient: HttpClient): ListFormsSignature;
5016
+ declare function listForms$1(httpClient: HttpClient$2): ListFormsSignature;
4635
5017
  interface ListFormsSignature {
4636
5018
  /**
4637
5019
  * Lists forms, filtered by namespace and its disabled status. If specified, sorts forms in the desired order.
@@ -4640,7 +5022,7 @@ interface ListFormsSignature {
4640
5022
  */
4641
5023
  (namespace: string, options?: ListFormsOptions | undefined): Promise<ListFormsResponse & ListFormsResponseNonNullableFields>;
4642
5024
  }
4643
- declare function getDeletedForm$1(httpClient: HttpClient): GetDeletedFormSignature;
5025
+ declare function getDeletedForm$1(httpClient: HttpClient$2): GetDeletedFormSignature;
4644
5026
  interface GetDeletedFormSignature {
4645
5027
  /**
4646
5028
  * Get a deleted Form by id
@@ -4648,7 +5030,7 @@ interface GetDeletedFormSignature {
4648
5030
  */
4649
5031
  (formId: string): Promise<GetDeletedFormResponse & GetDeletedFormResponseNonNullableFields>;
4650
5032
  }
4651
- declare function queryDeletedForms$1(httpClient: HttpClient): QueryDeletedFormsSignature;
5033
+ declare function queryDeletedForms$1(httpClient: HttpClient$2): QueryDeletedFormsSignature;
4652
5034
  interface QueryDeletedFormsSignature {
4653
5035
  /**
4654
5036
  * Query deleted Forms using [WQL - Wix Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language)
@@ -4656,7 +5038,7 @@ interface QueryDeletedFormsSignature {
4656
5038
  */
4657
5039
  (query: CursorQuery$2): Promise<QueryDeletedFormsResponse & QueryDeletedFormsResponseNonNullableFields>;
4658
5040
  }
4659
- declare function listDeletedForms$1(httpClient: HttpClient): ListDeletedFormsSignature;
5041
+ declare function listDeletedForms$1(httpClient: HttpClient$2): ListDeletedFormsSignature;
4660
5042
  interface ListDeletedFormsSignature {
4661
5043
  /**
4662
5044
  * List deleted Forms
@@ -4664,7 +5046,7 @@ interface ListDeletedFormsSignature {
4664
5046
  */
4665
5047
  (namespace: string, options?: ListDeletedFormsOptions | undefined): Promise<ListDeletedFormsResponse & ListDeletedFormsResponseNonNullableFields>;
4666
5048
  }
4667
- declare function bulkRemoveDeletedField$1(httpClient: HttpClient): BulkRemoveDeletedFieldSignature;
5049
+ declare function bulkRemoveDeletedField$1(httpClient: HttpClient$2): BulkRemoveDeletedFieldSignature;
4668
5050
  interface BulkRemoveDeletedFieldSignature {
4669
5051
  /**
4670
5052
  * Remove delete field by its target
@@ -4672,7 +5054,7 @@ interface BulkRemoveDeletedFieldSignature {
4672
5054
  */
4673
5055
  (formId: string, options?: BulkRemoveDeletedFieldOptions | undefined): Promise<BulkRemoveDeletedFieldResponse & BulkRemoveDeletedFieldResponseNonNullableFields>;
4674
5056
  }
4675
- declare function updateExtendedFields$1(httpClient: HttpClient): UpdateExtendedFieldsSignature;
5057
+ declare function updateExtendedFields$1(httpClient: HttpClient$2): UpdateExtendedFieldsSignature;
4676
5058
  interface UpdateExtendedFieldsSignature {
4677
5059
  /**
4678
5060
  * Update Extended Fields of the Form
@@ -4681,7 +5063,7 @@ interface UpdateExtendedFieldsSignature {
4681
5063
  */
4682
5064
  (_id: string, namespace: string, options: UpdateExtendedFieldsOptions): Promise<UpdateExtendedFieldsResponse & UpdateExtendedFieldsResponseNonNullableFields>;
4683
5065
  }
4684
- declare function listFormsProvidersConfigs$1(httpClient: HttpClient): ListFormsProvidersConfigsSignature;
5066
+ declare function listFormsProvidersConfigs$1(httpClient: HttpClient$2): ListFormsProvidersConfigsSignature;
4685
5067
  interface ListFormsProvidersConfigsSignature {
4686
5068
  /**
4687
5069
  * List configurations set by apps providing ability to create forms under their domain.
@@ -4689,23 +5071,23 @@ interface ListFormsProvidersConfigsSignature {
4689
5071
  (): Promise<ListFormsProvidersConfigsResponse & ListFormsProvidersConfigsResponseNonNullableFields>;
4690
5072
  }
4691
5073
 
4692
- declare const createForm: BuildRESTFunction<typeof createForm$1> & typeof createForm$1;
4693
- declare const bulkCreateForm: BuildRESTFunction<typeof bulkCreateForm$1> & typeof bulkCreateForm$1;
4694
- declare const cloneForm: BuildRESTFunction<typeof cloneForm$1> & typeof cloneForm$1;
4695
- declare const getForm: BuildRESTFunction<typeof getForm$1> & typeof getForm$1;
4696
- declare const updateForm: BuildRESTFunction<typeof updateForm$1> & typeof updateForm$1;
4697
- declare const removeFormFromTrashBin: BuildRESTFunction<typeof removeFormFromTrashBin$1> & typeof removeFormFromTrashBin$1;
4698
- declare const deleteForm: BuildRESTFunction<typeof deleteForm$1> & typeof deleteForm$1;
4699
- declare const restoreFromTrashBin: BuildRESTFunction<typeof restoreFromTrashBin$1> & typeof restoreFromTrashBin$1;
4700
- declare const queryForms: BuildRESTFunction<typeof queryForms$1> & typeof queryForms$1;
4701
- declare const countForms: BuildRESTFunction<typeof countForms$1> & typeof countForms$1;
4702
- declare const listForms: BuildRESTFunction<typeof listForms$1> & typeof listForms$1;
4703
- declare const getDeletedForm: BuildRESTFunction<typeof getDeletedForm$1> & typeof getDeletedForm$1;
4704
- declare const queryDeletedForms: BuildRESTFunction<typeof queryDeletedForms$1> & typeof queryDeletedForms$1;
4705
- declare const listDeletedForms: BuildRESTFunction<typeof listDeletedForms$1> & typeof listDeletedForms$1;
4706
- declare const bulkRemoveDeletedField: BuildRESTFunction<typeof bulkRemoveDeletedField$1> & typeof bulkRemoveDeletedField$1;
4707
- declare const updateExtendedFields: BuildRESTFunction<typeof updateExtendedFields$1> & typeof updateExtendedFields$1;
4708
- declare const listFormsProvidersConfigs: BuildRESTFunction<typeof listFormsProvidersConfigs$1> & typeof listFormsProvidersConfigs$1;
5074
+ declare const createForm: MaybeContext$2<BuildRESTFunction$2<typeof createForm$1> & typeof createForm$1>;
5075
+ declare const bulkCreateForm: MaybeContext$2<BuildRESTFunction$2<typeof bulkCreateForm$1> & typeof bulkCreateForm$1>;
5076
+ declare const cloneForm: MaybeContext$2<BuildRESTFunction$2<typeof cloneForm$1> & typeof cloneForm$1>;
5077
+ declare const getForm: MaybeContext$2<BuildRESTFunction$2<typeof getForm$1> & typeof getForm$1>;
5078
+ declare const updateForm: MaybeContext$2<BuildRESTFunction$2<typeof updateForm$1> & typeof updateForm$1>;
5079
+ declare const removeFormFromTrashBin: MaybeContext$2<BuildRESTFunction$2<typeof removeFormFromTrashBin$1> & typeof removeFormFromTrashBin$1>;
5080
+ declare const deleteForm: MaybeContext$2<BuildRESTFunction$2<typeof deleteForm$1> & typeof deleteForm$1>;
5081
+ declare const restoreFromTrashBin: MaybeContext$2<BuildRESTFunction$2<typeof restoreFromTrashBin$1> & typeof restoreFromTrashBin$1>;
5082
+ declare const queryForms: MaybeContext$2<BuildRESTFunction$2<typeof queryForms$1> & typeof queryForms$1>;
5083
+ declare const countForms: MaybeContext$2<BuildRESTFunction$2<typeof countForms$1> & typeof countForms$1>;
5084
+ declare const listForms: MaybeContext$2<BuildRESTFunction$2<typeof listForms$1> & typeof listForms$1>;
5085
+ declare const getDeletedForm: MaybeContext$2<BuildRESTFunction$2<typeof getDeletedForm$1> & typeof getDeletedForm$1>;
5086
+ declare const queryDeletedForms: MaybeContext$2<BuildRESTFunction$2<typeof queryDeletedForms$1> & typeof queryDeletedForms$1>;
5087
+ declare const listDeletedForms: MaybeContext$2<BuildRESTFunction$2<typeof listDeletedForms$1> & typeof listDeletedForms$1>;
5088
+ declare const bulkRemoveDeletedField: MaybeContext$2<BuildRESTFunction$2<typeof bulkRemoveDeletedField$1> & typeof bulkRemoveDeletedField$1>;
5089
+ declare const updateExtendedFields: MaybeContext$2<BuildRESTFunction$2<typeof updateExtendedFields$1> & typeof updateExtendedFields$1>;
5090
+ declare const listFormsProvidersConfigs: MaybeContext$2<BuildRESTFunction$2<typeof listFormsProvidersConfigs$1> & typeof listFormsProvidersConfigs$1>;
4709
5091
 
4710
5092
  type context$2_BulkCreateFormOptions = BulkCreateFormOptions;
4711
5093
  type context$2_BulkCreateFormRequest = BulkCreateFormRequest;
@@ -4805,6 +5187,416 @@ declare namespace context$2 {
4805
5187
  export { type ActionEvent$2 as ActionEvent, type AddressInfo$1 as AddressInfo, type AddressLine2$1 as AddressLine2, Alignment$1 as Alignment, type AnchorData$1 as AnchorData, type AppEmbedData$1 as AppEmbedData, type AppEmbedDataAppDataOneOf$1 as AppEmbedDataAppDataOneOf, AppType$1 as AppType, type ApplicationError$2 as ApplicationError, type ArrayErrorMessages$1 as ArrayErrorMessages, type ArrayItems$1 as ArrayItems, type ArrayItemsItemsOneOf$1 as ArrayItemsItemsOneOf, type ArrayType$1 as ArrayType, type ArrayTypeArrayItems$1 as ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf$1 as ArrayTypeArrayItemsItemTypeOptionsOneOf, type AudioData$1 as AudioData, type Background$1 as Background, type BackgroundBackgroundOneOf$1 as BackgroundBackgroundOneOf, BackgroundType$1 as BackgroundType, type BlockquoteData$1 as BlockquoteData, type BookingData$1 as BookingData, BooleanComponentType$1 as BooleanComponentType, type BooleanErrorMessages$1 as BooleanErrorMessages, type BooleanType$1 as BooleanType, type Border$1 as Border, type BorderColors$1 as BorderColors, type BreakPoint$1 as BreakPoint, type BulkActionMetadata$2 as BulkActionMetadata, type context$2_BulkCreateFormOptions as BulkCreateFormOptions, type context$2_BulkCreateFormRequest as BulkCreateFormRequest, type context$2_BulkCreateFormResponse as BulkCreateFormResponse, type context$2_BulkCreateFormResponseNonNullableFields as BulkCreateFormResponseNonNullableFields, type context$2_BulkFormResult as BulkFormResult, type context$2_BulkRemoveDeletedFieldOptions as BulkRemoveDeletedFieldOptions, type context$2_BulkRemoveDeletedFieldRequest as BulkRemoveDeletedFieldRequest, type context$2_BulkRemoveDeletedFieldResponse as BulkRemoveDeletedFieldResponse, type context$2_BulkRemoveDeletedFieldResponseNonNullableFields as BulkRemoveDeletedFieldResponseNonNullableFields, type BulletedListData$1 as BulletedListData, type ButtonData$1 as ButtonData, ButtonDataType$1 as ButtonDataType, type CellStyle$1 as CellStyle, type Checkbox$1 as Checkbox, type CheckboxGroup$1 as CheckboxGroup, type context$2_CloneFormRequest as CloneFormRequest, type context$2_CloneFormResponse as CloneFormResponse, type context$2_CloneFormResponseNonNullableFields as CloneFormResponseNonNullableFields, type CodeBlockData$1 as CodeBlockData, type CollapsibleListData$1 as CollapsibleListData, type ColorData$1 as ColorData, type Colors$1 as Colors, type CommonCustomOption$1 as CommonCustomOption, ComponentType$1 as ComponentType, ContactField$1 as ContactField, context$2_CountFormsFieldset as CountFormsFieldset, type context$2_CountFormsOptions as CountFormsOptions, type context$2_CountFormsRequest as CountFormsRequest, type context$2_CountFormsResponse as CountFormsResponse, type context$2_CountFormsResponseNonNullableFields as CountFormsResponseNonNullableFields, type context$2_CreateFormRequest as CreateFormRequest, type context$2_CreateFormResponse as CreateFormResponse, type context$2_CreateFormResponseNonNullableFields as CreateFormResponseNonNullableFields, Crop$1 as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type CustomFieldInfo$1 as CustomFieldInfo, type CustomOption$1 as CustomOption, type DataExtensionsDetails$1 as DataExtensionsDetails, type DateInput$1 as DateInput, type DateOptions$1 as DateOptions, type DatePicker$1 as DatePicker, type DatePickerOptions$1 as DatePickerOptions, type DateTimeConstraints$1 as DateTimeConstraints, type DateTimeInput$1 as DateTimeInput, type DateTimeInputDateTimeInputTypeOptionsOneOf$1 as DateTimeInputDateTimeInputTypeOptionsOneOf, DateTimeInputType$1 as DateTimeInputType, type DateTimeOptions$1 as DateTimeOptions, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type DefaultCountryConfig$1 as DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf$1 as DefaultCountryConfigOptionsOneOf, type context$2_DeleteFormOptions as DeleteFormOptions, type context$2_DeleteFormRequest as DeleteFormRequest, type context$2_DeleteFormResponse as DeleteFormResponse, type Design$1 as Design, type Dimensions$1 as Dimensions, Direction$1 as Direction, type DisplayField$1 as DisplayField, type DisplayFieldComponentTypeOneOf$1 as DisplayFieldComponentTypeOneOf, type DividerData$1 as DividerData, type DocumentStyle$1 as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type DonationInput$1 as DonationInput, type DonationInputOption$1 as DonationInputOption, type Dropdown$1 as Dropdown, type DropdownCustomOption$1 as DropdownCustomOption, type DropdownOption$1 as DropdownOption, type DynamicPriceOptions$1 as DynamicPriceOptions, type EmailInfo$1 as EmailInfo, EmailInfoTag$1 as EmailInfoTag, type EmbedData$1 as EmbedData, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventData$1 as EventData, type ExtendedFields$2 as ExtendedFields, type FieldGroup$1 as FieldGroup, type FieldOverrides$1 as FieldOverrides, FieldType$1 as FieldType, type FieldsOverrides$1 as FieldsOverrides, type FieldsSettings$1 as FieldsSettings, context$2_Fieldset as Fieldset, type FileData$1 as FileData, type FileSource$1 as FileSource, type FileSourceDataOneOf$1 as FileSourceDataOneOf, type FileUpload$1 as FileUpload, FirstDayOfWeek$1 as FirstDayOfWeek, FirstDayOfWeekEnumFirstDayOfWeek$1 as FirstDayOfWeekEnumFirstDayOfWeek, type FixedPriceOptions$1 as FixedPriceOptions, type FontSizeData$1 as FontSizeData, FontType$1 as FontType, type Form$1 as Form, type context$2_FormChanged as FormChanged, type context$2_FormDeleted as FormDeleted, type FormField$1 as FormField, type FormFieldContactInfo$1 as FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf$1 as FormFieldContactInfoAdditionalInfoOneOf, type FormFieldV2$1 as FormFieldV2, type FormFieldV2FieldTypeOptionsOneOf$1 as FormFieldV2FieldTypeOptionsOneOf, type FormLayout$1 as FormLayout, type context$2_FormNonNullableFields as FormNonNullableFields, type FormOverride$1 as FormOverride, type FormProperties$1 as FormProperties, type context$2_FormProviderRestrictions as FormProviderRestrictions, type FormRule$1 as FormRule, Format$1 as Format, FormatEnumFormat$1 as FormatEnumFormat, type context$2_FormsQueryBuilder as FormsQueryBuilder, type context$2_FormsQueryResult as FormsQueryResult, type context$2_FormsSchemaProvidersConfig as FormsSchemaProvidersConfig, type GIF$1 as GIF, type GIFData$1 as GIFData, type GalleryData$1 as GalleryData, type GalleryOptions$1 as GalleryOptions, type context$2_GetDeletedFormRequest as GetDeletedFormRequest, type context$2_GetDeletedFormResponse as GetDeletedFormResponse, type context$2_GetDeletedFormResponseNonNullableFields as GetDeletedFormResponseNonNullableFields, type context$2_GetFormOptions as GetFormOptions, type context$2_GetFormRequest as GetFormRequest, type context$2_GetFormResponse as GetFormResponse, type context$2_GetFormResponseNonNullableFields as GetFormResponseNonNullableFields, type Gradient$1 as Gradient, type Group$1 as Group, type HTMLData$1 as HTMLData, type HTMLDataDataOneOf$1 as HTMLDataDataOneOf, type Header$1 as Header, type HeadingData$1 as HeadingData, type Height$1 as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$1 as Image, type ImageData$1 as ImageData, ImageFit$1 as ImageFit, InitialExpandedItems$1 as InitialExpandedItems, type InputField$1 as InputField, type InputFieldArrayErrorMessages$1 as InputFieldArrayErrorMessages, type InputFieldArrayType$1 as InputFieldArrayType, type InputFieldBooleanErrorMessages$1 as InputFieldBooleanErrorMessages, type InputFieldBooleanType$1 as InputFieldBooleanType, type InputFieldInputTypeOptionsOneOf$1 as InputFieldInputTypeOptionsOneOf, type InputFieldIntegerType$1 as InputFieldIntegerType, type InputFieldMultilineAddress$1 as InputFieldMultilineAddress, type InputFieldMultilineAddressComponentTypeOptionsOneOf$1 as InputFieldMultilineAddressComponentTypeOptionsOneOf, type InputFieldNumberErrorMessages$1 as InputFieldNumberErrorMessages, type InputFieldNumberType$1 as InputFieldNumberType, type InputFieldObjectErrorMessages$1 as InputFieldObjectErrorMessages, type InputFieldObjectType$1 as InputFieldObjectType, type InputFieldStringErrorMessages$1 as InputFieldStringErrorMessages, type InputFieldStringType$1 as InputFieldStringType, type InputFieldStringTypeFormatOptionsOneOf$1 as InputFieldStringTypeFormatOptionsOneOf, InputType$1 as InputType, type IntegerType$1 as IntegerType, type Item$1 as Item, type ItemDataOneOf$1 as ItemDataOneOf, type ItemLayout$1 as ItemLayout, type ItemLayoutItemOneOf$1 as ItemLayoutItemOneOf, type ItemMetadata$2 as ItemMetadata, type ItemStyle$1 as ItemStyle, ItemType$1 as ItemType, Kind$1 as Kind, type Layout$1 as Layout, LayoutType$1 as LayoutType, type LimitationRule$1 as LimitationRule, LineStyle$1 as LineStyle, type Link$1 as Link, type LinkData$1 as LinkData, type LinkDataOneOf$1 as LinkDataOneOf, type LinkPreviewData$1 as LinkPreviewData, LinkTarget$1 as LinkTarget, type context$2_ListDeletedFormsOptions as ListDeletedFormsOptions, context$2_ListDeletedFormsOrder as ListDeletedFormsOrder, type context$2_ListDeletedFormsRequest as ListDeletedFormsRequest, type context$2_ListDeletedFormsResponse as ListDeletedFormsResponse, type context$2_ListDeletedFormsResponseNonNullableFields as ListDeletedFormsResponseNonNullableFields, type context$2_ListFormsOptions as ListFormsOptions, context$2_ListFormsOrder as ListFormsOrder, type context$2_ListFormsProvidersConfigsRequest as ListFormsProvidersConfigsRequest, type context$2_ListFormsProvidersConfigsResponse as ListFormsProvidersConfigsResponse, type context$2_ListFormsProvidersConfigsResponseNonNullableFields as ListFormsProvidersConfigsResponseNonNullableFields, type context$2_ListFormsRequest as ListFormsRequest, type context$2_ListFormsResponse as ListFormsResponse, type context$2_ListFormsResponseNonNullableFields as ListFormsResponseNonNullableFields, type ListValue$1 as ListValue, type MapData$1 as MapData, type MapSettings$1 as MapSettings, MapType$1 as MapType, type Margin$1 as Margin, type Media$1 as Media, type MediaItem$1 as MediaItem, type MediaItemMediaOneOf$1 as MediaItemMediaOneOf, type MentionData$1 as MentionData, type MessageEnvelope$2 as MessageEnvelope, type Metadata$1 as Metadata, type MultilineAddress$1 as MultilineAddress, MultilineAddressComponentType$1 as MultilineAddressComponentType, type MultilineAddressValidation$1 as MultilineAddressValidation, type NestedForm$1 as NestedForm, type NestedFormFieldOverrides$1 as NestedFormFieldOverrides, type NestedFormOverrides$1 as NestedFormOverrides, type Node$1 as Node, type NodeDataOneOf$1 as NodeDataOneOf, type NodeStyle$1 as NodeStyle, NodeType$1 as NodeType, NullValue$1 as NullValue, NumberComponentType$1 as NumberComponentType, type NumberErrorMessages$1 as NumberErrorMessages, type NumberInput$1 as NumberInput, NumberOfColumns$1 as NumberOfColumns, type NumberType$1 as NumberType, type ObjectErrorMessages$1 as ObjectErrorMessages, type ObjectType$1 as ObjectType, type ObjectTypePropertiesType$1 as ObjectTypePropertiesType, type ObjectTypePropertiesTypePropertiesTypeOptionsOneOf$1 as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type Oembed$1 as Oembed, OptInLevel$1 as OptInLevel, type Option$1 as Option, type OptionDesign$1 as OptionDesign, type OptionLayout$1 as OptionLayout, type OrderedListData$1 as OrderedListData, Orientation$1 as Orientation, OverrideEntityType$1 as OverrideEntityType, type PDFSettings$1 as PDFSettings, type ParagraphData$1 as ParagraphData, type Payment$1 as Payment, PaymentComponentType$1 as PaymentComponentType, type PaymentComponentTypeOptionsOneOf$1 as PaymentComponentTypeOptionsOneOf, type PaymentType$1 as PaymentType, type Permissions$1 as Permissions, type PhoneConstraints$1 as PhoneConstraints, type PhoneInfo$1 as PhoneInfo, PhoneInfoTag$1 as PhoneInfoTag, type PhoneInput$1 as PhoneInput, type context$2_PiiFieldsUpdated as PiiFieldsUpdated, type PlaybackOptions$1 as PlaybackOptions, type PluginContainerData$1 as PluginContainerData, PluginContainerDataAlignment$1 as PluginContainerDataAlignment, type PluginContainerDataWidth$1 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$1 as PluginContainerDataWidthDataOneOf, type Poll$1 as Poll, type PollData$1 as PollData, type PollDataLayout$1 as PollDataLayout, type PollDesign$1 as PollDesign, type PollLayout$1 as PollLayout, PollLayoutDirection$1 as PollLayoutDirection, PollLayoutType$1 as PollLayoutType, type PollOption$1 as PollOption, type PostSubmissionTriggers$1 as PostSubmissionTriggers, type PredefinedValidation$1 as PredefinedValidation, type PredefinedValidationFormatOptionsOneOf$1 as PredefinedValidationFormatOptionsOneOf, PriceType$1 as PriceType, type Product$1 as Product, type ProductCheckboxGroup$1 as ProductCheckboxGroup, type ProductCheckboxGroupOption$1 as ProductCheckboxGroupOption, type ProductPriceOptionsOneOf$1 as ProductPriceOptionsOneOf, ProductType$1 as ProductType, type PropertiesType$1 as PropertiesType, PropertiesTypeEnum$1 as PropertiesTypeEnum, type PropertiesTypePropertiesTypeOneOf$1 as PropertiesTypePropertiesTypeOneOf, type QuantityLimit$1 as QuantityLimit, type context$2_QueryDeletedFormsRequest as QueryDeletedFormsRequest, type context$2_QueryDeletedFormsResponse as QueryDeletedFormsResponse, type context$2_QueryDeletedFormsResponseNonNullableFields as QueryDeletedFormsResponseNonNullableFields, type context$2_QueryFormsOptions as QueryFormsOptions, type context$2_QueryFormsRequest as QueryFormsRequest, type context$2_QueryFormsResponse as QueryFormsResponse, type context$2_QueryFormsResponseNonNullableFields as QueryFormsResponseNonNullableFields, type RadioGroup$1 as RadioGroup, type RadioGroupCustomOption$1 as RadioGroupCustomOption, type RadioGroupOption$1 as RadioGroupOption, type RatingInput$1 as RatingInput, type Redirect$1 as Redirect, type RedirectOptions$1 as RedirectOptions, type Rel$1 as Rel, type context$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type context$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, RequiredIndicator$1 as RequiredIndicator, RequiredIndicatorPlacement$1 as RequiredIndicatorPlacement, type RequiredIndicatorProperties$1 as RequiredIndicatorProperties, type context$2_RestoreFromTrashBinRequest as RestoreFromTrashBinRequest, type context$2_RestoreFromTrashBinResponse as RestoreFromTrashBinResponse, type context$2_RestoreFromTrashBinResponseNonNullableFields as RestoreFromTrashBinResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, type RichContent$1 as RichContent, type RichText$1 as RichText, type Section$1 as Section, type Settings$1 as Settings, type Signature$1 as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, Source$1 as Source, SpamFilterProtectionLevel$1 as SpamFilterProtectionLevel, type Spoiler$1 as Spoiler, type SpoilerData$1 as SpoilerData, type Step$1 as Step, StringComponentType$1 as StringComponentType, type StringErrorMessages$1 as StringErrorMessages, type StringType$1 as StringType, type StringTypeDateTimeConstraints$1 as StringTypeDateTimeConstraints, type StringTypeFormatOptionsOneOf$1 as StringTypeFormatOptionsOneOf, type StringTypePhoneConstraints$1 as StringTypePhoneConstraints, type Styles$1 as Styles, type context$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type SubmitButton$1 as SubmitButton, type SubmitButtonSubmitActionOneOf$1 as SubmitButtonSubmitActionOneOf, type SubmitSettings$1 as SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf$1 as SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction$1 as SubmitSuccessAction, type SubscriptionInfo$1 as SubscriptionInfo, type TableCellData$1 as TableCellData, type TableData$1 as TableData, Tag$1 as Tag, Target$1 as Target, TextAlignment$1 as TextAlignment, type TextData$1 as TextData, type TextInput$1 as TextInput, type TextNodeStyle$1 as TextNodeStyle, type TextStyle$1 as TextStyle, type ThankYouMessage$1 as ThankYouMessage, type ThankYouMessageOptions$1 as ThankYouMessageOptions, type Thumbnails$1 as Thumbnails, ThumbnailsAlignment$1 as ThumbnailsAlignment, type TimeInput$1 as TimeInput, type TimeOptions$1 as TimeOptions, Type$1 as Type, type context$2_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type context$2_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$2_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$2_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type context$2_UpdateForm as UpdateForm, type context$2_UpdateFormRequest as UpdateFormRequest, type context$2_UpdateFormResponse as UpdateFormResponse, type context$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, UploadFileFormat$1 as UploadFileFormat, type UpsertContact$1 as UpsertContact, UrlTargetEnumTarget$1 as UrlTargetEnumTarget, type Validation$1 as Validation, ValidationFormat$1 as ValidationFormat, type ValidationValidationOneOf$1 as ValidationValidationOneOf, VerticalAlignment$1 as VerticalAlignment, type Video$1 as Video, type VideoData$1 as VideoData, ViewMode$1 as ViewMode, ViewRole$1 as ViewRole, VoteRole$1 as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, Width$1 as Width, WidthType$1 as WidthType, type WixFile$1 as WixFile, WixFileComponentType$1 as WixFileComponentType, type WixFileComponentTypeOptionsOneOf$1 as WixFileComponentTypeOptionsOneOf, type _Array$1 as _Array, type _ArrayComponentTypeOptionsOneOf$1 as _ArrayComponentTypeOptionsOneOf, type _Boolean$1 as _Boolean, type _BooleanComponentTypeOptionsOneOf$1 as _BooleanComponentTypeOptionsOneOf, type _Number$1 as _Number, type _NumberComponentTypeOptionsOneOf$1 as _NumberComponentTypeOptionsOneOf, type _Object$1 as _Object, type _ObjectValidationOneOf$1 as _ObjectValidationOneOf, type _String$1 as _String, type _StringComponentTypeOptionsOneOf$1 as _StringComponentTypeOptionsOneOf, context$2_bulkCreateForm as bulkCreateForm, context$2_bulkRemoveDeletedField as bulkRemoveDeletedField, context$2_cloneForm as cloneForm, context$2_countForms as countForms, context$2_createForm as createForm, context$2_deleteForm as deleteForm, context$2_getDeletedForm as getDeletedForm, context$2_getForm as getForm, context$2_listDeletedForms as listDeletedForms, context$2_listForms as listForms, context$2_listFormsProvidersConfigs as listFormsProvidersConfigs, context$2_queryDeletedForms as queryDeletedForms, context$2_queryForms as queryForms, context$2_removeFormFromTrashBin as removeFormFromTrashBin, context$2_restoreFromTrashBin as restoreFromTrashBin, context$2_updateExtendedFields as updateExtendedFields, context$2_updateForm as updateForm };
4806
5188
  }
4807
5189
 
5190
+ type HostModule$1<T, H extends Host$1> = {
5191
+ __type: 'host';
5192
+ create(host: H): T;
5193
+ };
5194
+ type HostModuleAPI$1<T extends HostModule$1<any, any>> = T extends HostModule$1<infer U, any> ? U : never;
5195
+ type Host$1<Environment = unknown> = {
5196
+ channel: {
5197
+ observeState(callback: (props: unknown, environment: Environment) => unknown): {
5198
+ disconnect: () => void;
5199
+ } | Promise<{
5200
+ disconnect: () => void;
5201
+ }>;
5202
+ };
5203
+ environment?: Environment;
5204
+ /**
5205
+ * Optional bast url to use for API requests, for example `www.wixapis.com`
5206
+ */
5207
+ apiBaseUrl?: string;
5208
+ /**
5209
+ * Possible data to be provided by every host, for cross cutting concerns
5210
+ * like internationalization, billing, etc.
5211
+ */
5212
+ essentials?: {
5213
+ /**
5214
+ * The language of the currently viewed session
5215
+ */
5216
+ language?: string;
5217
+ /**
5218
+ * The locale of the currently viewed session
5219
+ */
5220
+ locale?: string;
5221
+ /**
5222
+ * Any headers that should be passed through to the API requests
5223
+ */
5224
+ passThroughHeaders?: Record<string, string>;
5225
+ };
5226
+ };
5227
+
5228
+ type RESTFunctionDescriptor$1<T extends (...args: any[]) => any = (...args: any[]) => any> = (httpClient: HttpClient$1) => T;
5229
+ interface HttpClient$1 {
5230
+ request<TResponse, TData = any>(req: RequestOptionsFactory$1<TResponse, TData>): Promise<HttpResponse$1<TResponse>>;
5231
+ fetchWithAuth: typeof fetch;
5232
+ wixAPIFetch: (relativeUrl: string, options: RequestInit) => Promise<Response>;
5233
+ getActiveToken?: () => string | undefined;
5234
+ }
5235
+ type RequestOptionsFactory$1<TResponse = any, TData = any> = (context: any) => RequestOptions$1<TResponse, TData>;
5236
+ type HttpResponse$1<T = any> = {
5237
+ data: T;
5238
+ status: number;
5239
+ statusText: string;
5240
+ headers: any;
5241
+ request?: any;
5242
+ };
5243
+ type RequestOptions$1<_TResponse = any, Data = any> = {
5244
+ method: 'POST' | 'GET' | 'PUT' | 'DELETE' | 'PATCH' | 'HEAD' | 'OPTIONS';
5245
+ url: string;
5246
+ data?: Data;
5247
+ params?: URLSearchParams;
5248
+ } & APIMetadata$1;
5249
+ type APIMetadata$1 = {
5250
+ methodFqn?: string;
5251
+ entityFqdn?: string;
5252
+ packageName?: string;
5253
+ };
5254
+ type BuildRESTFunction$1<T extends RESTFunctionDescriptor$1> = T extends RESTFunctionDescriptor$1<infer U> ? U : never;
5255
+ type EventDefinition$1<Payload = unknown, Type extends string = string> = {
5256
+ __type: 'event-definition';
5257
+ type: Type;
5258
+ isDomainEvent?: boolean;
5259
+ transformations?: (envelope: unknown) => Payload;
5260
+ __payload: Payload;
5261
+ };
5262
+ declare function EventDefinition$1<Type extends string>(type: Type, isDomainEvent?: boolean, transformations?: (envelope: any) => unknown): <Payload = unknown>() => EventDefinition$1<Payload, Type>;
5263
+ type EventHandler$1<T extends EventDefinition$1> = (payload: T['__payload']) => void | Promise<void>;
5264
+ type BuildEventDefinition$1<T extends EventDefinition$1<any, string>> = (handler: EventHandler$1<T>) => void;
5265
+
5266
+ type ServicePluginMethodInput$1 = {
5267
+ request: any;
5268
+ metadata: any;
5269
+ };
5270
+ type ServicePluginContract$1 = Record<string, (payload: ServicePluginMethodInput$1) => unknown | Promise<unknown>>;
5271
+ type ServicePluginMethodMetadata$1 = {
5272
+ name: string;
5273
+ primaryHttpMappingPath: string;
5274
+ transformations: {
5275
+ fromREST: (...args: unknown[]) => ServicePluginMethodInput$1;
5276
+ toREST: (...args: unknown[]) => unknown;
5277
+ };
5278
+ };
5279
+ type ServicePluginDefinition$1<Contract extends ServicePluginContract$1> = {
5280
+ __type: 'service-plugin-definition';
5281
+ componentType: string;
5282
+ methods: ServicePluginMethodMetadata$1[];
5283
+ __contract: Contract;
5284
+ };
5285
+ declare function ServicePluginDefinition$1<Contract extends ServicePluginContract$1>(componentType: string, methods: ServicePluginMethodMetadata$1[]): ServicePluginDefinition$1<Contract>;
5286
+ type BuildServicePluginDefinition$1<T extends ServicePluginDefinition$1<any>> = (implementation: T['__contract']) => void;
5287
+ declare const SERVICE_PLUGIN_ERROR_TYPE$1 = "wix_spi_error";
5288
+
5289
+ type RequestContext$1 = {
5290
+ isSSR: boolean;
5291
+ host: string;
5292
+ protocol?: string;
5293
+ };
5294
+ type ResponseTransformer$1 = (data: any, headers?: any) => any;
5295
+ /**
5296
+ * Ambassador request options types are copied mostly from AxiosRequestConfig.
5297
+ * They are copied and not imported to reduce the amount of dependencies (to reduce install time).
5298
+ * https://github.com/axios/axios/blob/3f53eb6960f05a1f88409c4b731a40de595cb825/index.d.ts#L307-L315
5299
+ */
5300
+ type Method$1 = 'get' | 'GET' | 'delete' | 'DELETE' | 'head' | 'HEAD' | 'options' | 'OPTIONS' | 'post' | 'POST' | 'put' | 'PUT' | 'patch' | 'PATCH' | 'purge' | 'PURGE' | 'link' | 'LINK' | 'unlink' | 'UNLINK';
5301
+ type AmbassadorRequestOptions$1<T = any> = {
5302
+ _?: T;
5303
+ url?: string;
5304
+ method?: Method$1;
5305
+ params?: any;
5306
+ data?: any;
5307
+ transformResponse?: ResponseTransformer$1 | ResponseTransformer$1[];
5308
+ };
5309
+ type AmbassadorFactory$1<Request, Response> = (payload: Request) => ((context: RequestContext$1) => AmbassadorRequestOptions$1<Response>) & {
5310
+ __isAmbassador: boolean;
5311
+ };
5312
+ type AmbassadorFunctionDescriptor$1<Request = any, Response = any> = AmbassadorFactory$1<Request, Response>;
5313
+ type BuildAmbassadorFunction$1<T extends AmbassadorFunctionDescriptor$1> = T extends AmbassadorFunctionDescriptor$1<infer Request, infer Response> ? (req: Request) => Promise<Response> : never;
5314
+
5315
+ declare global {
5316
+ // eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- It has to be an `interface` so that it can be merged.
5317
+ interface SymbolConstructor {
5318
+ readonly observable: symbol;
5319
+ }
5320
+ }
5321
+
5322
+ declare const emptyObjectSymbol$1: unique symbol;
5323
+
5324
+ /**
5325
+ Represents a strictly empty plain object, the `{}` value.
5326
+
5327
+ When you annotate something as the type `{}`, it can be anything except `null` and `undefined`. This means that you cannot use `{}` to represent an empty plain object ([read more](https://stackoverflow.com/questions/47339869/typescript-empty-object-and-any-difference/52193484#52193484)).
5328
+
5329
+ @example
5330
+ ```
5331
+ import type {EmptyObject} from 'type-fest';
5332
+
5333
+ // The following illustrates the problem with `{}`.
5334
+ const foo1: {} = {}; // Pass
5335
+ const foo2: {} = []; // Pass
5336
+ const foo3: {} = 42; // Pass
5337
+ const foo4: {} = {a: 1}; // Pass
5338
+
5339
+ // With `EmptyObject` only the first case is valid.
5340
+ const bar1: EmptyObject = {}; // Pass
5341
+ const bar2: EmptyObject = 42; // Fail
5342
+ const bar3: EmptyObject = []; // Fail
5343
+ const bar4: EmptyObject = {a: 1}; // Fail
5344
+ ```
5345
+
5346
+ Unfortunately, `Record<string, never>`, `Record<keyof any, never>` and `Record<never, never>` do not work. See {@link https://github.com/sindresorhus/type-fest/issues/395 #395}.
5347
+
5348
+ @category Object
5349
+ */
5350
+ type EmptyObject$1 = {[emptyObjectSymbol$1]?: never};
5351
+
5352
+ /**
5353
+ Returns a boolean for whether the two given types are equal.
5354
+
5355
+ @link https://github.com/microsoft/TypeScript/issues/27024#issuecomment-421529650
5356
+ @link https://stackoverflow.com/questions/68961864/how-does-the-equals-work-in-typescript/68963796#68963796
5357
+
5358
+ Use-cases:
5359
+ - If you want to make a conditional branch based on the result of a comparison of two types.
5360
+
5361
+ @example
5362
+ ```
5363
+ import type {IsEqual} from 'type-fest';
5364
+
5365
+ // This type returns a boolean for whether the given array includes the given item.
5366
+ // `IsEqual` is used to compare the given array at position 0 and the given item and then return true if they are equal.
5367
+ type Includes<Value extends readonly any[], Item> =
5368
+ Value extends readonly [Value[0], ...infer rest]
5369
+ ? IsEqual<Value[0], Item> extends true
5370
+ ? true
5371
+ : Includes<rest, Item>
5372
+ : false;
5373
+ ```
5374
+
5375
+ @category Type Guard
5376
+ @category Utilities
5377
+ */
5378
+ type IsEqual$1<A, B> =
5379
+ (<G>() => G extends A ? 1 : 2) extends
5380
+ (<G>() => G extends B ? 1 : 2)
5381
+ ? true
5382
+ : false;
5383
+
5384
+ /**
5385
+ Filter out keys from an object.
5386
+
5387
+ Returns `never` if `Exclude` is strictly equal to `Key`.
5388
+ Returns `never` if `Key` extends `Exclude`.
5389
+ Returns `Key` otherwise.
5390
+
5391
+ @example
5392
+ ```
5393
+ type Filtered = Filter<'foo', 'foo'>;
5394
+ //=> never
5395
+ ```
5396
+
5397
+ @example
5398
+ ```
5399
+ type Filtered = Filter<'bar', string>;
5400
+ //=> never
5401
+ ```
5402
+
5403
+ @example
5404
+ ```
5405
+ type Filtered = Filter<'bar', 'foo'>;
5406
+ //=> 'bar'
5407
+ ```
5408
+
5409
+ @see {Except}
5410
+ */
5411
+ type Filter$1<KeyType, ExcludeType> = IsEqual$1<KeyType, ExcludeType> extends true ? never : (KeyType extends ExcludeType ? never : KeyType);
5412
+
5413
+ type ExceptOptions$1 = {
5414
+ /**
5415
+ Disallow assigning non-specified properties.
5416
+
5417
+ Note that any omitted properties in the resulting type will be present in autocomplete as `undefined`.
5418
+
5419
+ @default false
5420
+ */
5421
+ requireExactProps?: boolean;
5422
+ };
5423
+
5424
+ /**
5425
+ Create a type from an object type without certain keys.
5426
+
5427
+ We recommend setting the `requireExactProps` option to `true`.
5428
+
5429
+ This type is a stricter version of [`Omit`](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-5.html#the-omit-helper-type). The `Omit` type does not restrict the omitted keys to be keys present on the given type, while `Except` does. The benefits of a stricter type are avoiding typos and allowing the compiler to pick up on rename refactors automatically.
5430
+
5431
+ This type was proposed to the TypeScript team, which declined it, saying they prefer that libraries implement stricter versions of the built-in types ([microsoft/TypeScript#30825](https://github.com/microsoft/TypeScript/issues/30825#issuecomment-523668235)).
5432
+
5433
+ @example
5434
+ ```
5435
+ import type {Except} from 'type-fest';
5436
+
5437
+ type Foo = {
5438
+ a: number;
5439
+ b: string;
5440
+ };
5441
+
5442
+ type FooWithoutA = Except<Foo, 'a'>;
5443
+ //=> {b: string}
5444
+
5445
+ const fooWithoutA: FooWithoutA = {a: 1, b: '2'};
5446
+ //=> errors: 'a' does not exist in type '{ b: string; }'
5447
+
5448
+ type FooWithoutB = Except<Foo, 'b', {requireExactProps: true}>;
5449
+ //=> {a: number} & Partial<Record<"b", never>>
5450
+
5451
+ const fooWithoutB: FooWithoutB = {a: 1, b: '2'};
5452
+ //=> errors at 'b': Type 'string' is not assignable to type 'undefined'.
5453
+ ```
5454
+
5455
+ @category Object
5456
+ */
5457
+ type Except$1<ObjectType, KeysType extends keyof ObjectType, Options extends ExceptOptions$1 = {requireExactProps: false}> = {
5458
+ [KeyType in keyof ObjectType as Filter$1<KeyType, KeysType>]: ObjectType[KeyType];
5459
+ } & (Options['requireExactProps'] extends true
5460
+ ? Partial<Record<KeysType, never>>
5461
+ : {});
5462
+
5463
+ /**
5464
+ Extract the keys from a type where the value type of the key extends the given `Condition`.
5465
+
5466
+ Internally this is used for the `ConditionalPick` and `ConditionalExcept` types.
5467
+
5468
+ @example
5469
+ ```
5470
+ import type {ConditionalKeys} from 'type-fest';
5471
+
5472
+ interface Example {
5473
+ a: string;
5474
+ b: string | number;
5475
+ c?: string;
5476
+ d: {};
5477
+ }
5478
+
5479
+ type StringKeysOnly = ConditionalKeys<Example, string>;
5480
+ //=> 'a'
5481
+ ```
5482
+
5483
+ To support partial types, make sure your `Condition` is a union of undefined (for example, `string | undefined`) as demonstrated below.
5484
+
5485
+ @example
5486
+ ```
5487
+ import type {ConditionalKeys} from 'type-fest';
5488
+
5489
+ type StringKeysAndUndefined = ConditionalKeys<Example, string | undefined>;
5490
+ //=> 'a' | 'c'
5491
+ ```
5492
+
5493
+ @category Object
5494
+ */
5495
+ type ConditionalKeys$1<Base, Condition> = NonNullable<
5496
+ // Wrap in `NonNullable` to strip away the `undefined` type from the produced union.
5497
+ {
5498
+ // Map through all the keys of the given base type.
5499
+ [Key in keyof Base]:
5500
+ // Pick only keys with types extending the given `Condition` type.
5501
+ Base[Key] extends Condition
5502
+ // Retain this key since the condition passes.
5503
+ ? Key
5504
+ // Discard this key since the condition fails.
5505
+ : never;
5506
+
5507
+ // Convert the produced object into a union type of the keys which passed the conditional test.
5508
+ }[keyof Base]
5509
+ >;
5510
+
5511
+ /**
5512
+ Exclude keys from a shape that matches the given `Condition`.
5513
+
5514
+ This is useful when you want to create a new type with a specific set of keys from a shape. For example, you might want to exclude all the primitive properties from a class and form a new shape containing everything but the primitive properties.
5515
+
5516
+ @example
5517
+ ```
5518
+ import type {Primitive, ConditionalExcept} from 'type-fest';
5519
+
5520
+ class Awesome {
5521
+ name: string;
5522
+ successes: number;
5523
+ failures: bigint;
5524
+
5525
+ run() {}
5526
+ }
5527
+
5528
+ type ExceptPrimitivesFromAwesome = ConditionalExcept<Awesome, Primitive>;
5529
+ //=> {run: () => void}
5530
+ ```
5531
+
5532
+ @example
5533
+ ```
5534
+ import type {ConditionalExcept} from 'type-fest';
5535
+
5536
+ interface Example {
5537
+ a: string;
5538
+ b: string | number;
5539
+ c: () => void;
5540
+ d: {};
5541
+ }
5542
+
5543
+ type NonStringKeysOnly = ConditionalExcept<Example, string>;
5544
+ //=> {b: string | number; c: () => void; d: {}}
5545
+ ```
5546
+
5547
+ @category Object
5548
+ */
5549
+ type ConditionalExcept$1<Base, Condition> = Except$1<
5550
+ Base,
5551
+ ConditionalKeys$1<Base, Condition>
5552
+ >;
5553
+
5554
+ /**
5555
+ * Descriptors are objects that describe the API of a module, and the module
5556
+ * can either be a REST module or a host module.
5557
+ * This type is recursive, so it can describe nested modules.
5558
+ */
5559
+ type Descriptors$1 = RESTFunctionDescriptor$1 | AmbassadorFunctionDescriptor$1 | HostModule$1<any, any> | EventDefinition$1<any> | ServicePluginDefinition$1<any> | {
5560
+ [key: string]: Descriptors$1 | PublicMetadata$1 | any;
5561
+ };
5562
+ /**
5563
+ * This type takes in a descriptors object of a certain Host (including an `unknown` host)
5564
+ * and returns an object with the same structure, but with all descriptors replaced with their API.
5565
+ * Any non-descriptor properties are removed from the returned object, including descriptors that
5566
+ * do not match the given host (as they will not work with the given host).
5567
+ */
5568
+ type BuildDescriptors$1<T extends Descriptors$1, H extends Host$1<any> | undefined, Depth extends number = 5> = {
5569
+ done: T;
5570
+ recurse: T extends {
5571
+ __type: typeof SERVICE_PLUGIN_ERROR_TYPE$1;
5572
+ } ? never : T extends AmbassadorFunctionDescriptor$1 ? BuildAmbassadorFunction$1<T> : T extends RESTFunctionDescriptor$1 ? BuildRESTFunction$1<T> : T extends EventDefinition$1<any> ? BuildEventDefinition$1<T> : T extends ServicePluginDefinition$1<any> ? BuildServicePluginDefinition$1<T> : T extends HostModule$1<any, any> ? HostModuleAPI$1<T> : ConditionalExcept$1<{
5573
+ [Key in keyof T]: T[Key] extends Descriptors$1 ? BuildDescriptors$1<T[Key], H, [
5574
+ -1,
5575
+ 0,
5576
+ 1,
5577
+ 2,
5578
+ 3,
5579
+ 4,
5580
+ 5
5581
+ ][Depth]> : never;
5582
+ }, EmptyObject$1>;
5583
+ }[Depth extends -1 ? 'done' : 'recurse'];
5584
+ type PublicMetadata$1 = {
5585
+ PACKAGE_NAME?: string;
5586
+ };
5587
+
5588
+ declare global {
5589
+ interface ContextualClient {
5590
+ }
5591
+ }
5592
+ /**
5593
+ * A type used to create concerete types from SDK descriptors in
5594
+ * case a contextual client is available.
5595
+ */
5596
+ type MaybeContext$1<T extends Descriptors$1> = globalThis.ContextualClient extends {
5597
+ host: Host$1;
5598
+ } ? BuildDescriptors$1<T, globalThis.ContextualClient['host']> : T;
5599
+
4808
5600
  /**
4809
5601
  * FormSpamSubmissionReportReport stores a form submission spam report.
4810
5602
  * It contains submission details as well as report reason.
@@ -5517,7 +6309,7 @@ interface FormSpamSubmissionReportsQueryBuilder {
5517
6309
  find: () => Promise<FormSpamSubmissionReportsQueryResult>;
5518
6310
  }
5519
6311
 
5520
- declare function checkForSpam$1(httpClient: HttpClient): CheckForSpamSignature;
6312
+ declare function checkForSpam$1(httpClient: HttpClient$1): CheckForSpamSignature;
5521
6313
  interface CheckForSpamSignature {
5522
6314
  /**
5523
6315
  * Checks if submission is a spam.
@@ -5525,7 +6317,7 @@ interface CheckForSpamSignature {
5525
6317
  */
5526
6318
  (submission: FormSubmission$1): Promise<CheckForSpamResponse & CheckForSpamResponseNonNullableFields>;
5527
6319
  }
5528
- declare function createFormSpamSubmissionReport$1(httpClient: HttpClient): CreateFormSpamSubmissionReportSignature;
6320
+ declare function createFormSpamSubmissionReport$1(httpClient: HttpClient$1): CreateFormSpamSubmissionReportSignature;
5529
6321
  interface CreateFormSpamSubmissionReportSignature {
5530
6322
  /**
5531
6323
  * Creates a new spam submission.
@@ -5535,7 +6327,7 @@ interface CreateFormSpamSubmissionReportSignature {
5535
6327
  */
5536
6328
  (formSpamSubmissionReport: FormSpamSubmissionReport): Promise<FormSpamSubmissionReport & FormSpamSubmissionReportNonNullableFields>;
5537
6329
  }
5538
- declare function getFormSpamSubmissionReport$1(httpClient: HttpClient): GetFormSpamSubmissionReportSignature;
6330
+ declare function getFormSpamSubmissionReport$1(httpClient: HttpClient$1): GetFormSpamSubmissionReportSignature;
5539
6331
  interface GetFormSpamSubmissionReportSignature {
5540
6332
  /**
5541
6333
  * Get a spam submission by id.
@@ -5544,7 +6336,7 @@ interface GetFormSpamSubmissionReportSignature {
5544
6336
  */
5545
6337
  (formSpamSubmissionReportId: string): Promise<FormSpamSubmissionReport & FormSpamSubmissionReportNonNullableFields>;
5546
6338
  }
5547
- declare function deleteFormSpamSubmissionReport$1(httpClient: HttpClient): DeleteFormSpamSubmissionReportSignature;
6339
+ declare function deleteFormSpamSubmissionReport$1(httpClient: HttpClient$1): DeleteFormSpamSubmissionReportSignature;
5548
6340
  interface DeleteFormSpamSubmissionReportSignature {
5549
6341
  /**
5550
6342
  * Delete a spam submission report.
@@ -5552,7 +6344,7 @@ interface DeleteFormSpamSubmissionReportSignature {
5552
6344
  */
5553
6345
  (formSpamSubmissionReportId: string): Promise<void>;
5554
6346
  }
5555
- declare function bulkDeleteFormSpamSubmissionReport$1(httpClient: HttpClient): BulkDeleteFormSpamSubmissionReportSignature;
6347
+ declare function bulkDeleteFormSpamSubmissionReport$1(httpClient: HttpClient$1): BulkDeleteFormSpamSubmissionReportSignature;
5556
6348
  interface BulkDeleteFormSpamSubmissionReportSignature {
5557
6349
  /**
5558
6350
  * Deletes report by IDS or all for specific form.
@@ -5560,7 +6352,7 @@ interface BulkDeleteFormSpamSubmissionReportSignature {
5560
6352
  */
5561
6353
  (formId: string, options?: BulkDeleteFormSpamSubmissionReportOptions | undefined): Promise<BulkDeleteFormSpamSubmissionReportResponse & BulkDeleteFormSpamSubmissionReportResponseNonNullableFields>;
5562
6354
  }
5563
- declare function bulkDeleteFormSpamSubmissionReportByFilter$1(httpClient: HttpClient): BulkDeleteFormSpamSubmissionReportByFilterSignature;
6355
+ declare function bulkDeleteFormSpamSubmissionReportByFilter$1(httpClient: HttpClient$1): BulkDeleteFormSpamSubmissionReportByFilterSignature;
5564
6356
  interface BulkDeleteFormSpamSubmissionReportByFilterSignature {
5565
6357
  /**
5566
6358
  * Deletes reports by filter for specific form.
@@ -5570,7 +6362,7 @@ interface BulkDeleteFormSpamSubmissionReportByFilterSignature {
5570
6362
  */
5571
6363
  (filter: Record<string, any> | null): Promise<BulkDeleteFormSpamSubmissionReportByFilterResponse & BulkDeleteFormSpamSubmissionReportByFilterResponseNonNullableFields>;
5572
6364
  }
5573
- declare function reportNotSpamSubmission$1(httpClient: HttpClient): ReportNotSpamSubmissionSignature;
6365
+ declare function reportNotSpamSubmission$1(httpClient: HttpClient$1): ReportNotSpamSubmissionSignature;
5574
6366
  interface ReportNotSpamSubmissionSignature {
5575
6367
  /**
5576
6368
  * Report a spam submission as not spam. The submission is created, and the spam report is deleted.
@@ -5579,7 +6371,7 @@ interface ReportNotSpamSubmissionSignature {
5579
6371
  */
5580
6372
  (formSpamSubmissionReportId: string): Promise<ReportNotSpamSubmissionResponse & ReportNotSpamSubmissionResponseNonNullableFields>;
5581
6373
  }
5582
- declare function bulkReportNotSpamSubmission$1(httpClient: HttpClient): BulkReportNotSpamSubmissionSignature;
6374
+ declare function bulkReportNotSpamSubmission$1(httpClient: HttpClient$1): BulkReportNotSpamSubmissionSignature;
5583
6375
  interface BulkReportNotSpamSubmissionSignature {
5584
6376
  /**
5585
6377
  * Report a spam submissions as not spam. The submissions is created, and the spam reports is deleted.
@@ -5588,7 +6380,7 @@ interface BulkReportNotSpamSubmissionSignature {
5588
6380
  */
5589
6381
  (formId: string, options?: BulkReportNotSpamSubmissionOptions | undefined): Promise<BulkReportNotSpamSubmissionResponse & BulkReportNotSpamSubmissionResponseNonNullableFields>;
5590
6382
  }
5591
- declare function reportSpamSubmission$1(httpClient: HttpClient): ReportSpamSubmissionSignature;
6383
+ declare function reportSpamSubmission$1(httpClient: HttpClient$1): ReportSpamSubmissionSignature;
5592
6384
  interface ReportSpamSubmissionSignature {
5593
6385
  /**
5594
6386
  * Report a submission as spam. The spam submission report is created, and the submission is deleted.
@@ -5597,7 +6389,7 @@ interface ReportSpamSubmissionSignature {
5597
6389
  */
5598
6390
  (submissionId: string, reportReason: ReportReason): Promise<ReportSpamSubmissionResponse & ReportSpamSubmissionResponseNonNullableFields>;
5599
6391
  }
5600
- declare function bulkReportSpamSubmission$1(httpClient: HttpClient): BulkReportSpamSubmissionSignature;
6392
+ declare function bulkReportSpamSubmission$1(httpClient: HttpClient$1): BulkReportSpamSubmissionSignature;
5601
6393
  interface BulkReportSpamSubmissionSignature {
5602
6394
  /**
5603
6395
  * Report multiple submissions as spam. The spam submission reports is created, and the submissions is deleted.
@@ -5605,14 +6397,14 @@ interface BulkReportSpamSubmissionSignature {
5605
6397
  */
5606
6398
  (formId: string, options?: BulkReportSpamSubmissionOptions | undefined): Promise<BulkReportSpamSubmissionResponse & BulkReportSpamSubmissionResponseNonNullableFields>;
5607
6399
  }
5608
- declare function queryFormSpamSubmissionReportsByNamespace$1(httpClient: HttpClient): QueryFormSpamSubmissionReportsByNamespaceSignature;
6400
+ declare function queryFormSpamSubmissionReportsByNamespace$1(httpClient: HttpClient$1): QueryFormSpamSubmissionReportsByNamespaceSignature;
5609
6401
  interface QueryFormSpamSubmissionReportsByNamespaceSignature {
5610
6402
  /**
5611
6403
  * Query form spam submission reports using [WQL - Wix Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language).
5612
6404
  */
5613
6405
  (): FormSpamSubmissionReportsQueryBuilder;
5614
6406
  }
5615
- declare function countFormSpamSubmissionReports$1(httpClient: HttpClient): CountFormSpamSubmissionReportsSignature;
6407
+ declare function countFormSpamSubmissionReports$1(httpClient: HttpClient$1): CountFormSpamSubmissionReportsSignature;
5616
6408
  interface CountFormSpamSubmissionReportsSignature {
5617
6409
  /**
5618
6410
  * Counts the number of spam submission reports belonging to the specified forms.
@@ -5622,18 +6414,18 @@ interface CountFormSpamSubmissionReportsSignature {
5622
6414
  (formIds: string[], namespace: string): Promise<CountFormSpamSubmissionReportsResponse & CountFormSpamSubmissionReportsResponseNonNullableFields>;
5623
6415
  }
5624
6416
 
5625
- declare const checkForSpam: BuildRESTFunction<typeof checkForSpam$1> & typeof checkForSpam$1;
5626
- declare const createFormSpamSubmissionReport: BuildRESTFunction<typeof createFormSpamSubmissionReport$1> & typeof createFormSpamSubmissionReport$1;
5627
- declare const getFormSpamSubmissionReport: BuildRESTFunction<typeof getFormSpamSubmissionReport$1> & typeof getFormSpamSubmissionReport$1;
5628
- declare const deleteFormSpamSubmissionReport: BuildRESTFunction<typeof deleteFormSpamSubmissionReport$1> & typeof deleteFormSpamSubmissionReport$1;
5629
- declare const bulkDeleteFormSpamSubmissionReport: BuildRESTFunction<typeof bulkDeleteFormSpamSubmissionReport$1> & typeof bulkDeleteFormSpamSubmissionReport$1;
5630
- declare const bulkDeleteFormSpamSubmissionReportByFilter: BuildRESTFunction<typeof bulkDeleteFormSpamSubmissionReportByFilter$1> & typeof bulkDeleteFormSpamSubmissionReportByFilter$1;
5631
- declare const reportNotSpamSubmission: BuildRESTFunction<typeof reportNotSpamSubmission$1> & typeof reportNotSpamSubmission$1;
5632
- declare const bulkReportNotSpamSubmission: BuildRESTFunction<typeof bulkReportNotSpamSubmission$1> & typeof bulkReportNotSpamSubmission$1;
5633
- declare const reportSpamSubmission: BuildRESTFunction<typeof reportSpamSubmission$1> & typeof reportSpamSubmission$1;
5634
- declare const bulkReportSpamSubmission: BuildRESTFunction<typeof bulkReportSpamSubmission$1> & typeof bulkReportSpamSubmission$1;
5635
- declare const queryFormSpamSubmissionReportsByNamespace: BuildRESTFunction<typeof queryFormSpamSubmissionReportsByNamespace$1> & typeof queryFormSpamSubmissionReportsByNamespace$1;
5636
- declare const countFormSpamSubmissionReports: BuildRESTFunction<typeof countFormSpamSubmissionReports$1> & typeof countFormSpamSubmissionReports$1;
6417
+ declare const checkForSpam: MaybeContext$1<BuildRESTFunction$1<typeof checkForSpam$1> & typeof checkForSpam$1>;
6418
+ declare const createFormSpamSubmissionReport: MaybeContext$1<BuildRESTFunction$1<typeof createFormSpamSubmissionReport$1> & typeof createFormSpamSubmissionReport$1>;
6419
+ declare const getFormSpamSubmissionReport: MaybeContext$1<BuildRESTFunction$1<typeof getFormSpamSubmissionReport$1> & typeof getFormSpamSubmissionReport$1>;
6420
+ declare const deleteFormSpamSubmissionReport: MaybeContext$1<BuildRESTFunction$1<typeof deleteFormSpamSubmissionReport$1> & typeof deleteFormSpamSubmissionReport$1>;
6421
+ declare const bulkDeleteFormSpamSubmissionReport: MaybeContext$1<BuildRESTFunction$1<typeof bulkDeleteFormSpamSubmissionReport$1> & typeof bulkDeleteFormSpamSubmissionReport$1>;
6422
+ declare const bulkDeleteFormSpamSubmissionReportByFilter: MaybeContext$1<BuildRESTFunction$1<typeof bulkDeleteFormSpamSubmissionReportByFilter$1> & typeof bulkDeleteFormSpamSubmissionReportByFilter$1>;
6423
+ declare const reportNotSpamSubmission: MaybeContext$1<BuildRESTFunction$1<typeof reportNotSpamSubmission$1> & typeof reportNotSpamSubmission$1>;
6424
+ declare const bulkReportNotSpamSubmission: MaybeContext$1<BuildRESTFunction$1<typeof bulkReportNotSpamSubmission$1> & typeof bulkReportNotSpamSubmission$1>;
6425
+ declare const reportSpamSubmission: MaybeContext$1<BuildRESTFunction$1<typeof reportSpamSubmission$1> & typeof reportSpamSubmission$1>;
6426
+ declare const bulkReportSpamSubmission: MaybeContext$1<BuildRESTFunction$1<typeof bulkReportSpamSubmission$1> & typeof bulkReportSpamSubmission$1>;
6427
+ declare const queryFormSpamSubmissionReportsByNamespace: MaybeContext$1<BuildRESTFunction$1<typeof queryFormSpamSubmissionReportsByNamespace$1> & typeof queryFormSpamSubmissionReportsByNamespace$1>;
6428
+ declare const countFormSpamSubmissionReports: MaybeContext$1<BuildRESTFunction$1<typeof countFormSpamSubmissionReports$1> & typeof countFormSpamSubmissionReports$1>;
5637
6429
 
5638
6430
  type context$1_BulkDeleteFormSpamSubmissionReportByFilterRequest = BulkDeleteFormSpamSubmissionReportByFilterRequest;
5639
6431
  type context$1_BulkDeleteFormSpamSubmissionReportByFilterResponse = BulkDeleteFormSpamSubmissionReportByFilterResponse;
@@ -5701,6 +6493,416 @@ declare namespace context$1 {
5701
6493
  export { type ActionEvent$1 as ActionEvent, type ApplicationError$1 as ApplicationError, type BulkActionMetadata$1 as BulkActionMetadata, type context$1_BulkDeleteFormSpamSubmissionReportByFilterRequest as BulkDeleteFormSpamSubmissionReportByFilterRequest, type context$1_BulkDeleteFormSpamSubmissionReportByFilterResponse as BulkDeleteFormSpamSubmissionReportByFilterResponse, type context$1_BulkDeleteFormSpamSubmissionReportByFilterResponseNonNullableFields as BulkDeleteFormSpamSubmissionReportByFilterResponseNonNullableFields, type context$1_BulkDeleteFormSpamSubmissionReportOptions as BulkDeleteFormSpamSubmissionReportOptions, type context$1_BulkDeleteFormSpamSubmissionReportRequest as BulkDeleteFormSpamSubmissionReportRequest, type context$1_BulkDeleteFormSpamSubmissionReportResponse as BulkDeleteFormSpamSubmissionReportResponse, type context$1_BulkDeleteFormSpamSubmissionReportResponseNonNullableFields as BulkDeleteFormSpamSubmissionReportResponseNonNullableFields, type context$1_BulkDeleteFormSpamSubmissionReportResult as BulkDeleteFormSpamSubmissionReportResult, type context$1_BulkReportNotSpamSubmissionOptions as BulkReportNotSpamSubmissionOptions, type context$1_BulkReportNotSpamSubmissionRequest as BulkReportNotSpamSubmissionRequest, type context$1_BulkReportNotSpamSubmissionResponse as BulkReportNotSpamSubmissionResponse, type context$1_BulkReportNotSpamSubmissionResponseNonNullableFields as BulkReportNotSpamSubmissionResponseNonNullableFields, type context$1_BulkReportNotSpamSubmissionResult as BulkReportNotSpamSubmissionResult, type context$1_BulkReportSpamSubmissionOptions as BulkReportSpamSubmissionOptions, type context$1_BulkReportSpamSubmissionRequest as BulkReportSpamSubmissionRequest, type context$1_BulkReportSpamSubmissionResponse as BulkReportSpamSubmissionResponse, type context$1_BulkReportSpamSubmissionResponseNonNullableFields as BulkReportSpamSubmissionResponseNonNullableFields, type context$1_BulkReportSpamSubmissionResult as BulkReportSpamSubmissionResult, type context$1_CheckForSpamRequest as CheckForSpamRequest, type context$1_CheckForSpamResponse as CheckForSpamResponse, type context$1_CheckForSpamResponseNonNullableFields as CheckForSpamResponseNonNullableFields, type context$1_CountFormSpamSubmissionReportsRequest as CountFormSpamSubmissionReportsRequest, type context$1_CountFormSpamSubmissionReportsResponse as CountFormSpamSubmissionReportsResponse, type context$1_CountFormSpamSubmissionReportsResponseNonNullableFields as CountFormSpamSubmissionReportsResponseNonNullableFields, type context$1_CreateFormSpamSubmissionReportRequest as CreateFormSpamSubmissionReportRequest, type context$1_CreateFormSpamSubmissionReportResponse as CreateFormSpamSubmissionReportResponse, type context$1_CreateFormSpamSubmissionReportResponseNonNullableFields as CreateFormSpamSubmissionReportResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$1 as Cursors, type context$1_DeleteFormSpamSubmissionReportRequest as DeleteFormSpamSubmissionReportRequest, type context$1_DeleteFormSpamSubmissionReportResponse as DeleteFormSpamSubmissionReportResponse, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type Empty$1 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type ExtendedFields$1 as ExtendedFields, type context$1_FormSpamSubmissionReport as FormSpamSubmissionReport, type context$1_FormSpamSubmissionReportNonNullableFields as FormSpamSubmissionReportNonNullableFields, type context$1_FormSpamSubmissionReportsCount as FormSpamSubmissionReportsCount, type context$1_FormSpamSubmissionReportsQueryBuilder as FormSpamSubmissionReportsQueryBuilder, type context$1_FormSpamSubmissionReportsQueryResult as FormSpamSubmissionReportsQueryResult, type FormSubmission$1 as FormSubmission, type context$1_FormSubmissionOrderDetails as FormSubmissionOrderDetails, type context$1_GetFormSpamSubmissionReportRequest as GetFormSpamSubmissionReportRequest, type context$1_GetFormSpamSubmissionReportResponse as GetFormSpamSubmissionReportResponse, type context$1_GetFormSpamSubmissionReportResponseNonNullableFields as GetFormSpamSubmissionReportResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type ItemMetadata$1 as ItemMetadata, type MessageEnvelope$1 as MessageEnvelope, type OrderDetails$1 as OrderDetails, type context$1_QueryFormSpamSubmissionReportsByNamespaceRequest as QueryFormSpamSubmissionReportsByNamespaceRequest, type context$1_QueryFormSpamSubmissionReportsByNamespaceResponse as QueryFormSpamSubmissionReportsByNamespaceResponse, type context$1_QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields as QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields, type context$1_ReportNotSpamSubmissionRequest as ReportNotSpamSubmissionRequest, type context$1_ReportNotSpamSubmissionResponse as ReportNotSpamSubmissionResponse, type context$1_ReportNotSpamSubmissionResponseNonNullableFields as ReportNotSpamSubmissionResponseNonNullableFields, context$1_ReportReason as ReportReason, type context$1_ReportSpamSubmissionRequest as ReportSpamSubmissionRequest, type context$1_ReportSpamSubmissionResponse as ReportSpamSubmissionResponse, type context$1_ReportSpamSubmissionResponseNonNullableFields as ReportSpamSubmissionResponseNonNullableFields, type RestoreInfo$1 as RestoreInfo, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, type context$1_SpamReport as SpamReport, SubmissionStatus$1 as SubmissionStatus, type Submitter$1 as Submitter, type SubmitterSubmitterOneOf$1 as SubmitterSubmitterOneOf, WebhookIdentityType$1 as WebhookIdentityType, context$1_bulkDeleteFormSpamSubmissionReport as bulkDeleteFormSpamSubmissionReport, context$1_bulkDeleteFormSpamSubmissionReportByFilter as bulkDeleteFormSpamSubmissionReportByFilter, context$1_bulkReportNotSpamSubmission as bulkReportNotSpamSubmission, context$1_bulkReportSpamSubmission as bulkReportSpamSubmission, context$1_checkForSpam as checkForSpam, context$1_countFormSpamSubmissionReports as countFormSpamSubmissionReports, context$1_createFormSpamSubmissionReport as createFormSpamSubmissionReport, context$1_deleteFormSpamSubmissionReport as deleteFormSpamSubmissionReport, context$1_getFormSpamSubmissionReport as getFormSpamSubmissionReport, context$1_queryFormSpamSubmissionReportsByNamespace as queryFormSpamSubmissionReportsByNamespace, context$1_reportNotSpamSubmission as reportNotSpamSubmission, context$1_reportSpamSubmission as reportSpamSubmission };
5702
6494
  }
5703
6495
 
6496
+ type HostModule<T, H extends Host> = {
6497
+ __type: 'host';
6498
+ create(host: H): T;
6499
+ };
6500
+ type HostModuleAPI<T extends HostModule<any, any>> = T extends HostModule<infer U, any> ? U : never;
6501
+ type Host<Environment = unknown> = {
6502
+ channel: {
6503
+ observeState(callback: (props: unknown, environment: Environment) => unknown): {
6504
+ disconnect: () => void;
6505
+ } | Promise<{
6506
+ disconnect: () => void;
6507
+ }>;
6508
+ };
6509
+ environment?: Environment;
6510
+ /**
6511
+ * Optional bast url to use for API requests, for example `www.wixapis.com`
6512
+ */
6513
+ apiBaseUrl?: string;
6514
+ /**
6515
+ * Possible data to be provided by every host, for cross cutting concerns
6516
+ * like internationalization, billing, etc.
6517
+ */
6518
+ essentials?: {
6519
+ /**
6520
+ * The language of the currently viewed session
6521
+ */
6522
+ language?: string;
6523
+ /**
6524
+ * The locale of the currently viewed session
6525
+ */
6526
+ locale?: string;
6527
+ /**
6528
+ * Any headers that should be passed through to the API requests
6529
+ */
6530
+ passThroughHeaders?: Record<string, string>;
6531
+ };
6532
+ };
6533
+
6534
+ type RESTFunctionDescriptor<T extends (...args: any[]) => any = (...args: any[]) => any> = (httpClient: HttpClient) => T;
6535
+ interface HttpClient {
6536
+ request<TResponse, TData = any>(req: RequestOptionsFactory<TResponse, TData>): Promise<HttpResponse<TResponse>>;
6537
+ fetchWithAuth: typeof fetch;
6538
+ wixAPIFetch: (relativeUrl: string, options: RequestInit) => Promise<Response>;
6539
+ getActiveToken?: () => string | undefined;
6540
+ }
6541
+ type RequestOptionsFactory<TResponse = any, TData = any> = (context: any) => RequestOptions<TResponse, TData>;
6542
+ type HttpResponse<T = any> = {
6543
+ data: T;
6544
+ status: number;
6545
+ statusText: string;
6546
+ headers: any;
6547
+ request?: any;
6548
+ };
6549
+ type RequestOptions<_TResponse = any, Data = any> = {
6550
+ method: 'POST' | 'GET' | 'PUT' | 'DELETE' | 'PATCH' | 'HEAD' | 'OPTIONS';
6551
+ url: string;
6552
+ data?: Data;
6553
+ params?: URLSearchParams;
6554
+ } & APIMetadata;
6555
+ type APIMetadata = {
6556
+ methodFqn?: string;
6557
+ entityFqdn?: string;
6558
+ packageName?: string;
6559
+ };
6560
+ type BuildRESTFunction<T extends RESTFunctionDescriptor> = T extends RESTFunctionDescriptor<infer U> ? U : never;
6561
+ type EventDefinition<Payload = unknown, Type extends string = string> = {
6562
+ __type: 'event-definition';
6563
+ type: Type;
6564
+ isDomainEvent?: boolean;
6565
+ transformations?: (envelope: unknown) => Payload;
6566
+ __payload: Payload;
6567
+ };
6568
+ declare function EventDefinition<Type extends string>(type: Type, isDomainEvent?: boolean, transformations?: (envelope: any) => unknown): <Payload = unknown>() => EventDefinition<Payload, Type>;
6569
+ type EventHandler<T extends EventDefinition> = (payload: T['__payload']) => void | Promise<void>;
6570
+ type BuildEventDefinition<T extends EventDefinition<any, string>> = (handler: EventHandler<T>) => void;
6571
+
6572
+ type ServicePluginMethodInput = {
6573
+ request: any;
6574
+ metadata: any;
6575
+ };
6576
+ type ServicePluginContract = Record<string, (payload: ServicePluginMethodInput) => unknown | Promise<unknown>>;
6577
+ type ServicePluginMethodMetadata = {
6578
+ name: string;
6579
+ primaryHttpMappingPath: string;
6580
+ transformations: {
6581
+ fromREST: (...args: unknown[]) => ServicePluginMethodInput;
6582
+ toREST: (...args: unknown[]) => unknown;
6583
+ };
6584
+ };
6585
+ type ServicePluginDefinition<Contract extends ServicePluginContract> = {
6586
+ __type: 'service-plugin-definition';
6587
+ componentType: string;
6588
+ methods: ServicePluginMethodMetadata[];
6589
+ __contract: Contract;
6590
+ };
6591
+ declare function ServicePluginDefinition<Contract extends ServicePluginContract>(componentType: string, methods: ServicePluginMethodMetadata[]): ServicePluginDefinition<Contract>;
6592
+ type BuildServicePluginDefinition<T extends ServicePluginDefinition<any>> = (implementation: T['__contract']) => void;
6593
+ declare const SERVICE_PLUGIN_ERROR_TYPE = "wix_spi_error";
6594
+
6595
+ type RequestContext = {
6596
+ isSSR: boolean;
6597
+ host: string;
6598
+ protocol?: string;
6599
+ };
6600
+ type ResponseTransformer = (data: any, headers?: any) => any;
6601
+ /**
6602
+ * Ambassador request options types are copied mostly from AxiosRequestConfig.
6603
+ * They are copied and not imported to reduce the amount of dependencies (to reduce install time).
6604
+ * https://github.com/axios/axios/blob/3f53eb6960f05a1f88409c4b731a40de595cb825/index.d.ts#L307-L315
6605
+ */
6606
+ type Method = 'get' | 'GET' | 'delete' | 'DELETE' | 'head' | 'HEAD' | 'options' | 'OPTIONS' | 'post' | 'POST' | 'put' | 'PUT' | 'patch' | 'PATCH' | 'purge' | 'PURGE' | 'link' | 'LINK' | 'unlink' | 'UNLINK';
6607
+ type AmbassadorRequestOptions<T = any> = {
6608
+ _?: T;
6609
+ url?: string;
6610
+ method?: Method;
6611
+ params?: any;
6612
+ data?: any;
6613
+ transformResponse?: ResponseTransformer | ResponseTransformer[];
6614
+ };
6615
+ type AmbassadorFactory<Request, Response> = (payload: Request) => ((context: RequestContext) => AmbassadorRequestOptions<Response>) & {
6616
+ __isAmbassador: boolean;
6617
+ };
6618
+ type AmbassadorFunctionDescriptor<Request = any, Response = any> = AmbassadorFactory<Request, Response>;
6619
+ type BuildAmbassadorFunction<T extends AmbassadorFunctionDescriptor> = T extends AmbassadorFunctionDescriptor<infer Request, infer Response> ? (req: Request) => Promise<Response> : never;
6620
+
6621
+ declare global {
6622
+ // eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- It has to be an `interface` so that it can be merged.
6623
+ interface SymbolConstructor {
6624
+ readonly observable: symbol;
6625
+ }
6626
+ }
6627
+
6628
+ declare const emptyObjectSymbol: unique symbol;
6629
+
6630
+ /**
6631
+ Represents a strictly empty plain object, the `{}` value.
6632
+
6633
+ When you annotate something as the type `{}`, it can be anything except `null` and `undefined`. This means that you cannot use `{}` to represent an empty plain object ([read more](https://stackoverflow.com/questions/47339869/typescript-empty-object-and-any-difference/52193484#52193484)).
6634
+
6635
+ @example
6636
+ ```
6637
+ import type {EmptyObject} from 'type-fest';
6638
+
6639
+ // The following illustrates the problem with `{}`.
6640
+ const foo1: {} = {}; // Pass
6641
+ const foo2: {} = []; // Pass
6642
+ const foo3: {} = 42; // Pass
6643
+ const foo4: {} = {a: 1}; // Pass
6644
+
6645
+ // With `EmptyObject` only the first case is valid.
6646
+ const bar1: EmptyObject = {}; // Pass
6647
+ const bar2: EmptyObject = 42; // Fail
6648
+ const bar3: EmptyObject = []; // Fail
6649
+ const bar4: EmptyObject = {a: 1}; // Fail
6650
+ ```
6651
+
6652
+ Unfortunately, `Record<string, never>`, `Record<keyof any, never>` and `Record<never, never>` do not work. See {@link https://github.com/sindresorhus/type-fest/issues/395 #395}.
6653
+
6654
+ @category Object
6655
+ */
6656
+ type EmptyObject = {[emptyObjectSymbol]?: never};
6657
+
6658
+ /**
6659
+ Returns a boolean for whether the two given types are equal.
6660
+
6661
+ @link https://github.com/microsoft/TypeScript/issues/27024#issuecomment-421529650
6662
+ @link https://stackoverflow.com/questions/68961864/how-does-the-equals-work-in-typescript/68963796#68963796
6663
+
6664
+ Use-cases:
6665
+ - If you want to make a conditional branch based on the result of a comparison of two types.
6666
+
6667
+ @example
6668
+ ```
6669
+ import type {IsEqual} from 'type-fest';
6670
+
6671
+ // This type returns a boolean for whether the given array includes the given item.
6672
+ // `IsEqual` is used to compare the given array at position 0 and the given item and then return true if they are equal.
6673
+ type Includes<Value extends readonly any[], Item> =
6674
+ Value extends readonly [Value[0], ...infer rest]
6675
+ ? IsEqual<Value[0], Item> extends true
6676
+ ? true
6677
+ : Includes<rest, Item>
6678
+ : false;
6679
+ ```
6680
+
6681
+ @category Type Guard
6682
+ @category Utilities
6683
+ */
6684
+ type IsEqual<A, B> =
6685
+ (<G>() => G extends A ? 1 : 2) extends
6686
+ (<G>() => G extends B ? 1 : 2)
6687
+ ? true
6688
+ : false;
6689
+
6690
+ /**
6691
+ Filter out keys from an object.
6692
+
6693
+ Returns `never` if `Exclude` is strictly equal to `Key`.
6694
+ Returns `never` if `Key` extends `Exclude`.
6695
+ Returns `Key` otherwise.
6696
+
6697
+ @example
6698
+ ```
6699
+ type Filtered = Filter<'foo', 'foo'>;
6700
+ //=> never
6701
+ ```
6702
+
6703
+ @example
6704
+ ```
6705
+ type Filtered = Filter<'bar', string>;
6706
+ //=> never
6707
+ ```
6708
+
6709
+ @example
6710
+ ```
6711
+ type Filtered = Filter<'bar', 'foo'>;
6712
+ //=> 'bar'
6713
+ ```
6714
+
6715
+ @see {Except}
6716
+ */
6717
+ type Filter<KeyType, ExcludeType> = IsEqual<KeyType, ExcludeType> extends true ? never : (KeyType extends ExcludeType ? never : KeyType);
6718
+
6719
+ type ExceptOptions = {
6720
+ /**
6721
+ Disallow assigning non-specified properties.
6722
+
6723
+ Note that any omitted properties in the resulting type will be present in autocomplete as `undefined`.
6724
+
6725
+ @default false
6726
+ */
6727
+ requireExactProps?: boolean;
6728
+ };
6729
+
6730
+ /**
6731
+ Create a type from an object type without certain keys.
6732
+
6733
+ We recommend setting the `requireExactProps` option to `true`.
6734
+
6735
+ This type is a stricter version of [`Omit`](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-5.html#the-omit-helper-type). The `Omit` type does not restrict the omitted keys to be keys present on the given type, while `Except` does. The benefits of a stricter type are avoiding typos and allowing the compiler to pick up on rename refactors automatically.
6736
+
6737
+ This type was proposed to the TypeScript team, which declined it, saying they prefer that libraries implement stricter versions of the built-in types ([microsoft/TypeScript#30825](https://github.com/microsoft/TypeScript/issues/30825#issuecomment-523668235)).
6738
+
6739
+ @example
6740
+ ```
6741
+ import type {Except} from 'type-fest';
6742
+
6743
+ type Foo = {
6744
+ a: number;
6745
+ b: string;
6746
+ };
6747
+
6748
+ type FooWithoutA = Except<Foo, 'a'>;
6749
+ //=> {b: string}
6750
+
6751
+ const fooWithoutA: FooWithoutA = {a: 1, b: '2'};
6752
+ //=> errors: 'a' does not exist in type '{ b: string; }'
6753
+
6754
+ type FooWithoutB = Except<Foo, 'b', {requireExactProps: true}>;
6755
+ //=> {a: number} & Partial<Record<"b", never>>
6756
+
6757
+ const fooWithoutB: FooWithoutB = {a: 1, b: '2'};
6758
+ //=> errors at 'b': Type 'string' is not assignable to type 'undefined'.
6759
+ ```
6760
+
6761
+ @category Object
6762
+ */
6763
+ type Except<ObjectType, KeysType extends keyof ObjectType, Options extends ExceptOptions = {requireExactProps: false}> = {
6764
+ [KeyType in keyof ObjectType as Filter<KeyType, KeysType>]: ObjectType[KeyType];
6765
+ } & (Options['requireExactProps'] extends true
6766
+ ? Partial<Record<KeysType, never>>
6767
+ : {});
6768
+
6769
+ /**
6770
+ Extract the keys from a type where the value type of the key extends the given `Condition`.
6771
+
6772
+ Internally this is used for the `ConditionalPick` and `ConditionalExcept` types.
6773
+
6774
+ @example
6775
+ ```
6776
+ import type {ConditionalKeys} from 'type-fest';
6777
+
6778
+ interface Example {
6779
+ a: string;
6780
+ b: string | number;
6781
+ c?: string;
6782
+ d: {};
6783
+ }
6784
+
6785
+ type StringKeysOnly = ConditionalKeys<Example, string>;
6786
+ //=> 'a'
6787
+ ```
6788
+
6789
+ To support partial types, make sure your `Condition` is a union of undefined (for example, `string | undefined`) as demonstrated below.
6790
+
6791
+ @example
6792
+ ```
6793
+ import type {ConditionalKeys} from 'type-fest';
6794
+
6795
+ type StringKeysAndUndefined = ConditionalKeys<Example, string | undefined>;
6796
+ //=> 'a' | 'c'
6797
+ ```
6798
+
6799
+ @category Object
6800
+ */
6801
+ type ConditionalKeys<Base, Condition> = NonNullable<
6802
+ // Wrap in `NonNullable` to strip away the `undefined` type from the produced union.
6803
+ {
6804
+ // Map through all the keys of the given base type.
6805
+ [Key in keyof Base]:
6806
+ // Pick only keys with types extending the given `Condition` type.
6807
+ Base[Key] extends Condition
6808
+ // Retain this key since the condition passes.
6809
+ ? Key
6810
+ // Discard this key since the condition fails.
6811
+ : never;
6812
+
6813
+ // Convert the produced object into a union type of the keys which passed the conditional test.
6814
+ }[keyof Base]
6815
+ >;
6816
+
6817
+ /**
6818
+ Exclude keys from a shape that matches the given `Condition`.
6819
+
6820
+ This is useful when you want to create a new type with a specific set of keys from a shape. For example, you might want to exclude all the primitive properties from a class and form a new shape containing everything but the primitive properties.
6821
+
6822
+ @example
6823
+ ```
6824
+ import type {Primitive, ConditionalExcept} from 'type-fest';
6825
+
6826
+ class Awesome {
6827
+ name: string;
6828
+ successes: number;
6829
+ failures: bigint;
6830
+
6831
+ run() {}
6832
+ }
6833
+
6834
+ type ExceptPrimitivesFromAwesome = ConditionalExcept<Awesome, Primitive>;
6835
+ //=> {run: () => void}
6836
+ ```
6837
+
6838
+ @example
6839
+ ```
6840
+ import type {ConditionalExcept} from 'type-fest';
6841
+
6842
+ interface Example {
6843
+ a: string;
6844
+ b: string | number;
6845
+ c: () => void;
6846
+ d: {};
6847
+ }
6848
+
6849
+ type NonStringKeysOnly = ConditionalExcept<Example, string>;
6850
+ //=> {b: string | number; c: () => void; d: {}}
6851
+ ```
6852
+
6853
+ @category Object
6854
+ */
6855
+ type ConditionalExcept<Base, Condition> = Except<
6856
+ Base,
6857
+ ConditionalKeys<Base, Condition>
6858
+ >;
6859
+
6860
+ /**
6861
+ * Descriptors are objects that describe the API of a module, and the module
6862
+ * can either be a REST module or a host module.
6863
+ * This type is recursive, so it can describe nested modules.
6864
+ */
6865
+ type Descriptors = RESTFunctionDescriptor | AmbassadorFunctionDescriptor | HostModule<any, any> | EventDefinition<any> | ServicePluginDefinition<any> | {
6866
+ [key: string]: Descriptors | PublicMetadata | any;
6867
+ };
6868
+ /**
6869
+ * This type takes in a descriptors object of a certain Host (including an `unknown` host)
6870
+ * and returns an object with the same structure, but with all descriptors replaced with their API.
6871
+ * Any non-descriptor properties are removed from the returned object, including descriptors that
6872
+ * do not match the given host (as they will not work with the given host).
6873
+ */
6874
+ type BuildDescriptors<T extends Descriptors, H extends Host<any> | undefined, Depth extends number = 5> = {
6875
+ done: T;
6876
+ recurse: T extends {
6877
+ __type: typeof SERVICE_PLUGIN_ERROR_TYPE;
6878
+ } ? never : T extends AmbassadorFunctionDescriptor ? BuildAmbassadorFunction<T> : T extends RESTFunctionDescriptor ? BuildRESTFunction<T> : T extends EventDefinition<any> ? BuildEventDefinition<T> : T extends ServicePluginDefinition<any> ? BuildServicePluginDefinition<T> : T extends HostModule<any, any> ? HostModuleAPI<T> : ConditionalExcept<{
6879
+ [Key in keyof T]: T[Key] extends Descriptors ? BuildDescriptors<T[Key], H, [
6880
+ -1,
6881
+ 0,
6882
+ 1,
6883
+ 2,
6884
+ 3,
6885
+ 4,
6886
+ 5
6887
+ ][Depth]> : never;
6888
+ }, EmptyObject>;
6889
+ }[Depth extends -1 ? 'done' : 'recurse'];
6890
+ type PublicMetadata = {
6891
+ PACKAGE_NAME?: string;
6892
+ };
6893
+
6894
+ declare global {
6895
+ interface ContextualClient {
6896
+ }
6897
+ }
6898
+ /**
6899
+ * A type used to create concerete types from SDK descriptors in
6900
+ * case a contextual client is available.
6901
+ */
6902
+ type MaybeContext<T extends Descriptors> = globalThis.ContextualClient extends {
6903
+ host: Host;
6904
+ } ? BuildDescriptors<T, globalThis.ContextualClient['host']> : T;
6905
+
5704
6906
  /** Form submission that was created or retrieved. */
5705
6907
  interface FormSubmission {
5706
6908
  /**
@@ -7879,6 +9081,11 @@ interface PhoneInput {
7879
9081
  showLabel?: boolean | null;
7880
9082
  /** Default value of the country code */
7881
9083
  defaultCountryCode?: string | null;
9084
+ /**
9085
+ * Flag identifying to show country flag or not
9086
+ * Default: false
9087
+ */
9088
+ showCountryFlag?: boolean;
7882
9089
  }
7883
9090
  interface DateInput {
7884
9091
  /** Label of the field. Displayed text for the date/time input. */
@@ -10133,28 +11340,28 @@ interface UpsertContactFromSubmissionSignature {
10133
11340
  (submissionId: string, options?: UpsertContactFromSubmissionOptions | undefined): Promise<UpsertContactFromSubmissionResponse & UpsertContactFromSubmissionResponseNonNullableFields>;
10134
11341
  }
10135
11342
 
10136
- declare const createSubmission: BuildRESTFunction<typeof createSubmission$1> & typeof createSubmission$1;
10137
- declare const bulkCreateSubmissionBySubmitter: BuildRESTFunction<typeof bulkCreateSubmissionBySubmitter$1> & typeof bulkCreateSubmissionBySubmitter$1;
10138
- declare const getSubmission: BuildRESTFunction<typeof getSubmission$1> & typeof getSubmission$1;
10139
- declare const updateSubmission: BuildRESTFunction<typeof updateSubmission$1> & typeof updateSubmission$1;
10140
- declare const confirmSubmission: BuildRESTFunction<typeof confirmSubmission$1> & typeof confirmSubmission$1;
10141
- declare const deleteSubmission: BuildRESTFunction<typeof deleteSubmission$1> & typeof deleteSubmission$1;
10142
- declare const bulkDeleteSubmission: BuildRESTFunction<typeof bulkDeleteSubmission$1> & typeof bulkDeleteSubmission$1;
10143
- declare const restoreSubmissionFromTrashBin: BuildRESTFunction<typeof restoreSubmissionFromTrashBin$1> & typeof restoreSubmissionFromTrashBin$1;
10144
- declare const removeSubmissionFromTrashBin: BuildRESTFunction<typeof removeSubmissionFromTrashBin$1> & typeof removeSubmissionFromTrashBin$1;
10145
- declare const bulkRemoveSubmissionFromTrashBin: BuildRESTFunction<typeof bulkRemoveSubmissionFromTrashBin$1> & typeof bulkRemoveSubmissionFromTrashBin$1;
10146
- declare const listDeletedSubmissions: BuildRESTFunction<typeof listDeletedSubmissions$1> & typeof listDeletedSubmissions$1;
10147
- declare const getDeletedSubmission: BuildRESTFunction<typeof getDeletedSubmission$1> & typeof getDeletedSubmission$1;
10148
- declare const querySubmission: BuildRESTFunction<typeof querySubmission$1> & typeof querySubmission$1;
10149
- declare const searchSubmissionsByNamespace: BuildRESTFunction<typeof searchSubmissionsByNamespace$1> & typeof searchSubmissionsByNamespace$1;
10150
- declare const querySubmissionsByNamespace: BuildRESTFunction<typeof querySubmissionsByNamespace$1> & typeof querySubmissionsByNamespace$1;
10151
- declare const countSubmissionsByFilter: BuildRESTFunction<typeof countSubmissionsByFilter$1> & typeof countSubmissionsByFilter$1;
10152
- declare const countSubmissions: BuildRESTFunction<typeof countSubmissions$1> & typeof countSubmissions$1;
10153
- declare const countDeletedSubmissions: BuildRESTFunction<typeof countDeletedSubmissions$1> & typeof countDeletedSubmissions$1;
10154
- declare const getMediaUploadUrl: BuildRESTFunction<typeof getMediaUploadUrl$1> & typeof getMediaUploadUrl$1;
10155
- declare const bulkMarkSubmissionsAsSeen: BuildRESTFunction<typeof bulkMarkSubmissionsAsSeen$1> & typeof bulkMarkSubmissionsAsSeen$1;
10156
- declare const getSubmissionDocument: BuildRESTFunction<typeof getSubmissionDocument$1> & typeof getSubmissionDocument$1;
10157
- declare const upsertContactFromSubmission: BuildRESTFunction<typeof upsertContactFromSubmission$1> & typeof upsertContactFromSubmission$1;
11343
+ declare const createSubmission: MaybeContext<BuildRESTFunction<typeof createSubmission$1> & typeof createSubmission$1>;
11344
+ declare const bulkCreateSubmissionBySubmitter: MaybeContext<BuildRESTFunction<typeof bulkCreateSubmissionBySubmitter$1> & typeof bulkCreateSubmissionBySubmitter$1>;
11345
+ declare const getSubmission: MaybeContext<BuildRESTFunction<typeof getSubmission$1> & typeof getSubmission$1>;
11346
+ declare const updateSubmission: MaybeContext<BuildRESTFunction<typeof updateSubmission$1> & typeof updateSubmission$1>;
11347
+ declare const confirmSubmission: MaybeContext<BuildRESTFunction<typeof confirmSubmission$1> & typeof confirmSubmission$1>;
11348
+ declare const deleteSubmission: MaybeContext<BuildRESTFunction<typeof deleteSubmission$1> & typeof deleteSubmission$1>;
11349
+ declare const bulkDeleteSubmission: MaybeContext<BuildRESTFunction<typeof bulkDeleteSubmission$1> & typeof bulkDeleteSubmission$1>;
11350
+ declare const restoreSubmissionFromTrashBin: MaybeContext<BuildRESTFunction<typeof restoreSubmissionFromTrashBin$1> & typeof restoreSubmissionFromTrashBin$1>;
11351
+ declare const removeSubmissionFromTrashBin: MaybeContext<BuildRESTFunction<typeof removeSubmissionFromTrashBin$1> & typeof removeSubmissionFromTrashBin$1>;
11352
+ declare const bulkRemoveSubmissionFromTrashBin: MaybeContext<BuildRESTFunction<typeof bulkRemoveSubmissionFromTrashBin$1> & typeof bulkRemoveSubmissionFromTrashBin$1>;
11353
+ declare const listDeletedSubmissions: MaybeContext<BuildRESTFunction<typeof listDeletedSubmissions$1> & typeof listDeletedSubmissions$1>;
11354
+ declare const getDeletedSubmission: MaybeContext<BuildRESTFunction<typeof getDeletedSubmission$1> & typeof getDeletedSubmission$1>;
11355
+ declare const querySubmission: MaybeContext<BuildRESTFunction<typeof querySubmission$1> & typeof querySubmission$1>;
11356
+ declare const searchSubmissionsByNamespace: MaybeContext<BuildRESTFunction<typeof searchSubmissionsByNamespace$1> & typeof searchSubmissionsByNamespace$1>;
11357
+ declare const querySubmissionsByNamespace: MaybeContext<BuildRESTFunction<typeof querySubmissionsByNamespace$1> & typeof querySubmissionsByNamespace$1>;
11358
+ declare const countSubmissionsByFilter: MaybeContext<BuildRESTFunction<typeof countSubmissionsByFilter$1> & typeof countSubmissionsByFilter$1>;
11359
+ declare const countSubmissions: MaybeContext<BuildRESTFunction<typeof countSubmissions$1> & typeof countSubmissions$1>;
11360
+ declare const countDeletedSubmissions: MaybeContext<BuildRESTFunction<typeof countDeletedSubmissions$1> & typeof countDeletedSubmissions$1>;
11361
+ declare const getMediaUploadUrl: MaybeContext<BuildRESTFunction<typeof getMediaUploadUrl$1> & typeof getMediaUploadUrl$1>;
11362
+ declare const bulkMarkSubmissionsAsSeen: MaybeContext<BuildRESTFunction<typeof bulkMarkSubmissionsAsSeen$1> & typeof bulkMarkSubmissionsAsSeen$1>;
11363
+ declare const getSubmissionDocument: MaybeContext<BuildRESTFunction<typeof getSubmissionDocument$1> & typeof getSubmissionDocument$1>;
11364
+ declare const upsertContactFromSubmission: MaybeContext<BuildRESTFunction<typeof upsertContactFromSubmission$1> & typeof upsertContactFromSubmission$1>;
10158
11365
 
10159
11366
  type context_ActionEvent = ActionEvent;
10160
11367
  type context_AddressInfo = AddressInfo;