@xmobitea/gn-typescript-client 2.0.10 → 2.0.11

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 (74) hide show
  1. package/dist/gn.js.client.js +2840 -875
  2. package/dist/gn.js.client.min.js +1 -1
  3. package/dist/index.d.ts +6 -6
  4. package/dist/index.js +1865 -535
  5. package/dist/runtime/GNNetwork.d.ts +2 -0
  6. package/dist/runtime/GNNetworkCharacterPlayerApi.d.ts +3 -0
  7. package/dist/runtime/GNNetworkGamePlayerApi.d.ts +3 -0
  8. package/dist/runtime/GNNetworkGroupApi.d.ts +3 -0
  9. package/dist/runtime/GNNetworkMasterPlayerApi.d.ts +3 -0
  10. package/dist/runtime/GNNetworkMultiplayerApi.d.ts +36 -0
  11. package/dist/runtime/constant/OperationCode.d.ts +9 -0
  12. package/dist/runtime/constant/enumType/FriendStatus.d.ts +4 -4
  13. package/dist/runtime/constant/enumType/GroupStatus.d.ts +4 -4
  14. package/dist/runtime/constant/enumType/InvalidMemberType.d.ts +15 -15
  15. package/dist/runtime/constant/enumType/ItemType.d.ts +2 -2
  16. package/dist/runtime/constant/enumType/MatchmakingMemberStatus.d.ts +5 -0
  17. package/dist/runtime/constant/enumType/MatchmakingTicketStatus.d.ts +7 -0
  18. package/dist/runtime/constant/enumType/OwnerType.d.ts +4 -4
  19. package/dist/runtime/constant/enumType/PermissionDataItem.d.ts +2 -2
  20. package/dist/runtime/constant/enumType/RequestType.d.ts +2 -1
  21. package/dist/runtime/constant/errorCode/GNErrorCode.d.ts +7 -0
  22. package/dist/runtime/constant/parameterCode/GNParameterCode.d.ts +54 -0
  23. package/dist/runtime/entity/OperationHelper.d.ts +2 -2
  24. package/dist/runtime/entity/models/AuthenticateModels.d.ts +2 -1
  25. package/dist/runtime/entity/models/AuthenticateRequestModels.d.ts +3 -3
  26. package/dist/runtime/entity/models/AuthenticateResponseModels.d.ts +1 -1
  27. package/dist/runtime/entity/models/CharacterPlayerModels.d.ts +15 -1
  28. package/dist/runtime/entity/models/CharacterPlayerRequestModels.d.ts +18 -3
  29. package/dist/runtime/entity/models/CharacterPlayerResponseModels.d.ts +7 -4
  30. package/dist/runtime/entity/models/ContentModels.d.ts +1 -1
  31. package/dist/runtime/entity/models/ContentRequestModels.d.ts +3 -3
  32. package/dist/runtime/entity/models/ContentResponseModels.d.ts +1 -1
  33. package/dist/runtime/entity/models/DashboardModels.d.ts +62 -0
  34. package/dist/runtime/entity/models/DashboardRequestModels.d.ts +3 -3
  35. package/dist/runtime/entity/models/DashboardResponseModels.d.ts +1 -1
  36. package/dist/runtime/entity/models/GamePlayerModels.d.ts +14 -0
  37. package/dist/runtime/entity/models/GamePlayerRequestModels.d.ts +18 -3
  38. package/dist/runtime/entity/models/GamePlayerResponseModels.d.ts +4 -1
  39. package/dist/runtime/entity/models/GroupModels.d.ts +14 -0
  40. package/dist/runtime/entity/models/GroupRequestModels.d.ts +18 -3
  41. package/dist/runtime/entity/models/GroupResponseModels.d.ts +4 -1
  42. package/dist/runtime/entity/models/InventoryRequestModels.d.ts +3 -3
  43. package/dist/runtime/entity/models/InventoryResponseModels.d.ts +1 -1
  44. package/dist/runtime/entity/models/MasterPlayerModels.d.ts +16 -1
  45. package/dist/runtime/entity/models/MasterPlayerRequestModels.d.ts +18 -3
  46. package/dist/runtime/entity/models/MasterPlayerResponseModels.d.ts +4 -1
  47. package/dist/runtime/entity/models/MultiplayerModels.d.ts +130 -0
  48. package/dist/runtime/entity/models/MultiplayerRequestModels.d.ts +126 -0
  49. package/dist/runtime/entity/models/MultiplayerResponseModels.d.ts +28 -0
  50. package/dist/runtime/entity/models/StoreInventoryRequestModels.d.ts +3 -3
  51. package/dist/runtime/entity/models/StoreInventoryResponseModels.d.ts +1 -1
  52. package/dist/runtime/entity/request/CustomOperationRequest.d.ts +1 -1
  53. package/dist/runtime/entity/response/CustomOperationResponse.d.ts +1 -1
  54. package/dist/runtime/networking/IPeer.d.ts +3 -3
  55. package/dist/runtime/networking/NetworkingPeer.d.ts +2 -2
  56. package/dist/runtime/networking/OperationPending.d.ts +3 -3
  57. package/dist/runtime/networking/PeerBase.d.ts +2 -2
  58. package/dist/runtime/networking/handler/OnCharacterPlayerFriendUpdateEventHandler.d.ts +3 -3
  59. package/dist/runtime/networking/handler/OnCharacterPlayerGroupUpdateEventHandler.d.ts +3 -3
  60. package/dist/runtime/networking/handler/OnGamePlayerFriendUpdateEventHandler.d.ts +3 -3
  61. package/dist/runtime/networking/handler/OnGamePlayerGroupUpdateEventHandler.d.ts +3 -3
  62. package/dist/runtime/networking/handler/OnGroupMemberUpdateEventHandler.d.ts +3 -3
  63. package/dist/runtime/networking/handler/OnGroupMessageUpdateEventHandler.d.ts +3 -3
  64. package/dist/runtime/networking/http/HttpPeer.d.ts +3 -3
  65. package/dist/runtime/networking/http/NetworkingHttpPeerBase.d.ts +2 -2
  66. package/dist/runtime/networking/http/NetworkingPeerAxiosRequest.d.ts +2 -2
  67. package/dist/runtime/networking/socket/NetworkingPeerSocketIOClient.d.ts +5 -5
  68. package/dist/runtime/networking/socket/NetworkingSocketPeerBase.d.ts +6 -6
  69. package/dist/runtime/networking/socket/SocketPeer.d.ts +7 -7
  70. package/dist/runtime/typescript/ServiceUpdate.d.ts +1 -1
  71. package/package.json +12 -12
  72. package/dist/runtime/constant/enumType/LoginType.d.ts +0 -10
  73. package/dist/runtime/constant/enumType/StatisticsAggregationMethod.d.ts +0 -6
  74. package/dist/runtime/constant/enumType/UserRoleType.d.ts +0 -8

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.