@vendasta/forms_microservice 0.8.0 → 0.9.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 +7 -1
- package/fesm2015/vendasta-forms_microservice.mjs +6 -0
- package/fesm2015/vendasta-forms_microservice.mjs.map +1 -1
- package/fesm2020/vendasta-forms_microservice.mjs +6 -0
- package/fesm2020/vendasta-forms_microservice.mjs.map +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +2 -0
- package/lib/_internal/objects/api.d.ts +2 -0
- package/package.json +1 -1
|
@@ -219,9 +219,11 @@ export declare class ListMappedFieldSchemaResponse implements i.ListMappedFieldS
|
|
|
219
219
|
export declare class MappedField implements i.MappedFieldInterface {
|
|
220
220
|
id: string;
|
|
221
221
|
type: e.FieldType;
|
|
222
|
+
name: string;
|
|
222
223
|
options: FieldOption[];
|
|
223
224
|
mappedTo: string;
|
|
224
225
|
systemDefined: SystemDefined;
|
|
226
|
+
readonly: boolean;
|
|
225
227
|
static fromProto(proto: any): MappedField;
|
|
226
228
|
constructor(kwargs?: i.MappedFieldInterface);
|
|
227
229
|
toApiJson(): object;
|