expo-backend-types 0.50.0-EXPO-349-Ricardo-Fort.2 → 0.51.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-all-statistics.dto.d.ts +20 -20
- 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/get-statistics-by-id-event.dto.d.ts +20 -20
- 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 +54 -4
- 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
@@ -1455,6 +1455,150 @@ export interface paths {
|
|
1455
1455
|
patch?: never;
|
1456
1456
|
trace?: never;
|
1457
1457
|
};
|
1458
|
+
"/production/all": {
|
1459
|
+
parameters: {
|
1460
|
+
query?: never;
|
1461
|
+
header?: never;
|
1462
|
+
path?: never;
|
1463
|
+
cookie?: never;
|
1464
|
+
};
|
1465
|
+
get: operations["ProductionController_getAll"];
|
1466
|
+
put?: never;
|
1467
|
+
post?: never;
|
1468
|
+
delete?: never;
|
1469
|
+
options?: never;
|
1470
|
+
head?: never;
|
1471
|
+
patch?: never;
|
1472
|
+
trace?: never;
|
1473
|
+
};
|
1474
|
+
"/production/create": {
|
1475
|
+
parameters: {
|
1476
|
+
query?: never;
|
1477
|
+
header?: never;
|
1478
|
+
path?: never;
|
1479
|
+
cookie?: never;
|
1480
|
+
};
|
1481
|
+
get?: never;
|
1482
|
+
put?: never;
|
1483
|
+
post: operations["ProductionController_create"];
|
1484
|
+
delete?: never;
|
1485
|
+
options?: never;
|
1486
|
+
head?: never;
|
1487
|
+
patch?: never;
|
1488
|
+
trace?: never;
|
1489
|
+
};
|
1490
|
+
"/production/create-role": {
|
1491
|
+
parameters: {
|
1492
|
+
query?: never;
|
1493
|
+
header?: never;
|
1494
|
+
path?: never;
|
1495
|
+
cookie?: never;
|
1496
|
+
};
|
1497
|
+
get?: never;
|
1498
|
+
put?: never;
|
1499
|
+
post: operations["ProductionController_createRole"];
|
1500
|
+
delete?: never;
|
1501
|
+
options?: never;
|
1502
|
+
head?: never;
|
1503
|
+
patch?: never;
|
1504
|
+
trace?: never;
|
1505
|
+
};
|
1506
|
+
"/production/update/{id}": {
|
1507
|
+
parameters: {
|
1508
|
+
query?: never;
|
1509
|
+
header?: never;
|
1510
|
+
path?: never;
|
1511
|
+
cookie?: never;
|
1512
|
+
};
|
1513
|
+
get?: never;
|
1514
|
+
put?: never;
|
1515
|
+
post?: never;
|
1516
|
+
delete?: never;
|
1517
|
+
options?: never;
|
1518
|
+
head?: never;
|
1519
|
+
patch: operations["ProductionController_update"];
|
1520
|
+
trace?: never;
|
1521
|
+
};
|
1522
|
+
"/production/delete/{id}": {
|
1523
|
+
parameters: {
|
1524
|
+
query?: never;
|
1525
|
+
header?: never;
|
1526
|
+
path?: never;
|
1527
|
+
cookie?: never;
|
1528
|
+
};
|
1529
|
+
get?: never;
|
1530
|
+
put?: never;
|
1531
|
+
post?: never;
|
1532
|
+
delete: operations["ProductionController_deleteProduction"];
|
1533
|
+
options?: never;
|
1534
|
+
head?: never;
|
1535
|
+
patch?: never;
|
1536
|
+
trace?: never;
|
1537
|
+
};
|
1538
|
+
"/production-affiliation-request/create": {
|
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_create"];
|
1548
|
+
delete?: never;
|
1549
|
+
options?: never;
|
1550
|
+
head?: never;
|
1551
|
+
patch?: never;
|
1552
|
+
trace?: never;
|
1553
|
+
};
|
1554
|
+
"/production-affiliation-request/accept/{id}": {
|
1555
|
+
parameters: {
|
1556
|
+
query?: never;
|
1557
|
+
header?: never;
|
1558
|
+
path?: never;
|
1559
|
+
cookie?: never;
|
1560
|
+
};
|
1561
|
+
get?: never;
|
1562
|
+
put?: never;
|
1563
|
+
post: operations["ProductionAffiliationRequestController_accept"];
|
1564
|
+
delete?: never;
|
1565
|
+
options?: never;
|
1566
|
+
head?: never;
|
1567
|
+
patch?: never;
|
1568
|
+
trace?: never;
|
1569
|
+
};
|
1570
|
+
"/production-affiliation-request/reject/{id}": {
|
1571
|
+
parameters: {
|
1572
|
+
query?: never;
|
1573
|
+
header?: never;
|
1574
|
+
path?: never;
|
1575
|
+
cookie?: never;
|
1576
|
+
};
|
1577
|
+
get?: never;
|
1578
|
+
put?: never;
|
1579
|
+
post: operations["ProductionAffiliationRequestController_reject"];
|
1580
|
+
delete?: never;
|
1581
|
+
options?: never;
|
1582
|
+
head?: never;
|
1583
|
+
patch?: never;
|
1584
|
+
trace?: never;
|
1585
|
+
};
|
1586
|
+
"/production-affiliation-request/get-by-production/{id}": {
|
1587
|
+
parameters: {
|
1588
|
+
query?: never;
|
1589
|
+
header?: never;
|
1590
|
+
path?: never;
|
1591
|
+
cookie?: never;
|
1592
|
+
};
|
1593
|
+
get: operations["ProductionAffiliationRequestController_findByProduction"];
|
1594
|
+
put?: never;
|
1595
|
+
post?: never;
|
1596
|
+
delete?: never;
|
1597
|
+
options?: never;
|
1598
|
+
head?: never;
|
1599
|
+
patch?: never;
|
1600
|
+
trace?: never;
|
1601
|
+
};
|
1458
1602
|
}
|
1459
1603
|
export type webhooks = Record<string, never>;
|
1460
1604
|
export interface components {
|
@@ -1492,19 +1636,22 @@ export interface components {
|
|
1492
1636
|
CreateTagDto: {
|
1493
1637
|
name: string;
|
1494
1638
|
groupId: string;
|
1639
|
+
type?: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1495
1640
|
};
|
1496
1641
|
CreateTagResponseDto: {
|
1497
1642
|
id: string;
|
1498
1643
|
name: string;
|
1499
1644
|
groupId: string;
|
1500
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1645
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1646
|
+
created_at: string;
|
1647
|
+
updated_at: string;
|
1501
1648
|
};
|
1502
1649
|
FindAllTagResponseDto: {
|
1503
1650
|
tags: {
|
1504
1651
|
id: string;
|
1505
1652
|
name: string;
|
1506
1653
|
groupId: string;
|
1507
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1654
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1508
1655
|
created_at: string;
|
1509
1656
|
updated_at: string;
|
1510
1657
|
group: {
|
@@ -1522,7 +1669,7 @@ export interface components {
|
|
1522
1669
|
id: string;
|
1523
1670
|
name: string;
|
1524
1671
|
groupId: string;
|
1525
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1672
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1526
1673
|
created_at: string;
|
1527
1674
|
updated_at: string;
|
1528
1675
|
group: {
|
@@ -1539,7 +1686,7 @@ export interface components {
|
|
1539
1686
|
id: string;
|
1540
1687
|
name: string;
|
1541
1688
|
groupId: string;
|
1542
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1689
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1543
1690
|
created_at: string;
|
1544
1691
|
updated_at: string;
|
1545
1692
|
group: {
|
@@ -1559,7 +1706,7 @@ export interface components {
|
|
1559
1706
|
id: string;
|
1560
1707
|
name: string;
|
1561
1708
|
groupId: string;
|
1562
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1709
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1563
1710
|
created_at: string;
|
1564
1711
|
updated_at: string;
|
1565
1712
|
};
|
@@ -1567,7 +1714,7 @@ export interface components {
|
|
1567
1714
|
id: string;
|
1568
1715
|
name: string;
|
1569
1716
|
groupId: string;
|
1570
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1717
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1571
1718
|
created_at: string;
|
1572
1719
|
updated_at: string;
|
1573
1720
|
};
|
@@ -1664,7 +1811,7 @@ export interface components {
|
|
1664
1811
|
id: string;
|
1665
1812
|
name: string;
|
1666
1813
|
groupId: string;
|
1667
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1814
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1668
1815
|
created_at: string;
|
1669
1816
|
updated_at: string;
|
1670
1817
|
}[];
|
@@ -1674,7 +1821,7 @@ export interface components {
|
|
1674
1821
|
globalFilter: {
|
1675
1822
|
id: string;
|
1676
1823
|
name: string;
|
1677
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1824
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1678
1825
|
group: {
|
1679
1826
|
id: string;
|
1680
1827
|
color: string;
|
@@ -1693,7 +1840,7 @@ export interface components {
|
|
1693
1840
|
globalFilter: {
|
1694
1841
|
id: string;
|
1695
1842
|
name: string;
|
1696
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1843
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1697
1844
|
group: {
|
1698
1845
|
id: string;
|
1699
1846
|
color: string;
|
@@ -1704,7 +1851,7 @@ export interface components {
|
|
1704
1851
|
id: string;
|
1705
1852
|
name: string;
|
1706
1853
|
groupId: string;
|
1707
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1854
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1708
1855
|
created_at: string;
|
1709
1856
|
updated_at: string;
|
1710
1857
|
}[];
|
@@ -1734,7 +1881,7 @@ export interface components {
|
|
1734
1881
|
id: string;
|
1735
1882
|
name: string;
|
1736
1883
|
groupId: string;
|
1737
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1884
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1738
1885
|
created_at: string;
|
1739
1886
|
updated_at: string;
|
1740
1887
|
}[];
|
@@ -1750,7 +1897,7 @@ export interface components {
|
|
1750
1897
|
id: string;
|
1751
1898
|
name: string;
|
1752
1899
|
groupId: string;
|
1753
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1900
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1754
1901
|
created_at: string;
|
1755
1902
|
updated_at: string;
|
1756
1903
|
_count: {
|
@@ -1773,7 +1920,7 @@ export interface components {
|
|
1773
1920
|
id: string;
|
1774
1921
|
name: string;
|
1775
1922
|
groupId: string;
|
1776
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1923
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1777
1924
|
created_at: string;
|
1778
1925
|
updated_at: string;
|
1779
1926
|
}[];
|
@@ -2094,10 +2241,10 @@ export interface components {
|
|
2094
2241
|
created_at: string;
|
2095
2242
|
updated_at: string;
|
2096
2243
|
}[];
|
2097
|
-
|
2244
|
+
profileTags: {
|
2098
2245
|
id: string;
|
2099
2246
|
name: string;
|
2100
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
2247
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2101
2248
|
group: {
|
2102
2249
|
id: string;
|
2103
2250
|
color: string;
|
@@ -2157,10 +2304,10 @@ export interface components {
|
|
2157
2304
|
created_at: string;
|
2158
2305
|
updated_at: string;
|
2159
2306
|
}[];
|
2160
|
-
|
2307
|
+
profileTags: {
|
2161
2308
|
id: string;
|
2162
2309
|
name: string;
|
2163
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
2310
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2164
2311
|
group: {
|
2165
2312
|
id: string;
|
2166
2313
|
color: string;
|
@@ -2271,11 +2418,11 @@ export interface components {
|
|
2271
2418
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2272
2419
|
price: number | null;
|
2273
2420
|
}[];
|
2274
|
-
|
2421
|
+
profileTags: {
|
2275
2422
|
id: string;
|
2276
2423
|
name: string;
|
2277
2424
|
groupId: string;
|
2278
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
2425
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2279
2426
|
created_at: string;
|
2280
2427
|
updated_at: string;
|
2281
2428
|
group: {
|
@@ -2305,7 +2452,7 @@ export interface components {
|
|
2305
2452
|
id: string;
|
2306
2453
|
name: string;
|
2307
2454
|
groupId: string;
|
2308
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
2455
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2309
2456
|
created_at: string;
|
2310
2457
|
updated_at: string;
|
2311
2458
|
group: {
|
@@ -2321,7 +2468,7 @@ export interface components {
|
|
2321
2468
|
id: string;
|
2322
2469
|
name: string;
|
2323
2470
|
groupId: string;
|
2324
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
2471
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2325
2472
|
created_at: string;
|
2326
2473
|
updated_at: string;
|
2327
2474
|
group: {
|
@@ -2396,7 +2543,7 @@ export interface components {
|
|
2396
2543
|
id: string;
|
2397
2544
|
name: string;
|
2398
2545
|
groupId: string;
|
2399
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
2546
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2400
2547
|
created_at: string;
|
2401
2548
|
updated_at: string;
|
2402
2549
|
group: {
|
@@ -2460,7 +2607,7 @@ export interface components {
|
|
2460
2607
|
id: string;
|
2461
2608
|
name: string;
|
2462
2609
|
groupId: string;
|
2463
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
2610
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2464
2611
|
created_at: string;
|
2465
2612
|
updated_at: string;
|
2466
2613
|
group: {
|
@@ -2500,7 +2647,7 @@ export interface components {
|
|
2500
2647
|
id: string;
|
2501
2648
|
name: string;
|
2502
2649
|
groupId: string;
|
2503
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
2650
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2504
2651
|
created_at: string;
|
2505
2652
|
updated_at: string;
|
2506
2653
|
}[];
|
@@ -2558,7 +2705,7 @@ export interface components {
|
|
2558
2705
|
id: string;
|
2559
2706
|
name: string;
|
2560
2707
|
groupId: string;
|
2561
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
2708
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2562
2709
|
created_at: string;
|
2563
2710
|
updated_at: string;
|
2564
2711
|
group: {
|
@@ -2599,7 +2746,7 @@ export interface components {
|
|
2599
2746
|
id: string;
|
2600
2747
|
name: string;
|
2601
2748
|
groupId: string;
|
2602
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
2749
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2603
2750
|
created_at: string;
|
2604
2751
|
updated_at: string;
|
2605
2752
|
}[];
|
@@ -2635,7 +2782,7 @@ export interface components {
|
|
2635
2782
|
id: string;
|
2636
2783
|
name: string;
|
2637
2784
|
groupId: string;
|
2638
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
2785
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2639
2786
|
created_at: string;
|
2640
2787
|
updated_at: string;
|
2641
2788
|
group: {
|
@@ -2782,7 +2929,7 @@ export interface components {
|
|
2782
2929
|
id: string;
|
2783
2930
|
name: string;
|
2784
2931
|
groupId: string;
|
2785
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
2932
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2786
2933
|
created_at: string;
|
2787
2934
|
updated_at: string;
|
2788
2935
|
group: {
|
@@ -3630,6 +3777,153 @@ export interface components {
|
|
3630
3777
|
user_id: number;
|
3631
3778
|
};
|
3632
3779
|
Response: Record<string, never>;
|
3780
|
+
GetAllProductionResponseDto: {
|
3781
|
+
productions: {
|
3782
|
+
id: string;
|
3783
|
+
name: string;
|
3784
|
+
administratorId: string | null;
|
3785
|
+
created_at: string;
|
3786
|
+
updated_at: string;
|
3787
|
+
administrator: {
|
3788
|
+
id: string;
|
3789
|
+
shortId: number;
|
3790
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
3791
|
+
firstTimeMiExpo: boolean;
|
3792
|
+
username: string | null;
|
3793
|
+
password: string | null;
|
3794
|
+
phoneNumber: string;
|
3795
|
+
isPhoneVerified: boolean;
|
3796
|
+
secondaryPhoneNumber: string | null;
|
3797
|
+
fullName: string;
|
3798
|
+
firstName: string | null;
|
3799
|
+
gender: string | null;
|
3800
|
+
birthDate: string | null;
|
3801
|
+
profilePictureUrl: string | null;
|
3802
|
+
instagram: string | null;
|
3803
|
+
mail: string | null;
|
3804
|
+
dni: string | null;
|
3805
|
+
alternativeNames: string[];
|
3806
|
+
birthLocationId: string | null;
|
3807
|
+
residenceLocationId: string | null;
|
3808
|
+
isInTrash: boolean;
|
3809
|
+
movedToTrashDate: string | null;
|
3810
|
+
created_at: string;
|
3811
|
+
updated_at: string;
|
3812
|
+
} | null;
|
3813
|
+
}[];
|
3814
|
+
};
|
3815
|
+
CreateProductionDto: {
|
3816
|
+
name: string;
|
3817
|
+
administratorId: string | null;
|
3818
|
+
};
|
3819
|
+
CreateProductionRoleDto: {
|
3820
|
+
name: string;
|
3821
|
+
};
|
3822
|
+
UpdateProductionDto: {
|
3823
|
+
name?: string;
|
3824
|
+
administratorId?: string | null;
|
3825
|
+
};
|
3826
|
+
UpdateProductionResponseDto: {
|
3827
|
+
id: string;
|
3828
|
+
name: string;
|
3829
|
+
administratorId: string | null;
|
3830
|
+
created_at: string;
|
3831
|
+
updated_at: string;
|
3832
|
+
};
|
3833
|
+
DeleteProductionResponseDto: {
|
3834
|
+
id: string;
|
3835
|
+
name: string;
|
3836
|
+
administratorId: string | null;
|
3837
|
+
created_at: string;
|
3838
|
+
updated_at: string;
|
3839
|
+
};
|
3840
|
+
CreateProductionAffiliationRequestDto: {
|
3841
|
+
productionId: string;
|
3842
|
+
};
|
3843
|
+
UpdateProductionAffiliationRequestResponseDto: {
|
3844
|
+
id: string;
|
3845
|
+
productionId: string;
|
3846
|
+
profileId: string;
|
3847
|
+
status: "APPROVED" | "PENDING" | "REJECTED";
|
3848
|
+
created_at: string;
|
3849
|
+
updated_at: string;
|
3850
|
+
production: {
|
3851
|
+
id: string;
|
3852
|
+
name: string;
|
3853
|
+
administratorId: string | null;
|
3854
|
+
created_at: string;
|
3855
|
+
updated_at: string;
|
3856
|
+
};
|
3857
|
+
profile: {
|
3858
|
+
id: string;
|
3859
|
+
shortId: number;
|
3860
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
3861
|
+
firstTimeMiExpo: boolean;
|
3862
|
+
username: string | null;
|
3863
|
+
password: string | null;
|
3864
|
+
phoneNumber: string;
|
3865
|
+
isPhoneVerified: boolean;
|
3866
|
+
secondaryPhoneNumber: string | null;
|
3867
|
+
fullName: string;
|
3868
|
+
firstName: string | null;
|
3869
|
+
gender: string | null;
|
3870
|
+
birthDate: string | null;
|
3871
|
+
profilePictureUrl: string | null;
|
3872
|
+
instagram: string | null;
|
3873
|
+
mail: string | null;
|
3874
|
+
dni: string | null;
|
3875
|
+
alternativeNames: string[];
|
3876
|
+
birthLocationId: string | null;
|
3877
|
+
residenceLocationId: string | null;
|
3878
|
+
isInTrash: boolean;
|
3879
|
+
movedToTrashDate: string | null;
|
3880
|
+
created_at: string;
|
3881
|
+
updated_at: string;
|
3882
|
+
};
|
3883
|
+
};
|
3884
|
+
FindByProductionAffiliationRequestResponseDto: {
|
3885
|
+
productions: {
|
3886
|
+
id: string;
|
3887
|
+
productionId: string;
|
3888
|
+
profileId: string;
|
3889
|
+
status: "APPROVED" | "PENDING" | "REJECTED";
|
3890
|
+
created_at: string;
|
3891
|
+
updated_at: string;
|
3892
|
+
production: {
|
3893
|
+
id: string;
|
3894
|
+
name: string;
|
3895
|
+
administratorId: string | null;
|
3896
|
+
created_at: string;
|
3897
|
+
updated_at: string;
|
3898
|
+
};
|
3899
|
+
profile: {
|
3900
|
+
id: string;
|
3901
|
+
shortId: number;
|
3902
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
3903
|
+
firstTimeMiExpo: boolean;
|
3904
|
+
username: string | null;
|
3905
|
+
password: string | null;
|
3906
|
+
phoneNumber: string;
|
3907
|
+
isPhoneVerified: boolean;
|
3908
|
+
secondaryPhoneNumber: string | null;
|
3909
|
+
fullName: string;
|
3910
|
+
firstName: string | null;
|
3911
|
+
gender: string | null;
|
3912
|
+
birthDate: string | null;
|
3913
|
+
profilePictureUrl: string | null;
|
3914
|
+
instagram: string | null;
|
3915
|
+
mail: string | null;
|
3916
|
+
dni: string | null;
|
3917
|
+
alternativeNames: string[];
|
3918
|
+
birthLocationId: string | null;
|
3919
|
+
residenceLocationId: string | null;
|
3920
|
+
isInTrash: boolean;
|
3921
|
+
movedToTrashDate: string | null;
|
3922
|
+
created_at: string;
|
3923
|
+
updated_at: string;
|
3924
|
+
};
|
3925
|
+
}[];
|
3926
|
+
};
|
3633
3927
|
};
|
3634
3928
|
responses: never;
|
3635
3929
|
parameters: never;
|
@@ -6575,4 +6869,289 @@ export interface operations {
|
|
6575
6869
|
};
|
6576
6870
|
};
|
6577
6871
|
};
|
6872
|
+
ProductionController_getAll: {
|
6873
|
+
parameters: {
|
6874
|
+
query?: never;
|
6875
|
+
header?: never;
|
6876
|
+
path?: never;
|
6877
|
+
cookie?: never;
|
6878
|
+
};
|
6879
|
+
requestBody?: never;
|
6880
|
+
responses: {
|
6881
|
+
200: {
|
6882
|
+
headers: {
|
6883
|
+
[name: string]: unknown;
|
6884
|
+
};
|
6885
|
+
content: {
|
6886
|
+
"application/json": components["schemas"]["GetAllProductionResponseDto"];
|
6887
|
+
};
|
6888
|
+
};
|
6889
|
+
};
|
6890
|
+
};
|
6891
|
+
ProductionController_create: {
|
6892
|
+
parameters: {
|
6893
|
+
query?: never;
|
6894
|
+
header?: never;
|
6895
|
+
path?: never;
|
6896
|
+
cookie?: never;
|
6897
|
+
};
|
6898
|
+
requestBody: {
|
6899
|
+
content: {
|
6900
|
+
"application/json": components["schemas"]["CreateProductionDto"];
|
6901
|
+
};
|
6902
|
+
};
|
6903
|
+
responses: {
|
6904
|
+
200: {
|
6905
|
+
headers: {
|
6906
|
+
[name: string]: unknown;
|
6907
|
+
};
|
6908
|
+
content: {
|
6909
|
+
"application/json": components["schemas"]["CreateProductionDto"];
|
6910
|
+
};
|
6911
|
+
};
|
6912
|
+
409: {
|
6913
|
+
headers: {
|
6914
|
+
[name: string]: unknown;
|
6915
|
+
};
|
6916
|
+
content: {
|
6917
|
+
"application/json": components["schemas"]["ErrorDto"];
|
6918
|
+
};
|
6919
|
+
};
|
6920
|
+
};
|
6921
|
+
};
|
6922
|
+
ProductionController_createRole: {
|
6923
|
+
parameters: {
|
6924
|
+
query?: never;
|
6925
|
+
header?: never;
|
6926
|
+
path?: never;
|
6927
|
+
cookie?: never;
|
6928
|
+
};
|
6929
|
+
requestBody: {
|
6930
|
+
content: {
|
6931
|
+
"application/json": components["schemas"]["CreateProductionRoleDto"];
|
6932
|
+
};
|
6933
|
+
};
|
6934
|
+
responses: {
|
6935
|
+
201: {
|
6936
|
+
headers: {
|
6937
|
+
[name: string]: unknown;
|
6938
|
+
};
|
6939
|
+
content: {
|
6940
|
+
"application/json": components["schemas"]["CreateProductionDto"];
|
6941
|
+
};
|
6942
|
+
};
|
6943
|
+
};
|
6944
|
+
};
|
6945
|
+
ProductionController_update: {
|
6946
|
+
parameters: {
|
6947
|
+
query?: never;
|
6948
|
+
header?: never;
|
6949
|
+
path: {
|
6950
|
+
id: string;
|
6951
|
+
};
|
6952
|
+
cookie?: never;
|
6953
|
+
};
|
6954
|
+
requestBody: {
|
6955
|
+
content: {
|
6956
|
+
"application/json": components["schemas"]["UpdateProductionDto"];
|
6957
|
+
};
|
6958
|
+
};
|
6959
|
+
responses: {
|
6960
|
+
200: {
|
6961
|
+
headers: {
|
6962
|
+
[name: string]: unknown;
|
6963
|
+
};
|
6964
|
+
content: {
|
6965
|
+
"application/json": components["schemas"]["UpdateProductionResponseDto"];
|
6966
|
+
};
|
6967
|
+
};
|
6968
|
+
404: {
|
6969
|
+
headers: {
|
6970
|
+
[name: string]: unknown;
|
6971
|
+
};
|
6972
|
+
content: {
|
6973
|
+
"application/json": components["schemas"]["ErrorDto"];
|
6974
|
+
};
|
6975
|
+
};
|
6976
|
+
409: {
|
6977
|
+
headers: {
|
6978
|
+
[name: string]: unknown;
|
6979
|
+
};
|
6980
|
+
content: {
|
6981
|
+
"application/json": components["schemas"]["ErrorDto"];
|
6982
|
+
};
|
6983
|
+
};
|
6984
|
+
};
|
6985
|
+
};
|
6986
|
+
ProductionController_deleteProduction: {
|
6987
|
+
parameters: {
|
6988
|
+
query?: never;
|
6989
|
+
header?: never;
|
6990
|
+
path: {
|
6991
|
+
id: string;
|
6992
|
+
};
|
6993
|
+
cookie?: never;
|
6994
|
+
};
|
6995
|
+
requestBody?: never;
|
6996
|
+
responses: {
|
6997
|
+
200: {
|
6998
|
+
headers: {
|
6999
|
+
[name: string]: unknown;
|
7000
|
+
};
|
7001
|
+
content: {
|
7002
|
+
"application/json": components["schemas"]["DeleteProductionResponseDto"];
|
7003
|
+
};
|
7004
|
+
};
|
7005
|
+
404: {
|
7006
|
+
headers: {
|
7007
|
+
[name: string]: unknown;
|
7008
|
+
};
|
7009
|
+
content: {
|
7010
|
+
"application/json": components["schemas"]["ErrorDto"];
|
7011
|
+
};
|
7012
|
+
};
|
7013
|
+
409: {
|
7014
|
+
headers: {
|
7015
|
+
[name: string]: unknown;
|
7016
|
+
};
|
7017
|
+
content: {
|
7018
|
+
"application/json": components["schemas"]["ErrorDto"];
|
7019
|
+
};
|
7020
|
+
};
|
7021
|
+
};
|
7022
|
+
};
|
7023
|
+
ProductionAffiliationRequestController_create: {
|
7024
|
+
parameters: {
|
7025
|
+
query?: never;
|
7026
|
+
header?: never;
|
7027
|
+
path?: never;
|
7028
|
+
cookie?: never;
|
7029
|
+
};
|
7030
|
+
requestBody: {
|
7031
|
+
content: {
|
7032
|
+
"application/json": components["schemas"]["CreateProductionAffiliationRequestDto"];
|
7033
|
+
};
|
7034
|
+
};
|
7035
|
+
responses: {
|
7036
|
+
201: {
|
7037
|
+
headers: {
|
7038
|
+
[name: string]: unknown;
|
7039
|
+
};
|
7040
|
+
content: {
|
7041
|
+
"application/json": components["schemas"]["CreateProductionAffiliationRequestDto"];
|
7042
|
+
};
|
7043
|
+
};
|
7044
|
+
409: {
|
7045
|
+
headers: {
|
7046
|
+
[name: string]: unknown;
|
7047
|
+
};
|
7048
|
+
content: {
|
7049
|
+
"application/json": components["schemas"]["ErrorDto"];
|
7050
|
+
};
|
7051
|
+
};
|
7052
|
+
};
|
7053
|
+
};
|
7054
|
+
ProductionAffiliationRequestController_accept: {
|
7055
|
+
parameters: {
|
7056
|
+
query?: never;
|
7057
|
+
header?: never;
|
7058
|
+
path: {
|
7059
|
+
id: string;
|
7060
|
+
};
|
7061
|
+
cookie?: never;
|
7062
|
+
};
|
7063
|
+
requestBody?: never;
|
7064
|
+
responses: {
|
7065
|
+
200: {
|
7066
|
+
headers: {
|
7067
|
+
[name: string]: unknown;
|
7068
|
+
};
|
7069
|
+
content: {
|
7070
|
+
"application/json": components["schemas"]["UpdateProductionAffiliationRequestResponseDto"];
|
7071
|
+
};
|
7072
|
+
};
|
7073
|
+
401: {
|
7074
|
+
headers: {
|
7075
|
+
[name: string]: unknown;
|
7076
|
+
};
|
7077
|
+
content: {
|
7078
|
+
"application/json": components["schemas"]["ErrorDto"];
|
7079
|
+
};
|
7080
|
+
};
|
7081
|
+
404: {
|
7082
|
+
headers: {
|
7083
|
+
[name: string]: unknown;
|
7084
|
+
};
|
7085
|
+
content: {
|
7086
|
+
"application/json": components["schemas"]["ErrorDto"];
|
7087
|
+
};
|
7088
|
+
};
|
7089
|
+
};
|
7090
|
+
};
|
7091
|
+
ProductionAffiliationRequestController_reject: {
|
7092
|
+
parameters: {
|
7093
|
+
query?: never;
|
7094
|
+
header?: never;
|
7095
|
+
path: {
|
7096
|
+
id: string;
|
7097
|
+
};
|
7098
|
+
cookie?: never;
|
7099
|
+
};
|
7100
|
+
requestBody?: never;
|
7101
|
+
responses: {
|
7102
|
+
200: {
|
7103
|
+
headers: {
|
7104
|
+
[name: string]: unknown;
|
7105
|
+
};
|
7106
|
+
content: {
|
7107
|
+
"application/json": components["schemas"]["UpdateProductionAffiliationRequestResponseDto"];
|
7108
|
+
};
|
7109
|
+
};
|
7110
|
+
401: {
|
7111
|
+
headers: {
|
7112
|
+
[name: string]: unknown;
|
7113
|
+
};
|
7114
|
+
content: {
|
7115
|
+
"application/json": components["schemas"]["ErrorDto"];
|
7116
|
+
};
|
7117
|
+
};
|
7118
|
+
404: {
|
7119
|
+
headers: {
|
7120
|
+
[name: string]: unknown;
|
7121
|
+
};
|
7122
|
+
content: {
|
7123
|
+
"application/json": components["schemas"]["ErrorDto"];
|
7124
|
+
};
|
7125
|
+
};
|
7126
|
+
};
|
7127
|
+
};
|
7128
|
+
ProductionAffiliationRequestController_findByProduction: {
|
7129
|
+
parameters: {
|
7130
|
+
query?: never;
|
7131
|
+
header?: never;
|
7132
|
+
path: {
|
7133
|
+
id: string;
|
7134
|
+
};
|
7135
|
+
cookie?: never;
|
7136
|
+
};
|
7137
|
+
requestBody?: never;
|
7138
|
+
responses: {
|
7139
|
+
200: {
|
7140
|
+
headers: {
|
7141
|
+
[name: string]: unknown;
|
7142
|
+
};
|
7143
|
+
content: {
|
7144
|
+
"application/json": components["schemas"]["FindByProductionAffiliationRequestResponseDto"];
|
7145
|
+
};
|
7146
|
+
};
|
7147
|
+
404: {
|
7148
|
+
headers: {
|
7149
|
+
[name: string]: unknown;
|
7150
|
+
};
|
7151
|
+
content: {
|
7152
|
+
"application/json": components["schemas"]["ErrorDto"];
|
7153
|
+
};
|
7154
|
+
};
|
7155
|
+
};
|
7156
|
+
};
|
6578
7157
|
}
|