@ughuuu/game_server 1.0.151 → 1.0.155

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.
@@ -0,0 +1,124 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _ApiClient = _interopRequireDefault(require("../ApiClient"));
8
+ var _ListFriends200ResponseDataInner = _interopRequireDefault(require("./ListFriends200ResponseDataInner"));
9
+ var _ListLobbies200ResponseMeta = _interopRequireDefault(require("./ListLobbies200ResponseMeta"));
10
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
11
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
12
+ function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t["return"] || t["return"](); } finally { if (u) throw o; } } }; }
13
+ function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
14
+ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
15
+ function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
16
+ function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
17
+ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
18
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
19
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
20
+ * Game Server API
21
+ * API for Game Server application ## Authentication This API uses JWT (JSON Web Tokens) with access and refresh tokens: ### Getting Tokens - **Email/Password**: POST to `/api/v1/login` with email and password - **Discord OAuth**: Use `/api/v1/auth/discord` flow - **Google OAuth**: Use `/api/v1/auth/google` flow - **Facebook OAuth**: Use `/api/v1/auth/facebook` flow - **Apple Sign In**: Use `/auth/apple` browser flow (API flow not yet implemented) Both methods return: - `access_token` - Short-lived (15 min), use for API requests - `refresh_token` - Long-lived (30 days), use to get new access tokens ### Using Tokens Include the access token in the Authorization header: ``` Authorization: Bearer <access_token> ``` ### Refreshing Tokens When your access token expires, use POST `/api/v1/refresh` with your refresh token to get a new access token. ## Endpoints All API endpoints are under `/api/v1`
22
+ *
23
+ * The version of the OpenAPI document: 1.0.0
24
+ *
25
+ *
26
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
27
+ * https://openapi-generator.tech
28
+ * Do not edit the class manually.
29
+ *
30
+ */
31
+ /**
32
+ * The ListFriends200Response model module.
33
+ * @module model/ListFriends200Response
34
+ * @version 1.0.0
35
+ */
36
+ var ListFriends200Response = /*#__PURE__*/function () {
37
+ /**
38
+ * Constructs a new <code>ListFriends200Response</code>.
39
+ * @alias module:model/ListFriends200Response
40
+ */
41
+ function ListFriends200Response() {
42
+ _classCallCheck(this, ListFriends200Response);
43
+ ListFriends200Response.initialize(this);
44
+ }
45
+
46
+ /**
47
+ * Initializes the fields of this object.
48
+ * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
49
+ * Only for internal use.
50
+ */
51
+ return _createClass(ListFriends200Response, null, [{
52
+ key: "initialize",
53
+ value: function initialize(obj) {}
54
+
55
+ /**
56
+ * Constructs a <code>ListFriends200Response</code> from a plain JavaScript object, optionally creating a new instance.
57
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
58
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
59
+ * @param {module:model/ListFriends200Response} obj Optional instance to populate.
60
+ * @return {module:model/ListFriends200Response} The populated <code>ListFriends200Response</code> instance.
61
+ */
62
+ }, {
63
+ key: "constructFromObject",
64
+ value: function constructFromObject(data, obj) {
65
+ if (data) {
66
+ obj = obj || new ListFriends200Response();
67
+ if (data.hasOwnProperty('data')) {
68
+ obj['data'] = _ApiClient["default"].convertToType(data['data'], [_ListFriends200ResponseDataInner["default"]]);
69
+ }
70
+ if (data.hasOwnProperty('meta')) {
71
+ obj['meta'] = _ListLobbies200ResponseMeta["default"].constructFromObject(data['meta']);
72
+ }
73
+ }
74
+ return obj;
75
+ }
76
+
77
+ /**
78
+ * Validates the JSON data with respect to <code>ListFriends200Response</code>.
79
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
80
+ * @return {boolean} to indicate whether the JSON data is valid with respect to <code>ListFriends200Response</code>.
81
+ */
82
+ }, {
83
+ key: "validateJSON",
84
+ value: function validateJSON(data) {
85
+ if (data['data']) {
86
+ // data not null
87
+ // ensure the json data is an array
88
+ if (!Array.isArray(data['data'])) {
89
+ throw new Error("Expected the field `data` to be an array in the JSON data but got " + data['data']);
90
+ }
91
+ // validate the optional field `data` (array)
92
+ var _iterator = _createForOfIteratorHelper(data['data']),
93
+ _step;
94
+ try {
95
+ for (_iterator.s(); !(_step = _iterator.n()).done;) {
96
+ var item = _step.value;
97
+ _ListFriends200ResponseDataInner["default"].validateJSON(item);
98
+ }
99
+ } catch (err) {
100
+ _iterator.e(err);
101
+ } finally {
102
+ _iterator.f();
103
+ }
104
+ ;
105
+ }
106
+ // validate the optional field `meta`
107
+ if (data['meta']) {
108
+ // data not null
109
+ _ListLobbies200ResponseMeta["default"].validateJSON(data['meta']);
110
+ }
111
+ return true;
112
+ }
113
+ }]);
114
+ }();
115
+ /**
116
+ * @member {Array.<module:model/ListFriends200ResponseDataInner>} data
117
+ */
118
+ ListFriends200Response.prototype['data'] = undefined;
119
+
120
+ /**
121
+ * @member {module:model/ListLobbies200ResponseMeta} meta
122
+ */
123
+ ListFriends200Response.prototype['meta'] = undefined;
124
+ var _default = exports["default"] = ListFriends200Response;
@@ -0,0 +1,121 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _ApiClient = _interopRequireDefault(require("../ApiClient"));
8
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
9
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
10
+ function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
11
+ function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
12
+ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
13
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
14
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
15
+ * Game Server API
16
+ * API for Game Server application ## Authentication This API uses JWT (JSON Web Tokens) with access and refresh tokens: ### Getting Tokens - **Email/Password**: POST to `/api/v1/login` with email and password - **Discord OAuth**: Use `/api/v1/auth/discord` flow - **Google OAuth**: Use `/api/v1/auth/google` flow - **Facebook OAuth**: Use `/api/v1/auth/facebook` flow - **Apple Sign In**: Use `/auth/apple` browser flow (API flow not yet implemented) Both methods return: - `access_token` - Short-lived (15 min), use for API requests - `refresh_token` - Long-lived (30 days), use to get new access tokens ### Using Tokens Include the access token in the Authorization header: ``` Authorization: Bearer <access_token> ``` ### Refreshing Tokens When your access token expires, use POST `/api/v1/refresh` with your refresh token to get a new access token. ## Endpoints All API endpoints are under `/api/v1`
17
+ *
18
+ * The version of the OpenAPI document: 1.0.0
19
+ *
20
+ *
21
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
22
+ * https://openapi-generator.tech
23
+ * Do not edit the class manually.
24
+ *
25
+ */
26
+ /**
27
+ * The ListFriends200ResponseDataInner model module.
28
+ * @module model/ListFriends200ResponseDataInner
29
+ * @version 1.0.0
30
+ */
31
+ var ListFriends200ResponseDataInner = /*#__PURE__*/function () {
32
+ /**
33
+ * Constructs a new <code>ListFriends200ResponseDataInner</code>.
34
+ * @alias module:model/ListFriends200ResponseDataInner
35
+ */
36
+ function ListFriends200ResponseDataInner() {
37
+ _classCallCheck(this, ListFriends200ResponseDataInner);
38
+ ListFriends200ResponseDataInner.initialize(this);
39
+ }
40
+
41
+ /**
42
+ * Initializes the fields of this object.
43
+ * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
44
+ * Only for internal use.
45
+ */
46
+ return _createClass(ListFriends200ResponseDataInner, null, [{
47
+ key: "initialize",
48
+ value: function initialize(obj) {}
49
+
50
+ /**
51
+ * Constructs a <code>ListFriends200ResponseDataInner</code> from a plain JavaScript object, optionally creating a new instance.
52
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
53
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
54
+ * @param {module:model/ListFriends200ResponseDataInner} obj Optional instance to populate.
55
+ * @return {module:model/ListFriends200ResponseDataInner} The populated <code>ListFriends200ResponseDataInner</code> instance.
56
+ */
57
+ }, {
58
+ key: "constructFromObject",
59
+ value: function constructFromObject(data, obj) {
60
+ if (data) {
61
+ obj = obj || new ListFriends200ResponseDataInner();
62
+ if (data.hasOwnProperty('display_name')) {
63
+ obj['display_name'] = _ApiClient["default"].convertToType(data['display_name'], 'String');
64
+ }
65
+ if (data.hasOwnProperty('email')) {
66
+ obj['email'] = _ApiClient["default"].convertToType(data['email'], 'String');
67
+ }
68
+ if (data.hasOwnProperty('id')) {
69
+ obj['id'] = _ApiClient["default"].convertToType(data['id'], 'Number');
70
+ }
71
+ if (data.hasOwnProperty('profile_url')) {
72
+ obj['profile_url'] = _ApiClient["default"].convertToType(data['profile_url'], 'String');
73
+ }
74
+ }
75
+ return obj;
76
+ }
77
+
78
+ /**
79
+ * Validates the JSON data with respect to <code>ListFriends200ResponseDataInner</code>.
80
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
81
+ * @return {boolean} to indicate whether the JSON data is valid with respect to <code>ListFriends200ResponseDataInner</code>.
82
+ */
83
+ }, {
84
+ key: "validateJSON",
85
+ value: function validateJSON(data) {
86
+ // ensure the json data is a string
87
+ if (data['display_name'] && !(typeof data['display_name'] === 'string' || data['display_name'] instanceof String)) {
88
+ throw new Error("Expected the field `display_name` to be a primitive type in the JSON string but got " + data['display_name']);
89
+ }
90
+ // ensure the json data is a string
91
+ if (data['email'] && !(typeof data['email'] === 'string' || data['email'] instanceof String)) {
92
+ throw new Error("Expected the field `email` to be a primitive type in the JSON string but got " + data['email']);
93
+ }
94
+ // ensure the json data is a string
95
+ if (data['profile_url'] && !(typeof data['profile_url'] === 'string' || data['profile_url'] instanceof String)) {
96
+ throw new Error("Expected the field `profile_url` to be a primitive type in the JSON string but got " + data['profile_url']);
97
+ }
98
+ return true;
99
+ }
100
+ }]);
101
+ }();
102
+ /**
103
+ * @member {String} display_name
104
+ */
105
+ ListFriends200ResponseDataInner.prototype['display_name'] = undefined;
106
+
107
+ /**
108
+ * @member {String} email
109
+ */
110
+ ListFriends200ResponseDataInner.prototype['email'] = undefined;
111
+
112
+ /**
113
+ * @member {Number} id
114
+ */
115
+ ListFriends200ResponseDataInner.prototype['id'] = undefined;
116
+
117
+ /**
118
+ * @member {String} profile_url
119
+ */
120
+ ListFriends200ResponseDataInner.prototype['profile_url'] = undefined;
121
+ var _default = exports["default"] = ListFriends200ResponseDataInner;
@@ -0,0 +1,124 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _ApiClient = _interopRequireDefault(require("../ApiClient"));
8
+ var _ListLobbies200ResponseDataInner = _interopRequireDefault(require("./ListLobbies200ResponseDataInner"));
9
+ var _ListLobbies200ResponseMeta = _interopRequireDefault(require("./ListLobbies200ResponseMeta"));
10
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
11
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
12
+ function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t["return"] || t["return"](); } finally { if (u) throw o; } } }; }
13
+ function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
14
+ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
15
+ function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
16
+ function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
17
+ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
18
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
19
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
20
+ * Game Server API
21
+ * API for Game Server application ## Authentication This API uses JWT (JSON Web Tokens) with access and refresh tokens: ### Getting Tokens - **Email/Password**: POST to `/api/v1/login` with email and password - **Discord OAuth**: Use `/api/v1/auth/discord` flow - **Google OAuth**: Use `/api/v1/auth/google` flow - **Facebook OAuth**: Use `/api/v1/auth/facebook` flow - **Apple Sign In**: Use `/auth/apple` browser flow (API flow not yet implemented) Both methods return: - `access_token` - Short-lived (15 min), use for API requests - `refresh_token` - Long-lived (30 days), use to get new access tokens ### Using Tokens Include the access token in the Authorization header: ``` Authorization: Bearer <access_token> ``` ### Refreshing Tokens When your access token expires, use POST `/api/v1/refresh` with your refresh token to get a new access token. ## Endpoints All API endpoints are under `/api/v1`
22
+ *
23
+ * The version of the OpenAPI document: 1.0.0
24
+ *
25
+ *
26
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
27
+ * https://openapi-generator.tech
28
+ * Do not edit the class manually.
29
+ *
30
+ */
31
+ /**
32
+ * The ListLobbies200Response model module.
33
+ * @module model/ListLobbies200Response
34
+ * @version 1.0.0
35
+ */
36
+ var ListLobbies200Response = /*#__PURE__*/function () {
37
+ /**
38
+ * Constructs a new <code>ListLobbies200Response</code>.
39
+ * @alias module:model/ListLobbies200Response
40
+ */
41
+ function ListLobbies200Response() {
42
+ _classCallCheck(this, ListLobbies200Response);
43
+ ListLobbies200Response.initialize(this);
44
+ }
45
+
46
+ /**
47
+ * Initializes the fields of this object.
48
+ * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
49
+ * Only for internal use.
50
+ */
51
+ return _createClass(ListLobbies200Response, null, [{
52
+ key: "initialize",
53
+ value: function initialize(obj) {}
54
+
55
+ /**
56
+ * Constructs a <code>ListLobbies200Response</code> from a plain JavaScript object, optionally creating a new instance.
57
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
58
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
59
+ * @param {module:model/ListLobbies200Response} obj Optional instance to populate.
60
+ * @return {module:model/ListLobbies200Response} The populated <code>ListLobbies200Response</code> instance.
61
+ */
62
+ }, {
63
+ key: "constructFromObject",
64
+ value: function constructFromObject(data, obj) {
65
+ if (data) {
66
+ obj = obj || new ListLobbies200Response();
67
+ if (data.hasOwnProperty('data')) {
68
+ obj['data'] = _ApiClient["default"].convertToType(data['data'], [_ListLobbies200ResponseDataInner["default"]]);
69
+ }
70
+ if (data.hasOwnProperty('meta')) {
71
+ obj['meta'] = _ListLobbies200ResponseMeta["default"].constructFromObject(data['meta']);
72
+ }
73
+ }
74
+ return obj;
75
+ }
76
+
77
+ /**
78
+ * Validates the JSON data with respect to <code>ListLobbies200Response</code>.
79
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
80
+ * @return {boolean} to indicate whether the JSON data is valid with respect to <code>ListLobbies200Response</code>.
81
+ */
82
+ }, {
83
+ key: "validateJSON",
84
+ value: function validateJSON(data) {
85
+ if (data['data']) {
86
+ // data not null
87
+ // ensure the json data is an array
88
+ if (!Array.isArray(data['data'])) {
89
+ throw new Error("Expected the field `data` to be an array in the JSON data but got " + data['data']);
90
+ }
91
+ // validate the optional field `data` (array)
92
+ var _iterator = _createForOfIteratorHelper(data['data']),
93
+ _step;
94
+ try {
95
+ for (_iterator.s(); !(_step = _iterator.n()).done;) {
96
+ var item = _step.value;
97
+ _ListLobbies200ResponseDataInner["default"].validateJSON(item);
98
+ }
99
+ } catch (err) {
100
+ _iterator.e(err);
101
+ } finally {
102
+ _iterator.f();
103
+ }
104
+ ;
105
+ }
106
+ // validate the optional field `meta`
107
+ if (data['meta']) {
108
+ // data not null
109
+ _ListLobbies200ResponseMeta["default"].validateJSON(data['meta']);
110
+ }
111
+ return true;
112
+ }
113
+ }]);
114
+ }();
115
+ /**
116
+ * @member {Array.<module:model/ListLobbies200ResponseDataInner>} data
117
+ */
118
+ ListLobbies200Response.prototype['data'] = undefined;
119
+
120
+ /**
121
+ * @member {module:model/ListLobbies200ResponseMeta} meta
122
+ */
123
+ ListLobbies200Response.prototype['meta'] = undefined;
124
+ var _default = exports["default"] = ListLobbies200Response;
@@ -24,18 +24,18 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
24
24
  *
25
25
  */
26
26
  /**
27
- * The ListLobbies200ResponseInner model module.
28
- * @module model/ListLobbies200ResponseInner
27
+ * The ListLobbies200ResponseDataInner model module.
28
+ * @module model/ListLobbies200ResponseDataInner
29
29
  * @version 1.0.0
30
30
  */
31
- var ListLobbies200ResponseInner = /*#__PURE__*/function () {
31
+ var ListLobbies200ResponseDataInner = /*#__PURE__*/function () {
32
32
  /**
33
- * Constructs a new <code>ListLobbies200ResponseInner</code>.
34
- * @alias module:model/ListLobbies200ResponseInner
33
+ * Constructs a new <code>ListLobbies200ResponseDataInner</code>.
34
+ * @alias module:model/ListLobbies200ResponseDataInner
35
35
  */
36
- function ListLobbies200ResponseInner() {
37
- _classCallCheck(this, ListLobbies200ResponseInner);
38
- ListLobbies200ResponseInner.initialize(this);
36
+ function ListLobbies200ResponseDataInner() {
37
+ _classCallCheck(this, ListLobbies200ResponseDataInner);
38
+ ListLobbies200ResponseDataInner.initialize(this);
39
39
  }
40
40
 
41
41
  /**
@@ -43,22 +43,22 @@ var ListLobbies200ResponseInner = /*#__PURE__*/function () {
43
43
  * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
44
44
  * Only for internal use.
45
45
  */
46
- return _createClass(ListLobbies200ResponseInner, null, [{
46
+ return _createClass(ListLobbies200ResponseDataInner, null, [{
47
47
  key: "initialize",
48
48
  value: function initialize(obj) {}
49
49
 
50
50
  /**
51
- * Constructs a <code>ListLobbies200ResponseInner</code> from a plain JavaScript object, optionally creating a new instance.
51
+ * Constructs a <code>ListLobbies200ResponseDataInner</code> from a plain JavaScript object, optionally creating a new instance.
52
52
  * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
53
53
  * @param {Object} data The plain JavaScript object bearing properties of interest.
54
- * @param {module:model/ListLobbies200ResponseInner} obj Optional instance to populate.
55
- * @return {module:model/ListLobbies200ResponseInner} The populated <code>ListLobbies200ResponseInner</code> instance.
54
+ * @param {module:model/ListLobbies200ResponseDataInner} obj Optional instance to populate.
55
+ * @return {module:model/ListLobbies200ResponseDataInner} The populated <code>ListLobbies200ResponseDataInner</code> instance.
56
56
  */
57
57
  }, {
58
58
  key: "constructFromObject",
59
59
  value: function constructFromObject(data, obj) {
60
60
  if (data) {
61
- obj = obj || new ListLobbies200ResponseInner();
61
+ obj = obj || new ListLobbies200ResponseDataInner();
62
62
  if (data.hasOwnProperty('host_id')) {
63
63
  obj['host_id'] = _ApiClient["default"].convertToType(data['host_id'], 'Number');
64
64
  }
@@ -88,9 +88,9 @@ var ListLobbies200ResponseInner = /*#__PURE__*/function () {
88
88
  }
89
89
 
90
90
  /**
91
- * Validates the JSON data with respect to <code>ListLobbies200ResponseInner</code>.
91
+ * Validates the JSON data with respect to <code>ListLobbies200ResponseDataInner</code>.
92
92
  * @param {Object} data The plain JavaScript object bearing properties of interest.
93
- * @return {boolean} to indicate whether the JSON data is valid with respect to <code>ListLobbies200ResponseInner</code>.
93
+ * @return {boolean} to indicate whether the JSON data is valid with respect to <code>ListLobbies200ResponseDataInner</code>.
94
94
  */
95
95
  }, {
96
96
  key: "validateJSON",
@@ -107,47 +107,47 @@ var ListLobbies200ResponseInner = /*#__PURE__*/function () {
107
107
  * User ID of the host
108
108
  * @member {Number} host_id
109
109
  */
110
- ListLobbies200ResponseInner.prototype['host_id'] = undefined;
110
+ ListLobbies200ResponseDataInner.prototype['host_id'] = undefined;
111
111
 
112
112
  /**
113
113
  * Whether this is a server-managed lobby
114
114
  * @member {Boolean} hostless
115
115
  */
116
- ListLobbies200ResponseInner.prototype['hostless'] = undefined;
116
+ ListLobbies200ResponseDataInner.prototype['hostless'] = undefined;
117
117
 
118
118
  /**
119
119
  * Lobby ID
120
120
  * @member {Number} id
121
121
  */
122
- ListLobbies200ResponseInner.prototype['id'] = undefined;
122
+ ListLobbies200ResponseDataInner.prototype['id'] = undefined;
123
123
 
124
124
  /**
125
125
  * Hidden from public listings
126
126
  * @member {Boolean} is_hidden
127
127
  */
128
- ListLobbies200ResponseInner.prototype['is_hidden'] = undefined;
128
+ ListLobbies200ResponseDataInner.prototype['is_hidden'] = undefined;
129
129
 
130
130
  /**
131
131
  * Locked - no new joins allowed
132
132
  * @member {Boolean} is_locked
133
133
  */
134
- ListLobbies200ResponseInner.prototype['is_locked'] = undefined;
134
+ ListLobbies200ResponseDataInner.prototype['is_locked'] = undefined;
135
135
 
136
136
  /**
137
137
  * Maximum number of users allowed
138
138
  * @member {Number} max_users
139
139
  */
140
- ListLobbies200ResponseInner.prototype['max_users'] = undefined;
140
+ ListLobbies200ResponseDataInner.prototype['max_users'] = undefined;
141
141
 
142
142
  /**
143
143
  * Arbitrary metadata
144
144
  * @member {Object} metadata
145
145
  */
146
- ListLobbies200ResponseInner.prototype['metadata'] = undefined;
146
+ ListLobbies200ResponseDataInner.prototype['metadata'] = undefined;
147
147
 
148
148
  /**
149
149
  * Display title
150
150
  * @member {String} title
151
151
  */
152
- ListLobbies200ResponseInner.prototype['title'] = undefined;
153
- var _default = exports["default"] = ListLobbies200ResponseInner;
152
+ ListLobbies200ResponseDataInner.prototype['title'] = undefined;
153
+ var _default = exports["default"] = ListLobbies200ResponseDataInner;
@@ -24,18 +24,18 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
24
24
  *
25
25
  */
26
26
  /**
27
- * The LeaveLobby200Response model module.
28
- * @module model/LeaveLobby200Response
27
+ * The ListLobbies200ResponseMeta model module.
28
+ * @module model/ListLobbies200ResponseMeta
29
29
  * @version 1.0.0
30
30
  */
31
- var LeaveLobby200Response = /*#__PURE__*/function () {
31
+ var ListLobbies200ResponseMeta = /*#__PURE__*/function () {
32
32
  /**
33
- * Constructs a new <code>LeaveLobby200Response</code>.
34
- * @alias module:model/LeaveLobby200Response
33
+ * Constructs a new <code>ListLobbies200ResponseMeta</code>.
34
+ * @alias module:model/ListLobbies200ResponseMeta
35
35
  */
36
- function LeaveLobby200Response() {
37
- _classCallCheck(this, LeaveLobby200Response);
38
- LeaveLobby200Response.initialize(this);
36
+ function ListLobbies200ResponseMeta() {
37
+ _classCallCheck(this, ListLobbies200ResponseMeta);
38
+ ListLobbies200ResponseMeta.initialize(this);
39
39
  }
40
40
 
41
41
  /**
@@ -43,47 +43,83 @@ var LeaveLobby200Response = /*#__PURE__*/function () {
43
43
  * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
44
44
  * Only for internal use.
45
45
  */
46
- return _createClass(LeaveLobby200Response, null, [{
46
+ return _createClass(ListLobbies200ResponseMeta, null, [{
47
47
  key: "initialize",
48
48
  value: function initialize(obj) {}
49
49
 
50
50
  /**
51
- * Constructs a <code>LeaveLobby200Response</code> from a plain JavaScript object, optionally creating a new instance.
51
+ * Constructs a <code>ListLobbies200ResponseMeta</code> from a plain JavaScript object, optionally creating a new instance.
52
52
  * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
53
53
  * @param {Object} data The plain JavaScript object bearing properties of interest.
54
- * @param {module:model/LeaveLobby200Response} obj Optional instance to populate.
55
- * @return {module:model/LeaveLobby200Response} The populated <code>LeaveLobby200Response</code> instance.
54
+ * @param {module:model/ListLobbies200ResponseMeta} obj Optional instance to populate.
55
+ * @return {module:model/ListLobbies200ResponseMeta} The populated <code>ListLobbies200ResponseMeta</code> instance.
56
56
  */
57
57
  }, {
58
58
  key: "constructFromObject",
59
59
  value: function constructFromObject(data, obj) {
60
60
  if (data) {
61
- obj = obj || new LeaveLobby200Response();
62
- if (data.hasOwnProperty('message')) {
63
- obj['message'] = _ApiClient["default"].convertToType(data['message'], 'String');
61
+ obj = obj || new ListLobbies200ResponseMeta();
62
+ if (data.hasOwnProperty('count')) {
63
+ obj['count'] = _ApiClient["default"].convertToType(data['count'], 'Number');
64
+ }
65
+ if (data.hasOwnProperty('has_more')) {
66
+ obj['has_more'] = _ApiClient["default"].convertToType(data['has_more'], 'Boolean');
67
+ }
68
+ if (data.hasOwnProperty('page')) {
69
+ obj['page'] = _ApiClient["default"].convertToType(data['page'], 'Number');
70
+ }
71
+ if (data.hasOwnProperty('page_size')) {
72
+ obj['page_size'] = _ApiClient["default"].convertToType(data['page_size'], 'Number');
73
+ }
74
+ if (data.hasOwnProperty('total_count')) {
75
+ obj['total_count'] = _ApiClient["default"].convertToType(data['total_count'], 'Number');
76
+ }
77
+ if (data.hasOwnProperty('total_pages')) {
78
+ obj['total_pages'] = _ApiClient["default"].convertToType(data['total_pages'], 'Number');
64
79
  }
65
80
  }
66
81
  return obj;
67
82
  }
68
83
 
69
84
  /**
70
- * Validates the JSON data with respect to <code>LeaveLobby200Response</code>.
85
+ * Validates the JSON data with respect to <code>ListLobbies200ResponseMeta</code>.
71
86
  * @param {Object} data The plain JavaScript object bearing properties of interest.
72
- * @return {boolean} to indicate whether the JSON data is valid with respect to <code>LeaveLobby200Response</code>.
87
+ * @return {boolean} to indicate whether the JSON data is valid with respect to <code>ListLobbies200ResponseMeta</code>.
73
88
  */
74
89
  }, {
75
90
  key: "validateJSON",
76
91
  value: function validateJSON(data) {
77
- // ensure the json data is a string
78
- if (data['message'] && !(typeof data['message'] === 'string' || data['message'] instanceof String)) {
79
- throw new Error("Expected the field `message` to be a primitive type in the JSON string but got " + data['message']);
80
- }
81
92
  return true;
82
93
  }
83
94
  }]);
84
95
  }();
85
96
  /**
86
- * @member {String} message
97
+ * @member {Number} count
98
+ */
99
+ ListLobbies200ResponseMeta.prototype['count'] = undefined;
100
+
101
+ /**
102
+ * @member {Boolean} has_more
103
+ */
104
+ ListLobbies200ResponseMeta.prototype['has_more'] = undefined;
105
+
106
+ /**
107
+ * @member {Number} page
108
+ */
109
+ ListLobbies200ResponseMeta.prototype['page'] = undefined;
110
+
111
+ /**
112
+ * @member {Number} page_size
113
+ */
114
+ ListLobbies200ResponseMeta.prototype['page_size'] = undefined;
115
+
116
+ /**
117
+ * @member {Number} total_count
118
+ */
119
+ ListLobbies200ResponseMeta.prototype['total_count'] = undefined;
120
+
121
+ /**
122
+ * @member {Number} total_pages
87
123
  */
88
- LeaveLobby200Response.prototype['message'] = undefined;
89
- var _default = exports["default"] = LeaveLobby200Response;
124
+ ListLobbies200ResponseMeta.prototype['total_pages'] = undefined;
125
+ var _default = exports["default"] = ListLobbies200ResponseMeta;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ughuuu/game_server",
3
- "version": "1.0.151",
3
+ "version": "1.0.155",
4
4
  "description": "API for Game Server application ## Authentication This API uses JWT (JSON Web Tokens) with access and refresh tokens: ### Getting Tokens - **Email/Password**: POST to `/api/v1/login` with email and password - **Discord OAuth**: Use `/api/v1/auth/discord` flow - **Google OAuth**: Use `/api/v1/auth/google` flow - **Facebook OAuth**: Use `/api/v1/auth/facebook` flow - **Apple Sign In**: Use `/auth/apple` browser flow (API flow not yet implemented) Both methods return: - `access_token` - Short-lived (15 min), use for API requests - `refresh_token` - Long-lived (30 days), use to get new access tokens ### Using Tokens Include the access token in the Authorization header: ``` Authorization: Bearer <access_token> ``` ### Refreshing Tokens When your access token expires, use POST `/api/v1/refresh` with your refresh token to get a new access token. ## Endpoints All API endpoints are under `/api/v1` ",
5
5
  "license": "Unlicense",
6
6
  "main": "dist/index.js",