@collctiv/l2s-models 1.0.41-beta.9 → 1.0.41
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/dist/entities/activity.d.ts +45 -26
- package/dist/entities/activity.d.ts.map +1 -1
- package/dist/entities/activity.js +125 -5
- package/dist/entities/balance.d.ts +3 -3
- package/dist/entities/balance.d.ts.map +1 -1
- package/dist/entities/balance.js +5 -1
- package/dist/entities/kyc.d.ts +1 -20
- package/dist/entities/kyc.d.ts.map +1 -1
- package/dist/entities/kyc.js +25 -14
- package/dist/entities/kycEvent.d.ts +1 -36
- package/dist/entities/kycEvent.d.ts.map +1 -1
- package/dist/entities/kycEvent.js +43 -23
- package/dist/entities/kycRequest.d.ts +1 -34
- package/dist/entities/kycRequest.d.ts.map +1 -1
- package/dist/entities/kycRequest.js +47 -54
- package/dist/entities/ledgerItem.d.ts +19 -19
- package/dist/entities/ledgerItem.d.ts.map +1 -1
- package/dist/entities/ledgerItem.js +43 -24
- package/dist/entities/order.d.ts +56 -56
- package/dist/entities/order.d.ts.map +1 -1
- package/dist/entities/order.js +88 -1
- package/dist/entities/payment.d.ts +23 -23
- package/dist/entities/payment.d.ts.map +1 -1
- package/dist/entities/payment.js +33 -1
- package/dist/entities/paymentRequest.d.ts.map +1 -1
- package/dist/entities/paymentRequest.js +3 -1
- package/dist/entities/pot.d.ts +1 -1
- package/dist/entities/pot.d.ts.map +1 -1
- package/dist/entities/pot.js +6 -2
- package/dist/entities/user.d.ts +0 -4
- package/dist/entities/user.d.ts.map +1 -1
- package/dist/entities/user.js +1 -17
- package/dist/global/kyc.d.ts +1 -21
- package/dist/global/kyc.d.ts.map +1 -1
- package/dist/global/kyc.js +27 -22
- package/dist/index.d.ts +0 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -4
- package/package.json +1 -1
package/dist/entities/user.js
CHANGED
|
@@ -8,23 +8,11 @@ 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
|
|
12
|
-
// TEMP
|
|
13
|
-
export class OidTestObject1 {
|
|
14
|
-
oid_test_level_3;
|
|
15
|
-
}
|
|
16
|
-
__decorate([
|
|
17
|
-
TypeOfObject(OidTestObject1),
|
|
18
|
-
__metadata("design:type", OidTestObject1)
|
|
19
|
-
], OidTestObject1.prototype, "oid_test_level_3", void 0);
|
|
20
|
-
// ---
|
|
11
|
+
import { Collection, Updatable, Topic } from "../global/decorators.js";
|
|
21
12
|
let User = class User {
|
|
22
13
|
id;
|
|
23
14
|
create_date = new Date();
|
|
24
15
|
modified_date;
|
|
25
|
-
// TEMP --------
|
|
26
|
-
oid_test_object;
|
|
27
|
-
// -----------------------------------------
|
|
28
16
|
first_name = null;
|
|
29
17
|
last_name = null;
|
|
30
18
|
full_name = null;
|
|
@@ -41,10 +29,6 @@ let User = class User {
|
|
|
41
29
|
Object.assign(this, args);
|
|
42
30
|
}
|
|
43
31
|
};
|
|
44
|
-
__decorate([
|
|
45
|
-
TypeOfObject(OidTestObject1),
|
|
46
|
-
__metadata("design:type", OidTestObject1)
|
|
47
|
-
], User.prototype, "oid_test_object", void 0);
|
|
48
32
|
__decorate([
|
|
49
33
|
Updatable(),
|
|
50
34
|
__metadata("design:type", String)
|
package/dist/global/kyc.d.ts
CHANGED
|
@@ -1,22 +1,2 @@
|
|
|
1
|
-
export
|
|
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;
|
|
1
|
+
export {};
|
|
22
2
|
//# sourceMappingURL=kyc.d.ts.map
|
package/dist/global/kyc.d.ts.map
CHANGED
|
@@ -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":""}
|
package/dist/global/kyc.js
CHANGED
|
@@ -1,22 +1,27 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
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;*/
|
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
export * from "./entities/activity.js";
|
|
2
2
|
export * from "./entities/balance.js";
|
|
3
|
-
export * from "./entities/kyc.js";
|
|
4
|
-
export * from "./entities/kycEvent.js";
|
|
5
3
|
export * from "./entities/giftCard.js";
|
|
6
|
-
export * from "./entities/kycRequest.js";
|
|
7
4
|
export * from "./entities/ledgerItem.js";
|
|
8
5
|
export * from "./entities/order.js";
|
|
9
6
|
export * from "./entities/payment.js";
|
|
@@ -16,6 +13,5 @@ export * from "./global/decorators.js";
|
|
|
16
13
|
export * from "./global/enums.js";
|
|
17
14
|
export * from "./global/errors.js";
|
|
18
15
|
export * from "./global/interfaces.js";
|
|
19
|
-
export * from "./global/kyc.js";
|
|
20
16
|
export * from "./global/types.js";
|
|
21
17
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -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,
|
|
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"}
|
package/dist/index.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export * from "./entities/activity.js";
|
|
2
2
|
export * from "./entities/balance.js";
|
|
3
|
-
export * from "./entities/kyc.js";
|
|
4
|
-
export * from "./entities/kycEvent.js";
|
|
5
3
|
export * from "./entities/giftCard.js";
|
|
6
|
-
export * from "./entities/
|
|
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";
|