expo-backend-types 0.32.0-EXPO-315-Marcelo-Tinelli.1 → 0.32.0-EXPO-315-Marcelo-Tinelli.3
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 +115 -2
- package/dist/src/event/dto/create-event.dto.js +8 -0
- package/dist/src/event/dto/delete-event.dto.d.ts +18 -0
- package/dist/src/event/dto/event-tickets.dto.d.ts +21 -0
- package/dist/src/event/dto/event-tickets.dto.js +21 -0
- package/dist/src/event/dto/event.dto.d.ts +9 -0
- package/dist/src/event/dto/event.dto.js +9 -0
- package/dist/src/event/dto/get-active-events.dto.d.ts +247 -0
- package/dist/src/event/dto/get-active-events.dto.js +19 -0
- package/dist/src/event/dto/get-all-event.dto.d.ts +424 -160
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +208 -48
- package/dist/src/event/dto/get-by-id-event.dto.js +2 -0
- package/dist/src/event/dto/toggle-active-event.dto.d.ts +43 -0
- package/dist/src/event/dto/toggle-active-event.dto.js +6 -0
- package/dist/src/event/dto/update-event.dto.d.ts +193 -22
- package/dist/src/event/dto/update-event.dto.js +9 -0
- package/dist/src/event/exports.d.ts +3 -0
- package/dist/src/event/exports.js +3 -0
- package/dist/src/event-folder/dto/get-all-event-folder.dto.d.ts +42 -0
- package/dist/src/event-folder/dto/get-by-id-event-folder.dto.d.ts +30 -0
- package/dist/src/i18n/es.d.ts +25 -0
- package/dist/src/i18n/es.js +25 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +24 -20
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +12 -10
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +23 -18
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +23 -18
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +23 -18
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +23 -18
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +12 -10
- package/dist/src/ticket/dto/ticket.dto.d.ts +12 -10
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +24 -20
- package/dist/types/prisma-schema/edge.js +22 -7
- package/dist/types/prisma-schema/index-browser.js +19 -4
- package/dist/types/prisma-schema/index.d.ts +2439 -213
- package/dist/types/prisma-schema/index.js +22 -7
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +36 -14
- package/dist/types/prisma-schema/wasm.js +19 -4
- package/dist/types/schema.d.ts +221 -21
- package/package.json +1 -1
package/dist/types/schema.d.ts
CHANGED
@@ -543,6 +543,22 @@ export interface paths {
|
|
543
543
|
patch?: never;
|
544
544
|
trace?: never;
|
545
545
|
};
|
546
|
+
"/event/find-active": {
|
547
|
+
parameters: {
|
548
|
+
query?: never;
|
549
|
+
header?: never;
|
550
|
+
path?: never;
|
551
|
+
cookie?: never;
|
552
|
+
};
|
553
|
+
get: operations["EventController_getActive"];
|
554
|
+
put?: never;
|
555
|
+
post?: never;
|
556
|
+
delete?: never;
|
557
|
+
options?: never;
|
558
|
+
head?: never;
|
559
|
+
patch?: never;
|
560
|
+
trace?: never;
|
561
|
+
};
|
546
562
|
"/event/{id}": {
|
547
563
|
parameters: {
|
548
564
|
query?: never;
|
@@ -559,6 +575,22 @@ export interface paths {
|
|
559
575
|
patch: operations["EventController_update"];
|
560
576
|
trace?: never;
|
561
577
|
};
|
578
|
+
"/event/toggle-active/{id}": {
|
579
|
+
parameters: {
|
580
|
+
query?: never;
|
581
|
+
header?: never;
|
582
|
+
path?: never;
|
583
|
+
cookie?: never;
|
584
|
+
};
|
585
|
+
get?: never;
|
586
|
+
put?: never;
|
587
|
+
post: operations["EventController_toggleActive"];
|
588
|
+
delete?: never;
|
589
|
+
options?: never;
|
590
|
+
head?: never;
|
591
|
+
patch?: never;
|
592
|
+
trace?: never;
|
593
|
+
};
|
562
594
|
"/profile/all": {
|
563
595
|
parameters: {
|
564
596
|
query?: never;
|
@@ -1576,10 +1608,13 @@ export interface components {
|
|
1576
1608
|
id: string;
|
1577
1609
|
name: string;
|
1578
1610
|
date: string;
|
1611
|
+
startingDate: string;
|
1612
|
+
endingDate: string;
|
1579
1613
|
location: string;
|
1580
1614
|
folderId: string | null;
|
1581
1615
|
tagAssistedId: string;
|
1582
1616
|
tagConfirmedId: string;
|
1617
|
+
active: boolean;
|
1583
1618
|
supraEventId: string | null;
|
1584
1619
|
created_at: string;
|
1585
1620
|
updated_at: string;
|
@@ -1596,10 +1631,13 @@ export interface components {
|
|
1596
1631
|
id: string;
|
1597
1632
|
name: string;
|
1598
1633
|
date: string;
|
1634
|
+
startingDate: string;
|
1635
|
+
endingDate: string;
|
1599
1636
|
location: string;
|
1600
1637
|
folderId: string | null;
|
1601
1638
|
tagAssistedId: string;
|
1602
1639
|
tagConfirmedId: string;
|
1640
|
+
active: boolean;
|
1603
1641
|
supraEventId: string | null;
|
1604
1642
|
created_at: string;
|
1605
1643
|
updated_at: string;
|
@@ -1626,22 +1664,35 @@ export interface components {
|
|
1626
1664
|
CreateEventDto: {
|
1627
1665
|
name: string;
|
1628
1666
|
date: string;
|
1667
|
+
startingDate: string;
|
1668
|
+
endingDate: string;
|
1629
1669
|
location: string;
|
1630
1670
|
folderId: string | null;
|
1631
1671
|
subEvents?: {
|
1632
1672
|
name: string;
|
1633
1673
|
date: string;
|
1674
|
+
startingDate: string;
|
1675
|
+
endingDate: string;
|
1634
1676
|
location: string;
|
1635
1677
|
}[];
|
1678
|
+
tagsId: string[];
|
1679
|
+
eventTickets: {
|
1680
|
+
amount: number;
|
1681
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
1682
|
+
price: number | null;
|
1683
|
+
}[];
|
1636
1684
|
};
|
1637
1685
|
CreateEventResponseDto: {
|
1638
1686
|
id: string;
|
1639
1687
|
name: string;
|
1640
1688
|
date: string;
|
1689
|
+
startingDate: string;
|
1690
|
+
endingDate: string;
|
1641
1691
|
location: string;
|
1642
1692
|
folderId: string | null;
|
1643
1693
|
tagAssistedId: string;
|
1644
1694
|
tagConfirmedId: string;
|
1695
|
+
active: boolean;
|
1645
1696
|
supraEventId: string | null;
|
1646
1697
|
created_at: string;
|
1647
1698
|
updated_at: string;
|
@@ -1657,10 +1708,13 @@ export interface components {
|
|
1657
1708
|
id: string;
|
1658
1709
|
name: string;
|
1659
1710
|
date: string;
|
1711
|
+
startingDate: string;
|
1712
|
+
endingDate: string;
|
1660
1713
|
location: string;
|
1661
1714
|
folderId: string | null;
|
1662
1715
|
tagAssistedId: string;
|
1663
1716
|
tagConfirmedId: string;
|
1717
|
+
active: boolean;
|
1664
1718
|
supraEventId: string | null;
|
1665
1719
|
created_at: string;
|
1666
1720
|
updated_at: string;
|
@@ -1668,10 +1722,13 @@ export interface components {
|
|
1668
1722
|
id: string;
|
1669
1723
|
name: string;
|
1670
1724
|
date: string;
|
1725
|
+
startingDate: string;
|
1726
|
+
endingDate: string;
|
1671
1727
|
location: string;
|
1672
1728
|
folderId: string | null;
|
1673
1729
|
tagAssistedId: string;
|
1674
1730
|
tagConfirmedId: string;
|
1731
|
+
active: boolean;
|
1675
1732
|
supraEventId: string | null;
|
1676
1733
|
created_at: string;
|
1677
1734
|
updated_at: string;
|
@@ -1680,10 +1737,13 @@ export interface components {
|
|
1680
1737
|
id: string;
|
1681
1738
|
name: string;
|
1682
1739
|
date: string;
|
1740
|
+
startingDate: string;
|
1741
|
+
endingDate: string;
|
1683
1742
|
location: string;
|
1684
1743
|
folderId: string | null;
|
1685
1744
|
tagAssistedId: string;
|
1686
1745
|
tagConfirmedId: string;
|
1746
|
+
active: boolean;
|
1687
1747
|
supraEventId: string | null;
|
1688
1748
|
created_at: string;
|
1689
1749
|
updated_at: string;
|
@@ -1694,10 +1754,13 @@ export interface components {
|
|
1694
1754
|
id: string;
|
1695
1755
|
name: string;
|
1696
1756
|
date: string;
|
1757
|
+
startingDate: string;
|
1758
|
+
endingDate: string;
|
1697
1759
|
location: string;
|
1698
1760
|
folderId: string | null;
|
1699
1761
|
tagAssistedId: string;
|
1700
1762
|
tagConfirmedId: string;
|
1763
|
+
active: boolean;
|
1701
1764
|
supraEventId: string | null;
|
1702
1765
|
created_at: string;
|
1703
1766
|
updated_at: string;
|
@@ -1705,10 +1768,13 @@ export interface components {
|
|
1705
1768
|
id: string;
|
1706
1769
|
name: string;
|
1707
1770
|
date: string;
|
1771
|
+
startingDate: string;
|
1772
|
+
endingDate: string;
|
1708
1773
|
location: string;
|
1709
1774
|
folderId: string | null;
|
1710
1775
|
tagAssistedId: string;
|
1711
1776
|
tagConfirmedId: string;
|
1777
|
+
active: boolean;
|
1712
1778
|
supraEventId: string | null;
|
1713
1779
|
created_at: string;
|
1714
1780
|
updated_at: string;
|
@@ -1717,24 +1783,53 @@ export interface components {
|
|
1717
1783
|
id: string;
|
1718
1784
|
name: string;
|
1719
1785
|
date: string;
|
1786
|
+
startingDate: string;
|
1787
|
+
endingDate: string;
|
1720
1788
|
location: string;
|
1721
1789
|
folderId: string | null;
|
1722
1790
|
tagAssistedId: string;
|
1723
1791
|
tagConfirmedId: string;
|
1792
|
+
active: boolean;
|
1724
1793
|
supraEventId: string | null;
|
1725
1794
|
created_at: string;
|
1726
1795
|
updated_at: string;
|
1727
1796
|
}[];
|
1728
1797
|
}[];
|
1729
1798
|
};
|
1799
|
+
GetActiveEventsResponseDto: {
|
1800
|
+
events: {
|
1801
|
+
id: string;
|
1802
|
+
name: string;
|
1803
|
+
date: string;
|
1804
|
+
startingDate: string;
|
1805
|
+
endingDate: string;
|
1806
|
+
location: string;
|
1807
|
+
folderId: string | null;
|
1808
|
+
tagAssistedId: string;
|
1809
|
+
tagConfirmedId: string;
|
1810
|
+
active: boolean;
|
1811
|
+
supraEventId: string | null;
|
1812
|
+
created_at: string;
|
1813
|
+
updated_at: string;
|
1814
|
+
eventTickets: {
|
1815
|
+
id: string;
|
1816
|
+
amount: number;
|
1817
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
1818
|
+
price: number | null;
|
1819
|
+
}[];
|
1820
|
+
}[];
|
1821
|
+
};
|
1730
1822
|
GetByIdEventResponseDto: {
|
1731
1823
|
id: string;
|
1732
1824
|
name: string;
|
1733
1825
|
date: string;
|
1826
|
+
startingDate: string;
|
1827
|
+
endingDate: string;
|
1734
1828
|
location: string;
|
1735
1829
|
folderId: string | null;
|
1736
1830
|
tagAssistedId: string;
|
1737
1831
|
tagConfirmedId: string;
|
1832
|
+
active: boolean;
|
1738
1833
|
supraEventId: string | null;
|
1739
1834
|
created_at: string;
|
1740
1835
|
updated_at: string;
|
@@ -1742,10 +1837,13 @@ export interface components {
|
|
1742
1837
|
id: string;
|
1743
1838
|
name: string;
|
1744
1839
|
date: string;
|
1840
|
+
startingDate: string;
|
1841
|
+
endingDate: string;
|
1745
1842
|
location: string;
|
1746
1843
|
folderId: string | null;
|
1747
1844
|
tagAssistedId: string;
|
1748
1845
|
tagConfirmedId: string;
|
1846
|
+
active: boolean;
|
1749
1847
|
supraEventId: string | null;
|
1750
1848
|
created_at: string;
|
1751
1849
|
updated_at: string;
|
@@ -1754,35 +1852,56 @@ export interface components {
|
|
1754
1852
|
id: string;
|
1755
1853
|
name: string;
|
1756
1854
|
date: string;
|
1855
|
+
startingDate: string;
|
1856
|
+
endingDate: string;
|
1757
1857
|
location: string;
|
1758
1858
|
folderId: string | null;
|
1759
1859
|
tagAssistedId: string;
|
1760
1860
|
tagConfirmedId: string;
|
1861
|
+
active: boolean;
|
1761
1862
|
supraEventId: string | null;
|
1762
1863
|
created_at: string;
|
1763
1864
|
updated_at: string;
|
1764
1865
|
} | null;
|
1866
|
+
eventTickets: {
|
1867
|
+
id: string;
|
1868
|
+
amount: number;
|
1869
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
1870
|
+
price: number | null;
|
1871
|
+
}[];
|
1765
1872
|
};
|
1766
1873
|
UpdateEventDto: {
|
1767
1874
|
name: string;
|
1768
1875
|
folderId: string | null;
|
1769
1876
|
date: string;
|
1770
1877
|
location: string;
|
1878
|
+
startingDate: string;
|
1879
|
+
endingDate: string;
|
1771
1880
|
subEvents: {
|
1772
1881
|
name: string;
|
1773
1882
|
location: string;
|
1774
1883
|
date: string;
|
1884
|
+
startingDate: string;
|
1885
|
+
endingDate: string;
|
1775
1886
|
id: string | "";
|
1776
1887
|
}[];
|
1888
|
+
eventTickets: {
|
1889
|
+
amount: number;
|
1890
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
1891
|
+
price: number | null;
|
1892
|
+
}[];
|
1777
1893
|
};
|
1778
1894
|
UpdateEventResponseDto: {
|
1779
1895
|
id: string;
|
1780
1896
|
name: string;
|
1781
1897
|
date: string;
|
1898
|
+
startingDate: string;
|
1899
|
+
endingDate: string;
|
1782
1900
|
location: string;
|
1783
1901
|
folderId: string | null;
|
1784
1902
|
tagAssistedId: string;
|
1785
1903
|
tagConfirmedId: string;
|
1904
|
+
active: boolean;
|
1786
1905
|
supraEventId: string | null;
|
1787
1906
|
created_at: string;
|
1788
1907
|
updated_at: string;
|
@@ -1802,15 +1921,24 @@ export interface components {
|
|
1802
1921
|
updated_at: string;
|
1803
1922
|
};
|
1804
1923
|
};
|
1924
|
+
eventTickets: {
|
1925
|
+
id: string;
|
1926
|
+
amount: number;
|
1927
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
1928
|
+
price: number | null;
|
1929
|
+
}[];
|
1805
1930
|
};
|
1806
1931
|
DeleteEventResponseDto: {
|
1807
1932
|
id: string;
|
1808
1933
|
name: string;
|
1809
1934
|
date: string;
|
1935
|
+
startingDate: string;
|
1936
|
+
endingDate: string;
|
1810
1937
|
location: string;
|
1811
1938
|
folderId: string | null;
|
1812
1939
|
tagAssistedId: string;
|
1813
1940
|
tagConfirmedId: string;
|
1941
|
+
active: boolean;
|
1814
1942
|
supraEventId: string | null;
|
1815
1943
|
created_at: string;
|
1816
1944
|
updated_at: string;
|
@@ -2301,16 +2429,16 @@ export interface components {
|
|
2301
2429
|
};
|
2302
2430
|
CreateTicketDto: {
|
2303
2431
|
eventId: string;
|
2304
|
-
type: "PARTICIPANT" | "
|
2305
|
-
status: "BOOKED" | "PAID";
|
2432
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2433
|
+
status: "BOOKED" | "PAID" | "FREE";
|
2306
2434
|
fullName: string;
|
2307
2435
|
mail: string;
|
2308
2436
|
};
|
2309
2437
|
CreateTicketResponseDto: {
|
2310
2438
|
id: string;
|
2311
2439
|
eventId: string;
|
2312
|
-
type: "PARTICIPANT" | "
|
2313
|
-
status: "BOOKED" | "PAID";
|
2440
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2441
|
+
status: "BOOKED" | "PAID" | "FREE";
|
2314
2442
|
fullName: string;
|
2315
2443
|
mail: string;
|
2316
2444
|
created_at: string;
|
@@ -2320,8 +2448,8 @@ export interface components {
|
|
2320
2448
|
tickets: {
|
2321
2449
|
id: string;
|
2322
2450
|
eventId: string;
|
2323
|
-
type: "PARTICIPANT" | "
|
2324
|
-
status: "BOOKED" | "PAID";
|
2451
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2452
|
+
status: "BOOKED" | "PAID" | "FREE";
|
2325
2453
|
fullName: string;
|
2326
2454
|
mail: string;
|
2327
2455
|
created_at: string;
|
@@ -2337,8 +2465,8 @@ export interface components {
|
|
2337
2465
|
ticket: {
|
2338
2466
|
id: string;
|
2339
2467
|
eventId: string;
|
2340
|
-
type: "PARTICIPANT" | "
|
2341
|
-
status: "BOOKED" | "PAID";
|
2468
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2469
|
+
status: "BOOKED" | "PAID" | "FREE";
|
2342
2470
|
fullName: string;
|
2343
2471
|
mail: string;
|
2344
2472
|
created_at: string;
|
@@ -2354,8 +2482,8 @@ export interface components {
|
|
2354
2482
|
tickets: {
|
2355
2483
|
id: string;
|
2356
2484
|
eventId: string;
|
2357
|
-
type: "PARTICIPANT" | "
|
2358
|
-
status: "BOOKED" | "PAID";
|
2485
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2486
|
+
status: "BOOKED" | "PAID" | "FREE";
|
2359
2487
|
fullName: string;
|
2360
2488
|
mail: string;
|
2361
2489
|
created_at: string;
|
@@ -2371,8 +2499,8 @@ export interface components {
|
|
2371
2499
|
tickets: {
|
2372
2500
|
id: string;
|
2373
2501
|
eventId: string;
|
2374
|
-
type: "PARTICIPANT" | "
|
2375
|
-
status: "BOOKED" | "PAID";
|
2502
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2503
|
+
status: "BOOKED" | "PAID" | "FREE";
|
2376
2504
|
fullName: string;
|
2377
2505
|
mail: string;
|
2378
2506
|
created_at: string;
|
@@ -2385,16 +2513,16 @@ export interface components {
|
|
2385
2513
|
}[];
|
2386
2514
|
};
|
2387
2515
|
UpdateTicketDto: {
|
2388
|
-
type?: "PARTICIPANT" | "
|
2389
|
-
status?: "BOOKED" | "PAID";
|
2516
|
+
type?: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2517
|
+
status?: "BOOKED" | "PAID" | "FREE";
|
2390
2518
|
fullName?: string;
|
2391
2519
|
mail?: string;
|
2392
2520
|
};
|
2393
2521
|
UpdateTicketResponseDto: {
|
2394
2522
|
id: string;
|
2395
2523
|
eventId: string;
|
2396
|
-
type: "PARTICIPANT" | "
|
2397
|
-
status: "BOOKED" | "PAID";
|
2524
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2525
|
+
status: "BOOKED" | "PAID" | "FREE";
|
2398
2526
|
fullName: string;
|
2399
2527
|
mail: string;
|
2400
2528
|
created_at: string;
|
@@ -2403,8 +2531,8 @@ export interface components {
|
|
2403
2531
|
DeleteTicketResponseDto: {
|
2404
2532
|
id: string;
|
2405
2533
|
eventId: string;
|
2406
|
-
type: "PARTICIPANT" | "
|
2407
|
-
status: "BOOKED" | "PAID";
|
2534
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2535
|
+
status: "BOOKED" | "PAID" | "FREE";
|
2408
2536
|
fullName: string;
|
2409
2537
|
mail: string;
|
2410
2538
|
created_at: string;
|
@@ -2413,8 +2541,8 @@ export interface components {
|
|
2413
2541
|
FindTicketResponseDto: {
|
2414
2542
|
id: string;
|
2415
2543
|
eventId: string;
|
2416
|
-
type: "PARTICIPANT" | "
|
2417
|
-
status: "BOOKED" | "PAID";
|
2544
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2545
|
+
status: "BOOKED" | "PAID" | "FREE";
|
2418
2546
|
fullName: string;
|
2419
2547
|
mail: string;
|
2420
2548
|
created_at: string;
|
@@ -3446,6 +3574,25 @@ export interface operations {
|
|
3446
3574
|
};
|
3447
3575
|
};
|
3448
3576
|
};
|
3577
|
+
EventController_getActive: {
|
3578
|
+
parameters: {
|
3579
|
+
query?: never;
|
3580
|
+
header?: never;
|
3581
|
+
path?: never;
|
3582
|
+
cookie?: never;
|
3583
|
+
};
|
3584
|
+
requestBody?: never;
|
3585
|
+
responses: {
|
3586
|
+
200: {
|
3587
|
+
headers: {
|
3588
|
+
[name: string]: unknown;
|
3589
|
+
};
|
3590
|
+
content: {
|
3591
|
+
"application/json": components["schemas"]["GetActiveEventsResponseDto"];
|
3592
|
+
};
|
3593
|
+
};
|
3594
|
+
};
|
3595
|
+
};
|
3449
3596
|
EventController_findById: {
|
3450
3597
|
parameters: {
|
3451
3598
|
query?: never;
|
@@ -3535,6 +3682,51 @@ export interface operations {
|
|
3535
3682
|
"application/json": components["schemas"]["ErrorDto"];
|
3536
3683
|
};
|
3537
3684
|
};
|
3685
|
+
409: {
|
3686
|
+
headers: {
|
3687
|
+
[name: string]: unknown;
|
3688
|
+
};
|
3689
|
+
content: {
|
3690
|
+
"application/json": components["schemas"]["ErrorDto"];
|
3691
|
+
};
|
3692
|
+
};
|
3693
|
+
};
|
3694
|
+
};
|
3695
|
+
EventController_toggleActive: {
|
3696
|
+
parameters: {
|
3697
|
+
query?: never;
|
3698
|
+
header?: never;
|
3699
|
+
path: {
|
3700
|
+
id: string;
|
3701
|
+
};
|
3702
|
+
cookie?: never;
|
3703
|
+
};
|
3704
|
+
requestBody?: never;
|
3705
|
+
responses: {
|
3706
|
+
200: {
|
3707
|
+
headers: {
|
3708
|
+
[name: string]: unknown;
|
3709
|
+
};
|
3710
|
+
content: {
|
3711
|
+
"application/json": components["schemas"]["UpdateEventResponseDto"];
|
3712
|
+
};
|
3713
|
+
};
|
3714
|
+
404: {
|
3715
|
+
headers: {
|
3716
|
+
[name: string]: unknown;
|
3717
|
+
};
|
3718
|
+
content: {
|
3719
|
+
"application/json": components["schemas"]["ErrorDto"];
|
3720
|
+
};
|
3721
|
+
};
|
3722
|
+
409: {
|
3723
|
+
headers: {
|
3724
|
+
[name: string]: unknown;
|
3725
|
+
};
|
3726
|
+
content: {
|
3727
|
+
"application/json": components["schemas"]["ErrorDto"];
|
3728
|
+
};
|
3729
|
+
};
|
3538
3730
|
};
|
3539
3731
|
};
|
3540
3732
|
ProfileController_findAll: {
|
@@ -4303,6 +4495,14 @@ export interface operations {
|
|
4303
4495
|
"application/json": components["schemas"]["CreateTicketResponseDto"];
|
4304
4496
|
};
|
4305
4497
|
};
|
4498
|
+
404: {
|
4499
|
+
headers: {
|
4500
|
+
[name: string]: unknown;
|
4501
|
+
};
|
4502
|
+
content: {
|
4503
|
+
"application/json": components["schemas"]["ErrorDto"];
|
4504
|
+
};
|
4505
|
+
};
|
4306
4506
|
};
|
4307
4507
|
};
|
4308
4508
|
TicketController_findAll: {
|
@@ -4481,7 +4681,7 @@ export interface operations {
|
|
4481
4681
|
[name: string]: unknown;
|
4482
4682
|
};
|
4483
4683
|
content: {
|
4484
|
-
"application/json": components["schemas"];
|
4684
|
+
"application/json": components["schemas"]["Buffer"];
|
4485
4685
|
};
|
4486
4686
|
};
|
4487
4687
|
404: {
|