@vendasta/forms_microservice 0.11.0 → 0.13.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/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/api.mjs +13 -1
- package/fesm2015/vendasta-forms_microservice.mjs +12 -0
- package/fesm2015/vendasta-forms_microservice.mjs.map +1 -1
- package/fesm2020/vendasta-forms_microservice.mjs +12 -0
- package/fesm2020/vendasta-forms_microservice.mjs.map +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +4 -0
- package/lib/_internal/objects/api.d.ts +4 -0
- package/package.json +1 -1
|
@@ -56,6 +56,7 @@ export interface FormConfigInterface {
|
|
|
56
56
|
recaptchaSiteKey?: string;
|
|
57
57
|
recaptchaSecretKey?: string;
|
|
58
58
|
submitButtonLabel?: string;
|
|
59
|
+
createInboxConversation?: boolean;
|
|
59
60
|
}
|
|
60
61
|
export interface GetMultiRequestFormConfigIdentifierInterface {
|
|
61
62
|
formId?: string;
|
|
@@ -122,6 +123,7 @@ export interface ListMappedFieldSchemaRequestInterface {
|
|
|
122
123
|
crmObjectType?: string;
|
|
123
124
|
crmObjectSubtype?: string;
|
|
124
125
|
pagingOptions?: PagedRequestOptionsInterface;
|
|
126
|
+
mappedToResource?: string;
|
|
125
127
|
}
|
|
126
128
|
export interface ListMappedFieldSchemaResponseInterface {
|
|
127
129
|
fieldSchemas?: MappedFieldInterface[];
|
|
@@ -183,6 +185,8 @@ export interface FormSubmissionSubmittedValueInterface {
|
|
|
183
185
|
}
|
|
184
186
|
export interface SystemDefinedInterface {
|
|
185
187
|
required?: boolean;
|
|
188
|
+
includedByDefault?: boolean;
|
|
189
|
+
hidden?: boolean;
|
|
186
190
|
}
|
|
187
191
|
export interface UnmappedFieldInterface {
|
|
188
192
|
id?: string;
|
|
@@ -85,6 +85,7 @@ export declare class FormConfig implements i.FormConfigInterface {
|
|
|
85
85
|
recaptchaSiteKey: string;
|
|
86
86
|
recaptchaSecretKey: string;
|
|
87
87
|
submitButtonLabel: string;
|
|
88
|
+
createInboxConversation: boolean;
|
|
88
89
|
static fromProto(proto: any): FormConfig;
|
|
89
90
|
constructor(kwargs?: i.FormConfigInterface);
|
|
90
91
|
toApiJson(): object;
|
|
@@ -205,6 +206,7 @@ export declare class ListMappedFieldSchemaRequest implements i.ListMappedFieldSc
|
|
|
205
206
|
crmObjectType: string;
|
|
206
207
|
crmObjectSubtype: string;
|
|
207
208
|
pagingOptions: PagedRequestOptions;
|
|
209
|
+
mappedToResource: string;
|
|
208
210
|
static fromProto(proto: any): ListMappedFieldSchemaRequest;
|
|
209
211
|
constructor(kwargs?: i.ListMappedFieldSchemaRequestInterface);
|
|
210
212
|
toApiJson(): object;
|
|
@@ -299,6 +301,8 @@ export declare class FormSubmissionSubmittedValue implements i.FormSubmissionSub
|
|
|
299
301
|
}
|
|
300
302
|
export declare class SystemDefined implements i.SystemDefinedInterface {
|
|
301
303
|
required: boolean;
|
|
304
|
+
includedByDefault: boolean;
|
|
305
|
+
hidden: boolean;
|
|
302
306
|
static fromProto(proto: any): SystemDefined;
|
|
303
307
|
constructor(kwargs?: i.SystemDefinedInterface);
|
|
304
308
|
toApiJson(): object;
|