@wix/forms 1.0.52 → 1.0.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/src/forms-v4-submission.http.d.ts +54 -8
- package/build/cjs/src/forms-v4-submission.http.js +54 -8
- package/build/cjs/src/forms-v4-submission.http.js.map +1 -1
- package/build/cjs/src/forms-v4-submission.public.d.ts +12 -2
- package/build/cjs/src/forms-v4-submission.public.js +4 -4
- package/build/cjs/src/forms-v4-submission.public.js.map +1 -1
- package/build/cjs/src/forms-v4-submission.types.d.ts +211 -86
- package/build/cjs/src/forms-v4-submission.types.js +21 -19
- package/build/cjs/src/forms-v4-submission.types.js.map +1 -1
- package/build/cjs/src/forms-v4-submission.universal.d.ts +254 -98
- package/build/cjs/src/forms-v4-submission.universal.js +61 -28
- package/build/cjs/src/forms-v4-submission.universal.js.map +1 -1
- package/build/es/src/forms-v4-submission.http.d.ts +54 -8
- package/build/es/src/forms-v4-submission.http.js +54 -8
- package/build/es/src/forms-v4-submission.http.js.map +1 -1
- package/build/es/src/forms-v4-submission.public.d.ts +12 -2
- package/build/es/src/forms-v4-submission.public.js +1 -1
- package/build/es/src/forms-v4-submission.public.js.map +1 -1
- package/build/es/src/forms-v4-submission.types.d.ts +211 -86
- package/build/es/src/forms-v4-submission.types.js +19 -17
- package/build/es/src/forms-v4-submission.types.js.map +1 -1
- package/build/es/src/forms-v4-submission.universal.d.ts +254 -98
- package/build/es/src/forms-v4-submission.universal.js +59 -26
- package/build/es/src/forms-v4-submission.universal.js.map +1 -1
- package/package.json +5 -5
|
@@ -42,15 +42,12 @@ export interface FormSubmission {
|
|
|
42
42
|
* @readonly
|
|
43
43
|
*/
|
|
44
44
|
submitter?: Submitter;
|
|
45
|
-
/** Whether the submission was read by a site
|
|
45
|
+
/** Whether the submission was read by a site Extension with permissions to manage submissions. */
|
|
46
46
|
seen?: boolean;
|
|
47
|
-
/**
|
|
48
|
-
* ID of the order related to submission (applicable if form has payments added).
|
|
49
|
-
* @readonly
|
|
50
|
-
*/
|
|
51
|
-
orderId?: string | null;
|
|
52
47
|
/** Data extensions ExtendedFields. */
|
|
53
48
|
extendedFields?: ExtendedFields;
|
|
49
|
+
/** Order details. */
|
|
50
|
+
orderDetails?: OrderDetails;
|
|
54
51
|
}
|
|
55
52
|
export declare enum SubmissionStatus {
|
|
56
53
|
UNDEFINED = "UNDEFINED",
|
|
@@ -107,9 +104,33 @@ export interface ExtendedFields {
|
|
|
107
104
|
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
108
105
|
*
|
|
109
106
|
* You can only access fields for which you have the appropriate permissions.
|
|
107
|
+
*
|
|
108
|
+
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
110
109
|
*/
|
|
111
110
|
namespaces?: Record<string, Record<string, any>>;
|
|
112
111
|
}
|
|
112
|
+
export interface OrderDetails {
|
|
113
|
+
/**
|
|
114
|
+
* ID of the order related to submission (applicable if form has payments added).
|
|
115
|
+
* @readonly
|
|
116
|
+
*/
|
|
117
|
+
id?: string;
|
|
118
|
+
/**
|
|
119
|
+
* Order number.
|
|
120
|
+
* @readonly
|
|
121
|
+
*/
|
|
122
|
+
number?: string | null;
|
|
123
|
+
/**
|
|
124
|
+
* Currency.
|
|
125
|
+
* @readonly
|
|
126
|
+
*/
|
|
127
|
+
currency?: string;
|
|
128
|
+
/**
|
|
129
|
+
* Item subtotal.
|
|
130
|
+
* @readonly
|
|
131
|
+
*/
|
|
132
|
+
itemSubtotal?: string;
|
|
133
|
+
}
|
|
113
134
|
export interface CreateCheckoutFromSubmissionRequest extends CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf {
|
|
114
135
|
/** Submission's form. */
|
|
115
136
|
form?: Form;
|
|
@@ -199,8 +220,18 @@ export interface FormField {
|
|
|
199
220
|
hidden?: boolean;
|
|
200
221
|
/** Field view properties. */
|
|
201
222
|
view?: Record<string, any> | null;
|
|
202
|
-
|
|
203
|
-
|
|
223
|
+
/** Details identifying field, which is extension of other entity */
|
|
224
|
+
dataExtensionsDetails?: DataExtensionsDetails;
|
|
225
|
+
}
|
|
226
|
+
export interface StringType extends StringTypeFormatOptionsOneOf {
|
|
227
|
+
/** DATE format options */
|
|
228
|
+
dateOptions?: DateTimeConstraints;
|
|
229
|
+
/** DATE_TIME format options */
|
|
230
|
+
dateTimeOptions?: DateTimeConstraints;
|
|
231
|
+
/** TIME format options */
|
|
232
|
+
timeOptions?: DateTimeConstraints;
|
|
233
|
+
/** DATE_OPTIONAL_TIME format options */
|
|
234
|
+
dateOptionalTimeOptions?: DateTimeConstraints;
|
|
204
235
|
/** Minimum length. */
|
|
205
236
|
minLength?: number | null;
|
|
206
237
|
/** Maximum length. */
|
|
@@ -214,6 +245,17 @@ export interface StringType {
|
|
|
214
245
|
/** List of allowed values. */
|
|
215
246
|
enum?: string[] | null;
|
|
216
247
|
}
|
|
248
|
+
/** @oneof */
|
|
249
|
+
export interface StringTypeFormatOptionsOneOf {
|
|
250
|
+
/** DATE format options */
|
|
251
|
+
dateOptions?: DateTimeConstraints;
|
|
252
|
+
/** DATE_TIME format options */
|
|
253
|
+
dateTimeOptions?: DateTimeConstraints;
|
|
254
|
+
/** TIME format options */
|
|
255
|
+
timeOptions?: DateTimeConstraints;
|
|
256
|
+
/** DATE_OPTIONAL_TIME format options */
|
|
257
|
+
dateOptionalTimeOptions?: DateTimeConstraints;
|
|
258
|
+
}
|
|
217
259
|
export declare enum Format {
|
|
218
260
|
UNDEFINED = "UNDEFINED",
|
|
219
261
|
DATE = "DATE",
|
|
@@ -227,12 +269,29 @@ export declare enum Format {
|
|
|
227
269
|
HOSTNAME = "HOSTNAME",
|
|
228
270
|
COLOR_HEX = "COLOR_HEX",
|
|
229
271
|
CURRENCY = "CURRENCY",
|
|
230
|
-
LANGUAGE = "LANGUAGE"
|
|
272
|
+
LANGUAGE = "LANGUAGE",
|
|
273
|
+
DATE_OPTIONAL_TIME = "DATE_OPTIONAL_TIME"
|
|
231
274
|
}
|
|
232
275
|
export interface StringErrorMessages {
|
|
233
276
|
/** Default error message on invalid validation. */
|
|
234
277
|
default?: string | null;
|
|
235
278
|
}
|
|
279
|
+
export interface DateTimeConstraints {
|
|
280
|
+
/**
|
|
281
|
+
* Support static constrains defined as ISO date/time format, as well as
|
|
282
|
+
* dynamic calculations can be performed using special keywords such as "$now" to represent the current date and time.
|
|
283
|
+
* The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
|
|
284
|
+
* The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
|
|
285
|
+
*/
|
|
286
|
+
minimum?: string | null;
|
|
287
|
+
/**
|
|
288
|
+
* Support static constrains defined as ISO date/time format, as well as
|
|
289
|
+
* dynamic calculations can be performed using special keywords such as "$now" to represent the current date and time.
|
|
290
|
+
* The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
|
|
291
|
+
* The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
|
|
292
|
+
*/
|
|
293
|
+
maximum?: string | null;
|
|
294
|
+
}
|
|
236
295
|
export interface NumberType {
|
|
237
296
|
/** Inclusive maximum value. */
|
|
238
297
|
maximum?: number | null;
|
|
@@ -347,17 +406,86 @@ export interface ArrayErrorMessages {
|
|
|
347
406
|
/** Default error message on invalid validation. */
|
|
348
407
|
default?: string | null;
|
|
349
408
|
}
|
|
350
|
-
export interface PredefinedValidation {
|
|
409
|
+
export interface PredefinedValidation extends PredefinedValidationFormatOptionsOneOf {
|
|
410
|
+
/** Payment input field. */
|
|
411
|
+
paymentOptions?: PaymentType;
|
|
351
412
|
/** Format of predefined validation. */
|
|
352
413
|
format?: ValidationFormat;
|
|
353
414
|
}
|
|
415
|
+
/** @oneof */
|
|
416
|
+
export interface PredefinedValidationFormatOptionsOneOf {
|
|
417
|
+
/** Payment input field. */
|
|
418
|
+
paymentOptions?: PaymentType;
|
|
419
|
+
}
|
|
354
420
|
export declare enum ValidationFormat {
|
|
355
421
|
UNDEFINED = "UNDEFINED",
|
|
356
422
|
/** File upload validation. */
|
|
357
423
|
WIX_FILE = "WIX_FILE",
|
|
358
|
-
/** Payment validation
|
|
424
|
+
/** Payment validation. */
|
|
359
425
|
PAYMENT = "PAYMENT"
|
|
360
426
|
}
|
|
427
|
+
export interface PaymentType {
|
|
428
|
+
/** Field mapped to products. */
|
|
429
|
+
products?: Product[];
|
|
430
|
+
/** Minimum amount of different products. */
|
|
431
|
+
minItems?: number | null;
|
|
432
|
+
/** Maximum amount of different products. */
|
|
433
|
+
maxItems?: number | null;
|
|
434
|
+
}
|
|
435
|
+
export declare enum ProductType {
|
|
436
|
+
UNKNOWN = "UNKNOWN",
|
|
437
|
+
/** Shippable (physical). */
|
|
438
|
+
SHIPPABLE = "SHIPPABLE",
|
|
439
|
+
/** Digital. */
|
|
440
|
+
DIGITAL = "DIGITAL"
|
|
441
|
+
}
|
|
442
|
+
export declare enum PriceType {
|
|
443
|
+
UNKNOWN = "UNKNOWN",
|
|
444
|
+
/** Fixed price. */
|
|
445
|
+
FIXED_PRICE = "FIXED_PRICE",
|
|
446
|
+
/** Dynamic price from price range. */
|
|
447
|
+
DYNAMIC_PRICE = "DYNAMIC_PRICE"
|
|
448
|
+
}
|
|
449
|
+
export interface QuantityLimit {
|
|
450
|
+
/** Minimum quantity. */
|
|
451
|
+
minimum?: number | null;
|
|
452
|
+
/** Maximum quantity. */
|
|
453
|
+
maximum?: number | null;
|
|
454
|
+
}
|
|
455
|
+
export interface FixedPriceOptions {
|
|
456
|
+
/** Fixed price monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). */
|
|
457
|
+
price?: string;
|
|
458
|
+
}
|
|
459
|
+
export interface DynamicPriceOptions {
|
|
460
|
+
/** Minimal price monetary amount. */
|
|
461
|
+
minPrice?: string;
|
|
462
|
+
/** Maximal price monetary amount. */
|
|
463
|
+
maxPrice?: string | null;
|
|
464
|
+
}
|
|
465
|
+
export interface Product extends ProductPriceOptionsOneOf {
|
|
466
|
+
/** Fixed price options. */
|
|
467
|
+
fixedPriceOptions?: FixedPriceOptions;
|
|
468
|
+
/** Dynamic price options. */
|
|
469
|
+
dynamicPriceOptions?: DynamicPriceOptions;
|
|
470
|
+
/**
|
|
471
|
+
* Product ID.
|
|
472
|
+
* @readonly
|
|
473
|
+
*/
|
|
474
|
+
id?: string;
|
|
475
|
+
/** Product type. */
|
|
476
|
+
productType?: ProductType;
|
|
477
|
+
/** Price type. */
|
|
478
|
+
priceType?: PriceType;
|
|
479
|
+
/** Quantity limit. */
|
|
480
|
+
quantityLimit?: QuantityLimit;
|
|
481
|
+
}
|
|
482
|
+
/** @oneof */
|
|
483
|
+
export interface ProductPriceOptionsOneOf {
|
|
484
|
+
/** Fixed price options. */
|
|
485
|
+
fixedPriceOptions?: FixedPriceOptions;
|
|
486
|
+
/** Dynamic price options. */
|
|
487
|
+
dynamicPriceOptions?: DynamicPriceOptions;
|
|
488
|
+
}
|
|
361
489
|
export interface NestedFormFieldOverrides {
|
|
362
490
|
/** Whether the field is required. Leave blank for no override. */
|
|
363
491
|
required?: boolean | null;
|
|
@@ -399,6 +527,10 @@ export interface ValidationValidationOneOf {
|
|
|
399
527
|
/** Predefined validation of specific format */
|
|
400
528
|
predefined?: PredefinedValidation;
|
|
401
529
|
}
|
|
530
|
+
export interface DataExtensionsDetails {
|
|
531
|
+
/** FQDNS which can be extended with this field */
|
|
532
|
+
fqdns?: string[];
|
|
533
|
+
}
|
|
402
534
|
export interface NestedFormOverrides {
|
|
403
535
|
/** Field overrides by field ID */
|
|
404
536
|
fieldOverrides?: Record<string, NestedFormFieldOverrides>;
|
|
@@ -1681,7 +1813,8 @@ export declare enum FormatEnumFormat {
|
|
|
1681
1813
|
HOSTNAME = "HOSTNAME",
|
|
1682
1814
|
COLOR_HEX = "COLOR_HEX",
|
|
1683
1815
|
CURRENCY = "CURRENCY",
|
|
1684
|
-
LANGUAGE = "LANGUAGE"
|
|
1816
|
+
LANGUAGE = "LANGUAGE",
|
|
1817
|
+
DATE_OPTIONAL_TIME = "DATE_OPTIONAL_TIME"
|
|
1685
1818
|
}
|
|
1686
1819
|
export interface InputFieldStringErrorMessages {
|
|
1687
1820
|
/** Default error message on invalid validation. */
|
|
@@ -2012,7 +2145,7 @@ export interface FileUpload {
|
|
|
2012
2145
|
export interface CheckboxGroupOption {
|
|
2013
2146
|
/** Selectable option label. */
|
|
2014
2147
|
label?: string | null;
|
|
2015
|
-
/** Selectable option value, which is saved to DB. Corresponds to product id, found in
|
|
2148
|
+
/** Selectable option value, which is saved to DB. Corresponds to product id, found in field's products list. */
|
|
2016
2149
|
value?: any;
|
|
2017
2150
|
/** Option id. Used as binding for translations. */
|
|
2018
2151
|
id?: string;
|
|
@@ -2144,6 +2277,8 @@ export interface Payment extends PaymentComponentTypeOptionsOneOf {
|
|
|
2144
2277
|
* @readonly
|
|
2145
2278
|
*/
|
|
2146
2279
|
componentType?: PaymentComponentType;
|
|
2280
|
+
/** Validation of payment type. */
|
|
2281
|
+
validation?: PaymentType;
|
|
2147
2282
|
}
|
|
2148
2283
|
/** @oneof */
|
|
2149
2284
|
export interface PaymentComponentTypeOptionsOneOf {
|
|
@@ -2297,6 +2432,8 @@ export interface BreakPoint {
|
|
|
2297
2432
|
margin?: Margin;
|
|
2298
2433
|
/** Description of elements paddings. */
|
|
2299
2434
|
padding?: Margin;
|
|
2435
|
+
/** Sections of the layout, which allow manage fields */
|
|
2436
|
+
sections?: Section[];
|
|
2300
2437
|
}
|
|
2301
2438
|
export interface ItemLayout {
|
|
2302
2439
|
/** Form field reference id. */
|
|
@@ -2316,6 +2453,20 @@ export interface Margin {
|
|
|
2316
2453
|
/** Vertical value. */
|
|
2317
2454
|
vertical?: number | null;
|
|
2318
2455
|
}
|
|
2456
|
+
export interface Section {
|
|
2457
|
+
/** Id of the section */
|
|
2458
|
+
id?: string;
|
|
2459
|
+
/** Horizontal coordinate in the grid. */
|
|
2460
|
+
row?: number | null;
|
|
2461
|
+
/**
|
|
2462
|
+
* A list of field identifiers that are permitted to be placed within a section.
|
|
2463
|
+
* The section will only accept fields with IDs specified in this list.
|
|
2464
|
+
* If the section encounters the $new key within the list,
|
|
2465
|
+
* it allows the inclusion of fields not explicitly listed,
|
|
2466
|
+
* enabling dynamic addition of new fields.
|
|
2467
|
+
*/
|
|
2468
|
+
allowedFieldIds?: string[];
|
|
2469
|
+
}
|
|
2319
2470
|
export interface FormRule {
|
|
2320
2471
|
/** Id of the rule */
|
|
2321
2472
|
id?: string;
|
|
@@ -2356,8 +2507,6 @@ export declare enum Kind {
|
|
|
2356
2507
|
export interface PostSubmissionTriggers {
|
|
2357
2508
|
/** Upserts a contact from the submission data. */
|
|
2358
2509
|
upsertContact?: UpsertContact;
|
|
2359
|
-
/** Payment trigger. */
|
|
2360
|
-
paymentTrigger?: PaymentTrigger;
|
|
2361
2510
|
}
|
|
2362
2511
|
export interface UpsertContact {
|
|
2363
2512
|
/** Fields mapping (target field mapped to corresponding contact field). */
|
|
@@ -2434,72 +2583,6 @@ export interface CustomFieldInfo {
|
|
|
2434
2583
|
/** Custom field key. */
|
|
2435
2584
|
key?: string;
|
|
2436
2585
|
}
|
|
2437
|
-
export interface PaymentTrigger {
|
|
2438
|
-
/** Fields mapping (target field mapped to corresponding payment field). */
|
|
2439
|
-
fieldsMapping?: Record<string, FormFieldPaymentInfo>;
|
|
2440
|
-
}
|
|
2441
|
-
export interface FormFieldPaymentInfo {
|
|
2442
|
-
/** Field mapped to products. */
|
|
2443
|
-
products?: Product[];
|
|
2444
|
-
/** Minimum amount of different products. */
|
|
2445
|
-
minItems?: number | null;
|
|
2446
|
-
/** Maximum amount of different products. */
|
|
2447
|
-
maxItems?: number | null;
|
|
2448
|
-
}
|
|
2449
|
-
export declare enum ProductType {
|
|
2450
|
-
UNKNOWN = "UNKNOWN",
|
|
2451
|
-
/** Shippable (physical). */
|
|
2452
|
-
SHIPPABLE = "SHIPPABLE",
|
|
2453
|
-
/** Digital. */
|
|
2454
|
-
DIGITAL = "DIGITAL"
|
|
2455
|
-
}
|
|
2456
|
-
export declare enum PriceType {
|
|
2457
|
-
UNKNOWN = "UNKNOWN",
|
|
2458
|
-
/** Fixed price. */
|
|
2459
|
-
FIXED_PRICE = "FIXED_PRICE",
|
|
2460
|
-
/** Dynamic price from price range. */
|
|
2461
|
-
DYNAMIC_PRICE = "DYNAMIC_PRICE"
|
|
2462
|
-
}
|
|
2463
|
-
export interface QuantityLimit {
|
|
2464
|
-
/** Minimum quantity. */
|
|
2465
|
-
minimum?: number | null;
|
|
2466
|
-
/** Maximum quantity. */
|
|
2467
|
-
maximum?: number | null;
|
|
2468
|
-
}
|
|
2469
|
-
export interface FixedPriceOptions {
|
|
2470
|
-
/** Fixed price monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). */
|
|
2471
|
-
price?: string;
|
|
2472
|
-
}
|
|
2473
|
-
export interface DynamicPriceOptions {
|
|
2474
|
-
/** Minimal price monetary amount. */
|
|
2475
|
-
minPrice?: string;
|
|
2476
|
-
/** Maximal price monetary amount. */
|
|
2477
|
-
maxPrice?: string | null;
|
|
2478
|
-
}
|
|
2479
|
-
export interface Product extends ProductPriceOptionsOneOf {
|
|
2480
|
-
/** Fixed price options. */
|
|
2481
|
-
fixedPriceOptions?: FixedPriceOptions;
|
|
2482
|
-
/** Dynamic price options. */
|
|
2483
|
-
dynamicPriceOptions?: DynamicPriceOptions;
|
|
2484
|
-
/**
|
|
2485
|
-
* Product ID.
|
|
2486
|
-
* @readonly
|
|
2487
|
-
*/
|
|
2488
|
-
id?: string;
|
|
2489
|
-
/** Product type. */
|
|
2490
|
-
productType?: ProductType;
|
|
2491
|
-
/** Price type. */
|
|
2492
|
-
priceType?: PriceType;
|
|
2493
|
-
/** Quantity limit. */
|
|
2494
|
-
quantityLimit?: QuantityLimit;
|
|
2495
|
-
}
|
|
2496
|
-
/** @oneof */
|
|
2497
|
-
export interface ProductPriceOptionsOneOf {
|
|
2498
|
-
/** Fixed price options. */
|
|
2499
|
-
fixedPriceOptions?: FixedPriceOptions;
|
|
2500
|
-
/** Dynamic price options. */
|
|
2501
|
-
dynamicPriceOptions?: DynamicPriceOptions;
|
|
2502
|
-
}
|
|
2503
2586
|
export interface NestedForm {
|
|
2504
2587
|
/** Targets which have this form. */
|
|
2505
2588
|
targets?: string[];
|
|
@@ -2510,6 +2593,10 @@ export interface CreateCheckoutFromSubmissionResponse {
|
|
|
2510
2593
|
/** Checkout ID (applicable for form involving payments). */
|
|
2511
2594
|
checkoutId?: string | null;
|
|
2512
2595
|
}
|
|
2596
|
+
export interface IsFormSubmittableRequest {
|
|
2597
|
+
}
|
|
2598
|
+
export interface IsFormSubmittableResponse {
|
|
2599
|
+
}
|
|
2513
2600
|
export interface DomainEvent extends DomainEventBodyOneOf {
|
|
2514
2601
|
createdEvent?: EntityCreatedEvent;
|
|
2515
2602
|
updatedEvent?: EntityUpdatedEvent;
|
|
@@ -2571,6 +2658,8 @@ export interface EntityUpdatedEvent {
|
|
|
2571
2658
|
currentEntityAsJson?: string;
|
|
2572
2659
|
}
|
|
2573
2660
|
export interface EntityDeletedEvent {
|
|
2661
|
+
/** Entity that was deleted */
|
|
2662
|
+
deletedEntityAsJson?: string | null;
|
|
2574
2663
|
}
|
|
2575
2664
|
export interface ActionEvent {
|
|
2576
2665
|
bodyAsJson?: string;
|
|
@@ -2652,8 +2741,6 @@ export interface CreateSubmissionResponse {
|
|
|
2652
2741
|
export interface CreateSubmissionBySubmitterRequest {
|
|
2653
2742
|
/** Submission to create. */
|
|
2654
2743
|
submission?: FormSubmission;
|
|
2655
|
-
/** When set, and when spam validation is enabled by the namespace provider, will validate a submission for spam. */
|
|
2656
|
-
validateSpam?: boolean;
|
|
2657
2744
|
}
|
|
2658
2745
|
export interface CreateSubmissionBySubmitterResponse {
|
|
2659
2746
|
/** The created submission. */
|
|
@@ -2668,8 +2755,6 @@ export interface BulkCreateSubmissionBySubmitterRequest {
|
|
|
2668
2755
|
submissions?: FormSubmission[];
|
|
2669
2756
|
/** When set, items will be returned on successful create. */
|
|
2670
2757
|
returnEntity?: boolean;
|
|
2671
|
-
/** When set, and when spam validation is enabled by the namespace provider, will validate a submission for spam. */
|
|
2672
|
-
validateSpam?: boolean;
|
|
2673
2758
|
}
|
|
2674
2759
|
export interface BulkCreateSubmissionBySubmitterResponse {
|
|
2675
2760
|
/** Created submissions with metadata */
|
|
@@ -2935,7 +3020,7 @@ export interface FormSubmissionsCount {
|
|
|
2935
3020
|
formId?: string;
|
|
2936
3021
|
/** Total number of submissions. */
|
|
2937
3022
|
totalCount?: number;
|
|
2938
|
-
/** Number of submissions that haven't yet been seen by site
|
|
3023
|
+
/** Number of submissions that haven't yet been seen by site Extensions with manage submission permissions. */
|
|
2939
3024
|
unseenCount?: number;
|
|
2940
3025
|
}
|
|
2941
3026
|
export interface CountDeletedSubmissionsRequest {
|
|
@@ -3018,6 +3103,11 @@ export interface CreateSubmissionResponseNonNullableFields {
|
|
|
3018
3103
|
namespace: string;
|
|
3019
3104
|
status: SubmissionStatus;
|
|
3020
3105
|
seen: boolean;
|
|
3106
|
+
orderDetails?: {
|
|
3107
|
+
id: string;
|
|
3108
|
+
currency: string;
|
|
3109
|
+
itemSubtotal: string;
|
|
3110
|
+
};
|
|
3021
3111
|
};
|
|
3022
3112
|
}
|
|
3023
3113
|
export interface GetSubmissionResponseNonNullableFields {
|
|
@@ -3026,6 +3116,11 @@ export interface GetSubmissionResponseNonNullableFields {
|
|
|
3026
3116
|
namespace: string;
|
|
3027
3117
|
status: SubmissionStatus;
|
|
3028
3118
|
seen: boolean;
|
|
3119
|
+
orderDetails?: {
|
|
3120
|
+
id: string;
|
|
3121
|
+
currency: string;
|
|
3122
|
+
itemSubtotal: string;
|
|
3123
|
+
};
|
|
3029
3124
|
};
|
|
3030
3125
|
}
|
|
3031
3126
|
export interface UpdateSubmissionResponseNonNullableFields {
|
|
@@ -3034,6 +3129,11 @@ export interface UpdateSubmissionResponseNonNullableFields {
|
|
|
3034
3129
|
namespace: string;
|
|
3035
3130
|
status: SubmissionStatus;
|
|
3036
3131
|
seen: boolean;
|
|
3132
|
+
orderDetails?: {
|
|
3133
|
+
id: string;
|
|
3134
|
+
currency: string;
|
|
3135
|
+
itemSubtotal: string;
|
|
3136
|
+
};
|
|
3037
3137
|
};
|
|
3038
3138
|
}
|
|
3039
3139
|
export interface ConfirmSubmissionResponseNonNullableFields {
|
|
@@ -3042,6 +3142,11 @@ export interface ConfirmSubmissionResponseNonNullableFields {
|
|
|
3042
3142
|
namespace: string;
|
|
3043
3143
|
status: SubmissionStatus;
|
|
3044
3144
|
seen: boolean;
|
|
3145
|
+
orderDetails?: {
|
|
3146
|
+
id: string;
|
|
3147
|
+
currency: string;
|
|
3148
|
+
itemSubtotal: string;
|
|
3149
|
+
};
|
|
3045
3150
|
};
|
|
3046
3151
|
}
|
|
3047
3152
|
export interface BulkDeleteSubmissionResponseNonNullableFields {
|
|
@@ -3067,6 +3172,11 @@ export interface RestoreSubmissionFromTrashBinResponseNonNullableFields {
|
|
|
3067
3172
|
namespace: string;
|
|
3068
3173
|
status: SubmissionStatus;
|
|
3069
3174
|
seen: boolean;
|
|
3175
|
+
orderDetails?: {
|
|
3176
|
+
id: string;
|
|
3177
|
+
currency: string;
|
|
3178
|
+
itemSubtotal: string;
|
|
3179
|
+
};
|
|
3070
3180
|
};
|
|
3071
3181
|
}
|
|
3072
3182
|
export interface BulkRemoveSubmissionFromTrashBinResponseNonNullableFields {
|
|
@@ -3092,6 +3202,11 @@ export interface ListDeletedSubmissionsResponseNonNullableFields {
|
|
|
3092
3202
|
namespace: string;
|
|
3093
3203
|
status: SubmissionStatus;
|
|
3094
3204
|
seen: boolean;
|
|
3205
|
+
orderDetails?: {
|
|
3206
|
+
id: string;
|
|
3207
|
+
currency: string;
|
|
3208
|
+
itemSubtotal: string;
|
|
3209
|
+
};
|
|
3095
3210
|
}[];
|
|
3096
3211
|
}
|
|
3097
3212
|
export interface GetDeletedSubmissionResponseNonNullableFields {
|
|
@@ -3100,6 +3215,11 @@ export interface GetDeletedSubmissionResponseNonNullableFields {
|
|
|
3100
3215
|
namespace: string;
|
|
3101
3216
|
status: SubmissionStatus;
|
|
3102
3217
|
seen: boolean;
|
|
3218
|
+
orderDetails?: {
|
|
3219
|
+
id: string;
|
|
3220
|
+
currency: string;
|
|
3221
|
+
itemSubtotal: string;
|
|
3222
|
+
};
|
|
3103
3223
|
};
|
|
3104
3224
|
}
|
|
3105
3225
|
export interface QuerySubmissionsByNamespaceResponseNonNullableFields {
|
|
@@ -3108,6 +3228,11 @@ export interface QuerySubmissionsByNamespaceResponseNonNullableFields {
|
|
|
3108
3228
|
namespace: string;
|
|
3109
3229
|
status: SubmissionStatus;
|
|
3110
3230
|
seen: boolean;
|
|
3231
|
+
orderDetails?: {
|
|
3232
|
+
id: string;
|
|
3233
|
+
currency: string;
|
|
3234
|
+
itemSubtotal: string;
|
|
3235
|
+
};
|
|
3111
3236
|
}[];
|
|
3112
3237
|
}
|
|
3113
3238
|
export interface CountSubmissionsResponseNonNullableFields {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.SortOrder = exports.IdentityType = exports.
|
|
3
|
+
exports.PhoneInfoTag = exports.EmailInfoTag = exports.Kind = exports.OverrideEntityType = exports.FieldType = exports.Target = exports.InputType = exports.PaymentComponentType = exports.WixFileComponentType = exports.UploadFileFormat = exports.ComponentType = exports.PropertiesTypePropertiesType = exports.ItemType = exports.BooleanComponentType = exports.NumberComponentType = exports.StringComponentType = exports.FormatEnumFormat = exports.NullValue = exports.VerticalAlignment = exports.Direction = exports.InitialExpandedItems = exports.AppType = exports.FontType = exports.DecorationType = exports.BackgroundType = exports.PollLayoutDirection = exports.PollLayoutType = exports.VoteRole = exports.ViewRole = exports.MapType = exports.Source = exports.ThumbnailsAlignment = exports.Crop = exports.Orientation = exports.LayoutType = exports.ViewMode = exports.Alignment = exports.Width = exports.LineStyle = exports.TextAlignment = exports.LinkTarget = exports.Type = exports.PluginContainerDataAlignment = exports.WidthType = exports.NodeType = exports.PriceType = exports.ProductType = exports.ValidationFormat = exports.Format = exports.SubmissionStatus = void 0;
|
|
4
|
+
exports.SortOrder = exports.IdentityType = exports.ContactField = exports.Tag = void 0;
|
|
5
5
|
var SubmissionStatus;
|
|
6
6
|
(function (SubmissionStatus) {
|
|
7
7
|
SubmissionStatus["UNDEFINED"] = "UNDEFINED";
|
|
@@ -25,15 +25,32 @@ var Format;
|
|
|
25
25
|
Format["COLOR_HEX"] = "COLOR_HEX";
|
|
26
26
|
Format["CURRENCY"] = "CURRENCY";
|
|
27
27
|
Format["LANGUAGE"] = "LANGUAGE";
|
|
28
|
+
Format["DATE_OPTIONAL_TIME"] = "DATE_OPTIONAL_TIME";
|
|
28
29
|
})(Format = exports.Format || (exports.Format = {}));
|
|
29
30
|
var ValidationFormat;
|
|
30
31
|
(function (ValidationFormat) {
|
|
31
32
|
ValidationFormat["UNDEFINED"] = "UNDEFINED";
|
|
32
33
|
/** File upload validation. */
|
|
33
34
|
ValidationFormat["WIX_FILE"] = "WIX_FILE";
|
|
34
|
-
/** Payment validation
|
|
35
|
+
/** Payment validation. */
|
|
35
36
|
ValidationFormat["PAYMENT"] = "PAYMENT";
|
|
36
37
|
})(ValidationFormat = exports.ValidationFormat || (exports.ValidationFormat = {}));
|
|
38
|
+
var ProductType;
|
|
39
|
+
(function (ProductType) {
|
|
40
|
+
ProductType["UNKNOWN"] = "UNKNOWN";
|
|
41
|
+
/** Shippable (physical). */
|
|
42
|
+
ProductType["SHIPPABLE"] = "SHIPPABLE";
|
|
43
|
+
/** Digital. */
|
|
44
|
+
ProductType["DIGITAL"] = "DIGITAL";
|
|
45
|
+
})(ProductType = exports.ProductType || (exports.ProductType = {}));
|
|
46
|
+
var PriceType;
|
|
47
|
+
(function (PriceType) {
|
|
48
|
+
PriceType["UNKNOWN"] = "UNKNOWN";
|
|
49
|
+
/** Fixed price. */
|
|
50
|
+
PriceType["FIXED_PRICE"] = "FIXED_PRICE";
|
|
51
|
+
/** Dynamic price from price range. */
|
|
52
|
+
PriceType["DYNAMIC_PRICE"] = "DYNAMIC_PRICE";
|
|
53
|
+
})(PriceType = exports.PriceType || (exports.PriceType = {}));
|
|
37
54
|
var NodeType;
|
|
38
55
|
(function (NodeType) {
|
|
39
56
|
NodeType["PARAGRAPH"] = "PARAGRAPH";
|
|
@@ -336,6 +353,7 @@ var FormatEnumFormat;
|
|
|
336
353
|
FormatEnumFormat["COLOR_HEX"] = "COLOR_HEX";
|
|
337
354
|
FormatEnumFormat["CURRENCY"] = "CURRENCY";
|
|
338
355
|
FormatEnumFormat["LANGUAGE"] = "LANGUAGE";
|
|
356
|
+
FormatEnumFormat["DATE_OPTIONAL_TIME"] = "DATE_OPTIONAL_TIME";
|
|
339
357
|
})(FormatEnumFormat = exports.FormatEnumFormat || (exports.FormatEnumFormat = {}));
|
|
340
358
|
var StringComponentType;
|
|
341
359
|
(function (StringComponentType) {
|
|
@@ -467,22 +485,6 @@ var ContactField;
|
|
|
467
485
|
ContactField["SUBSCRIPTION"] = "SUBSCRIPTION";
|
|
468
486
|
ContactField["VAT_ID"] = "VAT_ID";
|
|
469
487
|
})(ContactField = exports.ContactField || (exports.ContactField = {}));
|
|
470
|
-
var ProductType;
|
|
471
|
-
(function (ProductType) {
|
|
472
|
-
ProductType["UNKNOWN"] = "UNKNOWN";
|
|
473
|
-
/** Shippable (physical). */
|
|
474
|
-
ProductType["SHIPPABLE"] = "SHIPPABLE";
|
|
475
|
-
/** Digital. */
|
|
476
|
-
ProductType["DIGITAL"] = "DIGITAL";
|
|
477
|
-
})(ProductType = exports.ProductType || (exports.ProductType = {}));
|
|
478
|
-
var PriceType;
|
|
479
|
-
(function (PriceType) {
|
|
480
|
-
PriceType["UNKNOWN"] = "UNKNOWN";
|
|
481
|
-
/** Fixed price. */
|
|
482
|
-
PriceType["FIXED_PRICE"] = "FIXED_PRICE";
|
|
483
|
-
/** Dynamic price from price range. */
|
|
484
|
-
PriceType["DYNAMIC_PRICE"] = "DYNAMIC_PRICE";
|
|
485
|
-
})(PriceType = exports.PriceType || (exports.PriceType = {}));
|
|
486
488
|
var IdentityType;
|
|
487
489
|
(function (IdentityType) {
|
|
488
490
|
IdentityType["UNKNOWN"] = "UNKNOWN";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"forms-v4-submission.types.js","sourceRoot":"","sources":["../../../src/forms-v4-submission.types.ts"],"names":[],"mappings":";;;;
|
|
1
|
+
{"version":3,"file":"forms-v4-submission.types.js","sourceRoot":"","sources":["../../../src/forms-v4-submission.types.ts"],"names":[],"mappings":"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"}
|