@vendasta/forms_microservice 0.28.0 → 0.30.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.
@@ -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,
@@ -193,6 +193,7 @@ export interface MappedFieldInterface {
193
193
  systemDefined?: SystemDefinedInterface;
194
194
  readonly?: boolean;
195
195
  consentConfig?: ConsentFieldConfigInterface;
196
+ promoSelectionConfig?: PromoSelectionFieldConfigInterface;
196
197
  }
197
198
  export interface NextParametersInterface {
198
199
  nextSectionId?: string;
@@ -214,6 +215,9 @@ export interface FormSubmissionProcessResultInterface {
214
215
  entityIds?: string[];
215
216
  errors?: FormSubmissionResultErrorInterface[];
216
217
  }
218
+ export interface PromoSelectionFieldConfigInterface {
219
+ autoAdvance?: boolean;
220
+ }
217
221
  export interface RecoverFormRequestInterface {
218
222
  formId?: string;
219
223
  }
@@ -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, 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, 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';
@@ -312,6 +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
316
  static fromProto(proto: any): MappedField;
316
317
  constructor(kwargs?: i.MappedFieldInterface);
317
318
  toApiJson(): object;
@@ -351,6 +352,12 @@ export declare class FormSubmissionProcessResult implements i.FormSubmissionProc
351
352
  constructor(kwargs?: i.FormSubmissionProcessResultInterface);
352
353
  toApiJson(): object;
353
354
  }
355
+ export declare class PromoSelectionFieldConfig implements i.PromoSelectionFieldConfigInterface {
356
+ autoAdvance: boolean;
357
+ static fromProto(proto: any): PromoSelectionFieldConfig;
358
+ constructor(kwargs?: i.PromoSelectionFieldConfigInterface);
359
+ toApiJson(): object;
360
+ }
354
361
  export declare class RecoverFormRequest implements i.RecoverFormRequestInterface {
355
362
  formId: string;
356
363
  static fromProto(proto: any): RecoverFormRequest;
@@ -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, 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, PromoSelectionFieldConfig, 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.28.0",
3
+ "version": "0.30.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"