@vendasta/forms_microservice 0.8.0 → 0.10.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
|
@@ -40,6 +40,7 @@ export interface FieldValueInterface {
|
|
|
40
40
|
}
|
|
41
41
|
export interface ListFormsRequestFiltersInterface {
|
|
42
42
|
partnerId?: string;
|
|
43
|
+
namespace?: string;
|
|
43
44
|
}
|
|
44
45
|
export interface FormConfigInterface {
|
|
45
46
|
formId?: string;
|
|
@@ -130,9 +131,11 @@ export interface ListMappedFieldSchemaResponseInterface {
|
|
|
130
131
|
export interface MappedFieldInterface {
|
|
131
132
|
id?: string;
|
|
132
133
|
type?: e.FieldType;
|
|
134
|
+
name?: string;
|
|
133
135
|
options?: FieldOptionInterface[];
|
|
134
136
|
mappedTo?: string;
|
|
135
137
|
systemDefined?: SystemDefinedInterface;
|
|
138
|
+
readonly?: boolean;
|
|
136
139
|
}
|
|
137
140
|
export interface RenderFormResponsePreFillByUrlQueryParameterInterface {
|
|
138
141
|
fieldId?: string;
|
|
@@ -66,6 +66,7 @@ export declare class FieldValue implements i.FieldValueInterface {
|
|
|
66
66
|
}
|
|
67
67
|
export declare class ListFormsRequestFilters implements i.ListFormsRequestFiltersInterface {
|
|
68
68
|
partnerId: string;
|
|
69
|
+
namespace: string;
|
|
69
70
|
static fromProto(proto: any): ListFormsRequestFilters;
|
|
70
71
|
constructor(kwargs?: i.ListFormsRequestFiltersInterface);
|
|
71
72
|
toApiJson(): object;
|
|
@@ -219,9 +220,11 @@ export declare class ListMappedFieldSchemaResponse implements i.ListMappedFieldS
|
|
|
219
220
|
export declare class MappedField implements i.MappedFieldInterface {
|
|
220
221
|
id: string;
|
|
221
222
|
type: e.FieldType;
|
|
223
|
+
name: string;
|
|
222
224
|
options: FieldOption[];
|
|
223
225
|
mappedTo: string;
|
|
224
226
|
systemDefined: SystemDefined;
|
|
227
|
+
readonly: boolean;
|
|
225
228
|
static fromProto(proto: any): MappedField;
|
|
226
229
|
constructor(kwargs?: i.MappedFieldInterface);
|
|
227
230
|
toApiJson(): object;
|