@fiado/type-kit 1.1.9 → 1.1.11

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.
@@ -11,6 +11,7 @@ export declare class CardResponse {
11
11
  id: string;
12
12
  accountId: string;
13
13
  directoryId: string;
14
+ peopleId: string;
14
15
  provider: string;
15
16
  activationDate: number;
16
17
  countryId: CountryId;
@@ -0,0 +1,14 @@
1
+ import { Status } from "../enums/Status";
2
+ export declare class CardSensitiveInformationResponse {
3
+ id: string;
4
+ pan: string;
5
+ cvc: string | null;
6
+ pin: string | null;
7
+ expirationMonth: string;
8
+ expirationYear: string;
9
+ virtualOrPhysical: string;
10
+ creditOrDebit: string;
11
+ imageUrl: string;
12
+ countryId: string;
13
+ status: Status;
14
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CardSensitiveInformationResponse = void 0;
4
+ class CardSensitiveInformationResponse {
5
+ }
6
+ exports.CardSensitiveInformationResponse = CardSensitiveInformationResponse;
@@ -19,6 +19,7 @@ export * from './dtos/CardResponse';
19
19
  export * from './dtos/CardShipmentQueueMessage';
20
20
  export * from './dtos/CardShipmentUpdateRequest';
21
21
  export * from './dtos/CardAdditionalRequest';
22
+ export * from './dtos/CardSensitiveInformationResponse';
22
23
  export * from './enums/CardType';
23
24
  export * from './enums/CardUpdateKey';
24
25
  export * from './enums/IssuanceType';
package/bin/card/index.js CHANGED
@@ -37,6 +37,7 @@ __exportStar(require("./dtos/CardResponse"), exports);
37
37
  __exportStar(require("./dtos/CardShipmentQueueMessage"), exports);
38
38
  __exportStar(require("./dtos/CardShipmentUpdateRequest"), exports);
39
39
  __exportStar(require("./dtos/CardAdditionalRequest"), exports);
40
+ __exportStar(require("./dtos/CardSensitiveInformationResponse"), exports);
40
41
  //enums
41
42
  __exportStar(require("./enums/CardType"), exports);
42
43
  __exportStar(require("./enums/CardUpdateKey"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.1.9",
3
+ "version": "1.1.11",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -13,6 +13,7 @@ export class CardResponse {
13
13
  id: string;
14
14
  accountId: string;
15
15
  directoryId: string;
16
+ peopleId: string;
16
17
  provider: string;
17
18
  activationDate: number;
18
19
  countryId: CountryId;
@@ -0,0 +1,16 @@
1
+ import { Status } from "../enums/Status";
2
+
3
+ export class CardSensitiveInformationResponse {
4
+
5
+ id: string;
6
+ pan: string;
7
+ cvc: string | null;
8
+ pin: string | null;
9
+ expirationMonth: string;
10
+ expirationYear: string;
11
+ virtualOrPhysical: string;
12
+ creditOrDebit: string;
13
+ imageUrl: string;
14
+ countryId: string;
15
+ status: Status;
16
+ }
package/src/card/index.ts CHANGED
@@ -23,6 +23,7 @@ export * from './dtos/CardResponse';
23
23
  export * from './dtos/CardShipmentQueueMessage'
24
24
  export * from './dtos/CardShipmentUpdateRequest'
25
25
  export * from './dtos/CardAdditionalRequest'
26
+ export * from './dtos/CardSensitiveInformationResponse'
26
27
 
27
28
  //enums
28
29
  export * from './enums/CardType';