@vendasta/forms_microservice 0.25.0 → 0.27.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.
Files changed (27) hide show
  1. package/esm2020/lib/_internal/enums/api.enum.mjs +17 -1
  2. package/esm2020/lib/_internal/enums/index.mjs +3 -2
  3. package/esm2020/lib/_internal/enums/openapiv2.enum.mjs +55 -0
  4. package/esm2020/lib/_internal/interfaces/annotations.interface.mjs +8 -0
  5. package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
  6. package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
  7. package/esm2020/lib/_internal/interfaces/openapiv2.interface.mjs +8 -0
  8. package/esm2020/lib/_internal/objects/annotations.mjs +50 -0
  9. package/esm2020/lib/_internal/objects/api.mjs +65 -1
  10. package/esm2020/lib/_internal/objects/index.mjs +4 -2
  11. package/esm2020/lib/_internal/objects/openapiv2.mjs +1191 -0
  12. package/fesm2015/vendasta-forms_microservice.mjs +1456 -81
  13. package/fesm2015/vendasta-forms_microservice.mjs.map +1 -1
  14. package/fesm2020/vendasta-forms_microservice.mjs +1456 -81
  15. package/fesm2020/vendasta-forms_microservice.mjs.map +1 -1
  16. package/lib/_internal/enums/api.enum.d.ts +15 -1
  17. package/lib/_internal/enums/index.d.ts +2 -1
  18. package/lib/_internal/enums/openapiv2.enum.d.ts +42 -0
  19. package/lib/_internal/interfaces/annotations.interface.d.ts +7 -0
  20. package/lib/_internal/interfaces/api.interface.d.ts +10 -0
  21. package/lib/_internal/interfaces/index.d.ts +3 -1
  22. package/lib/_internal/interfaces/openapiv2.interface.d.ts +246 -0
  23. package/lib/_internal/objects/annotations.d.ts +15 -0
  24. package/lib/_internal/objects/api.d.ts +16 -0
  25. package/lib/_internal/objects/index.d.ts +3 -1
  26. package/lib/_internal/objects/openapiv2.d.ts +353 -0
  27. package/package.json +1 -1
@@ -1,3 +1,8 @@
1
+ export declare enum ConsentType {
2
+ CONSENT_TYPE_INVALID = 0,
3
+ CONSENT_TYPE_EMAIL = 1,
4
+ CONSENT_TYPE_SMS = 2
5
+ }
1
6
  export declare enum FieldType {
2
7
  FIELD_TYPE_INVALID = 0,
3
8
  FIELD_TYPE_STRING = 1,
@@ -14,7 +19,9 @@ export declare enum FieldType {
14
19
  FIELD_TYPE_TEXT_AREA = 12,
15
20
  FIELD_TYPE_TAG = 13,
16
21
  FIELD_TYPE_SECTION = 14,
17
- FIELD_TYPE_FILE = 15
22
+ FIELD_TYPE_FILE = 15,
23
+ FIELD_TYPE_PRIVACY_CONSENT = 16,
24
+ FIELD_TYPE_PROMO_SECTION = 17
18
25
  }
19
26
  export declare enum FormCreationStatus {
20
27
  FORM_CREATION_STATUS_UNSPECIFIED = 0,
@@ -32,6 +39,13 @@ export declare enum FormSubmissionProcessResultErrorType {
32
39
  PROCESS_RESULT_ERROR_TYPE_ALREADY_EXISTS = 2,
33
40
  PROCESS_RESULT_ERROR_TYPE_INVALID_ARGUMENT = 3
34
41
  }
42
+ export declare enum ListFormsResponseProcessResultStatus {
43
+ PROCESS_RESULT_STATUS_UNSPECIFIED = 0,
44
+ PROCESS_RESULT_STATUS_IN_PROGRESS = 1,
45
+ PROCESS_RESULT_STATUS_COMPLETED = 2,
46
+ PROCESS_RESULT_STATUS_COMPLETED_WITH_WARNINGS = 3,
47
+ PROCESS_RESULT_STATUS_FAILED = 4
48
+ }
35
49
  export declare enum FormSubmissionProcessResultStatus {
36
50
  PROCESS_RESULT_STATUS_UNSPECIFIED = 0,
37
51
  PROCESS_RESULT_STATUS_IN_PROGRESS = 1,
@@ -1,2 +1,3 @@
1
1
  export { DateDefault, FilterGroupOperator, FilterOperator, FilterType, } from './galaxy-filters.enum';
2
- export { FieldType, FormCreationStatus, JsonSchemaLibrary, FormSubmissionProcessResultErrorType, FormSubmissionProcessResultStatus, ReprocessStatus, SectionAction, } from './api.enum';
2
+ export { SecuritySchemeFlow, SecuritySchemeIn, JSONSchemaJSONSchemaSimpleTypes, Scheme, HeaderParameterType, SecuritySchemeType, } from './openapiv2.enum';
3
+ export { ConsentType, FieldType, FormCreationStatus, JsonSchemaLibrary, FormSubmissionProcessResultErrorType, ListFormsResponseProcessResultStatus, FormSubmissionProcessResultStatus, ReprocessStatus, SectionAction, } from './api.enum';
@@ -0,0 +1,42 @@
1
+ export declare enum SecuritySchemeFlow {
2
+ FLOW_INVALID = 0,
3
+ FLOW_IMPLICIT = 1,
4
+ FLOW_PASSWORD = 2,
5
+ FLOW_APPLICATION = 3,
6
+ FLOW_ACCESS_CODE = 4
7
+ }
8
+ export declare enum SecuritySchemeIn {
9
+ IN_INVALID = 0,
10
+ IN_QUERY = 1,
11
+ IN_HEADER = 2
12
+ }
13
+ export declare enum JSONSchemaJSONSchemaSimpleTypes {
14
+ UNKNOWN = 0,
15
+ ARRAY = 1,
16
+ BOOLEAN = 2,
17
+ INTEGER = 3,
18
+ NULL = 4,
19
+ NUMBER = 5,
20
+ OBJECT = 6,
21
+ STRING = 7
22
+ }
23
+ export declare enum Scheme {
24
+ UNKNOWN = 0,
25
+ HTTP = 1,
26
+ HTTPS = 2,
27
+ WS = 3,
28
+ WSS = 4
29
+ }
30
+ export declare enum HeaderParameterType {
31
+ UNKNOWN = 0,
32
+ STRING = 1,
33
+ NUMBER = 2,
34
+ INTEGER = 3,
35
+ BOOLEAN = 4
36
+ }
37
+ export declare enum SecuritySchemeType {
38
+ TYPE_INVALID = 0,
39
+ TYPE_BASIC = 1,
40
+ TYPE_API_KEY = 2,
41
+ TYPE_OAUTH2 = 3
42
+ }
@@ -0,0 +1,7 @@
1
+ export interface AccessInterface {
2
+ scope?: string[];
3
+ public?: boolean;
4
+ }
5
+ export interface MCPOptionsInterface {
6
+ serverId?: string[];
7
+ }
@@ -5,6 +5,14 @@ export interface ActionParametersInterface {
5
5
  submitConditionParams?: SubmitConditionParametersInterface;
6
6
  nextParameters?: NextParametersInterface;
7
7
  }
8
+ export interface ConsentFieldInterface {
9
+ type?: e.ConsentType;
10
+ text?: string;
11
+ }
12
+ export interface ConsentFieldConfigInterface {
13
+ headerText?: string;
14
+ consent?: ConsentFieldInterface[];
15
+ }
8
16
  export interface CreateFormFromTemplateRequestInterface {
9
17
  namespace?: string;
10
18
  templateId?: string;
@@ -87,6 +95,7 @@ export interface GetMultiRequestFormConfigIdentifierInterface {
87
95
  export interface ListFormsResponseFormRowInterface {
88
96
  form?: FormConfigInterface;
89
97
  numberOfSubmissions?: number;
98
+ recentProcessingStatus?: e.ListFormsResponseProcessResultStatus;
90
99
  }
91
100
  export interface FormSubmissionInterface {
92
101
  formSubmissionId?: string;
@@ -183,6 +192,7 @@ export interface MappedFieldInterface {
183
192
  mappedTo?: string;
184
193
  systemDefined?: SystemDefinedInterface;
185
194
  readonly?: boolean;
195
+ consentConfig?: ConsentFieldConfigInterface;
186
196
  }
187
197
  export interface NextParametersInterface {
188
198
  nextSectionId?: string;
@@ -1,3 +1,5 @@
1
1
  export { PagedRequestOptionsInterface, PagedResponseMetadataInterface, } from './paging.interface';
2
2
  export { FilterInterface, FilterGroupInterface, PhoneInterface, FilterValueInterface, } from './galaxy-filters.interface';
3
- export { ActionParametersInterface, CreateFormFromTemplateRequestInterface, CreateFormFromTemplateResponseInterface, CreateFormRequestInterface, CreateFormResponseInterface, CreateFormSubmissionRequestInterface, CreateFormSubmissionResponseInterface, RenderFormResponseDefaultValuesInterface, DeleteFormRequestInterface, FormConfigFieldInterface, FieldOptionInterface, FieldValueInterface, ListFormsRequestFiltersInterface, FormConfigInterface, GetMultiRequestFormConfigIdentifierInterface, ListFormsResponseFormRowInterface, FormSubmissionInterface, GenerateCustomCSSRequestInterface, GenerateCustomCSSResponseInterface, GetCreateFormFromTemplateStatusRequestInterface, GetCreateFormFromTemplateStatusResponseInterface, GetEmbedCodeRequestInterface, GetEmbedCodeResponseInterface, GetFormRequestInterface, GetFormResponseInterface, GetMultiFormSubmissionRequestInterface, GetMultiFormSubmissionResponseInterface, GetMultiFormVersionsListRequestInterface, GetMultiFormVersionsListResponseInterface, GetMultiRequestInterface, GetMultiResponseInterface, ListFormSubmissionRequestInterface, ListFormSubmissionResponseInterface, ListFormsRequestInterface, ListFormsResponseInterface, ListMappedFieldSchemaRequestInterface, ListMappedFieldSchemaResponseInterface, MappedFieldInterface, NextParametersInterface, RenderFormResponsePreFillByUrlQueryParameterInterface, PreviewFormRequestInterface, PreviewFormResponseInterface, FormSubmissionProcessResultInterface, RecoverFormRequestInterface, RecoverFormResponseInterface, RenderFormRequestInterface, RenderFormResponseInterface, ReprocessSubmissionRequestInterface, ReprocessSubmissionResponseInterface, FormSubmissionResultErrorInterface, FormConfigFieldSchemaInterface, SectionConfigInterface, StringListInterface, StylesInterface, SubmitConditionParametersInterface, FormSubmissionSubmittedValueInterface, SystemDefinedInterface, FormConfigTemplateSetupSettingsInterface, UnmappedFieldInterface, UpdateFormRequestInterface, UpdateFormResponseInterface, UserFormSubmissionInterface, ValidationErrorInterface, GetMultiFormVersionsListResponseVersionsInterface, } from './api.interface';
3
+ export { AccessInterface, MCPOptionsInterface, } from './annotations.interface';
4
+ export { ContactInterface, EnumSchemaInterface, ResponseExamplesEntryInterface, ResponseExtensionsEntryInterface, SwaggerExtensionsEntryInterface, SecuritySchemeExtensionsEntryInterface, TagExtensionsEntryInterface, OperationExtensionsEntryInterface, JSONSchemaExtensionsEntryInterface, EnumSchemaExtensionsEntryInterface, InfoExtensionsEntryInterface, ExternalDocumentationInterface, JSONSchemaFieldConfigurationInterface, HeaderInterface, HeaderParameterInterface, ResponseHeadersEntryInterface, InfoInterface, JSONSchemaInterface, LicenseInterface, OperationInterface, ParametersInterface, ResponseInterface, OperationResponsesEntryInterface, SwaggerResponsesEntryInterface, SchemaInterface, ScopesScopeEntryInterface, ScopesInterface, SecurityDefinitionsInterface, SecurityDefinitionsSecurityEntryInterface, SecurityRequirementInterface, SecurityRequirementSecurityRequirementEntryInterface, SecurityRequirementSecurityRequirementValueInterface, SecuritySchemeInterface, SwaggerInterface, TagInterface, } from './openapiv2.interface';
5
+ export { ActionParametersInterface, ConsentFieldInterface, ConsentFieldConfigInterface, CreateFormFromTemplateRequestInterface, CreateFormFromTemplateResponseInterface, CreateFormRequestInterface, CreateFormResponseInterface, CreateFormSubmissionRequestInterface, CreateFormSubmissionResponseInterface, RenderFormResponseDefaultValuesInterface, DeleteFormRequestInterface, FormConfigFieldInterface, FieldOptionInterface, FieldValueInterface, ListFormsRequestFiltersInterface, FormConfigInterface, GetMultiRequestFormConfigIdentifierInterface, ListFormsResponseFormRowInterface, FormSubmissionInterface, GenerateCustomCSSRequestInterface, GenerateCustomCSSResponseInterface, GetCreateFormFromTemplateStatusRequestInterface, GetCreateFormFromTemplateStatusResponseInterface, GetEmbedCodeRequestInterface, GetEmbedCodeResponseInterface, GetFormRequestInterface, GetFormResponseInterface, GetMultiFormSubmissionRequestInterface, GetMultiFormSubmissionResponseInterface, GetMultiFormVersionsListRequestInterface, GetMultiFormVersionsListResponseInterface, GetMultiRequestInterface, GetMultiResponseInterface, ListFormSubmissionRequestInterface, ListFormSubmissionResponseInterface, ListFormsRequestInterface, ListFormsResponseInterface, ListMappedFieldSchemaRequestInterface, ListMappedFieldSchemaResponseInterface, MappedFieldInterface, NextParametersInterface, RenderFormResponsePreFillByUrlQueryParameterInterface, PreviewFormRequestInterface, PreviewFormResponseInterface, FormSubmissionProcessResultInterface, RecoverFormRequestInterface, RecoverFormResponseInterface, RenderFormRequestInterface, RenderFormResponseInterface, ReprocessSubmissionRequestInterface, ReprocessSubmissionResponseInterface, FormSubmissionResultErrorInterface, FormConfigFieldSchemaInterface, SectionConfigInterface, StringListInterface, StylesInterface, SubmitConditionParametersInterface, FormSubmissionSubmittedValueInterface, SystemDefinedInterface, FormConfigTemplateSetupSettingsInterface, UnmappedFieldInterface, UpdateFormRequestInterface, UpdateFormResponseInterface, UserFormSubmissionInterface, ValidationErrorInterface, GetMultiFormVersionsListResponseVersionsInterface, } from './api.interface';
@@ -0,0 +1,246 @@
1
+ import * as e from '../enums';
2
+ export interface ContactInterface {
3
+ name?: string;
4
+ url?: string;
5
+ email?: string;
6
+ }
7
+ export interface EnumSchemaInterface {
8
+ description?: string;
9
+ default?: string;
10
+ title?: string;
11
+ required?: boolean;
12
+ readOnly?: boolean;
13
+ externalDocs?: ExternalDocumentationInterface;
14
+ example?: string;
15
+ ref?: string;
16
+ extensions?: {
17
+ [key: string]: any;
18
+ };
19
+ }
20
+ export interface ResponseExamplesEntryInterface {
21
+ key?: string;
22
+ value?: string;
23
+ }
24
+ export interface ResponseExtensionsEntryInterface {
25
+ key?: string;
26
+ value?: any;
27
+ }
28
+ export interface SwaggerExtensionsEntryInterface {
29
+ key?: string;
30
+ value?: any;
31
+ }
32
+ export interface SecuritySchemeExtensionsEntryInterface {
33
+ key?: string;
34
+ value?: any;
35
+ }
36
+ export interface TagExtensionsEntryInterface {
37
+ key?: string;
38
+ value?: any;
39
+ }
40
+ export interface OperationExtensionsEntryInterface {
41
+ key?: string;
42
+ value?: any;
43
+ }
44
+ export interface JSONSchemaExtensionsEntryInterface {
45
+ key?: string;
46
+ value?: any;
47
+ }
48
+ export interface EnumSchemaExtensionsEntryInterface {
49
+ key?: string;
50
+ value?: any;
51
+ }
52
+ export interface InfoExtensionsEntryInterface {
53
+ key?: string;
54
+ value?: any;
55
+ }
56
+ export interface ExternalDocumentationInterface {
57
+ description?: string;
58
+ url?: string;
59
+ }
60
+ export interface JSONSchemaFieldConfigurationInterface {
61
+ pathParamName?: string;
62
+ deprecated?: boolean;
63
+ }
64
+ export interface HeaderInterface {
65
+ description?: string;
66
+ type?: string;
67
+ format?: string;
68
+ default?: string;
69
+ pattern?: string;
70
+ }
71
+ export interface HeaderParameterInterface {
72
+ name?: string;
73
+ description?: string;
74
+ type?: e.HeaderParameterType;
75
+ format?: string;
76
+ required?: boolean;
77
+ }
78
+ export interface ResponseHeadersEntryInterface {
79
+ key?: string;
80
+ value?: HeaderInterface;
81
+ }
82
+ export interface InfoInterface {
83
+ title?: string;
84
+ description?: string;
85
+ termsOfService?: string;
86
+ contact?: ContactInterface;
87
+ license?: LicenseInterface;
88
+ version?: string;
89
+ extensions?: {
90
+ [key: string]: any;
91
+ };
92
+ }
93
+ export interface JSONSchemaInterface {
94
+ ref?: string;
95
+ title?: string;
96
+ description?: string;
97
+ default?: string;
98
+ readOnly?: boolean;
99
+ example?: string;
100
+ multipleOf?: number;
101
+ maximum?: number;
102
+ exclusiveMaximum?: boolean;
103
+ minimum?: number;
104
+ exclusiveMinimum?: boolean;
105
+ maxLength?: number;
106
+ minLength?: number;
107
+ pattern?: string;
108
+ maxItems?: number;
109
+ minItems?: number;
110
+ uniqueItems?: boolean;
111
+ maxProperties?: number;
112
+ minProperties?: number;
113
+ required?: string[];
114
+ array?: string[];
115
+ type?: e.JSONSchemaJSONSchemaSimpleTypes[];
116
+ format?: string;
117
+ enum?: string[];
118
+ fieldConfiguration?: JSONSchemaFieldConfigurationInterface;
119
+ extensions?: {
120
+ [key: string]: any;
121
+ };
122
+ }
123
+ export interface LicenseInterface {
124
+ name?: string;
125
+ url?: string;
126
+ }
127
+ export interface OperationInterface {
128
+ tags?: string[];
129
+ summary?: string;
130
+ description?: string;
131
+ externalDocs?: ExternalDocumentationInterface;
132
+ operationId?: string;
133
+ consumes?: string[];
134
+ produces?: string[];
135
+ responses?: {
136
+ [key: string]: ResponseInterface;
137
+ };
138
+ schemes?: e.Scheme[];
139
+ deprecated?: boolean;
140
+ security?: SecurityRequirementInterface[];
141
+ extensions?: {
142
+ [key: string]: any;
143
+ };
144
+ parameters?: ParametersInterface;
145
+ }
146
+ export interface ParametersInterface {
147
+ headers?: HeaderParameterInterface[];
148
+ }
149
+ export interface ResponseInterface {
150
+ description?: string;
151
+ schema?: SchemaInterface;
152
+ headers?: {
153
+ [key: string]: HeaderInterface;
154
+ };
155
+ examples?: {
156
+ [key: string]: string;
157
+ };
158
+ extensions?: {
159
+ [key: string]: any;
160
+ };
161
+ }
162
+ export interface OperationResponsesEntryInterface {
163
+ key?: string;
164
+ value?: ResponseInterface;
165
+ }
166
+ export interface SwaggerResponsesEntryInterface {
167
+ key?: string;
168
+ value?: ResponseInterface;
169
+ }
170
+ export interface SchemaInterface {
171
+ jsonSchema?: JSONSchemaInterface;
172
+ discriminator?: string;
173
+ readOnly?: boolean;
174
+ externalDocs?: ExternalDocumentationInterface;
175
+ example?: string;
176
+ }
177
+ export interface ScopesScopeEntryInterface {
178
+ key?: string;
179
+ value?: string;
180
+ }
181
+ export interface ScopesInterface {
182
+ scope?: {
183
+ [key: string]: string;
184
+ };
185
+ }
186
+ export interface SecurityDefinitionsInterface {
187
+ security?: {
188
+ [key: string]: SecuritySchemeInterface;
189
+ };
190
+ }
191
+ export interface SecurityDefinitionsSecurityEntryInterface {
192
+ key?: string;
193
+ value?: SecuritySchemeInterface;
194
+ }
195
+ export interface SecurityRequirementInterface {
196
+ securityRequirement?: {
197
+ [key: string]: SecurityRequirementSecurityRequirementValueInterface;
198
+ };
199
+ }
200
+ export interface SecurityRequirementSecurityRequirementEntryInterface {
201
+ key?: string;
202
+ value?: SecurityRequirementSecurityRequirementValueInterface;
203
+ }
204
+ export interface SecurityRequirementSecurityRequirementValueInterface {
205
+ scope?: string[];
206
+ }
207
+ export interface SecuritySchemeInterface {
208
+ type?: e.SecuritySchemeType;
209
+ description?: string;
210
+ name?: string;
211
+ in?: e.SecuritySchemeIn;
212
+ flow?: e.SecuritySchemeFlow;
213
+ authorizationUrl?: string;
214
+ tokenUrl?: string;
215
+ scopes?: ScopesInterface;
216
+ extensions?: {
217
+ [key: string]: any;
218
+ };
219
+ }
220
+ export interface SwaggerInterface {
221
+ swagger?: string;
222
+ info?: InfoInterface;
223
+ host?: string;
224
+ basePath?: string;
225
+ schemes?: e.Scheme[];
226
+ consumes?: string[];
227
+ produces?: string[];
228
+ responses?: {
229
+ [key: string]: ResponseInterface;
230
+ };
231
+ securityDefinitions?: SecurityDefinitionsInterface;
232
+ security?: SecurityRequirementInterface[];
233
+ tags?: TagInterface[];
234
+ externalDocs?: ExternalDocumentationInterface;
235
+ extensions?: {
236
+ [key: string]: any;
237
+ };
238
+ }
239
+ export interface TagInterface {
240
+ name?: string;
241
+ description?: string;
242
+ externalDocs?: ExternalDocumentationInterface;
243
+ extensions?: {
244
+ [key: string]: any;
245
+ };
246
+ }
@@ -0,0 +1,15 @@
1
+ import * as i from '../interfaces';
2
+ export declare function enumStringToValue<E>(enumRef: any, value: string): E;
3
+ export declare class Access implements i.AccessInterface {
4
+ scope: string[];
5
+ public: boolean;
6
+ static fromProto(proto: any): Access;
7
+ constructor(kwargs?: i.AccessInterface);
8
+ toApiJson(): object;
9
+ }
10
+ export declare class MCPOptions implements i.MCPOptionsInterface {
11
+ serverId: string[];
12
+ static fromProto(proto: any): MCPOptions;
13
+ constructor(kwargs?: i.MCPOptionsInterface);
14
+ toApiJson(): object;
15
+ }
@@ -10,6 +10,20 @@ export declare class ActionParameters implements i.ActionParametersInterface {
10
10
  constructor(kwargs?: i.ActionParametersInterface);
11
11
  toApiJson(): object;
12
12
  }
13
+ export declare class ConsentField implements i.ConsentFieldInterface {
14
+ type: e.ConsentType;
15
+ text: string;
16
+ static fromProto(proto: any): ConsentField;
17
+ constructor(kwargs?: i.ConsentFieldInterface);
18
+ toApiJson(): object;
19
+ }
20
+ export declare class ConsentFieldConfig implements i.ConsentFieldConfigInterface {
21
+ headerText: string;
22
+ consent: ConsentField[];
23
+ static fromProto(proto: any): ConsentFieldConfig;
24
+ constructor(kwargs?: i.ConsentFieldConfigInterface);
25
+ toApiJson(): object;
26
+ }
13
27
  export declare class CreateFormFromTemplateRequest implements i.CreateFormFromTemplateRequestInterface {
14
28
  namespace: string;
15
29
  templateId: string;
@@ -134,6 +148,7 @@ export declare class GetMultiRequestFormConfigIdentifier implements i.GetMultiRe
134
148
  export declare class ListFormsResponseFormRow implements i.ListFormsResponseFormRowInterface {
135
149
  form: FormConfig;
136
150
  numberOfSubmissions: number;
151
+ recentProcessingStatus: e.ListFormsResponseProcessResultStatus;
137
152
  static fromProto(proto: any): ListFormsResponseFormRow;
138
153
  constructor(kwargs?: i.ListFormsResponseFormRowInterface);
139
154
  toApiJson(): object;
@@ -296,6 +311,7 @@ export declare class MappedField implements i.MappedFieldInterface {
296
311
  mappedTo: string;
297
312
  systemDefined: SystemDefined;
298
313
  readonly: boolean;
314
+ consentConfig: ConsentFieldConfig;
299
315
  static fromProto(proto: any): MappedField;
300
316
  constructor(kwargs?: i.MappedFieldInterface);
301
317
  toApiJson(): object;
@@ -1,3 +1,5 @@
1
1
  export { PagedRequestOptions, PagedResponseMetadata, } from './paging';
2
2
  export { Filter, FilterGroup, Phone, FilterValue, } from './galaxy-filters';
3
- export { ActionParameters, CreateFormFromTemplateRequest, CreateFormFromTemplateResponse, CreateFormRequest, CreateFormResponse, CreateFormSubmissionRequest, CreateFormSubmissionResponse, RenderFormResponseDefaultValues, DeleteFormRequest, FormConfigField, FieldOption, FieldValue, ListFormsRequestFilters, FormConfig, GetMultiRequestFormConfigIdentifier, ListFormsResponseFormRow, FormSubmission, GenerateCustomCSSRequest, GenerateCustomCSSResponse, GetCreateFormFromTemplateStatusRequest, GetCreateFormFromTemplateStatusResponse, GetEmbedCodeRequest, GetEmbedCodeResponse, GetFormRequest, GetFormResponse, GetMultiFormSubmissionRequest, GetMultiFormSubmissionResponse, GetMultiFormVersionsListRequest, GetMultiFormVersionsListResponse, GetMultiRequest, GetMultiResponse, ListFormSubmissionRequest, ListFormSubmissionResponse, ListFormsRequest, ListFormsResponse, ListMappedFieldSchemaRequest, ListMappedFieldSchemaResponse, MappedField, NextParameters, RenderFormResponsePreFillByUrlQueryParameter, PreviewFormRequest, PreviewFormResponse, FormSubmissionProcessResult, RecoverFormRequest, RecoverFormResponse, RenderFormRequest, RenderFormResponse, ReprocessSubmissionRequest, ReprocessSubmissionResponse, FormSubmissionResultError, FormConfigFieldSchema, SectionConfig, StringList, Styles, SubmitConditionParameters, FormSubmissionSubmittedValue, SystemDefined, FormConfigTemplateSetupSettings, UnmappedField, UpdateFormRequest, UpdateFormResponse, UserFormSubmission, ValidationError, GetMultiFormVersionsListResponseVersions, } from './api';
3
+ export { Access, MCPOptions, } from './annotations';
4
+ export { Contact, EnumSchema, ResponseExamplesEntry, ResponseExtensionsEntry, SwaggerExtensionsEntry, SecuritySchemeExtensionsEntry, TagExtensionsEntry, OperationExtensionsEntry, JSONSchemaExtensionsEntry, EnumSchemaExtensionsEntry, InfoExtensionsEntry, ExternalDocumentation, JSONSchemaFieldConfiguration, Header, HeaderParameter, ResponseHeadersEntry, Info, JSONSchema, License, Operation, Parameters, Response, OperationResponsesEntry, SwaggerResponsesEntry, Schema, ScopesScopeEntry, Scopes, SecurityDefinitions, SecurityDefinitionsSecurityEntry, SecurityRequirement, SecurityRequirementSecurityRequirementEntry, SecurityRequirementSecurityRequirementValue, SecurityScheme, Swagger, Tag, } from './openapiv2';
5
+ export { ActionParameters, ConsentField, ConsentFieldConfig, CreateFormFromTemplateRequest, CreateFormFromTemplateResponse, CreateFormRequest, CreateFormResponse, CreateFormSubmissionRequest, CreateFormSubmissionResponse, RenderFormResponseDefaultValues, DeleteFormRequest, FormConfigField, FieldOption, FieldValue, ListFormsRequestFilters, FormConfig, GetMultiRequestFormConfigIdentifier, ListFormsResponseFormRow, FormSubmission, GenerateCustomCSSRequest, GenerateCustomCSSResponse, GetCreateFormFromTemplateStatusRequest, GetCreateFormFromTemplateStatusResponse, GetEmbedCodeRequest, GetEmbedCodeResponse, GetFormRequest, GetFormResponse, GetMultiFormSubmissionRequest, GetMultiFormSubmissionResponse, GetMultiFormVersionsListRequest, GetMultiFormVersionsListResponse, GetMultiRequest, GetMultiResponse, ListFormSubmissionRequest, ListFormSubmissionResponse, ListFormsRequest, ListFormsResponse, ListMappedFieldSchemaRequest, ListMappedFieldSchemaResponse, MappedField, NextParameters, RenderFormResponsePreFillByUrlQueryParameter, PreviewFormRequest, PreviewFormResponse, FormSubmissionProcessResult, RecoverFormRequest, RecoverFormResponse, RenderFormRequest, RenderFormResponse, ReprocessSubmissionRequest, ReprocessSubmissionResponse, FormSubmissionResultError, FormConfigFieldSchema, SectionConfig, StringList, Styles, SubmitConditionParameters, FormSubmissionSubmittedValue, SystemDefined, FormConfigTemplateSetupSettings, UnmappedField, UpdateFormRequest, UpdateFormResponse, UserFormSubmission, ValidationError, GetMultiFormVersionsListResponseVersions, } from './api';