vrchat 1.20.0 → 1.20.1
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/api.ts +4154 -2779
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +1241 -195
- package/dist/api.js +736 -12
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRChat API Documentation
|
|
3
3
|
*
|
|
4
|
-
* The version of the OpenAPI document: 1.20.
|
|
4
|
+
* The version of the OpenAPI document: 1.20.1
|
|
5
5
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1664,6 +1664,128 @@ export interface AddGroupGalleryImageRequest {
|
|
|
1664
1664
|
*/
|
|
1665
1665
|
'fileId': string;
|
|
1666
1666
|
}
|
|
1667
|
+
/**
|
|
1668
|
+
*
|
|
1669
|
+
* @export
|
|
1670
|
+
* @interface AdminAssetBundle
|
|
1671
|
+
*/
|
|
1672
|
+
export interface AdminAssetBundle {
|
|
1673
|
+
/**
|
|
1674
|
+
*
|
|
1675
|
+
* @type {string}
|
|
1676
|
+
* @memberof AdminAssetBundle
|
|
1677
|
+
*/
|
|
1678
|
+
'_created_at': string;
|
|
1679
|
+
/**
|
|
1680
|
+
*
|
|
1681
|
+
* @type {string}
|
|
1682
|
+
* @memberof AdminAssetBundle
|
|
1683
|
+
*/
|
|
1684
|
+
'_updated_at': string;
|
|
1685
|
+
/**
|
|
1686
|
+
*
|
|
1687
|
+
* @type {string}
|
|
1688
|
+
* @memberof AdminAssetBundle
|
|
1689
|
+
*/
|
|
1690
|
+
'assetType': string;
|
|
1691
|
+
/**
|
|
1692
|
+
* A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed.
|
|
1693
|
+
* @type {string}
|
|
1694
|
+
* @memberof AdminAssetBundle
|
|
1695
|
+
*/
|
|
1696
|
+
'authorId': string;
|
|
1697
|
+
/**
|
|
1698
|
+
*
|
|
1699
|
+
* @type {string}
|
|
1700
|
+
* @memberof AdminAssetBundle
|
|
1701
|
+
*/
|
|
1702
|
+
'authorName': string;
|
|
1703
|
+
/**
|
|
1704
|
+
*
|
|
1705
|
+
* @type {string}
|
|
1706
|
+
* @memberof AdminAssetBundle
|
|
1707
|
+
*/
|
|
1708
|
+
'description': string;
|
|
1709
|
+
/**
|
|
1710
|
+
*
|
|
1711
|
+
* @type {string}
|
|
1712
|
+
* @memberof AdminAssetBundle
|
|
1713
|
+
*/
|
|
1714
|
+
'imageUrl': string;
|
|
1715
|
+
/**
|
|
1716
|
+
*
|
|
1717
|
+
* @type {string}
|
|
1718
|
+
* @memberof AdminAssetBundle
|
|
1719
|
+
*/
|
|
1720
|
+
'name': string;
|
|
1721
|
+
/**
|
|
1722
|
+
*
|
|
1723
|
+
* @type {ReleaseStatus}
|
|
1724
|
+
* @memberof AdminAssetBundle
|
|
1725
|
+
*/
|
|
1726
|
+
'releaseStatus': ReleaseStatus;
|
|
1727
|
+
/**
|
|
1728
|
+
*
|
|
1729
|
+
* @type {Array<string>}
|
|
1730
|
+
* @memberof AdminAssetBundle
|
|
1731
|
+
*/
|
|
1732
|
+
'tags': Array<string>;
|
|
1733
|
+
/**
|
|
1734
|
+
*
|
|
1735
|
+
* @type {string}
|
|
1736
|
+
* @memberof AdminAssetBundle
|
|
1737
|
+
*/
|
|
1738
|
+
'thumbnailImageUrl': string;
|
|
1739
|
+
/**
|
|
1740
|
+
*
|
|
1741
|
+
* @type {string}
|
|
1742
|
+
* @memberof AdminAssetBundle
|
|
1743
|
+
*/
|
|
1744
|
+
'unityPackageUrl': string | null;
|
|
1745
|
+
/**
|
|
1746
|
+
*
|
|
1747
|
+
* @type {Set<AdminUnityPackage>}
|
|
1748
|
+
* @memberof AdminAssetBundle
|
|
1749
|
+
*/
|
|
1750
|
+
'unityPackages': Set<AdminUnityPackage>;
|
|
1751
|
+
}
|
|
1752
|
+
/**
|
|
1753
|
+
*
|
|
1754
|
+
* @export
|
|
1755
|
+
* @interface AdminUnityPackage
|
|
1756
|
+
*/
|
|
1757
|
+
export interface AdminUnityPackage {
|
|
1758
|
+
/**
|
|
1759
|
+
*
|
|
1760
|
+
* @type {string}
|
|
1761
|
+
* @memberof AdminUnityPackage
|
|
1762
|
+
*/
|
|
1763
|
+
'assetUrl': string;
|
|
1764
|
+
/**
|
|
1765
|
+
*
|
|
1766
|
+
* @type {number}
|
|
1767
|
+
* @memberof AdminUnityPackage
|
|
1768
|
+
*/
|
|
1769
|
+
'assetVersion': number;
|
|
1770
|
+
/**
|
|
1771
|
+
* This can be `standalonewindows` or `android`, but can also pretty much be any random Unity verison such as `2019.2.4-801-Release` or `2019.2.2-772-Release` or even `unknownplatform`.
|
|
1772
|
+
* @type {string}
|
|
1773
|
+
* @memberof AdminUnityPackage
|
|
1774
|
+
*/
|
|
1775
|
+
'platform': string;
|
|
1776
|
+
/**
|
|
1777
|
+
*
|
|
1778
|
+
* @type {string}
|
|
1779
|
+
* @memberof AdminUnityPackage
|
|
1780
|
+
*/
|
|
1781
|
+
'unityVersion': string;
|
|
1782
|
+
/**
|
|
1783
|
+
*
|
|
1784
|
+
* @type {string}
|
|
1785
|
+
* @memberof AdminUnityPackage
|
|
1786
|
+
*/
|
|
1787
|
+
'variant': string;
|
|
1788
|
+
}
|
|
1667
1789
|
/**
|
|
1668
1790
|
* `verified` is obsolete. User who have verified and are 18+ can switch to `plus18` status.
|
|
1669
1791
|
* @export
|
|
@@ -1931,6 +2053,25 @@ export interface AvatarPublishedListingsInner {
|
|
|
1931
2053
|
*/
|
|
1932
2054
|
'priceTokens'?: number;
|
|
1933
2055
|
}
|
|
2056
|
+
/**
|
|
2057
|
+
*
|
|
2058
|
+
* @export
|
|
2059
|
+
* @interface AvatarStyle
|
|
2060
|
+
*/
|
|
2061
|
+
export interface AvatarStyle {
|
|
2062
|
+
/**
|
|
2063
|
+
*
|
|
2064
|
+
* @type {string}
|
|
2065
|
+
* @memberof AvatarStyle
|
|
2066
|
+
*/
|
|
2067
|
+
'id': string;
|
|
2068
|
+
/**
|
|
2069
|
+
*
|
|
2070
|
+
* @type {string}
|
|
2071
|
+
* @memberof AvatarStyle
|
|
2072
|
+
*/
|
|
2073
|
+
'styleName': string;
|
|
2074
|
+
}
|
|
1934
2075
|
/**
|
|
1935
2076
|
*
|
|
1936
2077
|
* @export
|
|
@@ -5293,6 +5434,7 @@ export declare const GroupPermissions: {
|
|
|
5293
5434
|
readonly group_members_viewall: "group-members-viewall";
|
|
5294
5435
|
readonly group_roles_assign: "group-roles-assign";
|
|
5295
5436
|
readonly group_roles_manage: "group-roles-manage";
|
|
5437
|
+
readonly group_calendar_manage: "group-calendar-manage";
|
|
5296
5438
|
};
|
|
5297
5439
|
export type GroupPermissions = typeof GroupPermissions[keyof typeof GroupPermissions];
|
|
5298
5440
|
/**
|
|
@@ -6136,218 +6278,652 @@ export type InstanceType = typeof InstanceType[keyof typeof InstanceType];
|
|
|
6136
6278
|
/**
|
|
6137
6279
|
*
|
|
6138
6280
|
* @export
|
|
6139
|
-
* @interface
|
|
6281
|
+
* @interface Inventory
|
|
6140
6282
|
*/
|
|
6141
|
-
export interface
|
|
6142
|
-
/**
|
|
6143
|
-
*
|
|
6144
|
-
* @type {boolean}
|
|
6145
|
-
* @memberof InviteMessage
|
|
6146
|
-
*/
|
|
6147
|
-
'canBeUpdated': boolean;
|
|
6148
|
-
/**
|
|
6149
|
-
*
|
|
6150
|
-
* @type {string}
|
|
6151
|
-
* @memberof InviteMessage
|
|
6152
|
-
*/
|
|
6153
|
-
'id': string;
|
|
6154
|
-
/**
|
|
6155
|
-
*
|
|
6156
|
-
* @type {string}
|
|
6157
|
-
* @memberof InviteMessage
|
|
6158
|
-
*/
|
|
6159
|
-
'message': string;
|
|
6283
|
+
export interface Inventory {
|
|
6160
6284
|
/**
|
|
6161
6285
|
*
|
|
6162
|
-
* @type {
|
|
6163
|
-
* @memberof
|
|
6164
|
-
*/
|
|
6165
|
-
'messageType': InviteMessageType;
|
|
6166
|
-
/**
|
|
6167
|
-
* Changes to 60 when updated, although probably server-side configurable.
|
|
6168
|
-
* @type {number}
|
|
6169
|
-
* @memberof InviteMessage
|
|
6286
|
+
* @type {Array<InventoryItem>}
|
|
6287
|
+
* @memberof Inventory
|
|
6170
6288
|
*/
|
|
6171
|
-
'
|
|
6289
|
+
'data': Array<InventoryItem>;
|
|
6172
6290
|
/**
|
|
6173
6291
|
*
|
|
6174
6292
|
* @type {number}
|
|
6175
|
-
* @memberof
|
|
6176
|
-
*/
|
|
6177
|
-
'slot': number;
|
|
6178
|
-
/**
|
|
6179
|
-
*
|
|
6180
|
-
* @type {string}
|
|
6181
|
-
* @memberof InviteMessage
|
|
6293
|
+
* @memberof Inventory
|
|
6182
6294
|
*/
|
|
6183
|
-
'
|
|
6295
|
+
'totalCount': number;
|
|
6184
6296
|
}
|
|
6185
6297
|
/**
|
|
6186
6298
|
*
|
|
6187
6299
|
* @export
|
|
6188
|
-
* @
|
|
6189
|
-
*/
|
|
6190
|
-
export declare const InviteMessageType: {
|
|
6191
|
-
readonly Message: "message";
|
|
6192
|
-
readonly Response: "response";
|
|
6193
|
-
readonly Request: "request";
|
|
6194
|
-
readonly RequestResponse: "requestResponse";
|
|
6195
|
-
};
|
|
6196
|
-
export type InviteMessageType = typeof InviteMessageType[keyof typeof InviteMessageType];
|
|
6197
|
-
/**
|
|
6198
|
-
*
|
|
6199
|
-
* @export
|
|
6200
|
-
* @interface InviteRequest
|
|
6300
|
+
* @interface InventoryDrop
|
|
6201
6301
|
*/
|
|
6202
|
-
export interface
|
|
6302
|
+
export interface InventoryDrop {
|
|
6203
6303
|
/**
|
|
6204
|
-
*
|
|
6304
|
+
* A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed.
|
|
6205
6305
|
* @type {string}
|
|
6206
|
-
* @memberof
|
|
6306
|
+
* @memberof InventoryDrop
|
|
6207
6307
|
*/
|
|
6208
|
-
'
|
|
6308
|
+
'authorId': string;
|
|
6209
6309
|
/**
|
|
6210
6310
|
*
|
|
6211
|
-
* @type {
|
|
6212
|
-
* @memberof
|
|
6311
|
+
* @type {string}
|
|
6312
|
+
* @memberof InventoryDrop
|
|
6213
6313
|
*/
|
|
6214
|
-
'
|
|
6215
|
-
}
|
|
6216
|
-
/**
|
|
6217
|
-
*
|
|
6218
|
-
* @export
|
|
6219
|
-
* @interface InviteResponse
|
|
6220
|
-
*/
|
|
6221
|
-
export interface InviteResponse {
|
|
6314
|
+
'created_at': string;
|
|
6222
6315
|
/**
|
|
6223
6316
|
*
|
|
6224
|
-
* @type {
|
|
6225
|
-
* @memberof
|
|
6317
|
+
* @type {string}
|
|
6318
|
+
* @memberof InventoryDrop
|
|
6226
6319
|
*/
|
|
6227
|
-
'
|
|
6228
|
-
}
|
|
6229
|
-
/**
|
|
6230
|
-
*
|
|
6231
|
-
* @export
|
|
6232
|
-
* @interface Jam
|
|
6233
|
-
*/
|
|
6234
|
-
export interface Jam {
|
|
6320
|
+
'dropExpiryDate': string | null;
|
|
6235
6321
|
/**
|
|
6236
6322
|
*
|
|
6237
6323
|
* @type {string}
|
|
6238
|
-
* @memberof
|
|
6324
|
+
* @memberof InventoryDrop
|
|
6239
6325
|
*/
|
|
6240
|
-
'
|
|
6326
|
+
'endDropDate': string;
|
|
6241
6327
|
/**
|
|
6242
6328
|
*
|
|
6243
6329
|
* @type {string}
|
|
6244
|
-
* @memberof
|
|
6330
|
+
* @memberof InventoryDrop
|
|
6245
6331
|
*/
|
|
6246
6332
|
'id': string;
|
|
6247
6333
|
/**
|
|
6248
6334
|
*
|
|
6249
|
-
* @type {
|
|
6250
|
-
* @memberof
|
|
6335
|
+
* @type {string}
|
|
6336
|
+
* @memberof InventoryDrop
|
|
6251
6337
|
*/
|
|
6252
|
-
'
|
|
6338
|
+
'name': string;
|
|
6253
6339
|
/**
|
|
6254
6340
|
*
|
|
6255
|
-
* @type {
|
|
6256
|
-
* @memberof
|
|
6341
|
+
* @type {InventoryNotificationDetails}
|
|
6342
|
+
* @memberof InventoryDrop
|
|
6257
6343
|
*/
|
|
6258
|
-
'
|
|
6344
|
+
'notificationDetails': InventoryNotificationDetails;
|
|
6259
6345
|
/**
|
|
6260
|
-
*
|
|
6346
|
+
*
|
|
6261
6347
|
* @type {string}
|
|
6262
|
-
* @memberof
|
|
6348
|
+
* @memberof InventoryDrop
|
|
6263
6349
|
*/
|
|
6264
|
-
'
|
|
6350
|
+
'startDropDate': string;
|
|
6265
6351
|
/**
|
|
6266
6352
|
*
|
|
6267
|
-
* @type {
|
|
6268
|
-
* @memberof
|
|
6353
|
+
* @type {string}
|
|
6354
|
+
* @memberof InventoryDrop
|
|
6269
6355
|
*/
|
|
6270
|
-
'
|
|
6356
|
+
'status': string;
|
|
6271
6357
|
/**
|
|
6272
6358
|
*
|
|
6273
|
-
* @type {string}
|
|
6274
|
-
* @memberof
|
|
6359
|
+
* @type {Array<string>}
|
|
6360
|
+
* @memberof InventoryDrop
|
|
6275
6361
|
*/
|
|
6276
|
-
'
|
|
6362
|
+
'tags': Array<string>;
|
|
6277
6363
|
/**
|
|
6278
6364
|
*
|
|
6279
|
-
* @type {
|
|
6280
|
-
* @memberof
|
|
6365
|
+
* @type {string}
|
|
6366
|
+
* @memberof InventoryDrop
|
|
6281
6367
|
*/
|
|
6282
|
-
'
|
|
6368
|
+
'targetGroup': string;
|
|
6283
6369
|
/**
|
|
6284
6370
|
*
|
|
6285
|
-
* @type {string}
|
|
6286
|
-
* @memberof
|
|
6371
|
+
* @type {Array<string>}
|
|
6372
|
+
* @memberof InventoryDrop
|
|
6287
6373
|
*/
|
|
6288
|
-
'
|
|
6374
|
+
'templateIds': Array<string>;
|
|
6289
6375
|
/**
|
|
6290
6376
|
*
|
|
6291
6377
|
* @type {string}
|
|
6292
|
-
* @memberof
|
|
6378
|
+
* @memberof InventoryDrop
|
|
6293
6379
|
*/
|
|
6294
6380
|
'updated_at': string;
|
|
6295
6381
|
}
|
|
6296
6382
|
/**
|
|
6297
6383
|
*
|
|
6298
6384
|
* @export
|
|
6299
|
-
* @interface
|
|
6385
|
+
* @interface InventoryItem
|
|
6300
6386
|
*/
|
|
6301
|
-
export interface
|
|
6387
|
+
export interface InventoryItem {
|
|
6302
6388
|
/**
|
|
6303
6389
|
*
|
|
6304
|
-
* @type {string}
|
|
6305
|
-
* @memberof
|
|
6390
|
+
* @type {Array<string>}
|
|
6391
|
+
* @memberof InventoryItem
|
|
6306
6392
|
*/
|
|
6307
|
-
'
|
|
6393
|
+
'collections': Array<string>;
|
|
6308
6394
|
/**
|
|
6309
6395
|
*
|
|
6310
6396
|
* @type {string}
|
|
6311
|
-
* @memberof
|
|
6397
|
+
* @memberof InventoryItem
|
|
6312
6398
|
*/
|
|
6313
|
-
'
|
|
6399
|
+
'created_at': string;
|
|
6314
6400
|
/**
|
|
6315
6401
|
*
|
|
6316
6402
|
* @type {string}
|
|
6317
|
-
* @memberof
|
|
6403
|
+
* @memberof InventoryItem
|
|
6318
6404
|
*/
|
|
6319
|
-
'
|
|
6405
|
+
'description': string;
|
|
6320
6406
|
/**
|
|
6321
6407
|
*
|
|
6322
6408
|
* @type {string}
|
|
6323
|
-
* @memberof
|
|
6409
|
+
* @memberof InventoryItem
|
|
6324
6410
|
*/
|
|
6325
|
-
'
|
|
6326
|
-
}
|
|
6327
|
-
/**
|
|
6328
|
-
*
|
|
6329
|
-
* @export
|
|
6330
|
-
* @interface License
|
|
6331
|
-
*/
|
|
6332
|
-
export interface License {
|
|
6411
|
+
'expiryDate': string | null;
|
|
6333
6412
|
/**
|
|
6334
|
-
*
|
|
6335
|
-
* @type {string}
|
|
6336
|
-
* @memberof
|
|
6413
|
+
*
|
|
6414
|
+
* @type {Array<string>}
|
|
6415
|
+
* @memberof InventoryItem
|
|
6337
6416
|
*/
|
|
6338
|
-
'
|
|
6417
|
+
'flags': Array<string>;
|
|
6339
6418
|
/**
|
|
6340
|
-
*
|
|
6341
|
-
* @type {
|
|
6342
|
-
* @memberof
|
|
6419
|
+
* A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed.
|
|
6420
|
+
* @type {string}
|
|
6421
|
+
* @memberof InventoryItem
|
|
6343
6422
|
*/
|
|
6344
|
-
'
|
|
6423
|
+
'holderId': string;
|
|
6345
6424
|
/**
|
|
6346
6425
|
*
|
|
6347
6426
|
* @type {string}
|
|
6348
|
-
* @memberof
|
|
6427
|
+
* @memberof InventoryItem
|
|
6349
6428
|
*/
|
|
6350
|
-
'
|
|
6429
|
+
'id': string;
|
|
6430
|
+
/**
|
|
6431
|
+
*
|
|
6432
|
+
* @type {string}
|
|
6433
|
+
* @memberof InventoryItem
|
|
6434
|
+
*/
|
|
6435
|
+
'imageUrl': string;
|
|
6436
|
+
/**
|
|
6437
|
+
*
|
|
6438
|
+
* @type {boolean}
|
|
6439
|
+
* @memberof InventoryItem
|
|
6440
|
+
*/
|
|
6441
|
+
'isArchived': boolean;
|
|
6442
|
+
/**
|
|
6443
|
+
*
|
|
6444
|
+
* @type {boolean}
|
|
6445
|
+
* @memberof InventoryItem
|
|
6446
|
+
*/
|
|
6447
|
+
'isSeen': boolean;
|
|
6448
|
+
/**
|
|
6449
|
+
*
|
|
6450
|
+
* @type {InventoryItemType}
|
|
6451
|
+
* @memberof InventoryItem
|
|
6452
|
+
*/
|
|
6453
|
+
'itemType': InventoryItemType;
|
|
6454
|
+
/**
|
|
6455
|
+
*
|
|
6456
|
+
* @type {string}
|
|
6457
|
+
* @memberof InventoryItem
|
|
6458
|
+
*/
|
|
6459
|
+
'itemTypeLabel': string;
|
|
6460
|
+
/**
|
|
6461
|
+
*
|
|
6462
|
+
* @type {InventoryMetadata}
|
|
6463
|
+
* @memberof InventoryItem
|
|
6464
|
+
*/
|
|
6465
|
+
'metadata': InventoryMetadata;
|
|
6466
|
+
/**
|
|
6467
|
+
*
|
|
6468
|
+
* @type {string}
|
|
6469
|
+
* @memberof InventoryItem
|
|
6470
|
+
*/
|
|
6471
|
+
'name': string;
|
|
6472
|
+
/**
|
|
6473
|
+
*
|
|
6474
|
+
* @type {Array<string>}
|
|
6475
|
+
* @memberof InventoryItem
|
|
6476
|
+
*/
|
|
6477
|
+
'tags': Array<string>;
|
|
6478
|
+
/**
|
|
6479
|
+
*
|
|
6480
|
+
* @type {string}
|
|
6481
|
+
* @memberof InventoryItem
|
|
6482
|
+
*/
|
|
6483
|
+
'templateId': string;
|
|
6484
|
+
/**
|
|
6485
|
+
*
|
|
6486
|
+
* @type {string}
|
|
6487
|
+
* @memberof InventoryItem
|
|
6488
|
+
*/
|
|
6489
|
+
'template_created_at': string;
|
|
6490
|
+
/**
|
|
6491
|
+
*
|
|
6492
|
+
* @type {string}
|
|
6493
|
+
* @memberof InventoryItem
|
|
6494
|
+
*/
|
|
6495
|
+
'template_updated_at': string;
|
|
6496
|
+
/**
|
|
6497
|
+
*
|
|
6498
|
+
* @type {string}
|
|
6499
|
+
* @memberof InventoryItem
|
|
6500
|
+
*/
|
|
6501
|
+
'updated_at': string;
|
|
6502
|
+
}
|
|
6503
|
+
/**
|
|
6504
|
+
*
|
|
6505
|
+
* @export
|
|
6506
|
+
* @enum {string}
|
|
6507
|
+
*/
|
|
6508
|
+
export declare const InventoryItemType: {
|
|
6509
|
+
readonly Bundle: "bundle";
|
|
6510
|
+
readonly Prop: "prop";
|
|
6511
|
+
readonly Emoji: "emoji";
|
|
6512
|
+
readonly Sticker: "sticker";
|
|
6513
|
+
};
|
|
6514
|
+
export type InventoryItemType = typeof InventoryItemType[keyof typeof InventoryItemType];
|
|
6515
|
+
/**
|
|
6516
|
+
*
|
|
6517
|
+
* @export
|
|
6518
|
+
* @interface InventoryMetadata
|
|
6519
|
+
*/
|
|
6520
|
+
export interface InventoryMetadata {
|
|
6521
|
+
[key: string]: any;
|
|
6522
|
+
/**
|
|
6523
|
+
* Only in bundles
|
|
6524
|
+
* @type {Array<string>}
|
|
6525
|
+
* @memberof InventoryMetadata
|
|
6526
|
+
*/
|
|
6527
|
+
'inventoryItemsToInstantiate'?: Array<string>;
|
|
6528
|
+
/**
|
|
6529
|
+
*
|
|
6530
|
+
* @type {boolean}
|
|
6531
|
+
* @memberof InventoryMetadata
|
|
6532
|
+
*/
|
|
6533
|
+
'animated'?: boolean;
|
|
6534
|
+
/**
|
|
6535
|
+
*
|
|
6536
|
+
* @type {string}
|
|
6537
|
+
* @memberof InventoryMetadata
|
|
6538
|
+
*/
|
|
6539
|
+
'animationStyle'?: string;
|
|
6540
|
+
/**
|
|
6541
|
+
*
|
|
6542
|
+
* @type {string}
|
|
6543
|
+
* @memberof InventoryMetadata
|
|
6544
|
+
*/
|
|
6545
|
+
'assetBundleId'?: string;
|
|
6546
|
+
/**
|
|
6547
|
+
*
|
|
6548
|
+
* @type {string}
|
|
6549
|
+
* @memberof InventoryMetadata
|
|
6550
|
+
*/
|
|
6551
|
+
'fileId'?: string;
|
|
6552
|
+
/**
|
|
6553
|
+
*
|
|
6554
|
+
* @type {string}
|
|
6555
|
+
* @memberof InventoryMetadata
|
|
6556
|
+
*/
|
|
6557
|
+
'imageUrl'?: string;
|
|
6558
|
+
/**
|
|
6559
|
+
*
|
|
6560
|
+
* @type {string}
|
|
6561
|
+
* @memberof InventoryMetadata
|
|
6562
|
+
*/
|
|
6563
|
+
'maskTag'?: string;
|
|
6564
|
+
/**
|
|
6565
|
+
*
|
|
6566
|
+
* @type {string}
|
|
6567
|
+
* @memberof InventoryMetadata
|
|
6568
|
+
*/
|
|
6569
|
+
'propId'?: string;
|
|
6570
|
+
}
|
|
6571
|
+
/**
|
|
6572
|
+
*
|
|
6573
|
+
* @export
|
|
6574
|
+
* @interface InventoryNotificationDetails
|
|
6575
|
+
*/
|
|
6576
|
+
export interface InventoryNotificationDetails {
|
|
6577
|
+
/**
|
|
6578
|
+
*
|
|
6579
|
+
* @type {string}
|
|
6580
|
+
* @memberof InventoryNotificationDetails
|
|
6581
|
+
*/
|
|
6582
|
+
'body': string;
|
|
6583
|
+
/**
|
|
6584
|
+
*
|
|
6585
|
+
* @type {string}
|
|
6586
|
+
* @memberof InventoryNotificationDetails
|
|
6587
|
+
*/
|
|
6588
|
+
'imageUrl': string;
|
|
6589
|
+
/**
|
|
6590
|
+
*
|
|
6591
|
+
* @type {string}
|
|
6592
|
+
* @memberof InventoryNotificationDetails
|
|
6593
|
+
*/
|
|
6594
|
+
'title': string;
|
|
6595
|
+
}
|
|
6596
|
+
/**
|
|
6597
|
+
*
|
|
6598
|
+
* @export
|
|
6599
|
+
* @interface InventorySpawn
|
|
6600
|
+
*/
|
|
6601
|
+
export interface InventorySpawn {
|
|
6602
|
+
/**
|
|
6603
|
+
*
|
|
6604
|
+
* @type {string}
|
|
6605
|
+
* @memberof InventorySpawn
|
|
6606
|
+
*/
|
|
6607
|
+
'token': string;
|
|
6608
|
+
/**
|
|
6609
|
+
*
|
|
6610
|
+
* @type {number}
|
|
6611
|
+
* @memberof InventorySpawn
|
|
6612
|
+
*/
|
|
6613
|
+
'version': number;
|
|
6614
|
+
}
|
|
6615
|
+
/**
|
|
6616
|
+
*
|
|
6617
|
+
* @export
|
|
6618
|
+
* @interface InventoryTemplate
|
|
6619
|
+
*/
|
|
6620
|
+
export interface InventoryTemplate {
|
|
6621
|
+
/**
|
|
6622
|
+
* A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed.
|
|
6623
|
+
* @type {string}
|
|
6624
|
+
* @memberof InventoryTemplate
|
|
6625
|
+
*/
|
|
6626
|
+
'authorId': string;
|
|
6627
|
+
/**
|
|
6628
|
+
*
|
|
6629
|
+
* @type {Array<string>}
|
|
6630
|
+
* @memberof InventoryTemplate
|
|
6631
|
+
*/
|
|
6632
|
+
'collections': Array<string>;
|
|
6633
|
+
/**
|
|
6634
|
+
*
|
|
6635
|
+
* @type {string}
|
|
6636
|
+
* @memberof InventoryTemplate
|
|
6637
|
+
*/
|
|
6638
|
+
'created_at': string;
|
|
6639
|
+
/**
|
|
6640
|
+
*
|
|
6641
|
+
* @type {string}
|
|
6642
|
+
* @memberof InventoryTemplate
|
|
6643
|
+
*/
|
|
6644
|
+
'description': string;
|
|
6645
|
+
/**
|
|
6646
|
+
*
|
|
6647
|
+
* @type {Array<string>}
|
|
6648
|
+
* @memberof InventoryTemplate
|
|
6649
|
+
*/
|
|
6650
|
+
'flags': Array<string>;
|
|
6651
|
+
/**
|
|
6652
|
+
*
|
|
6653
|
+
* @type {string}
|
|
6654
|
+
* @memberof InventoryTemplate
|
|
6655
|
+
*/
|
|
6656
|
+
'id': string;
|
|
6657
|
+
/**
|
|
6658
|
+
*
|
|
6659
|
+
* @type {string}
|
|
6660
|
+
* @memberof InventoryTemplate
|
|
6661
|
+
*/
|
|
6662
|
+
'imageUrl': string;
|
|
6663
|
+
/**
|
|
6664
|
+
*
|
|
6665
|
+
* @type {InventoryItemType}
|
|
6666
|
+
* @memberof InventoryTemplate
|
|
6667
|
+
*/
|
|
6668
|
+
'itemType': InventoryItemType;
|
|
6669
|
+
/**
|
|
6670
|
+
*
|
|
6671
|
+
* @type {string}
|
|
6672
|
+
* @memberof InventoryTemplate
|
|
6673
|
+
*/
|
|
6674
|
+
'itemTypeLabel': string;
|
|
6675
|
+
/**
|
|
6676
|
+
*
|
|
6677
|
+
* @type {InventoryMetadata}
|
|
6678
|
+
* @memberof InventoryTemplate
|
|
6679
|
+
*/
|
|
6680
|
+
'metadata'?: InventoryMetadata;
|
|
6681
|
+
/**
|
|
6682
|
+
*
|
|
6683
|
+
* @type {string}
|
|
6684
|
+
* @memberof InventoryTemplate
|
|
6685
|
+
*/
|
|
6686
|
+
'name': string;
|
|
6687
|
+
/**
|
|
6688
|
+
*
|
|
6689
|
+
* @type {InventoryNotificationDetails}
|
|
6690
|
+
* @memberof InventoryTemplate
|
|
6691
|
+
*/
|
|
6692
|
+
'notificationDetails'?: InventoryNotificationDetails;
|
|
6693
|
+
/**
|
|
6694
|
+
*
|
|
6695
|
+
* @type {string}
|
|
6696
|
+
* @memberof InventoryTemplate
|
|
6697
|
+
*/
|
|
6698
|
+
'status': string;
|
|
6699
|
+
/**
|
|
6700
|
+
*
|
|
6701
|
+
* @type {Array<string>}
|
|
6702
|
+
* @memberof InventoryTemplate
|
|
6703
|
+
*/
|
|
6704
|
+
'tags': Array<string>;
|
|
6705
|
+
/**
|
|
6706
|
+
*
|
|
6707
|
+
* @type {string}
|
|
6708
|
+
* @memberof InventoryTemplate
|
|
6709
|
+
*/
|
|
6710
|
+
'updated_at': string;
|
|
6711
|
+
}
|
|
6712
|
+
/**
|
|
6713
|
+
*
|
|
6714
|
+
* @export
|
|
6715
|
+
* @interface InviteMessage
|
|
6716
|
+
*/
|
|
6717
|
+
export interface InviteMessage {
|
|
6718
|
+
/**
|
|
6719
|
+
*
|
|
6720
|
+
* @type {boolean}
|
|
6721
|
+
* @memberof InviteMessage
|
|
6722
|
+
*/
|
|
6723
|
+
'canBeUpdated': boolean;
|
|
6724
|
+
/**
|
|
6725
|
+
*
|
|
6726
|
+
* @type {string}
|
|
6727
|
+
* @memberof InviteMessage
|
|
6728
|
+
*/
|
|
6729
|
+
'id': string;
|
|
6730
|
+
/**
|
|
6731
|
+
*
|
|
6732
|
+
* @type {string}
|
|
6733
|
+
* @memberof InviteMessage
|
|
6734
|
+
*/
|
|
6735
|
+
'message': string;
|
|
6736
|
+
/**
|
|
6737
|
+
*
|
|
6738
|
+
* @type {InviteMessageType}
|
|
6739
|
+
* @memberof InviteMessage
|
|
6740
|
+
*/
|
|
6741
|
+
'messageType': InviteMessageType;
|
|
6742
|
+
/**
|
|
6743
|
+
* Changes to 60 when updated, although probably server-side configurable.
|
|
6744
|
+
* @type {number}
|
|
6745
|
+
* @memberof InviteMessage
|
|
6746
|
+
*/
|
|
6747
|
+
'remainingCooldownMinutes': number;
|
|
6748
|
+
/**
|
|
6749
|
+
*
|
|
6750
|
+
* @type {number}
|
|
6751
|
+
* @memberof InviteMessage
|
|
6752
|
+
*/
|
|
6753
|
+
'slot': number;
|
|
6754
|
+
/**
|
|
6755
|
+
*
|
|
6756
|
+
* @type {string}
|
|
6757
|
+
* @memberof InviteMessage
|
|
6758
|
+
*/
|
|
6759
|
+
'updatedAt': string;
|
|
6760
|
+
}
|
|
6761
|
+
/**
|
|
6762
|
+
*
|
|
6763
|
+
* @export
|
|
6764
|
+
* @enum {string}
|
|
6765
|
+
*/
|
|
6766
|
+
export declare const InviteMessageType: {
|
|
6767
|
+
readonly Message: "message";
|
|
6768
|
+
readonly Response: "response";
|
|
6769
|
+
readonly Request: "request";
|
|
6770
|
+
readonly RequestResponse: "requestResponse";
|
|
6771
|
+
};
|
|
6772
|
+
export type InviteMessageType = typeof InviteMessageType[keyof typeof InviteMessageType];
|
|
6773
|
+
/**
|
|
6774
|
+
*
|
|
6775
|
+
* @export
|
|
6776
|
+
* @interface InviteRequest
|
|
6777
|
+
*/
|
|
6778
|
+
export interface InviteRequest {
|
|
6779
|
+
/**
|
|
6780
|
+
* InstanceID can be \"offline\" on User profiles if you are not friends with that user and \"private\" if you are friends and user is in private instance.
|
|
6781
|
+
* @type {string}
|
|
6782
|
+
* @memberof InviteRequest
|
|
6783
|
+
*/
|
|
6784
|
+
'instanceId': string;
|
|
6785
|
+
/**
|
|
6786
|
+
*
|
|
6787
|
+
* @type {number}
|
|
6788
|
+
* @memberof InviteRequest
|
|
6789
|
+
*/
|
|
6790
|
+
'messageSlot'?: number;
|
|
6791
|
+
}
|
|
6792
|
+
/**
|
|
6793
|
+
*
|
|
6794
|
+
* @export
|
|
6795
|
+
* @interface InviteResponse
|
|
6796
|
+
*/
|
|
6797
|
+
export interface InviteResponse {
|
|
6798
|
+
/**
|
|
6799
|
+
*
|
|
6800
|
+
* @type {number}
|
|
6801
|
+
* @memberof InviteResponse
|
|
6802
|
+
*/
|
|
6803
|
+
'responseSlot': number;
|
|
6804
|
+
}
|
|
6805
|
+
/**
|
|
6806
|
+
*
|
|
6807
|
+
* @export
|
|
6808
|
+
* @interface Jam
|
|
6809
|
+
*/
|
|
6810
|
+
export interface Jam {
|
|
6811
|
+
/**
|
|
6812
|
+
*
|
|
6813
|
+
* @type {string}
|
|
6814
|
+
* @memberof Jam
|
|
6815
|
+
*/
|
|
6816
|
+
'description': string;
|
|
6817
|
+
/**
|
|
6818
|
+
*
|
|
6819
|
+
* @type {string}
|
|
6820
|
+
* @memberof Jam
|
|
6821
|
+
*/
|
|
6822
|
+
'id': string;
|
|
6823
|
+
/**
|
|
6824
|
+
*
|
|
6825
|
+
* @type {boolean}
|
|
6826
|
+
* @memberof Jam
|
|
6827
|
+
*/
|
|
6828
|
+
'isVisible': boolean;
|
|
6829
|
+
/**
|
|
6830
|
+
*
|
|
6831
|
+
* @type {string}
|
|
6832
|
+
* @memberof Jam
|
|
6833
|
+
*/
|
|
6834
|
+
'moreInfo': string;
|
|
6835
|
+
/**
|
|
6836
|
+
* One of: - submissions_open - closed
|
|
6837
|
+
* @type {string}
|
|
6838
|
+
* @memberof Jam
|
|
6839
|
+
*/
|
|
6840
|
+
'state': string;
|
|
6841
|
+
/**
|
|
6842
|
+
*
|
|
6843
|
+
* @type {JamStateChangeDates}
|
|
6844
|
+
* @memberof Jam
|
|
6845
|
+
*/
|
|
6846
|
+
'stateChangeDates': JamStateChangeDates;
|
|
6847
|
+
/**
|
|
6848
|
+
*
|
|
6849
|
+
* @type {string}
|
|
6850
|
+
* @memberof Jam
|
|
6851
|
+
*/
|
|
6852
|
+
'submissionContentGateDate': string | null;
|
|
6853
|
+
/**
|
|
6854
|
+
*
|
|
6855
|
+
* @type {boolean}
|
|
6856
|
+
* @memberof Jam
|
|
6857
|
+
*/
|
|
6858
|
+
'submissionContentGated': boolean;
|
|
6859
|
+
/**
|
|
6860
|
+
*
|
|
6861
|
+
* @type {string}
|
|
6862
|
+
* @memberof Jam
|
|
6863
|
+
*/
|
|
6864
|
+
'title': string;
|
|
6865
|
+
/**
|
|
6866
|
+
*
|
|
6867
|
+
* @type {string}
|
|
6868
|
+
* @memberof Jam
|
|
6869
|
+
*/
|
|
6870
|
+
'updated_at': string;
|
|
6871
|
+
}
|
|
6872
|
+
/**
|
|
6873
|
+
*
|
|
6874
|
+
* @export
|
|
6875
|
+
* @interface JamStateChangeDates
|
|
6876
|
+
*/
|
|
6877
|
+
export interface JamStateChangeDates {
|
|
6878
|
+
/**
|
|
6879
|
+
*
|
|
6880
|
+
* @type {string}
|
|
6881
|
+
* @memberof JamStateChangeDates
|
|
6882
|
+
*/
|
|
6883
|
+
'closed'?: string | null;
|
|
6884
|
+
/**
|
|
6885
|
+
*
|
|
6886
|
+
* @type {string}
|
|
6887
|
+
* @memberof JamStateChangeDates
|
|
6888
|
+
*/
|
|
6889
|
+
'submissionsClosed'?: string | null;
|
|
6890
|
+
/**
|
|
6891
|
+
*
|
|
6892
|
+
* @type {string}
|
|
6893
|
+
* @memberof JamStateChangeDates
|
|
6894
|
+
*/
|
|
6895
|
+
'submissionsOpened'?: string | null;
|
|
6896
|
+
/**
|
|
6897
|
+
*
|
|
6898
|
+
* @type {string}
|
|
6899
|
+
* @memberof JamStateChangeDates
|
|
6900
|
+
*/
|
|
6901
|
+
'winnersSelected'?: string | null;
|
|
6902
|
+
}
|
|
6903
|
+
/**
|
|
6904
|
+
*
|
|
6905
|
+
* @export
|
|
6906
|
+
* @interface License
|
|
6907
|
+
*/
|
|
6908
|
+
export interface License {
|
|
6909
|
+
/**
|
|
6910
|
+
* Either a AvatarID, LicenseGroupID, PermissionID or ProductID. This depends on the `forType` field.
|
|
6911
|
+
* @type {string}
|
|
6912
|
+
* @memberof License
|
|
6913
|
+
*/
|
|
6914
|
+
'forId': string;
|
|
6915
|
+
/**
|
|
6916
|
+
*
|
|
6917
|
+
* @type {LicenseType}
|
|
6918
|
+
* @memberof License
|
|
6919
|
+
*/
|
|
6920
|
+
'forType': LicenseType;
|
|
6921
|
+
/**
|
|
6922
|
+
*
|
|
6923
|
+
* @type {string}
|
|
6924
|
+
* @memberof License
|
|
6925
|
+
*/
|
|
6926
|
+
'forName': string;
|
|
6351
6927
|
/**
|
|
6352
6928
|
*
|
|
6353
6929
|
* @type {LicenseAction}
|
|
@@ -8102,110 +8678,256 @@ export interface ProductListing {
|
|
|
8102
8678
|
'recurrable': boolean;
|
|
8103
8679
|
/**
|
|
8104
8680
|
*
|
|
8105
|
-
* @type {boolean}
|
|
8106
|
-
* @memberof ProductListing
|
|
8681
|
+
* @type {boolean}
|
|
8682
|
+
* @memberof ProductListing
|
|
8683
|
+
*/
|
|
8684
|
+
'refundable': boolean;
|
|
8685
|
+
/**
|
|
8686
|
+
*
|
|
8687
|
+
* @type {string}
|
|
8688
|
+
* @memberof ProductListing
|
|
8689
|
+
*/
|
|
8690
|
+
'sellerDisplayName': string;
|
|
8691
|
+
/**
|
|
8692
|
+
*
|
|
8693
|
+
* @type {string}
|
|
8694
|
+
* @memberof ProductListing
|
|
8695
|
+
*/
|
|
8696
|
+
'sellerId': string;
|
|
8697
|
+
/**
|
|
8698
|
+
*
|
|
8699
|
+
* @type {boolean}
|
|
8700
|
+
* @memberof ProductListing
|
|
8701
|
+
*/
|
|
8702
|
+
'stackable': boolean;
|
|
8703
|
+
/**
|
|
8704
|
+
*
|
|
8705
|
+
* @type {Array<string>}
|
|
8706
|
+
* @memberof ProductListing
|
|
8707
|
+
*/
|
|
8708
|
+
'storeIds': Array<string>;
|
|
8709
|
+
/**
|
|
8710
|
+
*
|
|
8711
|
+
* @type {Array<string>}
|
|
8712
|
+
* @memberof ProductListing
|
|
8713
|
+
*/
|
|
8714
|
+
'tags': Array<string>;
|
|
8715
|
+
/**
|
|
8716
|
+
*
|
|
8717
|
+
* @type {string}
|
|
8718
|
+
* @memberof ProductListing
|
|
8719
|
+
*/
|
|
8720
|
+
'updated': string | null;
|
|
8721
|
+
}
|
|
8722
|
+
/**
|
|
8723
|
+
*
|
|
8724
|
+
* @export
|
|
8725
|
+
* @enum {string}
|
|
8726
|
+
*/
|
|
8727
|
+
export declare const ProductListingType: {
|
|
8728
|
+
readonly Subscription: "subscription";
|
|
8729
|
+
};
|
|
8730
|
+
export type ProductListingType = typeof ProductListingType[keyof typeof ProductListingType];
|
|
8731
|
+
/**
|
|
8732
|
+
*
|
|
8733
|
+
* @export
|
|
8734
|
+
* @interface ProductListingVariant
|
|
8735
|
+
*/
|
|
8736
|
+
export interface ProductListingVariant {
|
|
8737
|
+
/**
|
|
8738
|
+
*
|
|
8739
|
+
* @type {string}
|
|
8740
|
+
* @memberof ProductListingVariant
|
|
8741
|
+
*/
|
|
8742
|
+
'effectiveFrom'?: string;
|
|
8743
|
+
/**
|
|
8744
|
+
*
|
|
8745
|
+
* @type {string}
|
|
8746
|
+
* @memberof ProductListingVariant
|
|
8747
|
+
*/
|
|
8748
|
+
'listingVariantId': string;
|
|
8749
|
+
/**
|
|
8750
|
+
*
|
|
8751
|
+
* @type {boolean}
|
|
8752
|
+
* @memberof ProductListingVariant
|
|
8753
|
+
*/
|
|
8754
|
+
'nonRefundable': boolean;
|
|
8755
|
+
/**
|
|
8756
|
+
*
|
|
8757
|
+
* @type {number}
|
|
8758
|
+
* @memberof ProductListingVariant
|
|
8759
|
+
*/
|
|
8760
|
+
'quantity': number;
|
|
8761
|
+
/**
|
|
8762
|
+
*
|
|
8763
|
+
* @type {boolean}
|
|
8764
|
+
* @memberof ProductListingVariant
|
|
8765
|
+
*/
|
|
8766
|
+
'sellerVariant': boolean;
|
|
8767
|
+
/**
|
|
8768
|
+
*
|
|
8769
|
+
* @type {number}
|
|
8770
|
+
* @memberof ProductListingVariant
|
|
8771
|
+
*/
|
|
8772
|
+
'unitPriceTokens': number;
|
|
8773
|
+
}
|
|
8774
|
+
/**
|
|
8775
|
+
*
|
|
8776
|
+
* @export
|
|
8777
|
+
* @enum {string}
|
|
8778
|
+
*/
|
|
8779
|
+
export declare const ProductType: {
|
|
8780
|
+
readonly Listing: "listing";
|
|
8781
|
+
readonly Role: "role";
|
|
8782
|
+
readonly Udon: "udon";
|
|
8783
|
+
};
|
|
8784
|
+
export type ProductType = typeof ProductType[keyof typeof ProductType];
|
|
8785
|
+
/**
|
|
8786
|
+
*
|
|
8787
|
+
* @export
|
|
8788
|
+
* @interface Prop
|
|
8789
|
+
*/
|
|
8790
|
+
export interface Prop {
|
|
8791
|
+
/**
|
|
8792
|
+
*
|
|
8793
|
+
* @type {string}
|
|
8794
|
+
* @memberof Prop
|
|
8795
|
+
*/
|
|
8796
|
+
'_created_at': string;
|
|
8797
|
+
/**
|
|
8798
|
+
*
|
|
8799
|
+
* @type {string}
|
|
8800
|
+
* @memberof Prop
|
|
8801
|
+
*/
|
|
8802
|
+
'_updated_at': string;
|
|
8803
|
+
/**
|
|
8804
|
+
* A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed.
|
|
8805
|
+
* @type {string}
|
|
8806
|
+
* @memberof Prop
|
|
8807
|
+
*/
|
|
8808
|
+
'authorId': string;
|
|
8809
|
+
/**
|
|
8810
|
+
*
|
|
8811
|
+
* @type {string}
|
|
8812
|
+
* @memberof Prop
|
|
8813
|
+
*/
|
|
8814
|
+
'authorName': string;
|
|
8815
|
+
/**
|
|
8816
|
+
*
|
|
8817
|
+
* @type {string}
|
|
8818
|
+
* @memberof Prop
|
|
8819
|
+
*/
|
|
8820
|
+
'description': string;
|
|
8821
|
+
/**
|
|
8822
|
+
*
|
|
8823
|
+
* @type {string}
|
|
8824
|
+
* @memberof Prop
|
|
8825
|
+
*/
|
|
8826
|
+
'id': string;
|
|
8827
|
+
/**
|
|
8828
|
+
*
|
|
8829
|
+
* @type {string}
|
|
8830
|
+
* @memberof Prop
|
|
8831
|
+
*/
|
|
8832
|
+
'imageUrl': string;
|
|
8833
|
+
/**
|
|
8834
|
+
*
|
|
8835
|
+
* @type {number}
|
|
8836
|
+
* @memberof Prop
|
|
8107
8837
|
*/
|
|
8108
|
-
'
|
|
8838
|
+
'maxCountPerUser': number;
|
|
8109
8839
|
/**
|
|
8110
8840
|
*
|
|
8111
8841
|
* @type {string}
|
|
8112
|
-
* @memberof
|
|
8842
|
+
* @memberof Prop
|
|
8113
8843
|
*/
|
|
8114
|
-
'
|
|
8844
|
+
'name': string;
|
|
8115
8845
|
/**
|
|
8116
8846
|
*
|
|
8117
|
-
* @type {
|
|
8118
|
-
* @memberof
|
|
8847
|
+
* @type {ReleaseStatus}
|
|
8848
|
+
* @memberof Prop
|
|
8119
8849
|
*/
|
|
8120
|
-
'
|
|
8850
|
+
'releaseStatus': ReleaseStatus;
|
|
8121
8851
|
/**
|
|
8122
8852
|
*
|
|
8123
|
-
* @type {
|
|
8124
|
-
* @memberof
|
|
8853
|
+
* @type {number}
|
|
8854
|
+
* @memberof Prop
|
|
8125
8855
|
*/
|
|
8126
|
-
'
|
|
8856
|
+
'spawnType': number;
|
|
8127
8857
|
/**
|
|
8128
8858
|
*
|
|
8129
8859
|
* @type {Array<string>}
|
|
8130
|
-
* @memberof
|
|
8860
|
+
* @memberof Prop
|
|
8131
8861
|
*/
|
|
8132
|
-
'
|
|
8862
|
+
'tags': Array<string>;
|
|
8133
8863
|
/**
|
|
8134
8864
|
*
|
|
8135
|
-
* @type {
|
|
8136
|
-
* @memberof
|
|
8865
|
+
* @type {string}
|
|
8866
|
+
* @memberof Prop
|
|
8137
8867
|
*/
|
|
8138
|
-
'
|
|
8868
|
+
'thumbnailImageUrl': string;
|
|
8139
8869
|
/**
|
|
8140
8870
|
*
|
|
8141
8871
|
* @type {string}
|
|
8142
|
-
* @memberof
|
|
8872
|
+
* @memberof Prop
|
|
8143
8873
|
*/
|
|
8144
|
-
'
|
|
8874
|
+
'unityPackageUrl': string | null;
|
|
8875
|
+
/**
|
|
8876
|
+
*
|
|
8877
|
+
* @type {Set<PropUnityPackage>}
|
|
8878
|
+
* @memberof Prop
|
|
8879
|
+
*/
|
|
8880
|
+
'unityPackages': Set<PropUnityPackage>;
|
|
8881
|
+
/**
|
|
8882
|
+
*
|
|
8883
|
+
* @type {number}
|
|
8884
|
+
* @memberof Prop
|
|
8885
|
+
*/
|
|
8886
|
+
'worldPlacementMask': number;
|
|
8145
8887
|
}
|
|
8146
8888
|
/**
|
|
8147
8889
|
*
|
|
8148
8890
|
* @export
|
|
8149
|
-
* @
|
|
8150
|
-
*/
|
|
8151
|
-
export declare const ProductListingType: {
|
|
8152
|
-
readonly Subscription: "subscription";
|
|
8153
|
-
};
|
|
8154
|
-
export type ProductListingType = typeof ProductListingType[keyof typeof ProductListingType];
|
|
8155
|
-
/**
|
|
8156
|
-
*
|
|
8157
|
-
* @export
|
|
8158
|
-
* @interface ProductListingVariant
|
|
8891
|
+
* @interface PropUnityPackage
|
|
8159
8892
|
*/
|
|
8160
|
-
export interface
|
|
8893
|
+
export interface PropUnityPackage {
|
|
8161
8894
|
/**
|
|
8162
8895
|
*
|
|
8163
8896
|
* @type {string}
|
|
8164
|
-
* @memberof
|
|
8897
|
+
* @memberof PropUnityPackage
|
|
8165
8898
|
*/
|
|
8166
|
-
'
|
|
8899
|
+
'assetUrl': string;
|
|
8167
8900
|
/**
|
|
8168
8901
|
*
|
|
8169
|
-
* @type {
|
|
8170
|
-
* @memberof
|
|
8902
|
+
* @type {number}
|
|
8903
|
+
* @memberof PropUnityPackage
|
|
8171
8904
|
*/
|
|
8172
|
-
'
|
|
8905
|
+
'assetVersion': number;
|
|
8173
8906
|
/**
|
|
8174
8907
|
*
|
|
8175
|
-
* @type {
|
|
8176
|
-
* @memberof
|
|
8908
|
+
* @type {string}
|
|
8909
|
+
* @memberof PropUnityPackage
|
|
8177
8910
|
*/
|
|
8178
|
-
'
|
|
8911
|
+
'propSignature': string;
|
|
8179
8912
|
/**
|
|
8180
|
-
*
|
|
8181
|
-
* @type {
|
|
8182
|
-
* @memberof
|
|
8913
|
+
* This can be `standalonewindows` or `android`, but can also pretty much be any random Unity verison such as `2019.2.4-801-Release` or `2019.2.2-772-Release` or even `unknownplatform`.
|
|
8914
|
+
* @type {string}
|
|
8915
|
+
* @memberof PropUnityPackage
|
|
8183
8916
|
*/
|
|
8184
|
-
'
|
|
8917
|
+
'platform': string;
|
|
8185
8918
|
/**
|
|
8186
8919
|
*
|
|
8187
|
-
* @type {
|
|
8188
|
-
* @memberof
|
|
8920
|
+
* @type {string}
|
|
8921
|
+
* @memberof PropUnityPackage
|
|
8189
8922
|
*/
|
|
8190
|
-
'
|
|
8923
|
+
'unityVersion': string;
|
|
8191
8924
|
/**
|
|
8192
8925
|
*
|
|
8193
|
-
* @type {
|
|
8194
|
-
* @memberof
|
|
8926
|
+
* @type {string}
|
|
8927
|
+
* @memberof PropUnityPackage
|
|
8195
8928
|
*/
|
|
8196
|
-
'
|
|
8929
|
+
'variant': string;
|
|
8197
8930
|
}
|
|
8198
|
-
/**
|
|
8199
|
-
*
|
|
8200
|
-
* @export
|
|
8201
|
-
* @enum {string}
|
|
8202
|
-
*/
|
|
8203
|
-
export declare const ProductType: {
|
|
8204
|
-
readonly Listing: "listing";
|
|
8205
|
-
readonly Role: "role";
|
|
8206
|
-
readonly Udon: "udon";
|
|
8207
|
-
};
|
|
8208
|
-
export type ProductType = typeof ProductType[keyof typeof ProductType];
|
|
8209
8931
|
/**
|
|
8210
8932
|
* API/Photon region.
|
|
8211
8933
|
* @export
|
|
@@ -8446,7 +9168,7 @@ export interface RequestInviteRequest {
|
|
|
8446
9168
|
* @type {number}
|
|
8447
9169
|
* @memberof RequestInviteRequest
|
|
8448
9170
|
*/
|
|
8449
|
-
'
|
|
9171
|
+
'requestSlot'?: number;
|
|
8450
9172
|
}
|
|
8451
9173
|
/**
|
|
8452
9174
|
*
|
|
@@ -11244,6 +11966,13 @@ export declare const AvatarsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
11244
11966
|
* @throws {RequiredError}
|
|
11245
11967
|
*/
|
|
11246
11968
|
getAvatar: (avatarId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11969
|
+
/**
|
|
11970
|
+
* List avatar styles.
|
|
11971
|
+
* @summary Get Avatar Styles
|
|
11972
|
+
* @param {*} [options] Override http request option.
|
|
11973
|
+
* @throws {RequiredError}
|
|
11974
|
+
*/
|
|
11975
|
+
getAvatarStyles: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11247
11976
|
/**
|
|
11248
11977
|
* Search and list favorited avatars by query filters.
|
|
11249
11978
|
* @summary List Favorited Avatars
|
|
@@ -11380,6 +12109,13 @@ export declare const AvatarsApiFp: (configuration?: Configuration) => {
|
|
|
11380
12109
|
* @throws {RequiredError}
|
|
11381
12110
|
*/
|
|
11382
12111
|
getAvatar(avatarId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Avatar>>;
|
|
12112
|
+
/**
|
|
12113
|
+
* List avatar styles.
|
|
12114
|
+
* @summary Get Avatar Styles
|
|
12115
|
+
* @param {*} [options] Override http request option.
|
|
12116
|
+
* @throws {RequiredError}
|
|
12117
|
+
*/
|
|
12118
|
+
getAvatarStyles(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AvatarStyle>>>;
|
|
11383
12119
|
/**
|
|
11384
12120
|
* Search and list favorited avatars by query filters.
|
|
11385
12121
|
* @summary List Favorited Avatars
|
|
@@ -11516,6 +12252,13 @@ export declare const AvatarsApiFactory: (configuration?: Configuration, basePath
|
|
|
11516
12252
|
* @throws {RequiredError}
|
|
11517
12253
|
*/
|
|
11518
12254
|
getAvatar(avatarId: string, options?: any): AxiosPromise<Avatar>;
|
|
12255
|
+
/**
|
|
12256
|
+
* List avatar styles.
|
|
12257
|
+
* @summary Get Avatar Styles
|
|
12258
|
+
* @param {*} [options] Override http request option.
|
|
12259
|
+
* @throws {RequiredError}
|
|
12260
|
+
*/
|
|
12261
|
+
getAvatarStyles(options?: any): AxiosPromise<Array<AvatarStyle>>;
|
|
11519
12262
|
/**
|
|
11520
12263
|
* Search and list favorited avatars by query filters.
|
|
11521
12264
|
* @summary List Favorited Avatars
|
|
@@ -11659,6 +12402,14 @@ export declare class AvatarsApi extends BaseAPI {
|
|
|
11659
12402
|
* @memberof AvatarsApi
|
|
11660
12403
|
*/
|
|
11661
12404
|
getAvatar(avatarId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Avatar, any>>;
|
|
12405
|
+
/**
|
|
12406
|
+
* List avatar styles.
|
|
12407
|
+
* @summary Get Avatar Styles
|
|
12408
|
+
* @param {*} [options] Override http request option.
|
|
12409
|
+
* @throws {RequiredError}
|
|
12410
|
+
* @memberof AvatarsApi
|
|
12411
|
+
*/
|
|
12412
|
+
getAvatarStyles(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AvatarStyle[], any>>;
|
|
11662
12413
|
/**
|
|
11663
12414
|
* Search and list favorited avatars by query filters.
|
|
11664
12415
|
* @summary List Favorited Avatars
|
|
@@ -11803,7 +12554,7 @@ export declare const EconomyApiAxiosParamCreator: (configuration?: Configuration
|
|
|
11803
12554
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
11804
12555
|
* @param {boolean} [hydrate] Populates some fields and changes types of others for certain objects.
|
|
11805
12556
|
* @param {string} [groupId] Must be a valid group ID.
|
|
11806
|
-
* @param {boolean} [active] Filter for users\' listings.
|
|
12557
|
+
* @param {boolean} [active] Filter for users\' listings and inventory bundles.
|
|
11807
12558
|
* @param {*} [options] Override http request option.
|
|
11808
12559
|
* @throws {RequiredError}
|
|
11809
12560
|
*/
|
|
@@ -11899,7 +12650,7 @@ export declare const EconomyApiFp: (configuration?: Configuration) => {
|
|
|
11899
12650
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
11900
12651
|
* @param {boolean} [hydrate] Populates some fields and changes types of others for certain objects.
|
|
11901
12652
|
* @param {string} [groupId] Must be a valid group ID.
|
|
11902
|
-
* @param {boolean} [active] Filter for users\' listings.
|
|
12653
|
+
* @param {boolean} [active] Filter for users\' listings and inventory bundles.
|
|
11903
12654
|
* @param {*} [options] Override http request option.
|
|
11904
12655
|
* @throws {RequiredError}
|
|
11905
12656
|
*/
|
|
@@ -11995,7 +12746,7 @@ export declare const EconomyApiFactory: (configuration?: Configuration, basePath
|
|
|
11995
12746
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
11996
12747
|
* @param {boolean} [hydrate] Populates some fields and changes types of others for certain objects.
|
|
11997
12748
|
* @param {string} [groupId] Must be a valid group ID.
|
|
11998
|
-
* @param {boolean} [active] Filter for users\' listings.
|
|
12749
|
+
* @param {boolean} [active] Filter for users\' listings and inventory bundles.
|
|
11999
12750
|
* @param {*} [options] Override http request option.
|
|
12000
12751
|
* @throws {RequiredError}
|
|
12001
12752
|
*/
|
|
@@ -12097,7 +12848,7 @@ export declare class EconomyApi extends BaseAPI {
|
|
|
12097
12848
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
12098
12849
|
* @param {boolean} [hydrate] Populates some fields and changes types of others for certain objects.
|
|
12099
12850
|
* @param {string} [groupId] Must be a valid group ID.
|
|
12100
|
-
* @param {boolean} [active] Filter for users\' listings.
|
|
12851
|
+
* @param {boolean} [active] Filter for users\' listings and inventory bundles.
|
|
12101
12852
|
* @param {*} [options] Override http request option.
|
|
12102
12853
|
* @throws {RequiredError}
|
|
12103
12854
|
* @memberof EconomyApi
|
|
@@ -12552,6 +13303,14 @@ export declare const FilesApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12552
13303
|
* @throws {RequiredError}
|
|
12553
13304
|
*/
|
|
12554
13305
|
finishFileDataUpload: (fileId: string, versionId: number, fileType: 'file' | 'signature' | 'delta', finishFileDataUploadRequest?: FinishFileDataUploadRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13306
|
+
/**
|
|
13307
|
+
* Returns an AdminAssetBundle
|
|
13308
|
+
* @summary Get AdminAssetBundle
|
|
13309
|
+
* @param {string} adminAssetBundleId Must be a valid admin asset bundle ID.
|
|
13310
|
+
* @param {*} [options] Override http request option.
|
|
13311
|
+
* @throws {RequiredError}
|
|
13312
|
+
*/
|
|
13313
|
+
getAdminAssetBundle: (adminAssetBundleId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12555
13314
|
/**
|
|
12556
13315
|
* Shows general information about the \"File\" object. Each File can have several \"Version\"\'s, and each Version can have multiple real files or \"Data\" blobs.
|
|
12557
13316
|
* @summary Show File
|
|
@@ -12708,6 +13467,14 @@ export declare const FilesApiFp: (configuration?: Configuration) => {
|
|
|
12708
13467
|
* @throws {RequiredError}
|
|
12709
13468
|
*/
|
|
12710
13469
|
finishFileDataUpload(fileId: string, versionId: number, fileType: 'file' | 'signature' | 'delta', finishFileDataUploadRequest?: FinishFileDataUploadRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
13470
|
+
/**
|
|
13471
|
+
* Returns an AdminAssetBundle
|
|
13472
|
+
* @summary Get AdminAssetBundle
|
|
13473
|
+
* @param {string} adminAssetBundleId Must be a valid admin asset bundle ID.
|
|
13474
|
+
* @param {*} [options] Override http request option.
|
|
13475
|
+
* @throws {RequiredError}
|
|
13476
|
+
*/
|
|
13477
|
+
getAdminAssetBundle(adminAssetBundleId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAssetBundle>>;
|
|
12711
13478
|
/**
|
|
12712
13479
|
* Shows general information about the \"File\" object. Each File can have several \"Version\"\'s, and each Version can have multiple real files or \"Data\" blobs.
|
|
12713
13480
|
* @summary Show File
|
|
@@ -12864,6 +13631,14 @@ export declare const FilesApiFactory: (configuration?: Configuration, basePath?:
|
|
|
12864
13631
|
* @throws {RequiredError}
|
|
12865
13632
|
*/
|
|
12866
13633
|
finishFileDataUpload(fileId: string, versionId: number, fileType: 'file' | 'signature' | 'delta', finishFileDataUploadRequest?: FinishFileDataUploadRequest, options?: any): AxiosPromise<any>;
|
|
13634
|
+
/**
|
|
13635
|
+
* Returns an AdminAssetBundle
|
|
13636
|
+
* @summary Get AdminAssetBundle
|
|
13637
|
+
* @param {string} adminAssetBundleId Must be a valid admin asset bundle ID.
|
|
13638
|
+
* @param {*} [options] Override http request option.
|
|
13639
|
+
* @throws {RequiredError}
|
|
13640
|
+
*/
|
|
13641
|
+
getAdminAssetBundle(adminAssetBundleId: string, options?: any): AxiosPromise<AdminAssetBundle>;
|
|
12867
13642
|
/**
|
|
12868
13643
|
* Shows general information about the \"File\" object. Each File can have several \"Version\"\'s, and each Version can have multiple real files or \"Data\" blobs.
|
|
12869
13644
|
* @summary Show File
|
|
@@ -13028,6 +13803,15 @@ export declare class FilesApi extends BaseAPI {
|
|
|
13028
13803
|
* @memberof FilesApi
|
|
13029
13804
|
*/
|
|
13030
13805
|
finishFileDataUpload(fileId: string, versionId: number, fileType: 'file' | 'signature' | 'delta', finishFileDataUploadRequest?: FinishFileDataUploadRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
|
|
13806
|
+
/**
|
|
13807
|
+
* Returns an AdminAssetBundle
|
|
13808
|
+
* @summary Get AdminAssetBundle
|
|
13809
|
+
* @param {string} adminAssetBundleId Must be a valid admin asset bundle ID.
|
|
13810
|
+
* @param {*} [options] Override http request option.
|
|
13811
|
+
* @throws {RequiredError}
|
|
13812
|
+
* @memberof FilesApi
|
|
13813
|
+
*/
|
|
13814
|
+
getAdminAssetBundle(adminAssetBundleId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAssetBundle, any>>;
|
|
13031
13815
|
/**
|
|
13032
13816
|
* Shows general information about the \"File\" object. Each File can have several \"Version\"\'s, and each Version can have multiple real files or \"Data\" blobs.
|
|
13033
13817
|
* @summary Show File
|
|
@@ -15269,6 +16053,209 @@ export declare class InstancesApi extends BaseAPI {
|
|
|
15269
16053
|
*/
|
|
15270
16054
|
getShortName(worldId: string, instanceId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InstanceShortNameResponse, any>>;
|
|
15271
16055
|
}
|
|
16056
|
+
/**
|
|
16057
|
+
* InventoryApi - axios parameter creator
|
|
16058
|
+
* @export
|
|
16059
|
+
*/
|
|
16060
|
+
export declare const InventoryApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
16061
|
+
/**
|
|
16062
|
+
* Returns an Inventory object.
|
|
16063
|
+
* @summary Get Inventory
|
|
16064
|
+
* @param {number} [n] The number of objects to return.
|
|
16065
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
16066
|
+
* @param {'newest' | 'oldest'} [inventorySortOrder] Sort order for inventory retrieval.
|
|
16067
|
+
* @param {InventoryItemType} [inventoryItemType] Filter for inventory retrieval.
|
|
16068
|
+
* @param {*} [options] Override http request option.
|
|
16069
|
+
* @throws {RequiredError}
|
|
16070
|
+
*/
|
|
16071
|
+
getInventory: (n?: number, offset?: number, inventorySortOrder?: 'newest' | 'oldest', inventoryItemType?: InventoryItemType, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16072
|
+
/**
|
|
16073
|
+
* Returns a list of InventoryDrop objects.
|
|
16074
|
+
* @summary List Inventory Drops
|
|
16075
|
+
* @param {boolean} [active] Filter for users\' listings and inventory bundles.
|
|
16076
|
+
* @param {*} [options] Override http request option.
|
|
16077
|
+
* @throws {RequiredError}
|
|
16078
|
+
*/
|
|
16079
|
+
getInventoryDrops: (active?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16080
|
+
/**
|
|
16081
|
+
* Returns an InventoryTemplate object.
|
|
16082
|
+
* @summary Get Inventory Template
|
|
16083
|
+
* @param {string} inventoryTemplateId Must be a valid inventory template ID.
|
|
16084
|
+
* @param {*} [options] Override http request option.
|
|
16085
|
+
* @throws {RequiredError}
|
|
16086
|
+
*/
|
|
16087
|
+
getInventoryTemplate: (inventoryTemplateId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16088
|
+
/**
|
|
16089
|
+
* Returns an InventoryItem object held by the currently logged in user.
|
|
16090
|
+
* @summary Get Own Inventory Item
|
|
16091
|
+
* @param {string} inventoryItemId Must be a valid inventory item ID.
|
|
16092
|
+
* @param {*} [options] Override http request option.
|
|
16093
|
+
* @throws {RequiredError}
|
|
16094
|
+
*/
|
|
16095
|
+
getOwnInventoryItem: (inventoryItemId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16096
|
+
/**
|
|
16097
|
+
* Returns an InventorySpawn object.
|
|
16098
|
+
* @summary Spawn Inventory Item
|
|
16099
|
+
* @param {string} id Id for inventory item spawning.
|
|
16100
|
+
* @param {*} [options] Override http request option.
|
|
16101
|
+
* @throws {RequiredError}
|
|
16102
|
+
*/
|
|
16103
|
+
spawnInventoryItem: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16104
|
+
};
|
|
16105
|
+
/**
|
|
16106
|
+
* InventoryApi - functional programming interface
|
|
16107
|
+
* @export
|
|
16108
|
+
*/
|
|
16109
|
+
export declare const InventoryApiFp: (configuration?: Configuration) => {
|
|
16110
|
+
/**
|
|
16111
|
+
* Returns an Inventory object.
|
|
16112
|
+
* @summary Get Inventory
|
|
16113
|
+
* @param {number} [n] The number of objects to return.
|
|
16114
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
16115
|
+
* @param {'newest' | 'oldest'} [inventorySortOrder] Sort order for inventory retrieval.
|
|
16116
|
+
* @param {InventoryItemType} [inventoryItemType] Filter for inventory retrieval.
|
|
16117
|
+
* @param {*} [options] Override http request option.
|
|
16118
|
+
* @throws {RequiredError}
|
|
16119
|
+
*/
|
|
16120
|
+
getInventory(n?: number, offset?: number, inventorySortOrder?: 'newest' | 'oldest', inventoryItemType?: InventoryItemType, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Inventory>>;
|
|
16121
|
+
/**
|
|
16122
|
+
* Returns a list of InventoryDrop objects.
|
|
16123
|
+
* @summary List Inventory Drops
|
|
16124
|
+
* @param {boolean} [active] Filter for users\' listings and inventory bundles.
|
|
16125
|
+
* @param {*} [options] Override http request option.
|
|
16126
|
+
* @throws {RequiredError}
|
|
16127
|
+
*/
|
|
16128
|
+
getInventoryDrops(active?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<InventoryDrop>>>;
|
|
16129
|
+
/**
|
|
16130
|
+
* Returns an InventoryTemplate object.
|
|
16131
|
+
* @summary Get Inventory Template
|
|
16132
|
+
* @param {string} inventoryTemplateId Must be a valid inventory template ID.
|
|
16133
|
+
* @param {*} [options] Override http request option.
|
|
16134
|
+
* @throws {RequiredError}
|
|
16135
|
+
*/
|
|
16136
|
+
getInventoryTemplate(inventoryTemplateId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InventoryTemplate>>;
|
|
16137
|
+
/**
|
|
16138
|
+
* Returns an InventoryItem object held by the currently logged in user.
|
|
16139
|
+
* @summary Get Own Inventory Item
|
|
16140
|
+
* @param {string} inventoryItemId Must be a valid inventory item ID.
|
|
16141
|
+
* @param {*} [options] Override http request option.
|
|
16142
|
+
* @throws {RequiredError}
|
|
16143
|
+
*/
|
|
16144
|
+
getOwnInventoryItem(inventoryItemId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InventoryItem>>;
|
|
16145
|
+
/**
|
|
16146
|
+
* Returns an InventorySpawn object.
|
|
16147
|
+
* @summary Spawn Inventory Item
|
|
16148
|
+
* @param {string} id Id for inventory item spawning.
|
|
16149
|
+
* @param {*} [options] Override http request option.
|
|
16150
|
+
* @throws {RequiredError}
|
|
16151
|
+
*/
|
|
16152
|
+
spawnInventoryItem(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InventorySpawn>>;
|
|
16153
|
+
};
|
|
16154
|
+
/**
|
|
16155
|
+
* InventoryApi - factory interface
|
|
16156
|
+
* @export
|
|
16157
|
+
*/
|
|
16158
|
+
export declare const InventoryApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
16159
|
+
/**
|
|
16160
|
+
* Returns an Inventory object.
|
|
16161
|
+
* @summary Get Inventory
|
|
16162
|
+
* @param {number} [n] The number of objects to return.
|
|
16163
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
16164
|
+
* @param {'newest' | 'oldest'} [inventorySortOrder] Sort order for inventory retrieval.
|
|
16165
|
+
* @param {InventoryItemType} [inventoryItemType] Filter for inventory retrieval.
|
|
16166
|
+
* @param {*} [options] Override http request option.
|
|
16167
|
+
* @throws {RequiredError}
|
|
16168
|
+
*/
|
|
16169
|
+
getInventory(n?: number, offset?: number, inventorySortOrder?: 'newest' | 'oldest', inventoryItemType?: InventoryItemType, options?: any): AxiosPromise<Inventory>;
|
|
16170
|
+
/**
|
|
16171
|
+
* Returns a list of InventoryDrop objects.
|
|
16172
|
+
* @summary List Inventory Drops
|
|
16173
|
+
* @param {boolean} [active] Filter for users\' listings and inventory bundles.
|
|
16174
|
+
* @param {*} [options] Override http request option.
|
|
16175
|
+
* @throws {RequiredError}
|
|
16176
|
+
*/
|
|
16177
|
+
getInventoryDrops(active?: boolean, options?: any): AxiosPromise<Array<InventoryDrop>>;
|
|
16178
|
+
/**
|
|
16179
|
+
* Returns an InventoryTemplate object.
|
|
16180
|
+
* @summary Get Inventory Template
|
|
16181
|
+
* @param {string} inventoryTemplateId Must be a valid inventory template ID.
|
|
16182
|
+
* @param {*} [options] Override http request option.
|
|
16183
|
+
* @throws {RequiredError}
|
|
16184
|
+
*/
|
|
16185
|
+
getInventoryTemplate(inventoryTemplateId: string, options?: any): AxiosPromise<InventoryTemplate>;
|
|
16186
|
+
/**
|
|
16187
|
+
* Returns an InventoryItem object held by the currently logged in user.
|
|
16188
|
+
* @summary Get Own Inventory Item
|
|
16189
|
+
* @param {string} inventoryItemId Must be a valid inventory item ID.
|
|
16190
|
+
* @param {*} [options] Override http request option.
|
|
16191
|
+
* @throws {RequiredError}
|
|
16192
|
+
*/
|
|
16193
|
+
getOwnInventoryItem(inventoryItemId: string, options?: any): AxiosPromise<InventoryItem>;
|
|
16194
|
+
/**
|
|
16195
|
+
* Returns an InventorySpawn object.
|
|
16196
|
+
* @summary Spawn Inventory Item
|
|
16197
|
+
* @param {string} id Id for inventory item spawning.
|
|
16198
|
+
* @param {*} [options] Override http request option.
|
|
16199
|
+
* @throws {RequiredError}
|
|
16200
|
+
*/
|
|
16201
|
+
spawnInventoryItem(id: string, options?: any): AxiosPromise<InventorySpawn>;
|
|
16202
|
+
};
|
|
16203
|
+
/**
|
|
16204
|
+
* InventoryApi - object-oriented interface
|
|
16205
|
+
* @export
|
|
16206
|
+
* @class InventoryApi
|
|
16207
|
+
* @extends {BaseAPI}
|
|
16208
|
+
*/
|
|
16209
|
+
export declare class InventoryApi extends BaseAPI {
|
|
16210
|
+
/**
|
|
16211
|
+
* Returns an Inventory object.
|
|
16212
|
+
* @summary Get Inventory
|
|
16213
|
+
* @param {number} [n] The number of objects to return.
|
|
16214
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
16215
|
+
* @param {'newest' | 'oldest'} [inventorySortOrder] Sort order for inventory retrieval.
|
|
16216
|
+
* @param {InventoryItemType} [inventoryItemType] Filter for inventory retrieval.
|
|
16217
|
+
* @param {*} [options] Override http request option.
|
|
16218
|
+
* @throws {RequiredError}
|
|
16219
|
+
* @memberof InventoryApi
|
|
16220
|
+
*/
|
|
16221
|
+
getInventory(n?: number, offset?: number, inventorySortOrder?: 'newest' | 'oldest', inventoryItemType?: InventoryItemType, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Inventory, any>>;
|
|
16222
|
+
/**
|
|
16223
|
+
* Returns a list of InventoryDrop objects.
|
|
16224
|
+
* @summary List Inventory Drops
|
|
16225
|
+
* @param {boolean} [active] Filter for users\' listings and inventory bundles.
|
|
16226
|
+
* @param {*} [options] Override http request option.
|
|
16227
|
+
* @throws {RequiredError}
|
|
16228
|
+
* @memberof InventoryApi
|
|
16229
|
+
*/
|
|
16230
|
+
getInventoryDrops(active?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InventoryDrop[], any>>;
|
|
16231
|
+
/**
|
|
16232
|
+
* Returns an InventoryTemplate object.
|
|
16233
|
+
* @summary Get Inventory Template
|
|
16234
|
+
* @param {string} inventoryTemplateId Must be a valid inventory template ID.
|
|
16235
|
+
* @param {*} [options] Override http request option.
|
|
16236
|
+
* @throws {RequiredError}
|
|
16237
|
+
* @memberof InventoryApi
|
|
16238
|
+
*/
|
|
16239
|
+
getInventoryTemplate(inventoryTemplateId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InventoryTemplate, any>>;
|
|
16240
|
+
/**
|
|
16241
|
+
* Returns an InventoryItem object held by the currently logged in user.
|
|
16242
|
+
* @summary Get Own Inventory Item
|
|
16243
|
+
* @param {string} inventoryItemId Must be a valid inventory item ID.
|
|
16244
|
+
* @param {*} [options] Override http request option.
|
|
16245
|
+
* @throws {RequiredError}
|
|
16246
|
+
* @memberof InventoryApi
|
|
16247
|
+
*/
|
|
16248
|
+
getOwnInventoryItem(inventoryItemId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InventoryItem, any>>;
|
|
16249
|
+
/**
|
|
16250
|
+
* Returns an InventorySpawn object.
|
|
16251
|
+
* @summary Spawn Inventory Item
|
|
16252
|
+
* @param {string} id Id for inventory item spawning.
|
|
16253
|
+
* @param {*} [options] Override http request option.
|
|
16254
|
+
* @throws {RequiredError}
|
|
16255
|
+
* @memberof InventoryApi
|
|
16256
|
+
*/
|
|
16257
|
+
spawnInventoryItem(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InventorySpawn, any>>;
|
|
16258
|
+
}
|
|
15272
16259
|
/**
|
|
15273
16260
|
* InviteApi - axios parameter creator
|
|
15274
16261
|
* @export
|
|
@@ -16787,6 +17774,65 @@ export declare class PrintsApi extends BaseAPI {
|
|
|
16787
17774
|
*/
|
|
16788
17775
|
uploadPrint(image: File, timestamp: string, note?: string, worldId?: string, worldName?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Print, any>>;
|
|
16789
17776
|
}
|
|
17777
|
+
/**
|
|
17778
|
+
* PropsApi - axios parameter creator
|
|
17779
|
+
* @export
|
|
17780
|
+
*/
|
|
17781
|
+
export declare const PropsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
17782
|
+
/**
|
|
17783
|
+
* Returns a Prop object.
|
|
17784
|
+
* @summary Get Prop
|
|
17785
|
+
* @param {string} propId Prop ID.
|
|
17786
|
+
* @param {*} [options] Override http request option.
|
|
17787
|
+
* @throws {RequiredError}
|
|
17788
|
+
*/
|
|
17789
|
+
getProp: (propId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17790
|
+
};
|
|
17791
|
+
/**
|
|
17792
|
+
* PropsApi - functional programming interface
|
|
17793
|
+
* @export
|
|
17794
|
+
*/
|
|
17795
|
+
export declare const PropsApiFp: (configuration?: Configuration) => {
|
|
17796
|
+
/**
|
|
17797
|
+
* Returns a Prop object.
|
|
17798
|
+
* @summary Get Prop
|
|
17799
|
+
* @param {string} propId Prop ID.
|
|
17800
|
+
* @param {*} [options] Override http request option.
|
|
17801
|
+
* @throws {RequiredError}
|
|
17802
|
+
*/
|
|
17803
|
+
getProp(propId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Prop>>;
|
|
17804
|
+
};
|
|
17805
|
+
/**
|
|
17806
|
+
* PropsApi - factory interface
|
|
17807
|
+
* @export
|
|
17808
|
+
*/
|
|
17809
|
+
export declare const PropsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
17810
|
+
/**
|
|
17811
|
+
* Returns a Prop object.
|
|
17812
|
+
* @summary Get Prop
|
|
17813
|
+
* @param {string} propId Prop ID.
|
|
17814
|
+
* @param {*} [options] Override http request option.
|
|
17815
|
+
* @throws {RequiredError}
|
|
17816
|
+
*/
|
|
17817
|
+
getProp(propId: string, options?: any): AxiosPromise<Prop>;
|
|
17818
|
+
};
|
|
17819
|
+
/**
|
|
17820
|
+
* PropsApi - object-oriented interface
|
|
17821
|
+
* @export
|
|
17822
|
+
* @class PropsApi
|
|
17823
|
+
* @extends {BaseAPI}
|
|
17824
|
+
*/
|
|
17825
|
+
export declare class PropsApi extends BaseAPI {
|
|
17826
|
+
/**
|
|
17827
|
+
* Returns a Prop object.
|
|
17828
|
+
* @summary Get Prop
|
|
17829
|
+
* @param {string} propId Prop ID.
|
|
17830
|
+
* @param {*} [options] Override http request option.
|
|
17831
|
+
* @throws {RequiredError}
|
|
17832
|
+
* @memberof PropsApi
|
|
17833
|
+
*/
|
|
17834
|
+
getProp(propId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Prop, any>>;
|
|
17835
|
+
}
|
|
16790
17836
|
/**
|
|
16791
17837
|
* UsersApi - axios parameter creator
|
|
16792
17838
|
* @export
|
|
@@ -16840,7 +17886,7 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
16840
17886
|
* Get user\'s submitted feedback
|
|
16841
17887
|
* @summary Get User Feedback
|
|
16842
17888
|
* @param {string} userId Must be a valid user ID.
|
|
16843
|
-
* @param {boolean} [contentId] Filter for users\' previously submitted feedback, e.g., a groupId,
|
|
17889
|
+
* @param {boolean} [contentId] Filter for users\' previously submitted feedback, e.g., a groupId, userId, avatarId, etc.
|
|
16844
17890
|
* @param {number} [n] The number of objects to return.
|
|
16845
17891
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
16846
17892
|
* @param {*} [options] Override http request option.
|
|
@@ -16998,7 +18044,7 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
16998
18044
|
* Get user\'s submitted feedback
|
|
16999
18045
|
* @summary Get User Feedback
|
|
17000
18046
|
* @param {string} userId Must be a valid user ID.
|
|
17001
|
-
* @param {boolean} [contentId] Filter for users\' previously submitted feedback, e.g., a groupId,
|
|
18047
|
+
* @param {boolean} [contentId] Filter for users\' previously submitted feedback, e.g., a groupId, userId, avatarId, etc.
|
|
17002
18048
|
* @param {number} [n] The number of objects to return.
|
|
17003
18049
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
17004
18050
|
* @param {*} [options] Override http request option.
|
|
@@ -17156,7 +18202,7 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
17156
18202
|
* Get user\'s submitted feedback
|
|
17157
18203
|
* @summary Get User Feedback
|
|
17158
18204
|
* @param {string} userId Must be a valid user ID.
|
|
17159
|
-
* @param {boolean} [contentId] Filter for users\' previously submitted feedback, e.g., a groupId,
|
|
18205
|
+
* @param {boolean} [contentId] Filter for users\' previously submitted feedback, e.g., a groupId, userId, avatarId, etc.
|
|
17160
18206
|
* @param {number} [n] The number of objects to return.
|
|
17161
18207
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
17162
18208
|
* @param {*} [options] Override http request option.
|
|
@@ -17321,7 +18367,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17321
18367
|
* Get user\'s submitted feedback
|
|
17322
18368
|
* @summary Get User Feedback
|
|
17323
18369
|
* @param {string} userId Must be a valid user ID.
|
|
17324
|
-
* @param {boolean} [contentId] Filter for users\' previously submitted feedback, e.g., a groupId,
|
|
18370
|
+
* @param {boolean} [contentId] Filter for users\' previously submitted feedback, e.g., a groupId, userId, avatarId, etc.
|
|
17325
18371
|
* @param {number} [n] The number of objects to return.
|
|
17326
18372
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
17327
18373
|
* @param {*} [options] Override http request option.
|