@xmobitea/gn-typescript-client 2.5.1-esnext → 2.5.2-esnext
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/dist/index.d.ts +4 -2
- package/dist/index.js +6 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3,13 +3,13 @@ import { Action1 } from "./runtime/common/Action1";
|
|
|
3
3
|
import { Action2 } from "./runtime/common/Action2";
|
|
4
4
|
import { Action3 } from "./runtime/common/Action3";
|
|
5
5
|
import { Action4 } from "./runtime/common/Action4";
|
|
6
|
-
import { GNHashtableBuilder, GNHashtable, GNArrayBuilder, GNArray } from "./runtime/common/GNData";
|
|
6
|
+
import { GNHashtableBuilder, GNHashtable, GNArrayBuilder, GNArray, GNData } from "./runtime/common/GNData";
|
|
7
7
|
export { Action0 };
|
|
8
8
|
export { Action1 };
|
|
9
9
|
export { Action2 };
|
|
10
10
|
export { Action3 };
|
|
11
11
|
export { Action4 };
|
|
12
|
-
export { GNHashtableBuilder, GNHashtable, GNArrayBuilder, GNArray };
|
|
12
|
+
export { GNHashtableBuilder, GNHashtable, GNArrayBuilder, GNArray, GNData };
|
|
13
13
|
import { GNServerSettings, GNServerSettingsOptions } from "./runtime/config/GNServerSettings";
|
|
14
14
|
export { GNServerSettings, GNServerSettingsOptions };
|
|
15
15
|
import { FriendStatus } from "./runtime/constant/enumType/FriendStatus";
|
|
@@ -42,6 +42,8 @@ export { RequestType };
|
|
|
42
42
|
export { PushPlatformType };
|
|
43
43
|
export { StoreReceiveType };
|
|
44
44
|
export { ExecuteResponseStatus };
|
|
45
|
+
import { AuthenticateStatus } from "./runtime/networking/AuthenticateStatus";
|
|
46
|
+
export { AuthenticateStatus };
|
|
45
47
|
import { GNErrorCode } from "./runtime/constant/errorCode/GNErrorCode";
|
|
46
48
|
export { GNErrorCode };
|
|
47
49
|
import { GNParameterCode } from "./runtime/constant/parameterCode/GNParameterCode";
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { GNHashtableBuilder, GNHashtable, GNArrayBuilder, GNArray } from "./runtime/common/GNData";
|
|
2
|
-
export { GNHashtableBuilder, GNHashtable, GNArrayBuilder, GNArray };
|
|
1
|
+
import { GNHashtableBuilder, GNHashtable, GNArrayBuilder, GNArray, GNData } from "./runtime/common/GNData";
|
|
2
|
+
export { GNHashtableBuilder, GNHashtable, GNArrayBuilder, GNArray, GNData };
|
|
3
3
|
import { GNServerSettings } from "./runtime/config/GNServerSettings";
|
|
4
4
|
export { GNServerSettings };
|
|
5
5
|
import { FriendStatus } from "./runtime/constant/enumType/FriendStatus";
|
|
@@ -32,6 +32,8 @@ export { RequestType };
|
|
|
32
32
|
export { PushPlatformType };
|
|
33
33
|
export { StoreReceiveType };
|
|
34
34
|
export { ExecuteResponseStatus };
|
|
35
|
+
import { AuthenticateStatus } from "./runtime/networking/AuthenticateStatus";
|
|
36
|
+
export { AuthenticateStatus };
|
|
35
37
|
import { GNErrorCode } from "./runtime/constant/errorCode/GNErrorCode";
|
|
36
38
|
export { GNErrorCode };
|
|
37
39
|
import { GNParameterCode } from "./runtime/constant/parameterCode/GNParameterCode";
|
|
@@ -213,7 +215,9 @@ const gn = {
|
|
|
213
215
|
GNHashtable,
|
|
214
216
|
GNArrayBuilder,
|
|
215
217
|
GNArray,
|
|
218
|
+
GNData,
|
|
216
219
|
GNServerSettings,
|
|
220
|
+
AuthenticateStatus,
|
|
217
221
|
FriendStatus,
|
|
218
222
|
GoogleLoginType,
|
|
219
223
|
GroupStatus,
|