@vendasta/forms_microservice 0.28.0 → 0.29.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.
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/objects/api.mjs +27 -1
- package/esm2020/lib/_internal/objects/index.mjs +2 -2
- package/fesm2015/vendasta-forms_microservice.mjs +27 -1
- package/fesm2015/vendasta-forms_microservice.mjs.map +1 -1
- package/fesm2020/vendasta-forms_microservice.mjs +27 -1
- package/fesm2020/vendasta-forms_microservice.mjs.map +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +4 -0
- package/lib/_internal/interfaces/index.d.ts +1 -1
- package/lib/_internal/objects/api.d.ts +7 -0
- package/lib/_internal/objects/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -2796,6 +2796,9 @@ class MappedField {
|
|
|
2796
2796
|
if (proto.consentConfig) {
|
|
2797
2797
|
m.consentConfig = ConsentFieldConfig.fromProto(proto.consentConfig);
|
|
2798
2798
|
}
|
|
2799
|
+
if (proto.promoSelectionConfig) {
|
|
2800
|
+
m.promoSelectionConfig = PromoSelectionFieldConfig.fromProto(proto.promoSelectionConfig);
|
|
2801
|
+
}
|
|
2799
2802
|
return m;
|
|
2800
2803
|
}
|
|
2801
2804
|
constructor(kwargs) {
|
|
@@ -2830,6 +2833,9 @@ class MappedField {
|
|
|
2830
2833
|
if (typeof this.consentConfig !== 'undefined' && this.consentConfig !== null) {
|
|
2831
2834
|
toReturn['consentConfig'] = 'toApiJson' in this.consentConfig ? this.consentConfig.toApiJson() : this.consentConfig;
|
|
2832
2835
|
}
|
|
2836
|
+
if (typeof this.promoSelectionConfig !== 'undefined' && this.promoSelectionConfig !== null) {
|
|
2837
|
+
toReturn['promoSelectionConfig'] = 'toApiJson' in this.promoSelectionConfig ? this.promoSelectionConfig.toApiJson() : this.promoSelectionConfig;
|
|
2838
|
+
}
|
|
2833
2839
|
return toReturn;
|
|
2834
2840
|
}
|
|
2835
2841
|
}
|
|
@@ -2960,6 +2966,26 @@ class FormSubmissionProcessResult {
|
|
|
2960
2966
|
return toReturn;
|
|
2961
2967
|
}
|
|
2962
2968
|
}
|
|
2969
|
+
class PromoSelectionFieldConfig {
|
|
2970
|
+
static fromProto(proto) {
|
|
2971
|
+
let m = new PromoSelectionFieldConfig();
|
|
2972
|
+
m = Object.assign(m, proto);
|
|
2973
|
+
return m;
|
|
2974
|
+
}
|
|
2975
|
+
constructor(kwargs) {
|
|
2976
|
+
if (!kwargs) {
|
|
2977
|
+
return;
|
|
2978
|
+
}
|
|
2979
|
+
Object.assign(this, kwargs);
|
|
2980
|
+
}
|
|
2981
|
+
toApiJson() {
|
|
2982
|
+
const toReturn = {};
|
|
2983
|
+
if (typeof this.autoAdvance !== 'undefined') {
|
|
2984
|
+
toReturn['autoAdvance'] = this.autoAdvance;
|
|
2985
|
+
}
|
|
2986
|
+
return toReturn;
|
|
2987
|
+
}
|
|
2988
|
+
}
|
|
2963
2989
|
class RecoverFormRequest {
|
|
2964
2990
|
static fromProto(proto) {
|
|
2965
2991
|
let m = new RecoverFormRequest();
|
|
@@ -3808,5 +3834,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3808
3834
|
* Generated bundle index. Do not edit.
|
|
3809
3835
|
*/
|
|
3810
3836
|
|
|
3811
|
-
export { Access, ActionParameters, ConsentField, ConsentFieldConfig, ConsentType, Contact, CreateFormFromTemplateRequest, CreateFormFromTemplateResponse, CreateFormRequest, CreateFormResponse, CreateFormSubmissionRequest, CreateFormSubmissionResponse, DateDefault, DeleteFormRequest, EnumSchema, EnumSchemaExtensionsEntry, ExternalDocumentation, FieldOption, FieldType, FieldValue, Filter, FilterGroup, FilterGroupOperator, FilterOperator, FilterType, FilterValue, FormConfig, FormConfigField, FormConfigFieldSchema, FormConfigTemplateSetupSettings, FormCreationStatus, FormSubmission, FormSubmissionApiService, FormSubmissionProcessResult, FormSubmissionProcessResultErrorType, FormSubmissionProcessResultStatus, FormSubmissionResultError, FormSubmissionSubmittedValue, FormSubmissionsExportService, FormTemplateApiService, FormsApiService, GenerateCustomCSSRequest, GenerateCustomCSSResponse, GetCreateFormFromTemplateStatusRequest, GetCreateFormFromTemplateStatusResponse, GetEmbedCodeRequest, GetEmbedCodeResponse, GetFormRequest, GetFormResponse, GetMultiFormSubmissionRequest, GetMultiFormSubmissionResponse, GetMultiFormVersionsListRequest, GetMultiFormVersionsListResponse, GetMultiFormVersionsListResponseVersions, GetMultiRequest, GetMultiRequestFormConfigIdentifier, GetMultiResponse, Header, HeaderParameter, HeaderParameterType, HostService, Info, InfoExtensionsEntry, JSONSchema, JSONSchemaExtensionsEntry, JSONSchemaFieldConfiguration, JSONSchemaJSONSchemaSimpleTypes, JsonSchemaLibrary, License, ListFormSubmissionRequest, ListFormSubmissionResponse, ListFormsRequest, ListFormsRequestFilters, ListFormsResponse, ListFormsResponseFormRow, ListFormsResponseProcessResultStatus, ListMappedFieldSchemaRequest, ListMappedFieldSchemaResponse, MCPOptions, MappedField, NextParameters, Operation, OperationExtensionsEntry, OperationResponsesEntry, PagedRequestOptions, PagedResponseMetadata, Parameters, Phone, PreviewFormRequest, PreviewFormResponse, RecoverFormRequest, RecoverFormResponse, RenderFormRequest, RenderFormResponse, RenderFormResponseDefaultValues, RenderFormResponsePreFillByUrlQueryParameter, ReprocessStatus, ReprocessSubmissionRequest, ReprocessSubmissionResponse, Response, ResponseExamplesEntry, ResponseExtensionsEntry, ResponseHeadersEntry, Schema, Scheme, Scopes, ScopesScopeEntry, SectionAction, SectionConfig, SecurityDefinitions, SecurityDefinitionsSecurityEntry, SecurityRequirement, SecurityRequirementSecurityRequirementEntry, SecurityRequirementSecurityRequirementValue, SecurityScheme, SecuritySchemeExtensionsEntry, SecuritySchemeFlow, SecuritySchemeIn, SecuritySchemeType, StringList, Styles, SubmitConditionParameters, Swagger, SwaggerExtensionsEntry, SwaggerResponsesEntry, SystemDefined, Tag, TagExtensionsEntry, UnmappedField, UpdateFormRequest, UpdateFormResponse, UserFormSubmission, ValidationError };
|
|
3837
|
+
export { Access, ActionParameters, ConsentField, ConsentFieldConfig, ConsentType, Contact, CreateFormFromTemplateRequest, CreateFormFromTemplateResponse, CreateFormRequest, CreateFormResponse, CreateFormSubmissionRequest, CreateFormSubmissionResponse, DateDefault, DeleteFormRequest, EnumSchema, EnumSchemaExtensionsEntry, ExternalDocumentation, FieldOption, FieldType, FieldValue, Filter, FilterGroup, FilterGroupOperator, FilterOperator, FilterType, FilterValue, FormConfig, FormConfigField, FormConfigFieldSchema, FormConfigTemplateSetupSettings, FormCreationStatus, FormSubmission, FormSubmissionApiService, FormSubmissionProcessResult, FormSubmissionProcessResultErrorType, FormSubmissionProcessResultStatus, FormSubmissionResultError, FormSubmissionSubmittedValue, FormSubmissionsExportService, FormTemplateApiService, FormsApiService, GenerateCustomCSSRequest, GenerateCustomCSSResponse, GetCreateFormFromTemplateStatusRequest, GetCreateFormFromTemplateStatusResponse, GetEmbedCodeRequest, GetEmbedCodeResponse, GetFormRequest, GetFormResponse, GetMultiFormSubmissionRequest, GetMultiFormSubmissionResponse, GetMultiFormVersionsListRequest, GetMultiFormVersionsListResponse, GetMultiFormVersionsListResponseVersions, GetMultiRequest, GetMultiRequestFormConfigIdentifier, GetMultiResponse, Header, HeaderParameter, HeaderParameterType, HostService, Info, InfoExtensionsEntry, JSONSchema, JSONSchemaExtensionsEntry, JSONSchemaFieldConfiguration, JSONSchemaJSONSchemaSimpleTypes, JsonSchemaLibrary, License, ListFormSubmissionRequest, ListFormSubmissionResponse, ListFormsRequest, ListFormsRequestFilters, ListFormsResponse, ListFormsResponseFormRow, ListFormsResponseProcessResultStatus, ListMappedFieldSchemaRequest, ListMappedFieldSchemaResponse, MCPOptions, MappedField, NextParameters, Operation, OperationExtensionsEntry, OperationResponsesEntry, PagedRequestOptions, PagedResponseMetadata, Parameters, Phone, PreviewFormRequest, PreviewFormResponse, PromoSelectionFieldConfig, RecoverFormRequest, RecoverFormResponse, RenderFormRequest, RenderFormResponse, RenderFormResponseDefaultValues, RenderFormResponsePreFillByUrlQueryParameter, ReprocessStatus, ReprocessSubmissionRequest, ReprocessSubmissionResponse, Response, ResponseExamplesEntry, ResponseExtensionsEntry, ResponseHeadersEntry, Schema, Scheme, Scopes, ScopesScopeEntry, SectionAction, SectionConfig, SecurityDefinitions, SecurityDefinitionsSecurityEntry, SecurityRequirement, SecurityRequirementSecurityRequirementEntry, SecurityRequirementSecurityRequirementValue, SecurityScheme, SecuritySchemeExtensionsEntry, SecuritySchemeFlow, SecuritySchemeIn, SecuritySchemeType, StringList, Styles, SubmitConditionParameters, Swagger, SwaggerExtensionsEntry, SwaggerResponsesEntry, SystemDefined, Tag, TagExtensionsEntry, UnmappedField, UpdateFormRequest, UpdateFormResponse, UserFormSubmission, ValidationError };
|
|
3812
3838
|
//# sourceMappingURL=vendasta-forms_microservice.mjs.map
|