@vendasta/forms_microservice 0.11.0 → 0.12.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 +10 -1
- package/fesm2015/vendasta-forms_microservice.mjs +9 -0
- package/fesm2015/vendasta-forms_microservice.mjs.map +1 -1
- package/fesm2020/vendasta-forms_microservice.mjs +9 -0
- package/fesm2020/vendasta-forms_microservice.mjs.map +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +3 -0
- package/lib/_internal/objects/api.d.ts +3 -0
- package/package.json +1 -1
|
@@ -122,6 +122,7 @@ export interface ListMappedFieldSchemaRequestInterface {
|
|
|
122
122
|
crmObjectType?: string;
|
|
123
123
|
crmObjectSubtype?: string;
|
|
124
124
|
pagingOptions?: PagedRequestOptionsInterface;
|
|
125
|
+
mappedToResource?: string;
|
|
125
126
|
}
|
|
126
127
|
export interface ListMappedFieldSchemaResponseInterface {
|
|
127
128
|
fieldSchemas?: MappedFieldInterface[];
|
|
@@ -183,6 +184,8 @@ export interface FormSubmissionSubmittedValueInterface {
|
|
|
183
184
|
}
|
|
184
185
|
export interface SystemDefinedInterface {
|
|
185
186
|
required?: boolean;
|
|
187
|
+
includedByDefault?: boolean;
|
|
188
|
+
hidden?: boolean;
|
|
186
189
|
}
|
|
187
190
|
export interface UnmappedFieldInterface {
|
|
188
191
|
id?: string;
|
|
@@ -205,6 +205,7 @@ export declare class ListMappedFieldSchemaRequest implements i.ListMappedFieldSc
|
|
|
205
205
|
crmObjectType: string;
|
|
206
206
|
crmObjectSubtype: string;
|
|
207
207
|
pagingOptions: PagedRequestOptions;
|
|
208
|
+
mappedToResource: string;
|
|
208
209
|
static fromProto(proto: any): ListMappedFieldSchemaRequest;
|
|
209
210
|
constructor(kwargs?: i.ListMappedFieldSchemaRequestInterface);
|
|
210
211
|
toApiJson(): object;
|
|
@@ -299,6 +300,8 @@ export declare class FormSubmissionSubmittedValue implements i.FormSubmissionSub
|
|
|
299
300
|
}
|
|
300
301
|
export declare class SystemDefined implements i.SystemDefinedInterface {
|
|
301
302
|
required: boolean;
|
|
303
|
+
includedByDefault: boolean;
|
|
304
|
+
hidden: boolean;
|
|
302
305
|
static fromProto(proto: any): SystemDefined;
|
|
303
306
|
constructor(kwargs?: i.SystemDefinedInterface);
|
|
304
307
|
toApiJson(): object;
|