@fiado/type-kit 2.1.36 → 2.1.38
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/bin/directory/dtos/DirectoryBackofficeResponse.d.ts +1 -0
- package/bin/servicePayment/enums/ServicePaymentStatusEnum.d.ts +11 -0
- package/bin/servicePayment/enums/ServicePaymentStatusEnum.js +15 -0
- package/bin/servicePayment/index.d.ts +1 -0
- package/bin/servicePayment/index.js +3 -0
- package/package.json +1 -1
- package/src/directory/dtos/DirectoryBackofficeResponse.ts +1 -0
- package/src/index.ts +0 -2
- package/src/servicePayment/enums/ServicePaymentStatusEnum.ts +11 -0
- package/src/servicePayment/index.ts +4 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare enum ServicePaymentStatusEnum {
|
|
2
|
+
SUCESSFUL_PAYMENT = "SUCESSFUL_PAYMENT",
|
|
3
|
+
SERVICE_NOT_AVAILABLE = "SERVICE_NOT_AVAILABLE",
|
|
4
|
+
TIME_OUT = "TIME_OUT",
|
|
5
|
+
TRANSACTION_FAILED = "TRANSACTION_FAILED",
|
|
6
|
+
CUSTOMER_WITHOUT_DEBT = "CUSTOMER_WITHOUT_DEBT",
|
|
7
|
+
REFERENCE_WITHOUT_DEBT = "REFERENCE_WITHOUT_DEBT",
|
|
8
|
+
REFERENCE_NOT_FOUND = "REFERENCE_NOT_FOUND",
|
|
9
|
+
INVALID_PAYMENT_REFERENCE = "INVALID_PAYMENT_REFERENCE",
|
|
10
|
+
INVALID_PAYMENT_INFO = "INVALID_PAYMENT_INFO"
|
|
11
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ServicePaymentStatusEnum = void 0;
|
|
4
|
+
var ServicePaymentStatusEnum;
|
|
5
|
+
(function (ServicePaymentStatusEnum) {
|
|
6
|
+
ServicePaymentStatusEnum["SUCESSFUL_PAYMENT"] = "SUCESSFUL_PAYMENT";
|
|
7
|
+
ServicePaymentStatusEnum["SERVICE_NOT_AVAILABLE"] = "SERVICE_NOT_AVAILABLE";
|
|
8
|
+
ServicePaymentStatusEnum["TIME_OUT"] = "TIME_OUT";
|
|
9
|
+
ServicePaymentStatusEnum["TRANSACTION_FAILED"] = "TRANSACTION_FAILED";
|
|
10
|
+
ServicePaymentStatusEnum["CUSTOMER_WITHOUT_DEBT"] = "CUSTOMER_WITHOUT_DEBT";
|
|
11
|
+
ServicePaymentStatusEnum["REFERENCE_WITHOUT_DEBT"] = "REFERENCE_WITHOUT_DEBT";
|
|
12
|
+
ServicePaymentStatusEnum["REFERENCE_NOT_FOUND"] = "REFERENCE_NOT_FOUND";
|
|
13
|
+
ServicePaymentStatusEnum["INVALID_PAYMENT_REFERENCE"] = "INVALID_PAYMENT_REFERENCE";
|
|
14
|
+
ServicePaymentStatusEnum["INVALID_PAYMENT_INFO"] = "INVALID_PAYMENT_INFO";
|
|
15
|
+
})(ServicePaymentStatusEnum || (exports.ServicePaymentStatusEnum = ServicePaymentStatusEnum = {}));
|
|
@@ -14,5 +14,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
//Enums
|
|
18
|
+
__exportStar(require("./enums/ServicePaymentStatusEnum"), exports);
|
|
19
|
+
//DTOs
|
|
17
20
|
__exportStar(require("./dtos/ServicePaymentRequest"), exports);
|
|
18
21
|
__exportStar(require("./dtos/GetCatalogParams"), exports);
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export enum ServicePaymentStatusEnum {
|
|
2
|
+
SUCESSFUL_PAYMENT = "SUCESSFUL_PAYMENT",
|
|
3
|
+
SERVICE_NOT_AVAILABLE = "SERVICE_NOT_AVAILABLE",
|
|
4
|
+
TIME_OUT = "TIME_OUT",
|
|
5
|
+
TRANSACTION_FAILED = "TRANSACTION_FAILED",
|
|
6
|
+
CUSTOMER_WITHOUT_DEBT = "CUSTOMER_WITHOUT_DEBT",
|
|
7
|
+
REFERENCE_WITHOUT_DEBT = "REFERENCE_WITHOUT_DEBT",
|
|
8
|
+
REFERENCE_NOT_FOUND = "REFERENCE_NOT_FOUND",
|
|
9
|
+
INVALID_PAYMENT_REFERENCE = "INVALID_PAYMENT_REFERENCE",
|
|
10
|
+
INVALID_PAYMENT_INFO = "INVALID_PAYMENT_INFO",
|
|
11
|
+
}
|