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