expo-backend-types 0.31.0-EXPO-311-EB-Modificar-DB-schema.4 → 0.31.0-EXPO-311-EB-Modificar-DB-schema.5
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/src/event/dto/create-event.dto.d.ts +8 -8
- package/dist/src/event/dto/get-active-events.dto.d.ts +32 -32
- package/dist/src/event/dto/get-all-event.dto.d.ts +160 -160
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +72 -72
- package/dist/src/event/dto/update-event.dto.d.ts +44 -44
- package/dist/src/exports.d.ts +1 -0
- package/dist/src/exports.js +1 -0
- package/dist/types/schema.d.ts +4 -4
- package/package.json +1 -1
@@ -130,7 +130,11 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
130
130
|
created_at: Date;
|
131
131
|
updated_at: Date;
|
132
132
|
active: boolean;
|
133
|
-
|
133
|
+
folderId: string | null;
|
134
|
+
tagAssistedId: string;
|
135
|
+
tagConfirmedId: string;
|
136
|
+
supraEventId: string | null;
|
137
|
+
subEvents: {
|
134
138
|
location: string;
|
135
139
|
id: string;
|
136
140
|
name: string;
|
@@ -144,8 +148,14 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
144
148
|
tagAssistedId: string;
|
145
149
|
tagConfirmedId: string;
|
146
150
|
supraEventId: string | null;
|
147
|
-
}
|
148
|
-
|
151
|
+
}[];
|
152
|
+
eventTickets: {
|
153
|
+
id: string;
|
154
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
155
|
+
amount: number;
|
156
|
+
price: number | null;
|
157
|
+
}[];
|
158
|
+
supraEvent: {
|
149
159
|
location: string;
|
150
160
|
id: string;
|
151
161
|
name: string;
|
@@ -159,17 +169,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
159
169
|
tagAssistedId: string;
|
160
170
|
tagConfirmedId: string;
|
161
171
|
supraEventId: string | null;
|
162
|
-
}
|
163
|
-
eventTickets: {
|
164
|
-
id: string;
|
165
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
166
|
-
amount: number;
|
167
|
-
price: number | null;
|
168
|
-
}[];
|
169
|
-
folderId: string | null;
|
170
|
-
tagAssistedId: string;
|
171
|
-
tagConfirmedId: string;
|
172
|
-
supraEventId: string | null;
|
172
|
+
} | null;
|
173
173
|
}, {
|
174
174
|
location: string;
|
175
175
|
id: string;
|
@@ -180,7 +180,11 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
180
180
|
created_at: Date;
|
181
181
|
updated_at: Date;
|
182
182
|
active: boolean;
|
183
|
-
|
183
|
+
folderId: string | null;
|
184
|
+
tagAssistedId: string;
|
185
|
+
tagConfirmedId: string;
|
186
|
+
supraEventId: string | null;
|
187
|
+
subEvents: {
|
184
188
|
location: string;
|
185
189
|
id: string;
|
186
190
|
name: string;
|
@@ -194,8 +198,14 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
194
198
|
tagAssistedId: string;
|
195
199
|
tagConfirmedId: string;
|
196
200
|
supraEventId: string | null;
|
197
|
-
}
|
198
|
-
|
201
|
+
}[];
|
202
|
+
eventTickets: {
|
203
|
+
id: string;
|
204
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
205
|
+
amount: number;
|
206
|
+
price: number | null;
|
207
|
+
}[];
|
208
|
+
supraEvent: {
|
199
209
|
location: string;
|
200
210
|
id: string;
|
201
211
|
name: string;
|
@@ -209,17 +219,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
209
219
|
tagAssistedId: string;
|
210
220
|
tagConfirmedId: string;
|
211
221
|
supraEventId: string | null;
|
212
|
-
}
|
213
|
-
eventTickets: {
|
214
|
-
id: string;
|
215
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
216
|
-
amount: number;
|
217
|
-
price: number | null;
|
218
|
-
}[];
|
219
|
-
folderId: string | null;
|
220
|
-
tagAssistedId: string;
|
221
|
-
tagConfirmedId: string;
|
222
|
-
supraEventId: string | null;
|
222
|
+
} | null;
|
223
223
|
}>;
|
224
224
|
declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
225
225
|
id: z.ZodString;
|
@@ -351,7 +351,11 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
351
351
|
created_at: string;
|
352
352
|
updated_at: string;
|
353
353
|
active: boolean;
|
354
|
-
|
354
|
+
folderId: string | null;
|
355
|
+
tagAssistedId: string;
|
356
|
+
tagConfirmedId: string;
|
357
|
+
supraEventId: string | null;
|
358
|
+
subEvents: {
|
355
359
|
location: string;
|
356
360
|
id: string;
|
357
361
|
name: string;
|
@@ -365,8 +369,14 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
365
369
|
tagAssistedId: string;
|
366
370
|
tagConfirmedId: string;
|
367
371
|
supraEventId: string | null;
|
368
|
-
}
|
369
|
-
|
372
|
+
}[];
|
373
|
+
eventTickets: {
|
374
|
+
id: string;
|
375
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
376
|
+
amount: number;
|
377
|
+
price: number | null;
|
378
|
+
}[];
|
379
|
+
supraEvent: {
|
370
380
|
location: string;
|
371
381
|
id: string;
|
372
382
|
name: string;
|
@@ -380,17 +390,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
380
390
|
tagAssistedId: string;
|
381
391
|
tagConfirmedId: string;
|
382
392
|
supraEventId: string | null;
|
383
|
-
}
|
384
|
-
eventTickets: {
|
385
|
-
id: string;
|
386
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
387
|
-
amount: number;
|
388
|
-
price: number | null;
|
389
|
-
}[];
|
390
|
-
folderId: string | null;
|
391
|
-
tagAssistedId: string;
|
392
|
-
tagConfirmedId: string;
|
393
|
-
supraEventId: string | null;
|
393
|
+
} | null;
|
394
394
|
}, {
|
395
395
|
location: string;
|
396
396
|
id: string;
|
@@ -401,7 +401,11 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
401
401
|
created_at: string;
|
402
402
|
updated_at: string;
|
403
403
|
active: boolean;
|
404
|
-
|
404
|
+
folderId: string | null;
|
405
|
+
tagAssistedId: string;
|
406
|
+
tagConfirmedId: string;
|
407
|
+
supraEventId: string | null;
|
408
|
+
subEvents: {
|
405
409
|
location: string;
|
406
410
|
id: string;
|
407
411
|
name: string;
|
@@ -415,8 +419,14 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
415
419
|
tagAssistedId: string;
|
416
420
|
tagConfirmedId: string;
|
417
421
|
supraEventId: string | null;
|
418
|
-
}
|
419
|
-
|
422
|
+
}[];
|
423
|
+
eventTickets: {
|
424
|
+
id: string;
|
425
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
426
|
+
amount: number;
|
427
|
+
price: number | null;
|
428
|
+
}[];
|
429
|
+
supraEvent: {
|
420
430
|
location: string;
|
421
431
|
id: string;
|
422
432
|
name: string;
|
@@ -430,17 +440,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
430
440
|
tagAssistedId: string;
|
431
441
|
tagConfirmedId: string;
|
432
442
|
supraEventId: string | null;
|
433
|
-
}
|
434
|
-
eventTickets: {
|
435
|
-
id: string;
|
436
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
437
|
-
amount: number;
|
438
|
-
price: number | null;
|
439
|
-
}[];
|
440
|
-
folderId: string | null;
|
441
|
-
tagAssistedId: string;
|
442
|
-
tagConfirmedId: string;
|
443
|
-
supraEventId: string | null;
|
443
|
+
} | null;
|
444
444
|
}>>;
|
445
445
|
export declare class GetByIdEventResponseDto extends GetByIdEventResponseDto_base {
|
446
446
|
}
|
@@ -523,6 +523,10 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
523
523
|
created_at: Date;
|
524
524
|
updated_at: Date;
|
525
525
|
active: boolean;
|
526
|
+
folderId: string | null;
|
527
|
+
tagAssistedId: string;
|
528
|
+
tagConfirmedId: string;
|
529
|
+
supraEventId: string | null;
|
526
530
|
tagAssisted: {
|
527
531
|
id: string;
|
528
532
|
name: string;
|
@@ -539,10 +543,6 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
539
543
|
updated_at: Date;
|
540
544
|
groupId: string;
|
541
545
|
};
|
542
|
-
folderId: string | null;
|
543
|
-
tagAssistedId: string;
|
544
|
-
tagConfirmedId: string;
|
545
|
-
supraEventId: string | null;
|
546
546
|
}, {
|
547
547
|
location: string;
|
548
548
|
id: string;
|
@@ -553,6 +553,10 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
553
553
|
created_at: Date;
|
554
554
|
updated_at: Date;
|
555
555
|
active: boolean;
|
556
|
+
folderId: string | null;
|
557
|
+
tagAssistedId: string;
|
558
|
+
tagConfirmedId: string;
|
559
|
+
supraEventId: string | null;
|
556
560
|
tagAssisted: {
|
557
561
|
id: string;
|
558
562
|
name: string;
|
@@ -569,10 +573,6 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
569
573
|
updated_at: Date;
|
570
574
|
groupId: string;
|
571
575
|
};
|
572
|
-
folderId: string | null;
|
573
|
-
tagAssistedId: string;
|
574
|
-
tagConfirmedId: string;
|
575
|
-
supraEventId: string | null;
|
576
576
|
}>, "many">;
|
577
577
|
declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodArray<z.ZodObject<{
|
578
578
|
id: z.ZodString;
|
@@ -652,6 +652,10 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
652
652
|
created_at: string;
|
653
653
|
updated_at: string;
|
654
654
|
active: boolean;
|
655
|
+
folderId: string | null;
|
656
|
+
tagAssistedId: string;
|
657
|
+
tagConfirmedId: string;
|
658
|
+
supraEventId: string | null;
|
655
659
|
tagAssisted: {
|
656
660
|
id: string;
|
657
661
|
name: string;
|
@@ -668,10 +672,6 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
668
672
|
updated_at: string;
|
669
673
|
groupId: string;
|
670
674
|
};
|
671
|
-
folderId: string | null;
|
672
|
-
tagAssistedId: string;
|
673
|
-
tagConfirmedId: string;
|
674
|
-
supraEventId: string | null;
|
675
675
|
}, {
|
676
676
|
location: string;
|
677
677
|
id: string;
|
@@ -682,6 +682,10 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
682
682
|
created_at: string;
|
683
683
|
updated_at: string;
|
684
684
|
active: boolean;
|
685
|
+
folderId: string | null;
|
686
|
+
tagAssistedId: string;
|
687
|
+
tagConfirmedId: string;
|
688
|
+
supraEventId: string | null;
|
685
689
|
tagAssisted: {
|
686
690
|
id: string;
|
687
691
|
name: string;
|
@@ -698,10 +702,6 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
698
702
|
updated_at: string;
|
699
703
|
groupId: string;
|
700
704
|
};
|
701
|
-
folderId: string | null;
|
702
|
-
tagAssistedId: string;
|
703
|
-
tagConfirmedId: string;
|
704
|
-
supraEventId: string | null;
|
705
705
|
}>, "many">>;
|
706
706
|
export declare class GetBySupraEventResponseDto extends GetBySupraEventResponseDto_base {
|
707
707
|
}
|
@@ -69,6 +69,7 @@ export declare const updateEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
|
|
69
69
|
date: Date;
|
70
70
|
startingDate: Date;
|
71
71
|
endingDate: Date;
|
72
|
+
folderId: string | null;
|
72
73
|
subEvents: {
|
73
74
|
location: string;
|
74
75
|
id: string;
|
@@ -82,13 +83,13 @@ export declare const updateEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
|
|
82
83
|
amount: number;
|
83
84
|
price: number | null;
|
84
85
|
}[];
|
85
|
-
folderId: string | null;
|
86
86
|
}, {
|
87
87
|
location: string;
|
88
88
|
name: string;
|
89
89
|
date: Date;
|
90
90
|
startingDate: Date;
|
91
91
|
endingDate: Date;
|
92
|
+
folderId: string | null;
|
92
93
|
subEvents: {
|
93
94
|
location: string;
|
94
95
|
id: string;
|
@@ -102,7 +103,6 @@ export declare const updateEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
|
|
102
103
|
amount: number;
|
103
104
|
price: number | null;
|
104
105
|
}[];
|
105
|
-
folderId: string | null;
|
106
106
|
}>;
|
107
107
|
declare const UpdateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
108
108
|
location: z.ZodString;
|
@@ -156,6 +156,7 @@ declare const UpdateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.
|
|
156
156
|
date: string;
|
157
157
|
startingDate: string;
|
158
158
|
endingDate: string;
|
159
|
+
folderId: string | null;
|
159
160
|
subEvents: {
|
160
161
|
location: string;
|
161
162
|
id: string;
|
@@ -169,13 +170,13 @@ declare const UpdateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.
|
|
169
170
|
amount: number;
|
170
171
|
price: number | null;
|
171
172
|
}[];
|
172
|
-
folderId: string | null;
|
173
173
|
}, {
|
174
174
|
location: string;
|
175
175
|
name: string;
|
176
176
|
date: string;
|
177
177
|
startingDate: string;
|
178
178
|
endingDate: string;
|
179
|
+
folderId: string | null;
|
179
180
|
subEvents: {
|
180
181
|
location: string;
|
181
182
|
id: string;
|
@@ -189,7 +190,6 @@ declare const UpdateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.
|
|
189
190
|
amount: number;
|
190
191
|
price: number | null;
|
191
192
|
}[];
|
192
|
-
folderId: string | null;
|
193
193
|
}>>;
|
194
194
|
export declare class UpdateEventDto extends UpdateEventDto_base {
|
195
195
|
}
|
@@ -304,6 +304,16 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
|
|
304
304
|
created_at: Date;
|
305
305
|
updated_at: Date;
|
306
306
|
active: boolean;
|
307
|
+
folderId: string | null;
|
308
|
+
tagAssistedId: string;
|
309
|
+
tagConfirmedId: string;
|
310
|
+
supraEventId: string | null;
|
311
|
+
eventTickets: {
|
312
|
+
id: string;
|
313
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
314
|
+
amount: number;
|
315
|
+
price: number | null;
|
316
|
+
}[];
|
307
317
|
tagAssisted: {
|
308
318
|
id: string;
|
309
319
|
name: string;
|
@@ -320,16 +330,6 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
|
|
320
330
|
isExclusive: boolean;
|
321
331
|
};
|
322
332
|
};
|
323
|
-
eventTickets: {
|
324
|
-
id: string;
|
325
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
326
|
-
amount: number;
|
327
|
-
price: number | null;
|
328
|
-
}[];
|
329
|
-
folderId: string | null;
|
330
|
-
tagAssistedId: string;
|
331
|
-
tagConfirmedId: string;
|
332
|
-
supraEventId: string | null;
|
333
333
|
}, {
|
334
334
|
location: string;
|
335
335
|
id: string;
|
@@ -340,6 +340,16 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
|
|
340
340
|
created_at: Date;
|
341
341
|
updated_at: Date;
|
342
342
|
active: boolean;
|
343
|
+
folderId: string | null;
|
344
|
+
tagAssistedId: string;
|
345
|
+
tagConfirmedId: string;
|
346
|
+
supraEventId: string | null;
|
347
|
+
eventTickets: {
|
348
|
+
id: string;
|
349
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
350
|
+
amount: number;
|
351
|
+
price: number | null;
|
352
|
+
}[];
|
343
353
|
tagAssisted: {
|
344
354
|
id: string;
|
345
355
|
name: string;
|
@@ -356,16 +366,6 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
|
|
356
366
|
isExclusive: boolean;
|
357
367
|
};
|
358
368
|
};
|
359
|
-
eventTickets: {
|
360
|
-
id: string;
|
361
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
362
|
-
amount: number;
|
363
|
-
price: number | null;
|
364
|
-
}[];
|
365
|
-
folderId: string | null;
|
366
|
-
tagAssistedId: string;
|
367
|
-
tagConfirmedId: string;
|
368
|
-
supraEventId: string | null;
|
369
369
|
}>;
|
370
370
|
declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
371
371
|
id: z.ZodString;
|
@@ -476,6 +476,16 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
476
476
|
created_at: string;
|
477
477
|
updated_at: string;
|
478
478
|
active: boolean;
|
479
|
+
folderId: string | null;
|
480
|
+
tagAssistedId: string;
|
481
|
+
tagConfirmedId: string;
|
482
|
+
supraEventId: string | null;
|
483
|
+
eventTickets: {
|
484
|
+
id: string;
|
485
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
486
|
+
amount: number;
|
487
|
+
price: number | null;
|
488
|
+
}[];
|
479
489
|
tagAssisted: {
|
480
490
|
id: string;
|
481
491
|
name: string;
|
@@ -492,16 +502,6 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
492
502
|
isExclusive: boolean;
|
493
503
|
};
|
494
504
|
};
|
495
|
-
eventTickets: {
|
496
|
-
id: string;
|
497
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
498
|
-
amount: number;
|
499
|
-
price: number | null;
|
500
|
-
}[];
|
501
|
-
folderId: string | null;
|
502
|
-
tagAssistedId: string;
|
503
|
-
tagConfirmedId: string;
|
504
|
-
supraEventId: string | null;
|
505
505
|
}, {
|
506
506
|
location: string;
|
507
507
|
id: string;
|
@@ -512,6 +512,16 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
512
512
|
created_at: string;
|
513
513
|
updated_at: string;
|
514
514
|
active: boolean;
|
515
|
+
folderId: string | null;
|
516
|
+
tagAssistedId: string;
|
517
|
+
tagConfirmedId: string;
|
518
|
+
supraEventId: string | null;
|
519
|
+
eventTickets: {
|
520
|
+
id: string;
|
521
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
522
|
+
amount: number;
|
523
|
+
price: number | null;
|
524
|
+
}[];
|
515
525
|
tagAssisted: {
|
516
526
|
id: string;
|
517
527
|
name: string;
|
@@ -528,16 +538,6 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
528
538
|
isExclusive: boolean;
|
529
539
|
};
|
530
540
|
};
|
531
|
-
eventTickets: {
|
532
|
-
id: string;
|
533
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
534
|
-
amount: number;
|
535
|
-
price: number | null;
|
536
|
-
}[];
|
537
|
-
folderId: string | null;
|
538
|
-
tagAssistedId: string;
|
539
|
-
tagConfirmedId: string;
|
540
|
-
supraEventId: string | null;
|
541
541
|
}>>;
|
542
542
|
export declare class UpdateEventResponseDto extends UpdateEventResponseDto_base {
|
543
543
|
}
|
package/dist/src/exports.d.ts
CHANGED
@@ -2,6 +2,7 @@ export * from './account/exports';
|
|
2
2
|
export * from './auth/exports';
|
3
3
|
export * from './canned-response/exports';
|
4
4
|
export * from './comment/exports';
|
5
|
+
export * from './csv/exports';
|
5
6
|
export * from './event-folder/exports';
|
6
7
|
export * from './event/exports';
|
7
8
|
export * from './location/exports';
|
package/dist/src/exports.js
CHANGED
@@ -18,6 +18,7 @@ __exportStar(require("./account/exports"), exports);
|
|
18
18
|
__exportStar(require("./auth/exports"), exports);
|
19
19
|
__exportStar(require("./canned-response/exports"), exports);
|
20
20
|
__exportStar(require("./comment/exports"), exports);
|
21
|
+
__exportStar(require("./csv/exports"), exports);
|
21
22
|
__exportStar(require("./event-folder/exports"), exports);
|
22
23
|
__exportStar(require("./event/exports"), exports);
|
23
24
|
__exportStar(require("./location/exports"), exports);
|
package/dist/types/schema.d.ts
CHANGED
@@ -774,9 +774,9 @@ export interface paths {
|
|
774
774
|
path?: never;
|
775
775
|
cookie?: never;
|
776
776
|
};
|
777
|
-
get
|
777
|
+
get?: never;
|
778
778
|
put?: never;
|
779
|
-
post
|
779
|
+
post: operations["CsvController_downloadProfiles"];
|
780
780
|
delete?: never;
|
781
781
|
options?: never;
|
782
782
|
head?: never;
|
@@ -790,9 +790,9 @@ export interface paths {
|
|
790
790
|
path?: never;
|
791
791
|
cookie?: never;
|
792
792
|
};
|
793
|
-
get
|
793
|
+
get?: never;
|
794
794
|
put?: never;
|
795
|
-
post
|
795
|
+
post: operations["CsvController_downloadAllTables"];
|
796
796
|
delete?: never;
|
797
797
|
options?: never;
|
798
798
|
head?: never;
|