rozod 2.0.0 → 2.0.2

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.
Files changed (62) hide show
  1. package/lib/endpoints/accountinformationv1.d.ts +55 -15
  2. package/lib/endpoints/accountinformationv1.js +193 -128
  3. package/lib/endpoints/accountsettingsv1.d.ts +60 -6
  4. package/lib/endpoints/accountsettingsv1.js +204 -118
  5. package/lib/endpoints/assetdeliveryv1.d.ts +431 -0
  6. package/lib/endpoints/assetdeliveryv1.js +442 -10
  7. package/lib/endpoints/assetdeliveryv2.d.ts +431 -0
  8. package/lib/endpoints/assetdeliveryv2.js +443 -12
  9. package/lib/endpoints/authv1.d.ts +162 -36
  10. package/lib/endpoints/authv1.js +399 -201
  11. package/lib/endpoints/authv2.d.ts +108 -0
  12. package/lib/endpoints/authv2.js +353 -160
  13. package/lib/endpoints/authv3.d.ts +6 -0
  14. package/lib/endpoints/authv3.js +16 -8
  15. package/lib/endpoints/avatarv1.d.ts +94 -0
  16. package/lib/endpoints/avatarv1.js +239 -111
  17. package/lib/endpoints/avatarv2.d.ts +26 -0
  18. package/lib/endpoints/avatarv2.js +109 -59
  19. package/lib/endpoints/avatarv3.d.ts +20 -0
  20. package/lib/endpoints/avatarv3.js +83 -41
  21. package/lib/endpoints/badgesv1.d.ts +80 -3
  22. package/lib/endpoints/badgesv1.js +137 -51
  23. package/lib/endpoints/catalogv1.d.ts +183 -25
  24. package/lib/endpoints/catalogv1.js +307 -131
  25. package/lib/endpoints/chatv2.d.ts +105 -0
  26. package/lib/endpoints/chatv2.js +219 -114
  27. package/lib/endpoints/developv1.d.ts +411 -36
  28. package/lib/endpoints/developv1.js +707 -254
  29. package/lib/endpoints/developv2.d.ts +46 -0
  30. package/lib/endpoints/developv2.js +108 -36
  31. package/lib/endpoints/economyv1.js +7 -7
  32. package/lib/endpoints/friendsv1.d.ts +147 -0
  33. package/lib/endpoints/friendsv1.js +309 -114
  34. package/lib/endpoints/gamejoinv1.d.ts +2321 -0
  35. package/lib/endpoints/gamejoinv1.js +416 -0
  36. package/lib/endpoints/gamesv1.d.ts +319 -14
  37. package/lib/endpoints/gamesv1.js +531 -188
  38. package/lib/endpoints/gamesv2.d.ts +89 -0
  39. package/lib/endpoints/gamesv2.js +108 -19
  40. package/lib/endpoints/groupsv1.d.ts +602 -94
  41. package/lib/endpoints/groupsv1.js +1131 -456
  42. package/lib/endpoints/groupsv2.d.ts +33 -0
  43. package/lib/endpoints/groupsv2.js +74 -37
  44. package/lib/endpoints/inventoryv1.d.ts +108 -9
  45. package/lib/endpoints/inventoryv1.js +166 -45
  46. package/lib/endpoints/inventoryv2.d.ts +62 -1
  47. package/lib/endpoints/inventoryv2.js +91 -26
  48. package/lib/endpoints/presencev1.d.ts +14 -5
  49. package/lib/endpoints/presencev1.js +30 -21
  50. package/lib/endpoints/privatemessagesv1.d.ts +39 -0
  51. package/lib/endpoints/privatemessagesv1.js +90 -51
  52. package/lib/endpoints/thumbnailsv1.d.ts +309 -21
  53. package/lib/endpoints/thumbnailsv1.js +410 -63
  54. package/lib/endpoints/tradesv1.d.ts +51 -0
  55. package/lib/endpoints/tradesv1.js +148 -59
  56. package/lib/endpoints/translationsv1.d.ts +33 -0
  57. package/lib/endpoints/translationsv1.js +49 -14
  58. package/lib/endpoints/usersv1.d.ts +67 -0
  59. package/lib/endpoints/usersv1.js +138 -58
  60. package/lib/index.d.ts +4 -0
  61. package/lib/index.js +151 -240
  62. package/package.json +6 -3
@@ -8,6 +8,11 @@ export declare const getAssetsVoting: {
8
8
  path: string;
9
9
  baseUrl: string;
10
10
  requestFormat: "json";
11
+ serializationMethod: {
12
+ assetIds: {
13
+ style: string;
14
+ };
15
+ };
11
16
  parameters: {
12
17
  assetIds: z.ZodArray<z.ZodNumber, "many">;
13
18
  };
@@ -198,6 +203,11 @@ export declare const getGameupdatenotificationsUniverseid: {
198
203
  path: string;
199
204
  baseUrl: string;
200
205
  requestFormat: "json";
206
+ serializationMethod: {
207
+ universeId: {
208
+ style: string;
209
+ };
210
+ };
201
211
  parameters: {
202
212
  universeId: z.ZodNumber;
203
213
  };
@@ -254,6 +264,12 @@ export declare const postGameupdatenotificationsUniverseid: {
254
264
  path: string;
255
265
  baseUrl: string;
256
266
  requestFormat: "json";
267
+ serializationMethod: {
268
+ body: {};
269
+ universeId: {
270
+ style: string;
271
+ };
272
+ };
257
273
  parameters: {
258
274
  body: z.ZodString;
259
275
  universeId: z.ZodNumber;
@@ -310,6 +326,9 @@ export declare const postGameupdatenotificationsFilter: {
310
326
  path: string;
311
327
  baseUrl: string;
312
328
  requestFormat: "json";
329
+ serializationMethod: {
330
+ body: {};
331
+ };
313
332
  parameters: {
314
333
  body: z.ZodString;
315
334
  };
@@ -345,6 +364,27 @@ export declare const getGroupsGroupidUniverses: {
345
364
  path: string;
346
365
  baseUrl: string;
347
366
  requestFormat: "json";
367
+ serializationMethod: {
368
+ groupId: {
369
+ style: string;
370
+ };
371
+ isArchived: {
372
+ style: string;
373
+ explode: boolean;
374
+ };
375
+ limit: {
376
+ style: string;
377
+ explode: boolean;
378
+ };
379
+ cursor: {
380
+ style: string;
381
+ explode: boolean;
382
+ };
383
+ sortOrder: {
384
+ style: string;
385
+ explode: boolean;
386
+ };
387
+ };
348
388
  parameters: {
349
389
  groupId: z.ZodNumber;
350
390
  isArchived: z.ZodOptional<z.ZodBoolean>;
@@ -437,16 +477,22 @@ export declare const getGroupsGroupidUniverses: {
437
477
  }[];
438
478
  };
439
479
  /**
440
- * @api patch https://develop.roblox.com/v1/places/:placeId
480
+ * @api post https://develop.roblox.com/v1/places/:placeId
441
481
  * @param body
442
482
  * @param placeId
443
483
  */
444
- export declare const patchPlacesPlaceid: {
445
- method: "patch";
484
+ export declare const postPlacesPlaceid: {
485
+ method: "post";
446
486
  path: string;
447
487
  baseUrl: string;
448
488
  description: string;
449
489
  requestFormat: "json";
490
+ serializationMethod: {
491
+ body: {};
492
+ placeId: {
493
+ style: string;
494
+ };
495
+ };
450
496
  parameters: {
451
497
  body: z.ZodObject<{
452
498
  name: z.ZodString;
@@ -483,16 +529,22 @@ export declare const patchPlacesPlaceid: {
483
529
  }[];
484
530
  };
485
531
  /**
486
- * @api post https://develop.roblox.com/v1/places/:placeId
532
+ * @api patch https://develop.roblox.com/v1/places/:placeId
487
533
  * @param body
488
534
  * @param placeId
489
535
  */
490
- export declare const postPlacesPlaceid: {
491
- method: "post";
536
+ export declare const patchPlacesPlaceid: {
537
+ method: "patch";
492
538
  path: string;
493
539
  baseUrl: string;
494
540
  description: string;
495
541
  requestFormat: "json";
542
+ serializationMethod: {
543
+ body: {};
544
+ placeId: {
545
+ style: string;
546
+ };
547
+ };
496
548
  parameters: {
497
549
  body: z.ZodObject<{
498
550
  name: z.ZodString;
@@ -537,6 +589,11 @@ export declare const getPlacesPlaceidCompatibilities: {
537
589
  path: string;
538
590
  baseUrl: string;
539
591
  requestFormat: "json";
592
+ serializationMethod: {
593
+ placeId: {
594
+ style: string;
595
+ };
596
+ };
540
597
  parameters: {
541
598
  placeId: z.ZodNumber;
542
599
  };
@@ -587,6 +644,30 @@ export declare const getPlacesPlaceidStatsType: {
587
644
  path: string;
588
645
  baseUrl: string;
589
646
  requestFormat: "json";
647
+ serializationMethod: {
648
+ placeId: {
649
+ style: string;
650
+ };
651
+ type: {
652
+ style: string;
653
+ };
654
+ granularity: {
655
+ style: string;
656
+ explode: boolean;
657
+ };
658
+ divisionType: {
659
+ style: string;
660
+ explode: boolean;
661
+ };
662
+ startTime: {
663
+ style: string;
664
+ explode: boolean;
665
+ };
666
+ endTime: {
667
+ style: string;
668
+ explode: boolean;
669
+ };
670
+ };
590
671
  parameters: {
591
672
  placeId: z.ZodNumber;
592
673
  type: z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
@@ -652,6 +733,30 @@ export declare const getPlacesPlaceidStatsTypeLegacyFlot: {
652
733
  path: string;
653
734
  baseUrl: string;
654
735
  requestFormat: "json";
736
+ serializationMethod: {
737
+ placeId: {
738
+ style: string;
739
+ };
740
+ type: {
741
+ style: string;
742
+ };
743
+ timeFrame: {
744
+ style: string;
745
+ explode: boolean;
746
+ };
747
+ divisionType: {
748
+ style: string;
749
+ explode: boolean;
750
+ };
751
+ startTime: {
752
+ style: string;
753
+ explode: boolean;
754
+ };
755
+ endTime: {
756
+ style: string;
757
+ explode: boolean;
758
+ };
759
+ };
655
760
  parameters: {
656
761
  placeId: z.ZodNumber;
657
762
  type: z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
@@ -660,7 +765,7 @@ export declare const getPlacesPlaceidStatsTypeLegacyFlot: {
660
765
  startTime: z.ZodOptional<z.ZodString>;
661
766
  endTime: z.ZodOptional<z.ZodString>;
662
767
  };
663
- response: z.ZodUnknown;
768
+ response: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
664
769
  errors: {
665
770
  status: number;
666
771
  description: string;
@@ -677,6 +782,15 @@ export declare const getPlacesPlaceidStatsDeveloperProductAggregation: {
677
782
  path: string;
678
783
  baseUrl: string;
679
784
  requestFormat: "json";
785
+ serializationMethod: {
786
+ placeId: {
787
+ style: string;
788
+ };
789
+ timeFrame: {
790
+ style: string;
791
+ explode: boolean;
792
+ };
793
+ };
680
794
  parameters: {
681
795
  placeId: z.ZodNumber;
682
796
  timeFrame: z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>, z.ZodLiteral<2>]>;
@@ -856,6 +970,11 @@ export declare const getPlacesPlaceidStatsIsAgeDataAvailable: {
856
970
  path: string;
857
971
  baseUrl: string;
858
972
  requestFormat: "json";
973
+ serializationMethod: {
974
+ placeId: {
975
+ style: string;
976
+ };
977
+ };
859
978
  parameters: {
860
979
  placeId: z.ZodNumber;
861
980
  };
@@ -883,6 +1002,19 @@ export declare const getPlacesPlaceidTeamcreateActive_sessionMembers: {
883
1002
  path: string;
884
1003
  baseUrl: string;
885
1004
  requestFormat: "json";
1005
+ serializationMethod: {
1006
+ placeId: {
1007
+ style: string;
1008
+ };
1009
+ limit: {
1010
+ style: string;
1011
+ explode: boolean;
1012
+ };
1013
+ cursor: {
1014
+ style: string;
1015
+ explode: boolean;
1016
+ };
1017
+ };
886
1018
  parameters: {
887
1019
  placeId: z.ZodNumber;
888
1020
  limit: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<10>, z.ZodLiteral<25>, z.ZodLiteral<50>, z.ZodLiteral<100>]>>>;
@@ -930,6 +1062,11 @@ export declare const getPlugins: {
930
1062
  path: string;
931
1063
  baseUrl: string;
932
1064
  requestFormat: "json";
1065
+ serializationMethod: {
1066
+ pluginIds: {
1067
+ style: string;
1068
+ };
1069
+ };
933
1070
  parameters: {
934
1071
  pluginIds: z.ZodArray<z.ZodNumber, "many">;
935
1072
  };
@@ -996,6 +1133,12 @@ export declare const patchPluginsPluginid: {
996
1133
  path: string;
997
1134
  baseUrl: string;
998
1135
  requestFormat: "json";
1136
+ serializationMethod: {
1137
+ body: {};
1138
+ pluginId: {
1139
+ style: string;
1140
+ };
1141
+ };
999
1142
  parameters: {
1000
1143
  body: z.ZodObject<{
1001
1144
  name: z.ZodString;
@@ -1034,13 +1177,38 @@ export declare const getSearchUniverses: {
1034
1177
  baseUrl: string;
1035
1178
  description: string;
1036
1179
  requestFormat: "json";
1180
+ serializationMethod: {
1181
+ search: {
1182
+ style: string;
1183
+ explode: boolean;
1184
+ };
1185
+ limit: {
1186
+ style: string;
1187
+ explode: boolean;
1188
+ };
1189
+ cursor: {
1190
+ style: string;
1191
+ explode: boolean;
1192
+ };
1193
+ sortOrder: {
1194
+ style: string;
1195
+ explode: boolean;
1196
+ };
1197
+ q: {
1198
+ style: string;
1199
+ explode: boolean;
1200
+ };
1201
+ sort: {
1202
+ style: string;
1203
+ };
1204
+ };
1037
1205
  parameters: {
1038
- search: z.ZodString;
1206
+ search: z.ZodUnknown;
1039
1207
  limit: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<10>, z.ZodLiteral<25>, z.ZodLiteral<50>, z.ZodLiteral<100>]>>>;
1040
1208
  cursor: z.ZodOptional<z.ZodString>;
1041
1209
  sortOrder: z.ZodDefault<z.ZodOptional<z.ZodEnum<["Asc", "Desc"]>>>;
1042
1210
  q: z.ZodOptional<z.ZodString>;
1043
- sort: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
1211
+ sort: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
1044
1212
  };
1045
1213
  response: z.ZodObject<{
1046
1214
  previousPageCursor: z.ZodString;
@@ -1159,6 +1327,11 @@ export declare const getUniversesUniverseid: {
1159
1327
  path: string;
1160
1328
  baseUrl: string;
1161
1329
  requestFormat: "json";
1330
+ serializationMethod: {
1331
+ universeId: {
1332
+ style: string;
1333
+ };
1334
+ };
1162
1335
  parameters: {
1163
1336
  universeId: z.ZodNumber;
1164
1337
  };
@@ -1217,6 +1390,11 @@ export declare const postUniversesUniverseidActivate: {
1217
1390
  path: string;
1218
1391
  baseUrl: string;
1219
1392
  requestFormat: "json";
1393
+ serializationMethod: {
1394
+ universeId: {
1395
+ style: string;
1396
+ };
1397
+ };
1220
1398
  parameters: {
1221
1399
  universeId: z.ZodNumber;
1222
1400
  };
@@ -1237,6 +1415,12 @@ export declare const postUniversesUniverseidAliases: {
1237
1415
  path: string;
1238
1416
  baseUrl: string;
1239
1417
  requestFormat: "json";
1418
+ serializationMethod: {
1419
+ body: {};
1420
+ universeId: {
1421
+ style: string;
1422
+ };
1423
+ };
1240
1424
  parameters: {
1241
1425
  body: z.ZodObject<{
1242
1426
  name: z.ZodString;
@@ -1270,6 +1454,14 @@ export declare const deleteUniversesUniverseidAliasesName: {
1270
1454
  path: string;
1271
1455
  baseUrl: string;
1272
1456
  requestFormat: "json";
1457
+ serializationMethod: {
1458
+ universeId: {
1459
+ style: string;
1460
+ };
1461
+ name: {
1462
+ style: string;
1463
+ };
1464
+ };
1273
1465
  parameters: {
1274
1466
  universeId: z.ZodNumber;
1275
1467
  name: z.ZodString;
@@ -1292,6 +1484,15 @@ export declare const patchUniversesUniverseidAliasesName: {
1292
1484
  path: string;
1293
1485
  baseUrl: string;
1294
1486
  requestFormat: "json";
1487
+ serializationMethod: {
1488
+ body: {};
1489
+ universeId: {
1490
+ style: string;
1491
+ };
1492
+ name: {
1493
+ style: string;
1494
+ };
1495
+ };
1295
1496
  parameters: {
1296
1497
  body: z.ZodObject<{
1297
1498
  name: z.ZodString;
@@ -1325,6 +1526,11 @@ export declare const getUniversesUniverseidConfiguration: {
1325
1526
  path: string;
1326
1527
  baseUrl: string;
1327
1528
  requestFormat: "json";
1529
+ serializationMethod: {
1530
+ universeId: {
1531
+ style: string;
1532
+ };
1533
+ };
1328
1534
  parameters: {
1329
1535
  universeId: z.ZodNumber;
1330
1536
  };
@@ -1402,6 +1608,12 @@ export declare const patchUniversesUniverseidConfiguration: {
1402
1608
  path: string;
1403
1609
  baseUrl: string;
1404
1610
  requestFormat: "json";
1611
+ serializationMethod: {
1612
+ body: {};
1613
+ universeId: {
1614
+ style: string;
1615
+ };
1616
+ };
1405
1617
  parameters: {
1406
1618
  body: z.ZodObject<{
1407
1619
  name: z.ZodString;
@@ -1521,6 +1733,11 @@ export declare const getUniversesUniverseidConfigurationVipServers: {
1521
1733
  path: string;
1522
1734
  baseUrl: string;
1523
1735
  requestFormat: "json";
1736
+ serializationMethod: {
1737
+ universeId: {
1738
+ style: string;
1739
+ };
1740
+ };
1524
1741
  parameters: {
1525
1742
  universeId: z.ZodNumber;
1526
1743
  };
@@ -1555,6 +1772,11 @@ export declare const postUniversesUniverseidDeactivate: {
1555
1772
  path: string;
1556
1773
  baseUrl: string;
1557
1774
  requestFormat: "json";
1775
+ serializationMethod: {
1776
+ universeId: {
1777
+ style: string;
1778
+ };
1779
+ };
1558
1780
  parameters: {
1559
1781
  universeId: z.ZodNumber;
1560
1782
  };
@@ -1578,6 +1800,27 @@ export declare const postUniversesUniverseidDeveloperproducts: {
1578
1800
  path: string;
1579
1801
  baseUrl: string;
1580
1802
  requestFormat: "json";
1803
+ serializationMethod: {
1804
+ universeId: {
1805
+ style: string;
1806
+ };
1807
+ name: {
1808
+ style: string;
1809
+ explode: boolean;
1810
+ };
1811
+ description: {
1812
+ style: string;
1813
+ explode: boolean;
1814
+ };
1815
+ priceInRobux: {
1816
+ style: string;
1817
+ explode: boolean;
1818
+ };
1819
+ iconImageAssetId: {
1820
+ style: string;
1821
+ explode: boolean;
1822
+ };
1823
+ };
1581
1824
  parameters: {
1582
1825
  universeId: z.ZodNumber;
1583
1826
  name: z.ZodString;
@@ -1621,6 +1864,15 @@ export declare const postUniversesUniverseidDeveloperproductsProductidUpdate: {
1621
1864
  path: string;
1622
1865
  baseUrl: string;
1623
1866
  requestFormat: "json";
1867
+ serializationMethod: {
1868
+ body: {};
1869
+ universeId: {
1870
+ style: string;
1871
+ };
1872
+ productId: {
1873
+ style: string;
1874
+ };
1875
+ };
1624
1876
  parameters: {
1625
1877
  body: z.ZodObject<{
1626
1878
  Name: z.ZodString;
@@ -1657,6 +1909,11 @@ export declare const getUniversesUniverseidLiveStats: {
1657
1909
  path: string;
1658
1910
  baseUrl: string;
1659
1911
  requestFormat: "json";
1912
+ serializationMethod: {
1913
+ universeId: {
1914
+ style: string;
1915
+ };
1916
+ };
1660
1917
  parameters: {
1661
1918
  universeId: z.ZodNumber;
1662
1919
  };
@@ -1688,6 +1945,11 @@ export declare const getUniversesUniverseidPermissions: {
1688
1945
  path: string;
1689
1946
  baseUrl: string;
1690
1947
  requestFormat: "json";
1948
+ serializationMethod: {
1949
+ universeId: {
1950
+ style: string;
1951
+ };
1952
+ };
1691
1953
  parameters: {
1692
1954
  universeId: z.ZodNumber;
1693
1955
  };
@@ -1720,6 +1982,27 @@ export declare const getUniversesUniverseidPlaces: {
1720
1982
  path: string;
1721
1983
  baseUrl: string;
1722
1984
  requestFormat: "json";
1985
+ serializationMethod: {
1986
+ universeId: {
1987
+ style: string;
1988
+ };
1989
+ isUniverseCreation: {
1990
+ style: string;
1991
+ explode: boolean;
1992
+ };
1993
+ limit: {
1994
+ style: string;
1995
+ explode: boolean;
1996
+ };
1997
+ cursor: {
1998
+ style: string;
1999
+ explode: boolean;
2000
+ };
2001
+ sortOrder: {
2002
+ style: string;
2003
+ explode: boolean;
2004
+ };
2005
+ };
1723
2006
  parameters: {
1724
2007
  universeId: z.ZodNumber;
1725
2008
  isUniverseCreation: z.ZodOptional<z.ZodBoolean>;
@@ -1751,6 +2034,11 @@ export declare const getUniversesUniverseidTeamcreate: {
1751
2034
  path: string;
1752
2035
  baseUrl: string;
1753
2036
  requestFormat: "json";
2037
+ serializationMethod: {
2038
+ universeId: {
2039
+ style: string;
2040
+ };
2041
+ };
1754
2042
  parameters: {
1755
2043
  universeId: z.ZodNumber;
1756
2044
  };
@@ -1778,6 +2066,12 @@ export declare const patchUniversesUniverseidTeamcreate: {
1778
2066
  baseUrl: string;
1779
2067
  description: string;
1780
2068
  requestFormat: "json";
2069
+ serializationMethod: {
2070
+ body: {};
2071
+ universeId: {
2072
+ style: string;
2073
+ };
2074
+ };
1781
2075
  parameters: {
1782
2076
  body: z.ZodObject<{
1783
2077
  isEnabled: z.ZodBoolean;
@@ -1795,33 +2089,6 @@ export declare const patchUniversesUniverseidTeamcreate: {
1795
2089
  schema: z.ZodVoid;
1796
2090
  }[];
1797
2091
  };
1798
- /**
1799
- * @api delete https://develop.roblox.com/v1/universes/:universeId/teamcreate/memberships
1800
- * @param body The request body.
1801
- * @param universeId
1802
- */
1803
- export declare const deleteUniversesUniverseidTeamcreateMemberships: {
1804
- method: "delete";
1805
- path: string;
1806
- baseUrl: string;
1807
- requestFormat: "json";
1808
- parameters: {
1809
- body: z.ZodObject<{
1810
- userId: z.ZodNumber;
1811
- }, "strip", z.ZodTypeAny, {
1812
- userId: number;
1813
- }, {
1814
- userId: number;
1815
- }>;
1816
- universeId: z.ZodNumber;
1817
- };
1818
- response: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
1819
- errors: {
1820
- status: number;
1821
- description: string;
1822
- schema: z.ZodVoid;
1823
- }[];
1824
- };
1825
2092
  /**
1826
2093
  * @api get https://develop.roblox.com/v1/universes/:universeId/teamcreate/memberships
1827
2094
  * @param universeId
@@ -1834,6 +2101,23 @@ export declare const getUniversesUniverseidTeamcreateMemberships: {
1834
2101
  path: string;
1835
2102
  baseUrl: string;
1836
2103
  requestFormat: "json";
2104
+ serializationMethod: {
2105
+ universeId: {
2106
+ style: string;
2107
+ };
2108
+ limit: {
2109
+ style: string;
2110
+ explode: boolean;
2111
+ };
2112
+ cursor: {
2113
+ style: string;
2114
+ explode: boolean;
2115
+ };
2116
+ sortOrder: {
2117
+ style: string;
2118
+ explode: boolean;
2119
+ };
2120
+ };
1837
2121
  parameters: {
1838
2122
  universeId: z.ZodNumber;
1839
2123
  limit: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<10>, z.ZodLiteral<25>, z.ZodLiteral<50>, z.ZodLiteral<100>]>>>;
@@ -1884,6 +2168,39 @@ export declare const getUniversesUniverseidTeamcreateMemberships: {
1884
2168
  schema: z.ZodVoid;
1885
2169
  }[];
1886
2170
  };
2171
+ /**
2172
+ * @api delete https://develop.roblox.com/v1/universes/:universeId/teamcreate/memberships
2173
+ * @param body The request body.
2174
+ * @param universeId
2175
+ */
2176
+ export declare const deleteUniversesUniverseidTeamcreateMemberships: {
2177
+ method: "delete";
2178
+ path: string;
2179
+ baseUrl: string;
2180
+ requestFormat: "json";
2181
+ serializationMethod: {
2182
+ body: {};
2183
+ universeId: {
2184
+ style: string;
2185
+ };
2186
+ };
2187
+ parameters: {
2188
+ body: z.ZodObject<{
2189
+ userId: z.ZodNumber;
2190
+ }, "strip", z.ZodTypeAny, {
2191
+ userId: number;
2192
+ }, {
2193
+ userId: number;
2194
+ }>;
2195
+ universeId: z.ZodNumber;
2196
+ };
2197
+ response: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
2198
+ errors: {
2199
+ status: number;
2200
+ description: string;
2201
+ schema: z.ZodVoid;
2202
+ }[];
2203
+ };
1887
2204
  /**
1888
2205
  * @api get https://develop.roblox.com/v1/universes/multiget
1889
2206
  * @param ids
@@ -1894,6 +2211,12 @@ export declare const getUniversesMultiget: {
1894
2211
  baseUrl: string;
1895
2212
  description: string;
1896
2213
  requestFormat: "json";
2214
+ serializationMethod: {
2215
+ ids: {
2216
+ style: string;
2217
+ explode: boolean;
2218
+ };
2219
+ };
1897
2220
  parameters: {
1898
2221
  ids: z.ZodArray<z.ZodNumber, "many">;
1899
2222
  };
@@ -1985,6 +2308,12 @@ export declare const getUniversesMultigetPermissions: {
1985
2308
  baseUrl: string;
1986
2309
  description: string;
1987
2310
  requestFormat: "json";
2311
+ serializationMethod: {
2312
+ ids: {
2313
+ style: string;
2314
+ explode: boolean;
2315
+ };
2316
+ };
1988
2317
  parameters: {
1989
2318
  ids: z.ZodArray<z.ZodNumber, "many">;
1990
2319
  };
@@ -2030,6 +2359,12 @@ export declare const getUniversesMultigetTeamcreate: {
2030
2359
  path: string;
2031
2360
  baseUrl: string;
2032
2361
  requestFormat: "json";
2362
+ serializationMethod: {
2363
+ ids: {
2364
+ style: string;
2365
+ explode: boolean;
2366
+ };
2367
+ };
2033
2368
  parameters: {
2034
2369
  ids: z.ZodArray<z.ZodNumber, "many">;
2035
2370
  };
@@ -2071,6 +2406,14 @@ export declare const getUserUseridCanmanageAssetid: {
2071
2406
  path: string;
2072
2407
  baseUrl: string;
2073
2408
  requestFormat: "json";
2409
+ serializationMethod: {
2410
+ userId: {
2411
+ style: string;
2412
+ };
2413
+ assetId: {
2414
+ style: string;
2415
+ };
2416
+ };
2074
2417
  parameters: {
2075
2418
  userId: z.ZodNumber;
2076
2419
  assetId: z.ZodNumber;
@@ -2125,6 +2468,20 @@ export declare const getUserTeamcreateMemberships: {
2125
2468
  path: string;
2126
2469
  baseUrl: string;
2127
2470
  requestFormat: "json";
2471
+ serializationMethod: {
2472
+ limit: {
2473
+ style: string;
2474
+ explode: boolean;
2475
+ };
2476
+ cursor: {
2477
+ style: string;
2478
+ explode: boolean;
2479
+ };
2480
+ sortOrder: {
2481
+ style: string;
2482
+ explode: boolean;
2483
+ };
2484
+ };
2128
2485
  parameters: {
2129
2486
  limit: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<10>, z.ZodLiteral<25>, z.ZodLiteral<50>, z.ZodLiteral<100>]>>>;
2130
2487
  cursor: z.ZodOptional<z.ZodString>;
@@ -2226,6 +2583,24 @@ export declare const getUserUniverses: {
2226
2583
  path: string;
2227
2584
  baseUrl: string;
2228
2585
  requestFormat: "json";
2586
+ serializationMethod: {
2587
+ isArchived: {
2588
+ style: string;
2589
+ explode: boolean;
2590
+ };
2591
+ limit: {
2592
+ style: string;
2593
+ explode: boolean;
2594
+ };
2595
+ cursor: {
2596
+ style: string;
2597
+ explode: boolean;
2598
+ };
2599
+ sortOrder: {
2600
+ style: string;
2601
+ explode: boolean;
2602
+ };
2603
+ };
2229
2604
  parameters: {
2230
2605
  isArchived: z.ZodOptional<z.ZodBoolean>;
2231
2606
  limit: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<10>, z.ZodLiteral<25>, z.ZodLiteral<50>, z.ZodLiteral<100>]>>>;