@vendasta/forms_microservice 0.0.14 → 0.0.17
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/esm2020/lib/_internal/enums/api.enum.mjs +2 -1
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/objects/api.mjs +50 -59
- package/esm2020/lib/_internal/objects/index.mjs +2 -2
- package/fesm2015/vendasta-forms_microservice.mjs +51 -59
- package/fesm2015/vendasta-forms_microservice.mjs.map +1 -1
- package/fesm2020/vendasta-forms_microservice.mjs +51 -59
- package/fesm2020/vendasta-forms_microservice.mjs.map +1 -1
- package/lib/_internal/enums/api.enum.d.ts +2 -1
- package/lib/_internal/interfaces/api.interface.d.ts +11 -13
- package/lib/_internal/interfaces/index.d.ts +1 -1
- package/lib/_internal/objects/api.d.ts +17 -19
- package/lib/_internal/objects/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -28,13 +28,6 @@ export declare class DeleteFormRequest implements i.DeleteFormRequestInterface {
|
|
|
28
28
|
constructor(kwargs?: i.DeleteFormRequestInterface);
|
|
29
29
|
toApiJson(): object;
|
|
30
30
|
}
|
|
31
|
-
export declare class FormConfigFieldUnmappedFieldDropdownOption implements i.FormConfigFieldUnmappedFieldDropdownOptionInterface {
|
|
32
|
-
value: string;
|
|
33
|
-
label: string;
|
|
34
|
-
static fromProto(proto: any): FormConfigFieldUnmappedFieldDropdownOption;
|
|
35
|
-
constructor(kwargs?: i.FormConfigFieldUnmappedFieldDropdownOptionInterface);
|
|
36
|
-
toApiJson(): object;
|
|
37
|
-
}
|
|
38
31
|
export declare class FormConfigField implements i.FormConfigFieldInterface {
|
|
39
32
|
schema: FormConfigFieldSchema;
|
|
40
33
|
label: string;
|
|
@@ -49,9 +42,6 @@ export declare class FieldValue implements i.FieldValueInterface {
|
|
|
49
42
|
invalid: boolean;
|
|
50
43
|
integer: number;
|
|
51
44
|
string: string;
|
|
52
|
-
date: string;
|
|
53
|
-
dropdown: string;
|
|
54
|
-
currency: number;
|
|
55
45
|
boolean: boolean;
|
|
56
46
|
static fromProto(proto: any): FieldValue;
|
|
57
47
|
constructor(kwargs?: i.FieldValueInterface);
|
|
@@ -74,6 +64,7 @@ export declare class FormConfig implements i.FormConfigInterface {
|
|
|
74
64
|
created: Date;
|
|
75
65
|
updated: Date;
|
|
76
66
|
mostRecent: boolean;
|
|
67
|
+
redirectUrl: string;
|
|
77
68
|
static fromProto(proto: any): FormConfig;
|
|
78
69
|
constructor(kwargs?: i.FormConfigInterface);
|
|
79
70
|
toApiJson(): object;
|
|
@@ -92,14 +83,6 @@ export declare class ListFormsResponseFormRow implements i.ListFormsResponseForm
|
|
|
92
83
|
constructor(kwargs?: i.ListFormsResponseFormRowInterface);
|
|
93
84
|
toApiJson(): object;
|
|
94
85
|
}
|
|
95
|
-
export declare class FormSubmission implements i.FormSubmissionInterface {
|
|
96
|
-
formId: string;
|
|
97
|
-
version: string;
|
|
98
|
-
values: string;
|
|
99
|
-
static fromProto(proto: any): FormSubmission;
|
|
100
|
-
constructor(kwargs?: i.FormSubmissionInterface);
|
|
101
|
-
toApiJson(): object;
|
|
102
|
-
}
|
|
103
86
|
export declare class ListFormSubmissionResponseFormSubmission implements i.ListFormSubmissionResponseFormSubmissionInterface {
|
|
104
87
|
formSubmissionId: string;
|
|
105
88
|
formVersion: string;
|
|
@@ -108,6 +91,14 @@ export declare class ListFormSubmissionResponseFormSubmission implements i.ListF
|
|
|
108
91
|
constructor(kwargs?: i.ListFormSubmissionResponseFormSubmissionInterface);
|
|
109
92
|
toApiJson(): object;
|
|
110
93
|
}
|
|
94
|
+
export declare class FormSubmission implements i.FormSubmissionInterface {
|
|
95
|
+
formId: string;
|
|
96
|
+
version: string;
|
|
97
|
+
values: string;
|
|
98
|
+
static fromProto(proto: any): FormSubmission;
|
|
99
|
+
constructor(kwargs?: i.FormSubmissionInterface);
|
|
100
|
+
toApiJson(): object;
|
|
101
|
+
}
|
|
111
102
|
export declare class GetEmbedCodeRequest implements i.GetEmbedCodeRequestInterface {
|
|
112
103
|
formId: string;
|
|
113
104
|
static fromProto(proto: any): GetEmbedCodeRequest;
|
|
@@ -184,6 +175,13 @@ export declare class ListFormsResponse implements i.ListFormsResponseInterface {
|
|
|
184
175
|
constructor(kwargs?: i.ListFormsResponseInterface);
|
|
185
176
|
toApiJson(): object;
|
|
186
177
|
}
|
|
178
|
+
export declare class FormConfigFieldUnmappedFieldOption implements i.FormConfigFieldUnmappedFieldOptionInterface {
|
|
179
|
+
value: string;
|
|
180
|
+
label: string;
|
|
181
|
+
static fromProto(proto: any): FormConfigFieldUnmappedFieldOption;
|
|
182
|
+
constructor(kwargs?: i.FormConfigFieldUnmappedFieldOptionInterface);
|
|
183
|
+
toApiJson(): object;
|
|
184
|
+
}
|
|
187
185
|
export declare class PreviewFormRequest implements i.PreviewFormRequestInterface {
|
|
188
186
|
formConfig: FormConfig;
|
|
189
187
|
library: e.JsonSchemaLibrary;
|
|
@@ -242,7 +240,7 @@ export declare class ListFormSubmissionResponseFormSubmissionSubmittedValue impl
|
|
|
242
240
|
export declare class FormConfigFieldUnmappedField implements i.FormConfigFieldUnmappedFieldInterface {
|
|
243
241
|
id: string;
|
|
244
242
|
type: e.FieldType;
|
|
245
|
-
|
|
243
|
+
options: FormConfigFieldUnmappedFieldOption[];
|
|
246
244
|
currencyCode: string;
|
|
247
245
|
static fromProto(proto: any): FormConfigFieldUnmappedField;
|
|
248
246
|
constructor(kwargs?: i.FormConfigFieldUnmappedFieldInterface);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { PagedRequestOptions, PagedResponseMetadata, } from './paging';
|
|
2
|
-
export { CreateFormRequest, CreateFormResponse, CreateFormSubmissionRequest, DeleteFormRequest,
|
|
2
|
+
export { CreateFormRequest, CreateFormResponse, CreateFormSubmissionRequest, DeleteFormRequest, FormConfigField, FieldValue, ListFormsRequestFilters, FormConfig, GetMultiRequestFormConfigIdentifier, ListFormsResponseFormRow, ListFormSubmissionResponseFormSubmission, FormSubmission, GetEmbedCodeRequest, GetEmbedCodeResponse, GetFormRequest, GetFormResponse, GetMultiFormVersionsListRequest, GetMultiFormVersionsListResponse, GetMultiRequest, GetMultiResponse, ListFormSubmissionRequest, ListFormSubmissionResponse, ListFormsRequest, ListFormsResponse, FormConfigFieldUnmappedFieldOption, PreviewFormRequest, PreviewFormResponse, RenderFormRequest, RenderFormResponse, FormConfigFieldSchema, Styles, ListFormSubmissionResponseFormSubmissionSubmittedValue, FormConfigFieldUnmappedField, UpdateFormRequest, UpdateFormResponse, GetMultiFormVersionsListResponseVersions, } from './api';
|