@vendasta/forms_microservice 0.25.0 → 0.26.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.
@@ -32,6 +32,13 @@ export declare enum FormSubmissionProcessResultErrorType {
32
32
  PROCESS_RESULT_ERROR_TYPE_ALREADY_EXISTS = 2,
33
33
  PROCESS_RESULT_ERROR_TYPE_INVALID_ARGUMENT = 3
34
34
  }
35
+ export declare enum ListFormsResponseProcessResultStatus {
36
+ PROCESS_RESULT_STATUS_UNSPECIFIED = 0,
37
+ PROCESS_RESULT_STATUS_IN_PROGRESS = 1,
38
+ PROCESS_RESULT_STATUS_COMPLETED = 2,
39
+ PROCESS_RESULT_STATUS_COMPLETED_WITH_WARNINGS = 3,
40
+ PROCESS_RESULT_STATUS_FAILED = 4
41
+ }
35
42
  export declare enum FormSubmissionProcessResultStatus {
36
43
  PROCESS_RESULT_STATUS_UNSPECIFIED = 0,
37
44
  PROCESS_RESULT_STATUS_IN_PROGRESS = 1,
@@ -1,2 +1,2 @@
1
1
  export { DateDefault, FilterGroupOperator, FilterOperator, FilterType, } from './galaxy-filters.enum';
2
- export { FieldType, FormCreationStatus, JsonSchemaLibrary, FormSubmissionProcessResultErrorType, FormSubmissionProcessResultStatus, ReprocessStatus, SectionAction, } from './api.enum';
2
+ export { FieldType, FormCreationStatus, JsonSchemaLibrary, FormSubmissionProcessResultErrorType, ListFormsResponseProcessResultStatus, FormSubmissionProcessResultStatus, ReprocessStatus, SectionAction, } from './api.enum';
@@ -87,6 +87,7 @@ export interface GetMultiRequestFormConfigIdentifierInterface {
87
87
  export interface ListFormsResponseFormRowInterface {
88
88
  form?: FormConfigInterface;
89
89
  numberOfSubmissions?: number;
90
+ recentProcessingStatus?: e.ListFormsResponseProcessResultStatus;
90
91
  }
91
92
  export interface FormSubmissionInterface {
92
93
  formSubmissionId?: string;
@@ -134,6 +134,7 @@ export declare class GetMultiRequestFormConfigIdentifier implements i.GetMultiRe
134
134
  export declare class ListFormsResponseFormRow implements i.ListFormsResponseFormRowInterface {
135
135
  form: FormConfig;
136
136
  numberOfSubmissions: number;
137
+ recentProcessingStatus: e.ListFormsResponseProcessResultStatus;
137
138
  static fromProto(proto: any): ListFormsResponseFormRow;
138
139
  constructor(kwargs?: i.ListFormsResponseFormRowInterface);
139
140
  toApiJson(): object;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/forms_microservice",
3
- "version": "0.25.0",
3
+ "version": "0.26.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"