@vendasta/forms_microservice 0.18.0 → 0.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/_internal/enums/galaxy-filters.enum.mjs +71 -0
- package/esm2020/lib/_internal/enums/index.mjs +2 -1
- package/esm2020/lib/_internal/forms.api.service.mjs +7 -2
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/galaxy-filters.interface.mjs +8 -0
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/objects/api.mjs +101 -1
- package/esm2020/lib/_internal/objects/galaxy-filters.mjs +148 -0
- package/esm2020/lib/_internal/objects/index.mjs +3 -2
- package/fesm2015/vendasta-forms_microservice.mjs +324 -2
- package/fesm2015/vendasta-forms_microservice.mjs.map +1 -1
- package/fesm2020/vendasta-forms_microservice.mjs +324 -2
- package/fesm2020/vendasta-forms_microservice.mjs.map +1 -1
- package/lib/_internal/enums/galaxy-filters.enum.d.ts +60 -0
- package/lib/_internal/enums/index.d.ts +1 -0
- package/lib/_internal/forms.api.service.d.ts +3 -2
- package/lib/_internal/interfaces/api.interface.d.ts +19 -0
- package/lib/_internal/interfaces/galaxy-filters.interface.d.ts +25 -0
- package/lib/_internal/interfaces/index.d.ts +2 -1
- package/lib/_internal/objects/api.d.ts +28 -0
- package/lib/_internal/objects/galaxy-filters.d.ts +39 -0
- package/lib/_internal/objects/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
export declare enum DateDefault {
|
|
2
|
+
DATE_DEFAULT_INVALID = 0,
|
|
3
|
+
DATE_DEFAULT_TODAY = 1,
|
|
4
|
+
DATE_DEFAULT_YESTERDAY = 2,
|
|
5
|
+
DATE_DEFAULT_TOMORROW = 3,
|
|
6
|
+
DATE_DEFAULT_THIS_WEEK = 4,
|
|
7
|
+
DATE_DEFAULT_LAST_WEEK = 5,
|
|
8
|
+
DATE_DEFAULT_NEXT_WEEK = 6,
|
|
9
|
+
DATE_DEFAULT_THIS_MONTH = 7,
|
|
10
|
+
DATE_DEFAULT_LAST_MONTH = 8,
|
|
11
|
+
DATE_DEFAULT_NEXT_MONTH = 9,
|
|
12
|
+
DATE_DEFAULT_THIS_QUARTER = 10,
|
|
13
|
+
DATE_DEFAULT_LAST_QUARTER = 11,
|
|
14
|
+
DATE_DEFAULT_NEXT_QUARTER = 12,
|
|
15
|
+
DATE_DEFAULT_THIS_YEAR = 13,
|
|
16
|
+
DATE_DEFAULT_LAST_YEAR = 14,
|
|
17
|
+
DATE_DEFAULT_NEXT_YEAR = 15
|
|
18
|
+
}
|
|
19
|
+
export declare enum FilterGroupOperator {
|
|
20
|
+
FILTER_GROUP_OPERATOR_INVALID = 0,
|
|
21
|
+
FILTER_GROUP_OPERATOR_AND = 1,
|
|
22
|
+
FILTER_GROUP_OPERATOR_OR = 2
|
|
23
|
+
}
|
|
24
|
+
export declare enum FilterOperator {
|
|
25
|
+
FILTER_OPERATOR_INVALID = 0,
|
|
26
|
+
FILTER_OPERATOR_IS_EMPTY = 1,
|
|
27
|
+
FILTER_OPERATOR_IS_NOT_EMPTY = 2,
|
|
28
|
+
FILTER_OPERATOR_IS = 3,
|
|
29
|
+
FILTER_OPERATOR_IS_NOT = 4,
|
|
30
|
+
FILTER_OPERATOR_IS_ANY = 5,
|
|
31
|
+
FILTER_OPERATOR_IS_NOT_ANY = 6,
|
|
32
|
+
FILTER_OPERATOR_IS_ALL = 7,
|
|
33
|
+
FILTER_OPERATOR_IS_NOT_ALL = 8,
|
|
34
|
+
FILTER_OPERATOR_CONTAINS = 9,
|
|
35
|
+
FILTER_OPERATOR_DOES_NOT_CONTAIN = 10,
|
|
36
|
+
FILTER_OPERATOR_IS_EQUAL_TO = 11,
|
|
37
|
+
FILTER_OPERATOR_IS_NOT_EQUAL_TO = 12,
|
|
38
|
+
FILTER_OPERATOR_IS_GREATER_THAN = 13,
|
|
39
|
+
FILTER_OPERATOR_IS_GREATER_THAN_OR_EQUAL_TO = 14,
|
|
40
|
+
FILTER_OPERATOR_IS_LESS_THAN = 15,
|
|
41
|
+
FILTER_OPERATOR_IS_LESS_THAN_OR_EQUAL_TO = 16,
|
|
42
|
+
FILTER_OPERATOR_IS_BEFORE = 17,
|
|
43
|
+
FILTER_OPERATOR_IS_BEFORE_OR_ON = 18,
|
|
44
|
+
FILTER_OPERATOR_IS_AFTER = 19,
|
|
45
|
+
FILTER_OPERATOR_IS_AFTER_OR_ON = 20,
|
|
46
|
+
FILTER_OPERATOR_IS_BETWEEN = 21,
|
|
47
|
+
FILTER_OPERATOR_IS_NOT_BETWEEN = 22,
|
|
48
|
+
FILTER_OPERATOR_IS_VALID = 23,
|
|
49
|
+
FILTER_OPERATOR_IS_NOT_VALID = 24
|
|
50
|
+
}
|
|
51
|
+
export declare enum FilterType {
|
|
52
|
+
FILTER_TYPE_INVALID = 0,
|
|
53
|
+
FILTER_TYPE_STRING = 1,
|
|
54
|
+
FILTER_TYPE_INTEGER = 2,
|
|
55
|
+
FILTER_TYPE_DATE = 3,
|
|
56
|
+
FILTER_TYPE_FLOAT = 4,
|
|
57
|
+
FILTER_TYPE_BOOLEAN = 5,
|
|
58
|
+
FILTER_TYPE_TAG = 6,
|
|
59
|
+
FILTER_TYPE_PHONE = 8
|
|
60
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { CreateFormRequest, CreateFormResponse, DeleteFormRequest, GetEmbedCodeRequest, GetEmbedCodeResponse, GetFormRequest, GetFormResponse, GetMultiFormVersionsListRequest, GetMultiFormVersionsListResponse, GetMultiRequest, GetMultiResponse, ListFormsRequest, ListFormsResponse, ListMappedFieldSchemaRequest, ListMappedFieldSchemaResponse, PreviewFormRequest, PreviewFormResponse, RecoverFormRequest, RecoverFormResponse, RenderFormRequest, RenderFormResponse, UpdateFormRequest, UpdateFormResponse } from './objects/';
|
|
2
|
-
import { CreateFormRequestInterface, DeleteFormRequestInterface, GetEmbedCodeRequestInterface, GetFormRequestInterface, GetMultiFormVersionsListRequestInterface, GetMultiRequestInterface, ListFormsRequestInterface, ListMappedFieldSchemaRequestInterface, PreviewFormRequestInterface, RecoverFormRequestInterface, RenderFormRequestInterface, UpdateFormRequestInterface } from './interfaces/';
|
|
1
|
+
import { CreateFormRequest, CreateFormResponse, DeleteFormRequest, GenerateCustomCSSRequest, GenerateCustomCSSResponse, GetEmbedCodeRequest, GetEmbedCodeResponse, GetFormRequest, GetFormResponse, GetMultiFormVersionsListRequest, GetMultiFormVersionsListResponse, GetMultiRequest, GetMultiResponse, ListFormsRequest, ListFormsResponse, ListMappedFieldSchemaRequest, ListMappedFieldSchemaResponse, PreviewFormRequest, PreviewFormResponse, RecoverFormRequest, RecoverFormResponse, RenderFormRequest, RenderFormResponse, UpdateFormRequest, UpdateFormResponse } from './objects/';
|
|
2
|
+
import { CreateFormRequestInterface, DeleteFormRequestInterface, GenerateCustomCSSRequestInterface, GetEmbedCodeRequestInterface, GetFormRequestInterface, GetMultiFormVersionsListRequestInterface, GetMultiRequestInterface, ListFormsRequestInterface, ListMappedFieldSchemaRequestInterface, PreviewFormRequestInterface, RecoverFormRequestInterface, RenderFormRequestInterface, UpdateFormRequestInterface } from './interfaces/';
|
|
3
3
|
import { HttpResponse } from '@angular/common/http';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
@@ -20,6 +20,7 @@ export declare class FormsApiService {
|
|
|
20
20
|
previewForm(r: PreviewFormRequest | PreviewFormRequestInterface): Observable<PreviewFormResponse>;
|
|
21
21
|
listMappedFieldSchema(r: ListMappedFieldSchemaRequest | ListMappedFieldSchemaRequestInterface): Observable<ListMappedFieldSchemaResponse>;
|
|
22
22
|
recoverForm(r: RecoverFormRequest | RecoverFormRequestInterface): Observable<RecoverFormResponse>;
|
|
23
|
+
generateCustomCss(r: GenerateCustomCSSRequest | GenerateCustomCSSRequestInterface): Observable<GenerateCustomCSSResponse>;
|
|
23
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormsApiService, never>;
|
|
24
25
|
static ɵprov: i0.ɵɵInjectableDeclaration<FormsApiService>;
|
|
25
26
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { FilterGroupInterface } from './galaxy-filters.interface';
|
|
1
2
|
import { PagedRequestOptionsInterface, PagedResponseMetadataInterface } from './paging.interface';
|
|
2
3
|
import * as e from '../enums';
|
|
3
4
|
export interface ActionParametersInterface {
|
|
@@ -68,6 +69,9 @@ export interface FormConfigInterface {
|
|
|
68
69
|
recaptchaSecretKey?: string;
|
|
69
70
|
submitButtonLabel?: string;
|
|
70
71
|
createInboxConversation?: boolean;
|
|
72
|
+
tags?: string[];
|
|
73
|
+
description?: string;
|
|
74
|
+
templateSetupSettings?: FormConfigTemplateSetupSettingsInterface;
|
|
71
75
|
}
|
|
72
76
|
export interface GetMultiRequestFormConfigIdentifierInterface {
|
|
73
77
|
formId?: string;
|
|
@@ -83,6 +87,16 @@ export interface FormSubmissionInterface {
|
|
|
83
87
|
values?: FormSubmissionSubmittedValueInterface[];
|
|
84
88
|
created?: Date;
|
|
85
89
|
}
|
|
90
|
+
export interface GenerateCustomCSSRequestInterface {
|
|
91
|
+
namespace?: string;
|
|
92
|
+
currentCss?: StylesInterface;
|
|
93
|
+
prompt?: string;
|
|
94
|
+
imageUrls?: string[];
|
|
95
|
+
htmlTemplate?: string;
|
|
96
|
+
}
|
|
97
|
+
export interface GenerateCustomCSSResponseInterface {
|
|
98
|
+
generatedCss?: StylesInterface;
|
|
99
|
+
}
|
|
86
100
|
export interface GetEmbedCodeRequestInterface {
|
|
87
101
|
formId?: string;
|
|
88
102
|
}
|
|
@@ -124,6 +138,7 @@ export interface ListFormSubmissionResponseInterface {
|
|
|
124
138
|
export interface ListFormsRequestInterface {
|
|
125
139
|
filters?: ListFormsRequestFiltersInterface;
|
|
126
140
|
pagingOptions?: PagedRequestOptionsInterface;
|
|
141
|
+
filtersV2?: FilterGroupInterface;
|
|
127
142
|
}
|
|
128
143
|
export interface ListFormsResponseInterface {
|
|
129
144
|
formRows?: ListFormsResponseFormRowInterface[];
|
|
@@ -135,6 +150,7 @@ export interface ListMappedFieldSchemaRequestInterface {
|
|
|
135
150
|
crmObjectSubtype?: string;
|
|
136
151
|
pagingOptions?: PagedRequestOptionsInterface;
|
|
137
152
|
mappedToResource?: string;
|
|
153
|
+
locale?: string;
|
|
138
154
|
}
|
|
139
155
|
export interface ListMappedFieldSchemaResponseInterface {
|
|
140
156
|
fieldSchemas?: MappedFieldInterface[];
|
|
@@ -228,6 +244,9 @@ export interface SystemDefinedInterface {
|
|
|
228
244
|
includedByDefault?: boolean;
|
|
229
245
|
hidden?: boolean;
|
|
230
246
|
}
|
|
247
|
+
export interface FormConfigTemplateSetupSettingsInterface {
|
|
248
|
+
automationIds?: string[];
|
|
249
|
+
}
|
|
231
250
|
export interface UnmappedFieldInterface {
|
|
232
251
|
id?: string;
|
|
233
252
|
type?: e.FieldType;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as e from '../enums';
|
|
2
|
+
export interface FilterInterface {
|
|
3
|
+
fieldId?: string;
|
|
4
|
+
operator?: e.FilterOperator;
|
|
5
|
+
values?: FilterValueInterface[];
|
|
6
|
+
floatTolerance?: number;
|
|
7
|
+
}
|
|
8
|
+
export interface FilterGroupInterface {
|
|
9
|
+
operator?: e.FilterGroupOperator;
|
|
10
|
+
filters?: FilterInterface[];
|
|
11
|
+
}
|
|
12
|
+
export interface PhoneInterface {
|
|
13
|
+
isoCountryCode?: string;
|
|
14
|
+
nationalNumber?: string;
|
|
15
|
+
extension?: string;
|
|
16
|
+
}
|
|
17
|
+
export interface FilterValueInterface {
|
|
18
|
+
boolean?: boolean;
|
|
19
|
+
integer?: number;
|
|
20
|
+
float?: number;
|
|
21
|
+
string?: string;
|
|
22
|
+
date?: Date;
|
|
23
|
+
dateDefault?: e.DateDefault;
|
|
24
|
+
phone?: PhoneInterface;
|
|
25
|
+
}
|
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
export { PagedRequestOptionsInterface, PagedResponseMetadataInterface, } from './paging.interface';
|
|
2
|
-
export {
|
|
2
|
+
export { FilterInterface, FilterGroupInterface, PhoneInterface, FilterValueInterface, } from './galaxy-filters.interface';
|
|
3
|
+
export { ActionParametersInterface, CreateFormRequestInterface, CreateFormResponseInterface, CreateFormSubmissionRequestInterface, CreateFormSubmissionResponseInterface, RenderFormResponseDefaultValuesInterface, DeleteFormRequestInterface, FormConfigFieldInterface, FieldOptionInterface, FieldValueInterface, ListFormsRequestFiltersInterface, FormConfigInterface, GetMultiRequestFormConfigIdentifierInterface, ListFormsResponseFormRowInterface, FormSubmissionInterface, GenerateCustomCSSRequestInterface, GenerateCustomCSSResponseInterface, GetEmbedCodeRequestInterface, GetEmbedCodeResponseInterface, GetFormRequestInterface, GetFormResponseInterface, GetMultiFormSubmissionRequestInterface, GetMultiFormSubmissionResponseInterface, GetMultiFormVersionsListRequestInterface, GetMultiFormVersionsListResponseInterface, GetMultiRequestInterface, GetMultiResponseInterface, ListFormSubmissionRequestInterface, ListFormSubmissionResponseInterface, ListFormsRequestInterface, ListFormsResponseInterface, ListMappedFieldSchemaRequestInterface, ListMappedFieldSchemaResponseInterface, MappedFieldInterface, NextParametersInterface, RenderFormResponsePreFillByUrlQueryParameterInterface, PreviewFormRequestInterface, PreviewFormResponseInterface, RecoverFormRequestInterface, RecoverFormResponseInterface, RenderFormRequestInterface, RenderFormResponseInterface, FormConfigFieldSchemaInterface, SectionConfigInterface, StringListInterface, StylesInterface, SubmitConditionParametersInterface, FormSubmissionSubmittedValueInterface, SystemDefinedInterface, FormConfigTemplateSetupSettingsInterface, UnmappedFieldInterface, UpdateFormRequestInterface, UpdateFormResponseInterface, UserFormSubmissionInterface, ValidationErrorInterface, GetMultiFormVersionsListResponseVersionsInterface, } from './api.interface';
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as i from '../interfaces';
|
|
2
|
+
import { FilterGroup } from './galaxy-filters';
|
|
2
3
|
import { PagedRequestOptions, PagedResponseMetadata } from './paging';
|
|
3
4
|
import * as e from '../enums';
|
|
4
5
|
export declare function enumStringToValue<E>(enumRef: any, value: string): E;
|
|
@@ -103,6 +104,9 @@ export declare class FormConfig implements i.FormConfigInterface {
|
|
|
103
104
|
recaptchaSecretKey: string;
|
|
104
105
|
submitButtonLabel: string;
|
|
105
106
|
createInboxConversation: boolean;
|
|
107
|
+
tags: string[];
|
|
108
|
+
description: string;
|
|
109
|
+
templateSetupSettings: FormConfigTemplateSetupSettings;
|
|
106
110
|
static fromProto(proto: any): FormConfig;
|
|
107
111
|
constructor(kwargs?: i.FormConfigInterface);
|
|
108
112
|
toApiJson(): object;
|
|
@@ -130,6 +134,22 @@ export declare class FormSubmission implements i.FormSubmissionInterface {
|
|
|
130
134
|
constructor(kwargs?: i.FormSubmissionInterface);
|
|
131
135
|
toApiJson(): object;
|
|
132
136
|
}
|
|
137
|
+
export declare class GenerateCustomCSSRequest implements i.GenerateCustomCSSRequestInterface {
|
|
138
|
+
namespace: string;
|
|
139
|
+
currentCss: Styles;
|
|
140
|
+
prompt: string;
|
|
141
|
+
imageUrls: string[];
|
|
142
|
+
htmlTemplate: string;
|
|
143
|
+
static fromProto(proto: any): GenerateCustomCSSRequest;
|
|
144
|
+
constructor(kwargs?: i.GenerateCustomCSSRequestInterface);
|
|
145
|
+
toApiJson(): object;
|
|
146
|
+
}
|
|
147
|
+
export declare class GenerateCustomCSSResponse implements i.GenerateCustomCSSResponseInterface {
|
|
148
|
+
generatedCss: Styles;
|
|
149
|
+
static fromProto(proto: any): GenerateCustomCSSResponse;
|
|
150
|
+
constructor(kwargs?: i.GenerateCustomCSSResponseInterface);
|
|
151
|
+
toApiJson(): object;
|
|
152
|
+
}
|
|
133
153
|
export declare class GetEmbedCodeRequest implements i.GetEmbedCodeRequestInterface {
|
|
134
154
|
formId: string;
|
|
135
155
|
static fromProto(proto: any): GetEmbedCodeRequest;
|
|
@@ -207,6 +227,7 @@ export declare class ListFormSubmissionResponse implements i.ListFormSubmissionR
|
|
|
207
227
|
export declare class ListFormsRequest implements i.ListFormsRequestInterface {
|
|
208
228
|
filters: ListFormsRequestFilters;
|
|
209
229
|
pagingOptions: PagedRequestOptions;
|
|
230
|
+
filtersV2: FilterGroup;
|
|
210
231
|
static fromProto(proto: any): ListFormsRequest;
|
|
211
232
|
constructor(kwargs?: i.ListFormsRequestInterface);
|
|
212
233
|
toApiJson(): object;
|
|
@@ -224,6 +245,7 @@ export declare class ListMappedFieldSchemaRequest implements i.ListMappedFieldSc
|
|
|
224
245
|
crmObjectSubtype: string;
|
|
225
246
|
pagingOptions: PagedRequestOptions;
|
|
226
247
|
mappedToResource: string;
|
|
248
|
+
locale: string;
|
|
227
249
|
static fromProto(proto: any): ListMappedFieldSchemaRequest;
|
|
228
250
|
constructor(kwargs?: i.ListMappedFieldSchemaRequestInterface);
|
|
229
251
|
toApiJson(): object;
|
|
@@ -371,6 +393,12 @@ export declare class SystemDefined implements i.SystemDefinedInterface {
|
|
|
371
393
|
constructor(kwargs?: i.SystemDefinedInterface);
|
|
372
394
|
toApiJson(): object;
|
|
373
395
|
}
|
|
396
|
+
export declare class FormConfigTemplateSetupSettings implements i.FormConfigTemplateSetupSettingsInterface {
|
|
397
|
+
automationIds: string[];
|
|
398
|
+
static fromProto(proto: any): FormConfigTemplateSetupSettings;
|
|
399
|
+
constructor(kwargs?: i.FormConfigTemplateSetupSettingsInterface);
|
|
400
|
+
toApiJson(): object;
|
|
401
|
+
}
|
|
374
402
|
export declare class UnmappedField implements i.UnmappedFieldInterface {
|
|
375
403
|
id: string;
|
|
376
404
|
type: e.FieldType;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import * as i from '../interfaces';
|
|
2
|
+
import * as e from '../enums';
|
|
3
|
+
export declare function enumStringToValue<E>(enumRef: any, value: string): E;
|
|
4
|
+
export declare class Filter implements i.FilterInterface {
|
|
5
|
+
fieldId: string;
|
|
6
|
+
operator: e.FilterOperator;
|
|
7
|
+
values: FilterValue[];
|
|
8
|
+
floatTolerance: number;
|
|
9
|
+
static fromProto(proto: any): Filter;
|
|
10
|
+
constructor(kwargs?: i.FilterInterface);
|
|
11
|
+
toApiJson(): object;
|
|
12
|
+
}
|
|
13
|
+
export declare class FilterGroup implements i.FilterGroupInterface {
|
|
14
|
+
operator: e.FilterGroupOperator;
|
|
15
|
+
filters: Filter[];
|
|
16
|
+
static fromProto(proto: any): FilterGroup;
|
|
17
|
+
constructor(kwargs?: i.FilterGroupInterface);
|
|
18
|
+
toApiJson(): object;
|
|
19
|
+
}
|
|
20
|
+
export declare class Phone implements i.PhoneInterface {
|
|
21
|
+
isoCountryCode: string;
|
|
22
|
+
nationalNumber: string;
|
|
23
|
+
extension: string;
|
|
24
|
+
static fromProto(proto: any): Phone;
|
|
25
|
+
constructor(kwargs?: i.PhoneInterface);
|
|
26
|
+
toApiJson(): object;
|
|
27
|
+
}
|
|
28
|
+
export declare class FilterValue implements i.FilterValueInterface {
|
|
29
|
+
boolean: boolean;
|
|
30
|
+
integer: number;
|
|
31
|
+
float: number;
|
|
32
|
+
string: string;
|
|
33
|
+
date: Date;
|
|
34
|
+
dateDefault: e.DateDefault;
|
|
35
|
+
phone: Phone;
|
|
36
|
+
static fromProto(proto: any): FilterValue;
|
|
37
|
+
constructor(kwargs?: i.FilterValueInterface);
|
|
38
|
+
toApiJson(): object;
|
|
39
|
+
}
|
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
export { PagedRequestOptions, PagedResponseMetadata, } from './paging';
|
|
2
|
-
export {
|
|
2
|
+
export { Filter, FilterGroup, Phone, FilterValue, } from './galaxy-filters';
|
|
3
|
+
export { ActionParameters, CreateFormRequest, CreateFormResponse, CreateFormSubmissionRequest, CreateFormSubmissionResponse, RenderFormResponseDefaultValues, DeleteFormRequest, FormConfigField, FieldOption, FieldValue, ListFormsRequestFilters, FormConfig, GetMultiRequestFormConfigIdentifier, ListFormsResponseFormRow, FormSubmission, GenerateCustomCSSRequest, GenerateCustomCSSResponse, GetEmbedCodeRequest, GetEmbedCodeResponse, GetFormRequest, GetFormResponse, GetMultiFormSubmissionRequest, GetMultiFormSubmissionResponse, GetMultiFormVersionsListRequest, GetMultiFormVersionsListResponse, GetMultiRequest, GetMultiResponse, ListFormSubmissionRequest, ListFormSubmissionResponse, ListFormsRequest, ListFormsResponse, ListMappedFieldSchemaRequest, ListMappedFieldSchemaResponse, MappedField, NextParameters, RenderFormResponsePreFillByUrlQueryParameter, PreviewFormRequest, PreviewFormResponse, RecoverFormRequest, RecoverFormResponse, RenderFormRequest, RenderFormResponse, FormConfigFieldSchema, SectionConfig, StringList, Styles, SubmitConditionParameters, FormSubmissionSubmittedValue, SystemDefined, FormConfigTemplateSetupSettings, UnmappedField, UpdateFormRequest, UpdateFormResponse, UserFormSubmission, ValidationError, GetMultiFormVersionsListResponseVersions, } from './api';
|