expo-backend-types 0.49.0 → 0.50.0
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/account/dto/get-global-filter.dto.d.ts +10 -8
- package/dist/src/account/dto/get-me.dto.d.ts +20 -16
- package/dist/src/account/dto/update-global-filter.dto.d.ts +10 -8
- package/dist/src/event/dto/get-all-event.dto.d.ts +236 -232
- package/dist/src/event/dto/get-all-event.dto.js +1 -1
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +136 -126
- package/dist/src/event/dto/get-by-id-event.dto.js +1 -1
- package/dist/src/event/dto/update-event.dto.d.ts +10 -8
- package/dist/src/exports.d.ts +1 -0
- package/dist/src/exports.js +1 -0
- package/dist/src/i18n/es.d.ts +57 -0
- package/dist/src/i18n/es.js +57 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/production/dto/create-production.dto.d.ts +41 -0
- package/dist/src/production/dto/create-production.dto.js +18 -0
- package/dist/src/production/dto/create-role.dto.d.ts +86 -0
- package/dist/src/production/dto/create-role.dto.js +16 -0
- 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/get-all-production.dto.d.ts +451 -0
- package/dist/src/production/dto/get-all-production.dto.js +21 -0
- package/dist/src/production/dto/production.dto.d.ts +20 -0
- package/dist/src/production/dto/production.dto.js +21 -0
- 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 +6 -0
- package/dist/src/production/exports.js +23 -0
- package/dist/src/production-affiliation-request/dto/create-production-affiliation-request.dto.d.ts +80 -0
- package/dist/src/production-affiliation-request/dto/create-production-affiliation-request.dto.js +16 -0
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +563 -0
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.js +21 -0
- package/dist/src/production-affiliation-request/dto/production-affiliation-request.dto.d.ts +27 -0
- package/dist/src/production-affiliation-request/dto/production-affiliation-request.dto.js +22 -0
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +390 -0
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.js +15 -0
- package/dist/src/production-affiliation-request/exports.d.ts +4 -0
- package/dist/src/production-affiliation-request/exports.js +21 -0
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +14 -12
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +24 -20
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +10 -8
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +14 -12
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +14 -12
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +14 -12
- package/dist/src/tag/dto/create-tag.dto.d.ts +41 -9
- package/dist/src/tag/dto/create-tag.dto.js +6 -5
- package/dist/src/tag/dto/delete-tag.dto.d.ts +6 -4
- package/dist/src/tag/dto/find-all-tag.dto.d.ts +10 -8
- package/dist/src/tag/dto/find-by-group-tag.dto.d.ts +10 -8
- package/dist/src/tag/dto/find-one-tag.dto.d.ts +6 -4
- package/dist/src/tag/dto/tag.dto.d.ts +6 -4
- package/dist/src/tag/dto/update-tag.dto.d.ts +7 -4
- package/dist/src/tag-group/dto/find-all-tag-group.dto.d.ts +14 -12
- package/dist/src/tag-group/dto/find-all-with-tags.dto.d.ts +14 -12
- package/dist/src/tag-group/dto/find-one-tag-group.dto.d.ts +10 -8
- package/dist/types/prisma-schema/edge.js +32 -5
- package/dist/types/prisma-schema/index-browser.js +29 -2
- package/dist/types/prisma-schema/index.d.ts +4879 -290
- package/dist/types/prisma-schema/index.js +32 -5
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +53 -3
- package/dist/types/prisma-schema/wasm.js +29 -2
- package/dist/types/schema.d.ts +607 -28
- package/package.json +1 -1
package/dist/types/schema.d.ts
CHANGED
@@ -1423,6 +1423,150 @@ export interface paths {
|
|
1423
1423
|
patch?: never;
|
1424
1424
|
trace?: never;
|
1425
1425
|
};
|
1426
|
+
"/production/all": {
|
1427
|
+
parameters: {
|
1428
|
+
query?: never;
|
1429
|
+
header?: never;
|
1430
|
+
path?: never;
|
1431
|
+
cookie?: never;
|
1432
|
+
};
|
1433
|
+
get: operations["ProductionController_getAll"];
|
1434
|
+
put?: never;
|
1435
|
+
post?: never;
|
1436
|
+
delete?: never;
|
1437
|
+
options?: never;
|
1438
|
+
head?: never;
|
1439
|
+
patch?: never;
|
1440
|
+
trace?: never;
|
1441
|
+
};
|
1442
|
+
"/production/create": {
|
1443
|
+
parameters: {
|
1444
|
+
query?: never;
|
1445
|
+
header?: never;
|
1446
|
+
path?: never;
|
1447
|
+
cookie?: never;
|
1448
|
+
};
|
1449
|
+
get?: never;
|
1450
|
+
put?: never;
|
1451
|
+
post: operations["ProductionController_create"];
|
1452
|
+
delete?: never;
|
1453
|
+
options?: never;
|
1454
|
+
head?: never;
|
1455
|
+
patch?: never;
|
1456
|
+
trace?: never;
|
1457
|
+
};
|
1458
|
+
"/production/create-role": {
|
1459
|
+
parameters: {
|
1460
|
+
query?: never;
|
1461
|
+
header?: never;
|
1462
|
+
path?: never;
|
1463
|
+
cookie?: never;
|
1464
|
+
};
|
1465
|
+
get?: never;
|
1466
|
+
put?: never;
|
1467
|
+
post: operations["ProductionController_createRole"];
|
1468
|
+
delete?: never;
|
1469
|
+
options?: never;
|
1470
|
+
head?: never;
|
1471
|
+
patch?: never;
|
1472
|
+
trace?: never;
|
1473
|
+
};
|
1474
|
+
"/production/update/{id}": {
|
1475
|
+
parameters: {
|
1476
|
+
query?: never;
|
1477
|
+
header?: never;
|
1478
|
+
path?: never;
|
1479
|
+
cookie?: never;
|
1480
|
+
};
|
1481
|
+
get?: never;
|
1482
|
+
put?: never;
|
1483
|
+
post?: never;
|
1484
|
+
delete?: never;
|
1485
|
+
options?: never;
|
1486
|
+
head?: never;
|
1487
|
+
patch: operations["ProductionController_update"];
|
1488
|
+
trace?: never;
|
1489
|
+
};
|
1490
|
+
"/production/delete/{id}": {
|
1491
|
+
parameters: {
|
1492
|
+
query?: never;
|
1493
|
+
header?: never;
|
1494
|
+
path?: never;
|
1495
|
+
cookie?: never;
|
1496
|
+
};
|
1497
|
+
get?: never;
|
1498
|
+
put?: never;
|
1499
|
+
post?: never;
|
1500
|
+
delete: operations["ProductionController_deleteProduction"];
|
1501
|
+
options?: never;
|
1502
|
+
head?: never;
|
1503
|
+
patch?: never;
|
1504
|
+
trace?: never;
|
1505
|
+
};
|
1506
|
+
"/production-affiliation-request/create": {
|
1507
|
+
parameters: {
|
1508
|
+
query?: never;
|
1509
|
+
header?: never;
|
1510
|
+
path?: never;
|
1511
|
+
cookie?: never;
|
1512
|
+
};
|
1513
|
+
get?: never;
|
1514
|
+
put?: never;
|
1515
|
+
post: operations["ProductionAffiliationRequestController_create"];
|
1516
|
+
delete?: never;
|
1517
|
+
options?: never;
|
1518
|
+
head?: never;
|
1519
|
+
patch?: never;
|
1520
|
+
trace?: never;
|
1521
|
+
};
|
1522
|
+
"/production-affiliation-request/accept/{id}": {
|
1523
|
+
parameters: {
|
1524
|
+
query?: never;
|
1525
|
+
header?: never;
|
1526
|
+
path?: never;
|
1527
|
+
cookie?: never;
|
1528
|
+
};
|
1529
|
+
get?: never;
|
1530
|
+
put?: never;
|
1531
|
+
post: operations["ProductionAffiliationRequestController_accept"];
|
1532
|
+
delete?: never;
|
1533
|
+
options?: never;
|
1534
|
+
head?: never;
|
1535
|
+
patch?: never;
|
1536
|
+
trace?: never;
|
1537
|
+
};
|
1538
|
+
"/production-affiliation-request/reject/{id}": {
|
1539
|
+
parameters: {
|
1540
|
+
query?: never;
|
1541
|
+
header?: never;
|
1542
|
+
path?: never;
|
1543
|
+
cookie?: never;
|
1544
|
+
};
|
1545
|
+
get?: never;
|
1546
|
+
put?: never;
|
1547
|
+
post: operations["ProductionAffiliationRequestController_reject"];
|
1548
|
+
delete?: never;
|
1549
|
+
options?: never;
|
1550
|
+
head?: never;
|
1551
|
+
patch?: never;
|
1552
|
+
trace?: never;
|
1553
|
+
};
|
1554
|
+
"/production-affiliation-request/get-by-production/{id}": {
|
1555
|
+
parameters: {
|
1556
|
+
query?: never;
|
1557
|
+
header?: never;
|
1558
|
+
path?: never;
|
1559
|
+
cookie?: never;
|
1560
|
+
};
|
1561
|
+
get: operations["ProductionAffiliationRequestController_findByProduction"];
|
1562
|
+
put?: never;
|
1563
|
+
post?: never;
|
1564
|
+
delete?: never;
|
1565
|
+
options?: never;
|
1566
|
+
head?: never;
|
1567
|
+
patch?: never;
|
1568
|
+
trace?: never;
|
1569
|
+
};
|
1426
1570
|
}
|
1427
1571
|
export type webhooks = Record<string, never>;
|
1428
1572
|
export interface components {
|
@@ -1460,19 +1604,22 @@ export interface components {
|
|
1460
1604
|
CreateTagDto: {
|
1461
1605
|
name: string;
|
1462
1606
|
groupId: string;
|
1607
|
+
type?: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1463
1608
|
};
|
1464
1609
|
CreateTagResponseDto: {
|
1465
1610
|
id: string;
|
1466
1611
|
name: string;
|
1467
1612
|
groupId: string;
|
1468
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1613
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1614
|
+
created_at: string;
|
1615
|
+
updated_at: string;
|
1469
1616
|
};
|
1470
1617
|
FindAllTagResponseDto: {
|
1471
1618
|
tags: {
|
1472
1619
|
id: string;
|
1473
1620
|
name: string;
|
1474
1621
|
groupId: string;
|
1475
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1622
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1476
1623
|
created_at: string;
|
1477
1624
|
updated_at: string;
|
1478
1625
|
group: {
|
@@ -1490,7 +1637,7 @@ export interface components {
|
|
1490
1637
|
id: string;
|
1491
1638
|
name: string;
|
1492
1639
|
groupId: string;
|
1493
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1640
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1494
1641
|
created_at: string;
|
1495
1642
|
updated_at: string;
|
1496
1643
|
group: {
|
@@ -1507,7 +1654,7 @@ export interface components {
|
|
1507
1654
|
id: string;
|
1508
1655
|
name: string;
|
1509
1656
|
groupId: string;
|
1510
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1657
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1511
1658
|
created_at: string;
|
1512
1659
|
updated_at: string;
|
1513
1660
|
group: {
|
@@ -1527,7 +1674,7 @@ export interface components {
|
|
1527
1674
|
id: string;
|
1528
1675
|
name: string;
|
1529
1676
|
groupId: string;
|
1530
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1677
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1531
1678
|
created_at: string;
|
1532
1679
|
updated_at: string;
|
1533
1680
|
};
|
@@ -1535,7 +1682,7 @@ export interface components {
|
|
1535
1682
|
id: string;
|
1536
1683
|
name: string;
|
1537
1684
|
groupId: string;
|
1538
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1685
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1539
1686
|
created_at: string;
|
1540
1687
|
updated_at: string;
|
1541
1688
|
};
|
@@ -1632,7 +1779,7 @@ export interface components {
|
|
1632
1779
|
id: string;
|
1633
1780
|
name: string;
|
1634
1781
|
groupId: string;
|
1635
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1782
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1636
1783
|
created_at: string;
|
1637
1784
|
updated_at: string;
|
1638
1785
|
}[];
|
@@ -1642,7 +1789,7 @@ export interface components {
|
|
1642
1789
|
globalFilter: {
|
1643
1790
|
id: string;
|
1644
1791
|
name: string;
|
1645
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1792
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1646
1793
|
group: {
|
1647
1794
|
id: string;
|
1648
1795
|
color: string;
|
@@ -1661,7 +1808,7 @@ export interface components {
|
|
1661
1808
|
globalFilter: {
|
1662
1809
|
id: string;
|
1663
1810
|
name: string;
|
1664
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1811
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1665
1812
|
group: {
|
1666
1813
|
id: string;
|
1667
1814
|
color: string;
|
@@ -1672,7 +1819,7 @@ export interface components {
|
|
1672
1819
|
id: string;
|
1673
1820
|
name: string;
|
1674
1821
|
groupId: string;
|
1675
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1822
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1676
1823
|
created_at: string;
|
1677
1824
|
updated_at: string;
|
1678
1825
|
}[];
|
@@ -1702,7 +1849,7 @@ export interface components {
|
|
1702
1849
|
id: string;
|
1703
1850
|
name: string;
|
1704
1851
|
groupId: string;
|
1705
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1852
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1706
1853
|
created_at: string;
|
1707
1854
|
updated_at: string;
|
1708
1855
|
}[];
|
@@ -1718,7 +1865,7 @@ export interface components {
|
|
1718
1865
|
id: string;
|
1719
1866
|
name: string;
|
1720
1867
|
groupId: string;
|
1721
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1868
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1722
1869
|
created_at: string;
|
1723
1870
|
updated_at: string;
|
1724
1871
|
_count: {
|
@@ -1741,7 +1888,7 @@ export interface components {
|
|
1741
1888
|
id: string;
|
1742
1889
|
name: string;
|
1743
1890
|
groupId: string;
|
1744
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1891
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1745
1892
|
created_at: string;
|
1746
1893
|
updated_at: string;
|
1747
1894
|
}[];
|
@@ -2062,10 +2209,10 @@ export interface components {
|
|
2062
2209
|
created_at: string;
|
2063
2210
|
updated_at: string;
|
2064
2211
|
}[];
|
2065
|
-
|
2212
|
+
profileTags: {
|
2066
2213
|
id: string;
|
2067
2214
|
name: string;
|
2068
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
2215
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2069
2216
|
group: {
|
2070
2217
|
id: string;
|
2071
2218
|
color: string;
|
@@ -2125,10 +2272,10 @@ export interface components {
|
|
2125
2272
|
created_at: string;
|
2126
2273
|
updated_at: string;
|
2127
2274
|
}[];
|
2128
|
-
|
2275
|
+
profileTags: {
|
2129
2276
|
id: string;
|
2130
2277
|
name: string;
|
2131
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
2278
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2132
2279
|
group: {
|
2133
2280
|
id: string;
|
2134
2281
|
color: string;
|
@@ -2217,11 +2364,11 @@ export interface components {
|
|
2217
2364
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2218
2365
|
price: number | null;
|
2219
2366
|
}[];
|
2220
|
-
|
2367
|
+
profileTags: {
|
2221
2368
|
id: string;
|
2222
2369
|
name: string;
|
2223
2370
|
groupId: string;
|
2224
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
2371
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2225
2372
|
created_at: string;
|
2226
2373
|
updated_at: string;
|
2227
2374
|
group: {
|
@@ -2251,7 +2398,7 @@ export interface components {
|
|
2251
2398
|
id: string;
|
2252
2399
|
name: string;
|
2253
2400
|
groupId: string;
|
2254
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
2401
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2255
2402
|
created_at: string;
|
2256
2403
|
updated_at: string;
|
2257
2404
|
group: {
|
@@ -2267,7 +2414,7 @@ export interface components {
|
|
2267
2414
|
id: string;
|
2268
2415
|
name: string;
|
2269
2416
|
groupId: string;
|
2270
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
2417
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2271
2418
|
created_at: string;
|
2272
2419
|
updated_at: string;
|
2273
2420
|
group: {
|
@@ -2320,7 +2467,7 @@ export interface components {
|
|
2320
2467
|
id: string;
|
2321
2468
|
name: string;
|
2322
2469
|
groupId: string;
|
2323
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
2470
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2324
2471
|
created_at: string;
|
2325
2472
|
updated_at: string;
|
2326
2473
|
group: {
|
@@ -2384,7 +2531,7 @@ export interface components {
|
|
2384
2531
|
id: string;
|
2385
2532
|
name: string;
|
2386
2533
|
groupId: string;
|
2387
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
2534
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2388
2535
|
created_at: string;
|
2389
2536
|
updated_at: string;
|
2390
2537
|
group: {
|
@@ -2424,7 +2571,7 @@ export interface components {
|
|
2424
2571
|
id: string;
|
2425
2572
|
name: string;
|
2426
2573
|
groupId: string;
|
2427
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
2574
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2428
2575
|
created_at: string;
|
2429
2576
|
updated_at: string;
|
2430
2577
|
}[];
|
@@ -2482,7 +2629,7 @@ export interface components {
|
|
2482
2629
|
id: string;
|
2483
2630
|
name: string;
|
2484
2631
|
groupId: string;
|
2485
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
2632
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2486
2633
|
created_at: string;
|
2487
2634
|
updated_at: string;
|
2488
2635
|
group: {
|
@@ -2523,7 +2670,7 @@ export interface components {
|
|
2523
2670
|
id: string;
|
2524
2671
|
name: string;
|
2525
2672
|
groupId: string;
|
2526
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
2673
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2527
2674
|
created_at: string;
|
2528
2675
|
updated_at: string;
|
2529
2676
|
}[];
|
@@ -2559,7 +2706,7 @@ export interface components {
|
|
2559
2706
|
id: string;
|
2560
2707
|
name: string;
|
2561
2708
|
groupId: string;
|
2562
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
2709
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2563
2710
|
created_at: string;
|
2564
2711
|
updated_at: string;
|
2565
2712
|
group: {
|
@@ -2706,7 +2853,7 @@ export interface components {
|
|
2706
2853
|
id: string;
|
2707
2854
|
name: string;
|
2708
2855
|
groupId: string;
|
2709
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
2856
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2710
2857
|
created_at: string;
|
2711
2858
|
updated_at: string;
|
2712
2859
|
group: {
|
@@ -3554,6 +3701,153 @@ export interface components {
|
|
3554
3701
|
user_id: number;
|
3555
3702
|
};
|
3556
3703
|
Response: Record<string, never>;
|
3704
|
+
GetAllProductionResponseDto: {
|
3705
|
+
productions: {
|
3706
|
+
id: string;
|
3707
|
+
name: string;
|
3708
|
+
administratorId: string | null;
|
3709
|
+
created_at: string;
|
3710
|
+
updated_at: string;
|
3711
|
+
administrator: {
|
3712
|
+
id: string;
|
3713
|
+
shortId: number;
|
3714
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
3715
|
+
firstTimeMiExpo: boolean;
|
3716
|
+
username: string | null;
|
3717
|
+
password: string | null;
|
3718
|
+
phoneNumber: string;
|
3719
|
+
isPhoneVerified: boolean;
|
3720
|
+
secondaryPhoneNumber: string | null;
|
3721
|
+
fullName: string;
|
3722
|
+
firstName: string | null;
|
3723
|
+
gender: string | null;
|
3724
|
+
birthDate: string | null;
|
3725
|
+
profilePictureUrl: string | null;
|
3726
|
+
instagram: string | null;
|
3727
|
+
mail: string | null;
|
3728
|
+
dni: string | null;
|
3729
|
+
alternativeNames: string[];
|
3730
|
+
birthLocationId: string | null;
|
3731
|
+
residenceLocationId: string | null;
|
3732
|
+
isInTrash: boolean;
|
3733
|
+
movedToTrashDate: string | null;
|
3734
|
+
created_at: string;
|
3735
|
+
updated_at: string;
|
3736
|
+
} | null;
|
3737
|
+
}[];
|
3738
|
+
};
|
3739
|
+
CreateProductionDto: {
|
3740
|
+
name: string;
|
3741
|
+
administratorId: string | null;
|
3742
|
+
};
|
3743
|
+
CreateProductionRoleDto: {
|
3744
|
+
name: string;
|
3745
|
+
};
|
3746
|
+
UpdateProductionDto: {
|
3747
|
+
name?: string;
|
3748
|
+
administratorId?: string | null;
|
3749
|
+
};
|
3750
|
+
UpdateProductionResponseDto: {
|
3751
|
+
id: string;
|
3752
|
+
name: string;
|
3753
|
+
administratorId: string | null;
|
3754
|
+
created_at: string;
|
3755
|
+
updated_at: string;
|
3756
|
+
};
|
3757
|
+
DeleteProductionResponseDto: {
|
3758
|
+
id: string;
|
3759
|
+
name: string;
|
3760
|
+
administratorId: string | null;
|
3761
|
+
created_at: string;
|
3762
|
+
updated_at: string;
|
3763
|
+
};
|
3764
|
+
CreateProductionAffiliationRequestDto: {
|
3765
|
+
productionId: string;
|
3766
|
+
};
|
3767
|
+
UpdateProductionAffiliationRequestResponseDto: {
|
3768
|
+
id: string;
|
3769
|
+
productionId: string;
|
3770
|
+
profileId: string;
|
3771
|
+
status: "APPROVED" | "PENDING" | "REJECTED";
|
3772
|
+
created_at: string;
|
3773
|
+
updated_at: string;
|
3774
|
+
production: {
|
3775
|
+
id: string;
|
3776
|
+
name: string;
|
3777
|
+
administratorId: string | null;
|
3778
|
+
created_at: string;
|
3779
|
+
updated_at: string;
|
3780
|
+
};
|
3781
|
+
profile: {
|
3782
|
+
id: string;
|
3783
|
+
shortId: number;
|
3784
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
3785
|
+
firstTimeMiExpo: boolean;
|
3786
|
+
username: string | null;
|
3787
|
+
password: string | null;
|
3788
|
+
phoneNumber: string;
|
3789
|
+
isPhoneVerified: boolean;
|
3790
|
+
secondaryPhoneNumber: string | null;
|
3791
|
+
fullName: string;
|
3792
|
+
firstName: string | null;
|
3793
|
+
gender: string | null;
|
3794
|
+
birthDate: string | null;
|
3795
|
+
profilePictureUrl: string | null;
|
3796
|
+
instagram: string | null;
|
3797
|
+
mail: string | null;
|
3798
|
+
dni: string | null;
|
3799
|
+
alternativeNames: string[];
|
3800
|
+
birthLocationId: string | null;
|
3801
|
+
residenceLocationId: string | null;
|
3802
|
+
isInTrash: boolean;
|
3803
|
+
movedToTrashDate: string | null;
|
3804
|
+
created_at: string;
|
3805
|
+
updated_at: string;
|
3806
|
+
};
|
3807
|
+
};
|
3808
|
+
FindByProductionAffiliationRequestResponseDto: {
|
3809
|
+
productions: {
|
3810
|
+
id: string;
|
3811
|
+
productionId: string;
|
3812
|
+
profileId: string;
|
3813
|
+
status: "APPROVED" | "PENDING" | "REJECTED";
|
3814
|
+
created_at: string;
|
3815
|
+
updated_at: string;
|
3816
|
+
production: {
|
3817
|
+
id: string;
|
3818
|
+
name: string;
|
3819
|
+
administratorId: string | null;
|
3820
|
+
created_at: string;
|
3821
|
+
updated_at: string;
|
3822
|
+
};
|
3823
|
+
profile: {
|
3824
|
+
id: string;
|
3825
|
+
shortId: number;
|
3826
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
3827
|
+
firstTimeMiExpo: boolean;
|
3828
|
+
username: string | null;
|
3829
|
+
password: string | null;
|
3830
|
+
phoneNumber: string;
|
3831
|
+
isPhoneVerified: boolean;
|
3832
|
+
secondaryPhoneNumber: string | null;
|
3833
|
+
fullName: string;
|
3834
|
+
firstName: string | null;
|
3835
|
+
gender: string | null;
|
3836
|
+
birthDate: string | null;
|
3837
|
+
profilePictureUrl: string | null;
|
3838
|
+
instagram: string | null;
|
3839
|
+
mail: string | null;
|
3840
|
+
dni: string | null;
|
3841
|
+
alternativeNames: string[];
|
3842
|
+
birthLocationId: string | null;
|
3843
|
+
residenceLocationId: string | null;
|
3844
|
+
isInTrash: boolean;
|
3845
|
+
movedToTrashDate: string | null;
|
3846
|
+
created_at: string;
|
3847
|
+
updated_at: string;
|
3848
|
+
};
|
3849
|
+
}[];
|
3850
|
+
};
|
3557
3851
|
};
|
3558
3852
|
responses: never;
|
3559
3853
|
parameters: never;
|
@@ -6448,4 +6742,289 @@ export interface operations {
|
|
6448
6742
|
};
|
6449
6743
|
};
|
6450
6744
|
};
|
6745
|
+
ProductionController_getAll: {
|
6746
|
+
parameters: {
|
6747
|
+
query?: never;
|
6748
|
+
header?: never;
|
6749
|
+
path?: never;
|
6750
|
+
cookie?: never;
|
6751
|
+
};
|
6752
|
+
requestBody?: never;
|
6753
|
+
responses: {
|
6754
|
+
200: {
|
6755
|
+
headers: {
|
6756
|
+
[name: string]: unknown;
|
6757
|
+
};
|
6758
|
+
content: {
|
6759
|
+
"application/json": components["schemas"]["GetAllProductionResponseDto"];
|
6760
|
+
};
|
6761
|
+
};
|
6762
|
+
};
|
6763
|
+
};
|
6764
|
+
ProductionController_create: {
|
6765
|
+
parameters: {
|
6766
|
+
query?: never;
|
6767
|
+
header?: never;
|
6768
|
+
path?: never;
|
6769
|
+
cookie?: never;
|
6770
|
+
};
|
6771
|
+
requestBody: {
|
6772
|
+
content: {
|
6773
|
+
"application/json": components["schemas"]["CreateProductionDto"];
|
6774
|
+
};
|
6775
|
+
};
|
6776
|
+
responses: {
|
6777
|
+
200: {
|
6778
|
+
headers: {
|
6779
|
+
[name: string]: unknown;
|
6780
|
+
};
|
6781
|
+
content: {
|
6782
|
+
"application/json": components["schemas"]["CreateProductionDto"];
|
6783
|
+
};
|
6784
|
+
};
|
6785
|
+
409: {
|
6786
|
+
headers: {
|
6787
|
+
[name: string]: unknown;
|
6788
|
+
};
|
6789
|
+
content: {
|
6790
|
+
"application/json": components["schemas"]["ErrorDto"];
|
6791
|
+
};
|
6792
|
+
};
|
6793
|
+
};
|
6794
|
+
};
|
6795
|
+
ProductionController_createRole: {
|
6796
|
+
parameters: {
|
6797
|
+
query?: never;
|
6798
|
+
header?: never;
|
6799
|
+
path?: never;
|
6800
|
+
cookie?: never;
|
6801
|
+
};
|
6802
|
+
requestBody: {
|
6803
|
+
content: {
|
6804
|
+
"application/json": components["schemas"]["CreateProductionRoleDto"];
|
6805
|
+
};
|
6806
|
+
};
|
6807
|
+
responses: {
|
6808
|
+
201: {
|
6809
|
+
headers: {
|
6810
|
+
[name: string]: unknown;
|
6811
|
+
};
|
6812
|
+
content: {
|
6813
|
+
"application/json": components["schemas"]["CreateProductionDto"];
|
6814
|
+
};
|
6815
|
+
};
|
6816
|
+
};
|
6817
|
+
};
|
6818
|
+
ProductionController_update: {
|
6819
|
+
parameters: {
|
6820
|
+
query?: never;
|
6821
|
+
header?: never;
|
6822
|
+
path: {
|
6823
|
+
id: string;
|
6824
|
+
};
|
6825
|
+
cookie?: never;
|
6826
|
+
};
|
6827
|
+
requestBody: {
|
6828
|
+
content: {
|
6829
|
+
"application/json": components["schemas"]["UpdateProductionDto"];
|
6830
|
+
};
|
6831
|
+
};
|
6832
|
+
responses: {
|
6833
|
+
200: {
|
6834
|
+
headers: {
|
6835
|
+
[name: string]: unknown;
|
6836
|
+
};
|
6837
|
+
content: {
|
6838
|
+
"application/json": components["schemas"]["UpdateProductionResponseDto"];
|
6839
|
+
};
|
6840
|
+
};
|
6841
|
+
404: {
|
6842
|
+
headers: {
|
6843
|
+
[name: string]: unknown;
|
6844
|
+
};
|
6845
|
+
content: {
|
6846
|
+
"application/json": components["schemas"]["ErrorDto"];
|
6847
|
+
};
|
6848
|
+
};
|
6849
|
+
409: {
|
6850
|
+
headers: {
|
6851
|
+
[name: string]: unknown;
|
6852
|
+
};
|
6853
|
+
content: {
|
6854
|
+
"application/json": components["schemas"]["ErrorDto"];
|
6855
|
+
};
|
6856
|
+
};
|
6857
|
+
};
|
6858
|
+
};
|
6859
|
+
ProductionController_deleteProduction: {
|
6860
|
+
parameters: {
|
6861
|
+
query?: never;
|
6862
|
+
header?: never;
|
6863
|
+
path: {
|
6864
|
+
id: string;
|
6865
|
+
};
|
6866
|
+
cookie?: never;
|
6867
|
+
};
|
6868
|
+
requestBody?: never;
|
6869
|
+
responses: {
|
6870
|
+
200: {
|
6871
|
+
headers: {
|
6872
|
+
[name: string]: unknown;
|
6873
|
+
};
|
6874
|
+
content: {
|
6875
|
+
"application/json": components["schemas"]["DeleteProductionResponseDto"];
|
6876
|
+
};
|
6877
|
+
};
|
6878
|
+
404: {
|
6879
|
+
headers: {
|
6880
|
+
[name: string]: unknown;
|
6881
|
+
};
|
6882
|
+
content: {
|
6883
|
+
"application/json": components["schemas"]["ErrorDto"];
|
6884
|
+
};
|
6885
|
+
};
|
6886
|
+
409: {
|
6887
|
+
headers: {
|
6888
|
+
[name: string]: unknown;
|
6889
|
+
};
|
6890
|
+
content: {
|
6891
|
+
"application/json": components["schemas"]["ErrorDto"];
|
6892
|
+
};
|
6893
|
+
};
|
6894
|
+
};
|
6895
|
+
};
|
6896
|
+
ProductionAffiliationRequestController_create: {
|
6897
|
+
parameters: {
|
6898
|
+
query?: never;
|
6899
|
+
header?: never;
|
6900
|
+
path?: never;
|
6901
|
+
cookie?: never;
|
6902
|
+
};
|
6903
|
+
requestBody: {
|
6904
|
+
content: {
|
6905
|
+
"application/json": components["schemas"]["CreateProductionAffiliationRequestDto"];
|
6906
|
+
};
|
6907
|
+
};
|
6908
|
+
responses: {
|
6909
|
+
201: {
|
6910
|
+
headers: {
|
6911
|
+
[name: string]: unknown;
|
6912
|
+
};
|
6913
|
+
content: {
|
6914
|
+
"application/json": components["schemas"]["CreateProductionAffiliationRequestDto"];
|
6915
|
+
};
|
6916
|
+
};
|
6917
|
+
409: {
|
6918
|
+
headers: {
|
6919
|
+
[name: string]: unknown;
|
6920
|
+
};
|
6921
|
+
content: {
|
6922
|
+
"application/json": components["schemas"]["ErrorDto"];
|
6923
|
+
};
|
6924
|
+
};
|
6925
|
+
};
|
6926
|
+
};
|
6927
|
+
ProductionAffiliationRequestController_accept: {
|
6928
|
+
parameters: {
|
6929
|
+
query?: never;
|
6930
|
+
header?: never;
|
6931
|
+
path: {
|
6932
|
+
id: string;
|
6933
|
+
};
|
6934
|
+
cookie?: never;
|
6935
|
+
};
|
6936
|
+
requestBody?: never;
|
6937
|
+
responses: {
|
6938
|
+
200: {
|
6939
|
+
headers: {
|
6940
|
+
[name: string]: unknown;
|
6941
|
+
};
|
6942
|
+
content: {
|
6943
|
+
"application/json": components["schemas"]["UpdateProductionAffiliationRequestResponseDto"];
|
6944
|
+
};
|
6945
|
+
};
|
6946
|
+
401: {
|
6947
|
+
headers: {
|
6948
|
+
[name: string]: unknown;
|
6949
|
+
};
|
6950
|
+
content: {
|
6951
|
+
"application/json": components["schemas"]["ErrorDto"];
|
6952
|
+
};
|
6953
|
+
};
|
6954
|
+
404: {
|
6955
|
+
headers: {
|
6956
|
+
[name: string]: unknown;
|
6957
|
+
};
|
6958
|
+
content: {
|
6959
|
+
"application/json": components["schemas"]["ErrorDto"];
|
6960
|
+
};
|
6961
|
+
};
|
6962
|
+
};
|
6963
|
+
};
|
6964
|
+
ProductionAffiliationRequestController_reject: {
|
6965
|
+
parameters: {
|
6966
|
+
query?: never;
|
6967
|
+
header?: never;
|
6968
|
+
path: {
|
6969
|
+
id: string;
|
6970
|
+
};
|
6971
|
+
cookie?: never;
|
6972
|
+
};
|
6973
|
+
requestBody?: never;
|
6974
|
+
responses: {
|
6975
|
+
200: {
|
6976
|
+
headers: {
|
6977
|
+
[name: string]: unknown;
|
6978
|
+
};
|
6979
|
+
content: {
|
6980
|
+
"application/json": components["schemas"]["UpdateProductionAffiliationRequestResponseDto"];
|
6981
|
+
};
|
6982
|
+
};
|
6983
|
+
401: {
|
6984
|
+
headers: {
|
6985
|
+
[name: string]: unknown;
|
6986
|
+
};
|
6987
|
+
content: {
|
6988
|
+
"application/json": components["schemas"]["ErrorDto"];
|
6989
|
+
};
|
6990
|
+
};
|
6991
|
+
404: {
|
6992
|
+
headers: {
|
6993
|
+
[name: string]: unknown;
|
6994
|
+
};
|
6995
|
+
content: {
|
6996
|
+
"application/json": components["schemas"]["ErrorDto"];
|
6997
|
+
};
|
6998
|
+
};
|
6999
|
+
};
|
7000
|
+
};
|
7001
|
+
ProductionAffiliationRequestController_findByProduction: {
|
7002
|
+
parameters: {
|
7003
|
+
query?: never;
|
7004
|
+
header?: never;
|
7005
|
+
path: {
|
7006
|
+
id: string;
|
7007
|
+
};
|
7008
|
+
cookie?: never;
|
7009
|
+
};
|
7010
|
+
requestBody?: never;
|
7011
|
+
responses: {
|
7012
|
+
200: {
|
7013
|
+
headers: {
|
7014
|
+
[name: string]: unknown;
|
7015
|
+
};
|
7016
|
+
content: {
|
7017
|
+
"application/json": components["schemas"]["FindByProductionAffiliationRequestResponseDto"];
|
7018
|
+
};
|
7019
|
+
};
|
7020
|
+
404: {
|
7021
|
+
headers: {
|
7022
|
+
[name: string]: unknown;
|
7023
|
+
};
|
7024
|
+
content: {
|
7025
|
+
"application/json": components["schemas"]["ErrorDto"];
|
7026
|
+
};
|
7027
|
+
};
|
7028
|
+
};
|
7029
|
+
};
|
6451
7030
|
}
|