@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.
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/forms_microservice",
3
- "version": "0.8.0",
3
+ "version": "0.10.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"