expo-backend-types 0.49.0-EXPO-355-ExpoBackend-Rutas-de-produccion.2 → 0.49.0-EXPO-355-ExpoBackend-Rutas-de-produccion.4
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/i18n/es.d.ts +9 -0
- package/dist/src/i18n/es.js +9 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/production/dto/create-production.dto.d.ts +2 -2
- package/dist/src/production/dto/delete-production.dto.d.ts +41 -0
- package/dist/src/production/dto/delete-production.dto.js +10 -0
- package/dist/src/production/dto/production.dto.d.ts +3 -3
- package/dist/src/production/dto/production.dto.js +1 -1
- package/dist/src/production/dto/update-production.dto.d.ts +63 -0
- package/dist/src/production/dto/update-production.dto.js +19 -0
- package/dist/src/production/exports.d.ts +3 -0
- package/dist/src/production/exports.js +3 -0
- package/dist/types/prisma-schema/edge.js +4 -4
- package/dist/types/prisma-schema/index-browser.js +1 -1
- package/dist/types/prisma-schema/index.d.ts +35 -35
- package/dist/types/prisma-schema/index.js +4 -4
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +3 -3
- package/dist/types/prisma-schema/wasm.js +1 -1
- package/dist/types/schema.d.ts +120 -0
- package/package.json +1 -1
package/dist/types/schema.d.ts
CHANGED
@@ -1439,6 +1439,38 @@ export interface paths {
|
|
1439
1439
|
patch?: never;
|
1440
1440
|
trace?: never;
|
1441
1441
|
};
|
1442
|
+
"/production/update/{id}": {
|
1443
|
+
parameters: {
|
1444
|
+
query?: never;
|
1445
|
+
header?: never;
|
1446
|
+
path?: never;
|
1447
|
+
cookie?: never;
|
1448
|
+
};
|
1449
|
+
get?: never;
|
1450
|
+
put?: never;
|
1451
|
+
post?: never;
|
1452
|
+
delete?: never;
|
1453
|
+
options?: never;
|
1454
|
+
head?: never;
|
1455
|
+
patch: operations["ProductionController_update"];
|
1456
|
+
trace?: never;
|
1457
|
+
};
|
1458
|
+
"/production/delete/{id}": {
|
1459
|
+
parameters: {
|
1460
|
+
query?: never;
|
1461
|
+
header?: never;
|
1462
|
+
path?: never;
|
1463
|
+
cookie?: never;
|
1464
|
+
};
|
1465
|
+
get?: never;
|
1466
|
+
put?: never;
|
1467
|
+
post?: never;
|
1468
|
+
delete: operations["ProductionController_deleteProduction"];
|
1469
|
+
options?: never;
|
1470
|
+
head?: never;
|
1471
|
+
patch?: never;
|
1472
|
+
trace?: never;
|
1473
|
+
};
|
1442
1474
|
}
|
1443
1475
|
export type webhooks = Record<string, never>;
|
1444
1476
|
export interface components {
|
@@ -3573,6 +3605,24 @@ export interface components {
|
|
3573
3605
|
CreateProductionDto: {
|
3574
3606
|
name: string;
|
3575
3607
|
};
|
3608
|
+
UpdateProductionDto: {
|
3609
|
+
name?: string;
|
3610
|
+
administratorId?: string | null;
|
3611
|
+
};
|
3612
|
+
UpdateProductionResponseDto: {
|
3613
|
+
id: string;
|
3614
|
+
name: string;
|
3615
|
+
administratorId: string | null;
|
3616
|
+
created_at: string;
|
3617
|
+
updated_at: string;
|
3618
|
+
};
|
3619
|
+
DeleteProductionResponseDto: {
|
3620
|
+
id: string;
|
3621
|
+
name: string;
|
3622
|
+
administratorId: string | null;
|
3623
|
+
created_at: string;
|
3624
|
+
updated_at: string;
|
3625
|
+
};
|
3576
3626
|
};
|
3577
3627
|
responses: never;
|
3578
3628
|
parameters: never;
|
@@ -6488,6 +6538,76 @@ export interface operations {
|
|
6488
6538
|
"application/json": components["schemas"]["CreateProductionDto"];
|
6489
6539
|
};
|
6490
6540
|
};
|
6541
|
+
409: {
|
6542
|
+
headers: {
|
6543
|
+
[name: string]: unknown;
|
6544
|
+
};
|
6545
|
+
content: {
|
6546
|
+
"application/json": components["schemas"]["ErrorDto"];
|
6547
|
+
};
|
6548
|
+
};
|
6549
|
+
};
|
6550
|
+
};
|
6551
|
+
ProductionController_update: {
|
6552
|
+
parameters: {
|
6553
|
+
query?: never;
|
6554
|
+
header?: never;
|
6555
|
+
path: {
|
6556
|
+
id: string;
|
6557
|
+
};
|
6558
|
+
cookie?: never;
|
6559
|
+
};
|
6560
|
+
requestBody: {
|
6561
|
+
content: {
|
6562
|
+
"application/json": components["schemas"]["UpdateProductionDto"];
|
6563
|
+
};
|
6564
|
+
};
|
6565
|
+
responses: {
|
6566
|
+
200: {
|
6567
|
+
headers: {
|
6568
|
+
[name: string]: unknown;
|
6569
|
+
};
|
6570
|
+
content: {
|
6571
|
+
"application/json": components["schemas"]["UpdateProductionResponseDto"];
|
6572
|
+
};
|
6573
|
+
};
|
6574
|
+
409: {
|
6575
|
+
headers: {
|
6576
|
+
[name: string]: unknown;
|
6577
|
+
};
|
6578
|
+
content: {
|
6579
|
+
"application/json": components["schemas"]["ErrorDto"];
|
6580
|
+
};
|
6581
|
+
};
|
6582
|
+
};
|
6583
|
+
};
|
6584
|
+
ProductionController_deleteProduction: {
|
6585
|
+
parameters: {
|
6586
|
+
query?: never;
|
6587
|
+
header?: never;
|
6588
|
+
path: {
|
6589
|
+
id: string;
|
6590
|
+
};
|
6591
|
+
cookie?: never;
|
6592
|
+
};
|
6593
|
+
requestBody?: never;
|
6594
|
+
responses: {
|
6595
|
+
200: {
|
6596
|
+
headers: {
|
6597
|
+
[name: string]: unknown;
|
6598
|
+
};
|
6599
|
+
content: {
|
6600
|
+
"application/json": components["schemas"]["DeleteProductionResponseDto"];
|
6601
|
+
};
|
6602
|
+
};
|
6603
|
+
409: {
|
6604
|
+
headers: {
|
6605
|
+
[name: string]: unknown;
|
6606
|
+
};
|
6607
|
+
content: {
|
6608
|
+
"application/json": components["schemas"]["ErrorDto"];
|
6609
|
+
};
|
6610
|
+
};
|
6491
6611
|
};
|
6492
6612
|
};
|
6493
6613
|
}
|