@fiado/type-kit 2.0.52 → 2.0.53

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.
@@ -95,6 +95,7 @@ export declare class PeopleResponse {
95
95
  observations: string;
96
96
  selfieResult: string | null;
97
97
  externalReferenceId: string | null;
98
+ SSN_ITINRequired: boolean | null;
98
99
  };
99
100
  SIN: string | null;
100
101
  documentNumber: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "2.0.52",
3
+ "version": "2.0.53",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -98,6 +98,7 @@ export class PeopleResponse {
98
98
  observations:string,
99
99
  selfieResult:string | null;
100
100
  externalReferenceId:string | null;
101
+ SSN_ITINRequired:boolean | null;
101
102
 
102
103
  }
103
104
  SIN: string | null;
@@ -1,11 +0,0 @@
1
- /**
2
- * Enum representing the type of metadata for a collection order.
3
- * @enum {string}
4
- *
5
- * @property {string} COLLECTION_ORDER_RESPONSE - The response of a collection order.
6
- * @property {string} COLLECTION_ORDER_REQUEST - The request of a collection order.
7
- */
8
- export declare enum CollectionMetadataTypeEnum {
9
- COLLECTION_ORDER_RESPONSE = "COLLECTION_ORDER_RESPONSE",
10
- COLLECTION_ORDER_REQUEST = "COLLECTION_ORDER_REQUEST"
11
- }
@@ -1,15 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CollectionMetadataTypeEnum = void 0;
4
- /**
5
- * Enum representing the type of metadata for a collection order.
6
- * @enum {string}
7
- *
8
- * @property {string} COLLECTION_ORDER_RESPONSE - The response of a collection order.
9
- * @property {string} COLLECTION_ORDER_REQUEST - The request of a collection order.
10
- */
11
- var CollectionMetadataTypeEnum;
12
- (function (CollectionMetadataTypeEnum) {
13
- CollectionMetadataTypeEnum["COLLECTION_ORDER_RESPONSE"] = "COLLECTION_ORDER_RESPONSE";
14
- CollectionMetadataTypeEnum["COLLECTION_ORDER_REQUEST"] = "COLLECTION_ORDER_REQUEST";
15
- })(CollectionMetadataTypeEnum || (exports.CollectionMetadataTypeEnum = CollectionMetadataTypeEnum = {}));