vrchat 1.12.0 → 1.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api.ts +119 -3
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +118 -2
- package/dist/api.js +3 -2
- 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/api.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* VRChat API Documentation
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.
|
|
6
|
+
* The version of the OpenAPI document: 1.14.0
|
|
7
7
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1286,6 +1286,12 @@ export interface CurrentUser {
|
|
|
1286
1286
|
* @memberof CurrentUser
|
|
1287
1287
|
*/
|
|
1288
1288
|
'acceptedTOSVersion': number;
|
|
1289
|
+
/**
|
|
1290
|
+
*
|
|
1291
|
+
* @type {number}
|
|
1292
|
+
* @memberof CurrentUser
|
|
1293
|
+
*/
|
|
1294
|
+
'acceptedPrivacyVersion'?: number;
|
|
1289
1295
|
/**
|
|
1290
1296
|
*
|
|
1291
1297
|
* @type {string}
|
|
@@ -1437,6 +1443,12 @@ export interface CurrentUser {
|
|
|
1437
1443
|
* @memberof CurrentUser
|
|
1438
1444
|
*/
|
|
1439
1445
|
'isFriend': boolean;
|
|
1446
|
+
/**
|
|
1447
|
+
*
|
|
1448
|
+
* @type {string}
|
|
1449
|
+
* @memberof CurrentUser
|
|
1450
|
+
*/
|
|
1451
|
+
'last_activity'?: string;
|
|
1440
1452
|
/**
|
|
1441
1453
|
*
|
|
1442
1454
|
* @type {string}
|
|
@@ -1485,6 +1497,12 @@ export interface CurrentUser {
|
|
|
1485
1497
|
* @memberof CurrentUser
|
|
1486
1498
|
*/
|
|
1487
1499
|
'pastDisplayNames': Array<PastDisplayName>;
|
|
1500
|
+
/**
|
|
1501
|
+
*
|
|
1502
|
+
* @type {CurrentUserPresence}
|
|
1503
|
+
* @memberof CurrentUser
|
|
1504
|
+
*/
|
|
1505
|
+
'presence'?: CurrentUserPresence;
|
|
1488
1506
|
/**
|
|
1489
1507
|
*
|
|
1490
1508
|
* @type {string}
|
|
@@ -1557,6 +1575,12 @@ export interface CurrentUser {
|
|
|
1557
1575
|
* @memberof CurrentUser
|
|
1558
1576
|
*/
|
|
1559
1577
|
'unsubscribe': boolean;
|
|
1578
|
+
/**
|
|
1579
|
+
*
|
|
1580
|
+
* @type {string}
|
|
1581
|
+
* @memberof CurrentUser
|
|
1582
|
+
*/
|
|
1583
|
+
'updated_at'?: string;
|
|
1560
1584
|
/**
|
|
1561
1585
|
*
|
|
1562
1586
|
* @type {string}
|
|
@@ -1571,6 +1595,91 @@ export interface CurrentUser {
|
|
|
1571
1595
|
*/
|
|
1572
1596
|
'username'?: string;
|
|
1573
1597
|
}
|
|
1598
|
+
/**
|
|
1599
|
+
*
|
|
1600
|
+
* @export
|
|
1601
|
+
* @interface CurrentUserPresence
|
|
1602
|
+
*/
|
|
1603
|
+
export interface CurrentUserPresence {
|
|
1604
|
+
/**
|
|
1605
|
+
*
|
|
1606
|
+
* @type {string}
|
|
1607
|
+
* @memberof CurrentUserPresence
|
|
1608
|
+
*/
|
|
1609
|
+
'avatarThumbnail'?: string | null;
|
|
1610
|
+
/**
|
|
1611
|
+
*
|
|
1612
|
+
* @type {string}
|
|
1613
|
+
* @memberof CurrentUserPresence
|
|
1614
|
+
*/
|
|
1615
|
+
'displayName'?: string;
|
|
1616
|
+
/**
|
|
1617
|
+
*
|
|
1618
|
+
* @type {Array<string>}
|
|
1619
|
+
* @memberof CurrentUserPresence
|
|
1620
|
+
*/
|
|
1621
|
+
'groups'?: Array<string> | null;
|
|
1622
|
+
/**
|
|
1623
|
+
* 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.
|
|
1624
|
+
* @type {string}
|
|
1625
|
+
* @memberof CurrentUserPresence
|
|
1626
|
+
*/
|
|
1627
|
+
'id'?: string;
|
|
1628
|
+
/**
|
|
1629
|
+
*
|
|
1630
|
+
* @type {string}
|
|
1631
|
+
* @memberof CurrentUserPresence
|
|
1632
|
+
*/
|
|
1633
|
+
'instance'?: string | null;
|
|
1634
|
+
/**
|
|
1635
|
+
* either an InstanceType or an empty string
|
|
1636
|
+
* @type {string}
|
|
1637
|
+
* @memberof CurrentUserPresence
|
|
1638
|
+
*/
|
|
1639
|
+
'instanceType'?: string | null;
|
|
1640
|
+
/**
|
|
1641
|
+
*
|
|
1642
|
+
* @type {string}
|
|
1643
|
+
* @memberof CurrentUserPresence
|
|
1644
|
+
*/
|
|
1645
|
+
'isRejoining'?: string | null;
|
|
1646
|
+
/**
|
|
1647
|
+
* either a Platform or an empty string
|
|
1648
|
+
* @type {string}
|
|
1649
|
+
* @memberof CurrentUserPresence
|
|
1650
|
+
*/
|
|
1651
|
+
'platform'?: string | null;
|
|
1652
|
+
/**
|
|
1653
|
+
*
|
|
1654
|
+
* @type {string}
|
|
1655
|
+
* @memberof CurrentUserPresence
|
|
1656
|
+
*/
|
|
1657
|
+
'profilePicOverride'?: string | null;
|
|
1658
|
+
/**
|
|
1659
|
+
* either a UserStatus or empty string
|
|
1660
|
+
* @type {string}
|
|
1661
|
+
* @memberof CurrentUserPresence
|
|
1662
|
+
*/
|
|
1663
|
+
'status'?: string | null;
|
|
1664
|
+
/**
|
|
1665
|
+
*
|
|
1666
|
+
* @type {string}
|
|
1667
|
+
* @memberof CurrentUserPresence
|
|
1668
|
+
*/
|
|
1669
|
+
'travelingToInstance'?: string | null;
|
|
1670
|
+
/**
|
|
1671
|
+
* WorldID be \"offline\" on User profiles if you are not friends with that user.
|
|
1672
|
+
* @type {string}
|
|
1673
|
+
* @memberof CurrentUserPresence
|
|
1674
|
+
*/
|
|
1675
|
+
'travelingToWorld'?: string;
|
|
1676
|
+
/**
|
|
1677
|
+
* WorldID be \"offline\" on User profiles if you are not friends with that user.
|
|
1678
|
+
* @type {string}
|
|
1679
|
+
* @memberof CurrentUserPresence
|
|
1680
|
+
*/
|
|
1681
|
+
'world'?: string;
|
|
1682
|
+
}
|
|
1574
1683
|
/**
|
|
1575
1684
|
* Used to identify which API deployment cluster is currently responding. `blue` and `green` are used by Production. `grape`and `cherry` are used during Development. [Blue Green Deployment by Martin Fowler](https://martinfowler.com/bliki/BlueGreenDeployment.html)
|
|
1576
1685
|
* @export
|
|
@@ -3232,7 +3341,8 @@ export const InstanceType = {
|
|
|
3232
3341
|
Public: 'public',
|
|
3233
3342
|
Hidden: 'hidden',
|
|
3234
3343
|
Friends: 'friends',
|
|
3235
|
-
Private: 'private'
|
|
3344
|
+
Private: 'private',
|
|
3345
|
+
Group: 'group'
|
|
3236
3346
|
} as const;
|
|
3237
3347
|
|
|
3238
3348
|
export type InstanceType = typeof InstanceType[keyof typeof InstanceType];
|
|
@@ -3487,7 +3597,7 @@ export interface LimitedUser {
|
|
|
3487
3597
|
* @type {string}
|
|
3488
3598
|
* @memberof LimitedUser
|
|
3489
3599
|
*/
|
|
3490
|
-
'fallbackAvatar'
|
|
3600
|
+
'fallbackAvatar'?: string;
|
|
3491
3601
|
/**
|
|
3492
3602
|
* 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.
|
|
3493
3603
|
* @type {string}
|
|
@@ -5421,6 +5531,12 @@ export interface World {
|
|
|
5421
5531
|
* @memberof World
|
|
5422
5532
|
*/
|
|
5423
5533
|
'capacity': number;
|
|
5534
|
+
/**
|
|
5535
|
+
*
|
|
5536
|
+
* @type {number}
|
|
5537
|
+
* @memberof World
|
|
5538
|
+
*/
|
|
5539
|
+
'recommendedCapacity': number;
|
|
5424
5540
|
/**
|
|
5425
5541
|
*
|
|
5426
5542
|
* @type {string}
|
package/base.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* VRChat API Documentation
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.
|
|
6
|
+
* The version of the OpenAPI document: 1.14.0
|
|
7
7
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/common.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* VRChat API Documentation
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.
|
|
6
|
+
* The version of the OpenAPI document: 1.14.0
|
|
7
7
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* VRChat API Documentation
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.
|
|
6
|
+
* The version of the OpenAPI document: 1.14.0
|
|
7
7
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
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.
|
|
4
|
+
* The version of the OpenAPI document: 1.14.0
|
|
5
5
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1276,6 +1276,12 @@ export interface CurrentUser {
|
|
|
1276
1276
|
* @memberof CurrentUser
|
|
1277
1277
|
*/
|
|
1278
1278
|
'acceptedTOSVersion': number;
|
|
1279
|
+
/**
|
|
1280
|
+
*
|
|
1281
|
+
* @type {number}
|
|
1282
|
+
* @memberof CurrentUser
|
|
1283
|
+
*/
|
|
1284
|
+
'acceptedPrivacyVersion'?: number;
|
|
1279
1285
|
/**
|
|
1280
1286
|
*
|
|
1281
1287
|
* @type {string}
|
|
@@ -1427,6 +1433,12 @@ export interface CurrentUser {
|
|
|
1427
1433
|
* @memberof CurrentUser
|
|
1428
1434
|
*/
|
|
1429
1435
|
'isFriend': boolean;
|
|
1436
|
+
/**
|
|
1437
|
+
*
|
|
1438
|
+
* @type {string}
|
|
1439
|
+
* @memberof CurrentUser
|
|
1440
|
+
*/
|
|
1441
|
+
'last_activity'?: string;
|
|
1430
1442
|
/**
|
|
1431
1443
|
*
|
|
1432
1444
|
* @type {string}
|
|
@@ -1475,6 +1487,12 @@ export interface CurrentUser {
|
|
|
1475
1487
|
* @memberof CurrentUser
|
|
1476
1488
|
*/
|
|
1477
1489
|
'pastDisplayNames': Array<PastDisplayName>;
|
|
1490
|
+
/**
|
|
1491
|
+
*
|
|
1492
|
+
* @type {CurrentUserPresence}
|
|
1493
|
+
* @memberof CurrentUser
|
|
1494
|
+
*/
|
|
1495
|
+
'presence'?: CurrentUserPresence;
|
|
1478
1496
|
/**
|
|
1479
1497
|
*
|
|
1480
1498
|
* @type {string}
|
|
@@ -1547,6 +1565,12 @@ export interface CurrentUser {
|
|
|
1547
1565
|
* @memberof CurrentUser
|
|
1548
1566
|
*/
|
|
1549
1567
|
'unsubscribe': boolean;
|
|
1568
|
+
/**
|
|
1569
|
+
*
|
|
1570
|
+
* @type {string}
|
|
1571
|
+
* @memberof CurrentUser
|
|
1572
|
+
*/
|
|
1573
|
+
'updated_at'?: string;
|
|
1550
1574
|
/**
|
|
1551
1575
|
*
|
|
1552
1576
|
* @type {string}
|
|
@@ -1561,6 +1585,91 @@ export interface CurrentUser {
|
|
|
1561
1585
|
*/
|
|
1562
1586
|
'username'?: string;
|
|
1563
1587
|
}
|
|
1588
|
+
/**
|
|
1589
|
+
*
|
|
1590
|
+
* @export
|
|
1591
|
+
* @interface CurrentUserPresence
|
|
1592
|
+
*/
|
|
1593
|
+
export interface CurrentUserPresence {
|
|
1594
|
+
/**
|
|
1595
|
+
*
|
|
1596
|
+
* @type {string}
|
|
1597
|
+
* @memberof CurrentUserPresence
|
|
1598
|
+
*/
|
|
1599
|
+
'avatarThumbnail'?: string | null;
|
|
1600
|
+
/**
|
|
1601
|
+
*
|
|
1602
|
+
* @type {string}
|
|
1603
|
+
* @memberof CurrentUserPresence
|
|
1604
|
+
*/
|
|
1605
|
+
'displayName'?: string;
|
|
1606
|
+
/**
|
|
1607
|
+
*
|
|
1608
|
+
* @type {Array<string>}
|
|
1609
|
+
* @memberof CurrentUserPresence
|
|
1610
|
+
*/
|
|
1611
|
+
'groups'?: Array<string> | null;
|
|
1612
|
+
/**
|
|
1613
|
+
* 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.
|
|
1614
|
+
* @type {string}
|
|
1615
|
+
* @memberof CurrentUserPresence
|
|
1616
|
+
*/
|
|
1617
|
+
'id'?: string;
|
|
1618
|
+
/**
|
|
1619
|
+
*
|
|
1620
|
+
* @type {string}
|
|
1621
|
+
* @memberof CurrentUserPresence
|
|
1622
|
+
*/
|
|
1623
|
+
'instance'?: string | null;
|
|
1624
|
+
/**
|
|
1625
|
+
* either an InstanceType or an empty string
|
|
1626
|
+
* @type {string}
|
|
1627
|
+
* @memberof CurrentUserPresence
|
|
1628
|
+
*/
|
|
1629
|
+
'instanceType'?: string | null;
|
|
1630
|
+
/**
|
|
1631
|
+
*
|
|
1632
|
+
* @type {string}
|
|
1633
|
+
* @memberof CurrentUserPresence
|
|
1634
|
+
*/
|
|
1635
|
+
'isRejoining'?: string | null;
|
|
1636
|
+
/**
|
|
1637
|
+
* either a Platform or an empty string
|
|
1638
|
+
* @type {string}
|
|
1639
|
+
* @memberof CurrentUserPresence
|
|
1640
|
+
*/
|
|
1641
|
+
'platform'?: string | null;
|
|
1642
|
+
/**
|
|
1643
|
+
*
|
|
1644
|
+
* @type {string}
|
|
1645
|
+
* @memberof CurrentUserPresence
|
|
1646
|
+
*/
|
|
1647
|
+
'profilePicOverride'?: string | null;
|
|
1648
|
+
/**
|
|
1649
|
+
* either a UserStatus or empty string
|
|
1650
|
+
* @type {string}
|
|
1651
|
+
* @memberof CurrentUserPresence
|
|
1652
|
+
*/
|
|
1653
|
+
'status'?: string | null;
|
|
1654
|
+
/**
|
|
1655
|
+
*
|
|
1656
|
+
* @type {string}
|
|
1657
|
+
* @memberof CurrentUserPresence
|
|
1658
|
+
*/
|
|
1659
|
+
'travelingToInstance'?: string | null;
|
|
1660
|
+
/**
|
|
1661
|
+
* WorldID be \"offline\" on User profiles if you are not friends with that user.
|
|
1662
|
+
* @type {string}
|
|
1663
|
+
* @memberof CurrentUserPresence
|
|
1664
|
+
*/
|
|
1665
|
+
'travelingToWorld'?: string;
|
|
1666
|
+
/**
|
|
1667
|
+
* WorldID be \"offline\" on User profiles if you are not friends with that user.
|
|
1668
|
+
* @type {string}
|
|
1669
|
+
* @memberof CurrentUserPresence
|
|
1670
|
+
*/
|
|
1671
|
+
'world'?: string;
|
|
1672
|
+
}
|
|
1564
1673
|
/**
|
|
1565
1674
|
* Used to identify which API deployment cluster is currently responding. `blue` and `green` are used by Production. `grape`and `cherry` are used during Development. [Blue Green Deployment by Martin Fowler](https://martinfowler.com/bliki/BlueGreenDeployment.html)
|
|
1566
1675
|
* @export
|
|
@@ -3176,6 +3285,7 @@ export declare const InstanceType: {
|
|
|
3176
3285
|
readonly Hidden: "hidden";
|
|
3177
3286
|
readonly Friends: "friends";
|
|
3178
3287
|
readonly Private: "private";
|
|
3288
|
+
readonly Group: "group";
|
|
3179
3289
|
};
|
|
3180
3290
|
export type InstanceType = typeof InstanceType[keyof typeof InstanceType];
|
|
3181
3291
|
/**
|
|
@@ -3415,7 +3525,7 @@ export interface LimitedUser {
|
|
|
3415
3525
|
* @type {string}
|
|
3416
3526
|
* @memberof LimitedUser
|
|
3417
3527
|
*/
|
|
3418
|
-
'fallbackAvatar'
|
|
3528
|
+
'fallbackAvatar'?: string;
|
|
3419
3529
|
/**
|
|
3420
3530
|
* 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.
|
|
3421
3531
|
* @type {string}
|
|
@@ -5305,6 +5415,12 @@ export interface World {
|
|
|
5305
5415
|
* @memberof World
|
|
5306
5416
|
*/
|
|
5307
5417
|
'capacity': number;
|
|
5418
|
+
/**
|
|
5419
|
+
*
|
|
5420
|
+
* @type {number}
|
|
5421
|
+
* @memberof World
|
|
5422
|
+
*/
|
|
5423
|
+
'recommendedCapacity': number;
|
|
5308
5424
|
/**
|
|
5309
5425
|
*
|
|
5310
5426
|
* @type {string}
|
package/dist/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.14.0
|
|
8
8
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -212,7 +212,8 @@ exports.InstanceType = {
|
|
|
212
212
|
Public: 'public',
|
|
213
213
|
Hidden: 'hidden',
|
|
214
214
|
Friends: 'friends',
|
|
215
|
-
Private: 'private'
|
|
215
|
+
Private: 'private',
|
|
216
|
+
Group: 'group'
|
|
216
217
|
};
|
|
217
218
|
/**
|
|
218
219
|
*
|
package/dist/base.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRChat API Documentation
|
|
3
3
|
*
|
|
4
|
-
* The version of the OpenAPI document: 1.
|
|
4
|
+
* The version of the OpenAPI document: 1.14.0
|
|
5
5
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.14.0
|
|
8
8
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRChat API Documentation
|
|
3
3
|
*
|
|
4
|
-
* The version of the OpenAPI document: 1.
|
|
4
|
+
* The version of the OpenAPI document: 1.14.0
|
|
5
5
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.14.0
|
|
8
8
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRChat API Documentation
|
|
3
3
|
*
|
|
4
|
-
* The version of the OpenAPI document: 1.
|
|
4
|
+
* The version of the OpenAPI document: 1.14.0
|
|
5
5
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.14.0
|
|
8
8
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRChat API Documentation
|
|
3
3
|
*
|
|
4
|
-
* The version of the OpenAPI document: 1.
|
|
4
|
+
* The version of the OpenAPI document: 1.14.0
|
|
5
5
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.14.0
|
|
8
8
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/index.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* VRChat API Documentation
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.
|
|
6
|
+
* The version of the OpenAPI document: 1.14.0
|
|
7
7
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|