@vendasta/forms_microservice 0.0.19 → 0.0.21

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.
@@ -40,6 +40,7 @@ export declare class FormConfigField implements i.FormConfigFieldInterface {
40
40
  required: boolean;
41
41
  hidden: boolean;
42
42
  defaultValue: FieldValue;
43
+ preFillByUrlQueryParameter: string;
43
44
  static fromProto(proto: any): FormConfigField;
44
45
  constructor(kwargs?: i.FormConfigFieldInterface);
45
46
  toApiJson(): object;
@@ -71,6 +72,8 @@ export declare class FormConfig implements i.FormConfigInterface {
71
72
  updated: Date;
72
73
  mostRecent: boolean;
73
74
  redirectUrl: string;
75
+ recaptchaSiteKey: string;
76
+ recaptchaSecretKey: string;
74
77
  static fromProto(proto: any): FormConfig;
75
78
  constructor(kwargs?: i.FormConfigInterface);
76
79
  toApiJson(): object;
@@ -89,14 +92,6 @@ export declare class ListFormsResponseFormRow implements i.ListFormsResponseForm
89
92
  constructor(kwargs?: i.ListFormsResponseFormRowInterface);
90
93
  toApiJson(): object;
91
94
  }
92
- export declare class FormSubmission implements i.FormSubmissionInterface {
93
- formId: string;
94
- version: string;
95
- values: string;
96
- static fromProto(proto: any): FormSubmission;
97
- constructor(kwargs?: i.FormSubmissionInterface);
98
- toApiJson(): object;
99
- }
100
95
  export declare class ListFormSubmissionResponseFormSubmission implements i.ListFormSubmissionResponseFormSubmissionInterface {
101
96
  formSubmissionId: string;
102
97
  formVersion: string;
@@ -105,6 +100,14 @@ export declare class ListFormSubmissionResponseFormSubmission implements i.ListF
105
100
  constructor(kwargs?: i.ListFormSubmissionResponseFormSubmissionInterface);
106
101
  toApiJson(): object;
107
102
  }
103
+ export declare class FormSubmission implements i.FormSubmissionInterface {
104
+ formId: string;
105
+ version: string;
106
+ values: string;
107
+ static fromProto(proto: any): FormSubmission;
108
+ constructor(kwargs?: i.FormSubmissionInterface);
109
+ toApiJson(): object;
110
+ }
108
111
  export declare class GetEmbedCodeRequest implements i.GetEmbedCodeRequestInterface {
109
112
  formId: string;
110
113
  static fromProto(proto: any): GetEmbedCodeRequest;
@@ -188,6 +191,13 @@ export declare class FormConfigFieldUnmappedFieldOption implements i.FormConfigF
188
191
  constructor(kwargs?: i.FormConfigFieldUnmappedFieldOptionInterface);
189
192
  toApiJson(): object;
190
193
  }
194
+ export declare class RenderFormResponsePreFillByUrlQueryParameter implements i.RenderFormResponsePreFillByUrlQueryParameterInterface {
195
+ fieldId: string;
196
+ queryParam: string;
197
+ static fromProto(proto: any): RenderFormResponsePreFillByUrlQueryParameter;
198
+ constructor(kwargs?: i.RenderFormResponsePreFillByUrlQueryParameterInterface);
199
+ toApiJson(): object;
200
+ }
191
201
  export declare class PreviewFormRequest implements i.PreviewFormRequestInterface {
192
202
  formConfig: FormConfig;
193
203
  library: e.JsonSchemaLibrary;
@@ -213,6 +223,8 @@ export declare class RenderFormResponse implements i.RenderFormResponseInterface
213
223
  jsonSchema: string;
214
224
  jsonUiSchema: string;
215
225
  styles: Styles;
226
+ fieldQueryParams: RenderFormResponsePreFillByUrlQueryParameter[];
227
+ recaptchaSiteKey: string;
216
228
  static fromProto(proto: any): RenderFormResponse;
217
229
  constructor(kwargs?: i.RenderFormResponseInterface);
218
230
  toApiJson(): object;
@@ -1,2 +1,2 @@
1
1
  export { PagedRequestOptions, PagedResponseMetadata, } from './paging';
2
- export { CreateFormRequest, CreateFormResponse, CreateFormSubmissionRequest, CreateFormSubmissionResponse, DeleteFormRequest, FormConfigField, FieldValue, ListFormsRequestFilters, FormConfig, GetMultiRequestFormConfigIdentifier, ListFormsResponseFormRow, FormSubmission, ListFormSubmissionResponseFormSubmission, GetEmbedCodeRequest, GetEmbedCodeResponse, GetFormRequest, GetFormResponse, GetMultiFormVersionsListRequest, GetMultiFormVersionsListResponse, GetMultiRequest, GetMultiResponse, ListFormSubmissionRequest, ListFormSubmissionResponse, ListFormsRequest, ListFormsResponse, FormConfigFieldUnmappedFieldOption, PreviewFormRequest, PreviewFormResponse, RenderFormRequest, RenderFormResponse, FormConfigFieldSchema, Styles, ListFormSubmissionResponseFormSubmissionSubmittedValue, FormConfigFieldUnmappedField, UpdateFormRequest, UpdateFormResponse, GetMultiFormVersionsListResponseVersions, } from './api';
2
+ export { CreateFormRequest, CreateFormResponse, CreateFormSubmissionRequest, CreateFormSubmissionResponse, DeleteFormRequest, FormConfigField, FieldValue, ListFormsRequestFilters, FormConfig, GetMultiRequestFormConfigIdentifier, ListFormsResponseFormRow, ListFormSubmissionResponseFormSubmission, FormSubmission, GetEmbedCodeRequest, GetEmbedCodeResponse, GetFormRequest, GetFormResponse, GetMultiFormVersionsListRequest, GetMultiFormVersionsListResponse, GetMultiRequest, GetMultiResponse, ListFormSubmissionRequest, ListFormSubmissionResponse, ListFormsRequest, ListFormsResponse, FormConfigFieldUnmappedFieldOption, RenderFormResponsePreFillByUrlQueryParameter, PreviewFormRequest, PreviewFormResponse, RenderFormRequest, RenderFormResponse, FormConfigFieldSchema, Styles, ListFormSubmissionResponseFormSubmissionSubmittedValue, FormConfigFieldUnmappedField, UpdateFormRequest, UpdateFormResponse, GetMultiFormVersionsListResponseVersions, } from './api';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/forms_microservice",
3
- "version": "0.0.19",
3
+ "version": "0.0.21",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^14.0.0",
6
6
  "@angular/core": "^14.0.0"