@movalib/movalib-commons 1.14.0 → 1.15.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.
|
@@ -174,9 +174,11 @@ export declare enum DocumentState {
|
|
|
174
174
|
REJECTED = "REJECTED"
|
|
175
175
|
}
|
|
176
176
|
export declare enum DocumentType {
|
|
177
|
+
USER_BANK_DETAILS = "USER_BANK_DETAILS",
|
|
177
178
|
USER_APPOINTMENT_QUOTE = "USER_APPOINTMENT_QUOTE",
|
|
178
179
|
VEHICLE_MAINTENANCE_INVOICE = "VEHICLE_MAINTENANCE_INVOICE",
|
|
179
|
-
VEHICLE_TIRE_PHOTO = "VEHICLE_TIRE_PHOTO"
|
|
180
|
+
VEHICLE_TIRE_PHOTO = "VEHICLE_TIRE_PHOTO",
|
|
181
|
+
GARAGE_LOGO = "GARAGE_LOGO"
|
|
180
182
|
}
|
|
181
183
|
export declare enum MovaAppType {
|
|
182
184
|
/**
|
|
@@ -195,9 +195,11 @@ var DocumentState;
|
|
|
195
195
|
})(DocumentState = exports.DocumentState || (exports.DocumentState = {}));
|
|
196
196
|
var DocumentType;
|
|
197
197
|
(function (DocumentType) {
|
|
198
|
+
DocumentType["USER_BANK_DETAILS"] = "USER_BANK_DETAILS";
|
|
198
199
|
DocumentType["USER_APPOINTMENT_QUOTE"] = "USER_APPOINTMENT_QUOTE";
|
|
199
200
|
DocumentType["VEHICLE_MAINTENANCE_INVOICE"] = "VEHICLE_MAINTENANCE_INVOICE";
|
|
200
201
|
DocumentType["VEHICLE_TIRE_PHOTO"] = "VEHICLE_TIRE_PHOTO";
|
|
202
|
+
DocumentType["GARAGE_LOGO"] = "GARAGE_LOGO";
|
|
201
203
|
})(DocumentType = exports.DocumentType || (exports.DocumentType = {}));
|
|
202
204
|
var MovaAppType;
|
|
203
205
|
(function (MovaAppType) {
|
package/package.json
CHANGED
package/src/helpers/Enums.ts
CHANGED
|
@@ -193,9 +193,11 @@ export enum DocumentState {
|
|
|
193
193
|
}
|
|
194
194
|
|
|
195
195
|
export enum DocumentType {
|
|
196
|
+
USER_BANK_DETAILS = "USER_BANK_DETAILS",
|
|
196
197
|
USER_APPOINTMENT_QUOTE = "USER_APPOINTMENT_QUOTE",
|
|
197
198
|
VEHICLE_MAINTENANCE_INVOICE = 'VEHICLE_MAINTENANCE_INVOICE',
|
|
198
|
-
VEHICLE_TIRE_PHOTO = 'VEHICLE_TIRE_PHOTO'
|
|
199
|
+
VEHICLE_TIRE_PHOTO = 'VEHICLE_TIRE_PHOTO',
|
|
200
|
+
GARAGE_LOGO = "GARAGE_LOGO"
|
|
199
201
|
}
|
|
200
202
|
|
|
201
203
|
export enum MovaAppType {
|