@collctiv/l2s-models 1.0.66 → 1.0.68

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.
@@ -1,2 +1,22 @@
1
- export {};
1
+ import { KycProviderType } from "../global/enums.js";
2
+ import { KycEvent } from "./kycEvent.js";
3
+ export declare class Kyc {
4
+ status: KycStatus;
5
+ session: KycSession;
6
+ current: KycEvent;
7
+ date: Date;
8
+ constructor(args?: Partial<Kyc>);
9
+ }
10
+ export declare enum KycStatus {
11
+ Approved = "approved",
12
+ AwaitingReview = "awaiting_review",
13
+ NotCompleted = "not_completed",
14
+ Rejected = "rejected",
15
+ Retry = "retry"
16
+ }
17
+ export type KycSession = {
18
+ id: string;
19
+ provider: KycProviderType;
20
+ journey: string;
21
+ };
2
22
  //# sourceMappingURL=kyc.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"kyc.d.ts","sourceRoot":"","sources":["../../entities/kyc.ts"],"names":[],"mappings":""}
1
+ {"version":3,"file":"kyc.d.ts","sourceRoot":"","sources":["../../entities/kyc.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAEzC,qBAAa,GAAG;IAEL,MAAM,EAAE,SAAS,CAAC;IAClB,OAAO,EAAE,UAAU,CAAC;IACpB,OAAO,EAAE,QAAQ,CAAC;IAClB,IAAI,EAAE,IAAI,CAAC;gBAEC,IAAI,GAAE,OAAO,CAAC,GAAG,CAAM;CAG7C;AAED,oBAAY,SAAS;IACjB,QAAQ,aAAa;IACrB,cAAc,oBAAoB;IAClC,YAAY,kBAAkB;IAC9B,QAAQ,aAAa;IACrB,KAAK,UAAU;CAClB;AAED,MAAM,MAAM,UAAU,GAAG;IACrB,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,EAAE,eAAe,CAAC;IAC1B,OAAO,EAAE,MAAM,CAAC;CACnB,CAAA"}
@@ -1,30 +1,19 @@
1
- // TODO:
2
- export {};
3
- /*import { KycProviderType } from "../global/enums.js";
1
+ import { KycProviderType } from "../global/enums.js";
4
2
  import { KycEvent } from "./kycEvent.js";
5
-
6
3
  export class Kyc {
7
-
8
- public status: KycStatus;
9
- public session: KycSession;
10
- public current: KycEvent;
11
- public date: Date;
12
-
13
- public constructor(args: Partial<Kyc> = {}) {
4
+ status;
5
+ session;
6
+ current;
7
+ date;
8
+ constructor(args = {}) {
14
9
  Object.assign(this, args);
15
10
  }
16
11
  }
17
-
18
- export enum KycStatus {
19
- Approved = "approved",
20
- AwaitingReview = "awaiting_review",
21
- NotCompleted = "not_completed",
22
- Rejected = "rejected",
23
- Retry = "retry"
24
- }
25
-
26
- export type KycSession = {
27
- id: string;
28
- provider: KycProviderType;
29
- }
30
- */
12
+ export var KycStatus;
13
+ (function (KycStatus) {
14
+ KycStatus["Approved"] = "approved";
15
+ KycStatus["AwaitingReview"] = "awaiting_review";
16
+ KycStatus["NotCompleted"] = "not_completed";
17
+ KycStatus["Rejected"] = "rejected";
18
+ KycStatus["Retry"] = "retry";
19
+ })(KycStatus || (KycStatus = {}));
@@ -1,2 +1,37 @@
1
- export {};
1
+ import { type ICreatable } from "../global/interfaces.js";
2
+ import { KycDeclineSelfieCode, KycDeclineGovIdCode, KycDeclineSupDocCode, type KycDeclineType } from "../global/kyc.js";
3
+ export declare class KycEvent implements ICreatable {
4
+ id: string;
5
+ create_date: Date;
6
+ event: KycEventType;
7
+ message: string;
8
+ data: KycEventDataPersona;
9
+ constructor(args?: Partial<KycEvent>);
10
+ }
11
+ export declare enum KycEventType {
12
+ Created = "created",
13
+ Started = "started",
14
+ Completed = "completed",
15
+ Expired = "expired",
16
+ Declined = "declined",
17
+ Approved = "approved",
18
+ Failed = "failed",
19
+ ReviewRejected = "review_rejected",
20
+ ReviewApproved = "review_approved",
21
+ InReview = "in_review",
22
+ Retry = "retry"
23
+ }
24
+ export type KycEventDataPersona = {
25
+ tags: string[];
26
+ known: {
27
+ declines: KycKnownDecline[];
28
+ };
29
+ unknown?: {
30
+ declines?: string[];
31
+ };
32
+ };
33
+ export type KycKnownDecline = {
34
+ type: KycDeclineType;
35
+ codes: (KycDeclineSelfieCode | KycDeclineGovIdCode | KycDeclineSupDocCode)[];
36
+ };
2
37
  //# sourceMappingURL=kycEvent.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"kycEvent.d.ts","sourceRoot":"","sources":["../../entities/kycEvent.ts"],"names":[],"mappings":""}
1
+ {"version":3,"file":"kycEvent.d.ts","sourceRoot":"","sources":["../../entities/kycEvent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,oBAAoB,EAAE,mBAAmB,EAAE,oBAAoB,EAAE,KAAK,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAExH,qBAAa,QAAS,YAAW,UAAU;IAEhC,EAAE,EAAE,MAAM,CAAC;IACX,WAAW,EAAE,IAAI,CAAC;IAClB,KAAK,EAAE,YAAY,CAAC;IACpB,OAAO,EAAE,MAAM,CAAM;IACrB,IAAI,EAAE,mBAAmB,CAAQ;gBAErB,IAAI,GAAE,OAAO,CAAC,QAAQ,CAAM;CAGlD;AAED,oBAAY,YAAY;IACpB,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,MAAM,WAAW;IACjB,cAAc,oBAAoB;IAClC,cAAc,oBAAoB;IAClC,QAAQ,cAAc;IACtB,KAAK,UAAU;CAClB;AAED,MAAM,MAAM,mBAAmB,GAAG;IAC9B,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,KAAK,EAAE;QACH,QAAQ,EAAE,eAAe,EAAE,CAAC;KAC/B,CAAC;IACF,OAAO,CAAC,EAAE;QACN,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;KACvB,CAAC;CACL,CAAA;AAED,MAAM,MAAM,eAAe,GAAG;IAC1B,IAAI,EAAE,cAAc,CAAC;IACrB,KAAK,EAAE,CAAC,oBAAoB,GAAG,mBAAmB,GAAG,oBAAoB,CAAC,EAAE,CAAC;CAChF,CAAA"}
@@ -1,46 +1,26 @@
1
- export {};
2
- /*import { type ICreatable } from "../global/interfaces.js";
3
- import { KycDeclineSelfieCode, KycDeclineGovIdCode, KycDeclineSupDocCode, type KycDeclineType } from "../global/kyc.js";
4
-
5
- export class KycEvent implements ICreatable {
6
-
7
- public id: string;
8
- public create_date: Date;
9
- public event: KycEventType;
10
- public message: string = "";
11
- public data: KycEventDataPersona = null;
12
-
13
- public constructor(args: Partial<KycEvent> = {}) {
1
+ import {} from "../global/interfaces.js";
2
+ import { KycDeclineSelfieCode, KycDeclineGovIdCode, KycDeclineSupDocCode } from "../global/kyc.js";
3
+ export class KycEvent {
4
+ id;
5
+ create_date;
6
+ event;
7
+ message = "";
8
+ data = null;
9
+ constructor(args = {}) {
14
10
  Object.assign(this, args);
15
11
  }
16
12
  }
17
-
18
- export enum KycEventType {
19
- Created = "created",
20
- Started = "started",
21
- Completed = "completed",
22
- Expired = "expired",
23
- Declined = "declined",
24
- Approved = "approved",
25
- Failed = "failed",
26
- ReviewRejected = "review_rejected",
27
- ReviewApproved = "review_approved",
28
- InReview = "in_review",
29
- Retry = "retry"
30
- }
31
-
32
- export type KycEventDataPersona = {
33
- tags: string[];
34
- known: {
35
- declines: KycKnownDecline[];
36
- };
37
- unknown?: {
38
- declines?: string[];
39
- };
40
- }
41
-
42
- export type KycKnownDecline = {
43
- type: KycDeclineType;
44
- codes: (KycDeclineSelfieCode | KycDeclineGovIdCode | KycDeclineSupDocCode)[];
45
- }
46
- */
13
+ export var KycEventType;
14
+ (function (KycEventType) {
15
+ KycEventType["Created"] = "created";
16
+ KycEventType["Started"] = "started";
17
+ KycEventType["Completed"] = "completed";
18
+ KycEventType["Expired"] = "expired";
19
+ KycEventType["Declined"] = "declined";
20
+ KycEventType["Approved"] = "approved";
21
+ KycEventType["Failed"] = "failed";
22
+ KycEventType["ReviewRejected"] = "review_rejected";
23
+ KycEventType["ReviewApproved"] = "review_approved";
24
+ KycEventType["InReview"] = "in_review";
25
+ KycEventType["Retry"] = "retry";
26
+ })(KycEventType || (KycEventType = {}));
@@ -1,2 +1,36 @@
1
- export {};
1
+ import { type IDataEntity, type ICreatable, type IModifiable } from "../global/interfaces.js";
2
+ import { KycProviderType } from "../global/enums.js";
3
+ import { KycEvent } from "./kycEvent.js";
4
+ import { User } from "./user.js";
5
+ export declare class KycRequest implements IDataEntity, ICreatable, IModifiable {
6
+ id: string;
7
+ create_date: Date;
8
+ modified_date: Date | null;
9
+ session: KycRequestSession;
10
+ user_id: string;
11
+ status: KycRequestStatus;
12
+ events: KycEvent[];
13
+ kyc_name?: string;
14
+ constructor(args?: Partial<KycRequest>);
15
+ }
16
+ export declare enum KycRequestStatus {
17
+ Created = "created",
18
+ Started = "started",
19
+ Completed = "completed",
20
+ Expired = "expired",
21
+ Rejected = "rejected",
22
+ Approved = "approved",
23
+ Failed = "failed",
24
+ AwaitingReview = "awaiting_review",
25
+ InReview = "in_review",
26
+ Retry = "retry"
27
+ }
28
+ export type KycRequestSession = {
29
+ id: string;
30
+ provider: KycProviderType;
31
+ journey: string;
32
+ };
33
+ export declare class UserKycRequest extends KycRequest {
34
+ user: User;
35
+ }
2
36
  //# sourceMappingURL=kycRequest.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"kycRequest.d.ts","sourceRoot":"","sources":["../../entities/kycRequest.ts"],"names":[],"mappings":""}
1
+ {"version":3,"file":"kycRequest.d.ts","sourceRoot":"","sources":["../../entities/kycRequest.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,WAAW,EAAE,KAAK,UAAU,EAAE,KAAK,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC9F,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AAEjC,qBACa,UAAW,YAAW,WAAW,EAAE,UAAU,EAAE,WAAW;IAE5D,EAAE,EAAE,MAAM,CAAQ;IAClB,WAAW,EAAE,IAAI,CAAc;IAC/B,aAAa,EAAE,IAAI,GAAG,IAAI,CAAC;IAE3B,OAAO,EAAE,iBAAiB,CAAQ;IAClC,OAAO,EAAE,MAAM,CAAC;IAGhB,MAAM,EAAE,gBAAgB,CAA4B;IAGpD,MAAM,EAAE,QAAQ,EAAE,CAAM;IAGxB,QAAQ,CAAC,EAAE,MAAM,CAAC;gBAEN,IAAI,GAAE,OAAO,CAAC,UAAU,CAAM;CAGpD;AAED,oBAAY,gBAAgB;IACxB,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,MAAM,WAAW;IACjB,cAAc,oBAAoB;IAClC,QAAQ,cAAc;IACtB,KAAK,UAAU;CAClB;AAED,MAAM,MAAM,iBAAiB,GAAG;IAC5B,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,EAAE,eAAe,CAAC;IAC1B,OAAO,EAAE,MAAM,CAAC;CACnB,CAAA;AAED,qBAAa,cAAe,SAAQ,UAAU;IACnC,IAAI,EAAE,IAAI,CAAC;CACrB"}
@@ -1,54 +1,60 @@
1
- export {};
2
- /*import { Collection, Updatable, Topic } from "../global/decorators.js";
3
- import { type IDataEntity, type ICreatable, type IModifiable } from "../global/interfaces.js";
1
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
6
+ };
7
+ var __metadata = (this && this.__metadata) || function (k, v) {
8
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
9
+ };
10
+ import { Collection, Updatable } from "../global/decorators.js";
11
+ import {} from "../global/interfaces.js";
4
12
  import { KycProviderType } from "../global/enums.js";
5
13
  import { KycEvent } from "./kycEvent.js";
6
14
  import { User } from "./user.js";
7
-
8
- @Collection("kyc_requests")
9
- @Topic("kyc")
10
- export class KycRequest implements IDataEntity, ICreatable, IModifiable {
11
-
12
- public id: string = null;
13
- public create_date: Date = new Date();
14
- public modified_date: Date | null;
15
-
16
- public session: KycRequestSession = null;
17
- public user_id: string;
18
-
19
- @Updatable()
20
- public status: KycRequestStatus = KycRequestStatus.Created;
21
-
22
- @Updatable()
23
- public events: KycEvent[] = [];
24
-
25
- @Updatable()
26
- public kyc_name?: string;
27
-
28
- public constructor(args: Partial<KycRequest> = {}) {
15
+ let KycRequest = class KycRequest {
16
+ id = null;
17
+ create_date = new Date();
18
+ modified_date;
19
+ session = null;
20
+ user_id;
21
+ status = KycRequestStatus.Created;
22
+ events = [];
23
+ kyc_name;
24
+ constructor(args = {}) {
29
25
  Object.assign(this, args);
30
26
  }
31
- }
32
-
33
- export enum KycRequestStatus {
34
- Created = "created",
35
- Started = "started",
36
- Completed = "completed",
37
- Expired = "expired",
38
- Rejected = "rejected",
39
- Approved = "approved",
40
- Failed = "failed",
41
- AwaitingReview = "awaiting_review",
42
- InReview = "in_review",
43
- Retry = "retry"
44
- }
45
-
46
- export type KycRequestSession = {
47
- id: string;
48
- provider: KycProviderType;
49
- }
50
-
27
+ };
28
+ __decorate([
29
+ Updatable(),
30
+ __metadata("design:type", String)
31
+ ], KycRequest.prototype, "status", void 0);
32
+ __decorate([
33
+ Updatable(),
34
+ __metadata("design:type", Array)
35
+ ], KycRequest.prototype, "events", void 0);
36
+ __decorate([
37
+ Updatable(),
38
+ __metadata("design:type", String)
39
+ ], KycRequest.prototype, "kyc_name", void 0);
40
+ KycRequest = __decorate([
41
+ Collection("kyc_requests"),
42
+ __metadata("design:paramtypes", [Object])
43
+ ], KycRequest);
44
+ export { KycRequest };
45
+ export var KycRequestStatus;
46
+ (function (KycRequestStatus) {
47
+ KycRequestStatus["Created"] = "created";
48
+ KycRequestStatus["Started"] = "started";
49
+ KycRequestStatus["Completed"] = "completed";
50
+ KycRequestStatus["Expired"] = "expired";
51
+ KycRequestStatus["Rejected"] = "rejected";
52
+ KycRequestStatus["Approved"] = "approved";
53
+ KycRequestStatus["Failed"] = "failed";
54
+ KycRequestStatus["AwaitingReview"] = "awaiting_review";
55
+ KycRequestStatus["InReview"] = "in_review";
56
+ KycRequestStatus["Retry"] = "retry";
57
+ })(KycRequestStatus || (KycRequestStatus = {}));
51
58
  export class UserKycRequest extends KycRequest {
52
- public user: User;
59
+ user;
53
60
  }
54
- */
@@ -8,7 +8,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
8
8
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
9
9
  };
10
10
  import {} from "../global/interfaces.js";
11
- import { Collection, Updatable, Topic, ObjectId } from "../global/decorators.js";
11
+ import { Collection, Updatable, Topic } from "../global/decorators.js";
12
12
  let User = class User {
13
13
  id;
14
14
  create_date = new Date();
@@ -1,2 +1,23 @@
1
- export {};
1
+ export type KycDeclineType = "selfie" | "gov_id" | "sup_doc";
2
+ export declare enum KycDeclineSelfieCode {
3
+ PosePosition = "pose_position",
4
+ PoseRepeat = "pose_repeat",
5
+ Glasses = "glasses",
6
+ PortraitQuality = "portrait_quality",
7
+ FaceCovering = "face_covering",
8
+ Glare = "glare",
9
+ ImageQuality = "image_quality"
10
+ }
11
+ export declare enum KycDeclineGovIdCode {
12
+ AllowedCountry = "allowed_country",
13
+ AllowedIdType = "allowed_type",
14
+ Expiration = "expiration"
15
+ }
16
+ export declare enum KycDeclineSupDocCode {
17
+ TypeDetection = "type_detection",
18
+ ProcessableSubmission = "processable_submission",
19
+ RecencyEffectiveDetection = "recency_effective_detection"
20
+ }
21
+ export type KycDeclineCode = KycDeclineGovIdCode | KycDeclineSelfieCode | KycDeclineSupDocCode;
22
+ export type KycJourney = "none" | "standard" | "enhanced";
2
23
  //# sourceMappingURL=kyc.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"kyc.d.ts","sourceRoot":"","sources":["../../global/kyc.ts"],"names":[],"mappings":""}
1
+ {"version":3,"file":"kyc.d.ts","sourceRoot":"","sources":["../../global/kyc.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,cAAc,GAAG,QAAQ,GAAG,QAAQ,GAAG,SAAS,CAAC;AAE7D,oBAAY,oBAAoB;IAC5B,YAAY,kBAAkB;IAC9B,UAAU,gBAAgB;IAC1B,OAAO,YAAY;IACnB,eAAe,qBAAqB;IACpC,YAAY,kBAAkB;IAC9B,KAAK,UAAU;IACf,YAAY,kBAAkB;CACjC;AAED,oBAAY,mBAAmB;IAC3B,cAAc,oBAAoB;IAClC,aAAa,iBAAiB;IAC9B,UAAU,eAAe;CAC5B;AAED,oBAAY,oBAAoB;IAC5B,aAAa,mBAAmB;IAChC,qBAAqB,2BAA2B;IAChD,yBAAyB,gCAAgC;CAC5D;AAED,MAAM,MAAM,cAAc,GAAG,mBAAmB,GAAG,oBAAoB,GAAG,oBAAoB,CAAC;AAE/F,MAAM,MAAM,UAAU,GAAG,MAAM,GAAG,UAAU,GAAG,UAAU,CAAC"}
@@ -1,27 +1,22 @@
1
- export {};
2
- /*
3
- export type KycDeclineType = "selfie" | "gov_id" | "sup_doc";
4
-
5
- export enum KycDeclineSelfieCode {
6
- PosePosition = "pose_position",
7
- PoseRepeat = "pose_repeat",
8
- Glasses = "glasses",
9
- PortraitQuality = "portrait_quality",
10
- FaceCovering = "face_covering",
11
- Glare = "glare",
12
- ImageQuality = "image_quality"
13
- }
14
-
15
- export enum KycDeclineGovIdCode {
16
- AllowedCountry = "allowed_country",
17
- AllowedIdType = "allowed_type",
18
- Expiration = "expiration"
19
- }
20
-
21
- export enum KycDeclineSupDocCode {
22
- TypeDetection = "type_detection",
23
- ProcessableSubmission = "processable_submission",
24
- RecencyEffectiveDetection = "recency_effective_detection"
25
- }
26
-
27
- export type KycDeclineCode = KycDeclineGovIdCode | KycDeclineSelfieCode | KycDeclineSupDocCode;*/
1
+ export var KycDeclineSelfieCode;
2
+ (function (KycDeclineSelfieCode) {
3
+ KycDeclineSelfieCode["PosePosition"] = "pose_position";
4
+ KycDeclineSelfieCode["PoseRepeat"] = "pose_repeat";
5
+ KycDeclineSelfieCode["Glasses"] = "glasses";
6
+ KycDeclineSelfieCode["PortraitQuality"] = "portrait_quality";
7
+ KycDeclineSelfieCode["FaceCovering"] = "face_covering";
8
+ KycDeclineSelfieCode["Glare"] = "glare";
9
+ KycDeclineSelfieCode["ImageQuality"] = "image_quality";
10
+ })(KycDeclineSelfieCode || (KycDeclineSelfieCode = {}));
11
+ export var KycDeclineGovIdCode;
12
+ (function (KycDeclineGovIdCode) {
13
+ KycDeclineGovIdCode["AllowedCountry"] = "allowed_country";
14
+ KycDeclineGovIdCode["AllowedIdType"] = "allowed_type";
15
+ KycDeclineGovIdCode["Expiration"] = "expiration";
16
+ })(KycDeclineGovIdCode || (KycDeclineGovIdCode = {}));
17
+ export var KycDeclineSupDocCode;
18
+ (function (KycDeclineSupDocCode) {
19
+ KycDeclineSupDocCode["TypeDetection"] = "type_detection";
20
+ KycDeclineSupDocCode["ProcessableSubmission"] = "processable_submission";
21
+ KycDeclineSupDocCode["RecencyEffectiveDetection"] = "recency_effective_detection";
22
+ })(KycDeclineSupDocCode || (KycDeclineSupDocCode = {}));
package/dist/index.d.ts CHANGED
@@ -1,6 +1,9 @@
1
1
  export * from "./entities/activity.js";
2
2
  export * from "./entities/balance.js";
3
3
  export * from "./entities/giftCard.js";
4
+ export * from "./entities/kyc.js";
5
+ export * from "./entities/kycEvent.js";
6
+ export * from "./entities/kycRequest.js";
4
7
  export * from "./entities/ledgerItem.js";
5
8
  export * from "./entities/order.js";
6
9
  export * from "./entities/payment.js";
@@ -13,5 +16,6 @@ export * from "./global/decorators.js";
13
16
  export * from "./global/enums.js";
14
17
  export * from "./global/errors.js";
15
18
  export * from "./global/interfaces.js";
19
+ export * from "./global/kyc.js";
16
20
  export * from "./global/types.js";
17
21
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AACA,cAAc,wBAAwB,CAAC;AACvC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AAIvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,mBAAmB,CAAC;AAClC,cAAc,uBAAuB,CAAC;AACtC,cAAc,oBAAoB,CAAC;AAEnC,cAAc,qBAAqB,CAAC;AACpC,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,wBAAwB,CAAC;AAEvC,cAAc,mBAAmB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AACA,cAAc,wBAAwB,CAAC;AACvC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,mBAAmB,CAAC;AAClC,cAAc,uBAAuB,CAAC;AACtC,cAAc,oBAAoB,CAAC;AAEnC,cAAc,qBAAqB,CAAC;AACpC,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,wBAAwB,CAAC;AACvC,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC"}
package/dist/index.js CHANGED
@@ -1,9 +1,9 @@
1
1
  export * from "./entities/activity.js";
2
2
  export * from "./entities/balance.js";
3
3
  export * from "./entities/giftCard.js";
4
- //export * from "./entities/kyc.js";
5
- //export * from "./entities/kycEvent.js";
6
- //export * from "./entities/kycRequest.js";
4
+ export * from "./entities/kyc.js";
5
+ export * from "./entities/kycEvent.js";
6
+ export * from "./entities/kycRequest.js";
7
7
  export * from "./entities/ledgerItem.js";
8
8
  export * from "./entities/order.js";
9
9
  export * from "./entities/payment.js";
@@ -16,5 +16,5 @@ export * from "./global/decorators.js";
16
16
  export * from "./global/enums.js";
17
17
  export * from "./global/errors.js";
18
18
  export * from "./global/interfaces.js";
19
- //export * from "./global/kyc.js";
19
+ export * from "./global/kyc.js";
20
20
  export * from "./global/types.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@collctiv/l2s-models",
3
- "version": "1.0.66",
3
+ "version": "1.0.68",
4
4
  "description": "L2S models, interfaces, types and enums",
5
5
  "main": "./dist/index.js",
6
6
  "type": "module",