@vendasta/forms_microservice 0.14.1 → 0.16.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.
@@ -11,7 +11,8 @@ export declare enum FieldType {
11
11
  FIELD_TYPE_EMAIL = 9,
12
12
  FIELD_TYPE_PHONE = 10,
13
13
  FIELD_TYPE_BUSINESS_SEARCH = 11,
14
- FIELD_TYPE_TEXT_AREA = 12
14
+ FIELD_TYPE_TEXT_AREA = 12,
15
+ FIELD_TYPE_TAG = 13
15
16
  }
16
17
  export declare enum JsonSchemaLibrary {
17
18
  JSON_SCHEMA_LIBRARY_UNDEFINED = 0,
@@ -27,6 +27,7 @@ export interface FormConfigFieldInterface {
27
27
  defaultValue?: FieldValueInterface;
28
28
  preFillByUrlQueryParameter?: string;
29
29
  placeholder?: string;
30
+ defaultPhoneIsoCountryCode?: string;
30
31
  }
31
32
  export interface FieldOptionInterface {
32
33
  value?: string;
@@ -36,6 +37,7 @@ export interface FieldValueInterface {
36
37
  invalid?: boolean;
37
38
  integer?: number;
38
39
  string?: string;
40
+ stringValues?: StringListInterface;
39
41
  boolean?: boolean;
40
42
  }
41
43
  export interface ListFormsRequestFiltersInterface {
@@ -165,6 +167,9 @@ export interface FormConfigFieldSchemaInterface {
165
167
  unmappedField?: UnmappedFieldInterface;
166
168
  mappedField?: MappedFieldInterface;
167
169
  }
170
+ export interface StringListInterface {
171
+ values?: string[];
172
+ }
168
173
  export interface StylesInterface {
169
174
  width?: string;
170
175
  backgroundColor?: string;
@@ -1,2 +1,2 @@
1
1
  export { PagedRequestOptionsInterface, PagedResponseMetadataInterface, } from './paging.interface';
2
- export { CreateFormRequestInterface, CreateFormResponseInterface, CreateFormSubmissionRequestInterface, CreateFormSubmissionResponseInterface, DeleteFormRequestInterface, FormConfigFieldInterface, FieldOptionInterface, FieldValueInterface, ListFormsRequestFiltersInterface, FormConfigInterface, GetMultiRequestFormConfigIdentifierInterface, ListFormsResponseFormRowInterface, FormSubmissionInterface, GetEmbedCodeRequestInterface, GetEmbedCodeResponseInterface, GetFormRequestInterface, GetFormResponseInterface, GetMultiFormSubmissionRequestInterface, GetMultiFormSubmissionResponseInterface, GetMultiFormVersionsListRequestInterface, GetMultiFormVersionsListResponseInterface, GetMultiRequestInterface, GetMultiResponseInterface, ListFormSubmissionRequestInterface, ListFormSubmissionResponseInterface, ListFormsRequestInterface, ListFormsResponseInterface, ListMappedFieldSchemaRequestInterface, ListMappedFieldSchemaResponseInterface, MappedFieldInterface, RenderFormResponsePreFillByUrlQueryParameterInterface, PreviewFormRequestInterface, PreviewFormResponseInterface, RenderFormRequestInterface, RenderFormResponseInterface, FormConfigFieldSchemaInterface, StylesInterface, FormSubmissionSubmittedValueInterface, SystemDefinedInterface, UnmappedFieldInterface, UpdateFormRequestInterface, UpdateFormResponseInterface, UserFormSubmissionInterface, ValidationErrorInterface, GetMultiFormVersionsListResponseVersionsInterface, } from './api.interface';
2
+ export { CreateFormRequestInterface, CreateFormResponseInterface, CreateFormSubmissionRequestInterface, CreateFormSubmissionResponseInterface, DeleteFormRequestInterface, FormConfigFieldInterface, FieldOptionInterface, FieldValueInterface, ListFormsRequestFiltersInterface, FormConfigInterface, GetMultiRequestFormConfigIdentifierInterface, ListFormsResponseFormRowInterface, FormSubmissionInterface, GetEmbedCodeRequestInterface, GetEmbedCodeResponseInterface, GetFormRequestInterface, GetFormResponseInterface, GetMultiFormSubmissionRequestInterface, GetMultiFormSubmissionResponseInterface, GetMultiFormVersionsListRequestInterface, GetMultiFormVersionsListResponseInterface, GetMultiRequestInterface, GetMultiResponseInterface, ListFormSubmissionRequestInterface, ListFormSubmissionResponseInterface, ListFormsRequestInterface, ListFormsResponseInterface, ListMappedFieldSchemaRequestInterface, ListMappedFieldSchemaResponseInterface, MappedFieldInterface, RenderFormResponsePreFillByUrlQueryParameterInterface, PreviewFormRequestInterface, PreviewFormResponseInterface, RenderFormRequestInterface, RenderFormResponseInterface, FormConfigFieldSchemaInterface, StringListInterface, StylesInterface, FormSubmissionSubmittedValueInterface, SystemDefinedInterface, UnmappedFieldInterface, UpdateFormRequestInterface, UpdateFormResponseInterface, UserFormSubmissionInterface, ValidationErrorInterface, GetMultiFormVersionsListResponseVersionsInterface, } from './api.interface';
@@ -44,6 +44,7 @@ export declare class FormConfigField implements i.FormConfigFieldInterface {
44
44
  defaultValue: FieldValue;
45
45
  preFillByUrlQueryParameter: string;
46
46
  placeholder: string;
47
+ defaultPhoneIsoCountryCode: string;
47
48
  static fromProto(proto: any): FormConfigField;
48
49
  constructor(kwargs?: i.FormConfigFieldInterface);
49
50
  toApiJson(): object;
@@ -59,6 +60,7 @@ export declare class FieldValue implements i.FieldValueInterface {
59
60
  invalid: boolean;
60
61
  integer: number;
61
62
  string: string;
63
+ stringValues: StringList;
62
64
  boolean: boolean;
63
65
  static fromProto(proto: any): FieldValue;
64
66
  constructor(kwargs?: i.FieldValueInterface);
@@ -275,6 +277,12 @@ export declare class FormConfigFieldSchema implements i.FormConfigFieldSchemaInt
275
277
  constructor(kwargs?: i.FormConfigFieldSchemaInterface);
276
278
  toApiJson(): object;
277
279
  }
280
+ export declare class StringList implements i.StringListInterface {
281
+ values: string[];
282
+ static fromProto(proto: any): StringList;
283
+ constructor(kwargs?: i.StringListInterface);
284
+ toApiJson(): object;
285
+ }
278
286
  export declare class Styles implements i.StylesInterface {
279
287
  width: string;
280
288
  backgroundColor: string;
@@ -1,2 +1,2 @@
1
1
  export { PagedRequestOptions, PagedResponseMetadata, } from './paging';
2
- export { CreateFormRequest, CreateFormResponse, CreateFormSubmissionRequest, CreateFormSubmissionResponse, DeleteFormRequest, FormConfigField, FieldOption, FieldValue, ListFormsRequestFilters, FormConfig, GetMultiRequestFormConfigIdentifier, ListFormsResponseFormRow, FormSubmission, GetEmbedCodeRequest, GetEmbedCodeResponse, GetFormRequest, GetFormResponse, GetMultiFormSubmissionRequest, GetMultiFormSubmissionResponse, GetMultiFormVersionsListRequest, GetMultiFormVersionsListResponse, GetMultiRequest, GetMultiResponse, ListFormSubmissionRequest, ListFormSubmissionResponse, ListFormsRequest, ListFormsResponse, ListMappedFieldSchemaRequest, ListMappedFieldSchemaResponse, MappedField, RenderFormResponsePreFillByUrlQueryParameter, PreviewFormRequest, PreviewFormResponse, RenderFormRequest, RenderFormResponse, FormConfigFieldSchema, Styles, FormSubmissionSubmittedValue, SystemDefined, UnmappedField, UpdateFormRequest, UpdateFormResponse, UserFormSubmission, ValidationError, GetMultiFormVersionsListResponseVersions, } from './api';
2
+ export { CreateFormRequest, CreateFormResponse, CreateFormSubmissionRequest, CreateFormSubmissionResponse, DeleteFormRequest, FormConfigField, FieldOption, FieldValue, ListFormsRequestFilters, FormConfig, GetMultiRequestFormConfigIdentifier, ListFormsResponseFormRow, FormSubmission, GetEmbedCodeRequest, GetEmbedCodeResponse, GetFormRequest, GetFormResponse, GetMultiFormSubmissionRequest, GetMultiFormSubmissionResponse, GetMultiFormVersionsListRequest, GetMultiFormVersionsListResponse, GetMultiRequest, GetMultiResponse, ListFormSubmissionRequest, ListFormSubmissionResponse, ListFormsRequest, ListFormsResponse, ListMappedFieldSchemaRequest, ListMappedFieldSchemaResponse, MappedField, RenderFormResponsePreFillByUrlQueryParameter, PreviewFormRequest, PreviewFormResponse, RenderFormRequest, RenderFormResponse, FormConfigFieldSchema, StringList, Styles, FormSubmissionSubmittedValue, SystemDefined, UnmappedField, UpdateFormRequest, UpdateFormResponse, UserFormSubmission, ValidationError, GetMultiFormVersionsListResponseVersions, } from './api';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/forms_microservice",
3
- "version": "0.14.1",
3
+ "version": "0.16.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"