@purpleschool/gptbot 0.5.23 → 0.5.24
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/build/models/index.js
CHANGED
|
@@ -18,7 +18,6 @@ __exportStar(require("./ai-model-formatted.schema"), exports);
|
|
|
18
18
|
__exportStar(require("./ai-model.schema"), exports);
|
|
19
19
|
__exportStar(require("./category.schema"), exports);
|
|
20
20
|
__exportStar(require("./chat.schema"), exports);
|
|
21
|
-
__exportStar(require("./cloud-payments-data.schema"), exports);
|
|
22
21
|
__exportStar(require("./course-author.schema"), exports);
|
|
23
22
|
__exportStar(require("./course.schema"), exports);
|
|
24
23
|
__exportStar(require("./feedback.schema"), exports);
|
package/models/index.ts
CHANGED
|
@@ -2,7 +2,6 @@ export * from './ai-model-formatted.schema';
|
|
|
2
2
|
export * from './ai-model.schema';
|
|
3
3
|
export * from './category.schema';
|
|
4
4
|
export * from './chat.schema';
|
|
5
|
-
export * from './cloud-payments-data.schema';
|
|
6
5
|
export * from './course-author.schema';
|
|
7
6
|
export * from './course.schema';
|
|
8
7
|
export * from './feedback.schema';
|
package/package.json
CHANGED
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CloudPaymentsDataSchema = void 0;
|
|
4
|
-
const zod_1 = require("zod");
|
|
5
|
-
exports.CloudPaymentsDataSchema = zod_1.z.object({
|
|
6
|
-
CloudPayments: zod_1.z.object({
|
|
7
|
-
CustomerReceipt: zod_1.z.object({
|
|
8
|
-
items: zod_1.z.array(zod_1.z.object({
|
|
9
|
-
label: zod_1.z.string(),
|
|
10
|
-
price: zod_1.z.number(),
|
|
11
|
-
quantity: zod_1.z.number(),
|
|
12
|
-
amount: zod_1.z.number(),
|
|
13
|
-
vat: zod_1.z.number(),
|
|
14
|
-
})),
|
|
15
|
-
email: zod_1.z.string(),
|
|
16
|
-
isBso: zod_1.z.boolean(),
|
|
17
|
-
amounts: zod_1.z.object({
|
|
18
|
-
electronic: zod_1.z.number(),
|
|
19
|
-
}),
|
|
20
|
-
}),
|
|
21
|
-
recurrent: zod_1.z
|
|
22
|
-
.object({
|
|
23
|
-
period: zod_1.z.number(),
|
|
24
|
-
interval: zod_1.z.string(),
|
|
25
|
-
customerReceipt: zod_1.z.object({
|
|
26
|
-
items: zod_1.z.array(zod_1.z.object({
|
|
27
|
-
label: zod_1.z.string(),
|
|
28
|
-
price: zod_1.z.number(),
|
|
29
|
-
quantity: zod_1.z.number(),
|
|
30
|
-
amount: zod_1.z.number(),
|
|
31
|
-
vat: zod_1.z.number(),
|
|
32
|
-
})),
|
|
33
|
-
email: zod_1.z.string(),
|
|
34
|
-
isBso: zod_1.z.boolean(),
|
|
35
|
-
amounts: zod_1.z.object({
|
|
36
|
-
electronic: zod_1.z.number(),
|
|
37
|
-
}),
|
|
38
|
-
}),
|
|
39
|
-
amount: zod_1.z.number(),
|
|
40
|
-
})
|
|
41
|
-
.optional(),
|
|
42
|
-
}),
|
|
43
|
-
});
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
2
|
-
|
|
3
|
-
export const CloudPaymentsDataSchema = z.object({
|
|
4
|
-
CloudPayments: z.object({
|
|
5
|
-
CustomerReceipt: z.object({
|
|
6
|
-
items: z.array(
|
|
7
|
-
z.object({
|
|
8
|
-
label: z.string(),
|
|
9
|
-
price: z.number(),
|
|
10
|
-
quantity: z.number(),
|
|
11
|
-
amount: z.number(),
|
|
12
|
-
vat: z.number(),
|
|
13
|
-
}),
|
|
14
|
-
),
|
|
15
|
-
email: z.string(),
|
|
16
|
-
isBso: z.boolean(),
|
|
17
|
-
amounts: z.object({
|
|
18
|
-
electronic: z.number(),
|
|
19
|
-
}),
|
|
20
|
-
}),
|
|
21
|
-
recurrent: z
|
|
22
|
-
.object({
|
|
23
|
-
period: z.number(),
|
|
24
|
-
interval: z.string(),
|
|
25
|
-
customerReceipt: z.object({
|
|
26
|
-
items: z.array(
|
|
27
|
-
z.object({
|
|
28
|
-
label: z.string(),
|
|
29
|
-
price: z.number(),
|
|
30
|
-
quantity: z.number(),
|
|
31
|
-
amount: z.number(),
|
|
32
|
-
vat: z.number(),
|
|
33
|
-
}),
|
|
34
|
-
),
|
|
35
|
-
email: z.string(),
|
|
36
|
-
isBso: z.boolean(),
|
|
37
|
-
amounts: z.object({
|
|
38
|
-
electronic: z.number(),
|
|
39
|
-
}),
|
|
40
|
-
}),
|
|
41
|
-
amount: z.number(),
|
|
42
|
-
})
|
|
43
|
-
.optional(),
|
|
44
|
-
}),
|
|
45
|
-
});
|