@xmobitea/gn-typescript-client 2.6.8 → 2.6.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. package/LICENSE +198 -5
  2. package/dist/gearn.js.client.js +3 -11
  3. package/dist/gearn.js.client.min.js +1 -1
  4. package/dist/index.js +3 -11
  5. package/dist/runtime/entity/models/CharacterPlayerModels.d.ts +0 -1
  6. package/dist/runtime/entity/models/DashboardModels.d.ts +7 -7
  7. package/dist/runtime/entity/models/GroupModels.d.ts +0 -1
  8. package/dist/runtime/entity/models/MultiplayerModels.d.ts +1 -1
  9. package/package.json +2 -2
  10. package/responseModel/chatgpt/Authenticate.json +724 -0
  11. package/responseModel/chatgpt/CharacterPlayer.json +1890 -0
  12. package/responseModel/chatgpt/CloudScript.json +254 -0
  13. package/responseModel/chatgpt/Content.json +273 -0
  14. package/responseModel/chatgpt/Dashboard.json +4110 -0
  15. package/responseModel/chatgpt/GamePlayer.json +2306 -0
  16. package/responseModel/chatgpt/Generic.json +253 -0
  17. package/responseModel/chatgpt/Group.json +1509 -0
  18. package/responseModel/chatgpt/Inventory.json +1211 -0
  19. package/responseModel/chatgpt/MasterPlayer.json +3801 -0
  20. package/responseModel/chatgpt/Multiplayer.json +634 -0
  21. package/responseModel/chatgpt/StoreInventory.json +1099 -0
  22. package/responseModel/clients/AuthenticateModels.json +271 -0
  23. package/responseModel/clients/CharacterPlayerModels.json +792 -0
  24. package/responseModel/clients/CloudScriptModels.json +191 -0
  25. package/responseModel/clients/ContentModels.json +178 -0
  26. package/responseModel/clients/DashboardModels.json +5423 -0
  27. package/responseModel/clients/GamePlayerModels.json +781 -0
  28. package/responseModel/clients/GenericModels.json +344 -0
  29. package/responseModel/clients/GroupModels.json +705 -0
  30. package/responseModel/clients/InventoryModels.json +568 -0
  31. package/responseModel/clients/MasterPlayerModels.json +1281 -0
  32. package/responseModel/clients/MultiplayerModels.json +439 -0
  33. package/responseModel/clients/StoreInventoryModels.json +971 -0
  34. package/responseModel/finalChatgpt/Authenticate.json +1475 -0
  35. package/responseModel/finalChatgpt/CharacterPlayer.json +4104 -0
  36. package/responseModel/finalChatgpt/CloudScript.json +515 -0
  37. package/responseModel/finalChatgpt/Content.json +536 -0
  38. package/responseModel/finalChatgpt/Dashboard.json +6712 -0
  39. package/responseModel/finalChatgpt/GamePlayer.json +5142 -0
  40. package/responseModel/finalChatgpt/Generic.json +333 -0
  41. package/responseModel/finalChatgpt/Group.json +3232 -0
  42. package/responseModel/finalChatgpt/Inventory.json +2606 -0
  43. package/responseModel/finalChatgpt/MasterPlayer.json +8385 -0
  44. package/responseModel/finalChatgpt/Multiplayer.json +1196 -0
  45. package/responseModel/finalChatgpt/StoreInventory.json +2085 -0
  46. package/responseModel/finals/Authenticate.json +1460 -0
  47. package/responseModel/finals/CharacterPlayer.json +3639 -0
  48. package/responseModel/finals/CloudScript.json +465 -0
  49. package/responseModel/finals/Content.json +479 -0
  50. package/responseModel/finals/Dashboard.json +6718 -0
  51. package/responseModel/finals/GamePlayer.json +4291 -0
  52. package/responseModel/finals/Generic.json +345 -0
  53. package/responseModel/finals/Group.json +2885 -0
  54. package/responseModel/finals/Inventory.json +2309 -0
  55. package/responseModel/finals/MasterPlayer.json +7018 -0
  56. package/responseModel/finals/Multiplayer.json +1082 -0
  57. package/responseModel/finals/StoreInventory.json +1979 -0
  58. package/responseModel/finalsShort/Authenticate.json +723 -0
  59. package/responseModel/finalsShort/CharacterPlayer.json +1889 -0
  60. package/responseModel/finalsShort/CloudScript.json +253 -0
  61. package/responseModel/finalsShort/Content.json +272 -0
  62. package/responseModel/finalsShort/Dashboard.json +4109 -0
  63. package/responseModel/finalsShort/GamePlayer.json +2305 -0
  64. package/responseModel/finalsShort/Generic.json +252 -0
  65. package/responseModel/finalsShort/Group.json +1508 -0
  66. package/responseModel/finalsShort/Inventory.json +1210 -0
  67. package/responseModel/finalsShort/MasterPlayer.json +3800 -0
  68. package/responseModel/finalsShort/Multiplayer.json +633 -0
  69. package/responseModel/finalsShort/StoreInventory.json +1098 -0
  70. package/responseModel/operationResponse/AuthenticateResponseModels.json +77 -0
  71. package/responseModel/operationResponse/CharacterPlayerResponseModels.json +217 -0
  72. package/responseModel/operationResponse/CloudScriptResponseModels.json +25 -0
  73. package/responseModel/operationResponse/ContentResponseModels.json +33 -0
  74. package/responseModel/operationResponse/DashboardResponseModels.json +109 -0
  75. package/responseModel/operationResponse/GamePlayerResponseModels.json +213 -0
  76. package/responseModel/operationResponse/GroupResponseModels.json +165 -0
  77. package/responseModel/operationResponse/InventoryResponseModels.json +141 -0
  78. package/responseModel/operationResponse/MasterPlayerResponseModels.json +349 -0
  79. package/responseModel/operationResponse/MultiplayerResponseModels.json +45 -0
  80. package/responseModel/operationResponse/StoreInventoryResponseModels.json +61 -0
  81. package/responseModel/servers/Authenticate.json +1328 -0
  82. package/responseModel/servers/CharacterPlayer.json +3199 -0
  83. package/responseModel/servers/CloudScript.json +278 -0
  84. package/responseModel/servers/Content.json +324 -0
  85. package/responseModel/servers/GamePlayer.json +3844 -0
  86. package/responseModel/servers/Group.json +2454 -0
  87. package/responseModel/servers/Inventory.json +1964 -0
  88. package/responseModel/servers/MasterAdmin.json +5569 -0
  89. package/responseModel/servers/MasterPlayer.json +5924 -0
  90. package/responseModel/servers/Multiplayer.json +545 -0
  91. package/responseModel/servers/StoreInventory.json +1290 -0
@@ -0,0 +1,191 @@
1
+ {
2
+ "path": "CloudScriptModels",
3
+ "models": [
4
+ {
5
+ "name": "AddFunctionResponseData",
6
+ "details": [
7
+ {
8
+ "code": "Version",
9
+ "description": "",
10
+ "optional": false,
11
+ "type": "string",
12
+ "gnType": "String",
13
+ "conditions": {}
14
+ },
15
+ {
16
+ "code": "ErrorMessage",
17
+ "description": "",
18
+ "optional": false,
19
+ "type": "string",
20
+ "gnType": "String",
21
+ "conditions": {}
22
+ }
23
+ ],
24
+ "extends": null,
25
+ "description": ""
26
+ },
27
+ {
28
+ "name": "EditFunctionResponseData",
29
+ "details": [
30
+ {
31
+ "code": "ErrorMessage",
32
+ "description": "",
33
+ "optional": false,
34
+ "type": "string",
35
+ "gnType": "String",
36
+ "conditions": {}
37
+ }
38
+ ],
39
+ "extends": null,
40
+ "description": ""
41
+ },
42
+ {
43
+ "name": "ExecuteFunctionResponseData",
44
+ "details": [
45
+ {
46
+ "code": "Status",
47
+ "description": "",
48
+ "optional": false,
49
+ "type": "number",
50
+ "gnType": "Number",
51
+ "conditions": {}
52
+ },
53
+ {
54
+ "code": "ExecutionTimeInMs",
55
+ "description": "",
56
+ "optional": false,
57
+ "type": "number",
58
+ "gnType": "Number",
59
+ "conditions": {}
60
+ },
61
+ {
62
+ "code": "MemoryUsedInBytes",
63
+ "description": "",
64
+ "optional": false,
65
+ "type": "number",
66
+ "gnType": "Number",
67
+ "conditions": {}
68
+ },
69
+ {
70
+ "code": "FunctionResult",
71
+ "description": "",
72
+ "optional": false,
73
+ "type": "any",
74
+ "gnType": "DataMember",
75
+ "conditions": {}
76
+ },
77
+ {
78
+ "code": "ErrorMessage",
79
+ "description": "",
80
+ "optional": false,
81
+ "type": "string",
82
+ "gnType": "String",
83
+ "conditions": {}
84
+ },
85
+ {
86
+ "code": "FunctionLogs",
87
+ "description": "",
88
+ "optional": false,
89
+ "type": "string",
90
+ "gnType": "GNArray",
91
+ "conditions": {}
92
+ }
93
+ ],
94
+ "extends": null,
95
+ "description": ""
96
+ },
97
+ {
98
+ "name": "GetFunctionResponseData",
99
+ "details": [
100
+ {
101
+ "code": "Script",
102
+ "description": "",
103
+ "optional": false,
104
+ "type": "string",
105
+ "gnType": "String",
106
+ "conditions": {}
107
+ },
108
+ {
109
+ "code": "CanExecute",
110
+ "description": "",
111
+ "optional": false,
112
+ "type": "boolean",
113
+ "gnType": "Boolean",
114
+ "conditions": {}
115
+ },
116
+ {
117
+ "code": "IsLive",
118
+ "description": "",
119
+ "optional": false,
120
+ "type": "boolean",
121
+ "gnType": "Boolean",
122
+ "conditions": {}
123
+ },
124
+ {
125
+ "code": "TsCreate",
126
+ "description": "",
127
+ "optional": false,
128
+ "type": "number",
129
+ "gnType": "Number",
130
+ "conditions": {}
131
+ }
132
+ ],
133
+ "extends": null,
134
+ "description": ""
135
+ },
136
+ {
137
+ "name": "FunctionResponseData",
138
+ "details": [
139
+ {
140
+ "code": "Version",
141
+ "description": "",
142
+ "optional": false,
143
+ "type": "string",
144
+ "gnType": "String",
145
+ "conditions": {}
146
+ },
147
+ {
148
+ "code": "CanExecute",
149
+ "description": "",
150
+ "optional": false,
151
+ "type": "boolean",
152
+ "gnType": "Boolean",
153
+ "conditions": {}
154
+ }
155
+ ],
156
+ "extends": null,
157
+ "description": ""
158
+ },
159
+ {
160
+ "name": "GetFunctionsResponseData",
161
+ "details": [
162
+ {
163
+ "code": "Results",
164
+ "description": "",
165
+ "optional": false,
166
+ "type": "FunctionResponseData",
167
+ "gnType": "GNArray",
168
+ "conditions": {}
169
+ },
170
+ {
171
+ "code": "LatestVersion",
172
+ "description": "",
173
+ "optional": false,
174
+ "type": "string",
175
+ "gnType": "String",
176
+ "conditions": {}
177
+ },
178
+ {
179
+ "code": "LiveLatestVersion",
180
+ "description": "",
181
+ "optional": false,
182
+ "type": "string",
183
+ "gnType": "String",
184
+ "conditions": {}
185
+ }
186
+ ],
187
+ "extends": null,
188
+ "description": ""
189
+ }
190
+ ]
191
+ }
@@ -0,0 +1,178 @@
1
+ {
2
+ "path": "ContentModels",
3
+ "models": [
4
+ {
5
+ "name": "ContentDataParam",
6
+ "details": [
7
+ {
8
+ "code": "Key",
9
+ "description": "",
10
+ "optional": false,
11
+ "type": "string",
12
+ "gnType": "String",
13
+ "conditions": {
14
+ "mustNonNull": true,
15
+ "minLength": 2,
16
+ "maxLength": 32
17
+ }
18
+ },
19
+ {
20
+ "code": "Data",
21
+ "description": "",
22
+ "optional": false,
23
+ "type": "GNHashtable",
24
+ "gnType": "GNHashtable",
25
+ "conditions": {}
26
+ }
27
+ ],
28
+ "extends": null,
29
+ "description": ""
30
+ },
31
+ {
32
+ "name": "FileIdUploadResponseData",
33
+ "details": [
34
+ {
35
+ "code": "FileId",
36
+ "description": "",
37
+ "optional": false,
38
+ "type": "string",
39
+ "gnType": "String",
40
+ "conditions": {}
41
+ }
42
+ ],
43
+ "extends": null,
44
+ "description": ""
45
+ },
46
+ {
47
+ "name": "GetContentDataResponseData",
48
+ "details": [
49
+ {
50
+ "code": "Configs",
51
+ "description": "",
52
+ "optional": false,
53
+ "type": "ContentDataParam",
54
+ "gnType": "GNArray",
55
+ "conditions": {
56
+ "mustNonNull": true
57
+ }
58
+ }
59
+ ],
60
+ "extends": null,
61
+ "description": ""
62
+ },
63
+ {
64
+ "name": "GetFileUploadInfoListResponseData",
65
+ "details": [
66
+ {
67
+ "code": "Results",
68
+ "description": "",
69
+ "optional": false,
70
+ "type": "FileIdUploadResponseData",
71
+ "gnType": "GNArray",
72
+ "conditions": {}
73
+ }
74
+ ],
75
+ "extends": null,
76
+ "description": ""
77
+ },
78
+ {
79
+ "name": "FileUploadItem",
80
+ "details": [
81
+ {
82
+ "code": "MimeType",
83
+ "description": "",
84
+ "optional": false,
85
+ "type": "string",
86
+ "gnType": "String",
87
+ "conditions": {}
88
+ },
89
+ {
90
+ "code": "Size",
91
+ "description": "",
92
+ "optional": false,
93
+ "type": "number",
94
+ "gnType": "Number",
95
+ "conditions": {}
96
+ },
97
+ {
98
+ "code": "FolderFileName",
99
+ "description": "",
100
+ "optional": false,
101
+ "type": "string",
102
+ "gnType": "String",
103
+ "conditions": {}
104
+ }
105
+ ],
106
+ "extends": null,
107
+ "description": ""
108
+ },
109
+ {
110
+ "name": "GetFileUploadInfoResponseData",
111
+ "details": [
112
+ {
113
+ "code": "FileName",
114
+ "description": "",
115
+ "optional": false,
116
+ "type": "string",
117
+ "gnType": "String",
118
+ "conditions": {}
119
+ },
120
+ {
121
+ "code": "TsCreate",
122
+ "description": "",
123
+ "optional": false,
124
+ "type": "number",
125
+ "gnType": "Number",
126
+ "conditions": {}
127
+ },
128
+ {
129
+ "code": "RemoveStatus",
130
+ "description": "",
131
+ "optional": false,
132
+ "type": "GenericModels.RemoveStatusItem",
133
+ "gnType": "GNHashtable",
134
+ "conditions": {}
135
+ },
136
+ {
137
+ "code": "TsUploadExpire",
138
+ "description": "",
139
+ "optional": true,
140
+ "type": "number",
141
+ "gnType": "Number",
142
+ "conditions": {}
143
+ },
144
+ {
145
+ "code": "FileUpload",
146
+ "description": "",
147
+ "optional": true,
148
+ "type": "FileUploadItem",
149
+ "gnType": "GNHashtable",
150
+ "conditions": {}
151
+ }
152
+ ],
153
+ "extends": "FileIdUploadResponseData",
154
+ "description": ""
155
+ },
156
+ {
157
+ "name": "RequestDownloadFileUploadInfoResponseData",
158
+ "details": [
159
+ {
160
+ "code": "DownloadToken",
161
+ "description": "",
162
+ "optional": false,
163
+ "type": "string",
164
+ "gnType": "String",
165
+ "conditions": {}
166
+ }
167
+ ],
168
+ "extends": null,
169
+ "description": ""
170
+ },
171
+ {
172
+ "name": "EmptyResponseData",
173
+ "details": [],
174
+ "extends": null,
175
+ "description": ""
176
+ }
177
+ ]
178
+ }