@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.
- package/esm2020/lib/_internal/enums/api.enum.mjs +9 -1
- package/esm2020/lib/_internal/enums/index.mjs +2 -2
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/api.mjs +7 -1
- package/fesm2015/vendasta-forms_microservice.mjs +15 -1
- package/fesm2015/vendasta-forms_microservice.mjs.map +1 -1
- package/fesm2020/vendasta-forms_microservice.mjs +15 -1
- package/fesm2020/vendasta-forms_microservice.mjs.map +1 -1
- package/lib/_internal/enums/api.enum.d.ts +7 -0
- package/lib/_internal/enums/index.d.ts +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +1 -0
- package/lib/_internal/objects/api.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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;
|