@vendasta/forms_microservice 0.10.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 -4
- package/fesm2015/vendasta-forms_microservice.mjs +9 -3
- package/fesm2015/vendasta-forms_microservice.mjs.map +1 -1
- package/fesm2020/vendasta-forms_microservice.mjs +9 -3
- package/fesm2020/vendasta-forms_microservice.mjs.map +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +3 -1
- package/lib/_internal/objects/api.d.ts +3 -1
- package/package.json +1 -1
|
@@ -39,7 +39,6 @@ export interface FieldValueInterface {
|
|
|
39
39
|
boolean?: boolean;
|
|
40
40
|
}
|
|
41
41
|
export interface ListFormsRequestFiltersInterface {
|
|
42
|
-
partnerId?: string;
|
|
43
42
|
namespace?: string;
|
|
44
43
|
}
|
|
45
44
|
export interface FormConfigInterface {
|
|
@@ -123,6 +122,7 @@ export interface ListMappedFieldSchemaRequestInterface {
|
|
|
123
122
|
crmObjectType?: string;
|
|
124
123
|
crmObjectSubtype?: string;
|
|
125
124
|
pagingOptions?: PagedRequestOptionsInterface;
|
|
125
|
+
mappedToResource?: string;
|
|
126
126
|
}
|
|
127
127
|
export interface ListMappedFieldSchemaResponseInterface {
|
|
128
128
|
fieldSchemas?: MappedFieldInterface[];
|
|
@@ -184,6 +184,8 @@ export interface FormSubmissionSubmittedValueInterface {
|
|
|
184
184
|
}
|
|
185
185
|
export interface SystemDefinedInterface {
|
|
186
186
|
required?: boolean;
|
|
187
|
+
includedByDefault?: boolean;
|
|
188
|
+
hidden?: boolean;
|
|
187
189
|
}
|
|
188
190
|
export interface UnmappedFieldInterface {
|
|
189
191
|
id?: string;
|
|
@@ -65,7 +65,6 @@ export declare class FieldValue implements i.FieldValueInterface {
|
|
|
65
65
|
toApiJson(): object;
|
|
66
66
|
}
|
|
67
67
|
export declare class ListFormsRequestFilters implements i.ListFormsRequestFiltersInterface {
|
|
68
|
-
partnerId: string;
|
|
69
68
|
namespace: string;
|
|
70
69
|
static fromProto(proto: any): ListFormsRequestFilters;
|
|
71
70
|
constructor(kwargs?: i.ListFormsRequestFiltersInterface);
|
|
@@ -206,6 +205,7 @@ export declare class ListMappedFieldSchemaRequest implements i.ListMappedFieldSc
|
|
|
206
205
|
crmObjectType: string;
|
|
207
206
|
crmObjectSubtype: string;
|
|
208
207
|
pagingOptions: PagedRequestOptions;
|
|
208
|
+
mappedToResource: string;
|
|
209
209
|
static fromProto(proto: any): ListMappedFieldSchemaRequest;
|
|
210
210
|
constructor(kwargs?: i.ListMappedFieldSchemaRequestInterface);
|
|
211
211
|
toApiJson(): object;
|
|
@@ -300,6 +300,8 @@ export declare class FormSubmissionSubmittedValue implements i.FormSubmissionSub
|
|
|
300
300
|
}
|
|
301
301
|
export declare class SystemDefined implements i.SystemDefinedInterface {
|
|
302
302
|
required: boolean;
|
|
303
|
+
includedByDefault: boolean;
|
|
304
|
+
hidden: boolean;
|
|
303
305
|
static fromProto(proto: any): SystemDefined;
|
|
304
306
|
constructor(kwargs?: i.SystemDefinedInterface);
|
|
305
307
|
toApiJson(): object;
|