expo-backend-types 0.40.0-EXPO-330-ExpoBackend-MercadoPago.2 → 0.40.0-EXPO-327-EB-Escanear-entrada.1

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.
@@ -6,7 +6,6 @@ export * from './csv/exports';
6
6
  export * from './event-folder/exports';
7
7
  export * from './event/exports';
8
8
  export * from './location/exports';
9
- export * from './mercadopago/exports';
10
9
  export * from './message/exports';
11
10
  export * from './mi-expo/exports';
12
11
  export * from './otp/exports';
@@ -22,7 +22,6 @@ __exportStar(require("./csv/exports"), exports);
22
22
  __exportStar(require("./event-folder/exports"), exports);
23
23
  __exportStar(require("./event/exports"), exports);
24
24
  __exportStar(require("./location/exports"), exports);
25
- __exportStar(require("./mercadopago/exports"), exports);
26
25
  __exportStar(require("./message/exports"), exports);
27
26
  __exportStar(require("./mi-expo/exports"), exports);
28
27
  __exportStar(require("./otp/exports"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-backend-types",
3
- "version": "0.40.0-EXPO-330-ExpoBackend-MercadoPago.2",
3
+ "version": "0.40.0-EXPO-327-EB-Escanear-entrada.1",
4
4
  "description": "",
5
5
  "author": "Expo",
6
6
  "private": false,
@@ -37,7 +37,6 @@
37
37
  "@anatine/zod-openapi": "^2.2.6",
38
38
  "i18n-js": "^4.4.3",
39
39
  "libphonenumber-js": "^1.12.6",
40
- "mercadopago": "^2.4.0",
41
40
  "patch-package": "^8.0.0",
42
41
  "zod": "^3.23.8"
43
42
  },
@@ -1,74 +0,0 @@
1
- import z from 'zod';
2
- export declare const createPreferenceSchema: z.ZodObject<{
3
- items: z.ZodArray<z.ZodObject<{
4
- id: z.ZodString;
5
- title: z.ZodString;
6
- quantity: z.ZodNumber;
7
- unit_price: z.ZodNumber;
8
- }, "strip", z.ZodTypeAny, {
9
- id: string;
10
- title: string;
11
- quantity: number;
12
- unit_price: number;
13
- }, {
14
- id: string;
15
- title: string;
16
- quantity: number;
17
- unit_price: number;
18
- }>, "many">;
19
- ticket_group_id: z.ZodString;
20
- }, "strip", z.ZodTypeAny, {
21
- items: {
22
- id: string;
23
- title: string;
24
- quantity: number;
25
- unit_price: number;
26
- }[];
27
- ticket_group_id: string;
28
- }, {
29
- items: {
30
- id: string;
31
- title: string;
32
- quantity: number;
33
- unit_price: number;
34
- }[];
35
- ticket_group_id: string;
36
- }>;
37
- declare const CreatePreferenceDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
38
- items: z.ZodArray<z.ZodObject<{
39
- id: z.ZodString;
40
- title: z.ZodString;
41
- quantity: z.ZodNumber;
42
- unit_price: z.ZodNumber;
43
- }, z.UnknownKeysParam, z.ZodTypeAny, {
44
- id: string;
45
- title: string;
46
- quantity: number;
47
- unit_price: number;
48
- }, {
49
- id: string;
50
- title: string;
51
- quantity: number;
52
- unit_price: number;
53
- }>, "many">;
54
- ticket_group_id: z.ZodString;
55
- }, z.UnknownKeysParam, z.ZodTypeAny, {
56
- items: {
57
- id: string;
58
- title: string;
59
- quantity: number;
60
- unit_price: number;
61
- }[];
62
- ticket_group_id: string;
63
- }, {
64
- items: {
65
- id: string;
66
- title: string;
67
- quantity: number;
68
- unit_price: number;
69
- }[];
70
- ticket_group_id: string;
71
- }>>;
72
- export declare class CreatePreferenceDto extends CreatePreferenceDto_base {
73
- }
74
- export {};
@@ -1,21 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.CreatePreferenceDto = exports.createPreferenceSchema = void 0;
7
- const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
8
- const zod_1 = __importDefault(require("zod"));
9
- exports.createPreferenceSchema = zod_1.default.object({
10
- items: zod_1.default.array(zod_1.default.object({
11
- id: zod_1.default.string(),
12
- title: zod_1.default.string(),
13
- quantity: zod_1.default.number(),
14
- unit_price: zod_1.default.number(),
15
- })),
16
- ticket_group_id: zod_1.default.string(),
17
- });
18
- class CreatePreferenceDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.createPreferenceSchema) {
19
- }
20
- exports.CreatePreferenceDto = CreatePreferenceDto;
21
- //# sourceMappingURL=create-preference-mercadopago.dto.js.map
@@ -1,80 +0,0 @@
1
- import z from 'zod';
2
- export declare const webhookSchema: z.ZodObject<{
3
- data: z.ZodObject<{
4
- id: z.ZodString;
5
- }, "strip", z.ZodTypeAny, {
6
- id: string;
7
- }, {
8
- id: string;
9
- }>;
10
- action: z.ZodString;
11
- api_version: z.ZodString;
12
- date_created: z.ZodString;
13
- id: z.ZodString;
14
- live_mode: z.ZodBoolean;
15
- type: z.ZodString;
16
- user_id: z.ZodNumber;
17
- }, "strip", z.ZodTypeAny, {
18
- id: string;
19
- type: string;
20
- data: {
21
- id: string;
22
- };
23
- action: string;
24
- api_version: string;
25
- date_created: string;
26
- live_mode: boolean;
27
- user_id: number;
28
- }, {
29
- id: string;
30
- type: string;
31
- data: {
32
- id: string;
33
- };
34
- action: string;
35
- api_version: string;
36
- date_created: string;
37
- live_mode: boolean;
38
- user_id: number;
39
- }>;
40
- declare const WebhookDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
41
- data: z.ZodObject<{
42
- id: z.ZodString;
43
- }, z.UnknownKeysParam, z.ZodTypeAny, {
44
- id: string;
45
- }, {
46
- id: string;
47
- }>;
48
- action: z.ZodString;
49
- api_version: z.ZodString;
50
- date_created: z.ZodString;
51
- id: z.ZodString;
52
- live_mode: z.ZodBoolean;
53
- type: z.ZodString;
54
- user_id: z.ZodNumber;
55
- }, z.UnknownKeysParam, z.ZodTypeAny, {
56
- id: string;
57
- type: string;
58
- data: {
59
- id: string;
60
- };
61
- action: string;
62
- api_version: string;
63
- date_created: string;
64
- live_mode: boolean;
65
- user_id: number;
66
- }, {
67
- id: string;
68
- type: string;
69
- data: {
70
- id: string;
71
- };
72
- action: string;
73
- api_version: string;
74
- date_created: string;
75
- live_mode: boolean;
76
- user_id: number;
77
- }>>;
78
- export declare class WebhookDto extends WebhookDto_base {
79
- }
80
- export {};
@@ -1,24 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.WebhookDto = exports.webhookSchema = void 0;
7
- const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
8
- const zod_1 = __importDefault(require("zod"));
9
- exports.webhookSchema = zod_1.default.object({
10
- data: zod_1.default.object({
11
- id: zod_1.default.string(),
12
- }),
13
- action: zod_1.default.string(),
14
- api_version: zod_1.default.string(),
15
- date_created: zod_1.default.string(),
16
- id: zod_1.default.string(),
17
- live_mode: zod_1.default.boolean(),
18
- type: zod_1.default.string(),
19
- user_id: zod_1.default.number(),
20
- });
21
- class WebhookDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.webhookSchema) {
22
- }
23
- exports.WebhookDto = WebhookDto;
24
- //# sourceMappingURL=webhook-mercadopago.dto.js.map
@@ -1,2 +0,0 @@
1
- export * from './dto/create-preference-mercadopago.dto';
2
- export * from './dto/webhook-mercadopago.dto';
@@ -1,19 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./dto/create-preference-mercadopago.dto"), exports);
18
- __exportStar(require("./dto/webhook-mercadopago.dto"), exports);
19
- //# sourceMappingURL=exports.js.map