@purpleschool/multisite 0.0.7 → 0.0.9
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/api/controller/http/product.ts +1 -0
- package/api/controller/http/subscription.ts +3 -0
- package/api/controller/http/unregistered-user.ts +4 -0
- package/api/controller/http/user.ts +1 -0
- package/api/routes.ts +7 -0
- package/build/api/controller/http/product.d.ts +1 -0
- package/build/api/controller/http/product.d.ts.map +1 -1
- package/build/api/controller/http/product.js +1 -0
- package/build/api/controller/http/subscription.d.ts +3 -0
- package/build/api/controller/http/subscription.d.ts.map +1 -1
- package/build/api/controller/http/subscription.js +3 -0
- package/build/api/controller/http/unregistered-user.d.ts +3 -0
- package/build/api/controller/http/unregistered-user.d.ts.map +1 -1
- package/build/api/controller/http/unregistered-user.js +4 -1
- package/build/api/controller/http/user.d.ts +1 -0
- package/build/api/controller/http/user.d.ts.map +1 -1
- package/build/api/controller/http/user.js +1 -0
- package/build/api/routes.d.ts +6 -0
- package/build/api/routes.d.ts.map +1 -1
- package/build/api/routes.js +6 -0
- package/build/commands/payment/cloud-payments.command.d.ts +10 -10
- package/build/commands/payment/cloud-payments.command.js +4 -4
- package/build/commands/subscription/cancel-subscription.command.d.ts +22 -0
- package/build/commands/subscription/cancel-subscription.command.d.ts.map +1 -0
- package/build/commands/subscription/cancel-subscription.command.js +14 -0
- package/build/commands/subscription/index.d.ts +1 -0
- package/build/commands/subscription/index.d.ts.map +1 -1
- package/build/commands/subscription/index.js +1 -0
- package/build/constants/cloud-payments/index.d.ts +2 -0
- package/build/constants/cloud-payments/index.d.ts.map +1 -0
- package/build/constants/cloud-payments/index.js +4 -0
- package/build/constants/errors/errors.d.ts +5 -0
- package/build/constants/errors/errors.d.ts.map +1 -1
- package/build/constants/errors/errors.js +5 -0
- package/build/constants/index.d.ts +1 -0
- package/build/constants/index.d.ts.map +1 -1
- package/build/constants/index.js +1 -0
- package/build/constants/user-to-subscription/enums/user-to-subscription-status.enum.d.ts +2 -1
- package/build/constants/user-to-subscription/enums/user-to-subscription-status.enum.d.ts.map +1 -1
- package/build/constants/user-to-subscription/enums/user-to-subscription-status.enum.js +1 -0
- package/build/queries/image-editor/find-image-editor-jobs.command.d.ts +3 -0
- package/build/queries/image-editor/find-image-editor-jobs.command.d.ts.map +1 -1
- package/build/queries/image-editor/find-image-editor-jobs.command.js +1 -0
- package/build/queries/image-generation/find-image-generation-jobs.command.d.ts +3 -0
- package/build/queries/image-generation/find-image-generation-jobs.command.d.ts.map +1 -1
- package/build/queries/image-generation/find-image-generation-jobs.command.js +1 -0
- package/build/queries/index.d.ts +1 -0
- package/build/queries/index.d.ts.map +1 -1
- package/build/queries/index.js +1 -0
- package/build/queries/subscription/get-subscriptions-summary.command.d.ts +308 -0
- package/build/queries/subscription/get-subscriptions-summary.command.d.ts.map +1 -0
- package/build/queries/subscription/get-subscriptions-summary.command.js +36 -0
- package/build/queries/subscription/index.d.ts +1 -0
- package/build/queries/subscription/index.d.ts.map +1 -1
- package/build/queries/subscription/index.js +1 -0
- package/build/queries/unregistered-user/get-unregistered-user-balance.command.d.ts +37 -0
- package/build/queries/unregistered-user/get-unregistered-user-balance.command.d.ts.map +1 -0
- package/build/queries/unregistered-user/get-unregistered-user-balance.command.js +15 -0
- package/build/queries/unregistered-user/index.d.ts +2 -0
- package/build/queries/unregistered-user/index.d.ts.map +1 -0
- package/build/queries/unregistered-user/index.js +17 -0
- package/build/queries/user/get-user-balance.command.d.ts +37 -0
- package/build/queries/user/get-user-balance.command.d.ts.map +1 -0
- package/build/queries/user/get-user-balance.command.js +15 -0
- package/build/queries/user/index.d.ts +1 -0
- package/build/queries/user/index.d.ts.map +1 -1
- package/build/queries/user/index.js +1 -0
- package/commands/payment/cloud-payments.command.ts +4 -4
- package/commands/subscription/cancel-subscription.command.ts +16 -0
- package/commands/subscription/index.ts +1 -0
- package/constants/cloud-payments/index.ts +1 -0
- package/constants/errors/errors.ts +5 -0
- package/constants/index.ts +1 -0
- package/constants/user-to-subscription/enums/user-to-subscription-status.enum.ts +1 -0
- package/package.json +1 -1
- package/queries/image-editor/find-image-editor-jobs.command.ts +1 -0
- package/queries/image-generation/find-image-generation-jobs.command.ts +1 -0
- package/queries/index.ts +1 -0
- package/queries/subscription/get-subscriptions-summary.command.ts +38 -0
- package/queries/subscription/index.ts +1 -0
- package/queries/unregistered-user/get-unregistered-user-balance.command.ts +14 -0
- package/queries/unregistered-user/index.ts +1 -0
- package/queries/user/get-user-balance.command.ts +14 -0
- package/queries/user/index.ts +1 -0
package/api/routes.ts
CHANGED
|
@@ -20,9 +20,11 @@ export const REST_API = {
|
|
|
20
20
|
},
|
|
21
21
|
UNREGISTERED_USER: {
|
|
22
22
|
UPSERT: `${ROOT}/${CONTROLLERS.UNREGISTERED_USER_CONTROLLER}`,
|
|
23
|
+
BALANCE: `${ROOT}/${CONTROLLERS.UNREGISTERED_USER_CONTROLLER}/${CONTROLLERS.UNREGISTERED_USER_ROUTES.BALANCE}`,
|
|
23
24
|
},
|
|
24
25
|
USERS: {
|
|
25
26
|
GET: `${ROOT}/${CONTROLLERS.USER_CONTROLLER}/${CONTROLLERS.USER_ROUTES.GET}`,
|
|
27
|
+
BALANCE: `${ROOT}/${CONTROLLERS.USER_CONTROLLER}/${CONTROLLERS.USER_ROUTES.BALANCE}`,
|
|
26
28
|
},
|
|
27
29
|
PRODUCT_PUBLIC: {
|
|
28
30
|
GET: `${ROOT}/${CONTROLLERS.PRODUCT_PUBLIC_CONTROLLER}/${CONTROLLERS.PRODUCT_ROUTES.GET_ALL}`,
|
|
@@ -31,6 +33,7 @@ export const REST_API = {
|
|
|
31
33
|
GET: `${ROOT}/${CONTROLLERS.PRODUCT_PRIVATE_CONTROLLER}/${CONTROLLERS.PRODUCT_ROUTES.GET_ALL}`,
|
|
32
34
|
BUY: (uuid: string) =>
|
|
33
35
|
`${ROOT}/${CONTROLLERS.PRODUCT_PRIVATE_CONTROLLER}/${uuid}/${CONTROLLERS.PRODUCT_ROUTES.BUY}`,
|
|
36
|
+
MY: `${ROOT}/${CONTROLLERS.PRODUCT_PRIVATE_CONTROLLER}/${CONTROLLERS.PRODUCT_ROUTES.MY}`,
|
|
34
37
|
},
|
|
35
38
|
SUBSCRIPTION_PUBLIC: {
|
|
36
39
|
GET: `${ROOT}/${CONTROLLERS.SUBSCRIPTION_PUBLIC_CONTROLLER}/${CONTROLLERS.SUBSCRIPTION_ROUTES.GET_ALL}`,
|
|
@@ -39,6 +42,10 @@ export const REST_API = {
|
|
|
39
42
|
GET: `${ROOT}/${CONTROLLERS.SUBSCRIPTION_PRIVATE_CONTROLLER}/${CONTROLLERS.SUBSCRIPTION_ROUTES.GET_ALL}`,
|
|
40
43
|
BUY: (uuid: string) =>
|
|
41
44
|
`${ROOT}/${CONTROLLERS.SUBSCRIPTION_PRIVATE_CONTROLLER}/${uuid}/${CONTROLLERS.SUBSCRIPTION_ROUTES.BUY}`,
|
|
45
|
+
SUMMARY: `${ROOT}/${CONTROLLERS.SUBSCRIPTION_PRIVATE_CONTROLLER}/${CONTROLLERS.SUBSCRIPTION_ROUTES.SUMMARY}`,
|
|
46
|
+
GET_MY: `${ROOT}/${CONTROLLERS.SUBSCRIPTION_PRIVATE_CONTROLLER}/${CONTROLLERS.SUBSCRIPTION_ROUTES.GET_MY}`,
|
|
47
|
+
CANCEL: (uuid: string) =>
|
|
48
|
+
`${ROOT}/${CONTROLLERS.SUBSCRIPTION_PRIVATE_CONTROLLER}/${uuid}/${CONTROLLERS.SUBSCRIPTION_ROUTES.CANCEL}`,
|
|
42
49
|
},
|
|
43
50
|
PAYMENT: {
|
|
44
51
|
HISTORY: `${ROOT}/${CONTROLLERS.PAYMENT_CONTROLLER}/${CONTROLLERS.PAYMENT_ROUTES.HISTORY}`,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"product.d.ts","sourceRoot":"","sources":["../../../../api/controller/http/product.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,0BAA0B,EAAG,iBAA0B,CAAC;AACrE,eAAO,MAAM,yBAAyB,EAAG,gBAAyB,CAAC;AAEnE,eAAO,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"product.d.ts","sourceRoot":"","sources":["../../../../api/controller/http/product.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,0BAA0B,EAAG,iBAA0B,CAAC;AACrE,eAAO,MAAM,yBAAyB,EAAG,gBAAyB,CAAC;AAEnE,eAAO,MAAM,cAAc;;;;CAIjB,CAAC"}
|
|
@@ -3,5 +3,8 @@ export declare const SUBSCRIPTION_PUBLIC_CONTROLLER: "subscription/public";
|
|
|
3
3
|
export declare const SUBSCRIPTION_ROUTES: {
|
|
4
4
|
readonly GET_ALL: "all";
|
|
5
5
|
readonly BUY: "buy";
|
|
6
|
+
readonly SUMMARY: "summary";
|
|
7
|
+
readonly GET_MY: "my";
|
|
8
|
+
readonly CANCEL: "cancel";
|
|
6
9
|
};
|
|
7
10
|
//# sourceMappingURL=subscription.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"subscription.d.ts","sourceRoot":"","sources":["../../../../api/controller/http/subscription.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,+BAA+B,EAAG,sBAA+B,CAAC;AAC/E,eAAO,MAAM,8BAA8B,EAAG,qBAA8B,CAAC;AAE7E,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"subscription.d.ts","sourceRoot":"","sources":["../../../../api/controller/http/subscription.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,+BAA+B,EAAG,sBAA+B,CAAC;AAC/E,eAAO,MAAM,8BAA8B,EAAG,qBAA8B,CAAC;AAE7E,eAAO,MAAM,mBAAmB;;;;;;CAMtB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"unregistered-user.d.ts","sourceRoot":"","sources":["../../../../api/controller/http/unregistered-user.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,4BAA4B,EAAG,mBAA4B,CAAC"}
|
|
1
|
+
{"version":3,"file":"unregistered-user.d.ts","sourceRoot":"","sources":["../../../../api/controller/http/unregistered-user.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,4BAA4B,EAAG,mBAA4B,CAAC;AAEzE,eAAO,MAAM,wBAAwB;;CAE3B,CAAC"}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UNREGISTERED_USER_CONTROLLER = void 0;
|
|
3
|
+
exports.UNREGISTERED_USER_ROUTES = exports.UNREGISTERED_USER_CONTROLLER = void 0;
|
|
4
4
|
exports.UNREGISTERED_USER_CONTROLLER = 'unregistered-user';
|
|
5
|
+
exports.UNREGISTERED_USER_ROUTES = {
|
|
6
|
+
BALANCE: 'balance',
|
|
7
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.d.ts","sourceRoot":"","sources":["../../../../api/controller/http/user.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe,EAAG,OAAgB,CAAC;AAEhD,eAAO,MAAM,WAAW
|
|
1
|
+
{"version":3,"file":"user.d.ts","sourceRoot":"","sources":["../../../../api/controller/http/user.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe,EAAG,OAAgB,CAAC;AAEhD,eAAO,MAAM,WAAW;;;CAGd,CAAC"}
|
package/build/api/routes.d.ts
CHANGED
|
@@ -17,9 +17,11 @@ export declare const REST_API: {
|
|
|
17
17
|
};
|
|
18
18
|
readonly UNREGISTERED_USER: {
|
|
19
19
|
readonly UPSERT: "/api/unregistered-user";
|
|
20
|
+
readonly BALANCE: "/api/unregistered-user/balance";
|
|
20
21
|
};
|
|
21
22
|
readonly USERS: {
|
|
22
23
|
readonly GET: "/api/users/me";
|
|
24
|
+
readonly BALANCE: "/api/users/balance";
|
|
23
25
|
};
|
|
24
26
|
readonly PRODUCT_PUBLIC: {
|
|
25
27
|
readonly GET: "/api/product/public/all";
|
|
@@ -27,6 +29,7 @@ export declare const REST_API: {
|
|
|
27
29
|
readonly PRODUCT_PRIVATE: {
|
|
28
30
|
readonly GET: "/api/product/private/all";
|
|
29
31
|
readonly BUY: (uuid: string) => string;
|
|
32
|
+
readonly MY: "/api/product/private/my";
|
|
30
33
|
};
|
|
31
34
|
readonly SUBSCRIPTION_PUBLIC: {
|
|
32
35
|
readonly GET: "/api/subscription/public/all";
|
|
@@ -34,6 +37,9 @@ export declare const REST_API: {
|
|
|
34
37
|
readonly SUBSCRIPTION_PRIVATE: {
|
|
35
38
|
readonly GET: "/api/subscription/private/all";
|
|
36
39
|
readonly BUY: (uuid: string) => string;
|
|
40
|
+
readonly SUMMARY: "/api/subscription/private/summary";
|
|
41
|
+
readonly GET_MY: "/api/subscription/private/my";
|
|
42
|
+
readonly CANCEL: (uuid: string) => string;
|
|
37
43
|
};
|
|
38
44
|
readonly PAYMENT: {
|
|
39
45
|
readonly HISTORY: "/api/payments/history";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"routes.d.ts","sourceRoot":"","sources":["../../api/routes.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,IAAI,EAAG,MAAe,CAAC;AAEpC,eAAO,MAAM,QAAQ
|
|
1
|
+
{"version":3,"file":"routes.d.ts","sourceRoot":"","sources":["../../api/routes.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,IAAI,EAAG,MAAe,CAAC;AAEpC,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BA6BD,MAAM;;;;;;;;6BASN,MAAM;;;gCAIH,MAAM;;;;;;kCAOJ,MAAM;;;;;;iCAOP,MAAM;gCAEP,MAAM;sCAEA,MAAM;gCAEZ,MAAM;;+BAGP,MAAM;;;;;;iCAOJ,MAAM;gCAEP,MAAM;sCAEA,MAAM;gCAEZ,MAAM;;+BAGP,MAAM;;;;;;;iCAQJ,MAAM;+BAER,MAAM;sCAEC,MAAM;gCAEZ,MAAM;gCAEN,MAAM;;;;;;;;iCASL,MAAM;+BAER,MAAM;sCAEC,MAAM;gCAEZ,MAAM;gCAEN,MAAM;;;;;;;;;;;iCAYL,MAAM;gCAEP,MAAM;sCAEA,MAAM;gCAEZ,MAAM;;+BAGP,MAAM;;;;;;iCAOJ,MAAM;gCAEP,MAAM;sCAEA,MAAM;gCAEZ,MAAM;;+BAGP,MAAM;;;;;6BAMR,MAAM;;;;;6BAKN,MAAM;;;;;;;;sCAQG,MAAM;wCAEJ,MAAM;;gCAGd,MAAM;gCAEN,MAAM;iDAEW,MAAM;;;;sCAKjB,MAAM;;gCAGZ,MAAM;gCAEN,MAAM;;CAGnB,CAAC"}
|
package/build/api/routes.js
CHANGED
|
@@ -54,9 +54,11 @@ exports.REST_API = {
|
|
|
54
54
|
},
|
|
55
55
|
UNREGISTERED_USER: {
|
|
56
56
|
UPSERT: `${exports.ROOT}/${CONTROLLERS.UNREGISTERED_USER_CONTROLLER}`,
|
|
57
|
+
BALANCE: `${exports.ROOT}/${CONTROLLERS.UNREGISTERED_USER_CONTROLLER}/${CONTROLLERS.UNREGISTERED_USER_ROUTES.BALANCE}`,
|
|
57
58
|
},
|
|
58
59
|
USERS: {
|
|
59
60
|
GET: `${exports.ROOT}/${CONTROLLERS.USER_CONTROLLER}/${CONTROLLERS.USER_ROUTES.GET}`,
|
|
61
|
+
BALANCE: `${exports.ROOT}/${CONTROLLERS.USER_CONTROLLER}/${CONTROLLERS.USER_ROUTES.BALANCE}`,
|
|
60
62
|
},
|
|
61
63
|
PRODUCT_PUBLIC: {
|
|
62
64
|
GET: `${exports.ROOT}/${CONTROLLERS.PRODUCT_PUBLIC_CONTROLLER}/${CONTROLLERS.PRODUCT_ROUTES.GET_ALL}`,
|
|
@@ -64,6 +66,7 @@ exports.REST_API = {
|
|
|
64
66
|
PRODUCT_PRIVATE: {
|
|
65
67
|
GET: `${exports.ROOT}/${CONTROLLERS.PRODUCT_PRIVATE_CONTROLLER}/${CONTROLLERS.PRODUCT_ROUTES.GET_ALL}`,
|
|
66
68
|
BUY: (uuid) => `${exports.ROOT}/${CONTROLLERS.PRODUCT_PRIVATE_CONTROLLER}/${uuid}/${CONTROLLERS.PRODUCT_ROUTES.BUY}`,
|
|
69
|
+
MY: `${exports.ROOT}/${CONTROLLERS.PRODUCT_PRIVATE_CONTROLLER}/${CONTROLLERS.PRODUCT_ROUTES.MY}`,
|
|
67
70
|
},
|
|
68
71
|
SUBSCRIPTION_PUBLIC: {
|
|
69
72
|
GET: `${exports.ROOT}/${CONTROLLERS.SUBSCRIPTION_PUBLIC_CONTROLLER}/${CONTROLLERS.SUBSCRIPTION_ROUTES.GET_ALL}`,
|
|
@@ -71,6 +74,9 @@ exports.REST_API = {
|
|
|
71
74
|
SUBSCRIPTION_PRIVATE: {
|
|
72
75
|
GET: `${exports.ROOT}/${CONTROLLERS.SUBSCRIPTION_PRIVATE_CONTROLLER}/${CONTROLLERS.SUBSCRIPTION_ROUTES.GET_ALL}`,
|
|
73
76
|
BUY: (uuid) => `${exports.ROOT}/${CONTROLLERS.SUBSCRIPTION_PRIVATE_CONTROLLER}/${uuid}/${CONTROLLERS.SUBSCRIPTION_ROUTES.BUY}`,
|
|
77
|
+
SUMMARY: `${exports.ROOT}/${CONTROLLERS.SUBSCRIPTION_PRIVATE_CONTROLLER}/${CONTROLLERS.SUBSCRIPTION_ROUTES.SUMMARY}`,
|
|
78
|
+
GET_MY: `${exports.ROOT}/${CONTROLLERS.SUBSCRIPTION_PRIVATE_CONTROLLER}/${CONTROLLERS.SUBSCRIPTION_ROUTES.GET_MY}`,
|
|
79
|
+
CANCEL: (uuid) => `${exports.ROOT}/${CONTROLLERS.SUBSCRIPTION_PRIVATE_CONTROLLER}/${uuid}/${CONTROLLERS.SUBSCRIPTION_ROUTES.CANCEL}`,
|
|
74
80
|
},
|
|
75
81
|
PAYMENT: {
|
|
76
82
|
HISTORY: `${exports.ROOT}/${CONTROLLERS.PAYMENT_CONTROLLER}/${CONTROLLERS.PAYMENT_ROUTES.HISTORY}`,
|
|
@@ -40,32 +40,32 @@ export declare namespace CloudPaymentsCheckCommand {
|
|
|
40
40
|
}
|
|
41
41
|
export declare namespace CloudPaymentsPayCommand {
|
|
42
42
|
const RequestSchema: z.ZodObject<{
|
|
43
|
-
transactionId: z.ZodOptional<z.ZodNumber
|
|
44
|
-
amount: z.ZodNumber
|
|
43
|
+
transactionId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
44
|
+
amount: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
45
45
|
currency: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
46
46
|
paymentAmount: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
47
47
|
paymentCurrency: z.ZodOptional<z.ZodString>;
|
|
48
48
|
invoiceId: z.ZodOptional<z.ZodString>;
|
|
49
49
|
accountId: z.ZodString;
|
|
50
50
|
subscriptionId: z.ZodOptional<z.ZodString>;
|
|
51
|
-
data: z.ZodOptional<z.ZodType<import("../../models").JsonValue, z.ZodTypeDef, import("../../models").JsonValue>>;
|
|
51
|
+
data: z.ZodOptional<z.ZodUnion<[z.ZodType<import("../../models").JsonValue, z.ZodTypeDef, import("../../models").JsonValue>, z.ZodString]>>;
|
|
52
52
|
}, "strip", z.ZodTypeAny, {
|
|
53
|
-
amount: number;
|
|
53
|
+
amount: string | number;
|
|
54
54
|
currency: string;
|
|
55
55
|
accountId: string;
|
|
56
56
|
invoiceId?: string | undefined;
|
|
57
57
|
data?: import("../../models").JsonValue | undefined;
|
|
58
|
-
transactionId?: number | undefined;
|
|
58
|
+
transactionId?: string | number | undefined;
|
|
59
59
|
paymentAmount?: string | number | undefined;
|
|
60
60
|
paymentCurrency?: string | undefined;
|
|
61
61
|
subscriptionId?: string | undefined;
|
|
62
62
|
}, {
|
|
63
|
-
amount: number;
|
|
63
|
+
amount: string | number;
|
|
64
64
|
accountId: string;
|
|
65
65
|
currency?: string | undefined;
|
|
66
66
|
invoiceId?: string | undefined;
|
|
67
67
|
data?: import("../../models").JsonValue | undefined;
|
|
68
|
-
transactionId?: number | undefined;
|
|
68
|
+
transactionId?: string | number | undefined;
|
|
69
69
|
paymentAmount?: string | number | undefined;
|
|
70
70
|
paymentCurrency?: string | undefined;
|
|
71
71
|
subscriptionId?: string | undefined;
|
|
@@ -85,19 +85,19 @@ export declare namespace CloudPaymentsRecurrentCommand {
|
|
|
85
85
|
id: z.ZodString;
|
|
86
86
|
accountId: z.ZodString;
|
|
87
87
|
status: z.ZodString;
|
|
88
|
-
failedTransactionsNumber: z.ZodOptional<z.ZodNumber
|
|
88
|
+
failedTransactionsNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
89
89
|
lastTransactionDate: z.ZodOptional<z.ZodString>;
|
|
90
90
|
}, "strip", z.ZodTypeAny, {
|
|
91
91
|
status: string;
|
|
92
92
|
accountId: string;
|
|
93
93
|
id: string;
|
|
94
|
-
failedTransactionsNumber?: number | undefined;
|
|
94
|
+
failedTransactionsNumber?: string | number | undefined;
|
|
95
95
|
lastTransactionDate?: string | undefined;
|
|
96
96
|
}, {
|
|
97
97
|
status: string;
|
|
98
98
|
accountId: string;
|
|
99
99
|
id: string;
|
|
100
|
-
failedTransactionsNumber?: number | undefined;
|
|
100
|
+
failedTransactionsNumber?: string | number | undefined;
|
|
101
101
|
lastTransactionDate?: string | undefined;
|
|
102
102
|
}>;
|
|
103
103
|
type Request = z.infer<typeof RequestSchema>;
|
|
@@ -22,15 +22,15 @@ var CloudPaymentsCheckCommand;
|
|
|
22
22
|
var CloudPaymentsPayCommand;
|
|
23
23
|
(function (CloudPaymentsPayCommand) {
|
|
24
24
|
CloudPaymentsPayCommand.RequestSchema = zod_1.z.object({
|
|
25
|
-
transactionId: zod_1.z.number().optional(),
|
|
26
|
-
amount: zod_1.z.number(),
|
|
25
|
+
transactionId: zod_1.z.union([zod_1.z.string(), zod_1.z.number()]).optional(),
|
|
26
|
+
amount: zod_1.z.union([zod_1.z.string(), zod_1.z.number()]),
|
|
27
27
|
currency: zod_1.z.string().optional().default('RUB'),
|
|
28
28
|
paymentAmount: zod_1.z.union([zod_1.z.string(), zod_1.z.number()]).optional(),
|
|
29
29
|
paymentCurrency: zod_1.z.string().optional(),
|
|
30
30
|
invoiceId: zod_1.z.string().optional(),
|
|
31
31
|
accountId: zod_1.z.string(),
|
|
32
32
|
subscriptionId: zod_1.z.string().optional(),
|
|
33
|
-
data: models_1.JsonValueSchema.optional(),
|
|
33
|
+
data: zod_1.z.union([models_1.JsonValueSchema, zod_1.z.string()]).optional(),
|
|
34
34
|
});
|
|
35
35
|
CloudPaymentsPayCommand.ResponseSchema = zod_1.z.object({ code: zod_1.z.number() });
|
|
36
36
|
})(CloudPaymentsPayCommand || (exports.CloudPaymentsPayCommand = CloudPaymentsPayCommand = {}));
|
|
@@ -40,7 +40,7 @@ var CloudPaymentsRecurrentCommand;
|
|
|
40
40
|
id: zod_1.z.string(),
|
|
41
41
|
accountId: zod_1.z.string(),
|
|
42
42
|
status: zod_1.z.string(),
|
|
43
|
-
failedTransactionsNumber: zod_1.z.number().optional(),
|
|
43
|
+
failedTransactionsNumber: zod_1.z.union([zod_1.z.string(), zod_1.z.number()]).optional(),
|
|
44
44
|
lastTransactionDate: zod_1.z.string().optional(),
|
|
45
45
|
});
|
|
46
46
|
CloudPaymentsRecurrentCommand.ResponseSchema = zod_1.z.object({ code: zod_1.z.number() });
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare namespace CancelSubscriptionCommand {
|
|
3
|
+
const RequestParamSchema: z.ZodObject<{
|
|
4
|
+
uuidSiteUserToSubscription: z.ZodString;
|
|
5
|
+
}, "strip", z.ZodTypeAny, {
|
|
6
|
+
uuidSiteUserToSubscription: string;
|
|
7
|
+
}, {
|
|
8
|
+
uuidSiteUserToSubscription: string;
|
|
9
|
+
}>;
|
|
10
|
+
type RequestParam = z.infer<typeof RequestParamSchema>;
|
|
11
|
+
const RequestSchema: z.ZodObject<{
|
|
12
|
+
text: z.ZodString;
|
|
13
|
+
}, "strip", z.ZodTypeAny, {
|
|
14
|
+
text: string;
|
|
15
|
+
}, {
|
|
16
|
+
text: string;
|
|
17
|
+
}>;
|
|
18
|
+
type Request = z.infer<typeof RequestSchema>;
|
|
19
|
+
const ResponseSchema: z.ZodVoid;
|
|
20
|
+
type Response = z.infer<typeof ResponseSchema>;
|
|
21
|
+
}
|
|
22
|
+
//# sourceMappingURL=cancel-subscription.command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cancel-subscription.command.d.ts","sourceRoot":"","sources":["../../../commands/subscription/cancel-subscription.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,yBAAiB,yBAAyB,CAAC;IAChC,MAAM,kBAAkB;;;;;;MAE7B,CAAC;IACH,KAAY,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;IAEvD,MAAM,aAAa;;;;;;MAExB,CAAC;IACH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc,WAAW,CAAC;IACvC,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CancelSubscriptionCommand = void 0;
|
|
4
|
+
const zod_1 = require("zod");
|
|
5
|
+
var CancelSubscriptionCommand;
|
|
6
|
+
(function (CancelSubscriptionCommand) {
|
|
7
|
+
CancelSubscriptionCommand.RequestParamSchema = zod_1.z.object({
|
|
8
|
+
uuidSiteUserToSubscription: zod_1.z.string().uuid(),
|
|
9
|
+
});
|
|
10
|
+
CancelSubscriptionCommand.RequestSchema = zod_1.z.object({
|
|
11
|
+
text: zod_1.z.string().min(1).max(500),
|
|
12
|
+
});
|
|
13
|
+
CancelSubscriptionCommand.ResponseSchema = zod_1.z.void();
|
|
14
|
+
})(CancelSubscriptionCommand || (exports.CancelSubscriptionCommand = CancelSubscriptionCommand = {}));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../commands/subscription/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../commands/subscription/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC;AAC3C,cAAc,+BAA+B,CAAC"}
|
|
@@ -15,3 +15,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./buy-subscription.command"), exports);
|
|
18
|
+
__exportStar(require("./cancel-subscription.command"), exports);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../constants/cloud-payments/index.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,qBAAqB,sDAAsD,CAAC"}
|
|
@@ -189,6 +189,11 @@ export declare const ERRORS: {
|
|
|
189
189
|
readonly code: "SUBSCRIPTION_005";
|
|
190
190
|
readonly httpCode: 409;
|
|
191
191
|
};
|
|
192
|
+
readonly SUBSCRIPTION_CANCEL_ERROR: {
|
|
193
|
+
readonly message: "Ошибка при отмене подписки";
|
|
194
|
+
readonly code: "SUBSCRIPTION_006";
|
|
195
|
+
readonly httpCode: 500;
|
|
196
|
+
};
|
|
192
197
|
readonly ORDER_NOT_FOUND: {
|
|
193
198
|
readonly message: "Заказ не найден";
|
|
194
199
|
readonly code: "ORDER_001";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"errors.d.ts","sourceRoot":"","sources":["../../../constants/errors/errors.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,MAAM
|
|
1
|
+
{"version":3,"file":"errors.d.ts","sourceRoot":"","sources":["../../../constants/errors/errors.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8qBT,CAAC"}
|
|
@@ -198,6 +198,11 @@ exports.ERRORS = {
|
|
|
198
198
|
code: 'SUBSCRIPTION_005',
|
|
199
199
|
httpCode: 409,
|
|
200
200
|
},
|
|
201
|
+
SUBSCRIPTION_CANCEL_ERROR: {
|
|
202
|
+
message: 'Ошибка при отмене подписки',
|
|
203
|
+
code: 'SUBSCRIPTION_006',
|
|
204
|
+
httpCode: 500,
|
|
205
|
+
},
|
|
201
206
|
// ORDER
|
|
202
207
|
ORDER_NOT_FOUND: {
|
|
203
208
|
message: 'Заказ не найден',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../constants/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../constants/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,kBAAkB,CAAC;AACjC,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC"}
|
package/build/constants/index.js
CHANGED
|
@@ -16,6 +16,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./errors"), exports);
|
|
18
18
|
__exportStar(require("./common"), exports);
|
|
19
|
+
__exportStar(require("./cloud-payments"), exports);
|
|
19
20
|
__exportStar(require("./user"), exports);
|
|
20
21
|
__exportStar(require("./payment"), exports);
|
|
21
22
|
__exportStar(require("./transaction"), exports);
|
package/build/constants/user-to-subscription/enums/user-to-subscription-status.enum.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user-to-subscription-status.enum.d.ts","sourceRoot":"","sources":["../../../../constants/user-to-subscription/enums/user-to-subscription-status.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,2BAA2B;IACnC,MAAM,WAAW;
|
|
1
|
+
{"version":3,"file":"user-to-subscription-status.enum.d.ts","sourceRoot":"","sources":["../../../../constants/user-to-subscription/enums/user-to-subscription-status.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,2BAA2B;IACnC,MAAM,WAAW;IACjB,QAAQ,aAAa;CACxB"}
|
|
@@ -4,4 +4,5 @@ exports.USER_TO_SUBSCRIPTION_STATUS = void 0;
|
|
|
4
4
|
var USER_TO_SUBSCRIPTION_STATUS;
|
|
5
5
|
(function (USER_TO_SUBSCRIPTION_STATUS) {
|
|
6
6
|
USER_TO_SUBSCRIPTION_STATUS["ACTIVE"] = "active";
|
|
7
|
+
USER_TO_SUBSCRIPTION_STATUS["INACTIVE"] = "inactive";
|
|
7
8
|
})(USER_TO_SUBSCRIPTION_STATUS || (exports.USER_TO_SUBSCRIPTION_STATUS = USER_TO_SUBSCRIPTION_STATUS = {}));
|
|
@@ -3,10 +3,13 @@ export declare namespace FindImageEditorJobsCommand {
|
|
|
3
3
|
const RequestQuerySchema: z.ZodObject<{
|
|
4
4
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
5
5
|
offset: z.ZodDefault<z.ZodNumber>;
|
|
6
|
+
title: z.ZodOptional<z.ZodString>;
|
|
6
7
|
}, "strip", z.ZodTypeAny, {
|
|
7
8
|
limit: number;
|
|
8
9
|
offset: number;
|
|
10
|
+
title?: string | undefined;
|
|
9
11
|
}, {
|
|
12
|
+
title?: string | undefined;
|
|
10
13
|
limit?: number | undefined;
|
|
11
14
|
offset?: number | undefined;
|
|
12
15
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"find-image-editor-jobs.command.d.ts","sourceRoot":"","sources":["../../../queries/image-editor/find-image-editor-jobs.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,yBAAiB,0BAA0B,CAAC;IACjC,MAAM,kBAAkB
|
|
1
|
+
{"version":3,"file":"find-image-editor-jobs.command.d.ts","sourceRoot":"","sources":["../../../queries/image-editor/find-image-editor-jobs.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,yBAAiB,0BAA0B,CAAC;IACjC,MAAM,kBAAkB;;;;;;;;;;;;MAI7B,CAAC;IACH,KAAY,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;IAEvD,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAOzB,CAAC;IACH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
|
@@ -8,6 +8,7 @@ var FindImageEditorJobsCommand;
|
|
|
8
8
|
FindImageEditorJobsCommand.RequestQuerySchema = zod_1.z.object({
|
|
9
9
|
limit: zod_1.z.coerce.number().int().min(1).max(100).default(20),
|
|
10
10
|
offset: zod_1.z.coerce.number().int().min(0).default(0),
|
|
11
|
+
title: zod_1.z.string().trim().min(1).max(200).optional(),
|
|
11
12
|
});
|
|
12
13
|
FindImageEditorJobsCommand.ResponseSchema = zod_1.z.object({
|
|
13
14
|
data: zod_1.z.array(models_1.ImageEditorJobSchema),
|
|
@@ -3,10 +3,13 @@ export declare namespace FindImageGenerationJobsCommand {
|
|
|
3
3
|
const RequestQuerySchema: z.ZodObject<{
|
|
4
4
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
5
5
|
offset: z.ZodDefault<z.ZodNumber>;
|
|
6
|
+
title: z.ZodOptional<z.ZodString>;
|
|
6
7
|
}, "strip", z.ZodTypeAny, {
|
|
7
8
|
limit: number;
|
|
8
9
|
offset: number;
|
|
10
|
+
title?: string | undefined;
|
|
9
11
|
}, {
|
|
12
|
+
title?: string | undefined;
|
|
10
13
|
limit?: number | undefined;
|
|
11
14
|
offset?: number | undefined;
|
|
12
15
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"find-image-generation-jobs.command.d.ts","sourceRoot":"","sources":["../../../queries/image-generation/find-image-generation-jobs.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,yBAAiB,8BAA8B,CAAC;IACrC,MAAM,kBAAkB
|
|
1
|
+
{"version":3,"file":"find-image-generation-jobs.command.d.ts","sourceRoot":"","sources":["../../../queries/image-generation/find-image-generation-jobs.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,yBAAiB,8BAA8B,CAAC;IACrC,MAAM,kBAAkB;;;;;;;;;;;;MAI7B,CAAC;IACH,KAAY,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;IAEvD,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAOzB,CAAC;IACH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
|
@@ -8,6 +8,7 @@ var FindImageGenerationJobsCommand;
|
|
|
8
8
|
FindImageGenerationJobsCommand.RequestQuerySchema = zod_1.z.object({
|
|
9
9
|
limit: zod_1.z.coerce.number().int().min(1).max(100).default(20),
|
|
10
10
|
offset: zod_1.z.coerce.number().int().min(0).default(0),
|
|
11
|
+
title: zod_1.z.string().trim().min(1).max(200).optional(),
|
|
11
12
|
});
|
|
12
13
|
FindImageGenerationJobsCommand.ResponseSchema = zod_1.z.object({
|
|
13
14
|
data: zod_1.z.array(models_1.ImageGenerationJobSchema),
|
package/build/queries/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../queries/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,QAAQ,CAAC;AACvB,cAAc,oBAAoB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../queries/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,QAAQ,CAAC;AACvB,cAAc,oBAAoB,CAAC"}
|
package/build/queries/index.js
CHANGED
|
@@ -19,6 +19,7 @@ __exportStar(require("./subscription"), exports);
|
|
|
19
19
|
__exportStar(require("./payment"), exports);
|
|
20
20
|
__exportStar(require("./file"), exports);
|
|
21
21
|
__exportStar(require("./user"), exports);
|
|
22
|
+
__exportStar(require("./unregistered-user"), exports);
|
|
22
23
|
__exportStar(require("./image-generation"), exports);
|
|
23
24
|
__exportStar(require("./image-editor"), exports);
|
|
24
25
|
__exportStar(require("./page"), exports);
|