@vendasta/forms_microservice 0.29.0 → 0.30.1

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.
@@ -1,7 +1,8 @@
1
1
  export declare enum ConsentType {
2
2
  CONSENT_TYPE_INVALID = 0,
3
- CONSENT_TYPE_EMAIL = 1,
4
- CONSENT_TYPE_SMS = 2
3
+ CONSENT_TYPE_MARKETING_EMAIL = 1,
4
+ CONSENT_TYPE_TRANSACTION_SMS = 2,
5
+ CONSENT_TYPE_MARKETING_SMS = 3
5
6
  }
6
7
  export declare enum FieldType {
7
8
  FIELD_TYPE_INVALID = 0,
@@ -46,7 +46,8 @@ export declare enum FilterOperator {
46
46
  FILTER_OPERATOR_IS_BETWEEN = 21,
47
47
  FILTER_OPERATOR_IS_NOT_BETWEEN = 22,
48
48
  FILTER_OPERATOR_IS_VALID = 23,
49
- FILTER_OPERATOR_IS_NOT_VALID = 24
49
+ FILTER_OPERATOR_IS_NOT_VALID = 24,
50
+ FILTER_OPERATOR_ANNIVERSARY_IS = 25
50
51
  }
51
52
  export declare enum FilterType {
52
53
  FILTER_TYPE_INVALID = 0,
@@ -193,7 +193,7 @@ export interface MappedFieldInterface {
193
193
  systemDefined?: SystemDefinedInterface;
194
194
  readonly?: boolean;
195
195
  consentConfig?: ConsentFieldConfigInterface;
196
- promoSelectionConfig?: PromoSelectionFieldConfigInterface;
196
+ promoSelectionConfig?: PromoSelectionConfigInterface;
197
197
  }
198
198
  export interface NextParametersInterface {
199
199
  nextSectionId?: string;
@@ -215,8 +215,9 @@ export interface FormSubmissionProcessResultInterface {
215
215
  entityIds?: string[];
216
216
  errors?: FormSubmissionResultErrorInterface[];
217
217
  }
218
- export interface PromoSelectionFieldConfigInterface {
218
+ export interface PromoSelectionConfigInterface {
219
219
  autoAdvance?: boolean;
220
+ multiSelection?: boolean;
220
221
  }
221
222
  export interface RecoverFormRequestInterface {
222
223
  formId?: string;
@@ -2,4 +2,4 @@ export { PagedRequestOptionsInterface, PagedResponseMetadataInterface, } from '.
2
2
  export { FilterInterface, FilterGroupInterface, PhoneInterface, FilterValueInterface, } from './galaxy-filters.interface';
3
3
  export { AccessInterface, MCPOptionsInterface, } from './annotations.interface';
4
4
  export { ContactInterface, EnumSchemaInterface, ResponseExamplesEntryInterface, ResponseExtensionsEntryInterface, SwaggerExtensionsEntryInterface, SecuritySchemeExtensionsEntryInterface, TagExtensionsEntryInterface, OperationExtensionsEntryInterface, JSONSchemaExtensionsEntryInterface, EnumSchemaExtensionsEntryInterface, InfoExtensionsEntryInterface, ExternalDocumentationInterface, JSONSchemaFieldConfigurationInterface, HeaderInterface, HeaderParameterInterface, ResponseHeadersEntryInterface, InfoInterface, JSONSchemaInterface, LicenseInterface, OperationInterface, ParametersInterface, ResponseInterface, OperationResponsesEntryInterface, SwaggerResponsesEntryInterface, SchemaInterface, ScopesScopeEntryInterface, ScopesInterface, SecurityDefinitionsInterface, SecurityDefinitionsSecurityEntryInterface, SecurityRequirementInterface, SecurityRequirementSecurityRequirementEntryInterface, SecurityRequirementSecurityRequirementValueInterface, SecuritySchemeInterface, SwaggerInterface, TagInterface, } from './openapiv2.interface';
5
- export { ActionParametersInterface, ConsentFieldInterface, ConsentFieldConfigInterface, CreateFormFromTemplateRequestInterface, CreateFormFromTemplateResponseInterface, CreateFormRequestInterface, CreateFormResponseInterface, CreateFormSubmissionRequestInterface, CreateFormSubmissionResponseInterface, RenderFormResponseDefaultValuesInterface, DeleteFormRequestInterface, FormConfigFieldInterface, FieldOptionInterface, FieldValueInterface, ListFormsRequestFiltersInterface, FormConfigInterface, GetMultiRequestFormConfigIdentifierInterface, ListFormsResponseFormRowInterface, FormSubmissionInterface, GenerateCustomCSSRequestInterface, GenerateCustomCSSResponseInterface, GetCreateFormFromTemplateStatusRequestInterface, GetCreateFormFromTemplateStatusResponseInterface, GetEmbedCodeRequestInterface, GetEmbedCodeResponseInterface, GetFormRequestInterface, GetFormResponseInterface, GetMultiFormSubmissionRequestInterface, GetMultiFormSubmissionResponseInterface, GetMultiFormVersionsListRequestInterface, GetMultiFormVersionsListResponseInterface, GetMultiRequestInterface, GetMultiResponseInterface, ListFormSubmissionRequestInterface, ListFormSubmissionResponseInterface, ListFormsRequestInterface, ListFormsResponseInterface, ListMappedFieldSchemaRequestInterface, ListMappedFieldSchemaResponseInterface, MappedFieldInterface, NextParametersInterface, RenderFormResponsePreFillByUrlQueryParameterInterface, PreviewFormRequestInterface, PreviewFormResponseInterface, FormSubmissionProcessResultInterface, PromoSelectionFieldConfigInterface, RecoverFormRequestInterface, RecoverFormResponseInterface, RenderFormRequestInterface, RenderFormResponseInterface, ReprocessSubmissionRequestInterface, ReprocessSubmissionResponseInterface, FormSubmissionResultErrorInterface, FormConfigFieldSchemaInterface, SectionConfigInterface, StringListInterface, StylesInterface, SubmitConditionParametersInterface, FormSubmissionSubmittedValueInterface, SystemDefinedInterface, FormConfigTemplateSetupSettingsInterface, UnmappedFieldInterface, UpdateFormRequestInterface, UpdateFormResponseInterface, UserFormSubmissionInterface, ValidationErrorInterface, GetMultiFormVersionsListResponseVersionsInterface, } from './api.interface';
5
+ export { ActionParametersInterface, ConsentFieldInterface, ConsentFieldConfigInterface, CreateFormFromTemplateRequestInterface, CreateFormFromTemplateResponseInterface, CreateFormRequestInterface, CreateFormResponseInterface, CreateFormSubmissionRequestInterface, CreateFormSubmissionResponseInterface, RenderFormResponseDefaultValuesInterface, DeleteFormRequestInterface, FormConfigFieldInterface, FieldOptionInterface, FieldValueInterface, ListFormsRequestFiltersInterface, FormConfigInterface, GetMultiRequestFormConfigIdentifierInterface, ListFormsResponseFormRowInterface, FormSubmissionInterface, GenerateCustomCSSRequestInterface, GenerateCustomCSSResponseInterface, GetCreateFormFromTemplateStatusRequestInterface, GetCreateFormFromTemplateStatusResponseInterface, GetEmbedCodeRequestInterface, GetEmbedCodeResponseInterface, GetFormRequestInterface, GetFormResponseInterface, GetMultiFormSubmissionRequestInterface, GetMultiFormSubmissionResponseInterface, GetMultiFormVersionsListRequestInterface, GetMultiFormVersionsListResponseInterface, GetMultiRequestInterface, GetMultiResponseInterface, ListFormSubmissionRequestInterface, ListFormSubmissionResponseInterface, ListFormsRequestInterface, ListFormsResponseInterface, ListMappedFieldSchemaRequestInterface, ListMappedFieldSchemaResponseInterface, MappedFieldInterface, NextParametersInterface, RenderFormResponsePreFillByUrlQueryParameterInterface, PreviewFormRequestInterface, PreviewFormResponseInterface, FormSubmissionProcessResultInterface, PromoSelectionConfigInterface, RecoverFormRequestInterface, RecoverFormResponseInterface, RenderFormRequestInterface, RenderFormResponseInterface, ReprocessSubmissionRequestInterface, ReprocessSubmissionResponseInterface, FormSubmissionResultErrorInterface, FormConfigFieldSchemaInterface, SectionConfigInterface, StringListInterface, StylesInterface, SubmitConditionParametersInterface, FormSubmissionSubmittedValueInterface, SystemDefinedInterface, FormConfigTemplateSetupSettingsInterface, UnmappedFieldInterface, UpdateFormRequestInterface, UpdateFormResponseInterface, UserFormSubmissionInterface, ValidationErrorInterface, GetMultiFormVersionsListResponseVersionsInterface, } from './api.interface';
@@ -312,7 +312,7 @@ export declare class MappedField implements i.MappedFieldInterface {
312
312
  systemDefined: SystemDefined;
313
313
  readonly: boolean;
314
314
  consentConfig: ConsentFieldConfig;
315
- promoSelectionConfig: PromoSelectionFieldConfig;
315
+ promoSelectionConfig: PromoSelectionConfig;
316
316
  static fromProto(proto: any): MappedField;
317
317
  constructor(kwargs?: i.MappedFieldInterface);
318
318
  toApiJson(): object;
@@ -352,10 +352,11 @@ export declare class FormSubmissionProcessResult implements i.FormSubmissionProc
352
352
  constructor(kwargs?: i.FormSubmissionProcessResultInterface);
353
353
  toApiJson(): object;
354
354
  }
355
- export declare class PromoSelectionFieldConfig implements i.PromoSelectionFieldConfigInterface {
355
+ export declare class PromoSelectionConfig implements i.PromoSelectionConfigInterface {
356
356
  autoAdvance: boolean;
357
- static fromProto(proto: any): PromoSelectionFieldConfig;
358
- constructor(kwargs?: i.PromoSelectionFieldConfigInterface);
357
+ multiSelection: boolean;
358
+ static fromProto(proto: any): PromoSelectionConfig;
359
+ constructor(kwargs?: i.PromoSelectionConfigInterface);
359
360
  toApiJson(): object;
360
361
  }
361
362
  export declare class RecoverFormRequest implements i.RecoverFormRequestInterface {
@@ -2,4 +2,4 @@ export { PagedRequestOptions, PagedResponseMetadata, } from './paging';
2
2
  export { Filter, FilterGroup, Phone, FilterValue, } from './galaxy-filters';
3
3
  export { Access, MCPOptions, } from './annotations';
4
4
  export { Contact, EnumSchema, ResponseExamplesEntry, ResponseExtensionsEntry, SwaggerExtensionsEntry, SecuritySchemeExtensionsEntry, TagExtensionsEntry, OperationExtensionsEntry, JSONSchemaExtensionsEntry, EnumSchemaExtensionsEntry, InfoExtensionsEntry, ExternalDocumentation, JSONSchemaFieldConfiguration, Header, HeaderParameter, ResponseHeadersEntry, Info, JSONSchema, License, Operation, Parameters, Response, OperationResponsesEntry, SwaggerResponsesEntry, Schema, ScopesScopeEntry, Scopes, SecurityDefinitions, SecurityDefinitionsSecurityEntry, SecurityRequirement, SecurityRequirementSecurityRequirementEntry, SecurityRequirementSecurityRequirementValue, SecurityScheme, Swagger, Tag, } from './openapiv2';
5
- export { ActionParameters, ConsentField, ConsentFieldConfig, CreateFormFromTemplateRequest, CreateFormFromTemplateResponse, CreateFormRequest, CreateFormResponse, CreateFormSubmissionRequest, CreateFormSubmissionResponse, RenderFormResponseDefaultValues, DeleteFormRequest, FormConfigField, FieldOption, FieldValue, ListFormsRequestFilters, FormConfig, GetMultiRequestFormConfigIdentifier, ListFormsResponseFormRow, FormSubmission, GenerateCustomCSSRequest, GenerateCustomCSSResponse, GetCreateFormFromTemplateStatusRequest, GetCreateFormFromTemplateStatusResponse, GetEmbedCodeRequest, GetEmbedCodeResponse, GetFormRequest, GetFormResponse, GetMultiFormSubmissionRequest, GetMultiFormSubmissionResponse, GetMultiFormVersionsListRequest, GetMultiFormVersionsListResponse, GetMultiRequest, GetMultiResponse, ListFormSubmissionRequest, ListFormSubmissionResponse, ListFormsRequest, ListFormsResponse, ListMappedFieldSchemaRequest, ListMappedFieldSchemaResponse, MappedField, NextParameters, RenderFormResponsePreFillByUrlQueryParameter, PreviewFormRequest, PreviewFormResponse, FormSubmissionProcessResult, PromoSelectionFieldConfig, RecoverFormRequest, RecoverFormResponse, RenderFormRequest, RenderFormResponse, ReprocessSubmissionRequest, ReprocessSubmissionResponse, FormSubmissionResultError, FormConfigFieldSchema, SectionConfig, StringList, Styles, SubmitConditionParameters, FormSubmissionSubmittedValue, SystemDefined, FormConfigTemplateSetupSettings, UnmappedField, UpdateFormRequest, UpdateFormResponse, UserFormSubmission, ValidationError, GetMultiFormVersionsListResponseVersions, } from './api';
5
+ export { ActionParameters, ConsentField, ConsentFieldConfig, CreateFormFromTemplateRequest, CreateFormFromTemplateResponse, CreateFormRequest, CreateFormResponse, CreateFormSubmissionRequest, CreateFormSubmissionResponse, RenderFormResponseDefaultValues, DeleteFormRequest, FormConfigField, FieldOption, FieldValue, ListFormsRequestFilters, FormConfig, GetMultiRequestFormConfigIdentifier, ListFormsResponseFormRow, FormSubmission, GenerateCustomCSSRequest, GenerateCustomCSSResponse, GetCreateFormFromTemplateStatusRequest, GetCreateFormFromTemplateStatusResponse, GetEmbedCodeRequest, GetEmbedCodeResponse, GetFormRequest, GetFormResponse, GetMultiFormSubmissionRequest, GetMultiFormSubmissionResponse, GetMultiFormVersionsListRequest, GetMultiFormVersionsListResponse, GetMultiRequest, GetMultiResponse, ListFormSubmissionRequest, ListFormSubmissionResponse, ListFormsRequest, ListFormsResponse, ListMappedFieldSchemaRequest, ListMappedFieldSchemaResponse, MappedField, NextParameters, RenderFormResponsePreFillByUrlQueryParameter, PreviewFormRequest, PreviewFormResponse, FormSubmissionProcessResult, PromoSelectionConfig, RecoverFormRequest, RecoverFormResponse, RenderFormRequest, RenderFormResponse, ReprocessSubmissionRequest, ReprocessSubmissionResponse, FormSubmissionResultError, FormConfigFieldSchema, SectionConfig, StringList, Styles, SubmitConditionParameters, FormSubmissionSubmittedValue, SystemDefined, FormConfigTemplateSetupSettings, 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.29.0",
3
+ "version": "0.30.1",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"