vrchat 1.6.8 → 1.7.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 +16 -7
- package/base.ts +2 -2
- package/common.ts +2 -2
- package/configuration.ts +2 -2
- package/dist/api.d.ts +16 -7
- package/dist/api.js +9 -6
- package/dist/base.d.ts +2 -2
- package/dist/base.js +2 -2
- package/dist/common.d.ts +2 -2
- package/dist/common.js +2 -2
- package/dist/configuration.d.ts +2 -2
- package/dist/configuration.js +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/index.ts +2 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* VRChat API Documentation
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
-
* Contact: me@
|
|
6
|
+
* The version of the OpenAPI document: 1.7.0
|
|
7
|
+
* Contact: me@ariesclark.com
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
10
|
* https://openapi-generator.tech
|
|
@@ -1246,6 +1246,12 @@ export interface CurrentUser {
|
|
|
1246
1246
|
* @memberof CurrentUser
|
|
1247
1247
|
*/
|
|
1248
1248
|
'twoFactorAuthEnabled': boolean;
|
|
1249
|
+
/**
|
|
1250
|
+
*
|
|
1251
|
+
* @type {string}
|
|
1252
|
+
* @memberof CurrentUser
|
|
1253
|
+
*/
|
|
1254
|
+
'twoFactorAuthEnabledDate'?: string;
|
|
1249
1255
|
/**
|
|
1250
1256
|
*
|
|
1251
1257
|
* @type {boolean}
|
|
@@ -2795,7 +2801,9 @@ export enum PlayerModerationType {
|
|
|
2795
2801
|
Block = 'block',
|
|
2796
2802
|
Unblock = 'unblock',
|
|
2797
2803
|
HideAvatar = 'hideAvatar',
|
|
2798
|
-
ShowAvatar = 'showAvatar'
|
|
2804
|
+
ShowAvatar = 'showAvatar',
|
|
2805
|
+
InteractOn = 'interactOn',
|
|
2806
|
+
InteractOff = 'interactOff'
|
|
2799
2807
|
}
|
|
2800
2808
|
|
|
2801
2809
|
/**
|
|
@@ -2826,6 +2834,7 @@ export interface PublicAnnouncement {
|
|
|
2826
2834
|
export enum Region {
|
|
2827
2835
|
Us = 'us',
|
|
2828
2836
|
Use = 'use',
|
|
2837
|
+
Usw = 'usw',
|
|
2829
2838
|
Eu = 'eu',
|
|
2830
2839
|
Jp = 'jp',
|
|
2831
2840
|
Unknown = 'unknown'
|
|
@@ -9385,7 +9394,7 @@ export const PlayermoderationApiAxiosParamCreator = function (configuration?: Co
|
|
|
9385
9394
|
};
|
|
9386
9395
|
},
|
|
9387
9396
|
/**
|
|
9388
|
-
* Moderate a user, e.g. unmute them or show their avatar.
|
|
9397
|
+
* Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
|
|
9389
9398
|
* @summary Moderate User
|
|
9390
9399
|
* @param {ModerateUserRequest} [moderateUserRequest]
|
|
9391
9400
|
* @param {*} [options] Override http request option.
|
|
@@ -9515,7 +9524,7 @@ export const PlayermoderationApiFp = function(configuration?: Configuration) {
|
|
|
9515
9524
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
9516
9525
|
},
|
|
9517
9526
|
/**
|
|
9518
|
-
* Moderate a user, e.g. unmute them or show their avatar.
|
|
9527
|
+
* Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
|
|
9519
9528
|
* @summary Moderate User
|
|
9520
9529
|
* @param {ModerateUserRequest} [moderateUserRequest]
|
|
9521
9530
|
* @param {*} [options] Override http request option.
|
|
@@ -9587,7 +9596,7 @@ export const PlayermoderationApiFactory = function (configuration?: Configuratio
|
|
|
9587
9596
|
return localVarFp.getPlayerModerations(type, targetUserId, options).then((request) => request(axios, basePath));
|
|
9588
9597
|
},
|
|
9589
9598
|
/**
|
|
9590
|
-
* Moderate a user, e.g. unmute them or show their avatar.
|
|
9599
|
+
* Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
|
|
9591
9600
|
* @summary Moderate User
|
|
9592
9601
|
* @param {ModerateUserRequest} [moderateUserRequest]
|
|
9593
9602
|
* @param {*} [options] Override http request option.
|
|
@@ -9665,7 +9674,7 @@ export class PlayermoderationApi extends BaseAPI {
|
|
|
9665
9674
|
}
|
|
9666
9675
|
|
|
9667
9676
|
/**
|
|
9668
|
-
* Moderate a user, e.g. unmute them or show their avatar.
|
|
9677
|
+
* Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
|
|
9669
9678
|
* @summary Moderate User
|
|
9670
9679
|
* @param {ModerateUserRequest} [moderateUserRequest]
|
|
9671
9680
|
* @param {*} [options] Override http request option.
|
package/base.ts
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* VRChat API Documentation
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
-
* Contact: me@
|
|
6
|
+
* The version of the OpenAPI document: 1.7.0
|
|
7
|
+
* Contact: me@ariesclark.com
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
10
|
* https://openapi-generator.tech
|
package/common.ts
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* VRChat API Documentation
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
-
* Contact: me@
|
|
6
|
+
* The version of the OpenAPI document: 1.7.0
|
|
7
|
+
* Contact: me@ariesclark.com
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
10
|
* https://openapi-generator.tech
|
package/configuration.ts
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* VRChat API Documentation
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
-
* Contact: me@
|
|
6
|
+
* The version of the OpenAPI document: 1.7.0
|
|
7
|
+
* Contact: me@ariesclark.com
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
10
|
* https://openapi-generator.tech
|
package/dist/api.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRChat API Documentation
|
|
3
3
|
*
|
|
4
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
-
* Contact: me@
|
|
4
|
+
* The version of the OpenAPI document: 1.7.0
|
|
5
|
+
* Contact: me@ariesclark.com
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
8
|
* https://openapi-generator.tech
|
|
@@ -1236,6 +1236,12 @@ export interface CurrentUser {
|
|
|
1236
1236
|
* @memberof CurrentUser
|
|
1237
1237
|
*/
|
|
1238
1238
|
'twoFactorAuthEnabled': boolean;
|
|
1239
|
+
/**
|
|
1240
|
+
*
|
|
1241
|
+
* @type {string}
|
|
1242
|
+
* @memberof CurrentUser
|
|
1243
|
+
*/
|
|
1244
|
+
'twoFactorAuthEnabledDate'?: string;
|
|
1239
1245
|
/**
|
|
1240
1246
|
*
|
|
1241
1247
|
* @type {boolean}
|
|
@@ -2758,7 +2764,9 @@ export declare enum PlayerModerationType {
|
|
|
2758
2764
|
Block = "block",
|
|
2759
2765
|
Unblock = "unblock",
|
|
2760
2766
|
HideAvatar = "hideAvatar",
|
|
2761
|
-
ShowAvatar = "showAvatar"
|
|
2767
|
+
ShowAvatar = "showAvatar",
|
|
2768
|
+
InteractOn = "interactOn",
|
|
2769
|
+
InteractOff = "interactOff"
|
|
2762
2770
|
}
|
|
2763
2771
|
/**
|
|
2764
2772
|
* Public Announcement
|
|
@@ -2787,6 +2795,7 @@ export interface PublicAnnouncement {
|
|
|
2787
2795
|
export declare enum Region {
|
|
2788
2796
|
Us = "us",
|
|
2789
2797
|
Use = "use",
|
|
2798
|
+
Usw = "usw",
|
|
2790
2799
|
Eu = "eu",
|
|
2791
2800
|
Jp = "jp",
|
|
2792
2801
|
Unknown = "unknown"
|
|
@@ -6565,7 +6574,7 @@ export declare const PlayermoderationApiAxiosParamCreator: (configuration?: Conf
|
|
|
6565
6574
|
*/
|
|
6566
6575
|
getPlayerModerations: (type?: string, targetUserId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6567
6576
|
/**
|
|
6568
|
-
* Moderate a user, e.g. unmute them or show their avatar.
|
|
6577
|
+
* Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
|
|
6569
6578
|
* @summary Moderate User
|
|
6570
6579
|
* @param {ModerateUserRequest} [moderateUserRequest]
|
|
6571
6580
|
* @param {*} [options] Override http request option.
|
|
@@ -6619,7 +6628,7 @@ export declare const PlayermoderationApiFp: (configuration?: Configuration) => {
|
|
|
6619
6628
|
*/
|
|
6620
6629
|
getPlayerModerations(type?: string, targetUserId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<PlayerModeration>>>;
|
|
6621
6630
|
/**
|
|
6622
|
-
* Moderate a user, e.g. unmute them or show their avatar.
|
|
6631
|
+
* Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
|
|
6623
6632
|
* @summary Moderate User
|
|
6624
6633
|
* @param {ModerateUserRequest} [moderateUserRequest]
|
|
6625
6634
|
* @param {*} [options] Override http request option.
|
|
@@ -6673,7 +6682,7 @@ export declare const PlayermoderationApiFactory: (configuration?: Configuration,
|
|
|
6673
6682
|
*/
|
|
6674
6683
|
getPlayerModerations(type?: string, targetUserId?: string, options?: any): AxiosPromise<Array<PlayerModeration>>;
|
|
6675
6684
|
/**
|
|
6676
|
-
* Moderate a user, e.g. unmute them or show their avatar.
|
|
6685
|
+
* Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
|
|
6677
6686
|
* @summary Moderate User
|
|
6678
6687
|
* @param {ModerateUserRequest} [moderateUserRequest]
|
|
6679
6688
|
* @param {*} [options] Override http request option.
|
|
@@ -6733,7 +6742,7 @@ export declare class PlayermoderationApi extends BaseAPI {
|
|
|
6733
6742
|
*/
|
|
6734
6743
|
getPlayerModerations(type?: string, targetUserId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerModeration[]>>;
|
|
6735
6744
|
/**
|
|
6736
|
-
* Moderate a user, e.g. unmute them or show their avatar.
|
|
6745
|
+
* Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
|
|
6737
6746
|
* @summary Moderate User
|
|
6738
6747
|
* @param {ModerateUserRequest} [moderateUserRequest]
|
|
6739
6748
|
* @param {*} [options] Override http request option.
|
package/dist/api.js
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
-
* Contact: me@
|
|
7
|
+
* The version of the OpenAPI document: 1.7.0
|
|
8
|
+
* Contact: me@ariesclark.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
|
@@ -258,6 +258,8 @@ var PlayerModerationType;
|
|
|
258
258
|
PlayerModerationType["Unblock"] = "unblock";
|
|
259
259
|
PlayerModerationType["HideAvatar"] = "hideAvatar";
|
|
260
260
|
PlayerModerationType["ShowAvatar"] = "showAvatar";
|
|
261
|
+
PlayerModerationType["InteractOn"] = "interactOn";
|
|
262
|
+
PlayerModerationType["InteractOff"] = "interactOff";
|
|
261
263
|
})(PlayerModerationType = exports.PlayerModerationType || (exports.PlayerModerationType = {}));
|
|
262
264
|
/**
|
|
263
265
|
* API/Photon region.
|
|
@@ -268,6 +270,7 @@ var Region;
|
|
|
268
270
|
(function (Region) {
|
|
269
271
|
Region["Us"] = "us";
|
|
270
272
|
Region["Use"] = "use";
|
|
273
|
+
Region["Usw"] = "usw";
|
|
271
274
|
Region["Eu"] = "eu";
|
|
272
275
|
Region["Jp"] = "jp";
|
|
273
276
|
Region["Unknown"] = "unknown";
|
|
@@ -5968,7 +5971,7 @@ exports.PlayermoderationApiAxiosParamCreator = function (configuration) {
|
|
|
5968
5971
|
});
|
|
5969
5972
|
},
|
|
5970
5973
|
/**
|
|
5971
|
-
* Moderate a user, e.g. unmute them or show their avatar.
|
|
5974
|
+
* Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
|
|
5972
5975
|
* @summary Moderate User
|
|
5973
5976
|
* @param {ModerateUserRequest} [moderateUserRequest]
|
|
5974
5977
|
* @param {*} [options] Override http request option.
|
|
@@ -6125,7 +6128,7 @@ exports.PlayermoderationApiFp = function (configuration) {
|
|
|
6125
6128
|
});
|
|
6126
6129
|
},
|
|
6127
6130
|
/**
|
|
6128
|
-
* Moderate a user, e.g. unmute them or show their avatar.
|
|
6131
|
+
* Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
|
|
6129
6132
|
* @summary Moderate User
|
|
6130
6133
|
* @param {ModerateUserRequest} [moderateUserRequest]
|
|
6131
6134
|
* @param {*} [options] Override http request option.
|
|
@@ -6214,7 +6217,7 @@ exports.PlayermoderationApiFactory = function (configuration, basePath, axios) {
|
|
|
6214
6217
|
return localVarFp.getPlayerModerations(type, targetUserId, options).then(function (request) { return request(axios, basePath); });
|
|
6215
6218
|
},
|
|
6216
6219
|
/**
|
|
6217
|
-
* Moderate a user, e.g. unmute them or show their avatar.
|
|
6220
|
+
* Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
|
|
6218
6221
|
* @summary Moderate User
|
|
6219
6222
|
* @param {ModerateUserRequest} [moderateUserRequest]
|
|
6220
6223
|
* @param {*} [options] Override http request option.
|
|
@@ -6295,7 +6298,7 @@ var PlayermoderationApi = /** @class */ (function (_super) {
|
|
|
6295
6298
|
return exports.PlayermoderationApiFp(this.configuration).getPlayerModerations(type, targetUserId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
6296
6299
|
};
|
|
6297
6300
|
/**
|
|
6298
|
-
* Moderate a user, e.g. unmute them or show their avatar.
|
|
6301
|
+
* Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
|
|
6299
6302
|
* @summary Moderate User
|
|
6300
6303
|
* @param {ModerateUserRequest} [moderateUserRequest]
|
|
6301
6304
|
* @param {*} [options] Override http request option.
|
package/dist/base.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRChat API Documentation
|
|
3
3
|
*
|
|
4
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
-
* Contact: me@
|
|
4
|
+
* The version of the OpenAPI document: 1.7.0
|
|
5
|
+
* Contact: me@ariesclark.com
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
8
|
* https://openapi-generator.tech
|
package/dist/base.js
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
-
* Contact: me@
|
|
7
|
+
* The version of the OpenAPI document: 1.7.0
|
|
8
|
+
* Contact: me@ariesclark.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/dist/common.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRChat API Documentation
|
|
3
3
|
*
|
|
4
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
-
* Contact: me@
|
|
4
|
+
* The version of the OpenAPI document: 1.7.0
|
|
5
|
+
* Contact: me@ariesclark.com
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
8
|
* https://openapi-generator.tech
|
package/dist/common.js
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
-
* Contact: me@
|
|
7
|
+
* The version of the OpenAPI document: 1.7.0
|
|
8
|
+
* Contact: me@ariesclark.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/dist/configuration.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRChat API Documentation
|
|
3
3
|
*
|
|
4
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
-
* Contact: me@
|
|
4
|
+
* The version of the OpenAPI document: 1.7.0
|
|
5
|
+
* Contact: me@ariesclark.com
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
8
|
* https://openapi-generator.tech
|
package/dist/configuration.js
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
-
* Contact: me@
|
|
7
|
+
* The version of the OpenAPI document: 1.7.0
|
|
8
|
+
* Contact: me@ariesclark.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRChat API Documentation
|
|
3
3
|
*
|
|
4
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
-
* Contact: me@
|
|
4
|
+
* The version of the OpenAPI document: 1.7.0
|
|
5
|
+
* Contact: me@ariesclark.com
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
8
|
* https://openapi-generator.tech
|
package/dist/index.js
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
-
* Contact: me@
|
|
7
|
+
* The version of the OpenAPI document: 1.7.0
|
|
8
|
+
* Contact: me@ariesclark.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/index.ts
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* VRChat API Documentation
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
-
* Contact: me@
|
|
6
|
+
* The version of the OpenAPI document: 1.7.0
|
|
7
|
+
* Contact: me@ariesclark.com
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
10
|
* https://openapi-generator.tech
|