@fiado/type-kit 1.4.76 → 1.4.78
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/account/dtos/SPEITransferResponse.d.ts +1 -1
- package/bin/card/dtos/AccountCancelGetResponse.d.ts +18 -0
- package/bin/card/dtos/AccountCancelGetResponse.js +6 -0
- package/bin/card/enums/AccountCancellationStatus.d.ts +5 -0
- package/bin/card/enums/AccountCancellationStatus.js +9 -0
- package/bin/card/index.d.ts +2 -0
- package/bin/card/index.js +2 -0
- package/package.json +1 -1
- package/src/account/dtos/SPEITransferResponse.ts +1 -1
- package/src/card/dtos/AccountCancelGetResponse.ts +25 -0
- package/src/card/enums/AccountCancellationStatus.ts +8 -0
- package/src/card/index.ts +2 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { AccountCancellationStatus } from "../enums/AccountCancellationStatus";
|
|
2
|
+
export declare class AccountCancelGetResponse {
|
|
3
|
+
id: string;
|
|
4
|
+
cancellationNumber: string;
|
|
5
|
+
closeDate: string;
|
|
6
|
+
directoryId: string;
|
|
7
|
+
status: AccountCancellationStatus;
|
|
8
|
+
companyName: string;
|
|
9
|
+
cancellationReason: string;
|
|
10
|
+
createdBy: string;
|
|
11
|
+
executedBy: string;
|
|
12
|
+
observations: string;
|
|
13
|
+
tenantId: string;
|
|
14
|
+
createdAt: string;
|
|
15
|
+
updatedAt: string;
|
|
16
|
+
indexName: string;
|
|
17
|
+
phoneNumber: string;
|
|
18
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AccountCancellationStatus = void 0;
|
|
4
|
+
var AccountCancellationStatus;
|
|
5
|
+
(function (AccountCancellationStatus) {
|
|
6
|
+
AccountCancellationStatus["EXECUTED"] = "EXECUTED";
|
|
7
|
+
AccountCancellationStatus["PENDING"] = "PENDING";
|
|
8
|
+
AccountCancellationStatus["REJECTED"] = "REJECTED";
|
|
9
|
+
})(AccountCancellationStatus || (exports.AccountCancellationStatus = AccountCancellationStatus = {}));
|
package/bin/card/index.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ export * from './dtos/CardAdditionalRequest';
|
|
|
22
22
|
export * from './dtos/CardSensitiveInformationResponse';
|
|
23
23
|
export * from './dtos/CardSummaryResponse';
|
|
24
24
|
export * from './dtos/CardAdditionalResponse';
|
|
25
|
+
export * from './dtos/AccountCancelGetResponse';
|
|
25
26
|
export * from './enums/CardType';
|
|
26
27
|
export * from './enums/CardUpdateKey';
|
|
27
28
|
export * from './enums/IssuanceType';
|
|
@@ -38,3 +39,4 @@ export * from './enums/VirtualOrPhysical';
|
|
|
38
39
|
export * from './enums/DeliveryChannel';
|
|
39
40
|
export * from './enums/ExternalShippingStatus';
|
|
40
41
|
export * from './enums/ExternalShippingStatusDetails';
|
|
42
|
+
export * from './enums/AccountCancellationStatus';
|
package/bin/card/index.js
CHANGED
|
@@ -40,6 +40,7 @@ __exportStar(require("./dtos/CardAdditionalRequest"), exports);
|
|
|
40
40
|
__exportStar(require("./dtos/CardSensitiveInformationResponse"), exports);
|
|
41
41
|
__exportStar(require("./dtos/CardSummaryResponse"), exports);
|
|
42
42
|
__exportStar(require("./dtos/CardAdditionalResponse"), exports);
|
|
43
|
+
__exportStar(require("./dtos/AccountCancelGetResponse"), exports);
|
|
43
44
|
//enums
|
|
44
45
|
__exportStar(require("./enums/CardType"), exports);
|
|
45
46
|
__exportStar(require("./enums/CardUpdateKey"), exports);
|
|
@@ -57,3 +58,4 @@ __exportStar(require("./enums/VirtualOrPhysical"), exports);
|
|
|
57
58
|
__exportStar(require("./enums/DeliveryChannel"), exports);
|
|
58
59
|
__exportStar(require("./enums/ExternalShippingStatus"), exports);
|
|
59
60
|
__exportStar(require("./enums/ExternalShippingStatusDetails"), exports);
|
|
61
|
+
__exportStar(require("./enums/AccountCancellationStatus"), exports);
|
package/package.json
CHANGED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { AccountCancellationStatus } from "../enums/AccountCancellationStatus";
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
export class AccountCancelGetResponse {
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
id: string;
|
|
8
|
+
cancellationNumber: string;
|
|
9
|
+
closeDate: string;
|
|
10
|
+
directoryId: string;
|
|
11
|
+
status: AccountCancellationStatus;
|
|
12
|
+
companyName: string;
|
|
13
|
+
cancellationReason: string;
|
|
14
|
+
createdBy: string;
|
|
15
|
+
executedBy: string;
|
|
16
|
+
observations: string;
|
|
17
|
+
tenantId: string;
|
|
18
|
+
createdAt: string;
|
|
19
|
+
updatedAt: string;
|
|
20
|
+
indexName: string;
|
|
21
|
+
phoneNumber: string;
|
|
22
|
+
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
|
package/src/card/index.ts
CHANGED
|
@@ -26,6 +26,7 @@ export * from './dtos/CardAdditionalRequest'
|
|
|
26
26
|
export * from './dtos/CardSensitiveInformationResponse'
|
|
27
27
|
export * from './dtos/CardSummaryResponse'
|
|
28
28
|
export * from './dtos/CardAdditionalResponse'
|
|
29
|
+
export * from './dtos/AccountCancelGetResponse'
|
|
29
30
|
|
|
30
31
|
//enums
|
|
31
32
|
export * from './enums/CardType';
|
|
@@ -44,6 +45,7 @@ export * from './enums/VirtualOrPhysical'
|
|
|
44
45
|
export * from './enums/DeliveryChannel'
|
|
45
46
|
export * from './enums/ExternalShippingStatus'
|
|
46
47
|
export * from './enums/ExternalShippingStatusDetails'
|
|
48
|
+
export * from './enums/AccountCancellationStatus'
|
|
47
49
|
|
|
48
50
|
|
|
49
51
|
|