com.beamable 0.0.0-PREVIEW.NIGHTLY-202512090001
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/CHANGELOG.md +1521 -0
- package/CHANGELOG.md.meta +7 -0
- package/Common/.idea/.idea.Common.dir/.idea/encodings.xml +4 -0
- package/Common/.idea/.idea.Common.dir/.idea/indexLayout.xml +8 -0
- package/Common/.idea/.idea.Common.dir/.idea/vcs.xml +6 -0
- package/Common/README.md +13 -0
- package/Common/README.md.meta +7 -0
- package/Common/Runtime/AgnosticAttribute.cs +53 -0
- package/Common/Runtime/AgnosticAttribute.cs.meta +11 -0
- package/Common/Runtime/Api/AliasHelper.cs +56 -0
- package/Common/Runtime/Api/AliasHelper.cs.meta +11 -0
- package/Common/Runtime/Api/Analytics/AnalyticsEventRequest.cs +51 -0
- package/Common/Runtime/Api/Analytics/AnalyticsEventRequest.cs.meta +11 -0
- package/Common/Runtime/Api/Analytics/AnalyticsService.cs +99 -0
- package/Common/Runtime/Api/Analytics/AnalyticsService.cs.meta +11 -0
- package/Common/Runtime/Api/Analytics/IBeamAnalyticsService.cs +34 -0
- package/Common/Runtime/Api/Analytics/IBeamAnalyticsService.cs.meta +11 -0
- package/Common/Runtime/Api/Analytics/Models/CoreEvent.cs +47 -0
- package/Common/Runtime/Api/Analytics/Models/CoreEvent.cs.meta +11 -0
- package/Common/Runtime/Api/Analytics/Models/IAnalyticsEvent.cs +23 -0
- package/Common/Runtime/Api/Analytics/Models/IAnalyticsEvent.cs.meta +11 -0
- package/Common/Runtime/Api/Analytics/Models/SampleCustomEvent.cs +31 -0
- package/Common/Runtime/Api/Analytics/Models/SampleCustomEvent.cs.meta +11 -0
- package/Common/Runtime/Api/Analytics/Models.meta +11 -0
- package/Common/Runtime/Api/Analytics.meta +11 -0
- package/Common/Runtime/Api/Announcements/AbsAnnouncementsApi.cs +69 -0
- package/Common/Runtime/Api/Announcements/AbsAnnouncementsApi.cs.meta +11 -0
- package/Common/Runtime/Api/Announcements/IAnnouncementsApi.cs +388 -0
- package/Common/Runtime/Api/Announcements/IAnnouncementsApi.cs.meta +11 -0
- package/Common/Runtime/Api/Announcements.meta +11 -0
- package/Common/Runtime/Api/Auth/AuthApi.cs +981 -0
- package/Common/Runtime/Api/Auth/AuthApi.cs.meta +11 -0
- package/Common/Runtime/Api/Auth/IAuthApi.cs +344 -0
- package/Common/Runtime/Api/Auth/IAuthApi.cs.meta +11 -0
- package/Common/Runtime/Api/Auth.meta +11 -0
- package/Common/Runtime/Api/Calendars/AbsCalendarApi.cs +42 -0
- package/Common/Runtime/Api/Calendars/AbsCalendarApi.cs.meta +11 -0
- package/Common/Runtime/Api/Calendars/ICalendarApi.cs +121 -0
- package/Common/Runtime/Api/Calendars/ICalendarApi.cs.meta +11 -0
- package/Common/Runtime/Api/Calendars.meta +11 -0
- package/Common/Runtime/Api/Chat/ChatApi.cs +71 -0
- package/Common/Runtime/Api/Chat/ChatApi.cs.meta +11 -0
- package/Common/Runtime/Api/Chat/IChatApi.cs +184 -0
- package/Common/Runtime/Api/Chat/IChatApi.cs.meta +11 -0
- package/Common/Runtime/Api/Chat.meta +11 -0
- package/Common/Runtime/Api/CloudData/CloudDataApi.cs +127 -0
- package/Common/Runtime/Api/CloudData/CloudDataApi.cs.meta +11 -0
- package/Common/Runtime/Api/CloudData/ICloudDataApi.cs +43 -0
- package/Common/Runtime/Api/CloudData/ICloudDataApi.cs.meta +11 -0
- package/Common/Runtime/Api/CloudData.meta +11 -0
- package/Common/Runtime/Api/CometClientData.cs +70 -0
- package/Common/Runtime/Api/CometClientData.cs.meta +11 -0
- package/Common/Runtime/Api/Commerce/ICommerceApi.cs +11 -0
- package/Common/Runtime/Api/Commerce/ICommerceApi.cs.meta +11 -0
- package/Common/Runtime/Api/Commerce.meta +11 -0
- package/Common/Runtime/Api/Content/IContentApi.cs +168 -0
- package/Common/Runtime/Api/Content/IContentApi.cs.meta +11 -0
- package/Common/Runtime/Api/Content.meta +11 -0
- package/Common/Runtime/Api/Events/AbsEventsApi.cs +50 -0
- package/Common/Runtime/Api/Events/AbsEventsApi.cs.meta +11 -0
- package/Common/Runtime/Api/Events/IEventsApi.cs +166 -0
- package/Common/Runtime/Api/Events/IEventsApi.cs.meta +11 -0
- package/Common/Runtime/Api/Events.meta +11 -0
- package/Common/Runtime/Api/Groups/GroupsApi.cs +762 -0
- package/Common/Runtime/Api/Groups/GroupsApi.cs.meta +11 -0
- package/Common/Runtime/Api/Groups/IGroupsApi.cs +211 -0
- package/Common/Runtime/Api/Groups/IGroupsApi.cs.meta +11 -0
- package/Common/Runtime/Api/Groups.meta +11 -0
- package/Common/Runtime/Api/IAccessToken.cs +49 -0
- package/Common/Runtime/Api/IAccessToken.cs.meta +11 -0
- package/Common/Runtime/Api/IBeamableFilesystemAccessor.cs +14 -0
- package/Common/Runtime/Api/IBeamableFilesystemAccessor.cs.meta +11 -0
- package/Common/Runtime/Api/IBeamableRequester.cs +770 -0
- package/Common/Runtime/Api/IBeamableRequester.cs.meta +11 -0
- package/Common/Runtime/Api/IConnectivityChecker.cs +50 -0
- package/Common/Runtime/Api/IConnectivityChecker.cs.meta +11 -0
- package/Common/Runtime/Api/IHasBeamableRequester.cs +13 -0
- package/Common/Runtime/Api/IHasBeamableRequester.cs.meta +11 -0
- package/Common/Runtime/Api/IServiceRoutingStrategy.cs +124 -0
- package/Common/Runtime/Api/IServiceRoutingStrategy.cs.meta +11 -0
- package/Common/Runtime/Api/ISupportsGet.cs +160 -0
- package/Common/Runtime/Api/ISupportsGet.cs.meta +11 -0
- package/Common/Runtime/Api/IUserContext.cs +23 -0
- package/Common/Runtime/Api/IUserContext.cs.meta +11 -0
- package/Common/Runtime/Api/IUserDataCache.cs +89 -0
- package/Common/Runtime/Api/IUserDataCache.cs.meta +11 -0
- package/Common/Runtime/Api/Inventory/IInventoryApi.cs +796 -0
- package/Common/Runtime/Api/Inventory/IInventoryApi.cs.meta +11 -0
- package/Common/Runtime/Api/Inventory/InventoryApi.cs +308 -0
- package/Common/Runtime/Api/Inventory/InventoryApi.cs.meta +11 -0
- package/Common/Runtime/Api/Inventory/InventoryUpdateBuilder.cs +712 -0
- package/Common/Runtime/Api/Inventory/InventoryUpdateBuilder.cs.meta +11 -0
- package/Common/Runtime/Api/Inventory.meta +11 -0
- package/Common/Runtime/Api/Leaderboards/ILeaderboardApi.cs +509 -0
- package/Common/Runtime/Api/Leaderboards/ILeaderboardApi.cs.meta +11 -0
- package/Common/Runtime/Api/Leaderboards/LeaderboardApi.cs +237 -0
- package/Common/Runtime/Api/Leaderboards/LeaderboardApi.cs.meta +11 -0
- package/Common/Runtime/Api/Leaderboards.meta +11 -0
- package/Common/Runtime/Api/Lobbies/ILobbyApi.cs +154 -0
- package/Common/Runtime/Api/Lobbies/ILobbyApi.cs.meta +11 -0
- package/Common/Runtime/Api/Lobbies/Lobby.cs +93 -0
- package/Common/Runtime/Api/Lobbies/Lobby.cs.meta +11 -0
- package/Common/Runtime/Api/Lobbies/LobbyNotification.cs +16 -0
- package/Common/Runtime/Api/Lobbies/LobbyNotification.cs.meta +11 -0
- package/Common/Runtime/Api/Lobbies/LobbyPlayer.cs +59 -0
- package/Common/Runtime/Api/Lobbies/LobbyPlayer.cs.meta +11 -0
- package/Common/Runtime/Api/Lobbies/LobbyRestriction.cs +20 -0
- package/Common/Runtime/Api/Lobbies/LobbyRestriction.cs.meta +11 -0
- package/Common/Runtime/Api/Lobbies/LobbyService.cs +191 -0
- package/Common/Runtime/Api/Lobbies/LobbyService.cs.meta +11 -0
- package/Common/Runtime/Api/Lobbies/LobbyUtils.cs +157 -0
- package/Common/Runtime/Api/Lobbies/LobbyUtils.cs.meta +11 -0
- package/Common/Runtime/Api/Lobbies/NotInLobby.cs +13 -0
- package/Common/Runtime/Api/Lobbies/NotInLobby.cs.meta +11 -0
- package/Common/Runtime/Api/Lobbies/Requests/AddTagsRequest.cs +37 -0
- package/Common/Runtime/Api/Lobbies/Requests/AddTagsRequest.cs.meta +11 -0
- package/Common/Runtime/Api/Lobbies/Requests/CreateLobbyRequest.cs +71 -0
- package/Common/Runtime/Api/Lobbies/Requests/CreateLobbyRequest.cs.meta +11 -0
- package/Common/Runtime/Api/Lobbies/Requests/JoinByPasscodeRequest.cs +31 -0
- package/Common/Runtime/Api/Lobbies/Requests/JoinByPasscodeRequest.cs.meta +11 -0
- package/Common/Runtime/Api/Lobbies/Requests/JoinLobbyRequest.cs +25 -0
- package/Common/Runtime/Api/Lobbies/Requests/JoinLobbyRequest.cs.meta +11 -0
- package/Common/Runtime/Api/Lobbies/Requests/LobbyQueryRequest.cs +36 -0
- package/Common/Runtime/Api/Lobbies/Requests/LobbyQueryRequest.cs.meta +11 -0
- package/Common/Runtime/Api/Lobbies/Requests/LobbyQueryResponse.cs +20 -0
- package/Common/Runtime/Api/Lobbies/Requests/LobbyQueryResponse.cs.meta +11 -0
- package/Common/Runtime/Api/Lobbies/Requests/RemoveFromLobbyRequest.cs +25 -0
- package/Common/Runtime/Api/Lobbies/Requests/RemoveFromLobbyRequest.cs.meta +11 -0
- package/Common/Runtime/Api/Lobbies/Requests/RemoveTagsRequest.cs +31 -0
- package/Common/Runtime/Api/Lobbies/Requests/RemoveTagsRequest.cs.meta +11 -0
- package/Common/Runtime/Api/Lobbies/Requests/UpdateLobbyRequest.cs +62 -0
- package/Common/Runtime/Api/Lobbies/Requests/UpdateLobbyRequest.cs.meta +11 -0
- package/Common/Runtime/Api/Lobbies/Requests.meta +11 -0
- package/Common/Runtime/Api/Lobbies.meta +11 -0
- package/Common/Runtime/Api/Mail/AbsMailApi.cs +704 -0
- package/Common/Runtime/Api/Mail/AbsMailApi.cs.meta +11 -0
- package/Common/Runtime/Api/Mail/IMailApi.cs +49 -0
- package/Common/Runtime/Api/Mail/IMailApi.cs.meta +11 -0
- package/Common/Runtime/Api/Mail.meta +11 -0
- package/Common/Runtime/Api/Notifications/INotificationService.cs +114 -0
- package/Common/Runtime/Api/Notifications/INotificationService.cs.meta +11 -0
- package/Common/Runtime/Api/Notifications/PrimitiveStringPayload.cs +14 -0
- package/Common/Runtime/Api/Notifications/PrimitiveStringPayload.cs.meta +11 -0
- package/Common/Runtime/Api/Notifications.meta +11 -0
- package/Common/Runtime/Api/Parties/IPartyApi.cs +97 -0
- package/Common/Runtime/Api/Parties/IPartyApi.cs.meta +11 -0
- package/Common/Runtime/Api/Parties/NotInParty.cs +12 -0
- package/Common/Runtime/Api/Parties/NotInParty.cs.meta +11 -0
- package/Common/Runtime/Api/Parties/Party.cs +59 -0
- package/Common/Runtime/Api/Parties/Party.cs.meta +11 -0
- package/Common/Runtime/Api/Parties/PartyNotifications.cs +55 -0
- package/Common/Runtime/Api/Parties/PartyNotifications.cs.meta +11 -0
- package/Common/Runtime/Api/Parties/PartyRestriction.cs +14 -0
- package/Common/Runtime/Api/Parties/PartyRestriction.cs.meta +11 -0
- package/Common/Runtime/Api/Parties/PartyService.cs +124 -0
- package/Common/Runtime/Api/Parties/PartyService.cs.meta +11 -0
- package/Common/Runtime/Api/Parties/Requests/CreatePartyRequest.cs +44 -0
- package/Common/Runtime/Api/Parties/Requests/CreatePartyRequest.cs.meta +11 -0
- package/Common/Runtime/Api/Parties/Requests/PartyQueryResponse.cs +20 -0
- package/Common/Runtime/Api/Parties/Requests/PartyQueryResponse.cs.meta +11 -0
- package/Common/Runtime/Api/Parties/Requests/PlayerRequest.cs +25 -0
- package/Common/Runtime/Api/Parties/Requests/PlayerRequest.cs.meta +11 -0
- package/Common/Runtime/Api/Parties/Requests/UpdatePartyRequest.cs +38 -0
- package/Common/Runtime/Api/Parties/Requests/UpdatePartyRequest.cs.meta +11 -0
- package/Common/Runtime/Api/Parties/Requests.meta +11 -0
- package/Common/Runtime/Api/Parties.meta +11 -0
- package/Common/Runtime/Api/Payments/IPaymentsApi.cs +15 -0
- package/Common/Runtime/Api/Payments/IPaymentsApi.cs.meta +11 -0
- package/Common/Runtime/Api/Payments/PaymentsApi.cs +34 -0
- package/Common/Runtime/Api/Payments/PaymentsApi.cs.meta +11 -0
- package/Common/Runtime/Api/Payments.meta +11 -0
- package/Common/Runtime/Api/Presence/IPresenceApi.cs +32 -0
- package/Common/Runtime/Api/Presence/IPresenceApi.cs.meta +11 -0
- package/Common/Runtime/Api/Presence/PresenceService.cs +165 -0
- package/Common/Runtime/Api/Presence/PresenceService.cs.meta +11 -0
- package/Common/Runtime/Api/Presence.meta +11 -0
- package/Common/Runtime/Api/Push/IPushApi.cs +10 -0
- package/Common/Runtime/Api/Push/IPushApi.cs.meta +11 -0
- package/Common/Runtime/Api/Push.meta +11 -0
- package/Common/Runtime/Api/QueryBuilder.cs +86 -0
- package/Common/Runtime/Api/QueryBuilder.cs.meta +11 -0
- package/Common/Runtime/Api/Realms/IAliasService.cs +98 -0
- package/Common/Runtime/Api/Realms/IAliasService.cs.meta +11 -0
- package/Common/Runtime/Api/Realms/IRealmApi.cs +18 -0
- package/Common/Runtime/Api/Realms/IRealmApi.cs.meta +11 -0
- package/Common/Runtime/Api/Realms/RealmService.cs +378 -0
- package/Common/Runtime/Api/Realms/RealmService.cs.meta +11 -0
- package/Common/Runtime/Api/Realms.meta +11 -0
- package/Common/Runtime/Api/SignedRequesterHelper.cs +102 -0
- package/Common/Runtime/Api/SignedRequesterHelper.cs.meta +11 -0
- package/Common/Runtime/Api/Social/ISocialApi.cs +77 -0
- package/Common/Runtime/Api/Social/ISocialApi.cs.meta +11 -0
- package/Common/Runtime/Api/Social/SocialApi.cs +329 -0
- package/Common/Runtime/Api/Social/SocialApi.cs.meta +11 -0
- package/Common/Runtime/Api/Social.meta +11 -0
- package/Common/Runtime/Api/Stats/AbsStatsApi.cs +345 -0
- package/Common/Runtime/Api/Stats/AbsStatsApi.cs.meta +11 -0
- package/Common/Runtime/Api/Stats/IStatsApi.cs +200 -0
- package/Common/Runtime/Api/Stats/IStatsApi.cs.meta +11 -0
- package/Common/Runtime/Api/Stats/StatsAccessType.cs +11 -0
- package/Common/Runtime/Api/Stats/StatsAccessType.cs.meta +11 -0
- package/Common/Runtime/Api/Stats/StatsApiHelper.cs +41 -0
- package/Common/Runtime/Api/Stats/StatsApiHelper.cs.meta +11 -0
- package/Common/Runtime/Api/Stats/StatsDomainType.cs +11 -0
- package/Common/Runtime/Api/Stats/StatsDomainType.cs.meta +11 -0
- package/Common/Runtime/Api/Stats.meta +11 -0
- package/Common/Runtime/Api/Tournaments/ITournamentApi.cs +626 -0
- package/Common/Runtime/Api/Tournaments/ITournamentApi.cs.meta +11 -0
- package/Common/Runtime/Api/Tournaments/TournamentApi.cs +284 -0
- package/Common/Runtime/Api/Tournaments/TournamentApi.cs.meta +11 -0
- package/Common/Runtime/Api/Tournaments.meta +11 -0
- package/Common/Runtime/Api.meta +11 -0
- package/Common/Runtime/BeamCli/CliContractTypeAttribute.cs +13 -0
- package/Common/Runtime/BeamCli/CliContractTypeAttribute.cs.meta +11 -0
- package/Common/Runtime/BeamCli/CliOtelData.cs +26 -0
- package/Common/Runtime/BeamCli/CliOtelData.cs.meta +11 -0
- package/Common/Runtime/BeamCli/Contracts/CliLogMessage.cs +33 -0
- package/Common/Runtime/BeamCli/Contracts/CliLogMessage.cs.meta +11 -0
- package/Common/Runtime/BeamCli/Contracts/CollectorStatus.cs +49 -0
- package/Common/Runtime/BeamCli/Contracts/CollectorStatus.cs.meta +11 -0
- package/Common/Runtime/BeamCli/Contracts/Constants.cs +34 -0
- package/Common/Runtime/BeamCli/Contracts/Constants.cs.meta +11 -0
- package/Common/Runtime/BeamCli/Contracts/ContentService/AutoSnapshotActionType.cs +15 -0
- package/Common/Runtime/BeamCli/Contracts/ContentService/AutoSnapshotActionType.cs.meta +11 -0
- package/Common/Runtime/BeamCli/Contracts/ContentService/AutoSnapshotType.cs +16 -0
- package/Common/Runtime/BeamCli/Contracts/ContentService/AutoSnapshotType.cs.meta +11 -0
- package/Common/Runtime/BeamCli/Contracts/ContentService/ContentSnapshotType.cs +14 -0
- package/Common/Runtime/BeamCli/Contracts/ContentService/ContentSnapshotType.cs.meta +11 -0
- package/Common/Runtime/BeamCli/Contracts/ContentService/ContentStatus.cs +18 -0
- package/Common/Runtime/BeamCli/Contracts/ContentService/ContentStatus.cs.meta +11 -0
- package/Common/Runtime/BeamCli/Contracts/ContentService/LocalContentManifest.cs +17 -0
- package/Common/Runtime/BeamCli/Contracts/ContentService/LocalContentManifest.cs.meta +11 -0
- package/Common/Runtime/BeamCli/Contracts/ContentService/LocalContentManifestEntry.cs +76 -0
- package/Common/Runtime/BeamCli/Contracts/ContentService/LocalContentManifestEntry.cs.meta +11 -0
- package/Common/Runtime/BeamCli/Contracts/ContentService/ManifestAuthor.cs +14 -0
- package/Common/Runtime/BeamCli/Contracts/ContentService/ManifestAuthor.cs.meta +11 -0
- package/Common/Runtime/BeamCli/Contracts/ContentService/ManifestProjectData.cs +14 -0
- package/Common/Runtime/BeamCli/Contracts/ContentService/ManifestProjectData.cs.meta +11 -0
- package/Common/Runtime/BeamCli/Contracts/ContentService/TagStatus.cs +13 -0
- package/Common/Runtime/BeamCli/Contracts/ContentService/TagStatus.cs.meta +11 -0
- package/Common/Runtime/BeamCli/Contracts/ContentService.meta +11 -0
- package/Common/Runtime/BeamCli/Contracts/EnvironmentVersionData.cs +15 -0
- package/Common/Runtime/BeamCli/Contracts/EnvironmentVersionData.cs.meta +11 -0
- package/Common/Runtime/BeamCli/Contracts/GenerateEnvOutput.cs +24 -0
- package/Common/Runtime/BeamCli/Contracts/GenerateEnvOutput.cs.meta +11 -0
- package/Common/Runtime/BeamCli/Contracts/ServiceInfo.cs +16 -0
- package/Common/Runtime/BeamCli/Contracts/ServiceInfo.cs.meta +11 -0
- package/Common/Runtime/BeamCli/Contracts.meta +11 -0
- package/Common/Runtime/BeamCli/ErrorOutput.cs +39 -0
- package/Common/Runtime/BeamCli/ErrorOutput.cs.meta +11 -0
- package/Common/Runtime/BeamCli/IBeamCommand.cs +51 -0
- package/Common/Runtime/BeamCli/IBeamCommand.cs.meta +11 -0
- package/Common/Runtime/BeamCli/Reporting.cs +51 -0
- package/Common/Runtime/BeamCli/Reporting.cs.meta +11 -0
- package/Common/Runtime/BeamCli/ServiceInfoHelper.cs +32 -0
- package/Common/Runtime/BeamCli/ServiceInfoHelper.cs.meta +11 -0
- package/Common/Runtime/BeamCli.meta +11 -0
- package/Common/Runtime/BeamGenerateSchemaAttribute.cs +19 -0
- package/Common/Runtime/BeamGenerateSchemaAttribute.cs.meta +11 -0
- package/Common/Runtime/BeamableColorUtil.cs +26 -0
- package/Common/Runtime/BeamableColorUtil.cs.meta +11 -0
- package/Common/Runtime/BeamableEnumExtensions.cs +36 -0
- package/Common/Runtime/BeamableEnumExtensions.cs.meta +11 -0
- package/Common/Runtime/BeamableTaskExtensions.cs +28 -0
- package/Common/Runtime/BeamableTaskExtensions.cs.meta +11 -0
- package/Common/Runtime/Collections/ConcurrentBag.cs +49 -0
- package/Common/Runtime/Collections/ConcurrentBag.cs.meta +11 -0
- package/Common/Runtime/Collections/ConcurrentDictionary.cs +109 -0
- package/Common/Runtime/Collections/ConcurrentDictionary.cs.meta +11 -0
- package/Common/Runtime/Collections.meta +11 -0
- package/Common/Runtime/Constants/Constants.cs +184 -0
- package/Common/Runtime/Constants/Constants.cs.meta +11 -0
- package/Common/Runtime/Constants/Implementations/ArchiveConstants.cs +25 -0
- package/Common/Runtime/Constants/Implementations/ArchiveConstants.cs.meta +11 -0
- package/Common/Runtime/Constants/Implementations/ConfigConstants.cs +26 -0
- package/Common/Runtime/Constants/Implementations/ConfigConstants.cs.meta +11 -0
- package/Common/Runtime/Constants/Implementations/ContentConstants.cs +29 -0
- package/Common/Runtime/Constants/Implementations/ContentConstants.cs.meta +11 -0
- package/Common/Runtime/Constants/Implementations/ContentManagerConstants.cs +113 -0
- package/Common/Runtime/Constants/Implementations/ContentManagerConstants.cs.meta +11 -0
- package/Common/Runtime/Constants/Implementations/CronConstants.cs +20 -0
- package/Common/Runtime/Constants/Implementations/CronConstants.cs.meta +11 -0
- package/Common/Runtime/Constants/Implementations/DockerConstants.cs +22 -0
- package/Common/Runtime/Constants/Implementations/DockerConstants.cs.meta +11 -0
- package/Common/Runtime/Constants/Implementations/EnvironmentConstants.cs +24 -0
- package/Common/Runtime/Constants/Implementations/EnvironmentConstants.cs.meta +11 -0
- package/Common/Runtime/Constants/Implementations/LoginBaseConstants.cs +46 -0
- package/Common/Runtime/Constants/Implementations/LoginBaseConstants.cs.meta +11 -0
- package/Common/Runtime/Constants/Implementations/MigrationConstants.cs +15 -0
- package/Common/Runtime/Constants/Implementations/MigrationConstants.cs.meta +11 -0
- package/Common/Runtime/Constants/Implementations/NotificationConstants.cs +19 -0
- package/Common/Runtime/Constants/Implementations/NotificationConstants.cs.meta +11 -0
- package/Common/Runtime/Constants/Implementations/OtelConstants.cs +177 -0
- package/Common/Runtime/Constants/Implementations/OtelConstants.cs.meta +11 -0
- package/Common/Runtime/Constants/Implementations/RequesterConstants.cs +91 -0
- package/Common/Runtime/Constants/Implementations/RequesterConstants.cs.meta +11 -0
- package/Common/Runtime/Constants/Implementations/SchedulesConstants.cs +21 -0
- package/Common/Runtime/Constants/Implementations/SchedulesConstants.cs.meta +11 -0
- package/Common/Runtime/Constants/Implementations/ServiceConstants.cs +161 -0
- package/Common/Runtime/Constants/Implementations/ServiceConstants.cs.meta +11 -0
- package/Common/Runtime/Constants/Implementations/SpewConstants.cs +39 -0
- package/Common/Runtime/Constants/Implementations/SpewConstants.cs.meta +11 -0
- package/Common/Runtime/Constants/Implementations/TestingToolConstants.cs +41 -0
- package/Common/Runtime/Constants/Implementations/TestingToolConstants.cs.meta +11 -0
- package/Common/Runtime/Constants/Implementations/ToolbarConstants.cs +17 -0
- package/Common/Runtime/Constants/Implementations/ToolbarConstants.cs.meta +11 -0
- package/Common/Runtime/Constants/Implementations/ToolboxConstants.cs +26 -0
- package/Common/Runtime/Constants/Implementations/ToolboxConstants.cs.meta +11 -0
- package/Common/Runtime/Constants/Implementations/TooltipConstants.cs +83 -0
- package/Common/Runtime/Constants/Implementations/TooltipConstants.cs.meta +11 -0
- package/Common/Runtime/Constants/Implementations.meta +11 -0
- package/Common/Runtime/Constants.meta +11 -0
- package/Common/Runtime/Content/ClientContentSerializer.cs +45 -0
- package/Common/Runtime/Content/ClientContentSerializer.cs.meta +11 -0
- package/Common/Runtime/Content/ClientManifest.cs +303 -0
- package/Common/Runtime/Content/ClientManifest.cs.meta +11 -0
- package/Common/Runtime/Content/ClientPermissions.cs +31 -0
- package/Common/Runtime/Content/ClientPermissions.cs.meta +11 -0
- package/Common/Runtime/Content/ContentCorruptedException.cs +16 -0
- package/Common/Runtime/Content/ContentCorruptedException.cs.meta +11 -0
- package/Common/Runtime/Content/ContentDataInfo.cs +148 -0
- package/Common/Runtime/Content/ContentDataInfo.cs.meta +11 -0
- package/Common/Runtime/Content/ContentDeserializationException.cs +15 -0
- package/Common/Runtime/Content/ContentDeserializationException.cs.meta +11 -0
- package/Common/Runtime/Content/ContentFieldAttribute.cs +31 -0
- package/Common/Runtime/Content/ContentFieldAttribute.cs.meta +11 -0
- package/Common/Runtime/Content/ContentFilterType.cs +42 -0
- package/Common/Runtime/Content/ContentFilterType.cs.meta +11 -0
- package/Common/Runtime/Content/ContentNotFoundException.cs +20 -0
- package/Common/Runtime/Content/ContentNotFoundException.cs.meta +11 -0
- package/Common/Runtime/Content/ContentObject.cs +644 -0
- package/Common/Runtime/Content/ContentObject.cs.meta +11 -0
- package/Common/Runtime/Content/ContentQuery.cs +333 -0
- package/Common/Runtime/Content/ContentQuery.cs.meta +11 -0
- package/Common/Runtime/Content/ContentQueryExtensions.cs +43 -0
- package/Common/Runtime/Content/ContentQueryExtensions.cs.meta +11 -0
- package/Common/Runtime/Content/ContentRef.cs +291 -0
- package/Common/Runtime/Content/ContentRef.cs.meta +11 -0
- package/Common/Runtime/Content/ContentSerializer.cs +770 -0
- package/Common/Runtime/Content/ContentSerializer.cs.meta +11 -0
- package/Common/Runtime/Content/ContentTypeAttribute.cs +137 -0
- package/Common/Runtime/Content/ContentTypeAttribute.cs.meta +11 -0
- package/Common/Runtime/Content/ContentTypeReflectionCache.cs +601 -0
- package/Common/Runtime/Content/ContentTypeReflectionCache.cs.meta +11 -0
- package/Common/Runtime/Content/ContentVisibility.cs +25 -0
- package/Common/Runtime/Content/ContentVisibility.cs.meta +11 -0
- package/Common/Runtime/Content/Federation.cs +33 -0
- package/Common/Runtime/Content/Federation.cs.meta +11 -0
- package/Common/Runtime/Content/IContentObject.cs +52 -0
- package/Common/Runtime/Content/IContentObject.cs.meta +11 -0
- package/Common/Runtime/Content/IContentService.cs +21 -0
- package/Common/Runtime/Content/IContentService.cs.meta +11 -0
- package/Common/Runtime/Content/IIgnoreSerializationCallbacks.cs +11 -0
- package/Common/Runtime/Content/IIgnoreSerializationCallbacks.cs.meta +11 -0
- package/Common/Runtime/Content/IgnoreContentFieldAttribute.cs +25 -0
- package/Common/Runtime/Content/IgnoreContentFieldAttribute.cs.meta +11 -0
- package/Common/Runtime/Content/Optionals.cs +582 -0
- package/Common/Runtime/Content/Optionals.cs.meta +11 -0
- package/Common/Runtime/Content/PropertyAttributes/FilePathSelectorAttribute.cs +23 -0
- package/Common/Runtime/Content/PropertyAttributes/FilePathSelectorAttribute.cs.meta +11 -0
- package/Common/Runtime/Content/PropertyAttributes/HideUnlessServerPackageInstalled.cs +15 -0
- package/Common/Runtime/Content/PropertyAttributes/HideUnlessServerPackageInstalled.cs.meta +11 -0
- package/Common/Runtime/Content/PropertyAttributes/ReadonlyIfAttribute.cs +25 -0
- package/Common/Runtime/Content/PropertyAttributes/ReadonlyIfAttribute.cs.meta +11 -0
- package/Common/Runtime/Content/PropertyAttributes/ShowOnlyAttribute.cs +11 -0
- package/Common/Runtime/Content/PropertyAttributes/ShowOnlyAttribute.cs.meta +11 -0
- package/Common/Runtime/Content/PropertyAttributes.meta +11 -0
- package/Common/Runtime/Content/RenderAsRefAttribute.cs +34 -0
- package/Common/Runtime/Content/RenderAsRefAttribute.cs.meta +11 -0
- package/Common/Runtime/Content/SerializableDictionary.cs +183 -0
- package/Common/Runtime/Content/SerializableDictionary.cs.meta +11 -0
- package/Common/Runtime/Content/Utility/DateUtility.cs +121 -0
- package/Common/Runtime/Content/Utility/DateUtility.cs.meta +11 -0
- package/Common/Runtime/Content/Utility.meta +11 -0
- package/Common/Runtime/Content/Validation/AggregateContentValidationException.cs +13 -0
- package/Common/Runtime/Content/Validation/AggregateContentValidationException.cs.meta +11 -0
- package/Common/Runtime/Content/Validation/CannotBeBlank.cs +116 -0
- package/Common/Runtime/Content/Validation/CannotBeBlank.cs.meta +11 -0
- package/Common/Runtime/Content/Validation/CannotBeEmpty.cs +44 -0
- package/Common/Runtime/Content/Validation/CannotBeEmpty.cs.meta +11 -0
- package/Common/Runtime/Content/Validation/ContentValidationException.cs +122 -0
- package/Common/Runtime/Content/Validation/ContentValidationException.cs.meta +11 -0
- package/Common/Runtime/Content/Validation/FederationMustBeValid.cs +58 -0
- package/Common/Runtime/Content/Validation/FederationMustBeValid.cs.meta +11 -0
- package/Common/Runtime/Content/Validation/MustBeComparatorString.cs +30 -0
- package/Common/Runtime/Content/Validation/MustBeComparatorString.cs.meta +11 -0
- package/Common/Runtime/Content/Validation/MustBeCurrency.cs +26 -0
- package/Common/Runtime/Content/Validation/MustBeCurrency.cs.meta +11 -0
- package/Common/Runtime/Content/Validation/MustBeCurrencyOrItem.cs +26 -0
- package/Common/Runtime/Content/Validation/MustBeCurrencyOrItem.cs.meta +11 -0
- package/Common/Runtime/Content/Validation/MustBeDateString.cs +86 -0
- package/Common/Runtime/Content/Validation/MustBeDateString.cs.meta +11 -0
- package/Common/Runtime/Content/Validation/MustBeItem.cs +26 -0
- package/Common/Runtime/Content/Validation/MustBeItem.cs.meta +11 -0
- package/Common/Runtime/Content/Validation/MustBeLeaderboard.cs +27 -0
- package/Common/Runtime/Content/Validation/MustBeLeaderboard.cs.meta +11 -0
- package/Common/Runtime/Content/Validation/MustBeNonDefault.cs +31 -0
- package/Common/Runtime/Content/Validation/MustBeNonDefault.cs.meta +11 -0
- package/Common/Runtime/Content/Validation/MustBeNonNegative.cs +21 -0
- package/Common/Runtime/Content/Validation/MustBeNonNegative.cs.meta +11 -0
- package/Common/Runtime/Content/Validation/MustBeOneOf.cs +65 -0
- package/Common/Runtime/Content/Validation/MustBeOneOf.cs.meta +11 -0
- package/Common/Runtime/Content/Validation/MustBePositive.cs +107 -0
- package/Common/Runtime/Content/Validation/MustBePositive.cs.meta +11 -0
- package/Common/Runtime/Content/Validation/MustBeSlugString.cs +87 -0
- package/Common/Runtime/Content/Validation/MustBeSlugString.cs.meta +11 -0
- package/Common/Runtime/Content/Validation/MustBeTimeSpanDuration.cs +107 -0
- package/Common/Runtime/Content/Validation/MustBeTimeSpanDuration.cs.meta +11 -0
- package/Common/Runtime/Content/Validation/MustBeValidCron.cs +136 -0
- package/Common/Runtime/Content/Validation/MustBeValidCron.cs.meta +11 -0
- package/Common/Runtime/Content/Validation/MustContain.cs +53 -0
- package/Common/Runtime/Content/Validation/MustContain.cs.meta +11 -0
- package/Common/Runtime/Content/Validation/MustReferenceContent.cs +237 -0
- package/Common/Runtime/Content/Validation/MustReferenceContent.cs.meta +11 -0
- package/Common/Runtime/Content/Validation/RouteParametersMustBeValid.cs +51 -0
- package/Common/Runtime/Content/Validation/RouteParametersMustBeValid.cs.meta +11 -0
- package/Common/Runtime/Content/Validation/ServiceRouteMustBeValid.cs +43 -0
- package/Common/Runtime/Content/Validation/ServiceRouteMustBeValid.cs.meta +11 -0
- package/Common/Runtime/Content/Validation/TimeSpanDisplayAttribute.cs +19 -0
- package/Common/Runtime/Content/Validation/TimeSpanDisplayAttribute.cs.meta +11 -0
- package/Common/Runtime/Content/Validation/ValidationAttribute.cs +111 -0
- package/Common/Runtime/Content/Validation/ValidationAttribute.cs.meta +11 -0
- package/Common/Runtime/Content/Validation/ValidationContext.cs +104 -0
- package/Common/Runtime/Content/Validation/ValidationContext.cs.meta +11 -0
- package/Common/Runtime/Content/Validation.meta +11 -0
- package/Common/Runtime/Content.meta +11 -0
- package/Common/Runtime/CronExpression/CronLocale.cs +11 -0
- package/Common/Runtime/CronExpression/CronLocale.cs.meta +11 -0
- package/Common/Runtime/CronExpression/ErrorData.cs +25 -0
- package/Common/Runtime/CronExpression/ErrorData.cs.meta +11 -0
- package/Common/Runtime/CronExpression/ExpressionParser.cs +382 -0
- package/Common/Runtime/CronExpression/ExpressionParser.cs.meta +11 -0
- package/Common/Runtime/CronExpression/Options.cs +24 -0
- package/Common/Runtime/CronExpression/Options.cs.meta +11 -0
- package/Common/Runtime/CronExpression.meta +11 -0
- package/Common/Runtime/Debug.cs +177 -0
- package/Common/Runtime/Debug.cs.meta +11 -0
- package/Common/Runtime/DefaultQuery.cs +248 -0
- package/Common/Runtime/DefaultQuery.cs.meta +11 -0
- package/Common/Runtime/Dependencies/DependencyBuilder.cs +776 -0
- package/Common/Runtime/Dependencies/DependencyBuilder.cs.meta +11 -0
- package/Common/Runtime/Dependencies/DependencyProvider.cs +560 -0
- package/Common/Runtime/Dependencies/DependencyProvider.cs.meta +11 -0
- package/Common/Runtime/Dependencies/Exceptions.cs +22 -0
- package/Common/Runtime/Dependencies/Exceptions.cs.meta +11 -0
- package/Common/Runtime/Dependencies/IDependencyList.cs +24 -0
- package/Common/Runtime/Dependencies/IDependencyList.cs.meta +11 -0
- package/Common/Runtime/Dependencies/IDependencyNameProvider.cs +15 -0
- package/Common/Runtime/Dependencies/IDependencyNameProvider.cs.meta +11 -0
- package/Common/Runtime/Dependencies/RegisterBeamableDependenciesAttribute.cs +75 -0
- package/Common/Runtime/Dependencies/RegisterBeamableDependenciesAttribute.cs.meta +11 -0
- package/Common/Runtime/Dependencies/ServiceStorage.cs +258 -0
- package/Common/Runtime/Dependencies/ServiceStorage.cs.meta +11 -0
- package/Common/Runtime/Dependencies/Utils.cs +50 -0
- package/Common/Runtime/Dependencies/Utils.cs.meta +11 -0
- package/Common/Runtime/Dependencies.meta +11 -0
- package/Common/Runtime/DocUtils.cs +25 -0
- package/Common/Runtime/DocUtils.cs.meta +11 -0
- package/Common/Runtime/Environment/PackageVersion.cs +361 -0
- package/Common/Runtime/Environment/PackageVersion.cs.meta +11 -0
- package/Common/Runtime/Environment.meta +11 -0
- package/Common/Runtime/Federation/FederatedGameServer.cs +43 -0
- package/Common/Runtime/Federation/FederatedGameServer.cs.meta +11 -0
- package/Common/Runtime/Federation/FederatedInventory.cs +43 -0
- package/Common/Runtime/Federation/FederatedInventory.cs.meta +11 -0
- package/Common/Runtime/Federation/FederatedLogin.cs +107 -0
- package/Common/Runtime/Federation/FederatedLogin.cs.meta +11 -0
- package/Common/Runtime/Federation/FederatedPlayerInit.cs +37 -0
- package/Common/Runtime/Federation/FederatedPlayerInit.cs.meta +11 -0
- package/Common/Runtime/Federation/Federation.cs +189 -0
- package/Common/Runtime/Federation/Federation.cs.meta +11 -0
- package/Common/Runtime/Federation.meta +11 -0
- package/Common/Runtime/IRuntimeConfigProvider.cs +75 -0
- package/Common/Runtime/IRuntimeConfigProvider.cs.meta +11 -0
- package/Common/Runtime/ISearchableElement.cs +15 -0
- package/Common/Runtime/ISearchableElement.cs.meta +11 -0
- package/Common/Runtime/JsonSerializable/DeleteStream.cs +438 -0
- package/Common/Runtime/JsonSerializable/DeleteStream.cs.meta +11 -0
- package/Common/Runtime/JsonSerializable/DiffStream.cs +367 -0
- package/Common/Runtime/JsonSerializable/DiffStream.cs.meta +11 -0
- package/Common/Runtime/JsonSerializable/JsonData.cs +103 -0
- package/Common/Runtime/JsonSerializable/JsonData.cs.meta +11 -0
- package/Common/Runtime/JsonSerializable/JsonSaveStream.cs +765 -0
- package/Common/Runtime/JsonSerializable/JsonSaveStream.cs.meta +11 -0
- package/Common/Runtime/JsonSerializable/JsonSerializable.cs +386 -0
- package/Common/Runtime/JsonSerializable/JsonSerializable.cs.meta +11 -0
- package/Common/Runtime/JsonSerializable/LoadStream.cs +1103 -0
- package/Common/Runtime/JsonSerializable/LoadStream.cs.meta +11 -0
- package/Common/Runtime/JsonSerializable/SaveStream.cs +419 -0
- package/Common/Runtime/JsonSerializable/SaveStream.cs.meta +11 -0
- package/Common/Runtime/JsonSerializable/TypeLookupFactory.cs +58 -0
- package/Common/Runtime/JsonSerializable/TypeLookupFactory.cs.meta +11 -0
- package/Common/Runtime/JsonSerializable.meta +11 -0
- package/Common/Runtime/Modules/Announcements/AnnouncementApiContent.cs +42 -0
- package/Common/Runtime/Modules/Announcements/AnnouncementApiContent.cs.meta +11 -0
- package/Common/Runtime/Modules/Announcements/AnnouncementContent.cs +121 -0
- package/Common/Runtime/Modules/Announcements/AnnouncementContent.cs.meta +11 -0
- package/Common/Runtime/Modules/Announcements/AnnouncementRef.cs +97 -0
- package/Common/Runtime/Modules/Announcements/AnnouncementRef.cs.meta +11 -0
- package/Common/Runtime/Modules/Announcements.meta +11 -0
- package/Common/Runtime/Modules/Calendars/CalendarContent.cs +42 -0
- package/Common/Runtime/Modules/Calendars/CalendarContent.cs.meta +11 -0
- package/Common/Runtime/Modules/Calendars/CalendarRef.cs +68 -0
- package/Common/Runtime/Modules/Calendars/CalendarRef.cs.meta +11 -0
- package/Common/Runtime/Modules/Calendars.meta +11 -0
- package/Common/Runtime/Modules/Groups/GroupDonationContentRef.cs +77 -0
- package/Common/Runtime/Modules/Groups/GroupDonationContentRef.cs.meta +11 -0
- package/Common/Runtime/Modules/Groups/GroupDonationsContent.cs +40 -0
- package/Common/Runtime/Modules/Groups/GroupDonationsContent.cs.meta +11 -0
- package/Common/Runtime/Modules/Groups.meta +11 -0
- package/Common/Runtime/Modules/Inventory/CurrencyContent.cs +80 -0
- package/Common/Runtime/Modules/Inventory/CurrencyContent.cs.meta +11 -0
- package/Common/Runtime/Modules/Inventory/CurrencyRef.cs +83 -0
- package/Common/Runtime/Modules/Inventory/CurrencyRef.cs.meta +11 -0
- package/Common/Runtime/Modules/Inventory/ItemContent.cs +67 -0
- package/Common/Runtime/Modules/Inventory/ItemContent.cs.meta +11 -0
- package/Common/Runtime/Modules/Inventory/ItemRef.cs +80 -0
- package/Common/Runtime/Modules/Inventory/ItemRef.cs.meta +11 -0
- package/Common/Runtime/Modules/Inventory/VipContent.cs +104 -0
- package/Common/Runtime/Modules/Inventory/VipContent.cs.meta +11 -0
- package/Common/Runtime/Modules/Inventory.meta +11 -0
- package/Common/Runtime/Modules/Leaderboards/LeaderboardContent.cs +68 -0
- package/Common/Runtime/Modules/Leaderboards/LeaderboardContent.cs.meta +11 -0
- package/Common/Runtime/Modules/Leaderboards/LeaderboardRef.cs +78 -0
- package/Common/Runtime/Modules/Leaderboards/LeaderboardRef.cs.meta +11 -0
- package/Common/Runtime/Modules/Leaderboards.meta +11 -0
- package/Common/Runtime/Modules/SharedContent/ApiContent.cs +282 -0
- package/Common/Runtime/Modules/SharedContent/ApiContent.cs.meta +11 -0
- package/Common/Runtime/Modules/SharedContent/EmailContent.cs +105 -0
- package/Common/Runtime/Modules/SharedContent/EmailContent.cs.meta +11 -0
- package/Common/Runtime/Modules/SharedContent/EventContent.cs +273 -0
- package/Common/Runtime/Modules/SharedContent/EventContent.cs.meta +11 -0
- package/Common/Runtime/Modules/SharedContent/PlayerReward.cs +64 -0
- package/Common/Runtime/Modules/SharedContent/PlayerReward.cs.meta +11 -0
- package/Common/Runtime/Modules/SharedContent/ScheduleDefinition.cs +129 -0
- package/Common/Runtime/Modules/SharedContent/ScheduleDefinition.cs.meta +11 -0
- package/Common/Runtime/Modules/SharedContent/ScheduleExtensions.cs +36 -0
- package/Common/Runtime/Modules/SharedContent/ScheduleExtensions.cs.meta +11 -0
- package/Common/Runtime/Modules/SharedContent/SimGameType.cs +300 -0
- package/Common/Runtime/Modules/SharedContent/SimGameType.cs.meta +11 -0
- package/Common/Runtime/Modules/SharedContent.meta +11 -0
- package/Common/Runtime/Modules/Shop/ListingContent.cs +329 -0
- package/Common/Runtime/Modules/Shop/ListingContent.cs.meta +11 -0
- package/Common/Runtime/Modules/Shop/ListingLink.cs +24 -0
- package/Common/Runtime/Modules/Shop/ListingLink.cs.meta +11 -0
- package/Common/Runtime/Modules/Shop/ListingRef.cs +34 -0
- package/Common/Runtime/Modules/Shop/ListingRef.cs.meta +11 -0
- package/Common/Runtime/Modules/Shop/SKUContent.cs +106 -0
- package/Common/Runtime/Modules/Shop/SKUContent.cs.meta +11 -0
- package/Common/Runtime/Modules/Shop/SKURef.cs +50 -0
- package/Common/Runtime/Modules/Shop/SKURef.cs.meta +11 -0
- package/Common/Runtime/Modules/Shop/StoreContent.cs +48 -0
- package/Common/Runtime/Modules/Shop/StoreContent.cs.meta +11 -0
- package/Common/Runtime/Modules/Shop/StoreRef.cs +51 -0
- package/Common/Runtime/Modules/Shop/StoreRef.cs.meta +11 -0
- package/Common/Runtime/Modules/Shop.meta +11 -0
- package/Common/Runtime/Modules/Steam/ISteamService.cs +69 -0
- package/Common/Runtime/Modules/Steam/ISteamService.cs.meta +11 -0
- package/Common/Runtime/Modules/Steam.meta +11 -0
- package/Common/Runtime/Modules/Tournaments/TournamentColorConstants.cs +21 -0
- package/Common/Runtime/Modules/Tournaments/TournamentColorConstants.cs.meta +11 -0
- package/Common/Runtime/Modules/Tournaments/TournamentContent.cs +317 -0
- package/Common/Runtime/Modules/Tournaments/TournamentContent.cs.meta +11 -0
- package/Common/Runtime/Modules/Tournaments.meta +11 -0
- package/Common/Runtime/Modules.meta +8 -0
- package/Common/Runtime/ObjectExtensions.cs +51 -0
- package/Common/Runtime/ObjectExtensions.cs.meta +11 -0
- package/Common/Runtime/OpenApi/AccountsBasic.gs.cs +507 -0
- package/Common/Runtime/OpenApi/AccountsBasic.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/AccountsBasicCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/AccountsBasicCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/AccountsObject.gs.cs +256 -0
- package/Common/Runtime/OpenApi/AccountsObject.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/AnnouncementsBasic.gs.cs +171 -0
- package/Common/Runtime/OpenApi/AnnouncementsBasic.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/AnnouncementsBasicCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/AnnouncementsBasicCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/AnnouncementsObject.gs.cs +140 -0
- package/Common/Runtime/OpenApi/AnnouncementsObject.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/AuthBasic.gs.cs +132 -0
- package/Common/Runtime/OpenApi/AuthBasic.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/AuthBasicCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/AuthBasicCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamAdmin.gs.cs +77 -0
- package/Common/Runtime/OpenApi/BeamAdmin.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamAdminCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/BeamAdminCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamAuth.gs.cs +135 -0
- package/Common/Runtime/OpenApi/BeamAuth.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamAuthCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/BeamAuthCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamBeamo.gs.cs +598 -0
- package/Common/Runtime/OpenApi/BeamBeamo.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamBeamoCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/BeamBeamoCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamBeamootel.gs.cs +146 -0
- package/Common/Runtime/OpenApi/BeamBeamootel.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamBeamootelCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/BeamBeamootelCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamCustomer.gs.cs +594 -0
- package/Common/Runtime/OpenApi/BeamCustomer.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamCustomerCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/BeamCustomerCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamLobby.gs.cs +320 -0
- package/Common/Runtime/OpenApi/BeamLobby.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamLobbyCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/BeamLobbyCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamMailbox.gs.cs +39 -0
- package/Common/Runtime/OpenApi/BeamMailbox.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamMailboxCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/BeamMailboxCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamMatchmaking.gs.cs +175 -0
- package/Common/Runtime/OpenApi/BeamMatchmaking.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamMatchmakingCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/BeamMatchmakingCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamParty.gs.cs +223 -0
- package/Common/Runtime/OpenApi/BeamParty.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamPartyCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/BeamPartyCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamPlayer.gs.cs +82 -0
- package/Common/Runtime/OpenApi/BeamPlayer.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamPlayerCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/BeamPlayerCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamPlayerlobby.gs.cs +68 -0
- package/Common/Runtime/OpenApi/BeamPlayerlobby.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamPlayerlobbyCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/BeamPlayerlobbyCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamPlayerparty.gs.cs +116 -0
- package/Common/Runtime/OpenApi/BeamPlayerparty.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamPlayerpartyCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/BeamPlayerpartyCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamPlayerticket.gs.cs +44 -0
- package/Common/Runtime/OpenApi/BeamPlayerticket.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamPlayerticketCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/BeamPlayerticketCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamPresence.gs.cs +39 -0
- package/Common/Runtime/OpenApi/BeamPresence.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamPresenceCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/BeamPresenceCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamScheduler.gs.cs +416 -0
- package/Common/Runtime/OpenApi/BeamScheduler.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamSchedulerCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/BeamSchedulerCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamServiceplan.gs.cs +96 -0
- package/Common/Runtime/OpenApi/BeamServiceplan.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamServiceplanCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/BeamServiceplanCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamoBasic.gs.cs +547 -0
- package/Common/Runtime/OpenApi/BeamoBasic.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/BeamoBasicCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/BeamoBasicCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/CalendarsObject.gs.cs +62 -0
- package/Common/Runtime/OpenApi/CalendarsObject.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/CalendarsObjectCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/CalendarsObjectCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/CloudsavingBasic.gs.cs +222 -0
- package/Common/Runtime/OpenApi/CloudsavingBasic.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/CloudsavingBasicCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/CloudsavingBasicCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/CommerceBasic.gs.cs +120 -0
- package/Common/Runtime/OpenApi/CommerceBasic.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/CommerceBasicCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/CommerceBasicCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/CommerceObject.gs.cs +346 -0
- package/Common/Runtime/OpenApi/CommerceObject.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/ContentBasic.gs.cs +672 -0
- package/Common/Runtime/OpenApi/ContentBasic.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/ContentBasicCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/ContentBasicCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/Event-playersObject.gs.cs +84 -0
- package/Common/Runtime/OpenApi/Event-playersObject.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/Event-playersObjectCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/Event-playersObjectCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/EventsBasic.gs.cs +125 -0
- package/Common/Runtime/OpenApi/EventsBasic.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/EventsBasicCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/EventsBasicCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/EventsObject.gs.cs +144 -0
- package/Common/Runtime/OpenApi/EventsObject.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/Group-usersObject.gs.cs +284 -0
- package/Common/Runtime/OpenApi/Group-usersObject.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/Group-usersObjectCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/Group-usersObjectCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/GroupsObject.gs.cs +280 -0
- package/Common/Runtime/OpenApi/GroupsObject.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/GroupsObjectCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/GroupsObjectCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/InventoryBasic.gs.cs +54 -0
- package/Common/Runtime/OpenApi/InventoryBasic.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/InventoryBasicCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/InventoryBasicCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/InventoryObject.gs.cs +204 -0
- package/Common/Runtime/OpenApi/InventoryObject.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/LeaderboardsBasic.gs.cs +150 -0
- package/Common/Runtime/OpenApi/LeaderboardsBasic.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/LeaderboardsBasicCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/LeaderboardsBasicCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/LeaderboardsObject.gs.cs +466 -0
- package/Common/Runtime/OpenApi/LeaderboardsObject.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/MailBasic.gs.cs +134 -0
- package/Common/Runtime/OpenApi/MailBasic.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/MailBasicCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/MailBasicCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/MailObject.gs.cs +222 -0
- package/Common/Runtime/OpenApi/MailObject.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/Models.gs.cs +20468 -0
- package/Common/Runtime/OpenApi/Models.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/NotificationBasic.gs.cs +151 -0
- package/Common/Runtime/OpenApi/NotificationBasic.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/NotificationBasicCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/NotificationBasicCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/PaymentsBasic.gs.cs +1180 -0
- package/Common/Runtime/OpenApi/PaymentsBasic.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/PaymentsBasicCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/PaymentsBasicCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/PaymentsObject.gs.cs +40 -0
- package/Common/Runtime/OpenApi/PaymentsObject.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/PushBasic.gs.cs +58 -0
- package/Common/Runtime/OpenApi/PushBasic.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/PushBasicCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/PushBasicCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/RealmsBasic.gs.cs +683 -0
- package/Common/Runtime/OpenApi/RealmsBasic.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/RealmsBasicCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/RealmsBasicCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/SessionBasic.gs.cs +165 -0
- package/Common/Runtime/OpenApi/SessionBasic.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/SessionBasicCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/SessionBasicCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/SocialBasic.gs.cs +197 -0
- package/Common/Runtime/OpenApi/SocialBasic.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/SocialBasicCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/SocialBasicCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/StatsBasic.gs.cs +156 -0
- package/Common/Runtime/OpenApi/StatsBasic.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/StatsBasicCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/StatsBasicCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/StatsObject.gs.cs +176 -0
- package/Common/Runtime/OpenApi/StatsObject.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/TournamentsBasic.gs.cs +607 -0
- package/Common/Runtime/OpenApi/TournamentsBasic.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/TournamentsBasicCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/TournamentsBasicCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/TournamentsObject.gs.cs +40 -0
- package/Common/Runtime/OpenApi/TournamentsObject.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/TrialsBasic.gs.cs +224 -0
- package/Common/Runtime/OpenApi/TrialsBasic.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi/TrialsBasicCommon.gs.cs +45 -0
- package/Common/Runtime/OpenApi/TrialsBasicCommon.gs.cs.meta +11 -0
- package/Common/Runtime/OpenApi.meta +11 -0
- package/Common/Runtime/OpenApiExtensions/BeamoExtensions.cs +49 -0
- package/Common/Runtime/OpenApiExtensions/BeamoExtensions.cs.meta +11 -0
- package/Common/Runtime/OpenApiExtensions/LegacyConverterExtensions.cs +302 -0
- package/Common/Runtime/OpenApiExtensions/LegacyConverterExtensions.cs.meta +11 -0
- package/Common/Runtime/OpenApiExtensions.meta +11 -0
- package/Common/Runtime/OpenApiSystem.cs +236 -0
- package/Common/Runtime/OpenApiSystem.cs.meta +11 -0
- package/Common/Runtime/Player/Lazy.cs +27 -0
- package/Common/Runtime/Player/Lazy.cs.meta +11 -0
- package/Common/Runtime/Player/Observables.cs +449 -0
- package/Common/Runtime/Player/Observables.cs.meta +11 -0
- package/Common/Runtime/Player.meta +11 -0
- package/Common/Runtime/Pooling/ClassPool.cs +142 -0
- package/Common/Runtime/Pooling/ClassPool.cs.meta +11 -0
- package/Common/Runtime/Pooling/StringBuilderPool.cs +171 -0
- package/Common/Runtime/Pooling/StringBuilderPool.cs.meta +11 -0
- package/Common/Runtime/Pooling.meta +11 -0
- package/Common/Runtime/Promise.cs +1329 -0
- package/Common/Runtime/Promise.cs.meta +11 -0
- package/Common/Runtime/ReflectionCache/BeamContextSystemAttribute.cs +11 -0
- package/Common/Runtime/ReflectionCache/BeamContextSystemAttribute.cs.meta +11 -0
- package/Common/Runtime/ReflectionCache/INamingAttribute.cs +143 -0
- package/Common/Runtime/ReflectionCache/INamingAttribute.cs.meta +11 -0
- package/Common/Runtime/ReflectionCache/IReflectionAttribute.cs +154 -0
- package/Common/Runtime/ReflectionCache/IReflectionAttribute.cs.meta +11 -0
- package/Common/Runtime/ReflectionCache/PreserveAttribute.cs +23 -0
- package/Common/Runtime/ReflectionCache/PreserveAttribute.cs.meta +11 -0
- package/Common/Runtime/ReflectionCache/ReflectionCache.cs +457 -0
- package/Common/Runtime/ReflectionCache/ReflectionCache.cs.meta +11 -0
- package/Common/Runtime/ReflectionCache/ReflectionCache_Attributes.cs +289 -0
- package/Common/Runtime/ReflectionCache/ReflectionCache_Attributes.cs.meta +11 -0
- package/Common/Runtime/ReflectionCache/ReflectionCache_BaseTypes.cs +112 -0
- package/Common/Runtime/ReflectionCache/ReflectionCache_BaseTypes.cs.meta +11 -0
- package/Common/Runtime/ReflectionCache/ReflectionCache_SignatureMatching.cs +247 -0
- package/Common/Runtime/ReflectionCache/ReflectionCache_SignatureMatching.cs.meta +11 -0
- package/Common/Runtime/ReflectionCache.meta +11 -0
- package/Common/Runtime/Scheduler/BeamScheduler.cs +962 -0
- package/Common/Runtime/Scheduler/BeamScheduler.cs.meta +11 -0
- package/Common/Runtime/Scheduler/Cron.cs +557 -0
- package/Common/Runtime/Scheduler/Cron.cs.meta +11 -0
- package/Common/Runtime/Scheduler/CronValidation.cs +63 -0
- package/Common/Runtime/Scheduler/CronValidation.cs.meta +11 -0
- package/Common/Runtime/Scheduler.meta +11 -0
- package/Common/Runtime/Semantics/ServiceName.cs +39 -0
- package/Common/Runtime/Semantics/ServiceName.cs.meta +11 -0
- package/Common/Runtime/Semantics.meta +11 -0
- package/Common/Runtime/SmallerJSON/IRawJsonProvider.cs +42 -0
- package/Common/Runtime/SmallerJSON/IRawJsonProvider.cs.meta +11 -0
- package/Common/Runtime/SmallerJSON/SmallerJSON.ArrayDict.cs +479 -0
- package/Common/Runtime/SmallerJSON/SmallerJSON.ArrayDict.cs.meta +11 -0
- package/Common/Runtime/SmallerJSON/SmallerJSON.FromString.cs +627 -0
- package/Common/Runtime/SmallerJSON/SmallerJSON.FromString.cs.meta +11 -0
- package/Common/Runtime/SmallerJSON/SmallerJSON.asmdef +12 -0
- package/Common/Runtime/SmallerJSON/SmallerJSON.asmdef.meta +7 -0
- package/Common/Runtime/SmallerJSON/SmallerJSON.cs +1056 -0
- package/Common/Runtime/SmallerJSON/SmallerJSON.cs.meta +11 -0
- package/Common/Runtime/SmallerJSON.meta +11 -0
- package/Common/Runtime/Spew/Logger.cs +418 -0
- package/Common/Runtime/Spew/Logger.cs.meta +11 -0
- package/Common/Runtime/Spew/SpewLoggerAttribute.cs +15 -0
- package/Common/Runtime/Spew/SpewLoggerAttribute.cs.meta +11 -0
- package/Common/Runtime/Spew.meta +11 -0
- package/Common/Runtime/Trie.cs +463 -0
- package/Common/Runtime/Trie.cs.meta +11 -0
- package/Common/Runtime/TypeExtensions.cs +67 -0
- package/Common/Runtime/TypeExtensions.cs.meta +11 -0
- package/Common/Runtime/Unity.Beamable.Runtime.Common.asmdef +18 -0
- package/Common/Runtime/Unity.Beamable.Runtime.Common.asmdef.meta +7 -0
- package/Common/Runtime/Util/BeamAssemblyVersionUtil.cs +53 -0
- package/Common/Runtime/Util/BeamAssemblyVersionUtil.cs.meta +11 -0
- package/Common/Runtime/Util/BeamFileUtil.cs +28 -0
- package/Common/Runtime/Util/BeamFileUtil.cs.meta +11 -0
- package/Common/Runtime/Util/DocsPageHelper.cs +28 -0
- package/Common/Runtime/Util/DocsPageHelper.cs.meta +11 -0
- package/Common/Runtime/Util/NaturalStringComparer.cs +53 -0
- package/Common/Runtime/Util/NaturalStringComparer.cs.meta +11 -0
- package/Common/Runtime/Util.meta +11 -0
- package/Common/Runtime.meta +11 -0
- package/Common.meta +8 -0
- package/Editor/3rdParty/Splitter/SplitterGUILayout2.cs +194 -0
- package/Editor/3rdParty/Splitter/SplitterGUILayout2.cs.meta +3 -0
- package/Editor/3rdParty/Splitter.meta +3 -0
- package/Editor/3rdParty.meta +8 -0
- package/Editor/BeamCli/BeamCli.cs +417 -0
- package/Editor/BeamCli/BeamCli.cs.meta +11 -0
- package/Editor/BeamCli/BeamCliUtil.cs +254 -0
- package/Editor/BeamCli/BeamCliUtil.cs.meta +3 -0
- package/Editor/BeamCli/BeamCommand.cs +552 -0
- package/Editor/BeamCli/BeamCommand.cs.meta +11 -0
- package/Editor/BeamCli/BeamWebCommand.cs +534 -0
- package/Editor/BeamCli/BeamWebCommand.cs.meta +3 -0
- package/Editor/BeamCli/BeamWebHistory.cs +267 -0
- package/Editor/BeamCli/BeamWebHistory.cs.meta +3 -0
- package/Editor/BeamCli/CliSpewLogger.cs +17 -0
- package/Editor/BeamCli/CliSpewLogger.cs.meta +3 -0
- package/Editor/BeamCli/Commands/Beam.cs +241 -0
- package/Editor/BeamCli/Commands/Beam.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamAccountMeCommandOutput.cs +27 -0
- package/Editor/BeamCli/Commands/BeamAccountMeCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamAccountMeExternalIdentity.cs +14 -0
- package/Editor/BeamCli/Commands/BeamAccountMeExternalIdentity.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamAddFederationCommandOutput.cs +11 -0
- package/Editor/BeamCli/Commands/BeamAddFederationCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamBuildProjectCommandOutput.cs +13 -0
- package/Editor/BeamCli/Commands/BeamBuildProjectCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamBuildSolutionCommandResults.cs +11 -0
- package/Editor/BeamCli/Commands/BeamBuildSolutionCommandResults.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamCheckFixedResult.cs +13 -0
- package/Editor/BeamCli/Commands/BeamCheckFixedResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamCheckGrafanaCommandResults.cs +14 -0
- package/Editor/BeamCli/Commands/BeamCheckGrafanaCommandResults.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamCheckPerfCommandOutput.cs +12 -0
- package/Editor/BeamCli/Commands/BeamCheckPerfCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamCheckRegistryCommandResults.cs +13 -0
- package/Editor/BeamCli/Commands/BeamCheckRegistryCommandResults.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamCheckResultsForBeamoId.cs +13 -0
- package/Editor/BeamCli/Commands/BeamCheckResultsForBeamoId.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamCheckStatusServiceResult.cs +14 -0
- package/Editor/BeamCli/Commands/BeamCheckStatusServiceResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamChecksScan.cs +67 -0
- package/Editor/BeamCli/Commands/BeamChecksScan.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamClearTempLogFilesCommandOutput.cs +13 -0
- package/Editor/BeamCli/Commands/BeamClearTempLogFilesCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamCliServiceComponent.cs +12 -0
- package/Editor/BeamCli/Commands/BeamCliServiceComponent.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamCliServiceDependency.cs +13 -0
- package/Editor/BeamCli/Commands/BeamCliServiceDependency.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamCliServiceManifest.cs +17 -0
- package/Editor/BeamCli/Commands/BeamCliServiceManifest.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamCliServiceReference.cs +20 -0
- package/Editor/BeamCli/Commands/BeamCliServiceReference.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamCliServiceStorageReference.cs +16 -0
- package/Editor/BeamCli/Commands/BeamCliServiceStorageReference.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamCollectorGet.cs +65 -0
- package/Editor/BeamCli/Commands/BeamCollectorGet.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamCollectorStatus.cs +58 -0
- package/Editor/BeamCli/Commands/BeamCollectorStatus.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamCollectorStatusResult.cs +12 -0
- package/Editor/BeamCli/Commands/BeamCollectorStatusResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamConfig.cs +64 -0
- package/Editor/BeamCli/Commands/BeamConfig.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamConfigCommandResult.cs +15 -0
- package/Editor/BeamCli/Commands/BeamConfigCommandResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamConfigRealm.cs +63 -0
- package/Editor/BeamCli/Commands/BeamConfigRealm.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamConfigRealmRemove.cs +65 -0
- package/Editor/BeamCli/Commands/BeamConfigRealmRemove.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamConfigRealmSet.cs +65 -0
- package/Editor/BeamCli/Commands/BeamConfigRealmSet.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamConfigRoutes.cs +51 -0
- package/Editor/BeamCli/Commands/BeamConfigRoutes.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamConfigRoutesCommandResults.cs +18 -0
- package/Editor/BeamCli/Commands/BeamConfigRoutesCommandResults.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamConfigRoutesCommandWebsocketResult.cs +13 -0
- package/Editor/BeamCli/Commands/BeamConfigRoutesCommandWebsocketResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamConstructVersionOutput.cs +15 -0
- package/Editor/BeamCli/Commands/BeamConstructVersionOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentArchiveManifest.cs +62 -0
- package/Editor/BeamCli/Commands/BeamContentArchiveManifest.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentArchiveManifestCommandResult.cs +11 -0
- package/Editor/BeamCli/Commands/BeamContentArchiveManifestCommandResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentCreateLocalManifestCommandResult.cs +11 -0
- package/Editor/BeamCli/Commands/BeamContentCreateLocalManifestCommandResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentListManifests.cs +58 -0
- package/Editor/BeamCli/Commands/BeamContentListManifests.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentListManifestsCommandResults.cs +14 -0
- package/Editor/BeamCli/Commands/BeamContentListManifestsCommandResults.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentNewManifest.cs +55 -0
- package/Editor/BeamCli/Commands/BeamContentNewManifest.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentProgressUpdateData.cs +16 -0
- package/Editor/BeamCli/Commands/BeamContentProgressUpdateData.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentPs.cs +81 -0
- package/Editor/BeamCli/Commands/BeamContentPs.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentPsCommandEvent.cs +17 -0
- package/Editor/BeamCli/Commands/BeamContentPsCommandEvent.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentPsProgressMessage.cs +14 -0
- package/Editor/BeamCli/Commands/BeamContentPsProgressMessage.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentPublish.cs +85 -0
- package/Editor/BeamCli/Commands/BeamContentPublish.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentPublishResult.cs +11 -0
- package/Editor/BeamCli/Commands/BeamContentPublishResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentResolve.cs +89 -0
- package/Editor/BeamCli/Commands/BeamContentResolve.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentResolveConflictResult.cs +12 -0
- package/Editor/BeamCli/Commands/BeamContentResolveConflictResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentRestore.cs +91 -0
- package/Editor/BeamCli/Commands/BeamContentRestore.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentRestoreErrorReport.cs +18 -0
- package/Editor/BeamCli/Commands/BeamContentRestoreErrorReport.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentRestoreResult.cs +12 -0
- package/Editor/BeamCli/Commands/BeamContentRestoreResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentSave.cs +86 -0
- package/Editor/BeamCli/Commands/BeamContentSave.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentSnapshot.cs +74 -0
- package/Editor/BeamCli/Commands/BeamContentSnapshot.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentSnapshotList.cs +65 -0
- package/Editor/BeamCli/Commands/BeamContentSnapshotList.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentSnapshotListItem.cs +13 -0
- package/Editor/BeamCli/Commands/BeamContentSnapshotListItem.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentSnapshotListResult.cs +13 -0
- package/Editor/BeamCli/Commands/BeamContentSnapshotListResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentSnapshotResult.cs +12 -0
- package/Editor/BeamCli/Commands/BeamContentSnapshotResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentSnapshotType.cs +12 -0
- package/Editor/BeamCli/Commands/BeamContentSnapshotType.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentSync.cs +120 -0
- package/Editor/BeamCli/Commands/BeamContentSync.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentSyncReport.cs +11 -0
- package/Editor/BeamCli/Commands/BeamContentSyncReport.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentSyncResult.cs +12 -0
- package/Editor/BeamCli/Commands/BeamContentSyncResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentTagAdd.cs +80 -0
- package/Editor/BeamCli/Commands/BeamContentTagAdd.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentTagRm.cs +80 -0
- package/Editor/BeamCli/Commands/BeamContentTagRm.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamContentTagSet.cs +87 -0
- package/Editor/BeamCli/Commands/BeamContentTagSet.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamCopyProjectSrcToUnityCommandOutput.cs +12 -0
- package/Editor/BeamCli/Commands/BeamCopyProjectSrcToUnityCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDeleteProjectCommandOutput.cs +11 -0
- package/Editor/BeamCli/Commands/BeamDeleteProjectCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDependencyData.cs +15 -0
- package/Editor/BeamCli/Commands/BeamDependencyData.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDeployMode.cs +12 -0
- package/Editor/BeamCli/Commands/BeamDeployMode.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDeployablePlan.cs +19 -0
- package/Editor/BeamCli/Commands/BeamDeployablePlan.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDeploymentDiffSummary.cs +24 -0
- package/Editor/BeamCli/Commands/BeamDeploymentDiffSummary.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDeploymentGet.cs +72 -0
- package/Editor/BeamCli/Commands/BeamDeploymentGet.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDeploymentList.cs +65 -0
- package/Editor/BeamCli/Commands/BeamDeploymentList.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDeploymentManifestJsonDiff.cs +15 -0
- package/Editor/BeamCli/Commands/BeamDeploymentManifestJsonDiff.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDeploymentPlan.cs +150 -0
- package/Editor/BeamCli/Commands/BeamDeploymentPlan.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDeploymentPlanMetadata.cs +14 -0
- package/Editor/BeamCli/Commands/BeamDeploymentPlanMetadata.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDeploymentRegistry.cs +55 -0
- package/Editor/BeamCli/Commands/BeamDeploymentRegistry.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDeploymentRelease.cs +150 -0
- package/Editor/BeamCli/Commands/BeamDeploymentRelease.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDeploymentStatus.cs +58 -0
- package/Editor/BeamCli/Commands/BeamDeploymentStatus.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDeveloperUserData.cs +25 -0
- package/Editor/BeamCli/Commands/BeamDeveloperUserData.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDeveloperUserManagerCleanCapturedUserBuffer.cs +58 -0
- package/Editor/BeamCli/Commands/BeamDeveloperUserManagerCleanCapturedUserBuffer.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDeveloperUserManagerCreateUser.cs +97 -0
- package/Editor/BeamCli/Commands/BeamDeveloperUserManagerCreateUser.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDeveloperUserManagerCreateUserBatch.cs +80 -0
- package/Editor/BeamCli/Commands/BeamDeveloperUserManagerCreateUserBatch.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDeveloperUserManagerPs.cs +65 -0
- package/Editor/BeamCli/Commands/BeamDeveloperUserManagerPs.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDeveloperUserManagerRemoveUser.cs +62 -0
- package/Editor/BeamCli/Commands/BeamDeveloperUserManagerRemoveUser.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDeveloperUserManagerSaveUser.cs +157 -0
- package/Editor/BeamCli/Commands/BeamDeveloperUserManagerSaveUser.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDeveloperUserManagerUpdateInfo.cs +83 -0
- package/Editor/BeamCli/Commands/BeamDeveloperUserManagerUpdateInfo.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDeveloperUserPsCommandEvent.cs +13 -0
- package/Editor/BeamCli/Commands/BeamDeveloperUserPsCommandEvent.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDeveloperUserResult.cs +15 -0
- package/Editor/BeamCli/Commands/BeamDeveloperUserResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDisableFederationCommandOutput.cs +11 -0
- package/Editor/BeamCli/Commands/BeamDisableFederationCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDockerServiceDescriptor.cs +20 -0
- package/Editor/BeamCli/Commands/BeamDockerServiceDescriptor.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDockerStatusCommandOutput.cs +14 -0
- package/Editor/BeamCli/Commands/BeamDockerStatusCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDownloadAllNugetDepsToUnityCommandOutput.cs +11 -0
- package/Editor/BeamCli/Commands/BeamDownloadAllNugetDepsToUnityCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDownloadCollectorCommandResults.cs +13 -0
- package/Editor/BeamCli/Commands/BeamDownloadCollectorCommandResults.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamDownloadNugetDepToUnityCommandOutput.cs +11 -0
- package/Editor/BeamCli/Commands/BeamDownloadNugetDepToUnityCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamEraseStorageObjectCommandOutput.cs +11 -0
- package/Editor/BeamCli/Commands/BeamEraseStorageObjectCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamFederationDisable.cs +55 -0
- package/Editor/BeamCli/Commands/BeamFederationDisable.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamFederationEnable.cs +55 -0
- package/Editor/BeamCli/Commands/BeamFederationEnable.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamFederationEntry.cs +14 -0
- package/Editor/BeamCli/Commands/BeamFederationEntry.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamFederationList.cs +72 -0
- package/Editor/BeamCli/Commands/BeamFederationList.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamFederationLocalKey.cs +50 -0
- package/Editor/BeamCli/Commands/BeamFederationLocalKey.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamFederationLocalSettingsGetIFederatedGameServer.cs +67 -0
- package/Editor/BeamCli/Commands/BeamFederationLocalSettingsGetIFederatedGameServer.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamFederationLocalSettingsSetIFederatedGameServer.cs +78 -0
- package/Editor/BeamCli/Commands/BeamFederationLocalSettingsSetIFederatedGameServer.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamFetchCommandLogRecord.cs +15 -0
- package/Editor/BeamCli/Commands/BeamFetchCommandLogRecord.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamFetchTelemetryLogsResult.cs +12 -0
- package/Editor/BeamCli/Commands/BeamFetchTelemetryLogsResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamGameListCommandResults.cs +12 -0
- package/Editor/BeamCli/Commands/BeamGameListCommandResults.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamGenerateClientFileEvent.cs +13 -0
- package/Editor/BeamCli/Commands/BeamGenerateClientFileEvent.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamGenerateClientOapiCommandArgsResult.cs +12 -0
- package/Editor/BeamCli/Commands/BeamGenerateClientOapiCommandArgsResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamGenerateMkDocsCommandResult.cs +11 -0
- package/Editor/BeamCli/Commands/BeamGenerateMkDocsCommandResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamGenerateOApiCommandOutput.cs +14 -0
- package/Editor/BeamCli/Commands/BeamGenerateOApiCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamGenerateWebClientCommandArgsResult.cs +13 -0
- package/Editor/BeamCli/Commands/BeamGenerateWebClientCommandArgsResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamGetBeamOtelConfigCommandResult.cs +14 -0
- package/Editor/BeamCli/Commands/BeamGetBeamOtelConfigCommandResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamGetClickhouseCredentialsResult.cs +15 -0
- package/Editor/BeamCli/Commands/BeamGetClickhouseCredentialsResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamGetDeploymentCommandOutput.cs +12 -0
- package/Editor/BeamCli/Commands/BeamGetDeploymentCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamGetLocalRoutingKeyCommandOutput.cs +12 -0
- package/Editor/BeamCli/Commands/BeamGetLocalRoutingKeyCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamGetLogsUrlHeader.cs +13 -0
- package/Editor/BeamCli/Commands/BeamGetLogsUrlHeader.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamGetSignedUrlResponse.cs +15 -0
- package/Editor/BeamCli/Commands/BeamGetSignedUrlResponse.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamGetTokenDetailsCommandOutput.cs +24 -0
- package/Editor/BeamCli/Commands/BeamGetTokenDetailsCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamGetTokenForGuestCommandOutput.cs +17 -0
- package/Editor/BeamCli/Commands/BeamGetTokenForGuestCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamGetTokenListCommandOutput.cs +13 -0
- package/Editor/BeamCli/Commands/BeamGetTokenListCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamGetTokenListElement.cs +15 -0
- package/Editor/BeamCli/Commands/BeamGetTokenListElement.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamGetTokenViaRefreshCommandOutput.cs +17 -0
- package/Editor/BeamCli/Commands/BeamGetTokenViaRefreshCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamGetUnityVersionInfoCommandOutput.cs +14 -0
- package/Editor/BeamCli/Commands/BeamGetUnityVersionInfoCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamGrafanaOpen.cs +50 -0
- package/Editor/BeamCli/Commands/BeamGrafanaOpen.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamGrafanaPs.cs +50 -0
- package/Editor/BeamCli/Commands/BeamGrafanaPs.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamGrafanaStop.cs +50 -0
- package/Editor/BeamCli/Commands/BeamGrafanaStop.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamHostServiceDescriptor.cs +18 -0
- package/Editor/BeamCli/Commands/BeamHostServiceDescriptor.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamInit.cs +159 -0
- package/Editor/BeamCli/Commands/BeamInit.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamInitCommandResult.cs +14 -0
- package/Editor/BeamCli/Commands/BeamInitCommandResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamInvalidCidError.cs +17 -0
- package/Editor/BeamCli/Commands/BeamInvalidCidError.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamInvalidTokenError.cs +18 -0
- package/Editor/BeamCli/Commands/BeamInvalidTokenError.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamInvalidTokenErrorOutput.cs +18 -0
- package/Editor/BeamCli/Commands/BeamInvalidTokenErrorOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamListCommandResult.cs +13 -0
- package/Editor/BeamCli/Commands/BeamListCommandResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamListDeploymentsCommandOutput.cs +12 -0
- package/Editor/BeamCli/Commands/BeamListDeploymentsCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamListDepsCommandResults.cs +12 -0
- package/Editor/BeamCli/Commands/BeamListDepsCommandResults.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamListServicesCommandOutput.cs +14 -0
- package/Editor/BeamCli/Commands/BeamListServicesCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamListenPlayer.cs +58 -0
- package/Editor/BeamCli/Commands/BeamListenPlayer.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamListenServer.cs +58 -0
- package/Editor/BeamCli/Commands/BeamListenServer.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamLogin.cs +111 -0
- package/Editor/BeamCli/Commands/BeamLogin.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamLoginFailedError.cs +17 -0
- package/Editor/BeamCli/Commands/BeamLoginFailedError.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamLoginResults.cs +11 -0
- package/Editor/BeamCli/Commands/BeamLoginResults.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamLogout.cs +49 -0
- package/Editor/BeamCli/Commands/BeamLogout.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamLogoutCommandResult.cs +11 -0
- package/Editor/BeamCli/Commands/BeamLogoutCommandResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamManifestAuthor.cs +13 -0
- package/Editor/BeamCli/Commands/BeamManifestAuthor.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamManifestChecksum.cs +14 -0
- package/Editor/BeamCli/Commands/BeamManifestChecksum.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamManifestChecksums.cs +12 -0
- package/Editor/BeamCli/Commands/BeamManifestChecksums.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamManifestProjectData.cs +13 -0
- package/Editor/BeamCli/Commands/BeamManifestProjectData.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamManifestServiceEntry.cs +18 -0
- package/Editor/BeamCli/Commands/BeamManifestServiceEntry.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamManifestSnapshotItem.cs +19 -0
- package/Editor/BeamCli/Commands/BeamManifestSnapshotItem.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamManifestStorageEntry.cs +15 -0
- package/Editor/BeamCli/Commands/BeamManifestStorageEntry.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamMe.cs +59 -0
- package/Editor/BeamCli/Commands/BeamMe.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamMkdocs.cs +57 -0
- package/Editor/BeamCli/Commands/BeamMkdocs.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamNoTokenError.cs +17 -0
- package/Editor/BeamCli/Commands/BeamNoTokenError.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamNotificationPlayerOutput.cs +13 -0
- package/Editor/BeamCli/Commands/BeamNotificationPlayerOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamNotificationServerOutput.cs +13 -0
- package/Editor/BeamCli/Commands/BeamNotificationServerOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamOapiDownload.cs +67 -0
- package/Editor/BeamCli/Commands/BeamOapiDownload.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamOrgGames.cs +58 -0
- package/Editor/BeamCli/Commands/BeamOrgGames.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamOrgRealmData.cs +20 -0
- package/Editor/BeamCli/Commands/BeamOrgRealmData.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamOrgRealms.cs +58 -0
- package/Editor/BeamCli/Commands/BeamOrgRealms.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamOtelStatusResult.cs +14 -0
- package/Editor/BeamCli/Commands/BeamOtelStatusResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamPlanReleaseProgress.cs +15 -0
- package/Editor/BeamCli/Commands/BeamPlanReleaseProgress.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProfileCheckCounters.cs +69 -0
- package/Editor/BeamCli/Commands/BeamProfileCheckCounters.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProfileCheckNbomber.cs +69 -0
- package/Editor/BeamCli/Commands/BeamProfileCheckNbomber.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectAddPaths.cs +73 -0
- package/Editor/BeamCli/Commands/BeamProjectAddPaths.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectAddUnityProject.cs +50 -0
- package/Editor/BeamCli/Commands/BeamProjectAddUnityProject.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectBuild.cs +76 -0
- package/Editor/BeamCli/Commands/BeamProjectBuild.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectBuildSln.cs +58 -0
- package/Editor/BeamCli/Commands/BeamProjectBuildSln.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectDeps.cs +45 -0
- package/Editor/BeamCli/Commands/BeamProjectDeps.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectDepsAdd.cs +55 -0
- package/Editor/BeamCli/Commands/BeamProjectDepsAdd.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectDepsList.cs +73 -0
- package/Editor/BeamCli/Commands/BeamProjectDepsList.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectDepsRemove.cs +55 -0
- package/Editor/BeamCli/Commands/BeamProjectDepsRemove.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectDisable.cs +91 -0
- package/Editor/BeamCli/Commands/BeamProjectDisable.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectEnable.cs +91 -0
- package/Editor/BeamCli/Commands/BeamProjectEnable.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectErrorReport.cs +13 -0
- package/Editor/BeamCli/Commands/BeamProjectErrorReport.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectErrorResult.cs +16 -0
- package/Editor/BeamCli/Commands/BeamProjectErrorResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectGenerateClient.cs +153 -0
- package/Editor/BeamCli/Commands/BeamProjectGenerateClient.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectGenerateClientOapi.cs +76 -0
- package/Editor/BeamCli/Commands/BeamProjectGenerateClientOapi.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectGenerateEnv.cs +101 -0
- package/Editor/BeamCli/Commands/BeamProjectGenerateEnv.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectGenerateProperties.cs +67 -0
- package/Editor/BeamCli/Commands/BeamProjectGenerateProperties.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectGenerateWebClient.cs +66 -0
- package/Editor/BeamCli/Commands/BeamProjectGenerateWebClient.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectList.cs +50 -0
- package/Editor/BeamCli/Commands/BeamProjectList.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectLogs.cs +69 -0
- package/Editor/BeamCli/Commands/BeamProjectLogs.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectNewCommonLib.cs +65 -0
- package/Editor/BeamCli/Commands/BeamProjectNewCommonLib.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectNewService.cs +108 -0
- package/Editor/BeamCli/Commands/BeamProjectNewService.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectNewStorage.cs +94 -0
- package/Editor/BeamCli/Commands/BeamProjectNewStorage.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectOapi.cs +69 -0
- package/Editor/BeamCli/Commands/BeamProjectOapi.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectOpen.cs +67 -0
- package/Editor/BeamCli/Commands/BeamProjectOpen.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectOpenMongo.cs +53 -0
- package/Editor/BeamCli/Commands/BeamProjectOpenMongo.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectOpenSwagger.cs +74 -0
- package/Editor/BeamCli/Commands/BeamProjectOpenSwagger.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectPs.cs +105 -0
- package/Editor/BeamCli/Commands/BeamProjectPs.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectReadSettings.cs +69 -0
- package/Editor/BeamCli/Commands/BeamProjectReadSettings.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectRegenerate.cs +71 -0
- package/Editor/BeamCli/Commands/BeamProjectRegenerate.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectRemoteLogs.cs +83 -0
- package/Editor/BeamCli/Commands/BeamProjectRemoteLogs.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectRemove.cs +105 -0
- package/Editor/BeamCli/Commands/BeamProjectRemove.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectRun.cs +136 -0
- package/Editor/BeamCli/Commands/BeamProjectRun.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectSettingsOutput.cs +13 -0
- package/Editor/BeamCli/Commands/BeamProjectSettingsOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectStop.cs +76 -0
- package/Editor/BeamCli/Commands/BeamProjectStop.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectStorageErase.cs +61 -0
- package/Editor/BeamCli/Commands/BeamProjectStorageErase.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectStorageRestore.cs +75 -0
- package/Editor/BeamCli/Commands/BeamProjectStorageRestore.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectStorageSnapshot.cs +68 -0
- package/Editor/BeamCli/Commands/BeamProjectStorageSnapshot.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamProjectWriteSetting.cs +95 -0
- package/Editor/BeamCli/Commands/BeamProjectWriteSetting.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamReadProjectSettingsCommandOutput.cs +12 -0
- package/Editor/BeamCli/Commands/BeamReadProjectSettingsCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamRealmConfigOutput.cs +12 -0
- package/Editor/BeamCli/Commands/BeamRealmConfigOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamRealmRole.cs +13 -0
- package/Editor/BeamCli/Commands/BeamRealmRole.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamRealmsListCommandOutput.cs +14 -0
- package/Editor/BeamCli/Commands/BeamRealmsListCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamReleaseSharedUnityCodeCommandOutput.cs +12 -0
- package/Editor/BeamCli/Commands/BeamReleaseSharedUnityCodeCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamRemoteServiceDescriptor.cs +16 -0
- package/Editor/BeamCli/Commands/BeamRemoteServiceDescriptor.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamRemoteStorageDescriptor.cs +13 -0
- package/Editor/BeamCli/Commands/BeamRemoteStorageDescriptor.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamRemoveFederationCommandOutput.cs +11 -0
- package/Editor/BeamCli/Commands/BeamRemoveFederationCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamReportTelemetryResult.cs +12 -0
- package/Editor/BeamCli/Commands/BeamReportTelemetryResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamRequestCliCommandOutput.cs +11 -0
- package/Editor/BeamCli/Commands/BeamRequestCliCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamRequiredFileEdit.cs +22 -0
- package/Editor/BeamCli/Commands/BeamRequiredFileEdit.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamRestoreProjectCommandOutput.cs +11 -0
- package/Editor/BeamCli/Commands/BeamRestoreProjectCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamRestoreStorageObjectCommandOutput.cs +11 -0
- package/Editor/BeamCli/Commands/BeamRestoreStorageObjectCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamRunFailErrorOutput.cs +18 -0
- package/Editor/BeamCli/Commands/BeamRunFailErrorOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamRunProjectBuildErrorStream.cs +13 -0
- package/Editor/BeamCli/Commands/BeamRunProjectBuildErrorStream.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamRunProjectResultStream.cs +14 -0
- package/Editor/BeamCli/Commands/BeamRunProjectResultStream.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamSaveProjectPathsCommandResults.cs +11 -0
- package/Editor/BeamCli/Commands/BeamSaveProjectPathsCommandResults.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServeCliCommandOutput.cs +13 -0
- package/Editor/BeamCli/Commands/BeamServeCliCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServerClear.cs +79 -0
- package/Editor/BeamCli/Commands/BeamServerClear.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServerDescriptor.cs +17 -0
- package/Editor/BeamCli/Commands/BeamServerDescriptor.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServerKillCommandResult.cs +12 -0
- package/Editor/BeamCli/Commands/BeamServerKillCommandResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServerPs.cs +79 -0
- package/Editor/BeamCli/Commands/BeamServerPs.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServerPsCommandResult.cs +12 -0
- package/Editor/BeamCli/Commands/BeamServerPsCommandResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServerReq.cs +65 -0
- package/Editor/BeamCli/Commands/BeamServerReq.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServerServe.cs +102 -0
- package/Editor/BeamCli/Commands/BeamServerServe.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServiceDependenciesPair.cs +13 -0
- package/Editor/BeamCli/Commands/BeamServiceDependenciesPair.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServiceDeployReportResult.cs +13 -0
- package/Editor/BeamCli/Commands/BeamServiceDeployReportResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServiceFederationChange.cs +14 -0
- package/Editor/BeamCli/Commands/BeamServiceFederationChange.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServiceFederations.cs +14 -0
- package/Editor/BeamCli/Commands/BeamServiceFederations.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServiceImageIdChange.cs +14 -0
- package/Editor/BeamCli/Commands/BeamServiceImageIdChange.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServiceInstance.cs +18 -0
- package/Editor/BeamCli/Commands/BeamServiceInstance.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServiceListResult.cs +27 -0
- package/Editor/BeamCli/Commands/BeamServiceListResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServiceLogProviderChange.cs +14 -0
- package/Editor/BeamCli/Commands/BeamServiceLogProviderChange.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServiceManifestOutput.cs +12 -0
- package/Editor/BeamCli/Commands/BeamServiceManifestOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServiceRemoteDeployProgressResult.cs +14 -0
- package/Editor/BeamCli/Commands/BeamServiceRemoteDeployProgressResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServiceRunProgressResult.cs +13 -0
- package/Editor/BeamCli/Commands/BeamServiceRunProgressResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServiceRunReportResult.cs +13 -0
- package/Editor/BeamCli/Commands/BeamServiceRunReportResult.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServiceStatus.cs +16 -0
- package/Editor/BeamCli/Commands/BeamServiceStatus.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServiceTemplate.cs +12 -0
- package/Editor/BeamCli/Commands/BeamServiceTemplate.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServicesBuild.cs +135 -0
- package/Editor/BeamCli/Commands/BeamServicesBuild.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServicesBuildCommandOutput.cs +14 -0
- package/Editor/BeamCli/Commands/BeamServicesBuildCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServicesBuiltProgress.cs +14 -0
- package/Editor/BeamCli/Commands/BeamServicesBuiltProgress.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServicesDeploy.cs +96 -0
- package/Editor/BeamCli/Commands/BeamServicesDeploy.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServicesDockerStart.cs +59 -0
- package/Editor/BeamCli/Commands/BeamServicesDockerStart.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServicesDockerStatus.cs +59 -0
- package/Editor/BeamCli/Commands/BeamServicesDockerStatus.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServicesForRouteCollection.cs +15 -0
- package/Editor/BeamCli/Commands/BeamServicesForRouteCollection.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServicesGetConnectionString.cs +69 -0
- package/Editor/BeamCli/Commands/BeamServicesGetConnectionString.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServicesGetConnectionStringCommandOutput.cs +12 -0
- package/Editor/BeamCli/Commands/BeamServicesGetConnectionStringCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServicesManifests.cs +65 -0
- package/Editor/BeamCli/Commands/BeamServicesManifests.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServicesPromote.cs +59 -0
- package/Editor/BeamCli/Commands/BeamServicesPromote.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServicesPs.cs +58 -0
- package/Editor/BeamCli/Commands/BeamServicesPs.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServicesRegistry.cs +50 -0
- package/Editor/BeamCli/Commands/BeamServicesRegistry.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServicesRegistryOutput.cs +12 -0
- package/Editor/BeamCli/Commands/BeamServicesRegistryOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServicesResetContainer.cs +70 -0
- package/Editor/BeamCli/Commands/BeamServicesResetContainer.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServicesResetContainerCommandOutput.cs +13 -0
- package/Editor/BeamCli/Commands/BeamServicesResetContainerCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServicesResetImage.cs +70 -0
- package/Editor/BeamCli/Commands/BeamServicesResetImage.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServicesResetImageCommandOutput.cs +13 -0
- package/Editor/BeamCli/Commands/BeamServicesResetImageCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServicesRun.cs +88 -0
- package/Editor/BeamCli/Commands/BeamServicesRun.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServicesServiceLogs.cs +58 -0
- package/Editor/BeamCli/Commands/BeamServicesServiceLogs.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServicesServiceMetrics.cs +65 -0
- package/Editor/BeamCli/Commands/BeamServicesServiceMetrics.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServicesStop.cs +64 -0
- package/Editor/BeamCli/Commands/BeamServicesStop.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServicesTemplates.cs +50 -0
- package/Editor/BeamCli/Commands/BeamServicesTemplates.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServicesTemplatesCommandOutput.cs +12 -0
- package/Editor/BeamCli/Commands/BeamServicesTemplatesCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServicesUpdateDockerfile.cs +50 -0
- package/Editor/BeamCli/Commands/BeamServicesUpdateDockerfile.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServicesUploadApi.cs +50 -0
- package/Editor/BeamCli/Commands/BeamServicesUploadApi.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamServicesUploadApiOutput.cs +12 -0
- package/Editor/BeamCli/Commands/BeamServicesUploadApiOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamSetAllFederationsCommandOutput.cs +11 -0
- package/Editor/BeamCli/Commands/BeamSetAllFederationsCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamSetBeamOtelConfigCommandResults.cs +11 -0
- package/Editor/BeamCli/Commands/BeamSetBeamOtelConfigCommandResults.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamSetEnabledCommandArgsOutput.cs +12 -0
- package/Editor/BeamCli/Commands/BeamSetEnabledCommandArgsOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamSetEnabledCommandComponent.cs +13 -0
- package/Editor/BeamCli/Commands/BeamSetEnabledCommandComponent.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamSettingOutput.cs +13 -0
- package/Editor/BeamCli/Commands/BeamSettingOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamShowCurrentBeamoStatusCommandOutput.cs +12 -0
- package/Editor/BeamCli/Commands/BeamShowCurrentBeamoStatusCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamShowManifestCommandOutput.cs +16 -0
- package/Editor/BeamCli/Commands/BeamShowManifestCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamSnapshotStorageObjectCommandOutput.cs +11 -0
- package/Editor/BeamCli/Commands/BeamSnapshotStorageObjectCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamStartDockerCommandOutput.cs +16 -0
- package/Editor/BeamCli/Commands/BeamStartDockerCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamStartGrafanaCommandResults.cs +11 -0
- package/Editor/BeamCli/Commands/BeamStartGrafanaCommandResults.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamStopProjectCommandOutput.cs +13 -0
- package/Editor/BeamCli/Commands/BeamStopProjectCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamTailLogMessageForClient.cs +15 -0
- package/Editor/BeamCli/Commands/BeamTailLogMessageForClient.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamTelemetryCollector.cs +45 -0
- package/Editor/BeamCli/Commands/BeamTelemetryCollector.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamTelemetryCollectorGet.cs +66 -0
- package/Editor/BeamCli/Commands/BeamTelemetryCollectorGet.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamTelemetryCollectorPs.cs +64 -0
- package/Editor/BeamCli/Commands/BeamTelemetryCollectorPs.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamTelemetryConfig.cs +50 -0
- package/Editor/BeamCli/Commands/BeamTelemetryConfig.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamTelemetryGetCreds.cs +50 -0
- package/Editor/BeamCli/Commands/BeamTelemetryGetCreds.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamTelemetryLogs.cs +100 -0
- package/Editor/BeamCli/Commands/BeamTelemetryLogs.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamTelemetryPrune.cs +67 -0
- package/Editor/BeamCli/Commands/BeamTelemetryPrune.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamTelemetryPush.cs +60 -0
- package/Editor/BeamCli/Commands/BeamTelemetryPush.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamTelemetryReport.cs +62 -0
- package/Editor/BeamCli/Commands/BeamTelemetryReport.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamTelemetryReportStatus.cs +14 -0
- package/Editor/BeamCli/Commands/BeamTelemetryReportStatus.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamTelemetrySetConfig.cs +63 -0
- package/Editor/BeamCli/Commands/BeamTelemetrySetConfig.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamTelemetryStatus.cs +50 -0
- package/Editor/BeamCli/Commands/BeamTelemetryStatus.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamTempClearLogs.cs +65 -0
- package/Editor/BeamCli/Commands/BeamTempClearLogs.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamTokenFromRefresh.cs +58 -0
- package/Editor/BeamCli/Commands/BeamTokenFromRefresh.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamTokenInspect.cs +70 -0
- package/Editor/BeamCli/Commands/BeamTokenInspect.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamTokenList.cs +86 -0
- package/Editor/BeamCli/Commands/BeamTokenList.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamTokenNewGuest.cs +73 -0
- package/Editor/BeamCli/Commands/BeamTokenNewGuest.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamUnityAssemblyReferenceData.cs +13 -0
- package/Editor/BeamCli/Commands/BeamUnityAssemblyReferenceData.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamUnityCopyDotnetSrc.cs +59 -0
- package/Editor/BeamCli/Commands/BeamUnityCopyDotnetSrc.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamUnityDownloadAllNugetPackages.cs +55 -0
- package/Editor/BeamCli/Commands/BeamUnityDownloadAllNugetPackages.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamUnityDownloadNugetPackage.cs +67 -0
- package/Editor/BeamCli/Commands/BeamUnityDownloadNugetPackage.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamUnityGetVersionInfo.cs +55 -0
- package/Editor/BeamCli/Commands/BeamUnityGetVersionInfo.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamUnityManifest.cs +50 -0
- package/Editor/BeamCli/Commands/BeamUnityManifest.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamUnityReleaseSharedCode.cs +71 -0
- package/Editor/BeamCli/Commands/BeamUnityReleaseSharedCode.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamUnityRestore.cs +58 -0
- package/Editor/BeamCli/Commands/BeamUnityRestore.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamUnityUpdateDlls.cs +72 -0
- package/Editor/BeamCli/Commands/BeamUnityUpdateDlls.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamUnityUpdateReferences.cs +79 -0
- package/Editor/BeamCli/Commands/BeamUnityUpdateReferences.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamVersion.cs +49 -0
- package/Editor/BeamCli/Commands/BeamVersion.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamVersionConstruct.cs +98 -0
- package/Editor/BeamCli/Commands/BeamVersionConstruct.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamVersionResults.cs +15 -0
- package/Editor/BeamCli/Commands/BeamVersionResults.cs.meta +11 -0
- package/Editor/BeamCli/Commands/BeamWriteProjectSettingsCommandOutput.cs +11 -0
- package/Editor/BeamCli/Commands/BeamWriteProjectSettingsCommandOutput.cs.meta +11 -0
- package/Editor/BeamCli/Commands/Directory.Build.Props +13 -0
- package/Editor/BeamCli/Commands/Directory.Build.Props.meta +7 -0
- package/Editor/BeamCli/Commands.meta +8 -0
- package/Editor/BeamCli/Extensions/BeamManifestServiceEntry_ComputedTypes.cs +53 -0
- package/Editor/BeamCli/Extensions/BeamManifestServiceEntry_ComputedTypes.cs.meta +3 -0
- package/Editor/BeamCli/Extensions/BeamManifestStorageEntry_ComputedTypes.cs +10 -0
- package/Editor/BeamCli/Extensions/BeamManifestStorageEntry_ComputedTypes.cs.meta +3 -0
- package/Editor/BeamCli/Extensions/DiscoveryExtensions.cs +41 -0
- package/Editor/BeamCli/Extensions/DiscoveryExtensions.cs.meta +3 -0
- package/Editor/BeamCli/Extensions/FederationsConfig.cs +22 -0
- package/Editor/BeamCli/Extensions/FederationsConfig.cs.meta +3 -0
- package/Editor/BeamCli/Extensions.meta +3 -0
- package/Editor/BeamCli/UI/BeamCliJsonPopup.cs +29 -0
- package/Editor/BeamCli/UI/BeamCliJsonPopup.cs.meta +3 -0
- package/Editor/BeamCli/UI/BeamCliTextPopup.cs +32 -0
- package/Editor/BeamCli/UI/BeamCliTextPopup.cs.meta +3 -0
- package/Editor/BeamCli/UI/BeamCliWindow.cs +174 -0
- package/Editor/BeamCli/UI/BeamCliWindow.cs.meta +3 -0
- package/Editor/BeamCli/UI/BeamCliWindow_Commands.cs +512 -0
- package/Editor/BeamCli/UI/BeamCliWindow_Commands.cs.meta +3 -0
- package/Editor/BeamCli/UI/BeamCliWindow_Otel.cs +72 -0
- package/Editor/BeamCli/UI/BeamCliWindow_Otel.cs.meta +3 -0
- package/Editor/BeamCli/UI/BeamCliWindow_Overrides.cs +117 -0
- package/Editor/BeamCli/UI/BeamCliWindow_Overrides.cs.meta +3 -0
- package/Editor/BeamCli/UI/BeamCliWindow_Server.cs +156 -0
- package/Editor/BeamCli/UI/BeamCliWindow_Server.cs.meta +3 -0
- package/Editor/BeamCli/UI/BeamCliWindow_Terminal.cs +207 -0
- package/Editor/BeamCli/UI/BeamCliWindow_Terminal.cs.meta +3 -0
- package/Editor/BeamCli/UI/BeamCliWindow_Util.cs +336 -0
- package/Editor/BeamCli/UI/BeamCliWindow_Util.cs.meta +3 -0
- package/Editor/BeamCli/UI/JsonHighlighterUtil.cs +143 -0
- package/Editor/BeamCli/UI/JsonHighlighterUtil.cs.meta +3 -0
- package/Editor/BeamCli/UI/LogUtil/LogViewUtil.cs +727 -0
- package/Editor/BeamCli/UI/LogUtil/LogViewUtil.cs.meta +3 -0
- package/Editor/BeamCli/UI/LogUtil.meta +3 -0
- package/Editor/BeamCli/UI/TimeDisplayUtil.cs +22 -0
- package/Editor/BeamCli/UI/TimeDisplayUtil.cs.meta +3 -0
- package/Editor/BeamCli/UI.meta +3 -0
- package/Editor/BeamCli.meta +3 -0
- package/Editor/BeamEditor.cs +733 -0
- package/Editor/BeamEditor.cs.meta +11 -0
- package/Editor/BeamableLinker.cs +77 -0
- package/Editor/BeamableLinker.cs.meta +11 -0
- package/Editor/BuildPostProcessor.cs +44 -0
- package/Editor/BuildPostProcessor.cs.meta +3 -0
- package/Editor/BuildPreProcessor.cs +264 -0
- package/Editor/BuildPreProcessor.cs.meta +11 -0
- package/Editor/Config/AccountManagementConfiguration.asset +24 -0
- package/Editor/Config/AccountManagementConfiguration.asset.meta +8 -0
- package/Editor/Config/AvatarConfiguration.asset +41 -0
- package/Editor/Config/AvatarConfiguration.asset.meta +8 -0
- package/Editor/Config/ConsoleConfiguration.asset +15 -0
- package/Editor/Config/ConsoleConfiguration.asset.meta +8 -0
- package/Editor/Config/ContentConfiguration.asset +15 -0
- package/Editor/Config/ContentConfiguration.asset.meta +8 -0
- package/Editor/Config/CoreConfiguration.asset +84 -0
- package/Editor/Config/CoreConfiguration.asset.meta +8 -0
- package/Editor/Config/EditorConfiguration.asset +22 -0
- package/Editor/Config/EditorConfiguration.asset.meta +8 -0
- package/Editor/Config/InventoryConfiguration.asset +17 -0
- package/Editor/Config/InventoryConfiguration.asset.meta +8 -0
- package/Editor/Config/MicroserviceConfiguration.asset +15 -0
- package/Editor/Config/MicroserviceConfiguration.asset.meta +8 -0
- package/Editor/Config/SessionConfiguration.asset +15 -0
- package/Editor/Config/SessionConfiguration.asset.meta +8 -0
- package/Editor/Config/ShopConfiguration.asset +19 -0
- package/Editor/Config/ShopConfiguration.asset.meta +8 -0
- package/Editor/Config/SoundConfiguration.asset +15 -0
- package/Editor/Config/SoundConfiguration.asset.meta +8 -0
- package/Editor/Config/ThemeConfiguration.asset +15 -0
- package/Editor/Config/ThemeConfiguration.asset.meta +8 -0
- package/Editor/Config/TournamentsConfiguration.asset +16 -0
- package/Editor/Config/TournamentsConfiguration.asset.meta +8 -0
- package/Editor/Config.meta +8 -0
- package/Editor/ContentService/CliContentService.cs +920 -0
- package/Editor/ContentService/CliContentService.cs.meta +3 -0
- package/Editor/ContentService/ContentBaker.cs +199 -0
- package/Editor/ContentService/ContentBaker.cs.meta +11 -0
- package/Editor/ContentService/ContentUtils.cs +79 -0
- package/Editor/ContentService/ContentUtils.cs.meta +11 -0
- package/Editor/ContentService.meta +3 -0
- package/Editor/Dotnet/DotnetService.cs +193 -0
- package/Editor/Dotnet/DotnetService.cs.meta +3 -0
- package/Editor/Dotnet/DotnetUtil.cs +296 -0
- package/Editor/Dotnet/DotnetUtil.cs.meta +3 -0
- package/Editor/Dotnet.meta +3 -0
- package/Editor/EditorAPI.cs +4 -0
- package/Editor/EditorAPI.cs.meta +11 -0
- package/Editor/EditorPlatformRequesterErrorHandler.cs +28 -0
- package/Editor/EditorPlatformRequesterErrorHandler.cs.meta +3 -0
- package/Editor/EditorRuntimeConfigProvider.cs +19 -0
- package/Editor/EditorRuntimeConfigProvider.cs.meta +3 -0
- package/Editor/EditorStorageLayer.cs +40 -0
- package/Editor/EditorStorageLayer.cs.meta +3 -0
- package/Editor/Eggs/EggEntry.cs +38 -0
- package/Editor/Eggs/EggEntry.cs.meta +3 -0
- package/Editor/Eggs/Serpent/EggSerpent.cs +209 -0
- package/Editor/Eggs/Serpent/EggSerpent.cs.meta +3 -0
- package/Editor/Eggs/Serpent.meta +3 -0
- package/Editor/Eggs.meta +3 -0
- package/Editor/Environment/BeamableDiagnosticData.cs +198 -0
- package/Editor/Environment/BeamableDiagnosticData.cs.meta +11 -0
- package/Editor/Environment/BeamableEditorWebRequester.cs +62 -0
- package/Editor/Environment/BeamableEditorWebRequester.cs.meta +11 -0
- package/Editor/Environment/BeamablePackages.cs +90 -0
- package/Editor/Environment/BeamablePackages.cs.meta +11 -0
- package/Editor/Environment/IEditorHttpRequester.cs +49 -0
- package/Editor/Environment/IEditorHttpRequester.cs.meta +11 -0
- package/Editor/Environment.meta +8 -0
- package/Editor/FileAssetModificationProcessor.cs +49 -0
- package/Editor/FileAssetModificationProcessor.cs.meta +3 -0
- package/Editor/LibraryService.cs +297 -0
- package/Editor/LibraryService.cs.meta +3 -0
- package/Editor/Modules/Account/BeamableSocialsImporter.cs +59 -0
- package/Editor/Modules/Account/BeamableSocialsImporter.cs.meta +3 -0
- package/Editor/Modules/Account/EditorAuthService.cs +244 -0
- package/Editor/Modules/Account/EditorAuthService.cs.meta +11 -0
- package/Editor/Modules/Account/PortalCommand.cs +37 -0
- package/Editor/Modules/Account/PortalCommand.cs.meta +11 -0
- package/Editor/Modules/Account.meta +8 -0
- package/Editor/Modules/Content/CalendarWindow.cs +185 -0
- package/Editor/Modules/Content/CalendarWindow.cs.meta +3 -0
- package/Editor/Modules/Content/ContentObjectPropertyDrawer.cs +26 -0
- package/Editor/Modules/Content/ContentObjectPropertyDrawer.cs.meta +11 -0
- package/Editor/Modules/Content/ContentPropertyDrawer.cs +372 -0
- package/Editor/Modules/Content/ContentPropertyDrawer.cs.meta +11 -0
- package/Editor/Modules/Content/ContentValidationPropertyDrawer.cs +307 -0
- package/Editor/Modules/Content/ContentValidationPropertyDrawer.cs.meta +11 -0
- package/Editor/Modules/Content/DatePropertyDrawer.cs +355 -0
- package/Editor/Modules/Content/DatePropertyDrawer.cs.meta +3 -0
- package/Editor/Modules/Content/DefaultAssets~/currency/icon.png +0 -0
- package/Editor/Modules/Content/DefaultAssets~/currency/icon.png.meta +99 -0
- package/Editor/Modules/Content/DefaultAssets~/currency.meta +8 -0
- package/Editor/Modules/Content/DefaultContent/currency/coins.asset +29 -0
- package/Editor/Modules/Content/DefaultContent/currency/coins.asset.meta +8 -0
- package/Editor/Modules/Content/DefaultContent/currency/gems.asset +29 -0
- package/Editor/Modules/Content/DefaultContent/currency/gems.asset.meta +8 -0
- package/Editor/Modules/Content/DefaultContent/currency.meta +8 -0
- package/Editor/Modules/Content/DefaultContent/emails/password_update.asset +18 -0
- package/Editor/Modules/Content/DefaultContent/emails/password_update.asset.meta +8 -0
- package/Editor/Modules/Content/DefaultContent/emails.meta +8 -0
- package/Editor/Modules/Content/DefaultContent/game_types/default1.asset +45 -0
- package/Editor/Modules/Content/DefaultContent/game_types/default1.asset.meta +8 -0
- package/Editor/Modules/Content/DefaultContent/game_types/default2.asset +45 -0
- package/Editor/Modules/Content/DefaultContent/game_types/default2.asset.meta +8 -0
- package/Editor/Modules/Content/DefaultContent/game_types.meta +8 -0
- package/Editor/Modules/Content/DefaultContent/leaderboards/default.asset +28 -0
- package/Editor/Modules/Content/DefaultContent/leaderboards/default.asset.meta +8 -0
- package/Editor/Modules/Content/DefaultContent/leaderboards.meta +8 -0
- package/Editor/Modules/Content/DefaultContent/tournaments/default.asset +148 -0
- package/Editor/Modules/Content/DefaultContent/tournaments/default.asset.meta +8 -0
- package/Editor/Modules/Content/DefaultContent/tournaments.meta +8 -0
- package/Editor/Modules/Content/DefaultContent.meta +3 -0
- package/Editor/Modules/Content/EventSchedulePropertyDrawer.cs +87 -0
- package/Editor/Modules/Content/EventSchedulePropertyDrawer.cs.meta +3 -0
- package/Editor/Modules/Content/Icons/Add_new.png +0 -0
- package/Editor/Modules/Content/Icons/Add_new.png.meta +132 -0
- package/Editor/Modules/Content/Icons/Add_no_sync_up.png +0 -0
- package/Editor/Modules/Content/Icons/Add_no_sync_up.png.meta +132 -0
- package/Editor/Modules/Content/Icons/All_good.png +0 -0
- package/Editor/Modules/Content/Icons/All_good.png.meta +132 -0
- package/Editor/Modules/Content/Icons/Deleted.png +0 -0
- package/Editor/Modules/Content/Icons/Deleted.png.meta +132 -0
- package/Editor/Modules/Content/Icons/Draw close.png +0 -0
- package/Editor/Modules/Content/Icons/Draw close.png.meta +132 -0
- package/Editor/Modules/Content/Icons/Edit.png +0 -0
- package/Editor/Modules/Content/Icons/Edit.png.meta +132 -0
- package/Editor/Modules/Content/Icons/background.png +0 -0
- package/Editor/Modules/Content/Icons/background.png.meta +132 -0
- package/Editor/Modules/Content/Icons/base.png +0 -0
- package/Editor/Modules/Content/Icons/base.png.meta +132 -0
- package/Editor/Modules/Content/Icons/changed_no_sync_up.png +0 -0
- package/Editor/Modules/Content/Icons/changed_no_sync_up.png.meta +132 -0
- package/Editor/Modules/Content/Icons/close-click.png +0 -0
- package/Editor/Modules/Content/Icons/close-click.png.meta +88 -0
- package/Editor/Modules/Content/Icons/close.png +0 -0
- package/Editor/Modules/Content/Icons/close.png.meta +88 -0
- package/Editor/Modules/Content/Icons/cloud.png +0 -0
- package/Editor/Modules/Content/Icons/cloud.png.meta +132 -0
- package/Editor/Modules/Content/Icons/deleted 1.png +0 -0
- package/Editor/Modules/Content/Icons/deleted 1.png.meta +88 -0
- package/Editor/Modules/Content/Icons/deleted2.png +0 -0
- package/Editor/Modules/Content/Icons/deleted2.png.meta +88 -0
- package/Editor/Modules/Content/Icons/draw_open.png +0 -0
- package/Editor/Modules/Content/Icons/draw_open.png.meta +132 -0
- package/Editor/Modules/Content/Icons/edit2.png +0 -0
- package/Editor/Modules/Content/Icons/edit2.png.meta +88 -0
- package/Editor/Modules/Content/Icons/info.png +0 -0
- package/Editor/Modules/Content/Icons/info.png.meta +132 -0
- package/Editor/Modules/Content/Icons/local.png +0 -0
- package/Editor/Modules/Content/Icons/local.png.meta +132 -0
- package/Editor/Modules/Content/Icons/open-click.png +0 -0
- package/Editor/Modules/Content/Icons/open-click.png.meta +88 -0
- package/Editor/Modules/Content/Icons/open.png +0 -0
- package/Editor/Modules/Content/Icons/open.png.meta +88 -0
- package/Editor/Modules/Content/Icons/remove_no_sync_up.png +0 -0
- package/Editor/Modules/Content/Icons/remove_no_sync_up.png.meta +132 -0
- package/Editor/Modules/Content/Icons.meta +8 -0
- package/Editor/Modules/Content/OptionalPropertyDrawer.cs +80 -0
- package/Editor/Modules/Content/OptionalPropertyDrawer.cs.meta +11 -0
- package/Editor/Modules/Content/PropertyDrawerHelper.cs +44 -0
- package/Editor/Modules/Content/PropertyDrawerHelper.cs.meta +3 -0
- package/Editor/Modules/Content/ScheduleDefinitionPropertyDrawer.cs +554 -0
- package/Editor/Modules/Content/ScheduleDefinitionPropertyDrawer.cs.meta +3 -0
- package/Editor/Modules/Content/SerializedContentObject.cs +12 -0
- package/Editor/Modules/Content/SerializedContentObject.cs.meta +11 -0
- package/Editor/Modules/Content/UI/ContentObjectEditor.cs +390 -0
- package/Editor/Modules/Content/UI/ContentObjectEditor.cs.meta +11 -0
- package/Editor/Modules/Content/UI/DisplayableListPropertyDrawer.cs +47 -0
- package/Editor/Modules/Content/UI/DisplayableListPropertyDrawer.cs.meta +11 -0
- package/Editor/Modules/Content/UI/EditorValidationContext.cs +7 -0
- package/Editor/Modules/Content/UI/EditorValidationContext.cs.meta +11 -0
- package/Editor/Modules/Content/UI/SerializedDictionaryEditor.cs +208 -0
- package/Editor/Modules/Content/UI/SerializedDictionaryEditor.cs.meta +11 -0
- package/Editor/Modules/Content/UI.meta +8 -0
- package/Editor/Modules/Content.meta +8 -0
- package/Editor/Modules/ContentTypes/ContentTypesCreator.cs +58 -0
- package/Editor/Modules/ContentTypes/ContentTypesCreator.cs.meta +11 -0
- package/Editor/Modules/ContentTypes/ScriptTemplates/Content.cs.txt +16 -0
- package/Editor/Modules/ContentTypes/ScriptTemplates/Content.cs.txt.meta +3 -0
- package/Editor/Modules/ContentTypes/ScriptTemplates/CurrencyContent.cs.txt +14 -0
- package/Editor/Modules/ContentTypes/ScriptTemplates/CurrencyContent.cs.txt.meta +3 -0
- package/Editor/Modules/ContentTypes/ScriptTemplates/ItemContent.cs.txt +14 -0
- package/Editor/Modules/ContentTypes/ScriptTemplates/ItemContent.cs.txt.meta +3 -0
- package/Editor/Modules/ContentTypes/ScriptTemplates.meta +8 -0
- package/Editor/Modules/ContentTypes.meta +8 -0
- package/Editor/Modules/EditorConfig/EditorConfiguration.cs +209 -0
- package/Editor/Modules/EditorConfig/EditorConfiguration.cs.meta +11 -0
- package/Editor/Modules/EditorConfig.meta +8 -0
- package/Editor/Modules/Input/Beamable.Editor.Input.asmdef +17 -0
- package/Editor/Modules/Input/Beamable.Editor.Input.asmdef.meta +3 -0
- package/Editor/Modules/Input/InputActionPropertyDrawer.cs +138 -0
- package/Editor/Modules/Input/InputActionPropertyDrawer.cs.meta +3 -0
- package/Editor/Modules/Input.meta +8 -0
- package/Editor/Modules/Player/ObservableReadonlyListPropertyDrawer.cs +21 -0
- package/Editor/Modules/Player/ObservableReadonlyListPropertyDrawer.cs.meta +3 -0
- package/Editor/Modules/Player.meta +3 -0
- package/Editor/Modules/Purchasing/BeamablePurchaserImporter.cs +74 -0
- package/Editor/Modules/Purchasing/BeamablePurchaserImporter.cs.meta +11 -0
- package/Editor/Modules/Purchasing.meta +3 -0
- package/Editor/Modules/Sessions/DeviceOptionPropertyDrawer.cs +56 -0
- package/Editor/Modules/Sessions/DeviceOptionPropertyDrawer.cs.meta +11 -0
- package/Editor/Modules/Sessions/SessionParameterProviderCreator.cs +111 -0
- package/Editor/Modules/Sessions/SessionParameterProviderCreator.cs.meta +11 -0
- package/Editor/Modules/Sessions/SessionParameterProviderEditor.cs +25 -0
- package/Editor/Modules/Sessions/SessionParameterProviderEditor.cs.meta +11 -0
- package/Editor/Modules/Sessions.meta +8 -0
- package/Editor/Modules/Stats/StatEditor.cs +18 -0
- package/Editor/Modules/Stats/StatEditor.cs.meta +11 -0
- package/Editor/Modules/Stats.meta +8 -0
- package/Editor/Modules/Theme/ButtonStyleObject.cs +9 -0
- package/Editor/Modules/Theme/ButtonStyleObject.cs.meta +11 -0
- package/Editor/Modules/Theme/CanHideDrawer.cs +34 -0
- package/Editor/Modules/Theme/CanHideDrawer.cs.meta +11 -0
- package/Editor/Modules/Theme/ColorStyleObject.cs +9 -0
- package/Editor/Modules/Theme/ColorStyleObject.cs.meta +11 -0
- package/Editor/Modules/Theme/FilterSelection.cs +41 -0
- package/Editor/Modules/Theme/FilterSelection.cs.meta +11 -0
- package/Editor/Modules/Theme/FontStyleObject.cs +9 -0
- package/Editor/Modules/Theme/FontStyleObject.cs.meta +11 -0
- package/Editor/Modules/Theme/GradientStyleObject.cs +9 -0
- package/Editor/Modules/Theme/GradientStyleObject.cs.meta +11 -0
- package/Editor/Modules/Theme/ImageStyleObject.cs +9 -0
- package/Editor/Modules/Theme/ImageStyleObject.cs.meta +11 -0
- package/Editor/Modules/Theme/LayoutStyleObject.cs +9 -0
- package/Editor/Modules/Theme/LayoutStyleObject.cs.meta +11 -0
- package/Editor/Modules/Theme/PaletteStyleObject.cs +30 -0
- package/Editor/Modules/Theme/PaletteStyleObject.cs.meta +11 -0
- package/Editor/Modules/Theme/SelectableStyleObject.cs +9 -0
- package/Editor/Modules/Theme/SelectableStyleObject.cs.meta +11 -0
- package/Editor/Modules/Theme/SoundStyleObject.cs +9 -0
- package/Editor/Modules/Theme/SoundStyleObject.cs.meta +11 -0
- package/Editor/Modules/Theme/StringStyleObject.cs +9 -0
- package/Editor/Modules/Theme/StringStyleObject.cs.meta +11 -0
- package/Editor/Modules/Theme/Style/ButtonStyleObjectPropertyDrawer.cs +61 -0
- package/Editor/Modules/Theme/Style/ButtonStyleObjectPropertyDrawer.cs.meta +11 -0
- package/Editor/Modules/Theme/Style/GeneralPaletteBindingOptionDrawer.cs +25 -0
- package/Editor/Modules/Theme/Style/GeneralPaletteBindingOptionDrawer.cs.meta +11 -0
- package/Editor/Modules/Theme/Style/ThemeSelectorEditor.cs +79 -0
- package/Editor/Modules/Theme/Style/ThemeSelectorEditor.cs.meta +11 -0
- package/Editor/Modules/Theme/Style.meta +8 -0
- package/Editor/Modules/Theme/TextStyleObject.cs +9 -0
- package/Editor/Modules/Theme/TextStyleObject.cs.meta +11 -0
- package/Editor/Modules/Theme/ThemeConfigurationPropertyDrawer.cs +64 -0
- package/Editor/Modules/Theme/ThemeConfigurationPropertyDrawer.cs.meta +11 -0
- package/Editor/Modules/Theme/TransformStyleObject.cs +9 -0
- package/Editor/Modules/Theme/TransformStyleObject.cs.meta +11 -0
- package/Editor/Modules/Theme/WindowStyleObject.cs +9 -0
- package/Editor/Modules/Theme/WindowStyleObject.cs.meta +11 -0
- package/Editor/Modules/Theme.meta +8 -0
- package/Editor/Modules.meta +8 -0
- package/Editor/NoOpAnalyticsTracker.cs +22 -0
- package/Editor/NoOpAnalyticsTracker.cs.meta +3 -0
- package/Editor/ReflectionCache/ReflectionCacheAssetPostProcessor.cs +68 -0
- package/Editor/ReflectionCache/ReflectionCacheAssetPostProcessor.cs.meta +11 -0
- package/Editor/ReflectionCache/UserSystems/BeamHintReflectionCache.asset +14 -0
- package/Editor/ReflectionCache/UserSystems/BeamHintReflectionCache.asset.meta +8 -0
- package/Editor/ReflectionCache/UserSystems.meta +8 -0
- package/Editor/ReflectionCache.meta +8 -0
- package/Editor/ResetPlayerAccessTokenEditor.cs +63 -0
- package/Editor/ResetPlayerAccessTokenEditor.cs.meta +3 -0
- package/Editor/Server/AssemblyDefinitionHelper.cs +237 -0
- package/Editor/Server/AssemblyDefinitionHelper.cs.meta +3 -0
- package/Editor/Server/CommonAreaService.cs +189 -0
- package/Editor/Server/CommonAreaService.cs.meta +3 -0
- package/Editor/Server/DependencyResolver.cs +177 -0
- package/Editor/Server/DependencyResolver.cs.meta +11 -0
- package/Editor/Server/ExtensionMethods.cs +40 -0
- package/Editor/Server/ExtensionMethods.cs.meta +3 -0
- package/Editor/Server/MicroserviceConfiguration.cs +87 -0
- package/Editor/Server/MicroserviceConfiguration.cs.meta +11 -0
- package/Editor/Server/RegisterDependencies.cs +33 -0
- package/Editor/Server/RegisterDependencies.cs.meta +3 -0
- package/Editor/Server/UI/Configs/BeamFederationSetting.cs +160 -0
- package/Editor/Server/UI/Configs/BeamFederationSetting.cs.meta +3 -0
- package/Editor/Server/UI/Configs/BeamStorageDependencySetting.cs +55 -0
- package/Editor/Server/UI/Configs/BeamStorageDependencySetting.cs.meta +3 -0
- package/Editor/Server/UI/Configs/BeamableMicroservicesSettings.cs +180 -0
- package/Editor/Server/UI/Configs/BeamableMicroservicesSettings.cs.meta +3 -0
- package/Editor/Server/UI/Configs/BeamableStorageSettings.cs +83 -0
- package/Editor/Server/UI/Configs/BeamableStorageSettings.cs.meta +3 -0
- package/Editor/Server/UI/Configs.meta +3 -0
- package/Editor/Server/UI/FederationPropertyDrawer.cs +209 -0
- package/Editor/Server/UI/FederationPropertyDrawer.cs.meta +3 -0
- package/Editor/Server/UI/PublishWindow/UsamPublishWindow.cs +442 -0
- package/Editor/Server/UI/PublishWindow/UsamPublishWindow.cs.meta +3 -0
- package/Editor/Server/UI/PublishWindow/UsamPublishWindow_FatalError.cs +39 -0
- package/Editor/Server/UI/PublishWindow/UsamPublishWindow_FatalError.cs.meta +3 -0
- package/Editor/Server/UI/PublishWindow/UsamPublishWindow_Plan.cs +125 -0
- package/Editor/Server/UI/PublishWindow/UsamPublishWindow_Plan.cs.meta +3 -0
- package/Editor/Server/UI/PublishWindow/UsamPublishWindow_Review.cs +247 -0
- package/Editor/Server/UI/PublishWindow/UsamPublishWindow_Review.cs.meta +3 -0
- package/Editor/Server/UI/PublishWindow.meta +3 -0
- package/Editor/Server/UI/ScriptTemplates/FederationId.cs.txt +7 -0
- package/Editor/Server/UI/ScriptTemplates/FederationId.cs.txt.meta +3 -0
- package/Editor/Server/UI/ScriptTemplates.meta +3 -0
- package/Editor/Server/UI/UsamWindow/ServicePickerWindow.cs +308 -0
- package/Editor/Server/UI/UsamWindow/ServicePickerWindow.cs.meta +3 -0
- package/Editor/Server/UI/UsamWindow/UsamWindow.cs +94 -0
- package/Editor/Server/UI/UsamWindow/UsamWindow.cs.meta +3 -0
- package/Editor/Server/UI/UsamWindow/UsamWindow_Badges.cs +55 -0
- package/Editor/Server/UI/UsamWindow/UsamWindow_Badges.cs.meta +3 -0
- package/Editor/Server/UI/UsamWindow/UsamWindow_Create.cs +325 -0
- package/Editor/Server/UI/UsamWindow/UsamWindow_Create.cs.meta +3 -0
- package/Editor/Server/UI/UsamWindow/UsamWindow_Docker.cs +111 -0
- package/Editor/Server/UI/UsamWindow/UsamWindow_Docker.cs.meta +3 -0
- package/Editor/Server/UI/UsamWindow/UsamWindow_Main.cs +321 -0
- package/Editor/Server/UI/UsamWindow/UsamWindow_Main.cs.meta +3 -0
- package/Editor/Server/UI/UsamWindow/UsamWindow_Service.cs +313 -0
- package/Editor/Server/UI/UsamWindow/UsamWindow_Service.cs.meta +3 -0
- package/Editor/Server/UI/UsamWindow/UsamWindow_Settings.cs +405 -0
- package/Editor/Server/UI/UsamWindow/UsamWindow_Settings.cs.meta +3 -0
- package/Editor/Server/UI/UsamWindow/UsamWindow_Storage.cs +237 -0
- package/Editor/Server/UI/UsamWindow/UsamWindow_Storage.cs.meta +3 -0
- package/Editor/Server/UI/UsamWindow/UsamWindow_Upgrades.cs +121 -0
- package/Editor/Server/UI/UsamWindow/UsamWindow_Upgrades.cs.meta +3 -0
- package/Editor/Server/UI/UsamWindow.meta +3 -0
- package/Editor/Server/UI.meta +3 -0
- package/Editor/Server/Usam/AssemblyUtil.cs +136 -0
- package/Editor/Server/Usam/AssemblyUtil.cs.meta +3 -0
- package/Editor/Server/Usam/CsProjUtil.cs +12 -0
- package/Editor/Server/Usam/CsProjUtil.cs.meta +3 -0
- package/Editor/Server/Usam/CsharpProjectUtil.cs +325 -0
- package/Editor/Server/Usam/CsharpProjectUtil.cs.meta +3 -0
- package/Editor/Server/Usam/ServiceRoutingStrategy.cs +81 -0
- package/Editor/Server/Usam/ServiceRoutingStrategy.cs.meta +3 -0
- package/Editor/Server/Usam/UsamLogger.cs +46 -0
- package/Editor/Server/Usam/UsamLogger.cs.meta +3 -0
- package/Editor/Server/Usam/UsamService.cs +1150 -0
- package/Editor/Server/Usam/UsamService.cs.meta +3 -0
- package/Editor/Server/Usam/UsamService_GenerateClient.cs +243 -0
- package/Editor/Server/Usam/UsamService_GenerateClient.cs.meta +3 -0
- package/Editor/Server/Usam/UsamService_Reload.cs +119 -0
- package/Editor/Server/Usam/UsamService_Reload.cs.meta +3 -0
- package/Editor/Server/Usam/UsamService_Upgrades.cs +25 -0
- package/Editor/Server/Usam/UsamService_Upgrades.cs.meta +3 -0
- package/Editor/Server/Usam.meta +3 -0
- package/Editor/Server/WebhookContentEditor/RouteParametersPropertyDrawer.cs +309 -0
- package/Editor/Server/WebhookContentEditor/RouteParametersPropertyDrawer.cs.meta +3 -0
- package/Editor/Server/WebhookContentEditor/RouteVariablesPropertyDrawer.cs +56 -0
- package/Editor/Server/WebhookContentEditor/RouteVariablesPropertyDrawer.cs.meta +11 -0
- package/Editor/Server/WebhookContentEditor/ServiceRoutePropertyDrawer.cs +137 -0
- package/Editor/Server/WebhookContentEditor/ServiceRoutePropertyDrawer.cs.meta +11 -0
- package/Editor/Server/WebhookContentEditor.meta +3 -0
- package/Editor/Server/invalid-assemblies.txt +194 -0
- package/Editor/Server/invalid-assemblies.txt.meta +3 -0
- package/Editor/Server.meta +3 -0
- package/Editor/ServiceStorage.cs +128 -0
- package/Editor/ServiceStorage.cs.meta +3 -0
- package/Editor/SessionStorageLayer.cs +29 -0
- package/Editor/SessionStorageLayer.cs.meta +3 -0
- package/Editor/TextMeshProImporter.cs +101 -0
- package/Editor/TextMeshProImporter.cs.meta +11 -0
- package/Editor/Toolbar/BeamableToolbarAssetPostProcessor.cs +32 -0
- package/Editor/Toolbar/BeamableToolbarAssetPostProcessor.cs.meta +11 -0
- package/Editor/Toolbar/BeamableToolbarButton.cs +45 -0
- package/Editor/Toolbar/BeamableToolbarButton.cs.meta +11 -0
- package/Editor/Toolbar/BeamableToolbarCallbacks.cs +153 -0
- package/Editor/Toolbar/BeamableToolbarCallbacks.cs.meta +11 -0
- package/Editor/Toolbar/BeamableToolbarExtender.cs +137 -0
- package/Editor/Toolbar/BeamableToolbarExtender.cs.meta +11 -0
- package/Editor/Toolbar/BeamableToolbarMenuItem.cs +40 -0
- package/Editor/Toolbar/BeamableToolbarMenuItem.cs.meta +11 -0
- package/Editor/Toolbar/MenuItems/AccountMenuItem.asset +16 -0
- package/Editor/Toolbar/MenuItems/AccountMenuItem.asset.meta +8 -0
- package/Editor/Toolbar/MenuItems/AccountMenuItem.cs +51 -0
- package/Editor/Toolbar/MenuItems/AccountMenuItem.cs.meta +3 -0
- package/Editor/Toolbar/MenuItems/BeamableConfigurationManagerMenuItem.cs +21 -0
- package/Editor/Toolbar/MenuItems/BeamableConfigurationManagerMenuItem.cs.meta +3 -0
- package/Editor/Toolbar/MenuItems/BeamableContentManagerMenuItem.cs +20 -0
- package/Editor/Toolbar/MenuItems/BeamableContentManagerMenuItem.cs.meta +3 -0
- package/Editor/Toolbar/MenuItems/BeamableMicroserviceManagerMenuItem.cs +20 -0
- package/Editor/Toolbar/MenuItems/BeamableMicroserviceManagerMenuItem.cs.meta +11 -0
- package/Editor/Toolbar/MenuItems/BeamablePortalMenuItem.cs +18 -0
- package/Editor/Toolbar/MenuItems/BeamablePortalMenuItem.cs.meta +3 -0
- package/Editor/Toolbar/MenuItems/BeamableRealmMenuItem.cs +99 -0
- package/Editor/Toolbar/MenuItems/BeamableRealmMenuItem.cs.meta +3 -0
- package/Editor/Toolbar/MenuItems/BeamableToolbarMenuItemSeparator.cs +17 -0
- package/Editor/Toolbar/MenuItems/BeamableToolbarMenuItemSeparator.cs.meta +11 -0
- package/Editor/Toolbar/MenuItems/BeamableToolboxWindowMenuItem.cs +20 -0
- package/Editor/Toolbar/MenuItems/BeamableToolboxWindowMenuItem.cs.meta +3 -0
- package/Editor/Toolbar/MenuItems/OpenConfigurationManagerMenuItem.asset +16 -0
- package/Editor/Toolbar/MenuItems/OpenConfigurationManagerMenuItem.asset.meta +8 -0
- package/Editor/Toolbar/MenuItems/OpenContentManagerMenuItem.asset +16 -0
- package/Editor/Toolbar/MenuItems/OpenContentManagerMenuItem.asset.meta +8 -0
- package/Editor/Toolbar/MenuItems/OpenMicroserviceManagerMenuItem.asset +16 -0
- package/Editor/Toolbar/MenuItems/OpenMicroserviceManagerMenuItem.asset.meta +8 -0
- package/Editor/Toolbar/MenuItems/OpenPortalMenuItem.asset +16 -0
- package/Editor/Toolbar/MenuItems/OpenPortalMenuItem.asset.meta +8 -0
- package/Editor/Toolbar/MenuItems/OpenToolboxWindowMenuItem.asset +16 -0
- package/Editor/Toolbar/MenuItems/OpenToolboxWindowMenuItem.asset.meta +8 -0
- package/Editor/Toolbar/MenuItems/SelectRealmMenuItem.asset +16 -0
- package/Editor/Toolbar/MenuItems/SelectRealmMenuItem.asset.meta +8 -0
- package/Editor/Toolbar/MenuItems/ToolboxSeparator 1.asset +16 -0
- package/Editor/Toolbar/MenuItems/ToolboxSeparator 1.asset.meta +8 -0
- package/Editor/Toolbar/MenuItems/ToolboxSeparator.asset +16 -0
- package/Editor/Toolbar/MenuItems/ToolboxSeparator.asset.meta +8 -0
- package/Editor/Toolbar/MenuItems.meta +8 -0
- package/Editor/Toolbar/ToolbarButtons/SampleBeamableButton.cs +27 -0
- package/Editor/Toolbar/ToolbarButtons/SampleBeamableButton.cs.meta +11 -0
- package/Editor/Toolbar/ToolbarButtons.meta +8 -0
- package/Editor/Toolbar.meta +3 -0
- package/Editor/UI/AccountWindow/AccountWindow.cs +170 -0
- package/Editor/UI/AccountWindow/AccountWindow.cs.meta +3 -0
- package/Editor/UI/AccountWindow/AccountWindow_Games.cs +170 -0
- package/Editor/UI/AccountWindow/AccountWindow_Games.cs.meta +3 -0
- package/Editor/UI/AccountWindow/AccountWindow_SignIn.cs +297 -0
- package/Editor/UI/AccountWindow/AccountWindow_SignIn.cs.meta +3 -0
- package/Editor/UI/AccountWindow/AccountWindow_SignedIn.cs +225 -0
- package/Editor/UI/AccountWindow/AccountWindow_SignedIn.cs.meta +3 -0
- package/Editor/UI/AccountWindow.meta +3 -0
- package/Editor/UI/BeamEditorWindow.cs +393 -0
- package/Editor/UI/BeamEditorWindow.cs.meta +11 -0
- package/Editor/UI/BeamGUI/BeamGUI_Dropdowns.cs +205 -0
- package/Editor/UI/BeamGUI/BeamGUI_Dropdowns.cs.meta +3 -0
- package/Editor/UI/BeamGUI/BeamGUI_Enabled.cs +31 -0
- package/Editor/UI/BeamGUI/BeamGUI_Enabled.cs.meta +3 -0
- package/Editor/UI/BeamGUI/BeamGUI_Header.cs +148 -0
- package/Editor/UI/BeamGUI/BeamGUI_Header.cs.meta +3 -0
- package/Editor/UI/BeamGUI/BeamGUI_Icons.cs +330 -0
- package/Editor/UI/BeamGUI/BeamGUI_Icons.cs.meta +3 -0
- package/Editor/UI/BeamGUI/BeamGUI_LoadingBars.cs +105 -0
- package/Editor/UI/BeamGUI/BeamGUI_LoadingBars.cs.meta +3 -0
- package/Editor/UI/BeamGUI/BeamGUI_LogoBanner.cs +36 -0
- package/Editor/UI/BeamGUI/BeamGUI_LogoBanner.cs.meta +3 -0
- package/Editor/UI/BeamGUI/BeamGUI_PlaceholdTextField.cs +64 -0
- package/Editor/UI/BeamGUI/BeamGUI_PlaceholdTextField.cs.meta +3 -0
- package/Editor/UI/BeamGUI/BeamGUI_PrimaryButton.cs +178 -0
- package/Editor/UI/BeamGUI/BeamGUI_PrimaryButton.cs.meta +3 -0
- package/Editor/UI/BeamGUI/BeamGUI_Spinner.cs +30 -0
- package/Editor/UI/BeamGUI/BeamGUI_Spinner.cs.meta +3 -0
- package/Editor/UI/BeamGUI/BeamGUI_StaticConstructor.cs +17 -0
- package/Editor/UI/BeamGUI/BeamGUI_StaticConstructor.cs.meta +3 -0
- package/Editor/UI/BeamGUI/BeamGUI_Toggle.cs +41 -0
- package/Editor/UI/BeamGUI/BeamGUI_Toggle.cs.meta +3 -0
- package/Editor/UI/BeamGUI/BeamGUI_Utils.cs +73 -0
- package/Editor/UI/BeamGUI/BeamGUI_Utils.cs.meta +3 -0
- package/Editor/UI/BeamGUI/PropertyDrawers/HelpBoxDecoratorDrawer.cs +32 -0
- package/Editor/UI/BeamGUI/PropertyDrawers/HelpBoxDecoratorDrawer.cs.meta +3 -0
- package/Editor/UI/BeamGUI/PropertyDrawers.meta +3 -0
- package/Editor/UI/BeamGUI.meta +3 -0
- package/Editor/UI/Common/FormConstraint.cs +53 -0
- package/Editor/UI/Common/FormConstraint.cs.meta +11 -0
- package/Editor/UI/Common/Icons/Beamable.png +0 -0
- package/Editor/UI/Common/Icons/Beamable.png.meta +96 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/API_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/API_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/AWS_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/AWS_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Action_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Action_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/AdminPortal_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/AdminPortal_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/AdvancedTechnology_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/AdvancedTechnology_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Alerts_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Alerts_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/BattleTested_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/BattleTested_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/BeamableObjects@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/BeamableObjects@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Beamable_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Beamable_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Chat_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Chat_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/CloudDataToMicroServices_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/CloudDataToMicroServices_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/ContentMigration_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/ContentMigration_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Currency_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Currency_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/CustomerSatisfaction_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/CustomerSatisfaction_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Discounts_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Discounts_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/EasyToUse_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/EasyToUse_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Engagement_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Engagement_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/GameArtist_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/GameArtist_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/GameDesigner_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/GameDesigner_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/GameDeveloper_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/GameDeveloper_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/GamePlay_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/GamePlay_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/GameProducer_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/GameProducer_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/GameSparksMigration_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/GameSparksMigration_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/GameSparksToCSharp_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/GameSparksToCSharp_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Guilds_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Guilds_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Inventory_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Inventory_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Leaderboard_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Leaderboard_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Mail_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Mail_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/MigrateContent_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/MigrateContent_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/MigrationGamesparksPlayers_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/MigrationGamesparksPlayers_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Monetize_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Monetize_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/New_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/New_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Payments_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Payments_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Profiles_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Profiles_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Quote_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Quote_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Rewards_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Rewards_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Serve_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Serve_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Social_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Social_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Trial_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Trial_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Unity_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Unity_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Victory_Violet@3x.png +0 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons/Victory_Violet@3x.png.meta +153 -0
- package/Editor/UI/Common/Icons/BeamableWebIcons.meta +8 -0
- package/Editor/UI/Common/Icons/Beamable_dark.png +0 -0
- package/Editor/UI/Common/Icons/Beamable_dark.png.meta +96 -0
- package/Editor/UI/Common/Icons/Check.png +0 -0
- package/Editor/UI/Common/Icons/Check.png.meta +197 -0
- package/Editor/UI/Common/Icons/Checked.png +0 -0
- package/Editor/UI/Common/Icons/Checked.png.meta +92 -0
- package/Editor/UI/Common/Icons/Checked2x.png +0 -0
- package/Editor/UI/Common/Icons/Checked2x.png.meta +88 -0
- package/Editor/UI/Common/Icons/Checked_Dark.png +0 -0
- package/Editor/UI/Common/Icons/Checked_Dark.png.meta +88 -0
- package/Editor/UI/Common/Icons/Checked_light.png +0 -0
- package/Editor/UI/Common/Icons/Checked_light.png.meta +88 -0
- package/Editor/UI/Common/Icons/Database_Dark.png +0 -0
- package/Editor/UI/Common/Icons/Database_Dark.png.meta +88 -0
- package/Editor/UI/Common/Icons/Database_light.png +0 -0
- package/Editor/UI/Common/Icons/Database_light.png.meta +88 -0
- package/Editor/UI/Common/Icons/Fold out_Dark.png +0 -0
- package/Editor/UI/Common/Icons/Fold out_Dark.png.meta +92 -0
- package/Editor/UI/Common/Icons/Fold out_light.png +0 -0
- package/Editor/UI/Common/Icons/Fold out_light.png.meta +92 -0
- package/Editor/UI/Common/Icons/FoldRight_Dark copy.png +0 -0
- package/Editor/UI/Common/Icons/FoldRight_Dark copy.png.meta +92 -0
- package/Editor/UI/Common/Icons/IconAction_Revert.png +0 -0
- package/Editor/UI/Common/Icons/IconAction_Revert.png.meta +147 -0
- package/Editor/UI/Common/Icons/IconBeam_API.png +0 -0
- package/Editor/UI/Common/Icons/IconBeam_API.png.meta +159 -0
- package/Editor/UI/Common/Icons/IconBeam_Announcements.png +0 -0
- package/Editor/UI/Common/Icons/IconBeam_Announcements.png.meta +147 -0
- package/Editor/UI/Common/Icons/IconBeam_AnnouncementsAPI.png +0 -0
- package/Editor/UI/Common/Icons/IconBeam_AnnouncementsAPI.png.meta +159 -0
- package/Editor/UI/Common/Icons/IconBeam_Calendar.png +0 -0
- package/Editor/UI/Common/Icons/IconBeam_Calendar.png.meta +159 -0
- package/Editor/UI/Common/Icons/IconBeam_ContentSnapshot.png +0 -0
- package/Editor/UI/Common/Icons/IconBeam_ContentSnapshot.png.meta +147 -0
- package/Editor/UI/Common/Icons/IconBeam_Currency.png +0 -0
- package/Editor/UI/Common/Icons/IconBeam_Currency.png.meta +147 -0
- package/Editor/UI/Common/Icons/IconBeam_Donation.png +0 -0
- package/Editor/UI/Common/Icons/IconBeam_Donation.png.meta +159 -0
- package/Editor/UI/Common/Icons/IconBeam_Emails.png +0 -0
- package/Editor/UI/Common/Icons/IconBeam_Emails.png.meta +159 -0
- package/Editor/UI/Common/Icons/IconBeam_GameType.png +0 -0
- package/Editor/UI/Common/Icons/IconBeam_GameType.png.meta +147 -0
- package/Editor/UI/Common/Icons/IconBeam_Item.png +0 -0
- package/Editor/UI/Common/Icons/IconBeam_Item.png.meta +147 -0
- package/Editor/UI/Common/Icons/IconBeam_ItemFallback.png +0 -0
- package/Editor/UI/Common/Icons/IconBeam_ItemFallback.png.meta +147 -0
- package/Editor/UI/Common/Icons/IconBeam_ItemStoreContent.png +0 -0
- package/Editor/UI/Common/Icons/IconBeam_ItemStoreContent.png.meta +147 -0
- package/Editor/UI/Common/Icons/IconBeam_LeaderBoards.png +0 -0
- package/Editor/UI/Common/Icons/IconBeam_LeaderBoards.png.meta +159 -0
- package/Editor/UI/Common/Icons/IconBeam_Listing.png +0 -0
- package/Editor/UI/Common/Icons/IconBeam_Listing.png.meta +147 -0
- package/Editor/UI/Common/Icons/IconBeam_Publish.png +0 -0
- package/Editor/UI/Common/Icons/IconBeam_Publish.png.meta +147 -0
- package/Editor/UI/Common/Icons/IconBeam_SKUs.png +0 -0
- package/Editor/UI/Common/Icons/IconBeam_SKUs.png.meta +159 -0
- package/Editor/UI/Common/Icons/IconBeam_Sync.png +0 -0
- package/Editor/UI/Common/Icons/IconBeam_Sync.png.meta +147 -0
- package/Editor/UI/Common/Icons/IconBeam_Tournaments.png +0 -0
- package/Editor/UI/Common/Icons/IconBeam_Tournaments.png.meta +159 -0
- package/Editor/UI/Common/Icons/IconBeam_VIP.png +0 -0
- package/Editor/UI/Common/Icons/IconBeam_VIP.png.meta +159 -0
- package/Editor/UI/Common/Icons/IconLogs_WarningMsg.png +0 -0
- package/Editor/UI/Common/Icons/IconLogs_WarningMsg.png.meta +147 -0
- package/Editor/UI/Common/Icons/IconStatus_Added.png +0 -0
- package/Editor/UI/Common/Icons/IconStatus_Added.png.meta +147 -0
- package/Editor/UI/Common/Icons/IconStatus_Delete.png +0 -0
- package/Editor/UI/Common/Icons/IconStatus_Delete.png.meta +147 -0
- package/Editor/UI/Common/Icons/IconStatus_Deleted.png +0 -0
- package/Editor/UI/Common/Icons/IconStatus_Deleted.png.meta +147 -0
- package/Editor/UI/Common/Icons/IconStatus_Invalid.png +0 -0
- package/Editor/UI/Common/Icons/IconStatus_Invalid.png.meta +147 -0
- package/Editor/UI/Common/Icons/IconStatus_Modified.png +0 -0
- package/Editor/UI/Common/Icons/IconStatus_Modified.png.meta +147 -0
- package/Editor/UI/Common/Icons/IconsWhite_ContentSnapshot.png +0 -0
- package/Editor/UI/Common/Icons/IconsWhite_ContentSnapshot.png.meta +147 -0
- package/Editor/UI/Common/Icons/Question.png +0 -0
- package/Editor/UI/Common/Icons/Question.png.meta +88 -0
- package/Editor/UI/Common/Icons/Refresh-dark.png +0 -0
- package/Editor/UI/Common/Icons/Refresh-dark.png.meta +88 -0
- package/Editor/UI/Common/Icons/Refresh.png +0 -0
- package/Editor/UI/Common/Icons/Refresh.png.meta +88 -0
- package/Editor/UI/Common/Icons/Remove.png +0 -0
- package/Editor/UI/Common/Icons/Remove.png.meta +88 -0
- package/Editor/UI/Common/Icons/Resources/SampleImage.png +0 -0
- package/Editor/UI/Common/Icons/Resources/SampleImage.png.meta +88 -0
- package/Editor/UI/Common/Icons/Resources.meta +8 -0
- package/Editor/UI/Common/Icons/Share_feedback_dark.png +0 -0
- package/Editor/UI/Common/Icons/Share_feedback_dark.png.meta +96 -0
- package/Editor/UI/Common/Icons/Share_feedback_light.png +0 -0
- package/Editor/UI/Common/Icons/Share_feedback_light.png.meta +96 -0
- package/Editor/UI/Common/Icons/Statuses-dark.png +0 -0
- package/Editor/UI/Common/Icons/Statuses-dark.png.meta +88 -0
- package/Editor/UI/Common/Icons/Statuses.png +0 -0
- package/Editor/UI/Common/Icons/Statuses.png.meta +88 -0
- package/Editor/UI/Common/Icons/Survey_dark.png +0 -0
- package/Editor/UI/Common/Icons/Survey_dark.png.meta +96 -0
- package/Editor/UI/Common/Icons/Survey_light.png +0 -0
- package/Editor/UI/Common/Icons/Survey_light.png.meta +96 -0
- package/Editor/UI/Common/Icons/Tag-dark.png +0 -0
- package/Editor/UI/Common/Icons/Tag-dark.png.meta +88 -0
- package/Editor/UI/Common/Icons/Tag.png +0 -0
- package/Editor/UI/Common/Icons/Tag.png.meta +88 -0
- package/Editor/UI/Common/Icons/Type-dark.png +0 -0
- package/Editor/UI/Common/Icons/Type-dark.png.meta +88 -0
- package/Editor/UI/Common/Icons/Type.png +0 -0
- package/Editor/UI/Common/Icons/Type.png.meta +88 -0
- package/Editor/UI/Common/Icons/VerticalLine.png +0 -0
- package/Editor/UI/Common/Icons/VerticalLine.png.meta +92 -0
- package/Editor/UI/Common/Icons/Warning.png +0 -0
- package/Editor/UI/Common/Icons/Warning.png.meta +88 -0
- package/Editor/UI/Common/Icons/actionBarBackground.png +0 -0
- package/Editor/UI/Common/Icons/actionBarBackground.png.meta +88 -0
- package/Editor/UI/Common/Icons/actionBarlight.png +0 -0
- package/Editor/UI/Common/Icons/actionBarlight.png.meta +88 -0
- package/Editor/UI/Common/Icons/addNewDark.png +0 -0
- package/Editor/UI/Common/Icons/addNewDark.png.meta +88 -0
- package/Editor/UI/Common/Icons/addNewLight.png +0 -0
- package/Editor/UI/Common/Icons/addNewLight.png.meta +88 -0
- package/Editor/UI/Common/Icons/add_stylesheet_dark.png +0 -0
- package/Editor/UI/Common/Icons/add_stylesheet_dark.png.meta +92 -0
- package/Editor/UI/Common/Icons/add_stylesheet_light.png +0 -0
- package/Editor/UI/Common/Icons/add_stylesheet_light.png.meta +92 -0
- package/Editor/UI/Common/Icons/announcement-dark.png +0 -0
- package/Editor/UI/Common/Icons/announcement-dark.png.meta +88 -0
- package/Editor/UI/Common/Icons/announcement-light.png +0 -0
- package/Editor/UI/Common/Icons/announcement-light.png.meta +88 -0
- package/Editor/UI/Common/Icons/beam_art_game_content.png +0 -0
- package/Editor/UI/Common/Icons/beam_art_game_content.png.meta +153 -0
- package/Editor/UI/Common/Icons/beam_art_gameservers.png +0 -0
- package/Editor/UI/Common/Icons/beam_art_gameservers.png.meta +153 -0
- package/Editor/UI/Common/Icons/beam_art_liveops.png +0 -0
- package/Editor/UI/Common/Icons/beam_art_liveops.png.meta +153 -0
- package/Editor/UI/Common/Icons/beam_art_serverless.png +0 -0
- package/Editor/UI/Common/Icons/beam_art_serverless.png.meta +153 -0
- package/Editor/UI/Common/Icons/beam_icon_small.png +0 -0
- package/Editor/UI/Common/Icons/beam_icon_small.png.meta +153 -0
- package/Editor/UI/Common/Icons/beam_icon_small_color.png +0 -0
- package/Editor/UI/Common/Icons/beam_icon_small_color.png.meta +153 -0
- package/Editor/UI/Common/Icons/close_dark_SM.png +0 -0
- package/Editor/UI/Common/Icons/close_dark_SM.png.meta +96 -0
- package/Editor/UI/Common/Icons/close_light.png +0 -0
- package/Editor/UI/Common/Icons/close_light.png.meta +92 -0
- package/Editor/UI/Common/Icons/close_light_SM.png +0 -0
- package/Editor/UI/Common/Icons/close_light_SM.png.meta +123 -0
- package/Editor/UI/Common/Icons/dark_Square_background.png +0 -0
- package/Editor/UI/Common/Icons/dark_Square_background.png.meta +88 -0
- package/Editor/UI/Common/Icons/docker_dark.png +0 -0
- package/Editor/UI/Common/Icons/docker_dark.png.meta +96 -0
- package/Editor/UI/Common/Icons/docker_light.png +0 -0
- package/Editor/UI/Common/Icons/docker_light.png.meta +96 -0
- package/Editor/UI/Common/Icons/dropdown Close Dark.png +0 -0
- package/Editor/UI/Common/Icons/dropdown Close Dark.png.meta +92 -0
- package/Editor/UI/Common/Icons/dropdown Close.png +0 -0
- package/Editor/UI/Common/Icons/dropdown Close.png.meta +92 -0
- package/Editor/UI/Common/Icons/dropdown Open Dark.png +0 -0
- package/Editor/UI/Common/Icons/dropdown Open Dark.png.meta +88 -0
- package/Editor/UI/Common/Icons/dropdown Open.png +0 -0
- package/Editor/UI/Common/Icons/dropdown Open.png.meta +88 -0
- package/Editor/UI/Common/Icons/dropdown_Line_dark.png +0 -0
- package/Editor/UI/Common/Icons/dropdown_Line_dark.png.meta +92 -0
- package/Editor/UI/Common/Icons/dropdown_Line_light.png +0 -0
- package/Editor/UI/Common/Icons/dropdown_Line_light.png.meta +92 -0
- package/Editor/UI/Common/Icons/edit_stylesheet_dark.png +0 -0
- package/Editor/UI/Common/Icons/edit_stylesheet_dark.png.meta +92 -0
- package/Editor/UI/Common/Icons/edit_stylesheet_light.png +0 -0
- package/Editor/UI/Common/Icons/edit_stylesheet_light.png.meta +92 -0
- package/Editor/UI/Common/Icons/editing_dark.png +0 -0
- package/Editor/UI/Common/Icons/editing_dark.png.meta +88 -0
- package/Editor/UI/Common/Icons/editing_light.png +0 -0
- package/Editor/UI/Common/Icons/editing_light.png.meta +88 -0
- package/Editor/UI/Common/Icons/face_happy_light.png +0 -0
- package/Editor/UI/Common/Icons/face_happy_light.png.meta +88 -0
- package/Editor/UI/Common/Icons/face_ok_light.png +0 -0
- package/Editor/UI/Common/Icons/face_ok_light.png.meta +88 -0
- package/Editor/UI/Common/Icons/face_sad_light.png +0 -0
- package/Editor/UI/Common/Icons/face_sad_light.png.meta +88 -0
- package/Editor/UI/Common/Icons/foldoutRight.png +0 -0
- package/Editor/UI/Common/Icons/foldoutRight.png.meta +92 -0
- package/Editor/UI/Common/Icons/gradient-deep-space.jpg +0 -0
- package/Editor/UI/Common/Icons/gradient-deep-space.jpg.meta +153 -0
- package/Editor/UI/Common/Icons/in-sync 1.png +0 -0
- package/Editor/UI/Common/Icons/in-sync 1.png.meta +147 -0
- package/Editor/UI/Common/Icons/in-sync-dark.png +0 -0
- package/Editor/UI/Common/Icons/in-sync-dark.png.meta +147 -0
- package/Editor/UI/Common/Icons/lcoal-new.png +0 -0
- package/Editor/UI/Common/Icons/lcoal-new.png.meta +147 -0
- package/Editor/UI/Common/Icons/light_Square_background.png +0 -0
- package/Editor/UI/Common/Icons/light_Square_background.png.meta +88 -0
- package/Editor/UI/Common/Icons/loading_animation.png +0 -0
- package/Editor/UI/Common/Icons/loading_animation.png.meta +104 -0
- package/Editor/UI/Common/Icons/loading_dark.png +0 -0
- package/Editor/UI/Common/Icons/loading_dark.png.meta +88 -0
- package/Editor/UI/Common/Icons/loading_light.png +0 -0
- package/Editor/UI/Common/Icons/loading_light.png.meta +88 -0
- package/Editor/UI/Common/Icons/local-delete.png +0 -0
- package/Editor/UI/Common/Icons/local-delete.png.meta +88 -0
- package/Editor/UI/Common/Icons/microservice.png +0 -0
- package/Editor/UI/Common/Icons/microservice.png.meta +153 -0
- package/Editor/UI/Common/Icons/modified.png +0 -0
- package/Editor/UI/Common/Icons/modified.png.meta +88 -0
- package/Editor/UI/Common/Icons/ms_header_green.png +0 -0
- package/Editor/UI/Common/Icons/ms_header_green.png.meta +92 -0
- package/Editor/UI/Common/Icons/ms_header_green_light.png +0 -0
- package/Editor/UI/Common/Icons/ms_header_green_light.png.meta +92 -0
- package/Editor/UI/Common/Icons/question_mark_dark.png +0 -0
- package/Editor/UI/Common/Icons/question_mark_dark.png.meta +92 -0
- package/Editor/UI/Common/Icons/question_mark_light.png +0 -0
- package/Editor/UI/Common/Icons/question_mark_light.png.meta +92 -0
- package/Editor/UI/Common/Icons/refresh_dark.png +0 -0
- package/Editor/UI/Common/Icons/refresh_dark.png.meta +92 -0
- package/Editor/UI/Common/Icons/refresh_light.png +0 -0
- package/Editor/UI/Common/Icons/refresh_light.png.meta +92 -0
- package/Editor/UI/Common/Icons/removeDark.png +0 -0
- package/Editor/UI/Common/Icons/removeDark.png.meta +88 -0
- package/Editor/UI/Common/Icons/removeLight.png +0 -0
- package/Editor/UI/Common/Icons/removeLight.png.meta +88 -0
- package/Editor/UI/Common/Icons/search.png +0 -0
- package/Editor/UI/Common/Icons/search.png.meta +88 -0
- package/Editor/UI/Common/Icons/server-delete.png +0 -0
- package/Editor/UI/Common/Icons/server-delete.png.meta +88 -0
- package/Editor/UI/Common/Icons/server-new.png +0 -0
- package/Editor/UI/Common/Icons/server-new.png.meta +88 -0
- package/Editor/UI/Common/Icons/softShadow.png +0 -0
- package/Editor/UI/Common/Icons/softShadow.png.meta +153 -0
- package/Editor/UI/Common/Icons/storage.png +0 -0
- package/Editor/UI/Common/Icons/storage.png.meta +153 -0
- package/Editor/UI/Common/Icons/triangle_down_dark.png +0 -0
- package/Editor/UI/Common/Icons/triangle_down_dark.png.meta +96 -0
- package/Editor/UI/Common/Icons/triangle_down_light.png +0 -0
- package/Editor/UI/Common/Icons/triangle_down_light.png.meta +96 -0
- package/Editor/UI/Common/Icons/triangle_left_dark.png +0 -0
- package/Editor/UI/Common/Icons/triangle_left_dark.png.meta +96 -0
- package/Editor/UI/Common/Icons/triangle_left_light.png +0 -0
- package/Editor/UI/Common/Icons/triangle_left_light.png.meta +96 -0
- package/Editor/UI/Common/Icons/triangle_right_dark.png +0 -0
- package/Editor/UI/Common/Icons/triangle_right_dark.png.meta +96 -0
- package/Editor/UI/Common/Icons/triangle_right_light.png +0 -0
- package/Editor/UI/Common/Icons/triangle_right_light.png.meta +96 -0
- package/Editor/UI/Common/Icons/welcome.png +0 -0
- package/Editor/UI/Common/Icons/welcome.png.meta +88 -0
- package/Editor/UI/Common/Icons.meta +8 -0
- package/Editor/UI/Common/Materials/BeamIconMat.mat +87 -0
- package/Editor/UI/Common/Materials/BeamIconMat.mat.meta +8 -0
- package/Editor/UI/Common/Materials/BeamIconUnlit.shader +113 -0
- package/Editor/UI/Common/Materials/BeamIconUnlit.shader.meta +9 -0
- package/Editor/UI/Common/Materials/BeamLibraryGradientMat.mat +88 -0
- package/Editor/UI/Common/Materials/BeamLibraryGradientMat.mat.meta +8 -0
- package/Editor/UI/Common/Materials/BeamLibraryGradientUnlit.shader +89 -0
- package/Editor/UI/Common/Materials/BeamLibraryGradientUnlit.shader.meta +9 -0
- package/Editor/UI/Common/Materials.meta +8 -0
- package/Editor/UI/Common/MediaQueryObjectPropertyDrawer.cs +42 -0
- package/Editor/UI/Common/MediaQueryObjectPropertyDrawer.cs.meta +11 -0
- package/Editor/UI/Common/ReparenterCustomEditor.cs +24 -0
- package/Editor/UI/Common/ReparenterCustomEditor.cs.meta +11 -0
- package/Editor/UI/Common.meta +8 -0
- package/Editor/UI/Config/BeamableSettingsProvider.cs +222 -0
- package/Editor/UI/Config/BeamableSettingsProvider.cs.meta +11 -0
- package/Editor/UI/Config/BeamableSpewSettingsProvider.cs +163 -0
- package/Editor/UI/Config/BeamableSpewSettingsProvider.cs.meta +3 -0
- package/Editor/UI/Config/ConfigManager.cs +207 -0
- package/Editor/UI/Config/ConfigManager.cs.meta +11 -0
- package/Editor/UI/Config/Model/ConfigOption.cs +26 -0
- package/Editor/UI/Config/Model/ConfigOption.cs.meta +11 -0
- package/Editor/UI/Config/Model/ConfigQuery.cs +114 -0
- package/Editor/UI/Config/Model/ConfigQuery.cs.meta +11 -0
- package/Editor/UI/Config/Model.meta +8 -0
- package/Editor/UI/Config/UpdateGPGSRealmConfigHelper.cs +97 -0
- package/Editor/UI/Config/UpdateGPGSRealmConfigHelper.cs.meta +11 -0
- package/Editor/UI/Config.meta +8 -0
- package/Editor/UI/ContentWindow/ContentFilterStatus.cs +12 -0
- package/Editor/UI/ContentWindow/ContentFilterStatus.cs.meta +3 -0
- package/Editor/UI/ContentWindow/ContentSearchFilterType.cs +9 -0
- package/Editor/UI/ContentWindow/ContentSearchFilterType.cs.meta +3 -0
- package/Editor/UI/ContentWindow/ContentSortOptionType.cs +12 -0
- package/Editor/UI/ContentWindow/ContentSortOptionType.cs.meta +3 -0
- package/Editor/UI/ContentWindow/ContentWindow.cs +373 -0
- package/Editor/UI/ContentWindow/ContentWindow.cs.meta +3 -0
- package/Editor/UI/ContentWindow/ContentWindow_ContentActions.cs +381 -0
- package/Editor/UI/ContentWindow/ContentWindow_ContentActions.cs.meta +3 -0
- package/Editor/UI/ContentWindow/ContentWindow_GroupPanel.cs +192 -0
- package/Editor/UI/ContentWindow/ContentWindow_GroupPanel.cs.meta +3 -0
- package/Editor/UI/ContentWindow/ContentWindow_Header.cs +577 -0
- package/Editor/UI/ContentWindow/ContentWindow_Header.cs.meta +11 -0
- package/Editor/UI/ContentWindow/ContentWindow_ItemsPanel.cs +1197 -0
- package/Editor/UI/ContentWindow/ContentWindow_ItemsPanel.cs.meta +3 -0
- package/Editor/UI/ContentWindow/ContentWindow_Migration.cs +315 -0
- package/Editor/UI/ContentWindow/ContentWindow_Migration.cs.meta +3 -0
- package/Editor/UI/ContentWindow/ContentWindow_SnapshotManager.cs +611 -0
- package/Editor/UI/ContentWindow/ContentWindow_SnapshotManager.cs.meta +3 -0
- package/Editor/UI/ContentWindow.meta +3 -0
- package/Editor/UI/CronEditorWindow/CronEditorWindow.cs +134 -0
- package/Editor/UI/CronEditorWindow/CronEditorWindow.cs.meta +11 -0
- package/Editor/UI/CronEditorWindow.meta +8 -0
- package/Editor/UI/CronExpression/Common/Extensions.cs +23 -0
- package/Editor/UI/CronExpression/Common/Extensions.cs.meta +3 -0
- package/Editor/UI/CronExpression/Common.meta +3 -0
- package/Editor/UI/CronExpression/DescriptionTypeEnum.cs +18 -0
- package/Editor/UI/CronExpression/DescriptionTypeEnum.cs.meta +11 -0
- package/Editor/UI/CronExpression/ExpressionDescriptor.cs +761 -0
- package/Editor/UI/CronExpression/ExpressionDescriptor.cs.meta +11 -0
- package/Editor/UI/CronExpression/Localization/CronLocalizationData.cs +77 -0
- package/Editor/UI/CronExpression/Localization/CronLocalizationData.cs.meta +3 -0
- package/Editor/UI/CronExpression/Localization/CronLocalizationDatabase.cs +15 -0
- package/Editor/UI/CronExpression/Localization/CronLocalizationDatabase.cs.meta +3 -0
- package/Editor/UI/CronExpression/Localization.meta +3 -0
- package/Editor/UI/CronExpression/Resources/CronLocalizationDatabase.asset +18 -0
- package/Editor/UI/CronExpression/Resources/CronLocalizationDatabase.asset.meta +8 -0
- package/Editor/UI/CronExpression/Resources/Localizations/en-US.asset +63 -0
- package/Editor/UI/CronExpression/Resources/Localizations/en-US.asset.meta +8 -0
- package/Editor/UI/CronExpression/Resources/Localizations/pl_PL.asset +65 -0
- package/Editor/UI/CronExpression/Resources/Localizations/pl_PL.asset.meta +8 -0
- package/Editor/UI/CronExpression/Resources/Localizations.meta +8 -0
- package/Editor/UI/CronExpression/Resources.meta +8 -0
- package/Editor/UI/CronExpression.meta +8 -0
- package/Editor/UI/HelpMenuItems.cs +29 -0
- package/Editor/UI/HelpMenuItems.cs.meta +11 -0
- package/Editor/UI/IDelayedActionWindow.cs +10 -0
- package/Editor/UI/IDelayedActionWindow.cs.meta +3 -0
- package/Editor/UI/Inspectors/BeamableBehaviourInspector.cs +45 -0
- package/Editor/UI/Inspectors/BeamableBehaviourInspector.cs.meta +3 -0
- package/Editor/UI/Inspectors.meta +3 -0
- package/Editor/UI/LibraryWindow/BeamLibraryWindow.cs +71 -0
- package/Editor/UI/LibraryWindow/BeamLibraryWindow.cs.meta +3 -0
- package/Editor/UI/LibraryWindow/BeamLibraryWindow_Main.cs +35 -0
- package/Editor/UI/LibraryWindow/BeamLibraryWindow_Main.cs.meta +3 -0
- package/Editor/UI/LibraryWindow/BeamLibraryWindow_Samples.cs +330 -0
- package/Editor/UI/LibraryWindow/BeamLibraryWindow_Samples.cs.meta +3 -0
- package/Editor/UI/LibraryWindow.meta +3 -0
- package/Editor/UI/Login/UI/icon/logo2 L tran.png +0 -0
- package/Editor/UI/Login/UI/icon/logo2 L tran.png.meta +88 -0
- package/Editor/UI/Login/UI/icon/logo2 L white.png +0 -0
- package/Editor/UI/Login/UI/icon/logo2 L white.png.meta +88 -0
- package/Editor/UI/Login/UI/icon.meta +8 -0
- package/Editor/UI/Login/UI.meta +8 -0
- package/Editor/UI/Login.meta +8 -0
- package/Editor/UI/OptionDialogWindow/OptionDialogWindow.cs +90 -0
- package/Editor/UI/OptionDialogWindow/OptionDialogWindow.cs.meta +3 -0
- package/Editor/UI/OptionDialogWindow.meta +8 -0
- package/Editor/UI/Toolbar/BeamableVersionButton/BeamableVersionButton.dark.uss +3 -0
- package/Editor/UI/Toolbar/BeamableVersionButton/BeamableVersionButton.dark.uss.meta +3 -0
- package/Editor/UI/Toolbar/BeamableVersionButton/BeamableVersionButton.light.uss +3 -0
- package/Editor/UI/Toolbar/BeamableVersionButton/BeamableVersionButton.light.uss.meta +3 -0
- package/Editor/UI/Toolbar/BeamableVersionButton/BeamableVersionButton.uss +40 -0
- package/Editor/UI/Toolbar/BeamableVersionButton/BeamableVersionButton.uss.meta +3 -0
- package/Editor/UI/Toolbar/BeamableVersionButton.meta +8 -0
- package/Editor/UI/Toolbar/Icons/info hit.png +0 -0
- package/Editor/UI/Toolbar/Icons/info hit.png.meta +88 -0
- package/Editor/UI/Toolbar/Icons/info valu.png +0 -0
- package/Editor/UI/Toolbar/Icons/info valu.png.meta +88 -0
- package/Editor/UI/Toolbar/Icons/info.png +0 -0
- package/Editor/UI/Toolbar/Icons/info.png.meta +88 -0
- package/Editor/UI/Toolbar/Icons/info_light.png +0 -0
- package/Editor/UI/Toolbar/Icons/info_light.png.meta +88 -0
- package/Editor/UI/Toolbar/Icons.meta +8 -0
- package/Editor/UI/Toolbar.meta +8 -0
- package/Editor/UI/Toolbox/Icons/Account HUD.png +0 -0
- package/Editor/UI/Toolbox/Icons/Account HUD.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/Account_Light.png +0 -0
- package/Editor/UI/Toolbox/Icons/Account_Light.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/Account_dark.png +0 -0
- package/Editor/UI/Toolbox/Icons/Account_dark.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/Acoounnt Management.png +0 -0
- package/Editor/UI/Toolbox/Icons/Acoounnt Management.png.meta +92 -0
- package/Editor/UI/Toolbox/Icons/Admin Flow 1.png +0 -0
- package/Editor/UI/Toolbox/Icons/Admin Flow 1.png.meta +92 -0
- package/Editor/UI/Toolbox/Icons/Admin Flow.png +0 -0
- package/Editor/UI/Toolbox/Icons/Admin Flow.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/Announcement flow.png +0 -0
- package/Editor/UI/Toolbox/Icons/Announcement flow.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/Beamable.png +0 -0
- package/Editor/UI/Toolbox/Icons/Beamable.png.meta +92 -0
- package/Editor/UI/Toolbox/Icons/Category_dark.png +0 -0
- package/Editor/UI/Toolbox/Icons/Category_dark.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/Category_light.png +0 -0
- package/Editor/UI/Toolbox/Icons/Category_light.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/Config_Light.png +0 -0
- package/Editor/UI/Toolbox/Icons/Config_Light.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/Config_dark.png +0 -0
- package/Editor/UI/Toolbox/Icons/Config_dark.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/Content_Manager_dark 1.png +0 -0
- package/Editor/UI/Toolbox/Icons/Content_Manager_dark 1.png.meta +92 -0
- package/Editor/UI/Toolbox/Icons/Content_Manager_dark.png +0 -0
- package/Editor/UI/Toolbox/Icons/Content_Manager_dark.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/Content_Manager_light 1.png +0 -0
- package/Editor/UI/Toolbox/Icons/Content_Manager_light 1.png.meta +92 -0
- package/Editor/UI/Toolbox/Icons/Content_Manager_light.png +0 -0
- package/Editor/UI/Toolbox/Icons/Content_Manager_light.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/Currency HUD 1.png +0 -0
- package/Editor/UI/Toolbox/Icons/Currency HUD 1.png.meta +92 -0
- package/Editor/UI/Toolbox/Icons/Currency HUD.png +0 -0
- package/Editor/UI/Toolbox/Icons/Currency HUD.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/Friends.png +0 -0
- package/Editor/UI/Toolbox/Icons/Friends.png.meta +92 -0
- package/Editor/UI/Toolbox/Icons/Game_mode_dark.png +0 -0
- package/Editor/UI/Toolbox/Icons/Game_mode_dark.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/Game_mode_light.png +0 -0
- package/Editor/UI/Toolbox/Icons/Game_mode_light.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/INFO.png +0 -0
- package/Editor/UI/Toolbox/Icons/INFO.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/Info_Light.png +0 -0
- package/Editor/UI/Toolbox/Icons/Info_Light.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/Info_dark.png +0 -0
- package/Editor/UI/Toolbox/Icons/Info_dark.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/Login Flow.png +0 -0
- package/Editor/UI/Toolbox/Icons/Login Flow.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/Microservice_Light.png +0 -0
- package/Editor/UI/Toolbox/Icons/Microservice_Light.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/Microservice_dark.png +0 -0
- package/Editor/UI/Toolbox/Icons/Microservice_dark.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/Module_dark.png +0 -0
- package/Editor/UI/Toolbox/Icons/Module_dark.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/Module_light.png +0 -0
- package/Editor/UI/Toolbox/Icons/Module_light.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/NEW Acoounnt HUD.png +0 -0
- package/Editor/UI/Toolbox/Icons/NEW Acoounnt HUD.png.meta +92 -0
- package/Editor/UI/Toolbox/Icons/Skinning_dark.png +0 -0
- package/Editor/UI/Toolbox/Icons/Skinning_dark.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/Skinning_light.png +0 -0
- package/Editor/UI/Toolbox/Icons/Skinning_light.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/Store Flow 1.png +0 -0
- package/Editor/UI/Toolbox/Icons/Store Flow 1.png.meta +92 -0
- package/Editor/UI/Toolbox/Icons/Store Flow.png +0 -0
- package/Editor/UI/Toolbox/Icons/Store Flow.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/Tag_dark.png +0 -0
- package/Editor/UI/Toolbox/Icons/Tag_dark.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/Tag_light.png +0 -0
- package/Editor/UI/Toolbox/Icons/Tag_light.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/Tournaments flow.png +0 -0
- package/Editor/UI/Toolbox/Icons/Tournaments flow.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/account.png +0 -0
- package/Editor/UI/Toolbox/Icons/account.png.meta +91 -0
- package/Editor/UI/Toolbox/Icons/admin.png +0 -0
- package/Editor/UI/Toolbox/Icons/admin.png.meta +91 -0
- package/Editor/UI/Toolbox/Icons/announcements.png +0 -0
- package/Editor/UI/Toolbox/Icons/announcements.png.meta +91 -0
- package/Editor/UI/Toolbox/Icons/bargraph.png +0 -0
- package/Editor/UI/Toolbox/Icons/bargraph.png.meta +91 -0
- package/Editor/UI/Toolbox/Icons/beamable_gradient.png +0 -0
- package/Editor/UI/Toolbox/Icons/beamable_gradient.png.meta +91 -0
- package/Editor/UI/Toolbox/Icons/gamemode.png +0 -0
- package/Editor/UI/Toolbox/Icons/gamemode.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/inventory Flow.png +0 -0
- package/Editor/UI/Toolbox/Icons/inventory Flow.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/inventory.png +0 -0
- package/Editor/UI/Toolbox/Icons/inventory.png.meta +92 -0
- package/Editor/UI/Toolbox/Icons/leaderboard flow.png +0 -0
- package/Editor/UI/Toolbox/Icons/leaderboard flow.png.meta +88 -0
- package/Editor/UI/Toolbox/Icons/leaderboard.png +0 -0
- package/Editor/UI/Toolbox/Icons/leaderboard.png.meta +92 -0
- package/Editor/UI/Toolbox/Icons/lobby.png +0 -0
- package/Editor/UI/Toolbox/Icons/lobby.png.meta +92 -0
- package/Editor/UI/Toolbox/Icons/party.png +0 -0
- package/Editor/UI/Toolbox/Icons/party.png.meta +92 -0
- package/Editor/UI/Toolbox/Icons/shoparrow.png +0 -0
- package/Editor/UI/Toolbox/Icons/shoparrow.png.meta +91 -0
- package/Editor/UI/Toolbox/Icons/uicomponents.png +0 -0
- package/Editor/UI/Toolbox/Icons/uicomponents.png.meta +91 -0
- package/Editor/UI/Toolbox/Icons.meta +8 -0
- package/Editor/UI/Toolbox/ToolboxWindow.cs +19 -0
- package/Editor/UI/Toolbox/ToolboxWindow.cs.meta +3 -0
- package/Editor/UI/Toolbox/gear.png +0 -0
- package/Editor/UI/Toolbox/gear.png.meta +88 -0
- package/Editor/UI/Toolbox.meta +8 -0
- package/Editor/UI/Utils/RectUtils.cs +42 -0
- package/Editor/UI/Utils/RectUtils.cs.meta +3 -0
- package/Editor/UI/Utils/ToggleListWindow.cs +104 -0
- package/Editor/UI/Utils/ToggleListWindow.cs.meta +3 -0
- package/Editor/UI/Utils.meta +3 -0
- package/Editor/UI.meta +8 -0
- package/Editor/Unity.Beamable.Editor.asmdef +33 -0
- package/Editor/Unity.Beamable.Editor.asmdef.meta +7 -0
- package/Editor/Utility/BeamableAssetDatabase.cs +30 -0
- package/Editor/Utility/BeamableAssetDatabase.cs.meta +11 -0
- package/Editor/Utility/BeamableDispatcher.cs +222 -0
- package/Editor/Utility/BeamableDispatcher.cs.meta +3 -0
- package/Editor/Utility/EditorConstants.cs +7 -0
- package/Editor/Utility/EditorConstants.cs.meta +3 -0
- package/Editor/Utility/EditorDebouncer.cs +78 -0
- package/Editor/Utility/EditorDebouncer.cs.meta +3 -0
- package/Editor/Utility/EditorFilesystemAccessor.cs +13 -0
- package/Editor/Utility/EditorFilesystemAccessor.cs.meta +3 -0
- package/Editor/Utility/EditorGUIExtension.cs +148 -0
- package/Editor/Utility/EditorGUIExtension.cs.meta +3 -0
- package/Editor/Utility/EditorGUIRectController.cs +72 -0
- package/Editor/Utility/EditorGUIRectController.cs.meta +3 -0
- package/Editor/Utility/FilePathSelectorDrawer.cs +81 -0
- package/Editor/Utility/FilePathSelectorDrawer.cs.meta +3 -0
- package/Editor/Utility/FileUtils.cs +76 -0
- package/Editor/Utility/FileUtils.cs.meta +3 -0
- package/Editor/Utility/GenericMessagePopup.cs +34 -0
- package/Editor/Utility/GenericMessagePopup.cs.meta +3 -0
- package/Editor/Utility/PlayerSettingsExtensions.cs +54 -0
- package/Editor/Utility/PlayerSettingsExtensions.cs.meta +3 -0
- package/Editor/Utility/PromiseEditor.cs +22 -0
- package/Editor/Utility/PromiseEditor.cs.meta +3 -0
- package/Editor/Utility/PropertyDrawerFinder.cs +235 -0
- package/Editor/Utility/PropertyDrawerFinder.cs.meta +3 -0
- package/Editor/Utility/ReadonlyIfDrawer.cs +56 -0
- package/Editor/Utility/ReadonlyIfDrawer.cs.meta +3 -0
- package/Editor/Utility/SchedulerDefinitionExtensions.cs +28 -0
- package/Editor/Utility/SchedulerDefinitionExtensions.cs.meta +11 -0
- package/Editor/Utility/ShowOnlyDrawer.cs +36 -0
- package/Editor/Utility/ShowOnlyDrawer.cs.meta +3 -0
- package/Editor/Utility/TaskUtil.cs +58 -0
- package/Editor/Utility/TaskUtil.cs.meta +3 -0
- package/Editor/Utility/UnityOtelManager.cs +518 -0
- package/Editor/Utility/UnityOtelManager.cs.meta +3 -0
- package/Editor/Utility.meta +3 -0
- package/Editor.meta +8 -0
- package/Plugins/Android/googlesignin-release.aar +0 -0
- package/Plugins/Android/googlesignin-release.aar.meta +32 -0
- package/Plugins/Android.meta +8 -0
- package/Plugins/WebGL/FileUtility.jslib +11 -0
- package/Plugins/WebGL/FileUtility.jslib.meta +76 -0
- package/Plugins/WebGL.meta +8 -0
- package/Plugins/iOS/BeamableGoogleSignIn/BeamableGoogleSignIn.h +8 -0
- package/Plugins/iOS/BeamableGoogleSignIn/BeamableGoogleSignIn.h.meta +35 -0
- package/Plugins/iOS/BeamableGoogleSignIn/BeamableGoogleSignIn.mm +68 -0
- package/Plugins/iOS/BeamableGoogleSignIn/BeamableGoogleSignIn.mm.meta +102 -0
- package/Plugins/iOS/BeamableGoogleSignIn.meta +8 -0
- package/Plugins/iOS/GameCenterSignIn/GCIdentity.h +8 -0
- package/Plugins/iOS/GameCenterSignIn/GCIdentity.h.meta +97 -0
- package/Plugins/iOS/GameCenterSignIn/GCIdentity.mm +91 -0
- package/Plugins/iOS/GameCenterSignIn/GCIdentity.mm.meta +37 -0
- package/Plugins/iOS/GameCenterSignIn.meta +8 -0
- package/Plugins/iOS.meta +8 -0
- package/Plugins.meta +8 -0
- package/README.md +10 -0
- package/README.md.meta +7 -0
- package/Runtime/3rdParty/PubNub/PubNub.asmdef +15 -0
- package/Runtime/3rdParty/PubNub/PubNub.asmdef.meta +7 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/BuildRequests.cs +961 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/BuildRequests.cs.meta +11 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/CoroutineClass.cs +1396 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/CoroutineClass.cs.meta +11 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/ExceptionHandlers.cs +295 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/ExceptionHandlers.cs.meta +11 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/Helpers.cs +1337 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/Helpers.cs.meta +11 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/IPubnubUnitTest.cs +31 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/IPubnubUnitTest.cs.meta +11 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/JSONSerializer.cs +62 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/JSONSerializer.cs.meta +11 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/LoggingMethod.cs +661 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/LoggingMethod.cs.meta +11 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/MD5.cs +723 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/MD5.cs.meta +11 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/Pubnub.cs +1164 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/Pubnub.cs.meta +11 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/PubnubCallbacks.cs +464 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/PubnubCallbacks.cs.meta +11 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/PubnubCrypto.cs +77 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/PubnubCrypto.cs.meta +11 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/PubnubUnity.cs +2080 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/PubnubUnity.cs.meta +11 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/ReconnectState.cs +180 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/ReconnectState.cs.meta +11 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/SafeDictionary.cs +204 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/SafeDictionary.cs.meta +11 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/SharedStringBuilder.cs +23 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/SharedStringBuilder.cs.meta +3 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/SubscribeEnvelope.cs +226 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/SubscribeEnvelope.cs.meta +11 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/Subscription.cs +421 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/Subscription.cs.meta +11 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/Utility.cs +350 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub/Utility.cs.meta +11 -0
- package/Runtime/3rdParty/PubNub/Scripts/Pubnub.meta +8 -0
- package/Runtime/3rdParty/PubNub/Scripts.meta +8 -0
- package/Runtime/3rdParty/PubNub.meta +8 -0
- package/Runtime/3rdParty/UnityUIExtensions/ExtentionMethods.cs +19 -0
- package/Runtime/3rdParty/UnityUIExtensions/ExtentionMethods.cs.meta +11 -0
- package/Runtime/3rdParty/UnityUIExtensions/Gradient.cs +122 -0
- package/Runtime/3rdParty/UnityUIExtensions/Gradient.cs.meta +11 -0
- package/Runtime/3rdParty/UnityUIExtensions/HorizontalScrollSnap.cs +317 -0
- package/Runtime/3rdParty/UnityUIExtensions/HorizontalScrollSnap.cs.meta +11 -0
- package/Runtime/3rdParty/UnityUIExtensions/IScrollSnap.cs +15 -0
- package/Runtime/3rdParty/UnityUIExtensions/IScrollSnap.cs.meta +11 -0
- package/Runtime/3rdParty/UnityUIExtensions/Readme.txt +6 -0
- package/Runtime/3rdParty/UnityUIExtensions/Readme.txt.meta +7 -0
- package/Runtime/3rdParty/UnityUIExtensions/ScrollSnap.cs +573 -0
- package/Runtime/3rdParty/UnityUIExtensions/ScrollSnap.cs.meta +11 -0
- package/Runtime/3rdParty/UnityUIExtensions/ScrollSnapBase.cs +615 -0
- package/Runtime/3rdParty/UnityUIExtensions/ScrollSnapBase.cs.meta +11 -0
- package/Runtime/3rdParty/UnityUIExtensions/ScrollSnapScrollbarHelper.cs +56 -0
- package/Runtime/3rdParty/UnityUIExtensions/ScrollSnapScrollbarHelper.cs.meta +11 -0
- package/Runtime/3rdParty/UnityUIExtensions/UI_InfiniteScroll.cs +175 -0
- package/Runtime/3rdParty/UnityUIExtensions/UI_InfiniteScroll.cs.meta +11 -0
- package/Runtime/3rdParty/UnityUIExtensions/UnityUIExtensions.asmdef +12 -0
- package/Runtime/3rdParty/UnityUIExtensions/UnityUIExtensions.asmdef.meta +7 -0
- package/Runtime/3rdParty/UnityUIExtensions.meta +8 -0
- package/Runtime/3rdParty/VirtualList/Editor/AbstractVirtualListEditor.cs +43 -0
- package/Runtime/3rdParty/VirtualList/Editor/AbstractVirtualListEditor.cs.meta +11 -0
- package/Runtime/3rdParty/VirtualList/Editor/VirtualList.Editor.asmdef +16 -0
- package/Runtime/3rdParty/VirtualList/Editor/VirtualList.Editor.asmdef.meta +7 -0
- package/Runtime/3rdParty/VirtualList/Editor.meta +8 -0
- package/Runtime/3rdParty/VirtualList/README.md +64 -0
- package/Runtime/3rdParty/VirtualList/README.md.meta +7 -0
- package/Runtime/3rdParty/VirtualList/Runtime/AbstractVirtualList.cs +388 -0
- package/Runtime/3rdParty/VirtualList/Runtime/AbstractVirtualList.cs.meta +11 -0
- package/Runtime/3rdParty/VirtualList/Runtime/IListSource.cs +50 -0
- package/Runtime/3rdParty/VirtualList/Runtime/IListSource.cs.meta +11 -0
- package/Runtime/3rdParty/VirtualList/Runtime/SimpleSource.cs +81 -0
- package/Runtime/3rdParty/VirtualList/Runtime/SimpleSource.cs.meta +11 -0
- package/Runtime/3rdParty/VirtualList/Runtime/VirtualGridList.cs +123 -0
- package/Runtime/3rdParty/VirtualList/Runtime/VirtualGridList.cs.meta +11 -0
- package/Runtime/3rdParty/VirtualList/Runtime/VirtualHorizontalList.cs +84 -0
- package/Runtime/3rdParty/VirtualList/Runtime/VirtualHorizontalList.cs.meta +11 -0
- package/Runtime/3rdParty/VirtualList/Runtime/VirtualList.asmdef +12 -0
- package/Runtime/3rdParty/VirtualList/Runtime/VirtualList.asmdef.meta +7 -0
- package/Runtime/3rdParty/VirtualList/Runtime/VirtualVerticalList.cs +84 -0
- package/Runtime/3rdParty/VirtualList/Runtime/VirtualVerticalList.cs.meta +11 -0
- package/Runtime/3rdParty/VirtualList/Runtime.meta +8 -0
- package/Runtime/3rdParty/VirtualList/package.json +16 -0
- package/Runtime/3rdParty/VirtualList/package.json.meta +7 -0
- package/Runtime/3rdParty/VirtualList.meta +8 -0
- package/Runtime/3rdParty/WebSocket/Beamable.Endel.NativeWebsocket.asmdef +16 -0
- package/Runtime/3rdParty/WebSocket/Beamable.Endel.NativeWebsocket.asmdef.meta +7 -0
- package/Runtime/3rdParty/WebSocket/BeamableWebSocket.jslib +333 -0
- package/Runtime/3rdParty/WebSocket/BeamableWebSocket.jslib.meta +32 -0
- package/Runtime/3rdParty/WebSocket/WebSocket.cs +866 -0
- package/Runtime/3rdParty/WebSocket/WebSocket.cs.meta +11 -0
- package/Runtime/3rdParty/WebSocket.meta +8 -0
- package/Runtime/3rdParty.meta +8 -0
- package/Runtime/API.cs +267 -0
- package/Runtime/API.cs.meta +11 -0
- package/Runtime/Beam.cs +528 -0
- package/Runtime/Beam.cs.meta +3 -0
- package/Runtime/BeamContext.cs +1037 -0
- package/Runtime/BeamContext.cs.meta +3 -0
- package/Runtime/BeamDeveloperAuthProvider.cs +13 -0
- package/Runtime/BeamDeveloperAuthProvider.cs.meta +3 -0
- package/Runtime/Commands/Beamable.Commands.asmdef +14 -0
- package/Runtime/Commands/Beamable.Commands.asmdef.meta +3 -0
- package/Runtime/Commands/CommandExtensions.cs +26 -0
- package/Runtime/Commands/CommandExtensions.cs.meta +3 -0
- package/Runtime/Commands/ICommand.cs +7 -0
- package/Runtime/Commands/ICommand.cs.meta +3 -0
- package/Runtime/Commands.meta +3 -0
- package/Runtime/Connection/BeamableSubscriptionManager.cs +38 -0
- package/Runtime/Connection/BeamableSubscriptionManager.cs.meta +3 -0
- package/Runtime/Connection/IBeamableConnection.cs +30 -0
- package/Runtime/Connection/IBeamableConnection.cs.meta +3 -0
- package/Runtime/Connection/WebSocketConnection.cs +285 -0
- package/Runtime/Connection/WebSocketConnection.cs.meta +3 -0
- package/Runtime/Connection/WebSocketConnectionException.cs +9 -0
- package/Runtime/Connection/WebSocketConnectionException.cs.meta +3 -0
- package/Runtime/Connection.meta +3 -0
- package/Runtime/Core/Config/Beamable.Config.asmdef +17 -0
- package/Runtime/Core/Config/Beamable.Config.asmdef.meta +7 -0
- package/Runtime/Core/Config/ConfigConsoleCommands.cs +69 -0
- package/Runtime/Core/Config/ConfigConsoleCommands.cs.meta +3 -0
- package/Runtime/Core/Config/ConfigDatabase.cs +253 -0
- package/Runtime/Core/Config/ConfigDatabase.cs.meta +11 -0
- package/Runtime/Core/Config/RuntimeConfigProvider.cs +86 -0
- package/Runtime/Core/Config/RuntimeConfigProvider.cs.meta +3 -0
- package/Runtime/Core/Config.meta +8 -0
- package/Runtime/Core/ConsoleCommands/Beamable.ConsoleCommands.asmdef +16 -0
- package/Runtime/Core/ConsoleCommands/Beamable.ConsoleCommands.asmdef.meta +7 -0
- package/Runtime/Core/ConsoleCommands/BeamableConsole.cs +169 -0
- package/Runtime/Core/ConsoleCommands/BeamableConsole.cs.meta +3 -0
- package/Runtime/Core/ConsoleCommands/BeamableConsoleCommandAttribute.cs +27 -0
- package/Runtime/Core/ConsoleCommands/BeamableConsoleCommandAttribute.cs.meta +11 -0
- package/Runtime/Core/ConsoleCommands/BeamableConsoleCommandProviderAttribute.cs +15 -0
- package/Runtime/Core/ConsoleCommands/BeamableConsoleCommandProviderAttribute.cs.meta +3 -0
- package/Runtime/Core/ConsoleCommands/DefaultConsoleCommands.cs +45 -0
- package/Runtime/Core/ConsoleCommands/DefaultConsoleCommands.cs.meta +3 -0
- package/Runtime/Core/ConsoleCommands.meta +8 -0
- package/Runtime/Core/Coroutines/Beamable.Coroutines.asmdef +15 -0
- package/Runtime/Core/Coroutines/Beamable.Coroutines.asmdef.meta +7 -0
- package/Runtime/Core/Coroutines/CompletedYieldInstruction.cs +14 -0
- package/Runtime/Core/Coroutines/CompletedYieldInstruction.cs.meta +11 -0
- package/Runtime/Core/Coroutines/CoroutineService.cs +115 -0
- package/Runtime/Core/Coroutines/CoroutineService.cs.meta +11 -0
- package/Runtime/Core/Coroutines/Debouncer.cs +147 -0
- package/Runtime/Core/Coroutines/Debouncer.cs.meta +3 -0
- package/Runtime/Core/Coroutines/Yielders.cs +40 -0
- package/Runtime/Core/Coroutines/Yielders.cs.meta +11 -0
- package/Runtime/Core/Coroutines.meta +8 -0
- package/Runtime/Core/Extensions/Beamable.Extensions.asmdef +12 -0
- package/Runtime/Core/Extensions/Beamable.Extensions.asmdef.meta +7 -0
- package/Runtime/Core/Extensions/TransformExtensions.cs +118 -0
- package/Runtime/Core/Extensions/TransformExtensions.cs.meta +11 -0
- package/Runtime/Core/Extensions.meta +8 -0
- package/Runtime/Core/Platform/Beamable.Platform.asmdef +35 -0
- package/Runtime/Core/Platform/Beamable.Platform.asmdef.meta +7 -0
- package/Runtime/Core/Platform/SDK/AccessToken.cs +151 -0
- package/Runtime/Core/Platform/SDK/AccessToken.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/AccessTokenStorage.cs +225 -0
- package/Runtime/Core/Platform/SDK/AccessTokenStorage.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/AdvertisingIdentifier/AdvertisingIdentifier.cs +30 -0
- package/Runtime/Core/Platform/SDK/AdvertisingIdentifier/AdvertisingIdentifier.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/AdvertisingIdentifier.meta +8 -0
- package/Runtime/Core/Platform/SDK/Analytics/AnalyticsTracker.cs +200 -0
- package/Runtime/Core/Platform/SDK/Analytics/AnalyticsTracker.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Analytics/Batch/BatchContainer.cs +107 -0
- package/Runtime/Core/Platform/SDK/Analytics/Batch/BatchContainer.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Analytics/Batch/BatchManager.cs +207 -0
- package/Runtime/Core/Platform/SDK/Analytics/Batch/BatchManager.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Analytics/Batch/IBatchContainer.cs +66 -0
- package/Runtime/Core/Platform/SDK/Analytics/Batch/IBatchContainer.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Analytics/Batch/PersistentBatchManager.cs +143 -0
- package/Runtime/Core/Platform/SDK/Analytics/Batch/PersistentBatchManager.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Analytics/Batch/SerializableBatch.cs +33 -0
- package/Runtime/Core/Platform/SDK/Analytics/Batch/SerializableBatch.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Analytics/Batch.meta +8 -0
- package/Runtime/Core/Platform/SDK/Analytics/Models/BillerPurchaseFailedEvent.cs +16 -0
- package/Runtime/Core/Platform/SDK/Analytics/Models/BillerPurchaseFailedEvent.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Analytics/Models/LoginPanicEvent.cs +19 -0
- package/Runtime/Core/Platform/SDK/Analytics/Models/LoginPanicEvent.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Analytics/Models.meta +8 -0
- package/Runtime/Core/Platform/SDK/Analytics.meta +8 -0
- package/Runtime/Core/Platform/SDK/Announcements/AnnouncementsService.cs +121 -0
- package/Runtime/Core/Platform/SDK/Announcements/AnnouncementsService.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Announcements.meta +8 -0
- package/Runtime/Core/Platform/SDK/Auth/AuthService.cs +230 -0
- package/Runtime/Core/Platform/SDK/Auth/AuthService.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Auth/DeviceIdResolver.cs +24 -0
- package/Runtime/Core/Platform/SDK/Auth/DeviceIdResolver.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Auth/GCIdentity.cs +24 -0
- package/Runtime/Core/Platform/SDK/Auth/GCIdentity.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Auth/GoogleSignIn.cs +89 -0
- package/Runtime/Core/Platform/SDK/Auth/GoogleSignIn.cs.meta +3 -0
- package/Runtime/Core/Platform/SDK/Auth/SignInWithApple.cs +263 -0
- package/Runtime/Core/Platform/SDK/Auth/SignInWithApple.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Auth/SignInWithFacebookLimited.cs +112 -0
- package/Runtime/Core/Platform/SDK/Auth/SignInWithFacebookLimited.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Auth/SignInWithGPG.cs +109 -0
- package/Runtime/Core/Platform/SDK/Auth/SignInWithGPG.cs.meta +3 -0
- package/Runtime/Core/Platform/SDK/Auth/SignInWithGameCenter.cs +107 -0
- package/Runtime/Core/Platform/SDK/Auth/SignInWithGameCenter.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Auth/UnitySignInWithApple.m +138 -0
- package/Runtime/Core/Platform/SDK/Auth/UnitySignInWithApple.m.meta +105 -0
- package/Runtime/Core/Platform/SDK/Auth.meta +8 -0
- package/Runtime/Core/Platform/SDK/BeamableApiRequester.cs +112 -0
- package/Runtime/Core/Platform/SDK/BeamableApiRequester.cs.meta +3 -0
- package/Runtime/Core/Platform/SDK/Caches/OfflineCache.cs +319 -0
- package/Runtime/Core/Platform/SDK/Caches/OfflineCache.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Caches.meta +8 -0
- package/Runtime/Core/Platform/SDK/Calendars/CalendarsService.cs +123 -0
- package/Runtime/Core/Platform/SDK/Calendars/CalendarsService.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Calendars.meta +8 -0
- package/Runtime/Core/Platform/SDK/Chat/ChatProvider.cs +190 -0
- package/Runtime/Core/Platform/SDK/Chat/ChatProvider.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Chat/ChatService.cs +61 -0
- package/Runtime/Core/Platform/SDK/Chat/ChatService.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Chat/ChatView.cs +292 -0
- package/Runtime/Core/Platform/SDK/Chat/ChatView.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Chat/PubNubChatProvider.cs +51 -0
- package/Runtime/Core/Platform/SDK/Chat/PubNubChatProvider.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Chat/PubNubRoom.cs +135 -0
- package/Runtime/Core/Platform/SDK/Chat/PubNubRoom.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Chat/Room.cs +121 -0
- package/Runtime/Core/Platform/SDK/Chat/Room.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Chat.meta +8 -0
- package/Runtime/Core/Platform/SDK/CloudData/CloudDataConsoleCommands.cs +52 -0
- package/Runtime/Core/Platform/SDK/CloudData/CloudDataConsoleCommands.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/CloudData/CloudDataService.cs +24 -0
- package/Runtime/Core/Platform/SDK/CloudData/CloudDataService.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/CloudData.meta +8 -0
- package/Runtime/Core/Platform/SDK/CloudSaving/CloudSavingError.cs +14 -0
- package/Runtime/Core/Platform/SDK/CloudSaving/CloudSavingError.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/CloudSaving/CloudSavingExtensions.cs +82 -0
- package/Runtime/Core/Platform/SDK/CloudSaving/CloudSavingExtensions.cs.meta +3 -0
- package/Runtime/Core/Platform/SDK/CloudSaving/CloudSavingService.cs +1121 -0
- package/Runtime/Core/Platform/SDK/CloudSaving/CloudSavingService.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/CloudSaving.meta +8 -0
- package/Runtime/Core/Platform/SDK/CometClientData.cs +44 -0
- package/Runtime/Core/Platform/SDK/CometClientData.cs.meta +3 -0
- package/Runtime/Core/Platform/SDK/Commerce/CommerceConsoleCommands.cs +45 -0
- package/Runtime/Core/Platform/SDK/Commerce/CommerceConsoleCommands.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Commerce/CommerceService.cs +101 -0
- package/Runtime/Core/Platform/SDK/Commerce/CommerceService.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Commerce/ICommerceConfig.cs +19 -0
- package/Runtime/Core/Platform/SDK/Commerce/ICommerceConfig.cs.meta +3 -0
- package/Runtime/Core/Platform/SDK/Commerce.meta +8 -0
- package/Runtime/Core/Platform/SDK/Connectivity/Connectivity.cs +238 -0
- package/Runtime/Core/Platform/SDK/Connectivity/Connectivity.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Connectivity/IConnectivityChecker.cs +109 -0
- package/Runtime/Core/Platform/SDK/Connectivity/IConnectivityChecker.cs.meta +3 -0
- package/Runtime/Core/Platform/SDK/Connectivity.meta +8 -0
- package/Runtime/Core/Platform/SDK/ErrorCode.cs +62 -0
- package/Runtime/Core/Platform/SDK/ErrorCode.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Events/EventsService.cs +129 -0
- package/Runtime/Core/Platform/SDK/Events/EventsService.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Events.meta +8 -0
- package/Runtime/Core/Platform/SDK/Groups/GroupsService.cs +58 -0
- package/Runtime/Core/Platform/SDK/Groups/GroupsService.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Groups.meta +8 -0
- package/Runtime/Core/Platform/SDK/Gzip.cs +51 -0
- package/Runtime/Core/Platform/SDK/Gzip.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Inventory/InventoryConsoleCommands.cs +65 -0
- package/Runtime/Core/Platform/SDK/Inventory/InventoryConsoleCommands.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Inventory/InventoryService.cs +149 -0
- package/Runtime/Core/Platform/SDK/Inventory/InventoryService.cs.meta +3 -0
- package/Runtime/Core/Platform/SDK/Inventory.meta +3 -0
- package/Runtime/Core/Platform/SDK/Leaderboard/LeaderboardService.cs +31 -0
- package/Runtime/Core/Platform/SDK/Leaderboard/LeaderboardService.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Leaderboard.meta +8 -0
- package/Runtime/Core/Platform/SDK/Mail/MailService.cs +44 -0
- package/Runtime/Core/Platform/SDK/Mail/MailService.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Mail.meta +8 -0
- package/Runtime/Core/Platform/SDK/Matchmaking/Match.cs +46 -0
- package/Runtime/Core/Platform/SDK/Matchmaking/Match.cs.meta +3 -0
- package/Runtime/Core/Platform/SDK/Matchmaking/MatchmakingService.cs +450 -0
- package/Runtime/Core/Platform/SDK/Matchmaking/MatchmakingService.cs.meta +3 -0
- package/Runtime/Core/Platform/SDK/Matchmaking/Ticket.cs +36 -0
- package/Runtime/Core/Platform/SDK/Matchmaking/Ticket.cs.meta +3 -0
- package/Runtime/Core/Platform/SDK/Matchmaking/TicketReservationRequest.cs +43 -0
- package/Runtime/Core/Platform/SDK/Matchmaking/TicketReservationRequest.cs.meta +3 -0
- package/Runtime/Core/Platform/SDK/Matchmaking/TicketReservationResponse.cs +21 -0
- package/Runtime/Core/Platform/SDK/Matchmaking/TicketReservationResponse.cs.meta +3 -0
- package/Runtime/Core/Platform/SDK/Matchmaking.meta +3 -0
- package/Runtime/Core/Platform/SDK/Notification/Internal/AppleLocalNotificationRelay.cs +117 -0
- package/Runtime/Core/Platform/SDK/Notification/Internal/AppleLocalNotificationRelay.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Notification/Internal/DummyLocalNotificationRelay.cs +33 -0
- package/Runtime/Core/Platform/SDK/Notification/Internal/DummyLocalNotificationRelay.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Notification/Internal/GoogleLocalNotificationRelay.cs +86 -0
- package/Runtime/Core/Platform/SDK/Notification/Internal/GoogleLocalNotificationRelay.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Notification/Internal/ILocalNotificationRelay.cs +40 -0
- package/Runtime/Core/Platform/SDK/Notification/Internal/ILocalNotificationRelay.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Notification/Internal/IMessageHandler.cs +11 -0
- package/Runtime/Core/Platform/SDK/Notification/Internal/IMessageHandler.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Notification/Internal/InGameNotification.cs +39 -0
- package/Runtime/Core/Platform/SDK/Notification/Internal/InGameNotification.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Notification/Internal/MultiChannelSubscriptionHandler.cs +90 -0
- package/Runtime/Core/Platform/SDK/Notification/Internal/MultiChannelSubscriptionHandler.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Notification/Internal.meta +8 -0
- package/Runtime/Core/Platform/SDK/Notification/NotificationService.cs +505 -0
- package/Runtime/Core/Platform/SDK/Notification/NotificationService.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Notification/PubnubData.cs +50 -0
- package/Runtime/Core/Platform/SDK/Notification/PubnubData.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Notification/PubnubSubscriptionManager.cs +668 -0
- package/Runtime/Core/Platform/SDK/Notification/PubnubSubscriptionManager.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Notification/PushProvider.cs +25 -0
- package/Runtime/Core/Platform/SDK/Notification/PushProvider.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Notification/PushService.cs +74 -0
- package/Runtime/Core/Platform/SDK/Notification/PushService.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Notification.meta +8 -0
- package/Runtime/Core/Platform/SDK/Payments/DummyPurchaser.cs +32 -0
- package/Runtime/Core/Platform/SDK/Payments/DummyPurchaser.cs.meta +3 -0
- package/Runtime/Core/Platform/SDK/Payments/IBeamablePurchaser.cs +62 -0
- package/Runtime/Core/Platform/SDK/Payments/IBeamablePurchaser.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Payments/IPaymentServiceOptions.cs +38 -0
- package/Runtime/Core/Platform/SDK/Payments/IPaymentServiceOptions.cs.meta +3 -0
- package/Runtime/Core/Platform/SDK/Payments/PaymentErrorCodes.cs +17 -0
- package/Runtime/Core/Platform/SDK/Payments/PaymentErrorCodes.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Payments/PaymentModel.cs +75 -0
- package/Runtime/Core/Platform/SDK/Payments/PaymentModel.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Payments/PaymentService.cs +445 -0
- package/Runtime/Core/Platform/SDK/Payments/PaymentService.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Payments/PaymentTransaction.cs +138 -0
- package/Runtime/Core/Platform/SDK/Payments/PaymentTransaction.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Payments/PurchasingInitializationStatus.cs +65 -0
- package/Runtime/Core/Platform/SDK/Payments/PurchasingInitializationStatus.cs.meta +3 -0
- package/Runtime/Core/Platform/SDK/Payments/TransactionManager.cs +348 -0
- package/Runtime/Core/Platform/SDK/Payments/TransactionManager.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Payments.meta +8 -0
- package/Runtime/Core/Platform/SDK/PlatformFilesystemAccessor.cs +14 -0
- package/Runtime/Core/Platform/SDK/PlatformFilesystemAccessor.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/PlatformRequester.cs +757 -0
- package/Runtime/Core/Platform/SDK/PlatformRequester.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/PlatformRequesterExceptions.cs +31 -0
- package/Runtime/Core/Platform/SDK/PlatformRequesterExceptions.cs.meta +3 -0
- package/Runtime/Core/Platform/SDK/PlatformRequesterExtensions.cs +21 -0
- package/Runtime/Core/Platform/SDK/PlatformRequesterExtensions.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/PlatformRequesterInterfaces.cs +29 -0
- package/Runtime/Core/Platform/SDK/PlatformRequesterInterfaces.cs.meta +3 -0
- package/Runtime/Core/Platform/SDK/PlatformService.cs +81 -0
- package/Runtime/Core/Platform/SDK/PlatformService.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/PlatformSubscribable.cs +621 -0
- package/Runtime/Core/Platform/SDK/PlatformSubscribable.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Polyfill.cs +25 -0
- package/Runtime/Core/Platform/SDK/Polyfill.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/PubnubNotificationService.cs +42 -0
- package/Runtime/Core/Platform/SDK/PubnubNotificationService.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Session/Heartbeat.cs +127 -0
- package/Runtime/Core/Platform/SDK/Session/Heartbeat.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Session/SessionDeviceOptions.cs +213 -0
- package/Runtime/Core/Platform/SDK/Session/SessionDeviceOptions.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Session/SessionParameterProvider.cs +61 -0
- package/Runtime/Core/Platform/SDK/Session/SessionParameterProvider.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Session/SessionService.cs +292 -0
- package/Runtime/Core/Platform/SDK/Session/SessionService.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Session/SessionServiceHelper.cs +192 -0
- package/Runtime/Core/Platform/SDK/Session/SessionServiceHelper.cs.meta +3 -0
- package/Runtime/Core/Platform/SDK/Session.meta +8 -0
- package/Runtime/Core/Platform/SDK/Sim/GameRelayService.cs +243 -0
- package/Runtime/Core/Platform/SDK/Sim/GameRelayService.cs.meta +3 -0
- package/Runtime/Core/Platform/SDK/Sim/SimBehavior.cs +73 -0
- package/Runtime/Core/Platform/SDK/Sim/SimBehavior.cs.meta +12 -0
- package/Runtime/Core/Platform/SDK/Sim/SimClient.cs +427 -0
- package/Runtime/Core/Platform/SDK/Sim/SimClient.cs.meta +12 -0
- package/Runtime/Core/Platform/SDK/Sim/SimEvent.cs +39 -0
- package/Runtime/Core/Platform/SDK/Sim/SimEvent.cs.meta +12 -0
- package/Runtime/Core/Platform/SDK/Sim/SimFaultHandler.cs +172 -0
- package/Runtime/Core/Platform/SDK/Sim/SimFaultHandler.cs.meta +3 -0
- package/Runtime/Core/Platform/SDK/Sim/SimFrame.cs +76 -0
- package/Runtime/Core/Platform/SDK/Sim/SimFrame.cs.meta +12 -0
- package/Runtime/Core/Platform/SDK/Sim/SimLog.cs +113 -0
- package/Runtime/Core/Platform/SDK/Sim/SimLog.cs.meta +12 -0
- package/Runtime/Core/Platform/SDK/Sim/SimNetworkInterface.cs +79 -0
- package/Runtime/Core/Platform/SDK/Sim/SimNetworkInterface.cs.meta +12 -0
- package/Runtime/Core/Platform/SDK/Sim/network/eventStream/SimNetworkEventStream.cs +186 -0
- package/Runtime/Core/Platform/SDK/Sim/network/eventStream/SimNetworkEventStream.cs.meta +12 -0
- package/Runtime/Core/Platform/SDK/Sim/network/eventStream.meta +9 -0
- package/Runtime/Core/Platform/SDK/Sim/network/local/SimNetworkLocal.cs +62 -0
- package/Runtime/Core/Platform/SDK/Sim/network/local/SimNetworkLocal.cs.meta +12 -0
- package/Runtime/Core/Platform/SDK/Sim/network/local.meta +9 -0
- package/Runtime/Core/Platform/SDK/Sim/network.meta +9 -0
- package/Runtime/Core/Platform/SDK/Sim.meta +8 -0
- package/Runtime/Core/Platform/SDK/Social/SocialService.cs +22 -0
- package/Runtime/Core/Platform/SDK/Social/SocialService.cs.meta +3 -0
- package/Runtime/Core/Platform/SDK/Social.meta +3 -0
- package/Runtime/Core/Platform/SDK/Stats/StatsService.cs +96 -0
- package/Runtime/Core/Platform/SDK/Stats/StatsService.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Stats.meta +8 -0
- package/Runtime/Core/Platform/SDK/TokenAnalyticsUtil.cs +65 -0
- package/Runtime/Core/Platform/SDK/TokenAnalyticsUtil.cs.meta +3 -0
- package/Runtime/Core/Platform/SDK/Tournaments/TournamentConsoleCommands.cs +87 -0
- package/Runtime/Core/Platform/SDK/Tournaments/TournamentConsoleCommands.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Tournaments/TournamentService.cs +26 -0
- package/Runtime/Core/Platform/SDK/Tournaments/TournamentService.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK/Tournaments.meta +8 -0
- package/Runtime/Core/Platform/SDK/UnityUserDataCache.cs +169 -0
- package/Runtime/Core/Platform/SDK/UnityUserDataCache.cs.meta +11 -0
- package/Runtime/Core/Platform/SDK.meta +8 -0
- package/Runtime/Core/Platform/TaskLikeExtensions.cs +26 -0
- package/Runtime/Core/Platform/TaskLikeExtensions.cs.meta +3 -0
- package/Runtime/Core/Platform.meta +8 -0
- package/Runtime/Core/Pooling/Beamable.Pooling.asmdef +16 -0
- package/Runtime/Core/Pooling/Beamable.Pooling.asmdef.meta +7 -0
- package/Runtime/Core/Pooling/DisablePool.cs +104 -0
- package/Runtime/Core/Pooling/DisablePool.cs.meta +11 -0
- package/Runtime/Core/Pooling/HidePool.cs +203 -0
- package/Runtime/Core/Pooling/HidePool.cs.meta +11 -0
- package/Runtime/Core/Pooling/HidePoolObject.cs +15 -0
- package/Runtime/Core/Pooling/HidePoolObject.cs.meta +11 -0
- package/Runtime/Core/Pooling/HidePoolService.cs +64 -0
- package/Runtime/Core/Pooling/HidePoolService.cs.meta +11 -0
- package/Runtime/Core/Pooling/StaticClassPool.cs +82 -0
- package/Runtime/Core/Pooling/StaticClassPool.cs.meta +11 -0
- package/Runtime/Core/Pooling/StringBuilderPool.cs +116 -0
- package/Runtime/Core/Pooling/StringBuilderPool.cs.meta +11 -0
- package/Runtime/Core/Pooling.meta +8 -0
- package/Runtime/Core/Utility/Beamable.Utility.asmdef +14 -0
- package/Runtime/Core/Utility/Beamable.Utility.asmdef.meta +7 -0
- package/Runtime/Core/Utility/ServiceLock.cs +29 -0
- package/Runtime/Core/Utility/ServiceLock.cs.meta +11 -0
- package/Runtime/Core/Utility.meta +8 -0
- package/Runtime/Core.meta +8 -0
- package/Runtime/Dependencies/GameObjectContext.cs +36 -0
- package/Runtime/Dependencies/GameObjectContext.cs.meta +3 -0
- package/Runtime/Dependencies/ILoadWithContext.cs +12 -0
- package/Runtime/Dependencies/ILoadWithContext.cs.meta +3 -0
- package/Runtime/Dependencies.meta +3 -0
- package/Runtime/Environment/BeamableEnvironment.cs +134 -0
- package/Runtime/Environment/BeamableEnvironment.cs.meta +3 -0
- package/Runtime/Environment/PlatformHostConfigProvider.cs +21 -0
- package/Runtime/Environment/PlatformHostConfigProvider.cs.meta +3 -0
- package/Runtime/Environment/Resources/env-default.json +9 -0
- package/Runtime/Environment/Resources/env-default.json.meta +7 -0
- package/Runtime/Environment/Resources/env-dev.json +9 -0
- package/Runtime/Environment/Resources/env-dev.json.meta +7 -0
- package/Runtime/Environment/Resources/env-prod.json +9 -0
- package/Runtime/Environment/Resources/env-prod.json.meta +7 -0
- package/Runtime/Environment/Resources/env-staging.json +9 -0
- package/Runtime/Environment/Resources/env-staging.json.meta +7 -0
- package/Runtime/Environment/Resources/versions-default.json +3 -0
- package/Runtime/Environment/Resources/versions-default.json.meta +3 -0
- package/Runtime/Environment/Resources.meta +8 -0
- package/Runtime/Environment.meta +3 -0
- package/Runtime/ExperimentalAPI.cs +49 -0
- package/Runtime/ExperimentalAPI.cs.meta +11 -0
- package/Runtime/GlobalServices/BeamableGlobalGameObject.cs +37 -0
- package/Runtime/GlobalServices/BeamableGlobalGameObject.cs.meta +3 -0
- package/Runtime/GlobalServices.meta +3 -0
- package/Runtime/HelpBoxDecoratorAttribute.cs +16 -0
- package/Runtime/HelpBoxDecoratorAttribute.cs.meta +3 -0
- package/Runtime/InventoryViewEx.cs +171 -0
- package/Runtime/InventoryViewEx.cs.meta +11 -0
- package/Runtime/Modules/AccountManagement/Prefabs/AccountDisplayActive.prefab +6768 -0
- package/Runtime/Modules/AccountManagement/Prefabs/AccountDisplayActive.prefab.meta +7 -0
- package/Runtime/Modules/AccountManagement/Prefabs/AccountDisplayItem.prefab +3329 -0
- package/Runtime/Modules/AccountManagement/Prefabs/AccountDisplayItem.prefab.meta +7 -0
- package/Runtime/Modules/AccountManagement/Prefabs/AccountDisplayReadOnly.prefab +1693 -0
- package/Runtime/Modules/AccountManagement/Prefabs/AccountDisplayReadOnly.prefab.meta +7 -0
- package/Runtime/Modules/AccountManagement/Prefabs/AccountHUD.prefab +365 -0
- package/Runtime/Modules/AccountManagement/Prefabs/AccountHUD.prefab.meta +7 -0
- package/Runtime/Modules/AccountManagement/Prefabs/AccountManagementFlow.prefab +37528 -0
- package/Runtime/Modules/AccountManagement/Prefabs/AccountManagementFlow.prefab.meta +7 -0
- package/Runtime/Modules/AccountManagement/Prefabs/AvatarPreview.prefab +401 -0
- package/Runtime/Modules/AccountManagement/Prefabs/AvatarPreview.prefab.meta +7 -0
- package/Runtime/Modules/AccountManagement/Prefabs.meta +8 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountAvatarBehaviour.cs +51 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountAvatarBehaviour.cs.meta +11 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountCustomizationBehaviour.cs +185 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountCustomizationBehaviour.cs.meta +11 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountDisplayItem.cs +245 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountDisplayItem.cs.meta +11 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountEmailLogin.cs +126 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountEmailLogin.cs.meta +11 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountExistsSelect.cs +27 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountExistsSelect.cs.meta +11 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountForgotPassword.cs +63 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountForgotPassword.cs.meta +11 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountGeneralErrorBehaviour.cs +15 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountGeneralErrorBehaviour.cs.meta +11 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountMainMenu.cs +315 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountMainMenu.cs.meta +11 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountManagementAdapter.cs +75 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountManagementAdapter.cs.meta +11 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountManagementBehaviour.cs +68 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountManagementBehaviour.cs.meta +11 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountManagementCommands.cs +50 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountManagementCommands.cs.meta +11 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountManagementConfiguration.cs +172 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountManagementConfiguration.cs.meta +11 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountManagementHelper.cs +40 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountManagementHelper.cs.meta +3 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountManagementSignals.cs +716 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountManagementSignals.cs.meta +11 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountPlayerDataMenu.cs +94 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountPlayerDataMenu.cs.meta +11 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountSwitch.cs +55 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountSwitch.cs.meta +11 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountThirdPartyWaitingMenu.cs +22 -0
- package/Runtime/Modules/AccountManagement/Scripts/AccountThirdPartyWaitingMenu.cs.meta +11 -0
- package/Runtime/Modules/AccountManagement/Scripts/AppleSignInBehavior.cs +64 -0
- package/Runtime/Modules/AccountManagement/Scripts/AppleSignInBehavior.cs.meta +11 -0
- package/Runtime/Modules/AccountManagement/Scripts/ForgotPasswordArguments.cs +10 -0
- package/Runtime/Modules/AccountManagement/Scripts/ForgotPasswordArguments.cs.meta +11 -0
- package/Runtime/Modules/AccountManagement/Scripts/GoogleGameServicesBehavior.cs +67 -0
- package/Runtime/Modules/AccountManagement/Scripts/GoogleGameServicesBehavior.cs.meta +3 -0
- package/Runtime/Modules/AccountManagement/Scripts/GoogleSignInBehavior.cs +70 -0
- package/Runtime/Modules/AccountManagement/Scripts/GoogleSignInBehavior.cs.meta +3 -0
- package/Runtime/Modules/AccountManagement/Scripts/LoadingPopup.cs +34 -0
- package/Runtime/Modules/AccountManagement/Scripts/LoadingPopup.cs.meta +11 -0
- package/Runtime/Modules/AccountManagement/Scripts/LoginArguments.cs +10 -0
- package/Runtime/Modules/AccountManagement/Scripts/LoginArguments.cs.meta +11 -0
- package/Runtime/Modules/AccountManagement/Scripts/ThirdPartyLoginArgument.cs +10 -0
- package/Runtime/Modules/AccountManagement/Scripts/ThirdPartyLoginArgument.cs.meta +11 -0
- package/Runtime/Modules/AccountManagement/Scripts/TokenReference.cs +10 -0
- package/Runtime/Modules/AccountManagement/Scripts/TokenReference.cs.meta +11 -0
- package/Runtime/Modules/AccountManagement/Scripts.meta +8 -0
- package/Runtime/Modules/AccountManagement/Sprites/Beamable_Logo.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/Beamable_Logo.png.meta +121 -0
- package/Runtime/Modules/AccountManagement/Sprites/Container for avatar.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/Container for avatar.png.meta +99 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/edit.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/edit.png.meta +99 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-apple.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-apple.png.meta +121 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-check-circle.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-check-circle.png.meta +121 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-cloud-upload-2x.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-cloud-upload-2x.png.meta +121 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-facebook.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-facebook.png.meta +121 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-google.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-google.png.meta +88 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-mobile.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-mobile.png.meta +121 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-spinner.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-spinner.png.meta +121 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-tablet.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-tablet.png.meta +121 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-times-circle.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-times-circle.png.meta +121 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-user-circle.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-user-circle.png.meta +121 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-user-friends-2x.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-user-friends-2x.png.meta +121 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/ic_back.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/ic_back.png.meta +99 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/ic_chevron_left_white_24dp.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/ic_chevron_left_white_24dp.png.meta +121 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/ic_close_white_24dp.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/ic_close_white_24dp.png.meta +121 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/ic_lock_outline_white_24dp.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/ic_lock_outline_white_24dp.png.meta +121 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/ic_mail_outline_white_24dp.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/ic_mail_outline_white_24dp.png.meta +121 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/icon - cloud save.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/icon - cloud save.png.meta +88 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/lost wifi.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/lost wifi.png.meta +91 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/remove.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons/remove.png.meta +99 -0
- package/Runtime/Modules/AccountManagement/Sprites/Icons.meta +8 -0
- package/Runtime/Modules/AccountManagement/Sprites/Material Icons Atlas.spriteatlas +81 -0
- package/Runtime/Modules/AccountManagement/Sprites/Material Icons Atlas.spriteatlas.meta +8 -0
- package/Runtime/Modules/AccountManagement/Sprites/Portrait Grid Template.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/Portrait Grid Template.png.meta +121 -0
- package/Runtime/Modules/AccountManagement/Sprites/TEMP_Background_Black_2048.jpg +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/TEMP_Background_Black_2048.jpg.meta +121 -0
- package/Runtime/Modules/AccountManagement/Sprites/TEMP_Background_White_2048.jpg +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/TEMP_Background_White_2048.jpg.meta +121 -0
- package/Runtime/Modules/AccountManagement/Sprites/Triangle (1).png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/Triangle (1).png.meta +99 -0
- package/Runtime/Modules/AccountManagement/Sprites/avatar mask.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/avatar mask.png.meta +99 -0
- package/Runtime/Modules/AccountManagement/Sprites/board.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/board.png.meta +99 -0
- package/Runtime/Modules/AccountManagement/Sprites/boarder 2 (3).png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/boarder 2 (3).png.meta +99 -0
- package/Runtime/Modules/AccountManagement/Sprites/panel-left-only.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/panel-left-only.png.meta +88 -0
- package/Runtime/Modules/AccountManagement/Sprites/panel-right-only.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/panel-right-only.png.meta +88 -0
- package/Runtime/Modules/AccountManagement/Sprites/panel.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/panel.png.meta +99 -0
- package/Runtime/Modules/AccountManagement/Sprites/rounded_rect_8pt.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/rounded_rect_8pt.png.meta +121 -0
- package/Runtime/Modules/AccountManagement/Sprites/rounded_rect_8pt_shadow.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/rounded_rect_8pt_shadow.png.meta +121 -0
- package/Runtime/Modules/AccountManagement/Sprites/shadow button with shadow.png +0 -0
- package/Runtime/Modules/AccountManagement/Sprites/shadow button with shadow.png.meta +99 -0
- package/Runtime/Modules/AccountManagement/Sprites.meta +8 -0
- package/Runtime/Modules/AccountManagement.meta +8 -0
- package/Runtime/Modules/Announcements/Prefabs/AnnouncementRow Variant.prefab +629 -0
- package/Runtime/Modules/Announcements/Prefabs/AnnouncementRow Variant.prefab.meta +7 -0
- package/Runtime/Modules/Announcements/Prefabs/AnnouncementsFlow.prefab +2059 -0
- package/Runtime/Modules/Announcements/Prefabs/AnnouncementsFlow.prefab.meta +7 -0
- package/Runtime/Modules/Announcements/Prefabs.meta +8 -0
- package/Runtime/Modules/Announcements/Rework/AnnouncementRow.prefab +577 -0
- package/Runtime/Modules/Announcements/Rework/AnnouncementRow.prefab.meta +7 -0
- package/Runtime/Modules/Announcements/Rework/AnnouncementsCollection.cs +53 -0
- package/Runtime/Modules/Announcements/Rework/AnnouncementsCollection.cs.meta +11 -0
- package/Runtime/Modules/Announcements/Rework/AnnouncementsPresenter.cs +70 -0
- package/Runtime/Modules/Announcements/Rework/AnnouncementsPresenter.cs.meta +11 -0
- package/Runtime/Modules/Announcements/Rework/AnnouncementsPresenter.prefab +2309 -0
- package/Runtime/Modules/Announcements/Rework/AnnouncementsPresenter.prefab.meta +7 -0
- package/Runtime/Modules/Announcements/Rework.meta +8 -0
- package/Runtime/Modules/Announcements/Scripts/AnnouncementBehavior.cs +22 -0
- package/Runtime/Modules/Announcements/Scripts/AnnouncementBehavior.cs.meta +11 -0
- package/Runtime/Modules/Announcements/Scripts/AnnouncementMainMenu.cs +79 -0
- package/Runtime/Modules/Announcements/Scripts/AnnouncementMainMenu.cs.meta +11 -0
- package/Runtime/Modules/Announcements/Scripts/AnnouncementReadMenu.cs +47 -0
- package/Runtime/Modules/Announcements/Scripts/AnnouncementReadMenu.cs.meta +11 -0
- package/Runtime/Modules/Announcements/Scripts/AnnouncementSignals.cs +39 -0
- package/Runtime/Modules/Announcements/Scripts/AnnouncementSignals.cs.meta +11 -0
- package/Runtime/Modules/Announcements/Scripts/AnnouncementSummary.cs +19 -0
- package/Runtime/Modules/Announcements/Scripts/AnnouncementSummary.cs.meta +11 -0
- package/Runtime/Modules/Announcements/Scripts.meta +8 -0
- package/Runtime/Modules/Announcements.meta +8 -0
- package/Runtime/Modules/Avatars/Prefabs/AvatarPicker.prefab +1214 -0
- package/Runtime/Modules/Avatars/Prefabs/AvatarPicker.prefab.meta +7 -0
- package/Runtime/Modules/Avatars/Prefabs.meta +8 -0
- package/Runtime/Modules/Avatars/Scripts/AvatarConfiguration.cs +33 -0
- package/Runtime/Modules/Avatars/Scripts/AvatarConfiguration.cs.meta +11 -0
- package/Runtime/Modules/Avatars/Scripts/AvatarElementMaterial.mat +86 -0
- package/Runtime/Modules/Avatars/Scripts/AvatarElementMaterial.mat.meta +8 -0
- package/Runtime/Modules/Avatars/Scripts/AvatarElementUnlit.shader +113 -0
- package/Runtime/Modules/Avatars/Scripts/AvatarElementUnlit.shader.meta +9 -0
- package/Runtime/Modules/Avatars/Scripts/AvatarPickerBehaviour.cs +99 -0
- package/Runtime/Modules/Avatars/Scripts/AvatarPickerBehaviour.cs.meta +11 -0
- package/Runtime/Modules/Avatars/Scripts.meta +8 -0
- package/Runtime/Modules/Avatars/Sprites/Avatars.png +0 -0
- package/Runtime/Modules/Avatars/Sprites/Avatars.png.meta +340 -0
- package/Runtime/Modules/Avatars/Sprites/de_avatar_1.png +0 -0
- package/Runtime/Modules/Avatars/Sprites/de_avatar_1.png.meta +110 -0
- package/Runtime/Modules/Avatars/Sprites/de_avatar_2.png +0 -0
- package/Runtime/Modules/Avatars/Sprites/de_avatar_2.png.meta +110 -0
- package/Runtime/Modules/Avatars/Sprites/de_avatar_3.png +0 -0
- package/Runtime/Modules/Avatars/Sprites/de_avatar_3.png.meta +110 -0
- package/Runtime/Modules/Avatars/Sprites/de_avatar_4.png +0 -0
- package/Runtime/Modules/Avatars/Sprites/de_avatar_4.png.meta +110 -0
- package/Runtime/Modules/Avatars/Sprites/de_avatar_5.png +0 -0
- package/Runtime/Modules/Avatars/Sprites/de_avatar_5.png.meta +110 -0
- package/Runtime/Modules/Avatars/Sprites/de_avatar_6.png +0 -0
- package/Runtime/Modules/Avatars/Sprites/de_avatar_6.png.meta +110 -0
- package/Runtime/Modules/Avatars/Sprites.meta +8 -0
- package/Runtime/Modules/Avatars.meta +8 -0
- package/Runtime/Modules/BeamableDisplayModule.cs +83 -0
- package/Runtime/Modules/BeamableDisplayModule.cs.meta +11 -0
- package/Runtime/Modules/BeamableModule.cs +17 -0
- package/Runtime/Modules/BeamableModule.cs.meta +11 -0
- package/Runtime/Modules/Calendars/Prefabs/CalendarFlow.prefab +2881 -0
- package/Runtime/Modules/Calendars/Prefabs/CalendarFlow.prefab.meta +7 -0
- package/Runtime/Modules/Calendars/Prefabs/CalendarReward.prefab +318 -0
- package/Runtime/Modules/Calendars/Prefabs/CalendarReward.prefab.meta +7 -0
- package/Runtime/Modules/Calendars/Prefabs.meta +8 -0
- package/Runtime/Modules/Calendars/Scripts/CalendarBehaviour.cs +85 -0
- package/Runtime/Modules/Calendars/Scripts/CalendarBehaviour.cs.meta +11 -0
- package/Runtime/Modules/Calendars/Scripts/CalendarFlowMainPage.cs +8 -0
- package/Runtime/Modules/Calendars/Scripts/CalendarFlowMainPage.cs.meta +11 -0
- package/Runtime/Modules/Calendars/Scripts/CalendarRewardsDay.cs +32 -0
- package/Runtime/Modules/Calendars/Scripts/CalendarRewardsDay.cs.meta +11 -0
- package/Runtime/Modules/Calendars/Scripts.meta +8 -0
- package/Runtime/Modules/Calendars.meta +8 -0
- package/Runtime/Modules/Console/AdminFlow.prefab +1043 -0
- package/Runtime/Modules/Console/AdminFlow.prefab.meta +7 -0
- package/Runtime/Modules/Console/ConsoleConfiguration.cs +25 -0
- package/Runtime/Modules/Console/ConsoleConfiguration.cs.meta +11 -0
- package/Runtime/Modules/Console/ConsoleFlow.cs +662 -0
- package/Runtime/Modules/Console/ConsoleFlow.cs.meta +11 -0
- package/Runtime/Modules/Console/High-contrast-utilities-terminal.png +0 -0
- package/Runtime/Modules/Console/High-contrast-utilities-terminal.png.meta +88 -0
- package/Runtime/Modules/Console.meta +8 -0
- package/Runtime/Modules/Content/ContentCache.cs +184 -0
- package/Runtime/Modules/Content/ContentCache.cs.meta +11 -0
- package/Runtime/Modules/Content/ContentCommands.cs +161 -0
- package/Runtime/Modules/Content/ContentCommands.cs.meta +3 -0
- package/Runtime/Modules/Content/ContentConfiguration.cs +161 -0
- package/Runtime/Modules/Content/ContentConfiguration.cs.meta +11 -0
- package/Runtime/Modules/Content/ContentParameterProvider.cs +9 -0
- package/Runtime/Modules/Content/ContentParameterProvider.cs.meta +3 -0
- package/Runtime/Modules/Content/ContentService.cs +739 -0
- package/Runtime/Modules/Content/ContentService.cs.meta +11 -0
- package/Runtime/Modules/Content/ContentTextureConfiguration.cs +74 -0
- package/Runtime/Modules/Content/ContentTextureConfiguration.cs.meta +3 -0
- package/Runtime/Modules/Content/Extensions.cs +42 -0
- package/Runtime/Modules/Content/Extensions.cs.meta +3 -0
- package/Runtime/Modules/Content/IContentCacheFactory.cs +0 -0
- package/Runtime/Modules/Content/IContentCacheFactory.cs.meta +3 -0
- package/Runtime/Modules/Content/IManifestResolver.cs +42 -0
- package/Runtime/Modules/Content/IManifestResolver.cs.meta +3 -0
- package/Runtime/Modules/Content/Manifest.cs +22 -0
- package/Runtime/Modules/Content/Manifest.cs.meta +11 -0
- package/Runtime/Modules/Content.meta +8 -0
- package/Runtime/Modules/CoreConfiguration.cs +285 -0
- package/Runtime/Modules/CoreConfiguration.cs.meta +3 -0
- package/Runtime/Modules/CurrencyHUD/CurrencyHUD.prefab +787 -0
- package/Runtime/Modules/CurrencyHUD/CurrencyHUD.prefab.meta +7 -0
- package/Runtime/Modules/CurrencyHUD/CurrencyHUDFlow.cs +74 -0
- package/Runtime/Modules/CurrencyHUD/CurrencyHUDFlow.cs.meta +11 -0
- package/Runtime/Modules/CurrencyHUD/tool_icon_currency.png +0 -0
- package/Runtime/Modules/CurrencyHUD/tool_icon_currency.png.meta +121 -0
- package/Runtime/Modules/CurrencyHUD.meta +8 -0
- package/Runtime/Modules/DisruptorEngineDisplayModule.prefab +115 -0
- package/Runtime/Modules/DisruptorEngineDisplayModule.prefab.meta +7 -0
- package/Runtime/Modules/DisruptorEngineModule.prefab +113 -0
- package/Runtime/Modules/DisruptorEngineModule.prefab.meta +7 -0
- package/Runtime/Modules/Generics/CollectionPresenter.cs +9 -0
- package/Runtime/Modules/Generics/CollectionPresenter.cs.meta +3 -0
- package/Runtime/Modules/Generics/DataCollection.cs +19 -0
- package/Runtime/Modules/Generics/DataCollection.cs.meta +3 -0
- package/Runtime/Modules/Generics/DataPresenter.cs +40 -0
- package/Runtime/Modules/Generics/DataPresenter.cs.meta +3 -0
- package/Runtime/Modules/Generics/GenericButton.cs +21 -0
- package/Runtime/Modules/Generics/GenericButton.cs.meta +3 -0
- package/Runtime/Modules/Generics/Model.cs +26 -0
- package/Runtime/Modules/Generics/Model.cs.meta +3 -0
- package/Runtime/Modules/Generics/ModelPresenter.cs +25 -0
- package/Runtime/Modules/Generics/ModelPresenter.cs.meta +3 -0
- package/Runtime/Modules/Generics.meta +8 -0
- package/Runtime/Modules/Input/Beamable.Runtime.Input.asmdef +14 -0
- package/Runtime/Modules/Input/Beamable.Runtime.Input.asmdef.meta +7 -0
- package/Runtime/Modules/Input/BeamableInput.cs +45 -0
- package/Runtime/Modules/Input/BeamableInput.cs.meta +3 -0
- package/Runtime/Modules/Input/InputActionArg.cs +55 -0
- package/Runtime/Modules/Input/InputActionArg.cs.meta +3 -0
- package/Runtime/Modules/Input.meta +8 -0
- package/Runtime/Modules/Inventory/Prefabs/InventoryFlow.prefab +1230 -0
- package/Runtime/Modules/Inventory/Prefabs/InventoryFlow.prefab.meta +7 -0
- package/Runtime/Modules/Inventory/Prefabs/InventoryGroupPanel.prefab +831 -0
- package/Runtime/Modules/Inventory/Prefabs/InventoryGroupPanel.prefab.meta +7 -0
- package/Runtime/Modules/Inventory/Prefabs/InventoryObjectUI.prefab +513 -0
- package/Runtime/Modules/Inventory/Prefabs/InventoryObjectUI.prefab.meta +7 -0
- package/Runtime/Modules/Inventory/Prefabs.meta +8 -0
- package/Runtime/Modules/Inventory/Prototype/Assets/InventoryPresenter.prefab +1297 -0
- package/Runtime/Modules/Inventory/Prototype/Assets/InventoryPresenter.prefab.meta +7 -0
- package/Runtime/Modules/Inventory/Prototype/Assets/ItemPresenter.prefab +576 -0
- package/Runtime/Modules/Inventory/Prototype/Assets/ItemPresenter.prefab.meta +7 -0
- package/Runtime/Modules/Inventory/Prototype/Assets.meta +8 -0
- package/Runtime/Modules/Inventory/Prototype/GenericComponents/GenericTextButton.cs +36 -0
- package/Runtime/Modules/Inventory/Prototype/GenericComponents/GenericTextButton.cs.meta +3 -0
- package/Runtime/Modules/Inventory/Prototype/GenericComponents.meta +3 -0
- package/Runtime/Modules/Inventory/Prototype/InventoryPresenter.cs +159 -0
- package/Runtime/Modules/Inventory/Prototype/InventoryPresenter.cs.meta +3 -0
- package/Runtime/Modules/Inventory/Prototype/ItemPresenter.cs +29 -0
- package/Runtime/Modules/Inventory/Prototype/ItemPresenter.cs.meta +3 -0
- package/Runtime/Modules/Inventory/Prototype/ItemsCollection.cs +79 -0
- package/Runtime/Modules/Inventory/Prototype/ItemsCollection.cs.meta +3 -0
- package/Runtime/Modules/Inventory/Prototype/LanguageLocalization/LanguageLocalizationElement.cs +47 -0
- package/Runtime/Modules/Inventory/Prototype/LanguageLocalization/LanguageLocalizationElement.cs.meta +3 -0
- package/Runtime/Modules/Inventory/Prototype/LanguageLocalization/LanguageLocalizationManager.cs +43 -0
- package/Runtime/Modules/Inventory/Prototype/LanguageLocalization/LanguageLocalizationManager.cs.meta +3 -0
- package/Runtime/Modules/Inventory/Prototype/LanguageLocalization/LocalizationHelper.cs +15 -0
- package/Runtime/Modules/Inventory/Prototype/LanguageLocalization/LocalizationHelper.cs.meta +3 -0
- package/Runtime/Modules/Inventory/Prototype/LanguageLocalization.meta +3 -0
- package/Runtime/Modules/Inventory/Prototype.meta +8 -0
- package/Runtime/Modules/Inventory/Scripts/InventoryBehaviour.cs +59 -0
- package/Runtime/Modules/Inventory/Scripts/InventoryBehaviour.cs.meta +11 -0
- package/Runtime/Modules/Inventory/Scripts/InventoryCommands.cs +190 -0
- package/Runtime/Modules/Inventory/Scripts/InventoryCommands.cs.meta +3 -0
- package/Runtime/Modules/Inventory/Scripts/InventoryConfiguration.cs +32 -0
- package/Runtime/Modules/Inventory/Scripts/InventoryConfiguration.cs.meta +11 -0
- package/Runtime/Modules/Inventory/Scripts/InventoryGroupUI.cs +56 -0
- package/Runtime/Modules/Inventory/Scripts/InventoryGroupUI.cs.meta +11 -0
- package/Runtime/Modules/Inventory/Scripts/InventoryMainMenu.cs +65 -0
- package/Runtime/Modules/Inventory/Scripts/InventoryMainMenu.cs.meta +11 -0
- package/Runtime/Modules/Inventory/Scripts/InventoryMenuBehaviour.cs +56 -0
- package/Runtime/Modules/Inventory/Scripts/InventoryMenuBehaviour.cs.meta +11 -0
- package/Runtime/Modules/Inventory/Scripts/InventoryObjectUI.cs +38 -0
- package/Runtime/Modules/Inventory/Scripts/InventoryObjectUI.cs.meta +11 -0
- package/Runtime/Modules/Inventory/Scripts/InventorySignals.cs +43 -0
- package/Runtime/Modules/Inventory/Scripts/InventorySignals.cs.meta +11 -0
- package/Runtime/Modules/Inventory/Scripts/ItemImageSetter.cs +41 -0
- package/Runtime/Modules/Inventory/Scripts/ItemImageSetter.cs.meta +11 -0
- package/Runtime/Modules/Inventory/Scripts.meta +8 -0
- package/Runtime/Modules/Inventory.meta +8 -0
- package/Runtime/Modules/Leaderboards/Prefabs/LeaderboardFlow.prefab +1349 -0
- package/Runtime/Modules/Leaderboards/Prefabs/LeaderboardFlow.prefab.meta +7 -0
- package/Runtime/Modules/Leaderboards/Prefabs/LeaderboardRow.prefab +823 -0
- package/Runtime/Modules/Leaderboards/Prefabs/LeaderboardRow.prefab.meta +7 -0
- package/Runtime/Modules/Leaderboards/Prefabs.meta +8 -0
- package/Runtime/Modules/Leaderboards/Scripts/LeaderboardBehavior.cs +32 -0
- package/Runtime/Modules/Leaderboards/Scripts/LeaderboardBehavior.cs.meta +11 -0
- package/Runtime/Modules/Leaderboards/Scripts/LeaderboardItem.cs +24 -0
- package/Runtime/Modules/Leaderboards/Scripts/LeaderboardItem.cs.meta +11 -0
- package/Runtime/Modules/Leaderboards/Scripts/LeaderboardMainMenu.cs +80 -0
- package/Runtime/Modules/Leaderboards/Scripts/LeaderboardMainMenu.cs.meta +11 -0
- package/Runtime/Modules/Leaderboards/Scripts/LeaderboardSignals.cs +33 -0
- package/Runtime/Modules/Leaderboards/Scripts/LeaderboardSignals.cs.meta +11 -0
- package/Runtime/Modules/Leaderboards/Scripts.meta +8 -0
- package/Runtime/Modules/Leaderboards.meta +8 -0
- package/Runtime/Modules/ModuleConfigurationObject.cs +212 -0
- package/Runtime/Modules/ModuleConfigurationObject.cs.meta +11 -0
- package/Runtime/Modules/PackageUtil.cs +80 -0
- package/Runtime/Modules/PackageUtil.cs.meta +3 -0
- package/Runtime/Modules/Purchasing/PaymentCommands.cs +55 -0
- package/Runtime/Modules/Purchasing/PaymentCommands.cs.meta +3 -0
- package/Runtime/Modules/Purchasing/Steam/SteamPurchasingModule.cs +20 -0
- package/Runtime/Modules/Purchasing/Steam/SteamPurchasingModule.cs.meta +11 -0
- package/Runtime/Modules/Purchasing/Steam/SteamStore.cs +147 -0
- package/Runtime/Modules/Purchasing/Steam/SteamStore.cs.meta +11 -0
- package/Runtime/Modules/Purchasing/Steam.meta +8 -0
- package/Runtime/Modules/Purchasing/Unity.Beamable.Purchasing.asmdef +32 -0
- package/Runtime/Modules/Purchasing/Unity.Beamable.Purchasing.asmdef.meta +7 -0
- package/Runtime/Modules/Purchasing/UnityBeamablePurchaser.cs +514 -0
- package/Runtime/Modules/Purchasing/UnityBeamablePurchaser.cs.meta +11 -0
- package/Runtime/Modules/Purchasing.meta +8 -0
- package/Runtime/Modules/Sessions/SessionConfiguration.cs +16 -0
- package/Runtime/Modules/Sessions/SessionConfiguration.cs.meta +11 -0
- package/Runtime/Modules/Sessions.meta +8 -0
- package/Runtime/Modules/Shop/Prefabs/BasicListingRenderer.prefab +1231 -0
- package/Runtime/Modules/Shop/Prefabs/BasicListingRenderer.prefab.meta +7 -0
- package/Runtime/Modules/Shop/Prefabs/BasicStoreRenderer.prefab +1158 -0
- package/Runtime/Modules/Shop/Prefabs/BasicStoreRenderer.prefab.meta +7 -0
- package/Runtime/Modules/Shop/Prefabs/ObtainSummaryListCurrencyRenderer.prefab +699 -0
- package/Runtime/Modules/Shop/Prefabs/ObtainSummaryListCurrencyRenderer.prefab.meta +7 -0
- package/Runtime/Modules/Shop/Prefabs/ObtainSummaryListItemRenderer.prefab +515 -0
- package/Runtime/Modules/Shop/Prefabs/ObtainSummaryListItemRenderer.prefab.meta +7 -0
- package/Runtime/Modules/Shop/Prefabs/ObtainSummaryListRenderer.prefab +146 -0
- package/Runtime/Modules/Shop/Prefabs/ObtainSummaryListRenderer.prefab.meta +7 -0
- package/Runtime/Modules/Shop/Prefabs/ShopSpecials.prefab +886 -0
- package/Runtime/Modules/Shop/Prefabs/ShopSpecials.prefab.meta +7 -0
- package/Runtime/Modules/Shop/Prefabs/StoreButton.prefab +712 -0
- package/Runtime/Modules/Shop/Prefabs/StoreButton.prefab.meta +7 -0
- package/Runtime/Modules/Shop/Prefabs/StoreFlow.prefab +3396 -0
- package/Runtime/Modules/Shop/Prefabs/StoreFlow.prefab.meta +7 -0
- package/Runtime/Modules/Shop/Prefabs.meta +8 -0
- package/Runtime/Modules/Shop/Scripts/Defaults/BasicListingRenderer.cs +124 -0
- package/Runtime/Modules/Shop/Scripts/Defaults/BasicListingRenderer.cs.meta +11 -0
- package/Runtime/Modules/Shop/Scripts/Defaults/BasicStoreRenderer.cs +60 -0
- package/Runtime/Modules/Shop/Scripts/Defaults/BasicStoreRenderer.cs.meta +11 -0
- package/Runtime/Modules/Shop/Scripts/Defaults/ObtainSummaryListCurrencyRenderer.cs +25 -0
- package/Runtime/Modules/Shop/Scripts/Defaults/ObtainSummaryListCurrencyRenderer.cs.meta +11 -0
- package/Runtime/Modules/Shop/Scripts/Defaults/ObtainSummaryListItemRenderer.cs +23 -0
- package/Runtime/Modules/Shop/Scripts/Defaults/ObtainSummaryListItemRenderer.cs.meta +3 -0
- package/Runtime/Modules/Shop/Scripts/Defaults/ObtainSummaryListRenderer.cs +37 -0
- package/Runtime/Modules/Shop/Scripts/Defaults/ObtainSummaryListRenderer.cs.meta +11 -0
- package/Runtime/Modules/Shop/Scripts/Defaults.meta +8 -0
- package/Runtime/Modules/Shop/Scripts/ListingContent.cs +36 -0
- package/Runtime/Modules/Shop/Scripts/ListingContent.cs.meta +11 -0
- package/Runtime/Modules/Shop/Scripts/ListingRenderer.cs +10 -0
- package/Runtime/Modules/Shop/Scripts/ListingRenderer.cs.meta +11 -0
- package/Runtime/Modules/Shop/Scripts/ObtainRenderer.cs +10 -0
- package/Runtime/Modules/Shop/Scripts/ObtainRenderer.cs.meta +11 -0
- package/Runtime/Modules/Shop/Scripts/ShopConfiguration.cs +24 -0
- package/Runtime/Modules/Shop/Scripts/ShopConfiguration.cs.meta +11 -0
- package/Runtime/Modules/Shop/Scripts/ShopFlow.cs +124 -0
- package/Runtime/Modules/Shop/Scripts/ShopFlow.cs.meta +11 -0
- package/Runtime/Modules/Shop/Scripts/ShopLoadingMenu.cs +5 -0
- package/Runtime/Modules/Shop/Scripts/ShopLoadingMenu.cs.meta +11 -0
- package/Runtime/Modules/Shop/Scripts/ShopRewardRenderer.cs +26 -0
- package/Runtime/Modules/Shop/Scripts/ShopRewardRenderer.cs.meta +11 -0
- package/Runtime/Modules/Shop/Scripts/ShopSignals.cs +45 -0
- package/Runtime/Modules/Shop/Scripts/ShopSignals.cs.meta +11 -0
- package/Runtime/Modules/Shop/Scripts.meta +8 -0
- package/Runtime/Modules/Shop/Sprites/Buy Button.png +0 -0
- package/Runtime/Modules/Shop/Sprites/Buy Button.png.meta +121 -0
- package/Runtime/Modules/Shop/Sprites/Frame for button.png +0 -0
- package/Runtime/Modules/Shop/Sprites/Frame for button.png.meta +121 -0
- package/Runtime/Modules/Shop/Sprites/Item number container.png +0 -0
- package/Runtime/Modules/Shop/Sprites/Item number container.png.meta +121 -0
- package/Runtime/Modules/Shop/Sprites/base container P.png +0 -0
- package/Runtime/Modules/Shop/Sprites/base container P.png.meta +121 -0
- package/Runtime/Modules/Shop/Sprites/card frame.png +0 -0
- package/Runtime/Modules/Shop/Sprites/card frame.png.meta +121 -0
- package/Runtime/Modules/Shop/Sprites/item container.png +0 -0
- package/Runtime/Modules/Shop/Sprites/item container.png.meta +121 -0
- package/Runtime/Modules/Shop/Sprites.meta +8 -0
- package/Runtime/Modules/Shop.meta +8 -0
- package/Runtime/Modules/Show_page/Sprites/AvatarBTN/AvatarSMR.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/AvatarBTN/AvatarSMR.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/AvatarBTN/AvatarSMRS.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/AvatarBTN/AvatarSMRS.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/AvatarBTN/Avatarexample 1.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/AvatarBTN/Avatarexample 1.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/AvatarBTN/AvatoarButtonSMG.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/AvatarBTN/AvatoarButtonSMG.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/AvatarBTN.meta +8 -0
- package/Runtime/Modules/Show_page/Sprites/Container/ContainerGS.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/Container/ContainerGS.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/Container/ContainerGSR.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/Container/ContainerGSR.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/Container/ContainerTexture.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/Container/ContainerTexture.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/Container/Containeroutline.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/Container/Containeroutline.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/Container/containerSR.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/Container/containerSR.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/Container.meta +8 -0
- package/Runtime/Modules/Show_page/Sprites/DisableBTN/DisableSR.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/DisableBTN/DisableSR.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/DisableBTN/SMdiableRound.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/DisableBTN/SMdiableRound.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/DisableBTN/SMdisableR.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/DisableBTN/SMdisableR.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/DisableBTN/SMdisableSR.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/DisableBTN/SMdisableSR.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/DisableBTN/disableR.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/DisableBTN/disableR.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/DisableBTN/disableround.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/DisableBTN/disableround.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/DisableBTN.meta +8 -0
- package/Runtime/Modules/Show_page/Sprites/Switch_BTN/SwitchSMSR.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/Switch_BTN/SwitchSMSR.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/Switch_BTN/SwitchSQ.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/Switch_BTN/SwitchSQ.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/Switch_BTN/SwitchSquare.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/Switch_BTN/SwitchSquare.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/Switch_BTN/Switch_BTNL.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/Switch_BTN/Switch_BTNL.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/Switch_BTN/Switch_BTNLR.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/Switch_BTN/Switch_BTNLR.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/Switch_BTN/Switch_BTNR.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/Switch_BTN/Switch_BTNR.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/Switch_BTN/Switch_BTNRR.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/Switch_BTN/Switch_BTNRR.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/Switch_BTN/Switch_BTNSR.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/Switch_BTN/Switch_BTNSR.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/Switch_BTN/Switch_SBTNL.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/Switch_BTN/Switch_SBTNL.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/Switch_BTN/checkboxR.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/Switch_BTN/checkboxR.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/Switch_BTN/swatichSMR.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/Switch_BTN/swatichSMR.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/Switch_BTN/switch_BTNO.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/Switch_BTN/switch_BTNO.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/Switch_BTN.meta +8 -0
- package/Runtime/Modules/Show_page/Sprites/Tab/TabroundG.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/Tab/TabroundG.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/Tab/Tabtexture.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/Tab/Tabtexture.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/Tab/tabG.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/Tab/tabG.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/Tab/tabRound.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/Tab/tabRound.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/Tab/tabRoundtexture.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/Tab/tabRoundtexture.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/Tab/tabroundoutline.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/Tab/tabroundoutline.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/Tab.meta +8 -0
- package/Runtime/Modules/Show_page/Sprites/primary_color/SMsquareoutline.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/primary_color/SMsquareoutline.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/primary_color/example.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/primary_color/example.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/primary_color/example2.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/primary_color/example2.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/primary_color/outline round.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/primary_color/outline round.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/primary_color/outline.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/primary_color/outline.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/primary_color/outlineS.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/primary_color/outlineS.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/primary_color/round-button.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/primary_color/round-button.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/primary_color/round2.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/primary_color/round2.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/primary_color/smallRoutline.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/primary_color/smallRoutline.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/primary_color/smallroundoutline.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/primary_color/smallroundoutline.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/primary_color/texture.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/primary_color/texture.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/primary_color/textureex1.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/primary_color/textureex1.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/primary_color/woodtexture.png +0 -0
- package/Runtime/Modules/Show_page/Sprites/primary_color/woodtexture.png.meta +88 -0
- package/Runtime/Modules/Show_page/Sprites/primary_color.meta +8 -0
- package/Runtime/Modules/Show_page/Sprites.meta +8 -0
- package/Runtime/Modules/Show_page.meta +8 -0
- package/Runtime/Modules/Signals/DeSignal.cs +68 -0
- package/Runtime/Modules/Signals/DeSignal.cs.meta +11 -0
- package/Runtime/Modules/Signals/DeSignalTower.cs +68 -0
- package/Runtime/Modules/Signals/DeSignalTower.cs.meta +11 -0
- package/Runtime/Modules/Signals.meta +8 -0
- package/Runtime/Modules/Sound/AudioSourcePrefab.prefab +129 -0
- package/Runtime/Modules/Sound/AudioSourcePrefab.prefab.meta +7 -0
- package/Runtime/Modules/Sound/Scripts/SoundConfiguration.cs +52 -0
- package/Runtime/Modules/Sound/Scripts/SoundConfiguration.cs.meta +11 -0
- package/Runtime/Modules/Sound/Scripts.meta +8 -0
- package/Runtime/Modules/Sound.meta +8 -0
- package/Runtime/Modules/Stats/DefaultStats/Resources/AliasStat.asset +18 -0
- package/Runtime/Modules/Stats/DefaultStats/Resources/AliasStat.asset.meta +8 -0
- package/Runtime/Modules/Stats/DefaultStats/Resources/AvatarStat.asset +17 -0
- package/Runtime/Modules/Stats/DefaultStats/Resources/AvatarStat.asset.meta +8 -0
- package/Runtime/Modules/Stats/DefaultStats/Resources.meta +8 -0
- package/Runtime/Modules/Stats/DefaultStats.meta +8 -0
- package/Runtime/Modules/Stats/StatBehaviour.cs +181 -0
- package/Runtime/Modules/Stats/StatBehaviour.cs.meta +11 -0
- package/Runtime/Modules/Stats/StatObject.cs +106 -0
- package/Runtime/Modules/Stats/StatObject.cs.meta +11 -0
- package/Runtime/Modules/Stats/UserExtensions.cs +89 -0
- package/Runtime/Modules/Stats/UserExtensions.cs.meta +11 -0
- package/Runtime/Modules/Stats.meta +8 -0
- package/Runtime/Modules/Theme/Appliers/ButtonStyleApplier.cs +59 -0
- package/Runtime/Modules/Theme/Appliers/ButtonStyleApplier.cs.meta +11 -0
- package/Runtime/Modules/Theme/Appliers/GradientStyleApplier.cs +32 -0
- package/Runtime/Modules/Theme/Appliers/GradientStyleApplier.cs.meta +11 -0
- package/Runtime/Modules/Theme/Appliers/ImageStyleApplier.cs +30 -0
- package/Runtime/Modules/Theme/Appliers/ImageStyleApplier.cs.meta +11 -0
- package/Runtime/Modules/Theme/Appliers/LayoutStyleApplier.cs +22 -0
- package/Runtime/Modules/Theme/Appliers/LayoutStyleApplier.cs.meta +11 -0
- package/Runtime/Modules/Theme/Appliers/SelectableStyleApplier.cs +32 -0
- package/Runtime/Modules/Theme/Appliers/SelectableStyleApplier.cs.meta +11 -0
- package/Runtime/Modules/Theme/Appliers/SoundStyleApplier.cs +27 -0
- package/Runtime/Modules/Theme/Appliers/SoundStyleApplier.cs.meta +11 -0
- package/Runtime/Modules/Theme/Appliers/StringStyleApplier.cs +20 -0
- package/Runtime/Modules/Theme/Appliers/StringStyleApplier.cs.meta +11 -0
- package/Runtime/Modules/Theme/Appliers/StyleApplier.cs +28 -0
- package/Runtime/Modules/Theme/Appliers/StyleApplier.cs.meta +11 -0
- package/Runtime/Modules/Theme/Appliers/TextStyleApplier.cs +57 -0
- package/Runtime/Modules/Theme/Appliers/TextStyleApplier.cs.meta +11 -0
- package/Runtime/Modules/Theme/Appliers/TransformStyleApplier.cs +21 -0
- package/Runtime/Modules/Theme/Appliers/TransformStyleApplier.cs.meta +11 -0
- package/Runtime/Modules/Theme/Appliers/WindowStyleApplier.cs +51 -0
- package/Runtime/Modules/Theme/Appliers/WindowStyleApplier.cs.meta +11 -0
- package/Runtime/Modules/Theme/Appliers.meta +8 -0
- package/Runtime/Modules/Theme/CanHideAttribute.cs +12 -0
- package/Runtime/Modules/Theme/CanHideAttribute.cs.meta +11 -0
- package/Runtime/Modules/Theme/DefaultTheme.asset +949 -0
- package/Runtime/Modules/Theme/DefaultTheme.asset.meta +8 -0
- package/Runtime/Modules/Theme/Objects/GradientStyleObject.cs +33 -0
- package/Runtime/Modules/Theme/Objects/GradientStyleObject.cs.meta +11 -0
- package/Runtime/Modules/Theme/Objects/ImageStyleObject.cs +27 -0
- package/Runtime/Modules/Theme/Objects/ImageStyleObject.cs.meta +11 -0
- package/Runtime/Modules/Theme/Objects/LayoutStyleObject.cs +20 -0
- package/Runtime/Modules/Theme/Objects/LayoutStyleObject.cs.meta +11 -0
- package/Runtime/Modules/Theme/Objects/SelectableStyleObject.cs +38 -0
- package/Runtime/Modules/Theme/Objects/SelectableStyleObject.cs.meta +11 -0
- package/Runtime/Modules/Theme/Objects/TextStyleObject.cs +34 -0
- package/Runtime/Modules/Theme/Objects/TextStyleObject.cs.meta +11 -0
- package/Runtime/Modules/Theme/Objects.meta +8 -0
- package/Runtime/Modules/Theme/Palette.cs +94 -0
- package/Runtime/Modules/Theme/Palette.cs.meta +11 -0
- package/Runtime/Modules/Theme/PaletteStyleCopier.cs +34 -0
- package/Runtime/Modules/Theme/PaletteStyleCopier.cs.meta +11 -0
- package/Runtime/Modules/Theme/Palettes/ButtonPalette.cs +78 -0
- package/Runtime/Modules/Theme/Palettes/ButtonPalette.cs.meta +11 -0
- package/Runtime/Modules/Theme/Palettes/ColorPalette.cs +27 -0
- package/Runtime/Modules/Theme/Palettes/ColorPalette.cs.meta +11 -0
- package/Runtime/Modules/Theme/Palettes/FontPalette.cs +28 -0
- package/Runtime/Modules/Theme/Palettes/FontPalette.cs.meta +11 -0
- package/Runtime/Modules/Theme/Palettes/GradientPalette.cs +57 -0
- package/Runtime/Modules/Theme/Palettes/GradientPalette.cs.meta +11 -0
- package/Runtime/Modules/Theme/Palettes/ImagePalette.cs +31 -0
- package/Runtime/Modules/Theme/Palettes/ImagePalette.cs.meta +11 -0
- package/Runtime/Modules/Theme/Palettes/LayoutPalette.cs +28 -0
- package/Runtime/Modules/Theme/Palettes/LayoutPalette.cs.meta +11 -0
- package/Runtime/Modules/Theme/Palettes/SelectablePalette.cs +36 -0
- package/Runtime/Modules/Theme/Palettes/SelectablePalette.cs.meta +11 -0
- package/Runtime/Modules/Theme/Palettes/SoundPalette.cs +30 -0
- package/Runtime/Modules/Theme/Palettes/SoundPalette.cs.meta +11 -0
- package/Runtime/Modules/Theme/Palettes/StringPalette.cs +37 -0
- package/Runtime/Modules/Theme/Palettes/StringPalette.cs.meta +11 -0
- package/Runtime/Modules/Theme/Palettes/TextPalette.cs +61 -0
- package/Runtime/Modules/Theme/Palettes/TextPalette.cs.meta +11 -0
- package/Runtime/Modules/Theme/Palettes/TransformPalette.cs +29 -0
- package/Runtime/Modules/Theme/Palettes/TransformPalette.cs.meta +11 -0
- package/Runtime/Modules/Theme/Palettes/WindowPalette.cs +43 -0
- package/Runtime/Modules/Theme/Palettes/WindowPalette.cs.meta +11 -0
- package/Runtime/Modules/Theme/Palettes.meta +8 -0
- package/Runtime/Modules/Theme/StyleBehaviour.cs +73 -0
- package/Runtime/Modules/Theme/StyleBehaviour.cs.meta +11 -0
- package/Runtime/Modules/Theme/StyleObject.cs +46 -0
- package/Runtime/Modules/Theme/StyleObject.cs.meta +11 -0
- package/Runtime/Modules/Theme/ThemeConfiguration.cs +9 -0
- package/Runtime/Modules/Theme/ThemeConfiguration.cs.meta +11 -0
- package/Runtime/Modules/Theme/ThemeObject.cs +160 -0
- package/Runtime/Modules/Theme/ThemeObject.cs.meta +11 -0
- package/Runtime/Modules/Theme.meta +8 -0
- package/Runtime/Modules/Tournaments/Materials/TournamentEntryGradientUnlit.shader +109 -0
- package/Runtime/Modules/Tournaments/Materials/TournamentEntryGradientUnlit.shader.meta +9 -0
- package/Runtime/Modules/Tournaments/Materials/TournamentEntryMaterial.mat +86 -0
- package/Runtime/Modules/Tournaments/Materials/TournamentEntryMaterial.mat.meta +8 -0
- package/Runtime/Modules/Tournaments/Materials/TournamentGreyscale.mat +87 -0
- package/Runtime/Modules/Tournaments/Materials/TournamentGreyscale.mat.meta +8 -0
- package/Runtime/Modules/Tournaments/Materials/TournamentGreyscaleUnlit.shader +94 -0
- package/Runtime/Modules/Tournaments/Materials/TournamentGreyscaleUnlit.shader.meta +9 -0
- package/Runtime/Modules/Tournaments/Materials/TournamentStage.mat +86 -0
- package/Runtime/Modules/Tournaments/Materials/TournamentStage.mat.meta +8 -0
- package/Runtime/Modules/Tournaments/Materials/TournamentTypeButton.mat +86 -0
- package/Runtime/Modules/Tournaments/Materials/TournamentTypeButton.mat.meta +8 -0
- package/Runtime/Modules/Tournaments/Materials/TournamentYesterdayInactive 1.mat +86 -0
- package/Runtime/Modules/Tournaments/Materials/TournamentYesterdayInactive 1.mat.meta +8 -0
- package/Runtime/Modules/Tournaments/Materials/TournamentYesterdayInactive.mat +86 -0
- package/Runtime/Modules/Tournaments/Materials/TournamentYesterdayInactive.mat.meta +8 -0
- package/Runtime/Modules/Tournaments/Materials.meta +8 -0
- package/Runtime/Modules/Tournaments/Prefabs/InfoCard.prefab +741 -0
- package/Runtime/Modules/Tournaments/Prefabs/InfoCard.prefab.meta +7 -0
- package/Runtime/Modules/Tournaments/Prefabs/Panel.prefab +74 -0
- package/Runtime/Modules/Tournaments/Prefabs/Panel.prefab.meta +7 -0
- package/Runtime/Modules/Tournaments/Prefabs/RankBackground.prefab +442 -0
- package/Runtime/Modules/Tournaments/Prefabs/RankBackground.prefab.meta +7 -0
- package/Runtime/Modules/Tournaments/Prefabs/Reward1.prefab +521 -0
- package/Runtime/Modules/Tournaments/Prefabs/Reward1.prefab.meta +7 -0
- package/Runtime/Modules/Tournaments/Prefabs/Reward2.prefab +458 -0
- package/Runtime/Modules/Tournaments/Prefabs/Reward2.prefab.meta +7 -0
- package/Runtime/Modules/Tournaments/Prefabs/Reward3.prefab +226 -0
- package/Runtime/Modules/Tournaments/Prefabs/Reward3.prefab.meta +7 -0
- package/Runtime/Modules/Tournaments/Prefabs/RewardClaim.prefab +499 -0
- package/Runtime/Modules/Tournaments/Prefabs/RewardClaim.prefab.meta +7 -0
- package/Runtime/Modules/Tournaments/Prefabs/StageGain.prefab +135 -0
- package/Runtime/Modules/Tournaments/Prefabs/StageGain.prefab.meta +7 -0
- package/Runtime/Modules/Tournaments/Prefabs/StageGain2.prefab +157 -0
- package/Runtime/Modules/Tournaments/Prefabs/StageGain2.prefab.meta +7 -0
- package/Runtime/Modules/Tournaments/Prefabs/StageGainDown.prefab +156 -0
- package/Runtime/Modules/Tournaments/Prefabs/StageGainDown.prefab.meta +7 -0
- package/Runtime/Modules/Tournaments/Prefabs/TournamentEntryPlayer.prefab +753 -0
- package/Runtime/Modules/Tournaments/Prefabs/TournamentEntryPlayer.prefab.meta +7 -0
- package/Runtime/Modules/Tournaments/Prefabs/TournamentFlow.prefab +10421 -0
- package/Runtime/Modules/Tournaments/Prefabs/TournamentFlow.prefab.meta +7 -0
- package/Runtime/Modules/Tournaments/Prefabs/TournamentInfoDetail_General.prefab +209 -0
- package/Runtime/Modules/Tournaments/Prefabs/TournamentInfoDetail_General.prefab.meta +7 -0
- package/Runtime/Modules/Tournaments/Prefabs/Tournament_entry.prefab +3002 -0
- package/Runtime/Modules/Tournaments/Prefabs/Tournament_entry.prefab.meta +7 -0
- package/Runtime/Modules/Tournaments/Prefabs/infoDetail.prefab +988 -0
- package/Runtime/Modules/Tournaments/Prefabs/infoDetail.prefab.meta +7 -0
- package/Runtime/Modules/Tournaments/Prefabs/number.prefab +244 -0
- package/Runtime/Modules/Tournaments/Prefabs/number.prefab.meta +7 -0
- package/Runtime/Modules/Tournaments/Prefabs.meta +8 -0
- package/Runtime/Modules/Tournaments/Scripts/CountdownTextBehaviour.cs +65 -0
- package/Runtime/Modules/Tournaments/Scripts/CountdownTextBehaviour.cs.meta +11 -0
- package/Runtime/Modules/Tournaments/Scripts/FixedCharacterFitter.cs +49 -0
- package/Runtime/Modules/Tournaments/Scripts/FixedCharacterFitter.cs.meta +11 -0
- package/Runtime/Modules/Tournaments/Scripts/MockTournamentService.cs +221 -0
- package/Runtime/Modules/Tournaments/Scripts/MockTournamentService.cs.meta +11 -0
- package/Runtime/Modules/Tournaments/Scripts/TabBehaviour.cs +97 -0
- package/Runtime/Modules/Tournaments/Scripts/TabBehaviour.cs.meta +11 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamenClaimableRewardBehaviour.cs +37 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamenClaimableRewardBehaviour.cs.meta +11 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentColorConstraint.cs +62 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentColorConstraint.cs.meta +11 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentDataSource.cs +74 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentDataSource.cs.meta +11 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentEntryBehavior.cs +221 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentEntryBehavior.cs.meta +11 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentEntryPlayerBehaviour.cs +152 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentEntryPlayerBehaviour.cs.meta +11 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentInfoBehaviour.cs +33 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentInfoBehaviour.cs.meta +11 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentInfoDetailBehaviour.cs +8 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentInfoDetailBehaviour.cs.meta +11 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentInfoDetailContainerBehaviour.cs +32 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentInfoDetailContainerBehaviour.cs.meta +11 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentNumbersBehaviour.cs +20 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentNumbersBehaviour.cs.meta +11 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentRewardBehaviour.cs +21 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentRewardBehaviour.cs.meta +11 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentRewardEntryBehaviour.cs +32 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentRewardEntryBehaviour.cs.meta +11 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentRewardPanelBehaviour.cs +78 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentRewardPanelBehaviour.cs.meta +11 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentScoreUtil.cs +77 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentScoreUtil.cs.meta +11 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentStageGainBehaviour.cs +25 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentStageGainBehaviour.cs.meta +11 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentsBehaviour.cs +630 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentsBehaviour.cs.meta +11 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentsConfiguration.cs +32 -0
- package/Runtime/Modules/Tournaments/Scripts/TournamentsConfiguration.cs.meta +11 -0
- package/Runtime/Modules/Tournaments/Scripts.meta +8 -0
- package/Runtime/Modules/Tournaments/Sprites/1stageup.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/1stageup.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/2Stageup.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/2Stageup.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/4-10.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/4-10.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/4-10new.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/4-10new.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/Bronzer.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/Bronzer.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/Oval_background.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/Oval_background.png.meta +92 -0
- package/Runtime/Modules/Tournaments/Sprites/Oval_outline.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/Oval_outline.png.meta +92 -0
- package/Runtime/Modules/Tournaments/Sprites/Playerbaroutline_T.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/Playerbaroutline_T.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/Readmore.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/Readmore.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/Rectangle_background.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/Rectangle_background.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/Rectangle_background2.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/Rectangle_background2.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/Rectangle_outline_B.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/Rectangle_outline_B.png.meta +92 -0
- package/Runtime/Modules/Tournaments/Sprites/Rectangle_outline_T.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/Rectangle_outline_T.png.meta +92 -0
- package/Runtime/Modules/Tournaments/Sprites/Today white inactive.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/Today white inactive.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/Today white.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/Today white.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/Todayoutline.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/Todayoutline.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/ToptabOutline.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/ToptabOutline.png.meta +92 -0
- package/Runtime/Modules/Tournaments/Sprites/Yesterday white inactive.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/Yesterday white inactive.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/Yesterdaybackground.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/Yesterdaybackground.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/Yesterdayoutline.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/Yesterdayoutline.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/arrow.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/arrow.png.meta +92 -0
- package/Runtime/Modules/Tournaments/Sprites/atlas-sdf.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/atlas-sdf.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/badge.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/badge.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/button left.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/button left.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/button_left.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/button_left.png.meta +92 -0
- package/Runtime/Modules/Tournaments/Sprites/coloroutline.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/coloroutline.png.meta +92 -0
- package/Runtime/Modules/Tournaments/Sprites/gradient_left.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/gradient_left.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/icons/Gold.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/icons/Gold.png.meta +92 -0
- package/Runtime/Modules/Tournaments/Sprites/icons/Tourament.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/icons/Tourament.png.meta +92 -0
- package/Runtime/Modules/Tournaments/Sprites/icons/avator.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/icons/avator.png.meta +92 -0
- package/Runtime/Modules/Tournaments/Sprites/icons/back.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/icons/back.png.meta +92 -0
- package/Runtime/Modules/Tournaments/Sprites/icons/info.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/icons/info.png.meta +92 -0
- package/Runtime/Modules/Tournaments/Sprites/icons/lootbox.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/icons/lootbox.png.meta +92 -0
- package/Runtime/Modules/Tournaments/Sprites/icons/main panel back.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/icons/main panel back.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/icons/virtual currency.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/icons/virtual currency.png.meta +92 -0
- package/Runtime/Modules/Tournaments/Sprites/icons//342/200/246.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/icons//342/200/246.png.meta +92 -0
- package/Runtime/Modules/Tournaments/Sprites/icons.meta +8 -0
- package/Runtime/Modules/Tournaments/Sprites/imageExample.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/imageExample.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/info card.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/info card.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/info.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/info.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/infodetail back.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/infodetail back.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/left tab with shadow.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/left tab with shadow.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/new_player_bar.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/new_player_bar.png.meta +110 -0
- package/Runtime/Modules/Tournaments/Sprites/nextBT.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/nextBT.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/number.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/number.png.meta +92 -0
- package/Runtime/Modules/Tournaments/Sprites/page.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/page.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/player_bar_outline.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/player_bar_outline.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/player_panel.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/player_panel.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/playerbar_45.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/playerbar_45.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/playeroutline.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/playeroutline.png.meta +92 -0
- package/Runtime/Modules/Tournaments/Sprites/rank_panel.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/rank_panel.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/read less.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/read less.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/read less2.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/read less2.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/rect_sdf.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/rect_sdf.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/reward_shape.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/reward_shape.png.meta +92 -0
- package/Runtime/Modules/Tournaments/Sprites/shadow.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/shadow.png.meta +92 -0
- package/Runtime/Modules/Tournaments/Sprites/tab outline.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/tab outline.png.meta +92 -0
- package/Runtime/Modules/Tournaments/Sprites/today.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/today.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/todaybackground.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/todaybackground.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/white shadow.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/white shadow.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/white_shadow_vertical.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/white_shadow_vertical.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/yellow-background-png.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/yellow-background-png.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/yesterday white.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/yesterday white.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites/yesterday.png +0 -0
- package/Runtime/Modules/Tournaments/Sprites/yesterday.png.meta +88 -0
- package/Runtime/Modules/Tournaments/Sprites.meta +8 -0
- package/Runtime/Modules/Tournaments.meta +8 -0
- package/Runtime/Modules.meta +8 -0
- package/Runtime/OpenApiExtensions.cs +18 -0
- package/Runtime/OpenApiExtensions.cs.meta +3 -0
- package/Runtime/PaymentExtensions.cs +16 -0
- package/Runtime/PaymentExtensions.cs.meta +3 -0
- package/Runtime/PlatformConsoleCommands.cs +559 -0
- package/Runtime/PlatformConsoleCommands.cs.meta +3 -0
- package/Runtime/Player/ApiServices.cs +162 -0
- package/Runtime/Player/ApiServices.cs.meta +3 -0
- package/Runtime/Player/BeamableBehaviour.cs +142 -0
- package/Runtime/Player/BeamableBehaviour.cs.meta +3 -0
- package/Runtime/Player/CloudSaving/CloudDataUpdateBuilder.cs +125 -0
- package/Runtime/Player/CloudSaving/CloudDataUpdateBuilder.cs.meta +3 -0
- package/Runtime/Player/CloudSaving/CloudServiceConflictResolver.cs +19 -0
- package/Runtime/Player/CloudSaving/CloudServiceConflictResolver.cs.meta +3 -0
- package/Runtime/Player/CloudSaving/ConflictResolverExtensions.cs +58 -0
- package/Runtime/Player/CloudSaving/ConflictResolverExtensions.cs.meta +3 -0
- package/Runtime/Player/CloudSaving/Data/CloudSaveEntry.cs +43 -0
- package/Runtime/Player/CloudSaving/Data/CloudSaveEntry.cs.meta +3 -0
- package/Runtime/Player/CloudSaving/Data/CloudSaveStatus.cs +10 -0
- package/Runtime/Player/CloudSaving/Data/CloudSaveStatus.cs.meta +3 -0
- package/Runtime/Player/CloudSaving/Data/CloudSavingManifest.cs +12 -0
- package/Runtime/Player/CloudSaving/Data/CloudSavingManifest.cs.meta +3 -0
- package/Runtime/Player/CloudSaving/Data/ConflictResolveType.cs +8 -0
- package/Runtime/Player/CloudSaving/Data/ConflictResolveType.cs.meta +3 -0
- package/Runtime/Player/CloudSaving/Data/DataConflictDetail.cs +51 -0
- package/Runtime/Player/CloudSaving/Data/DataConflictDetail.cs.meta +3 -0
- package/Runtime/Player/CloudSaving/Data/EntryDownloadDetail.cs +9 -0
- package/Runtime/Player/CloudSaving/Data/EntryDownloadDetail.cs.meta +3 -0
- package/Runtime/Player/CloudSaving/Data/PlayerCloudSavingConfiguration.cs +56 -0
- package/Runtime/Player/CloudSaving/Data/PlayerCloudSavingConfiguration.cs.meta +3 -0
- package/Runtime/Player/CloudSaving/Data/SavingFileEntry.cs +11 -0
- package/Runtime/Player/CloudSaving/Data/SavingFileEntry.cs.meta +3 -0
- package/Runtime/Player/CloudSaving/Data.meta +8 -0
- package/Runtime/Player/CloudSaving/Interfaces/ICloudSavingService.cs +165 -0
- package/Runtime/Player/CloudSaving/Interfaces/ICloudSavingService.cs.meta +3 -0
- package/Runtime/Player/CloudSaving/Interfaces/IConflictResolver.cs +22 -0
- package/Runtime/Player/CloudSaving/Interfaces/IConflictResolver.cs.meta +3 -0
- package/Runtime/Player/CloudSaving/Interfaces.meta +8 -0
- package/Runtime/Player/CloudSaving/PlayerCloudSaving.cs +1158 -0
- package/Runtime/Player/CloudSaving/PlayerCloudSaving.cs.meta +11 -0
- package/Runtime/Player/CloudSaving.meta +8 -0
- package/Runtime/Player/Leaderboards/LeaderboardLists.cs +216 -0
- package/Runtime/Player/Leaderboards/LeaderboardLists.cs.meta +3 -0
- package/Runtime/Player/Leaderboards/Lists/FriendScoresList.cs +76 -0
- package/Runtime/Player/Leaderboards/Lists/FriendScoresList.cs.meta +3 -0
- package/Runtime/Player/Leaderboards/Lists/NearbyScoresList.cs +67 -0
- package/Runtime/Player/Leaderboards/Lists/NearbyScoresList.cs.meta +3 -0
- package/Runtime/Player/Leaderboards/Lists/PlayerCollectionScoresList.cs +52 -0
- package/Runtime/Player/Leaderboards/Lists/PlayerCollectionScoresList.cs.meta +3 -0
- package/Runtime/Player/Leaderboards/Lists/TopScoresList.cs +41 -0
- package/Runtime/Player/Leaderboards/Lists/TopScoresList.cs.meta +3 -0
- package/Runtime/Player/Leaderboards/Lists.meta +3 -0
- package/Runtime/Player/Leaderboards/PlayerLeaderboard.cs +774 -0
- package/Runtime/Player/Leaderboards/PlayerLeaderboard.cs.meta +3 -0
- package/Runtime/Player/Leaderboards/PlayerLeaderboards.cs +95 -0
- package/Runtime/Player/Leaderboards/PlayerLeaderboards.cs.meta +3 -0
- package/Runtime/Player/Leaderboards.meta +3 -0
- package/Runtime/Player/MonoBehaviourExtensions.cs +17 -0
- package/Runtime/Player/MonoBehaviourExtensions.cs.meta +3 -0
- package/Runtime/Player/ObservableAccessToken.cs +12 -0
- package/Runtime/Player/ObservableAccessToken.cs.meta +3 -0
- package/Runtime/Player/ObservableUser.cs +30 -0
- package/Runtime/Player/ObservableUser.cs.meta +3 -0
- package/Runtime/Player/PlayerAccounts.cs +2132 -0
- package/Runtime/Player/PlayerAccounts.cs.meta +3 -0
- package/Runtime/Player/PlayerAnnouncements.cs +239 -0
- package/Runtime/Player/PlayerAnnouncements.cs.meta +3 -0
- package/Runtime/Player/PlayerCurrencies.cs +157 -0
- package/Runtime/Player/PlayerCurrencies.cs.meta +3 -0
- package/Runtime/Player/PlayerFriends.cs +661 -0
- package/Runtime/Player/PlayerFriends.cs.meta +11 -0
- package/Runtime/Player/PlayerInventory.cs +893 -0
- package/Runtime/Player/PlayerInventory.cs.meta +3 -0
- package/Runtime/Player/PlayerItemGroup.cs +200 -0
- package/Runtime/Player/PlayerItemGroup.cs.meta +3 -0
- package/Runtime/Player/PlayerLobby.cs +328 -0
- package/Runtime/Player/PlayerLobby.cs.meta +3 -0
- package/Runtime/Player/PlayerParty.cs +601 -0
- package/Runtime/Player/PlayerParty.cs.meta +11 -0
- package/Runtime/Player/PlayerStateService.cs +44 -0
- package/Runtime/Player/PlayerStateService.cs.meta +3 -0
- package/Runtime/Player/PlayerStats.cs +238 -0
- package/Runtime/Player/PlayerStats.cs.meta +3 -0
- package/Runtime/Player/SdkEventService.cs +259 -0
- package/Runtime/Player/SdkEventService.cs.meta +3 -0
- package/Runtime/Player.meta +3 -0
- package/Runtime/PromiseExtensions.cs +304 -0
- package/Runtime/PromiseExtensions.cs.meta +11 -0
- package/Runtime/ReflectionCache/BeamReflectionCache.cs +186 -0
- package/Runtime/ReflectionCache/BeamReflectionCache.cs.meta +11 -0
- package/Runtime/ReflectionCache/ReflectionSystemObject.cs +55 -0
- package/Runtime/ReflectionCache/ReflectionSystemObject.cs.meta +11 -0
- package/Runtime/ReflectionCache/Resources/ReflectionSystems/BeamReflectionCache.asset +16 -0
- package/Runtime/ReflectionCache/Resources/ReflectionSystems/BeamReflectionCache.asset.meta +8 -0
- package/Runtime/ReflectionCache/Resources/ReflectionSystems/ThirdPartyIdentityReflectionCache.asset +16 -0
- package/Runtime/ReflectionCache/Resources/ReflectionSystems/ThirdPartyIdentityReflectionCache.asset.meta +8 -0
- package/Runtime/ReflectionCache/Resources/ReflectionSystems.meta +8 -0
- package/Runtime/ReflectionCache/Resources.meta +8 -0
- package/Runtime/ReflectionCache/ThirdPartyIdentityReflectionCache.cs +84 -0
- package/Runtime/ReflectionCache/ThirdPartyIdentityReflectionCache.cs.meta +3 -0
- package/Runtime/ReflectionCache.meta +8 -0
- package/Runtime/Server/BeamContextExtensions.cs +13 -0
- package/Runtime/Server/BeamContextExtensions.cs.meta +3 -0
- package/Runtime/Server/Content/ApiContentExtensions.cs +88 -0
- package/Runtime/Server/Content/ApiContentExtensions.cs.meta +3 -0
- package/Runtime/Server/Content.meta +8 -0
- package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonElement.cs +40 -0
- package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonElement.cs.meta +11 -0
- package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonIdAttribute.cs +13 -0
- package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonIdAttribute.cs.meta +11 -0
- package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonIgnoreAttribute.cs +15 -0
- package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonIgnoreAttribute.cs.meta +11 -0
- package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonIgnoreIfDefault.cs +22 -0
- package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonIgnoreIfDefault.cs.meta +11 -0
- package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonIgnoreIfNull.cs +23 -0
- package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonIgnoreIfNull.cs.meta +11 -0
- package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonMemberMapAttributeUsageAttribute.cs +23 -0
- package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonMemberMapAttributeUsageAttribute.cs.meta +11 -0
- package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonRepresentationAttribute.cs +16 -0
- package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonRepresentationAttribute.cs.meta +11 -0
- package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonSerializationOptionsAttribute.cs +12 -0
- package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonSerializationOptionsAttribute.cs.meta +11 -0
- package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonType.cs +34 -0
- package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonType.cs.meta +11 -0
- package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/IBsonMemberMapAttribute.cs +11 -0
- package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/IBsonMemberMapAttribute.cs.meta +11 -0
- package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson.meta +11 -0
- package/Runtime/Server/LegacyCommon/Mocks/MongoDB.meta +8 -0
- package/Runtime/Server/LegacyCommon/Mocks.meta +3 -0
- package/Runtime/Server/LegacyCommon/StorageDocument.cs +32 -0
- package/Runtime/Server/LegacyCommon/StorageDocument.cs.meta +11 -0
- package/Runtime/Server/LegacyCommon.meta +3 -0
- package/Runtime/Server/MicroserviceClient.cs +415 -0
- package/Runtime/Server/MicroserviceClient.cs.meta +11 -0
- package/Runtime/Server/MicroserviceIndividualization.cs +80 -0
- package/Runtime/Server/MicroserviceIndividualization.cs.meta +11 -0
- package/Runtime/Server/MicroservicePrefixService.cs +10 -0
- package/Runtime/Server/MicroservicePrefixService.cs.meta +3 -0
- package/Runtime/Server/ThirdPartyFederatedLoginExtensions.cs +60 -0
- package/Runtime/Server/ThirdPartyFederatedLoginExtensions.cs.meta +3 -0
- package/Runtime/Server.meta +3 -0
- package/Runtime/UI/Buttons/DE_Button.prefab +402 -0
- package/Runtime/UI/Buttons/DE_Button.prefab.meta +7 -0
- package/Runtime/UI/Buttons/DE_ButtonInline.prefab +220 -0
- package/Runtime/UI/Buttons/DE_ButtonInline.prefab.meta +7 -0
- package/Runtime/UI/Buttons/DeButtonBehaviour.cs +33 -0
- package/Runtime/UI/Buttons/DeButtonBehaviour.cs.meta +11 -0
- package/Runtime/UI/Buttons.meta +8 -0
- package/Runtime/UI/DE_Canvas.prefab +100 -0
- package/Runtime/UI/DE_Canvas.prefab.meta +7 -0
- package/Runtime/UI/DE_Panel.prefab +113 -0
- package/Runtime/UI/DE_Panel.prefab.meta +7 -0
- package/Runtime/UI/DE_Title.prefab +259 -0
- package/Runtime/UI/DE_Title.prefab.meta +7 -0
- package/Runtime/UI/DE_Title_Small.prefab +193 -0
- package/Runtime/UI/DE_Title_Small.prefab.meta +7 -0
- package/Runtime/UI/DE_Window.prefab +1718 -0
- package/Runtime/UI/DE_Window.prefab.meta +7 -0
- package/Runtime/UI/De_Panel_Horizontal.prefab +151 -0
- package/Runtime/UI/De_Panel_Horizontal.prefab.meta +7 -0
- package/Runtime/UI/Fonts/Lato-Bold SDF 1.asset +5411 -0
- package/Runtime/UI/Fonts/Lato-Bold SDF 1.asset.meta +8 -0
- package/Runtime/UI/Fonts/Lato-Bold.ttf +0 -0
- package/Runtime/UI/Fonts/Lato-Bold.ttf.meta +23 -0
- package/Runtime/UI/Fonts/Lato-Regular SDF 1.asset +5419 -0
- package/Runtime/UI/Fonts/Lato-Regular SDF 1.asset.meta +8 -0
- package/Runtime/UI/Fonts/Lato-Regular.ttf +0 -0
- package/Runtime/UI/Fonts/Lato-Regular.ttf.meta +22 -0
- package/Runtime/UI/Fonts/OpenSans-Regular SDF 1.asset +5675 -0
- package/Runtime/UI/Fonts/OpenSans-Regular SDF 1.asset.meta +8 -0
- package/Runtime/UI/Fonts/OpenSans-Regular.ttf +0 -0
- package/Runtime/UI/Fonts/OpenSans-Regular.ttf.meta +22 -0
- package/Runtime/UI/Fonts/Ubuntu-Bold.ttf +0 -0
- package/Runtime/UI/Fonts/Ubuntu-Bold.ttf.meta +22 -0
- package/Runtime/UI/Fonts/Ubuntu-BoldItalic.ttf +0 -0
- package/Runtime/UI/Fonts/Ubuntu-BoldItalic.ttf.meta +23 -0
- package/Runtime/UI/Fonts/Ubuntu-Italic.ttf +0 -0
- package/Runtime/UI/Fonts/Ubuntu-Italic.ttf.meta +25 -0
- package/Runtime/UI/Fonts/Ubuntu-Light.ttf +0 -0
- package/Runtime/UI/Fonts/Ubuntu-Light.ttf.meta +29 -0
- package/Runtime/UI/Fonts/Ubuntu-LightItalic.ttf +0 -0
- package/Runtime/UI/Fonts/Ubuntu-LightItalic.ttf.meta +27 -0
- package/Runtime/UI/Fonts/Ubuntu-Medium SDF.asset +835 -0
- package/Runtime/UI/Fonts/Ubuntu-Medium SDF.asset.meta +8 -0
- package/Runtime/UI/Fonts/Ubuntu-Medium.ttf +0 -0
- package/Runtime/UI/Fonts/Ubuntu-Medium.ttf.meta +24 -0
- package/Runtime/UI/Fonts/Ubuntu-MediumItalic.ttf +0 -0
- package/Runtime/UI/Fonts/Ubuntu-MediumItalic.ttf.meta +26 -0
- package/Runtime/UI/Fonts/Ubuntu-Regular.ttf +0 -0
- package/Runtime/UI/Fonts/Ubuntu-Regular.ttf.meta +28 -0
- package/Runtime/UI/Fonts/Vision/Vision-Bold SDF.asset +2064 -0
- package/Runtime/UI/Fonts/Vision/Vision-Bold SDF.asset.meta +8 -0
- package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-Alias.mat +104 -0
- package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-Alias.mat.meta +8 -0
- package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-Heavy-Shadow.mat +104 -0
- package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-Heavy-Shadow.mat.meta +8 -0
- package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-RankBronze.mat +104 -0
- package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-RankBronze.mat.meta +8 -0
- package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-RankGold.mat +104 -0
- package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-RankGold.mat.meta +8 -0
- package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-RankSilver.mat +104 -0
- package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-RankSilver.mat.meta +8 -0
- package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-RankStandard.mat +104 -0
- package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-RankStandard.mat.meta +8 -0
- package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-Shadow.mat +104 -0
- package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-Shadow.mat.meta +8 -0
- package/Runtime/UI/Fonts/Vision/Vision-Bold.ttf +0 -0
- package/Runtime/UI/Fonts/Vision/Vision-Bold.ttf.meta +24 -0
- package/Runtime/UI/Fonts/Vision/Vision-Heavy.ttf +0 -0
- package/Runtime/UI/Fonts/Vision/Vision-Heavy.ttf.meta +23 -0
- package/Runtime/UI/Fonts/Vision.meta +8 -0
- package/Runtime/UI/Fonts.meta +8 -0
- package/Runtime/UI/Layouts/MediaQueryBehaviour.cs +74 -0
- package/Runtime/UI/Layouts/MediaQueryBehaviour.cs.meta +11 -0
- package/Runtime/UI/Layouts/MediaQueryObject.cs +118 -0
- package/Runtime/UI/Layouts/MediaQueryObject.cs.meta +11 -0
- package/Runtime/UI/Layouts/MediaSourceBehaviour.cs +49 -0
- package/Runtime/UI/Layouts/MediaSourceBehaviour.cs.meta +11 -0
- package/Runtime/UI/Layouts/ReparenterBehaviour.cs +86 -0
- package/Runtime/UI/Layouts/ReparenterBehaviour.cs.meta +11 -0
- package/Runtime/UI/Layouts/Resources/accountFlowMediaQuery.asset +17 -0
- package/Runtime/UI/Layouts/Resources/accountFlowMediaQuery.asset.meta +8 -0
- package/Runtime/UI/Layouts/Resources/keyboardOpen.asset +17 -0
- package/Runtime/UI/Layouts/Resources/keyboardOpen.asset.meta +8 -0
- package/Runtime/UI/Layouts/Resources.meta +8 -0
- package/Runtime/UI/Layouts/StackLayout.cs +70 -0
- package/Runtime/UI/Layouts/StackLayout.cs.meta +11 -0
- package/Runtime/UI/Layouts.meta +8 -0
- package/Runtime/UI/Lightbeam/DependencyExtensions.cs +359 -0
- package/Runtime/UI/Lightbeam/DependencyExtensions.cs.meta +3 -0
- package/Runtime/UI/Lightbeam/LightBeam.cs +155 -0
- package/Runtime/UI/Lightbeam/LightBeam.cs.meta +3 -0
- package/Runtime/UI/Lightbeam/RealmSettingDeclaration.cs +43 -0
- package/Runtime/UI/Lightbeam/RealmSettingDeclaration.cs.meta +3 -0
- package/Runtime/UI/Lightbeam/UIExtensions.cs +182 -0
- package/Runtime/UI/Lightbeam/UIExtensions.cs.meta +3 -0
- package/Runtime/UI/Lightbeam/Unity.Beamable.LightBeams.asmdef +23 -0
- package/Runtime/UI/Lightbeam/Unity.Beamable.LightBeams.asmdef.meta +3 -0
- package/Runtime/UI/Lightbeam.meta +3 -0
- package/Runtime/UI/Materials/De_Panel_Loader_Mat.mat +77 -0
- package/Runtime/UI/Materials/De_Panel_Loader_Mat.mat.meta +8 -0
- package/Runtime/UI/Materials/De_Panel_Loader_Unlit.shader +124 -0
- package/Runtime/UI/Materials/De_Panel_Loader_Unlit.shader.meta +9 -0
- package/Runtime/UI/Materials/Standard/MSDF.cginc +187 -0
- package/Runtime/UI/Materials/Standard/MSDF.cginc.meta +9 -0
- package/Runtime/UI/Materials/Standard/MSDF_Standard.cginc +119 -0
- package/Runtime/UI/Materials/Standard/MSDF_Standard.cginc.meta +9 -0
- package/Runtime/UI/Materials/Standard/MSDF_VertFrag.cginc +693 -0
- package/Runtime/UI/Materials/Standard/MSDF_VertFrag.cginc.meta +9 -0
- package/Runtime/UI/Materials/Standard.meta +8 -0
- package/Runtime/UI/Materials.meta +8 -0
- package/Runtime/UI/OfflineObjects.prefab +735 -0
- package/Runtime/UI/OfflineObjects.prefab.meta +7 -0
- package/Runtime/UI/Prefab Components/BackButton.prefab +320 -0
- package/Runtime/UI/Prefab Components/BackButton.prefab.meta +7 -0
- package/Runtime/UI/Prefab Components/Background.prefab +131 -0
- package/Runtime/UI/Prefab Components/Background.prefab.meta +7 -0
- package/Runtime/UI/Prefab Components/Banner.prefab +757 -0
- package/Runtime/UI/Prefab Components/Banner.prefab.meta +7 -0
- package/Runtime/UI/Prefab Components/BasicPanel.prefab +132 -0
- package/Runtime/UI/Prefab Components/BasicPanel.prefab.meta +7 -0
- package/Runtime/UI/Prefab Components/Body.prefab +216 -0
- package/Runtime/UI/Prefab Components/Body.prefab.meta +7 -0
- package/Runtime/UI/Prefab Components/ButtonCard.prefab +449 -0
- package/Runtime/UI/Prefab Components/ButtonCard.prefab.meta +7 -0
- package/Runtime/UI/Prefab Components/ButtonPrimary.prefab +486 -0
- package/Runtime/UI/Prefab Components/ButtonPrimary.prefab.meta +7 -0
- package/Runtime/UI/Prefab Components/ButtonPrimaryHalf.prefab +136 -0
- package/Runtime/UI/Prefab Components/ButtonPrimaryHalf.prefab.meta +7 -0
- package/Runtime/UI/Prefab Components/ButtonPrimaryIcon.prefab +574 -0
- package/Runtime/UI/Prefab Components/ButtonPrimaryIcon.prefab.meta +7 -0
- package/Runtime/UI/Prefab Components/ButtonSecondary.prefab +613 -0
- package/Runtime/UI/Prefab Components/ButtonSecondary.prefab.meta +7 -0
- package/Runtime/UI/Prefab Components/ButtonSecondaryHalf.prefab +142 -0
- package/Runtime/UI/Prefab Components/ButtonSecondaryHalf.prefab.meta +7 -0
- package/Runtime/UI/Prefab Components/ButtonSecondaryIcon.prefab +492 -0
- package/Runtime/UI/Prefab Components/ButtonSecondaryIcon.prefab.meta +7 -0
- package/Runtime/UI/Prefab Components/CloseButton.prefab +334 -0
- package/Runtime/UI/Prefab Components/CloseButton.prefab.meta +7 -0
- package/Runtime/UI/Prefab Components/ClosebackT.prefab +355 -0
- package/Runtime/UI/Prefab Components/ClosebackT.prefab.meta +7 -0
- package/Runtime/UI/Prefab Components/DeveloperLogo.prefab +133 -0
- package/Runtime/UI/Prefab Components/DeveloperLogo.prefab.meta +7 -0
- package/Runtime/UI/Prefab Components/ExtendedLayoutTemplate.prefab +1539 -0
- package/Runtime/UI/Prefab Components/ExtendedLayoutTemplate.prefab.meta +7 -0
- package/Runtime/UI/Prefab Components/Header.prefab +196 -0
- package/Runtime/UI/Prefab Components/Header.prefab.meta +7 -0
- package/Runtime/UI/Prefab Components/Header2.prefab +223 -0
- package/Runtime/UI/Prefab Components/Header2.prefab.meta +7 -0
- package/Runtime/UI/Prefab Components/InputField.prefab +1155 -0
- package/Runtime/UI/Prefab Components/InputField.prefab.meta +7 -0
- package/Runtime/UI/Prefab Components/InputField_Password.prefab +173 -0
- package/Runtime/UI/Prefab Components/InputField_Password.prefab.meta +7 -0
- package/Runtime/UI/Prefab Components/Loading.prefab +363 -0
- package/Runtime/UI/Prefab Components/Loading.prefab.meta +7 -0
- package/Runtime/UI/Prefab Components/MessageText.prefab +252 -0
- package/Runtime/UI/Prefab Components/MessageText.prefab.meta +7 -0
- package/Runtime/UI/Prefab Components/MessageTextSmall.prefab +166 -0
- package/Runtime/UI/Prefab Components/MessageTextSmall.prefab.meta +7 -0
- package/Runtime/UI/Prefab Components/ScrollDots.prefab +335 -0
- package/Runtime/UI/Prefab Components/ScrollDots.prefab.meta +7 -0
- package/Runtime/UI/Prefab Components/TableRow.prefab +132 -0
- package/Runtime/UI/Prefab Components/TableRow.prefab.meta +7 -0
- package/Runtime/UI/Prefab Components.meta +8 -0
- package/Runtime/UI/Prefab Menus/LoadingPopup.prefab +503 -0
- package/Runtime/UI/Prefab Menus/LoadingPopup.prefab.meta +7 -0
- package/Runtime/UI/Prefab Menus.meta +8 -0
- package/Runtime/UI/Prompt/DE_Prompt.prefab +864 -0
- package/Runtime/UI/Prompt/DE_Prompt.prefab.meta +7 -0
- package/Runtime/UI/Prompt/DePromptBehaviour.cs +38 -0
- package/Runtime/UI/Prompt/DePromptBehaviour.cs.meta +11 -0
- package/Runtime/UI/Prompt/DePromptData.cs +14 -0
- package/Runtime/UI/Prompt/DePromptData.cs.meta +11 -0
- package/Runtime/UI/Prompt.meta +8 -0
- package/Runtime/UI/Scripts/AddressableImageBehaviour.cs +15 -0
- package/Runtime/UI/Scripts/AddressableImageBehaviour.cs.meta +11 -0
- package/Runtime/UI/Scripts/AddressableSpriteLoader.cs +107 -0
- package/Runtime/UI/Scripts/AddressableSpriteLoader.cs.meta +3 -0
- package/Runtime/UI/Scripts/BackButtonBehaviour.cs +14 -0
- package/Runtime/UI/Scripts/BackButtonBehaviour.cs.meta +11 -0
- package/Runtime/UI/Scripts/BeamableAnimationUtil.cs +100 -0
- package/Runtime/UI/Scripts/BeamableAnimationUtil.cs.meta +11 -0
- package/Runtime/UI/Scripts/BeamableButton.cs +33 -0
- package/Runtime/UI/Scripts/BeamableButton.cs.meta +11 -0
- package/Runtime/UI/Scripts/BeamableWindow.cs +15 -0
- package/Runtime/UI/Scripts/BeamableWindow.cs.meta +11 -0
- package/Runtime/UI/Scripts/ClickOffBehaviour.cs +42 -0
- package/Runtime/UI/Scripts/ClickOffBehaviour.cs.meta +11 -0
- package/Runtime/UI/Scripts/CloseButtonBehaviour.cs +14 -0
- package/Runtime/UI/Scripts/CloseButtonBehaviour.cs.meta +11 -0
- package/Runtime/UI/Scripts/EventSoundBehaviour.cs +55 -0
- package/Runtime/UI/Scripts/EventSoundBehaviour.cs.meta +11 -0
- package/Runtime/UI/Scripts/GameObjectToggler.cs +25 -0
- package/Runtime/UI/Scripts/GameObjectToggler.cs.meta +3 -0
- package/Runtime/UI/Scripts/InputReference.cs +24 -0
- package/Runtime/UI/Scripts/InputReference.cs.meta +11 -0
- package/Runtime/UI/Scripts/InputValidationBehaviour.cs +153 -0
- package/Runtime/UI/Scripts/InputValidationBehaviour.cs.meta +11 -0
- package/Runtime/UI/Scripts/LoadingDisableBehaviour.cs +87 -0
- package/Runtime/UI/Scripts/LoadingDisableBehaviour.cs.meta +11 -0
- package/Runtime/UI/Scripts/LoadingIndicator.cs +117 -0
- package/Runtime/UI/Scripts/LoadingIndicator.cs.meta +11 -0
- package/Runtime/UI/Scripts/Menu.cs +47 -0
- package/Runtime/UI/Scripts/Menu.cs.meta +11 -0
- package/Runtime/UI/Scripts/MenuManagementBehaviour.cs +268 -0
- package/Runtime/UI/Scripts/MenuManagementBehaviour.cs.meta +11 -0
- package/Runtime/UI/Scripts/MobileUtilities.cs +84 -0
- package/Runtime/UI/Scripts/MobileUtilities.cs.meta +11 -0
- package/Runtime/UI/Scripts/OfflineNotificationBehaviour.cs +37 -0
- package/Runtime/UI/Scripts/OfflineNotificationBehaviour.cs.meta +11 -0
- package/Runtime/UI/Scripts/OfflineObject.cs +69 -0
- package/Runtime/UI/Scripts/OfflineObject.cs.meta +11 -0
- package/Runtime/UI/Scripts/ScrollButton.cs +23 -0
- package/Runtime/UI/Scripts/ScrollButton.cs.meta +11 -0
- package/Runtime/UI/Scripts/ScrollDotsBehaviour.cs +83 -0
- package/Runtime/UI/Scripts/ScrollDotsBehaviour.cs.meta +11 -0
- package/Runtime/UI/Scripts/ScrollToAlphaBehaviour.cs +47 -0
- package/Runtime/UI/Scripts/ScrollToAlphaBehaviour.cs.meta +11 -0
- package/Runtime/UI/Scripts/StickyScrollElement.cs +176 -0
- package/Runtime/UI/Scripts/StickyScrollElement.cs.meta +11 -0
- package/Runtime/UI/Scripts/TextReference.cs +15 -0
- package/Runtime/UI/Scripts/TextReference.cs.meta +11 -0
- package/Runtime/UI/Scripts/TextReferenceBase.cs +14 -0
- package/Runtime/UI/Scripts/TextReferenceBase.cs.meta +11 -0
- package/Runtime/UI/Scripts/TransformOffsetBehaviour.cs +61 -0
- package/Runtime/UI/Scripts/TransformOffsetBehaviour.cs.meta +11 -0
- package/Runtime/UI/Scripts.meta +8 -0
- package/Runtime/UI/Sprites/MSDF/box-slant-msdf2.png +0 -0
- package/Runtime/UI/Sprites/MSDF/box-slant-msdf2.png.meta +110 -0
- package/Runtime/UI/Sprites/MSDF/pill-msdf (1).png +0 -0
- package/Runtime/UI/Sprites/MSDF/pill-msdf (1).png.meta +110 -0
- package/Runtime/UI/Sprites/MSDF/square.png +0 -0
- package/Runtime/UI/Sprites/MSDF/square.png.meta +110 -0
- package/Runtime/UI/Sprites/MSDF.meta +8 -0
- package/Runtime/UI/Sprites/SDF/box_slanted.png +0 -0
- package/Runtime/UI/Sprites/SDF/box_slanted.png.meta +88 -0
- package/Runtime/UI/Sprites/SDF/circle.png +0 -0
- package/Runtime/UI/Sprites/SDF/circle.png.meta +88 -0
- package/Runtime/UI/Sprites/SDF/hexagon.png +0 -0
- package/Runtime/UI/Sprites/SDF/hexagon.png.meta +88 -0
- package/Runtime/UI/Sprites/SDF/octagon.png +0 -0
- package/Runtime/UI/Sprites/SDF/octagon.png.meta +88 -0
- package/Runtime/UI/Sprites/SDF/pill.png +0 -0
- package/Runtime/UI/Sprites/SDF/pill.png.meta +88 -0
- package/Runtime/UI/Sprites/SDF/pill_2.png +0 -0
- package/Runtime/UI/Sprites/SDF/pill_2.png.meta +177 -0
- package/Runtime/UI/Sprites/SDF/pill_slanted.png +0 -0
- package/Runtime/UI/Sprites/SDF/pill_slanted.png.meta +88 -0
- package/Runtime/UI/Sprites/SDF.meta +8 -0
- package/Runtime/UI/Sprites/shapelined-_JBKdviweXI-unsplash.jpg +0 -0
- package/Runtime/UI/Sprites/shapelined-_JBKdviweXI-unsplash.jpg.meta +121 -0
- package/Runtime/UI/Sprites/star_sdf.png +0 -0
- package/Runtime/UI/Sprites/star_sdf.png.meta +110 -0
- package/Runtime/UI/Sprites.meta +8 -0
- package/Runtime/UI/TextField/DE_TextField.prefab +899 -0
- package/Runtime/UI/TextField/DE_TextField.prefab.meta +7 -0
- package/Runtime/UI/TextField/DeTextFieldBehaviour.cs +48 -0
- package/Runtime/UI/TextField/DeTextFieldBehaviour.cs.meta +11 -0
- package/Runtime/UI/TextField.meta +8 -0
- package/Runtime/UI/beamable feature icon/Closeoutline.png +0 -0
- package/Runtime/UI/beamable feature icon/Closeoutline.png.meta +88 -0
- package/Runtime/UI/beamable feature icon/apple.png +0 -0
- package/Runtime/UI/beamable feature icon/apple.png.meta +88 -0
- package/Runtime/UI/beamable feature icon/back2.png +0 -0
- package/Runtime/UI/beamable feature icon/back2.png.meta +88 -0
- package/Runtime/UI/beamable feature icon/deleted.png +0 -0
- package/Runtime/UI/beamable feature icon/deleted.png.meta +88 -0
- package/Runtime/UI/beamable feature icon/edit.png +0 -0
- package/Runtime/UI/beamable feature icon/edit.png.meta +88 -0
- package/Runtime/UI/beamable feature icon/icon - email.png +0 -0
- package/Runtime/UI/beamable feature icon/icon - email.png.meta +88 -0
- package/Runtime/UI/beamable feature icon/leaderboard.png +0 -0
- package/Runtime/UI/beamable feature icon/leaderboard.png.meta +88 -0
- package/Runtime/UI/beamable feature icon/myaccount.png +0 -0
- package/Runtime/UI/beamable feature icon/myaccount.png.meta +88 -0
- package/Runtime/UI/beamable feature icon/setting.png +0 -0
- package/Runtime/UI/beamable feature icon/setting.png.meta +88 -0
- package/Runtime/UI/beamable feature icon.meta +8 -0
- package/Runtime/UI.meta +8 -0
- package/Runtime/Unity.Beamable.asmdef +33 -0
- package/Runtime/Unity.Beamable.asmdef.meta +7 -0
- package/Runtime/Utility/BeamUnityFileUtils.cs +231 -0
- package/Runtime/Utility/BeamUnityFileUtils.cs.meta +3 -0
- package/Runtime/Utility.meta +8 -0
- package/Runtime/VectorIntExtensions.cs +45 -0
- package/Runtime/VectorIntExtensions.cs.meta +11 -0
- package/Runtime.meta +8 -0
- package/Samples/LightBeamSamples/AccountManager/AccountConfig.asset +29 -0
- package/Samples/LightBeamSamples/AccountManager/AccountConfig.asset.meta +8 -0
- package/Samples/LightBeamSamples/AccountManager/AccountExampleConfig.cs +15 -0
- package/Samples/LightBeamSamples/AccountManager/AccountExampleConfig.cs.meta +3 -0
- package/Samples/LightBeamSamples/AccountManager/AccountManager.cs +57 -0
- package/Samples/LightBeamSamples/AccountManager/AccountManager.cs.meta +3 -0
- package/Samples/LightBeamSamples/AccountManager/LightBeam.AccountManager.asmdef +19 -0
- package/Samples/LightBeamSamples/AccountManager/LightBeam.AccountManager.asmdef.meta +7 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountDetailsBehaviour/AccountDetails.prefab +2537 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountDetailsBehaviour/AccountDetails.prefab.meta +7 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountDetailsBehaviour/AccountDetailsBehaviour.cs +53 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountDetailsBehaviour/AccountDetailsBehaviour.cs.meta +3 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountDetailsBehaviour.meta +3 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountDisplayBehaviour/AccountDisplay.prefab +1060 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountDisplayBehaviour/AccountDisplay.prefab.meta +7 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountDisplayBehaviour/AccountDisplayBehaviour.cs +51 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountDisplayBehaviour/AccountDisplayBehaviour.cs.meta +3 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountDisplayBehaviour.meta +3 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountSwitchPage/AccountSwitchPage.cs +42 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountSwitchPage/AccountSwitchPage.cs.meta +3 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountSwitchPage/AccountSwitchPage.prefab +1007 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountSwitchPage/AccountSwitchPage.prefab.meta +7 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountSwitchPage.meta +3 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/AvatarDisplay/AvatarDisplay.prefab +237 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/AvatarDisplay/AvatarDisplay.prefab.meta +7 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/AvatarDisplay/AvatarDisplayBehaviour.cs +21 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/AvatarDisplay/AvatarDisplayBehaviour.cs.meta +3 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/AvatarDisplay.meta +3 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/ForgotPasswordPage/ForgotPasswordPage.cs +64 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/ForgotPasswordPage/ForgotPasswordPage.cs.meta +3 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/ForgotPasswordPage/ForgotPasswordPage.prefab +1752 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/ForgotPasswordPage/ForgotPasswordPage.prefab.meta +7 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/ForgotPasswordPage.meta +3 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/HomePage/HomePage.cs +70 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/HomePage/HomePage.cs.meta +2 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/HomePage/HomePage.prefab +2226 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/HomePage/HomePage.prefab.meta +7 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/HomePage.meta +3 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/RecoverEmailPage/RecoverAccountPage.prefab +2592 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/RecoverEmailPage/RecoverAccountPage.prefab.meta +7 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/RecoverEmailPage/RecoverEmailPage.cs +131 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/RecoverEmailPage/RecoverEmailPage.cs.meta +3 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/RecoverEmailPage.meta +3 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/RegisterEmailPage/RegisterEmailPage.cs +79 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/RegisterEmailPage/RegisterEmailPage.cs.meta +3 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/RegisterEmailPage/RegisterEmailPage.prefab +2009 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/RegisterEmailPage/RegisterEmailPage.prefab.meta +7 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs/RegisterEmailPage.meta +3 -0
- package/Samples/LightBeamSamples/AccountManager/Prefabs.meta +3 -0
- package/Samples/LightBeamSamples/AccountManager/Sample_AccountManager.unity +770 -0
- package/Samples/LightBeamSamples/AccountManager/Sample_AccountManager.unity.meta +7 -0
- package/Samples/LightBeamSamples/AccountManager.meta +3 -0
- package/Samples/LightBeamSamples/AdminFlowPrefab/AdminFlow.prefab +1043 -0
- package/Samples/LightBeamSamples/AdminFlowPrefab/AdminFlow.prefab.meta +7 -0
- package/Samples/LightBeamSamples/AdminFlowPrefab.meta +3 -0
- package/Samples/LightBeamSamples/CloudSaving/CloudSavingConfig.asset +22 -0
- package/Samples/LightBeamSamples/CloudSaving/CloudSavingConfig.asset.meta +8 -0
- package/Samples/LightBeamSamples/CloudSaving/CloudSavingExampleConfig.cs +11 -0
- package/Samples/LightBeamSamples/CloudSaving/CloudSavingExampleConfig.cs.meta +11 -0
- package/Samples/LightBeamSamples/CloudSaving/CloudSavingManager.cs +35 -0
- package/Samples/LightBeamSamples/CloudSaving/CloudSavingManager.cs.meta +11 -0
- package/Samples/LightBeamSamples/CloudSaving/LightBeam.CloudSavingManager.asmdef +21 -0
- package/Samples/LightBeamSamples/CloudSaving/LightBeam.CloudSavingManager.asmdef.meta +7 -0
- package/Samples/LightBeamSamples/CloudSaving/Prefabs/BytePage/BytePage.cs +102 -0
- package/Samples/LightBeamSamples/CloudSaving/Prefabs/BytePage/BytePage.cs.meta +11 -0
- package/Samples/LightBeamSamples/CloudSaving/Prefabs/BytePage/BytePage.prefab +3175 -0
- package/Samples/LightBeamSamples/CloudSaving/Prefabs/BytePage/BytePage.prefab.meta +7 -0
- package/Samples/LightBeamSamples/CloudSaving/Prefabs/BytePage.meta +3 -0
- package/Samples/LightBeamSamples/CloudSaving/Prefabs/HomePage/ConflictViewReferences.cs +26 -0
- package/Samples/LightBeamSamples/CloudSaving/Prefabs/HomePage/ConflictViewReferences.cs.meta +3 -0
- package/Samples/LightBeamSamples/CloudSaving/Prefabs/HomePage/HomePage.cs +121 -0
- package/Samples/LightBeamSamples/CloudSaving/Prefabs/HomePage/HomePage.cs.meta +11 -0
- package/Samples/LightBeamSamples/CloudSaving/Prefabs/HomePage/HomePage.prefab +5587 -0
- package/Samples/LightBeamSamples/CloudSaving/Prefabs/HomePage/HomePage.prefab.meta +7 -0
- package/Samples/LightBeamSamples/CloudSaving/Prefabs/HomePage.meta +3 -0
- package/Samples/LightBeamSamples/CloudSaving/Prefabs/JsonPage/JsonPage.cs +142 -0
- package/Samples/LightBeamSamples/CloudSaving/Prefabs/JsonPage/JsonPage.cs.meta +11 -0
- package/Samples/LightBeamSamples/CloudSaving/Prefabs/JsonPage/JsonPage.prefab +5551 -0
- package/Samples/LightBeamSamples/CloudSaving/Prefabs/JsonPage/JsonPage.prefab.meta +7 -0
- package/Samples/LightBeamSamples/CloudSaving/Prefabs/JsonPage.meta +3 -0
- package/Samples/LightBeamSamples/CloudSaving/Prefabs/StringPage/StringPage.cs +91 -0
- package/Samples/LightBeamSamples/CloudSaving/Prefabs/StringPage/StringPage.cs.meta +11 -0
- package/Samples/LightBeamSamples/CloudSaving/Prefabs/StringPage/StringPage.prefab +2881 -0
- package/Samples/LightBeamSamples/CloudSaving/Prefabs/StringPage/StringPage.prefab.meta +7 -0
- package/Samples/LightBeamSamples/CloudSaving/Prefabs/StringPage.meta +3 -0
- package/Samples/LightBeamSamples/CloudSaving/Prefabs.meta +8 -0
- package/Samples/LightBeamSamples/CloudSaving/Sample_CloudSaving.unity +793 -0
- package/Samples/LightBeamSamples/CloudSaving/Sample_CloudSaving.unity.meta +7 -0
- package/Samples/LightBeamSamples/CloudSaving.meta +8 -0
- package/Samples/LightBeamSamples/CurrencyHud/CurrencyHudManager.cs +40 -0
- package/Samples/LightBeamSamples/CurrencyHud/CurrencyHudManager.cs.meta +3 -0
- package/Samples/LightBeamSamples/CurrencyHud/LightBeam.CurrencyHud.asmdef +20 -0
- package/Samples/LightBeamSamples/CurrencyHud/LightBeam.CurrencyHud.asmdef.meta +3 -0
- package/Samples/LightBeamSamples/CurrencyHud/Prefabs/CurrencyView/CurrencyView.prefab +306 -0
- package/Samples/LightBeamSamples/CurrencyHud/Prefabs/CurrencyView/CurrencyView.prefab.meta +7 -0
- package/Samples/LightBeamSamples/CurrencyHud/Prefabs/CurrencyView/CurrencyViewBehaviour.cs +50 -0
- package/Samples/LightBeamSamples/CurrencyHud/Prefabs/CurrencyView/CurrencyViewBehaviour.cs.meta +3 -0
- package/Samples/LightBeamSamples/CurrencyHud/Prefabs/CurrencyView.meta +3 -0
- package/Samples/LightBeamSamples/CurrencyHud/Prefabs.meta +3 -0
- package/Samples/LightBeamSamples/CurrencyHud/Sample_CurrencyHud.unity +1121 -0
- package/Samples/LightBeamSamples/CurrencyHud/Sample_CurrencyHud.unity.meta +7 -0
- package/Samples/LightBeamSamples/CurrencyHud.meta +3 -0
- package/Samples/LightBeamSamples/FriendsManager/FriendsConfig.asset +26 -0
- package/Samples/LightBeamSamples/FriendsManager/FriendsConfig.asset.meta +8 -0
- package/Samples/LightBeamSamples/FriendsManager/FriendsExampleConfig.cs +13 -0
- package/Samples/LightBeamSamples/FriendsManager/FriendsExampleConfig.cs.meta +3 -0
- package/Samples/LightBeamSamples/FriendsManager/FriendsManager.cs +32 -0
- package/Samples/LightBeamSamples/FriendsManager/FriendsManager.cs.meta +3 -0
- package/Samples/LightBeamSamples/FriendsManager/LightBeam.FriendsManager.asmdef +20 -0
- package/Samples/LightBeamSamples/FriendsManager/LightBeam.FriendsManager.asmdef.meta +7 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/BlockedDisplay/BlockedDisplay.prefab +639 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/BlockedDisplay/BlockedDisplay.prefab.meta +7 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/BlockedDisplay/BlockedPlayersDisplayBehaviour.cs +25 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/BlockedDisplay/BlockedPlayersDisplayBehaviour.cs.meta +11 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/BlockedDisplay.meta +3 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/FriendDisplay/FriendDisplay.prefab +896 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/FriendDisplay/FriendDisplay.prefab.meta +7 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/FriendDisplay/FriendDisplayBehaviour.cs +31 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/FriendDisplay/FriendDisplayBehaviour.cs.meta +11 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/FriendDisplay.meta +8 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/HomePage/HomePage.cs +31 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/HomePage/HomePage.cs.meta +11 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/HomePage/HomePage.prefab +1232 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/HomePage/HomePage.prefab.meta +7 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/HomePage.meta +3 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/PlayerFriendsDisplay/PlayerDisplay.prefab +2963 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/PlayerFriendsDisplay/PlayerDisplay.prefab.meta +7 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/PlayerFriendsDisplay/PlayerFriendsBehaviour.cs +194 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/PlayerFriendsDisplay/PlayerFriendsBehaviour.cs.meta +3 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/PlayerFriendsDisplay.meta +3 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/ReceivedInvitesDisplay/ReceivedInviteDisplay.prefab +896 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/ReceivedInvitesDisplay/ReceivedInviteDisplay.prefab.meta +7 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/ReceivedInvitesDisplay/ReceivedInviteDisplayBehaviour.cs +31 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/ReceivedInvitesDisplay/ReceivedInviteDisplayBehaviour.cs.meta +11 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/ReceivedInvitesDisplay.meta +8 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/Selector/Editor/LightBeam.FriendsManager.Selector.Editor.asmdef +18 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/Selector/Editor/LightBeam.FriendsManager.Selector.Editor.asmdef.meta +7 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/Selector/Editor/SelectorButtonBehaviourEditor.cs +27 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/Selector/Editor/SelectorButtonBehaviourEditor.cs.meta +3 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/Selector/Editor.meta +3 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/Selector/SelectorButtonBehaviour.cs +13 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/Selector/SelectorButtonBehaviour.cs.meta +11 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/Selector.meta +3 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/SelectorButton.prefab +361 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/SelectorButton.prefab.meta +7 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/SentInvitesDisplay/SentInviteDisplay.prefab +639 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/SentInvitesDisplay/SentInviteDisplay.prefab.meta +7 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/SentInvitesDisplay/SentInviteDisplayBehaviour.cs +25 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/SentInvitesDisplay/SentInviteDisplayBehaviour.cs.meta +11 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs/SentInvitesDisplay.meta +3 -0
- package/Samples/LightBeamSamples/FriendsManager/Prefabs.meta +3 -0
- package/Samples/LightBeamSamples/FriendsManager/Sample_FriendsManager.unity +781 -0
- package/Samples/LightBeamSamples/FriendsManager/Sample_FriendsManager.unity.meta +7 -0
- package/Samples/LightBeamSamples/FriendsManager.meta +8 -0
- package/Samples/LightBeamSamples/Inventory/InventoryConfig.asset +25 -0
- package/Samples/LightBeamSamples/Inventory/InventoryConfig.asset.meta +8 -0
- package/Samples/LightBeamSamples/Inventory/InventoryExampleConfig.cs +12 -0
- package/Samples/LightBeamSamples/Inventory/InventoryExampleConfig.cs.meta +3 -0
- package/Samples/LightBeamSamples/Inventory/InventoryManager.cs +32 -0
- package/Samples/LightBeamSamples/Inventory/InventoryManager.cs.meta +3 -0
- package/Samples/LightBeamSamples/Inventory/LightBeam.InventoryManager.asmdef +21 -0
- package/Samples/LightBeamSamples/Inventory/LightBeam.InventoryManager.asmdef.meta +7 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/CurrencyDisplay/CurrencyDisplay.prefab +582 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/CurrencyDisplay/CurrencyDisplay.prefab.meta +7 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/CurrencyDisplay/CurrencyDisplayBehaviour.cs +48 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/CurrencyDisplay/CurrencyDisplayBehaviour.cs.meta +11 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/CurrencyDisplay.meta +8 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/CurrencyInfoPage/CurrencyInfoBehaviour.cs +70 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/CurrencyInfoPage/CurrencyInfoBehaviour.cs.meta +11 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/CurrencyInfoPage/CurrencyInfoDisplay.prefab +1480 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/CurrencyInfoPage/CurrencyInfoDisplay.prefab.meta +7 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/CurrencyInfoPage.meta +8 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/HomePage/HomePage.cs +82 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/HomePage/HomePage.cs.meta +11 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/HomePage/HomePage.prefab +3001 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/HomePage/HomePage.prefab.meta +7 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/HomePage.meta +3 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/ItemDisplay/ItemDisplay.prefab +582 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/ItemDisplay/ItemDisplay.prefab.meta +7 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/ItemDisplay/ItemDisplayBehaviour.cs +51 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/ItemDisplay/ItemDisplayBehaviour.cs.meta +11 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/ItemDisplay.meta +8 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/ItemInfoPage/ItemInfoPage.cs +74 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/ItemInfoPage/ItemInfoPage.cs.meta +11 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/ItemInfoPage/ItemInfoPage.prefab +1752 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/ItemInfoPage/ItemInfoPage.prefab.meta +7 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/ItemInfoPage.meta +8 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/PropertyDisplay/PropertyDisplay.prefab +383 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/PropertyDisplay/PropertyDisplay.prefab.meta +7 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/PropertyDisplay/PropertyDisplayBehaviour.cs +21 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/PropertyDisplay/PropertyDisplayBehaviour.cs.meta +11 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs/PropertyDisplay.meta +8 -0
- package/Samples/LightBeamSamples/Inventory/Prefabs.meta +3 -0
- package/Samples/LightBeamSamples/Inventory/Sample_InventoryManager.unity +781 -0
- package/Samples/LightBeamSamples/Inventory/Sample_InventoryManager.unity.meta +7 -0
- package/Samples/LightBeamSamples/Inventory.meta +8 -0
- package/Samples/LightBeamSamples/LobbyManager/LightBeam.LobbyManager.asmdef +20 -0
- package/Samples/LightBeamSamples/LobbyManager/LightBeam.LobbyManager.asmdef.meta +7 -0
- package/Samples/LightBeamSamples/LobbyManager/LobbyConfig.asset +30 -0
- package/Samples/LightBeamSamples/LobbyManager/LobbyConfig.asset.meta +8 -0
- package/Samples/LightBeamSamples/LobbyManager/LobbyExampleConfig.cs +14 -0
- package/Samples/LightBeamSamples/LobbyManager/LobbyExampleConfig.cs.meta +3 -0
- package/Samples/LightBeamSamples/LobbyManager/LobbyManager.cs +36 -0
- package/Samples/LightBeamSamples/LobbyManager/LobbyManager.cs.meta +3 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/CreateLobbyDisplay/CreateLobbyDisplay.prefab +2556 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/CreateLobbyDisplay/CreateLobbyDisplay.prefab.meta +7 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/CreateLobbyDisplay/CreateLobbyDisplayBehaviour.cs +54 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/CreateLobbyDisplay/CreateLobbyDisplayBehaviour.cs.meta +11 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/CreateLobbyDisplay.meta +8 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/FindLobbyDisplay/FindLobbyDisplay.prefab +1061 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/FindLobbyDisplay/FindLobbyDisplay.prefab.meta +7 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/FindLobbyDisplay/FindLobbyDisplayBehaviour.cs +36 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/FindLobbyDisplay/FindLobbyDisplayBehaviour.cs.meta +11 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/FindLobbyDisplay.meta +8 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/HomePage/HomePage.cs +71 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/HomePage/HomePage.cs.meta +11 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/HomePage/HomePage.prefab +428 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/HomePage/HomePage.prefab.meta +7 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/HomePage.meta +3 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/JoinLobbyDisplay/JoinLobbyDisplay.prefab +2238 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/JoinLobbyDisplay/JoinLobbyDisplay.prefab.meta +7 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/JoinLobbyDisplay/JoinLobbyDisplayBehaviour.cs +75 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/JoinLobbyDisplay/JoinLobbyDisplayBehaviour.cs.meta +11 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/JoinLobbyDisplay.meta +8 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/LobbyDetailsDisplay/LobbyDetailsDisplay.prefab +2609 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/LobbyDetailsDisplay/LobbyDetailsDisplay.prefab.meta +7 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/LobbyDetailsDisplay/LobbyDetailsDisplayBehaviour.cs +80 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/LobbyDetailsDisplay/LobbyDetailsDisplayBehaviour.cs.meta +11 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/LobbyDetailsDisplay.meta +8 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/LobbyDisplay/LobbyDisplay.prefab +532 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/LobbyDisplay/LobbyDisplay.prefab.meta +7 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/LobbyDisplay/LobbyDisplayBehaviour.cs +27 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/LobbyDisplay/LobbyDisplayBehaviour.cs.meta +11 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/LobbyDisplay.meta +8 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/PlayerDisplay/PlayerIdDisplay.prefab +292 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/PlayerDisplay/PlayerIdDisplay.prefab.meta +7 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/PlayerDisplay/PlayerIdDisplayBehaviour.cs +17 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/PlayerDisplay/PlayerIdDisplayBehaviour.cs.meta +11 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/PlayerDisplay.meta +8 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/PlayerLobby/PlayerLobby.prefab +2038 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/PlayerLobby/PlayerLobby.prefab.meta +7 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/PlayerLobby/PlayerLobbyBehaviour.cs +112 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/PlayerLobby/PlayerLobbyBehaviour.cs.meta +11 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs/PlayerLobby.meta +8 -0
- package/Samples/LightBeamSamples/LobbyManager/Prefabs.meta +3 -0
- package/Samples/LightBeamSamples/LobbyManager/Sample_LobbyManager.unity +781 -0
- package/Samples/LightBeamSamples/LobbyManager/Sample_LobbyManager.unity.meta +7 -0
- package/Samples/LightBeamSamples/LobbyManager.meta +8 -0
- package/Samples/LightBeamSamples/LootBox/.idea/.idea.SampleSolution/.idea/.name +1 -0
- package/Samples/LightBeamSamples/LootBox/.idea/.idea.SampleSolution/.idea/encodings.xml +4 -0
- package/Samples/LightBeamSamples/LootBox/.idea/.idea.SampleSolution/.idea/indexLayout.xml +8 -0
- package/Samples/LightBeamSamples/LootBox/.idea/.idea.SampleSolution/.idea/vcs.xml +6 -0
- package/Samples/LightBeamSamples/LootBox/BeamableServices~/LootBoxService/.dockerignore +26 -0
- package/Samples/LightBeamSamples/LootBox/BeamableServices~/LootBoxService/.env +2 -0
- package/Samples/LightBeamSamples/LootBox/BeamableServices~/LootBoxService/BeamSourceGenConfig.json +1 -0
- package/Samples/LightBeamSamples/LootBox/BeamableServices~/LootBoxService/Dockerfile +41 -0
- package/Samples/LightBeamSamples/LootBox/BeamableServices~/LootBoxService/LootBoxService.cs +45 -0
- package/Samples/LightBeamSamples/LootBox/BeamableServices~/LootBoxService/LootBoxService.csproj +28 -0
- package/Samples/LightBeamSamples/LootBox/BeamableServices~/LootBoxService/Program.cs +20 -0
- package/Samples/LightBeamSamples/LootBox/BeamableServices~/LootBoxService/federations.json +1 -0
- package/Samples/LightBeamSamples/LootBox/Client/DummyScript.cs +18 -0
- package/Samples/LightBeamSamples/LootBox/Client/DummyScript.cs.meta +11 -0
- package/Samples/LightBeamSamples/LootBox/Client/LootBoxService.Client.asmdef +12 -0
- package/Samples/LightBeamSamples/LootBox/Client/LootBoxService.Client.asmdef.meta +7 -0
- package/Samples/LightBeamSamples/LootBox/Client/LootBoxServiceClient.cs +74 -0
- package/Samples/LightBeamSamples/LootBox/Client/LootBoxServiceClient.cs.meta +11 -0
- package/Samples/LightBeamSamples/LootBox/Client.meta +8 -0
- package/Samples/LightBeamSamples/LootBox/LightBeam.LootBox.asmdef +23 -0
- package/Samples/LightBeamSamples/LootBox/LightBeam.LootBox.asmdef.meta +7 -0
- package/Samples/LightBeamSamples/LootBox/LootBoxExampleConfig.asset +16 -0
- package/Samples/LightBeamSamples/LootBox/LootBoxExampleConfig.asset.meta +8 -0
- package/Samples/LightBeamSamples/LootBox/LootBoxExampleConfig.cs +8 -0
- package/Samples/LightBeamSamples/LootBox/LootBoxExampleConfig.cs.meta +3 -0
- package/Samples/LightBeamSamples/LootBox/LootBoxManager.cs +30 -0
- package/Samples/LightBeamSamples/LootBox/LootBoxManager.cs.meta +3 -0
- package/Samples/LightBeamSamples/LootBox/Prefabs/LootBoxPage/LootBoxPage.cs +47 -0
- package/Samples/LightBeamSamples/LootBox/Prefabs/LootBoxPage/LootBoxPage.cs.meta +3 -0
- package/Samples/LightBeamSamples/LootBox/Prefabs/LootBoxPage/LootBoxPage.prefab +793 -0
- package/Samples/LightBeamSamples/LootBox/Prefabs/LootBoxPage/LootBoxPage.prefab.meta +7 -0
- package/Samples/LightBeamSamples/LootBox/Prefabs/LootBoxPage.meta +3 -0
- package/Samples/LightBeamSamples/LootBox/Prefabs.meta +3 -0
- package/Samples/LightBeamSamples/LootBox/Sample_LootBox.unity +781 -0
- package/Samples/LightBeamSamples/LootBox/Sample_LootBox.unity.meta +7 -0
- package/Samples/LightBeamSamples/LootBox/Shared/Lightbeam.Lootbox.SharedCode.asmdef +14 -0
- package/Samples/LightBeamSamples/LootBox/Shared/Lightbeam.Lootbox.SharedCode.asmdef.meta +7 -0
- package/Samples/LightBeamSamples/LootBox/Shared/LootboxConstants.cs +5 -0
- package/Samples/LightBeamSamples/LootBox/Shared/LootboxConstants.cs.meta +11 -0
- package/Samples/LightBeamSamples/LootBox/Shared.meta +8 -0
- package/Samples/LightBeamSamples/LootBox.meta +8 -0
- package/Samples/LightBeamSamples/SceneLoader/Beamable.LightBeam.Boot.asmdef +22 -0
- package/Samples/LightBeamSamples/SceneLoader/Beamable.LightBeam.Boot.asmdef.meta +7 -0
- package/Samples/LightBeamSamples/SceneLoader/Config/LightBeamSceneConfigObject.cs +85 -0
- package/Samples/LightBeamSamples/SceneLoader/Config/LightBeamSceneConfigObject.cs.meta +3 -0
- package/Samples/LightBeamSamples/SceneLoader/Config/LightBeamSceneConfigObject_Editor.cs +37 -0
- package/Samples/LightBeamSamples/SceneLoader/Config/LightBeamSceneConfigObject_Editor.cs.meta +3 -0
- package/Samples/LightBeamSamples/SceneLoader/Config.meta +3 -0
- package/Samples/LightBeamSamples/SceneLoader/Editor/Beamable.LightBeam.Boot.Editor.asmdef +18 -0
- package/Samples/LightBeamSamples/SceneLoader/Editor/Beamable.LightBeam.Boot.Editor.asmdef.meta +7 -0
- package/Samples/LightBeamSamples/SceneLoader/Editor/LightBeamBuilds.cs +156 -0
- package/Samples/LightBeamSamples/SceneLoader/Editor/LightBeamBuilds.cs.meta +11 -0
- package/Samples/LightBeamSamples/SceneLoader/Editor.meta +3 -0
- package/Samples/LightBeamSamples/SceneLoader/LightBeamBooter.cs +485 -0
- package/Samples/LightBeamSamples/SceneLoader/LightBeamBooter.cs.meta +11 -0
- package/Samples/LightBeamSamples/SceneLoader/LightBeam_Boot.unity +1584 -0
- package/Samples/LightBeamSamples/SceneLoader/LightBeam_Boot.unity.meta +7 -0
- package/Samples/LightBeamSamples/SceneLoader/Prefabs/SceneDisplay/SceneDisplay.prefab +661 -0
- package/Samples/LightBeamSamples/SceneLoader/Prefabs/SceneDisplay/SceneDisplay.prefab.meta +7 -0
- package/Samples/LightBeamSamples/SceneLoader/Prefabs/SceneDisplay/SceneDisplayBehaviour.cs +25 -0
- package/Samples/LightBeamSamples/SceneLoader/Prefabs/SceneDisplay/SceneDisplayBehaviour.cs.meta +11 -0
- package/Samples/LightBeamSamples/SceneLoader/Prefabs/SceneDisplay.meta +8 -0
- package/Samples/LightBeamSamples/SceneLoader/Prefabs.meta +8 -0
- package/Samples/LightBeamSamples/SceneLoader/Resources/SceneConfig.asset +171 -0
- package/Samples/LightBeamSamples/SceneLoader/Resources/SceneConfig.asset.meta +8 -0
- package/Samples/LightBeamSamples/SceneLoader/Resources/link.xml +3 -0
- package/Samples/LightBeamSamples/SceneLoader/Resources/link.xml.meta +3 -0
- package/Samples/LightBeamSamples/SceneLoader/Resources.meta +3 -0
- package/Samples/LightBeamSamples/SceneLoader.meta +8 -0
- package/Samples/LightBeamSamples.meta +3 -0
- package/Samples/SampleProjectBase/Art/Textures/BeamableSDKReadmeImage.png +0 -0
- package/Samples/SampleProjectBase/Art/Textures/BeamableSDKReadmeImage.png.meta +88 -0
- package/Samples/SampleProjectBase/Art/Textures/ReadMeFileIcon.png +0 -0
- package/Samples/SampleProjectBase/Art/Textures/ReadMeFileIcon.png.meta +88 -0
- package/Samples/SampleProjectBase/Art/Textures.meta +8 -0
- package/Samples/SampleProjectBase/Art.meta +8 -0
- package/Samples/SampleProjectBase/Readme.asset +33 -0
- package/Samples/SampleProjectBase/Readme.asset.meta +8 -0
- package/Samples/SampleProjectBase/Scripts/Editor/Beamable/Samples/SampleProjectBase/AutoOpenReadme.cs +46 -0
- package/Samples/SampleProjectBase/Scripts/Editor/Beamable/Samples/SampleProjectBase/AutoOpenReadme.cs.meta +11 -0
- package/Samples/SampleProjectBase/Scripts/Editor/Beamable/Samples/SampleProjectBase/BeamableReadmeEditor.cs +158 -0
- package/Samples/SampleProjectBase/Scripts/Editor/Beamable/Samples/SampleProjectBase/BeamableReadmeEditor.cs.meta +12 -0
- package/Samples/SampleProjectBase/Scripts/Editor/Beamable/Samples/SampleProjectBase.meta +8 -0
- package/Samples/SampleProjectBase/Scripts/Editor/Beamable/Samples.meta +8 -0
- package/Samples/SampleProjectBase/Scripts/Editor/Beamable.meta +8 -0
- package/Samples/SampleProjectBase/Scripts/Editor/Unity.Beamable.Samples.Editor.asmdef +19 -0
- package/Samples/SampleProjectBase/Scripts/Editor/Unity.Beamable.Samples.Editor.asmdef.meta +7 -0
- package/Samples/SampleProjectBase/Scripts/Editor.meta +9 -0
- package/Samples/SampleProjectBase/Scripts/Runtime/Beamable/Samples/SampleProjectBase/Readme.cs +33 -0
- package/Samples/SampleProjectBase/Scripts/Runtime/Beamable/Samples/SampleProjectBase/Readme.cs.meta +12 -0
- package/Samples/SampleProjectBase/Scripts/Runtime/Beamable/Samples/SampleProjectBase.meta +8 -0
- package/Samples/SampleProjectBase/Scripts/Runtime/Beamable/Samples.meta +8 -0
- package/Samples/SampleProjectBase/Scripts/Runtime/Beamable.meta +8 -0
- package/Samples/SampleProjectBase/Scripts/Runtime/Unity.Beamable.Samples.Runtime.asmdef +16 -0
- package/Samples/SampleProjectBase/Scripts/Runtime/Unity.Beamable.Samples.Runtime.asmdef.meta +7 -0
- package/Samples/SampleProjectBase/Scripts/Runtime.meta +8 -0
- package/Samples/SampleProjectBase/Scripts.meta +9 -0
- package/Samples/SampleProjectBase.meta +8 -0
- package/Samples.meta +8 -0
- package/Template/AutoGenMicroserviceClientSample.cs +70 -0
- package/Template/AutoGenMicroserviceClientSample.cs.meta +3 -0
- package/Template/SharedSample.cs +19 -0
- package/Template/SharedSample.cs.meta +3 -0
- package/Template/Unity.Beamable.Server.Templates.asmdef +20 -0
- package/Template/Unity.Beamable.Server.Templates.asmdef.meta +3 -0
- package/Template.meta +8 -0
- package/Tests/Editor/AliasHelperTests.cs +64 -0
- package/Tests/Editor/AliasHelperTests.cs.meta +11 -0
- package/Tests/Editor/CLI/DataTransferTests.cs +65 -0
- package/Tests/Editor/CLI/DataTransferTests.cs.meta +3 -0
- package/Tests/Editor/CLI.meta +3 -0
- package/Tests/Editor/Common/BeamUtil/SanitizeStringForPathTests.cs +18 -0
- package/Tests/Editor/Common/BeamUtil/SanitizeStringForPathTests.cs.meta +3 -0
- package/Tests/Editor/Common/BeamUtil.meta +3 -0
- package/Tests/Editor/Common/TrieTests.cs +253 -0
- package/Tests/Editor/Common/TrieTests.cs.meta +3 -0
- package/Tests/Editor/Common/TryInvokeCallbackTests.cs +93 -0
- package/Tests/Editor/Common/TryInvokeCallbackTests.cs.meta +3 -0
- package/Tests/Editor/Common.meta +3 -0
- package/Tests/Editor/ContentObjectTests.cs +65 -0
- package/Tests/Editor/ContentObjectTests.cs.meta +11 -0
- package/Tests/Editor/EditorDisruptorEngine/Content/ContentObjectFieldTests.cs +81 -0
- package/Tests/Editor/EditorDisruptorEngine/Content/ContentObjectFieldTests.cs.meta +3 -0
- package/Tests/Editor/EditorDisruptorEngine/Content/ContentObjectLinkRefTests.cs +81 -0
- package/Tests/Editor/EditorDisruptorEngine/Content/ContentObjectLinkRefTests.cs.meta +3 -0
- package/Tests/Editor/EditorDisruptorEngine/Content/ExampleContent.cs +10 -0
- package/Tests/Editor/EditorDisruptorEngine/Content/ExampleContent.cs.meta +11 -0
- package/Tests/Editor/EditorDisruptorEngine/Content/Schedules/CronTests.cs +189 -0
- package/Tests/Editor/EditorDisruptorEngine/Content/Schedules/CronTests.cs.meta +3 -0
- package/Tests/Editor/EditorDisruptorEngine/Content/Schedules.meta +3 -0
- package/Tests/Editor/EditorDisruptorEngine/Content.meta +8 -0
- package/Tests/Editor/EditorDisruptorEngine.meta +8 -0
- package/Tests/Editor/EditorTest.cs +51 -0
- package/Tests/Editor/EditorTest.cs.meta +3 -0
- package/Tests/Editor/JsonPerfTesting.cs +117 -0
- package/Tests/Editor/JsonPerfTesting.cs.meta +3 -0
- package/Tests/Editor/JsonPerfTesting_PayloadSize.cs +96 -0
- package/Tests/Editor/JsonPerfTesting_PayloadSize.cs.meta +3 -0
- package/Tests/Editor/JsonTestHelp.cs +82 -0
- package/Tests/Editor/JsonTestHelp.cs.meta +3 -0
- package/Tests/Editor/MockLogProvider.cs +47 -0
- package/Tests/Editor/MockLogProvider.cs.meta +11 -0
- package/Tests/Editor/PreserveAttributeTests.cs +26 -0
- package/Tests/Editor/PreserveAttributeTests.cs.meta +11 -0
- package/Tests/Editor/PromiseTests/ErrorTests.cs +582 -0
- package/Tests/Editor/PromiseTests/ErrorTests.cs.meta +11 -0
- package/Tests/Editor/PromiseTests.meta +8 -0
- package/Tests/Editor/SmallerJSON/InfinityTests.cs +61 -0
- package/Tests/Editor/SmallerJSON/InfinityTests.cs.meta +3 -0
- package/Tests/Editor/SmallerJSON/JsonPathTests.cs +107 -0
- package/Tests/Editor/SmallerJSON/JsonPathTests.cs.meta +11 -0
- package/Tests/Editor/SmallerJSON/JsonSerializeTest.cs +135 -0
- package/Tests/Editor/SmallerJSON/JsonSerializeTest.cs.meta +3 -0
- package/Tests/Editor/SmallerJSON.meta +8 -0
- package/Tests/Editor/Unity.Beamable.Editor.Tests.asmdef +32 -0
- package/Tests/Editor/Unity.Beamable.Editor.Tests.asmdef.meta +7 -0
- package/Tests/Editor.meta +8 -0
- package/Tests/Runtime/Beamable/BeamContextInitTests.cs +103 -0
- package/Tests/Runtime/Beamable/BeamContextInitTests.cs.meta +11 -0
- package/Tests/Runtime/Beamable/BeamContextTest.cs +72 -0
- package/Tests/Runtime/Beamable/BeamContextTest.cs.meta +3 -0
- package/Tests/Runtime/Beamable/BeamableTest.cs +46 -0
- package/Tests/Runtime/Beamable/BeamableTest.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Content/ClientManifest/ParseCSVTests.cs +102 -0
- package/Tests/Runtime/Beamable/Content/ClientManifest/ParseCSVTests.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Content/ClientManifest.meta +8 -0
- package/Tests/Runtime/Beamable/Content/ContentRegistry/GetTypeFromIdTests.cs +164 -0
- package/Tests/Runtime/Beamable/Content/ContentRegistry/GetTypeFromIdTests.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Content/ContentRegistry.meta +8 -0
- package/Tests/Runtime/Beamable/Content/Serialization/ClientContentSerializer/DeserializeEmptyFields.cs +114 -0
- package/Tests/Runtime/Beamable/Content/Serialization/ClientContentSerializer/DeserializeEmptyFields.cs.meta +3 -0
- package/Tests/Runtime/Beamable/Content/Serialization/ClientContentSerializer/DeserializeTests.cs +1343 -0
- package/Tests/Runtime/Beamable/Content/Serialization/ClientContentSerializer/DeserializeTests.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Content/Serialization/ClientContentSerializer/EscapedStringTests.cs +119 -0
- package/Tests/Runtime/Beamable/Content/Serialization/ClientContentSerializer/EscapedStringTests.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Content/Serialization/ClientContentSerializer/GetNullStringForTypeTests.cs +104 -0
- package/Tests/Runtime/Beamable/Content/Serialization/ClientContentSerializer/GetNullStringForTypeTests.cs.meta +3 -0
- package/Tests/Runtime/Beamable/Content/Serialization/ClientContentSerializer/SerializeFieldSubclassSerializeTests.cs +157 -0
- package/Tests/Runtime/Beamable/Content/Serialization/ClientContentSerializer/SerializeFieldSubclassSerializeTests.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Content/Serialization/ClientContentSerializer/SerializeTests.cs +1066 -0
- package/Tests/Runtime/Beamable/Content/Serialization/ClientContentSerializer/SerializeTests.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Content/Serialization/ClientContentSerializer.meta +8 -0
- package/Tests/Runtime/Beamable/Content/Serialization/TestContentRef.cs +66 -0
- package/Tests/Runtime/Beamable/Content/Serialization/TestContentRef.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Content/Serialization/VipContentSerialization/VipContentSerializationTests.cs +34 -0
- package/Tests/Runtime/Beamable/Content/Serialization/VipContentSerialization/VipContentSerializationTests.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Content/Serialization/VipContentSerialization.meta +8 -0
- package/Tests/Runtime/Beamable/Content/Serialization.meta +8 -0
- package/Tests/Runtime/Beamable/Content.meta +8 -0
- package/Tests/Runtime/Beamable/DebouncerTests.cs +110 -0
- package/Tests/Runtime/Beamable/DebouncerTests.cs.meta +3 -0
- package/Tests/Runtime/Beamable/Dependencies/ScopingTests.cs +235 -0
- package/Tests/Runtime/Beamable/Dependencies/ScopingTests.cs.meta +3 -0
- package/Tests/Runtime/Beamable/Dependencies.meta +3 -0
- package/Tests/Runtime/Beamable/Environment/PackageVersionTests/FromSemanticVersionStringTests.cs +161 -0
- package/Tests/Runtime/Beamable/Environment/PackageVersionTests/FromSemanticVersionStringTests.cs.meta +3 -0
- package/Tests/Runtime/Beamable/Environment/PackageVersionTests/ImplicitConversionTest.cs +24 -0
- package/Tests/Runtime/Beamable/Environment/PackageVersionTests/ImplicitConversionTest.cs.meta +3 -0
- package/Tests/Runtime/Beamable/Environment/PackageVersionTests/RangeOperatorTests.cs +209 -0
- package/Tests/Runtime/Beamable/Environment/PackageVersionTests/RangeOperatorTests.cs.meta +3 -0
- package/Tests/Runtime/Beamable/Environment/PackageVersionTests/ToStringTests.cs +64 -0
- package/Tests/Runtime/Beamable/Environment/PackageVersionTests/ToStringTests.cs.meta +3 -0
- package/Tests/Runtime/Beamable/Environment/PackageVersionTests.meta +3 -0
- package/Tests/Runtime/Beamable/Environment.meta +3 -0
- package/Tests/Runtime/Beamable/MockAuthService.cs +218 -0
- package/Tests/Runtime/Beamable/MockAuthService.cs.meta +11 -0
- package/Tests/Runtime/Beamable/MockBeamContext.cs +171 -0
- package/Tests/Runtime/Beamable/MockBeamContext.cs.meta +3 -0
- package/Tests/Runtime/Beamable/MockBeamableApi.cs +122 -0
- package/Tests/Runtime/Beamable/MockBeamableApi.cs.meta +11 -0
- package/Tests/Runtime/Beamable/MockConfigurationHelper.cs +19 -0
- package/Tests/Runtime/Beamable/MockConfigurationHelper.cs.meta +11 -0
- package/Tests/Runtime/Beamable/MockFileAccessor.cs +19 -0
- package/Tests/Runtime/Beamable/MockFileAccessor.cs.meta +3 -0
- package/Tests/Runtime/Beamable/Modules/AccountManagement/AccountManagementSignalsTests/AcceptAccountSwitchTests.cs +95 -0
- package/Tests/Runtime/Beamable/Modules/AccountManagement/AccountManagementSignalsTests/AcceptAccountSwitchTests.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Modules/AccountManagement/AccountManagementSignalsTests/CheckSignedInUserTests.cs +134 -0
- package/Tests/Runtime/Beamable/Modules/AccountManagement/AccountManagementSignalsTests/CheckSignedInUserTests.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Modules/AccountManagement/AccountManagementSignalsTests/LoginTests.cs +108 -0
- package/Tests/Runtime/Beamable/Modules/AccountManagement/AccountManagementSignalsTests/LoginTests.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Modules/AccountManagement/AccountManagementSignalsTests/TestHelperExtensions.cs +38 -0
- package/Tests/Runtime/Beamable/Modules/AccountManagement/AccountManagementSignalsTests/TestHelperExtensions.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Modules/AccountManagement/AccountManagementSignalsTests/UpdateLoginEmailTests.cs +81 -0
- package/Tests/Runtime/Beamable/Modules/AccountManagement/AccountManagementSignalsTests/UpdateLoginEmailTests.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Modules/AccountManagement/AccountManagementSignalsTests.meta +8 -0
- package/Tests/Runtime/Beamable/Modules/AccountManagement.meta +8 -0
- package/Tests/Runtime/Beamable/Modules/Leaderboards/IncrementTests.cs +88 -0
- package/Tests/Runtime/Beamable/Modules/Leaderboards/IncrementTests.cs.meta +3 -0
- package/Tests/Runtime/Beamable/Modules/Leaderboards/LeaderboardViewSerializeTests.cs +109 -0
- package/Tests/Runtime/Beamable/Modules/Leaderboards/LeaderboardViewSerializeTests.cs.meta +3 -0
- package/Tests/Runtime/Beamable/Modules/Leaderboards.meta +3 -0
- package/Tests/Runtime/Beamable/Modules/Shop/ListingContentTests/ValidateListingTests.cs +66 -0
- package/Tests/Runtime/Beamable/Modules/Shop/ListingContentTests/ValidateListingTests.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Modules/Shop/ListingContentTests.meta +8 -0
- package/Tests/Runtime/Beamable/Modules/Shop.meta +8 -0
- package/Tests/Runtime/Beamable/Modules/Stats/StatObjectTests/WriteTests.cs +42 -0
- package/Tests/Runtime/Beamable/Modules/Stats/StatObjectTests/WriteTests.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Modules/Stats/StatObjectTests.meta +8 -0
- package/Tests/Runtime/Beamable/Modules/Stats.meta +8 -0
- package/Tests/Runtime/Beamable/Modules/Tournaments/TournamentScoreUtilTests/GetShortScoreTests.cs +329 -0
- package/Tests/Runtime/Beamable/Modules/Tournaments/TournamentScoreUtilTests/GetShortScoreTests.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Modules/Tournaments/TournamentScoreUtilTests.meta +8 -0
- package/Tests/Runtime/Beamable/Modules/Tournaments.meta +8 -0
- package/Tests/Runtime/Beamable/Modules.meta +8 -0
- package/Tests/Runtime/Beamable/Platform/AccessTokenStorageTests.cs +154 -0
- package/Tests/Runtime/Beamable/Platform/AccessTokenStorageTests.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Platform/Auth/AuthServiceTests/AuthServiceTestBase.cs +39 -0
- package/Tests/Runtime/Beamable/Platform/Auth/AuthServiceTests/AuthServiceTestBase.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Platform/Auth/AuthServiceTests/CustomDeviceIdTests.cs +51 -0
- package/Tests/Runtime/Beamable/Platform/Auth/AuthServiceTests/CustomDeviceIdTests.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Platform/Auth/AuthServiceTests/GetUserTests.cs +33 -0
- package/Tests/Runtime/Beamable/Platform/Auth/AuthServiceTests/GetUserTests.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Platform/Auth/AuthServiceTests/IsEmailAvailableTests.cs +58 -0
- package/Tests/Runtime/Beamable/Platform/Auth/AuthServiceTests/IsEmailAvailableTests.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Platform/Auth/AuthServiceTests/LoginTests.cs +37 -0
- package/Tests/Runtime/Beamable/Platform/Auth/AuthServiceTests/LoginTests.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Platform/Auth/AuthServiceTests/RemoveDeviceIdTests.cs +69 -0
- package/Tests/Runtime/Beamable/Platform/Auth/AuthServiceTests/RemoveDeviceIdTests.cs.meta +3 -0
- package/Tests/Runtime/Beamable/Platform/Auth/AuthServiceTests.meta +8 -0
- package/Tests/Runtime/Beamable/Platform/Auth.meta +8 -0
- package/Tests/Runtime/Beamable/Platform/Connectivity/MockConnectivityService.cs +45 -0
- package/Tests/Runtime/Beamable/Platform/Connectivity/MockConnectivityService.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Platform/Connectivity.meta +8 -0
- package/Tests/Runtime/Beamable/Platform/Content/MockContentService.cs +140 -0
- package/Tests/Runtime/Beamable/Platform/Content/MockContentService.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Platform/Content.meta +8 -0
- package/Tests/Runtime/Beamable/Platform/Inventory/InventoryResponseTests/MergeViewTests.cs +245 -0
- package/Tests/Runtime/Beamable/Platform/Inventory/InventoryResponseTests/MergeViewTests.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Platform/Inventory/InventoryResponseTests.meta +8 -0
- package/Tests/Runtime/Beamable/Platform/Inventory/InventoryServiceTests/GetItemTests.cs +225 -0
- package/Tests/Runtime/Beamable/Platform/Inventory/InventoryServiceTests/GetItemTests.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Platform/Inventory/InventoryServiceTests/InventoryServiceTestBase.cs +52 -0
- package/Tests/Runtime/Beamable/Platform/Inventory/InventoryServiceTests/InventoryServiceTestBase.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Platform/Inventory/InventoryServiceTests/UpdateTests.cs +73 -0
- package/Tests/Runtime/Beamable/Platform/Inventory/InventoryServiceTests/UpdateTests.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Platform/Inventory/InventoryServiceTests.meta +8 -0
- package/Tests/Runtime/Beamable/Platform/Inventory/InventoryTestItem.cs +26 -0
- package/Tests/Runtime/Beamable/Platform/Inventory/InventoryTestItem.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Platform/Inventory/InventoryUpdateBuilderTests/AddItemTests.cs +24 -0
- package/Tests/Runtime/Beamable/Platform/Inventory/InventoryUpdateBuilderTests/AddItemTests.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Platform/Inventory/InventoryUpdateBuilderTests/SerializationTests.cs +227 -0
- package/Tests/Runtime/Beamable/Platform/Inventory/InventoryUpdateBuilderTests/SerializationTests.cs.meta +3 -0
- package/Tests/Runtime/Beamable/Platform/Inventory/InventoryUpdateBuilderTests/UnitySerializationTests.cs +215 -0
- package/Tests/Runtime/Beamable/Platform/Inventory/InventoryUpdateBuilderTests/UnitySerializationTests.cs.meta +3 -0
- package/Tests/Runtime/Beamable/Platform/Inventory/InventoryUpdateBuilderTests.meta +8 -0
- package/Tests/Runtime/Beamable/Platform/Inventory.meta +8 -0
- package/Tests/Runtime/Beamable/Platform/Mail/MailTests.cs +67 -0
- package/Tests/Runtime/Beamable/Platform/Mail/MailTests.cs.meta +3 -0
- package/Tests/Runtime/Beamable/Platform/Mail.meta +3 -0
- package/Tests/Runtime/Beamable/Platform/MockConnectivityChecker.cs +24 -0
- package/Tests/Runtime/Beamable/Platform/MockConnectivityChecker.cs.meta +3 -0
- package/Tests/Runtime/Beamable/Platform/MockPlatformAPI.cs +398 -0
- package/Tests/Runtime/Beamable/Platform/MockPlatformAPI.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Platform/MockPlatformRequester.cs +78 -0
- package/Tests/Runtime/Beamable/Platform/MockPlatformRequester.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Platform/MockPlatformService.cs +47 -0
- package/Tests/Runtime/Beamable/Platform/MockPlatformService.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Platform/MockRequesterExtensions.cs +13 -0
- package/Tests/Runtime/Beamable/Platform/MockRequesterExtensions.cs.meta +3 -0
- package/Tests/Runtime/Beamable/Platform/TestUtil.cs +59 -0
- package/Tests/Runtime/Beamable/Platform/TestUtil.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Platform.meta +8 -0
- package/Tests/Runtime/Beamable/Player/Accounts/ExternalIdentityQueryArgsTests.cs +132 -0
- package/Tests/Runtime/Beamable/Player/Accounts/ExternalIdentityQueryArgsTests.cs.meta +3 -0
- package/Tests/Runtime/Beamable/Player/Accounts.meta +3 -0
- package/Tests/Runtime/Beamable/Player/Announcements/AnnouncementGiftSerialization.cs +117 -0
- package/Tests/Runtime/Beamable/Player/Announcements/AnnouncementGiftSerialization.cs.meta +3 -0
- package/Tests/Runtime/Beamable/Player/Announcements/MockAnnouncementsApi.cs +45 -0
- package/Tests/Runtime/Beamable/Player/Announcements/MockAnnouncementsApi.cs.meta +3 -0
- package/Tests/Runtime/Beamable/Player/Announcements/MockNotificationService.cs +70 -0
- package/Tests/Runtime/Beamable/Player/Announcements/MockNotificationService.cs.meta +3 -0
- package/Tests/Runtime/Beamable/Player/Announcements.meta +3 -0
- package/Tests/Runtime/Beamable/Player/Inventory/GetItemTests.cs +485 -0
- package/Tests/Runtime/Beamable/Player/Inventory/GetItemTests.cs.meta +3 -0
- package/Tests/Runtime/Beamable/Player/Inventory/InventoryReflectionUtility.cs +0 -0
- package/Tests/Runtime/Beamable/Player/Inventory/InventoryReflectionUtility.cs.meta +3 -0
- package/Tests/Runtime/Beamable/Player/Inventory/MockInventoryApi.cs +77 -0
- package/Tests/Runtime/Beamable/Player/Inventory/MockInventoryApi.cs.meta +3 -0
- package/Tests/Runtime/Beamable/Player/Inventory.meta +3 -0
- package/Tests/Runtime/Beamable/Player/Leaderboards/ResortTests.cs +236 -0
- package/Tests/Runtime/Beamable/Player/Leaderboards/ResortTests.cs.meta +3 -0
- package/Tests/Runtime/Beamable/Player/Leaderboards.meta +3 -0
- package/Tests/Runtime/Beamable/Player.meta +3 -0
- package/Tests/Runtime/Beamable/Pooling/StringBuilderPoolTests/SpawnTests.cs +55 -0
- package/Tests/Runtime/Beamable/Pooling/StringBuilderPoolTests/SpawnTests.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Pooling/StringBuilderPoolTests.meta +8 -0
- package/Tests/Runtime/Beamable/Pooling.meta +8 -0
- package/Tests/Runtime/Beamable/Promises/PromisePlayModeTests.cs +145 -0
- package/Tests/Runtime/Beamable/Promises/PromisePlayModeTests.cs.meta +11 -0
- package/Tests/Runtime/Beamable/Promises/SequenceTests.cs +45 -0
- package/Tests/Runtime/Beamable/Promises/SequenceTests.cs.meta +3 -0
- package/Tests/Runtime/Beamable/Promises.meta +8 -0
- package/Tests/Runtime/Beamable/QueryBuilder/QueryBuilderTests.cs +94 -0
- package/Tests/Runtime/Beamable/QueryBuilder/QueryBuilderTests.cs.meta +3 -0
- package/Tests/Runtime/Beamable/QueryBuilder.meta +3 -0
- package/Tests/Runtime/Beamable.meta +8 -0
- package/Tests/Runtime/Server/Runtime/MicroserviceClient/RequestTests.cs +374 -0
- package/Tests/Runtime/Server/Runtime/MicroserviceClient/RequestTests.cs.meta +3 -0
- package/Tests/Runtime/Server/Runtime/MicroserviceClient/TestClient.cs +78 -0
- package/Tests/Runtime/Server/Runtime/MicroserviceClient/TestClient.cs.meta +11 -0
- package/Tests/Runtime/Server/Runtime/MicroserviceClient.meta +8 -0
- package/Tests/Runtime/Server/Runtime/TestRegistrations.cs +22 -0
- package/Tests/Runtime/Server/Runtime/TestRegistrations.cs.meta +3 -0
- package/Tests/Runtime/Server/Runtime/Unity.Beamable.Server.Runtime.Tests.asmdef +26 -0
- package/Tests/Runtime/Server/Runtime/Unity.Beamable.Server.Runtime.Tests.asmdef.meta +7 -0
- package/Tests/Runtime/Server/Runtime.meta +8 -0
- package/Tests/Runtime/Server.meta +3 -0
- package/Tests/Runtime/Unity.Beamable.Tests.asmdef +25 -0
- package/Tests/Runtime/Unity.Beamable.Tests.asmdef.meta +7 -0
- package/Tests/Runtime.meta +8 -0
- package/Tests.meta +8 -0
- package/package.json +86 -0
- package/package.json.meta +7 -0
|
@@ -0,0 +1,1180 @@
|
|
|
1
|
+
// This file generated by a copy-operation from another project.
|
|
2
|
+
// Edits to this file will be overwritten by the build process.
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
namespace Beamable.Api.Autogenerated.Payments
|
|
6
|
+
{
|
|
7
|
+
using Beamable.Api.Autogenerated.Models;
|
|
8
|
+
using Beamable.Common.Content;
|
|
9
|
+
using Beamable.Common;
|
|
10
|
+
using IBeamableRequester = Beamable.Common.Api.IBeamableRequester;
|
|
11
|
+
using Method = Beamable.Common.Api.Method;
|
|
12
|
+
using Beamable.Common.Dependencies;
|
|
13
|
+
|
|
14
|
+
public partial interface IPaymentsApi
|
|
15
|
+
{
|
|
16
|
+
/// <summary>
|
|
17
|
+
/// POST call to `/basic/payments/windows/purchase/track` endpoint.
|
|
18
|
+
/// </summary>
|
|
19
|
+
/// <param name="gsReq">The <see cref="TrackPurchaseRequest"/> instance to use for the request</param>
|
|
20
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
21
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
22
|
+
Promise<PaymentResultResponse> PostWindowsPurchaseTrack(TrackPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
23
|
+
/// <summary>
|
|
24
|
+
/// GET call to `/basic/payments/audits` endpoint.
|
|
25
|
+
/// </summary>
|
|
26
|
+
/// <param name="limit"></param>
|
|
27
|
+
/// <param name="player"></param>
|
|
28
|
+
/// <param name="provider"></param>
|
|
29
|
+
/// <param name="providerid"></param>
|
|
30
|
+
/// <param name="start"></param>
|
|
31
|
+
/// <param name="state"></param>
|
|
32
|
+
/// <param name="txid"></param>
|
|
33
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
34
|
+
/// <returns>A promise containing the <see cref="ListAuditResponse"/></returns>
|
|
35
|
+
Promise<ListAuditResponse> GetAudits([System.Runtime.InteropServices.DefaultParameterValueAttribute(null)] [System.Runtime.InteropServices.OptionalAttribute()] Beamable.Common.Content.Optional<int> limit, [System.Runtime.InteropServices.DefaultParameterValueAttribute(null)] [System.Runtime.InteropServices.OptionalAttribute()] Beamable.Common.Content.Optional<long> player, [System.Runtime.InteropServices.DefaultParameterValueAttribute(null)] [System.Runtime.InteropServices.OptionalAttribute()] Beamable.Common.Content.Optional<string> provider, [System.Runtime.InteropServices.DefaultParameterValueAttribute(null)] [System.Runtime.InteropServices.OptionalAttribute()] Beamable.Common.Content.Optional<string> providerid, [System.Runtime.InteropServices.DefaultParameterValueAttribute(null)] [System.Runtime.InteropServices.OptionalAttribute()] Beamable.Common.Content.Optional<int> start, [System.Runtime.InteropServices.DefaultParameterValueAttribute(null)] [System.Runtime.InteropServices.OptionalAttribute()] Beamable.Common.Content.Optional<string> state, [System.Runtime.InteropServices.DefaultParameterValueAttribute(null)] [System.Runtime.InteropServices.OptionalAttribute()] Beamable.Common.Content.Optional<long> txid, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
36
|
+
/// <summary>
|
|
37
|
+
/// POST call to `/basic/payments/windows/purchase/complete` endpoint.
|
|
38
|
+
/// </summary>
|
|
39
|
+
/// <param name="gsReq">The <see cref="CompletePurchaseRequest"/> instance to use for the request</param>
|
|
40
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
41
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
42
|
+
Promise<PaymentResultResponse> PostWindowsPurchaseComplete(CompletePurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
43
|
+
/// <summary>
|
|
44
|
+
/// POST call to `/basic/payments/test/purchase/begin` endpoint.
|
|
45
|
+
/// </summary>
|
|
46
|
+
/// <param name="gsReq">The <see cref="BeginPurchaseRequest"/> instance to use for the request</param>
|
|
47
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
48
|
+
/// <returns>A promise containing the <see cref="BeginPurchaseResponse"/></returns>
|
|
49
|
+
Promise<BeginPurchaseResponse> PostTestPurchaseBegin(BeginPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
50
|
+
/// <summary>
|
|
51
|
+
/// POST call to `/basic/payments/steam/purchase/fail` endpoint.
|
|
52
|
+
/// </summary>
|
|
53
|
+
/// <param name="gsReq">The <see cref="FailPurchaseRequest"/> instance to use for the request</param>
|
|
54
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
55
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
56
|
+
Promise<PaymentResultResponse> PostSteamPurchaseFail(FailPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
57
|
+
/// <summary>
|
|
58
|
+
/// POST call to `/basic/payments/facebook/purchase/complete` endpoint.
|
|
59
|
+
/// </summary>
|
|
60
|
+
/// <param name="gsReq">The <see cref="CompletePurchaseRequest"/> instance to use for the request</param>
|
|
61
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
62
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
63
|
+
Promise<PaymentResultResponse> PostFacebookPurchaseComplete(CompletePurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
64
|
+
/// <summary>
|
|
65
|
+
/// POST call to `/basic/payments/facebook/purchase/fail` endpoint.
|
|
66
|
+
/// </summary>
|
|
67
|
+
/// <param name="gsReq">The <see cref="FailPurchaseRequest"/> instance to use for the request</param>
|
|
68
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
69
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
70
|
+
Promise<PaymentResultResponse> PostFacebookPurchaseFail(FailPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
71
|
+
/// <summary>
|
|
72
|
+
/// POST call to `/basic/payments/test/purchase/complete` endpoint.
|
|
73
|
+
/// </summary>
|
|
74
|
+
/// <param name="gsReq">The <see cref="CompletePurchaseRequest"/> instance to use for the request</param>
|
|
75
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
76
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
77
|
+
Promise<PaymentResultResponse> PostTestPurchaseComplete(CompletePurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
78
|
+
/// <summary>
|
|
79
|
+
/// GET call to `/basic/payments/itunes/product` endpoint.
|
|
80
|
+
/// </summary>
|
|
81
|
+
/// <param name="sku"></param>
|
|
82
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
83
|
+
/// <returns>A promise containing the <see cref="GetProductResponse"/></returns>
|
|
84
|
+
Promise<GetProductResponse> GetItunesProduct(string sku, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
85
|
+
/// <summary>
|
|
86
|
+
/// POST call to `/basic/payments/googleplay/purchase/complete` endpoint.
|
|
87
|
+
/// </summary>
|
|
88
|
+
/// <param name="gsReq">The <see cref="CompletePurchaseRequest"/> instance to use for the request</param>
|
|
89
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
90
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
91
|
+
Promise<PaymentResultResponse> PostGoogleplayPurchaseComplete(CompletePurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
92
|
+
/// <summary>
|
|
93
|
+
/// POST call to `/basic/payments/test/purchase/track` endpoint.
|
|
94
|
+
/// </summary>
|
|
95
|
+
/// <param name="gsReq">The <see cref="TrackPurchaseRequest"/> instance to use for the request</param>
|
|
96
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
97
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
98
|
+
Promise<PaymentResultResponse> PostTestPurchaseTrack(TrackPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
99
|
+
/// <summary>
|
|
100
|
+
/// POST call to `/basic/payments/googleplay/purchase/begin` endpoint.
|
|
101
|
+
/// </summary>
|
|
102
|
+
/// <param name="gsReq">The <see cref="BeginPurchaseRequest"/> instance to use for the request</param>
|
|
103
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
104
|
+
/// <returns>A promise containing the <see cref="BeginPurchaseResponse"/></returns>
|
|
105
|
+
Promise<BeginPurchaseResponse> PostGoogleplayPurchaseBegin(BeginPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
106
|
+
/// <summary>
|
|
107
|
+
/// POST call to `/basic/payments/itunes/purchase/begin` endpoint.
|
|
108
|
+
/// </summary>
|
|
109
|
+
/// <param name="gsReq">The <see cref="BeginPurchaseRequest"/> instance to use for the request</param>
|
|
110
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
111
|
+
/// <returns>A promise containing the <see cref="BeginPurchaseResponse"/></returns>
|
|
112
|
+
Promise<BeginPurchaseResponse> PostItunesPurchaseBegin(BeginPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
113
|
+
/// <summary>
|
|
114
|
+
/// POST call to `/basic/payments/googleplay/purchase/verify` endpoint.
|
|
115
|
+
/// </summary>
|
|
116
|
+
/// <param name="gsReq">The <see cref="VerifyPurchaseRequest"/> instance to use for the request</param>
|
|
117
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
118
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
119
|
+
Promise<PaymentResultResponse> PostGoogleplayPurchaseVerify(VerifyPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
120
|
+
/// <summary>
|
|
121
|
+
/// POST call to `/basic/payments/facebook/purchase/cancel` endpoint.
|
|
122
|
+
/// </summary>
|
|
123
|
+
/// <param name="gsReq">The <see cref="CancelPurchaseRequest"/> instance to use for the request</param>
|
|
124
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
125
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
126
|
+
Promise<PaymentResultResponse> PostFacebookPurchaseCancel(CancelPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
127
|
+
/// <summary>
|
|
128
|
+
/// POST call to `/basic/payments/coupon/purchase/track` endpoint.
|
|
129
|
+
/// </summary>
|
|
130
|
+
/// <param name="gsReq">The <see cref="TrackPurchaseRequest"/> instance to use for the request</param>
|
|
131
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
132
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
133
|
+
Promise<PaymentResultResponse> PostCouponPurchaseTrack(TrackPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
134
|
+
/// <summary>
|
|
135
|
+
/// POST call to `/basic/payments/steam/purchase/complete` endpoint.
|
|
136
|
+
/// </summary>
|
|
137
|
+
/// <param name="gsReq">The <see cref="CompletePurchaseRequest"/> instance to use for the request</param>
|
|
138
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
139
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
140
|
+
Promise<PaymentResultResponse> PostSteamPurchaseComplete(CompletePurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
141
|
+
/// <summary>
|
|
142
|
+
/// POST call to `/basic/payments/facebook/purchase/track` endpoint.
|
|
143
|
+
/// </summary>
|
|
144
|
+
/// <param name="gsReq">The <see cref="TrackPurchaseRequest"/> instance to use for the request</param>
|
|
145
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
146
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
147
|
+
Promise<PaymentResultResponse> PostFacebookPurchaseTrack(TrackPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
148
|
+
/// <summary>
|
|
149
|
+
/// POST call to `/basic/payments/itunes/purchase/fail` endpoint.
|
|
150
|
+
/// </summary>
|
|
151
|
+
/// <param name="gsReq">The <see cref="FailPurchaseRequest"/> instance to use for the request</param>
|
|
152
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
153
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
154
|
+
Promise<PaymentResultResponse> PostItunesPurchaseFail(FailPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
155
|
+
/// <summary>
|
|
156
|
+
/// POST call to `/basic/payments/test/purchase/verify` endpoint.
|
|
157
|
+
/// </summary>
|
|
158
|
+
/// <param name="gsReq">The <see cref="VerifyPurchaseRequest"/> instance to use for the request</param>
|
|
159
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
160
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
161
|
+
Promise<PaymentResultResponse> PostTestPurchaseVerify(VerifyPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
162
|
+
/// <summary>
|
|
163
|
+
/// POST call to `/basic/payments/test/purchase/cancel` endpoint.
|
|
164
|
+
/// </summary>
|
|
165
|
+
/// <param name="gsReq">The <see cref="CancelPurchaseRequest"/> instance to use for the request</param>
|
|
166
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
167
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
168
|
+
Promise<PaymentResultResponse> PostTestPurchaseCancel(CancelPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
169
|
+
/// <summary>
|
|
170
|
+
/// POST call to `/basic/payments/googleplay/purchase/track` endpoint.
|
|
171
|
+
/// </summary>
|
|
172
|
+
/// <param name="gsReq">The <see cref="TrackPurchaseRequest"/> instance to use for the request</param>
|
|
173
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
174
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
175
|
+
Promise<PaymentResultResponse> PostGoogleplayPurchaseTrack(TrackPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
176
|
+
/// <summary>
|
|
177
|
+
/// GET call to `/basic/payments/steam/prices` endpoint.
|
|
178
|
+
/// </summary>
|
|
179
|
+
/// <param name="steamId"></param>
|
|
180
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
181
|
+
/// <returns>A promise containing the <see cref="LocalizedPriceMap"/></returns>
|
|
182
|
+
Promise<LocalizedPriceMap> GetSteamPrices(long steamId, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
183
|
+
/// <summary>
|
|
184
|
+
/// POST call to `/basic/payments/windows/purchase/verify` endpoint.
|
|
185
|
+
/// </summary>
|
|
186
|
+
/// <param name="gsReq">The <see cref="VerifyPurchaseRequest"/> instance to use for the request</param>
|
|
187
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
188
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
189
|
+
Promise<PaymentResultResponse> PostWindowsPurchaseVerify(VerifyPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
190
|
+
/// <summary>
|
|
191
|
+
/// POST call to `/basic/payments/test/purchase/fail` endpoint.
|
|
192
|
+
/// </summary>
|
|
193
|
+
/// <param name="gsReq">The <see cref="FailPurchaseRequest"/> instance to use for the request</param>
|
|
194
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
195
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
196
|
+
Promise<PaymentResultResponse> PostTestPurchaseFail(FailPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
197
|
+
/// <summary>
|
|
198
|
+
/// POST call to `/basic/payments/coupon/purchase/cancel` endpoint.
|
|
199
|
+
/// </summary>
|
|
200
|
+
/// <param name="gsReq">The <see cref="CancelPurchaseRequest"/> instance to use for the request</param>
|
|
201
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
202
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
203
|
+
Promise<PaymentResultResponse> PostCouponPurchaseCancel(CancelPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
204
|
+
/// <summary>
|
|
205
|
+
/// POST call to `/basic/payments/itunes/purchase/verify` endpoint.
|
|
206
|
+
/// </summary>
|
|
207
|
+
/// <param name="gsReq">The <see cref="VerifyPurchaseRequest"/> instance to use for the request</param>
|
|
208
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
209
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
210
|
+
Promise<PaymentResultResponse> PostItunesPurchaseVerify(VerifyPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
211
|
+
/// <summary>
|
|
212
|
+
/// POST call to `/basic/payments/itunes/purchase/complete` endpoint.
|
|
213
|
+
/// </summary>
|
|
214
|
+
/// <param name="gsReq">The <see cref="CompletePurchaseRequest"/> instance to use for the request</param>
|
|
215
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
216
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
217
|
+
Promise<PaymentResultResponse> PostItunesPurchaseComplete(CompletePurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
218
|
+
/// <summary>
|
|
219
|
+
/// POST call to `/basic/payments/coupon/purchase/begin` endpoint.
|
|
220
|
+
/// </summary>
|
|
221
|
+
/// <param name="gsReq">The <see cref="BeginPurchaseRequest"/> instance to use for the request</param>
|
|
222
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
223
|
+
/// <returns>A promise containing the <see cref="BeginPurchaseResponse"/></returns>
|
|
224
|
+
Promise<BeginPurchaseResponse> PostCouponPurchaseBegin(BeginPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
225
|
+
/// <summary>
|
|
226
|
+
/// POST call to `/basic/payments/facebook/purchase/verify` endpoint.
|
|
227
|
+
/// </summary>
|
|
228
|
+
/// <param name="gsReq">The <see cref="VerifyPurchaseRequest"/> instance to use for the request</param>
|
|
229
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
230
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
231
|
+
Promise<PaymentResultResponse> PostFacebookPurchaseVerify(VerifyPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
232
|
+
/// <summary>
|
|
233
|
+
/// POST call to `/basic/payments/steam/purchase/track` endpoint.
|
|
234
|
+
/// </summary>
|
|
235
|
+
/// <param name="gsReq">The <see cref="TrackPurchaseRequest"/> instance to use for the request</param>
|
|
236
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
237
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
238
|
+
Promise<PaymentResultResponse> PostSteamPurchaseTrack(TrackPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
239
|
+
/// <summary>
|
|
240
|
+
/// POST call to `/basic/payments/facebook/purchase/begin` endpoint.
|
|
241
|
+
/// </summary>
|
|
242
|
+
/// <param name="gsReq">The <see cref="BeginPurchaseRequest"/> instance to use for the request</param>
|
|
243
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
244
|
+
/// <returns>A promise containing the <see cref="BeginPurchaseResponse"/></returns>
|
|
245
|
+
Promise<BeginPurchaseResponse> PostFacebookPurchaseBegin(BeginPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
246
|
+
/// <summary>
|
|
247
|
+
/// GET call to `/basic/payments/steam/order` endpoint.
|
|
248
|
+
/// </summary>
|
|
249
|
+
/// <param name="orderId"></param>
|
|
250
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
251
|
+
/// <returns>A promise containing the <see cref="SteamOrderInfoResponse"/></returns>
|
|
252
|
+
Promise<SteamOrderInfoResponse> GetSteamOrder(string orderId, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
253
|
+
/// <summary>
|
|
254
|
+
/// POST call to `/basic/payments/coupon/purchase/verify` endpoint.
|
|
255
|
+
/// </summary>
|
|
256
|
+
/// <param name="gsReq">The <see cref="VerifyPurchaseRequest"/> instance to use for the request</param>
|
|
257
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
258
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
259
|
+
Promise<PaymentResultResponse> PostCouponPurchaseVerify(VerifyPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
260
|
+
/// <summary>
|
|
261
|
+
/// POST call to `/basic/payments/windows/purchase/begin` endpoint.
|
|
262
|
+
/// </summary>
|
|
263
|
+
/// <param name="gsReq">The <see cref="BeginPurchaseRequest"/> instance to use for the request</param>
|
|
264
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
265
|
+
/// <returns>A promise containing the <see cref="BeginPurchaseResponse"/></returns>
|
|
266
|
+
Promise<BeginPurchaseResponse> PostWindowsPurchaseBegin(BeginPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
267
|
+
/// <summary>
|
|
268
|
+
/// GET call to `/basic/payments/windows/product` endpoint.
|
|
269
|
+
/// </summary>
|
|
270
|
+
/// <param name="sku"></param>
|
|
271
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
272
|
+
/// <returns>A promise containing the <see cref="GetProductResponse"/></returns>
|
|
273
|
+
Promise<GetProductResponse> GetWindowsProduct(string sku, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
274
|
+
/// <summary>
|
|
275
|
+
/// POST call to `/basic/payments/googleplay/purchase/fail` endpoint.
|
|
276
|
+
/// </summary>
|
|
277
|
+
/// <param name="gsReq">The <see cref="FailPurchaseRequest"/> instance to use for the request</param>
|
|
278
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
279
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
280
|
+
Promise<PaymentResultResponse> PostGoogleplayPurchaseFail(FailPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
281
|
+
/// <summary>
|
|
282
|
+
/// GET call to `/basic/payments/facebook/product` endpoint.
|
|
283
|
+
/// </summary>
|
|
284
|
+
/// <param name="sku"></param>
|
|
285
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
286
|
+
/// <returns>A promise containing the <see cref="GetProductResponse"/></returns>
|
|
287
|
+
Promise<GetProductResponse> GetFacebookProduct(string sku, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
288
|
+
/// <summary>
|
|
289
|
+
/// POST call to `/basic/payments/googleplay/purchase/cancel` endpoint.
|
|
290
|
+
/// </summary>
|
|
291
|
+
/// <param name="gsReq">The <see cref="CancelPurchaseRequest"/> instance to use for the request</param>
|
|
292
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
293
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
294
|
+
Promise<PaymentResultResponse> PostGoogleplayPurchaseCancel(CancelPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
295
|
+
/// <summary>
|
|
296
|
+
/// GET call to `/basic/payments/coupon/product` endpoint.
|
|
297
|
+
/// </summary>
|
|
298
|
+
/// <param name="sku"></param>
|
|
299
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
300
|
+
/// <returns>A promise containing the <see cref="GetProductResponse"/></returns>
|
|
301
|
+
Promise<GetProductResponse> GetCouponProduct(string sku, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
302
|
+
/// <summary>
|
|
303
|
+
/// POST call to `/basic/payments/coupon/purchase/fail` endpoint.
|
|
304
|
+
/// </summary>
|
|
305
|
+
/// <param name="gsReq">The <see cref="FailPurchaseRequest"/> instance to use for the request</param>
|
|
306
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
307
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
308
|
+
Promise<PaymentResultResponse> PostCouponPurchaseFail(FailPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
309
|
+
/// <summary>
|
|
310
|
+
/// POST call to `/basic/payments/steam/purchase/begin` endpoint.
|
|
311
|
+
/// </summary>
|
|
312
|
+
/// <param name="gsReq">The <see cref="BeginPurchaseRequest"/> instance to use for the request</param>
|
|
313
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
314
|
+
/// <returns>A promise containing the <see cref="BeginPurchaseResponse"/></returns>
|
|
315
|
+
Promise<BeginPurchaseResponse> PostSteamPurchaseBegin(BeginPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
316
|
+
/// <summary>
|
|
317
|
+
/// GET call to `/basic/payments/steam/products` endpoint.
|
|
318
|
+
/// </summary>
|
|
319
|
+
/// <param name="steamId"></param>
|
|
320
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
321
|
+
/// <returns>A promise containing the <see cref="GetProductsResponse"/></returns>
|
|
322
|
+
Promise<GetProductsResponse> GetSteamProducts(long steamId, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
323
|
+
/// <summary>
|
|
324
|
+
/// POST call to `/basic/payments/steam/purchase/cancel` endpoint.
|
|
325
|
+
/// </summary>
|
|
326
|
+
/// <param name="gsReq">The <see cref="CancelPurchaseRequest"/> instance to use for the request</param>
|
|
327
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
328
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
329
|
+
Promise<PaymentResultResponse> PostSteamPurchaseCancel(CancelPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
330
|
+
/// <summary>
|
|
331
|
+
/// POST call to `/basic/payments/steam/auth` endpoint.
|
|
332
|
+
/// </summary>
|
|
333
|
+
/// <param name="gsReq">The <see cref="SteamAuthRequest"/> instance to use for the request</param>
|
|
334
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
335
|
+
/// <returns>A promise containing the <see cref="EmptyResponse"/></returns>
|
|
336
|
+
Promise<EmptyResponse> PostSteamAuth(SteamAuthRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
337
|
+
/// <summary>
|
|
338
|
+
/// GET call to `/basic/payments/steam/product` endpoint.
|
|
339
|
+
/// </summary>
|
|
340
|
+
/// <param name="sku"></param>
|
|
341
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
342
|
+
/// <returns>A promise containing the <see cref="GetProductResponse"/></returns>
|
|
343
|
+
Promise<GetProductResponse> GetSteamProduct(string sku, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
344
|
+
/// <summary>
|
|
345
|
+
/// POST call to `/basic/payments/coupon/purchase/complete` endpoint.
|
|
346
|
+
/// </summary>
|
|
347
|
+
/// <param name="gsReq">The <see cref="CompletePurchaseRequest"/> instance to use for the request</param>
|
|
348
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
349
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
350
|
+
Promise<PaymentResultResponse> PostCouponPurchaseComplete(CompletePurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
351
|
+
/// <summary>
|
|
352
|
+
/// POST call to `/basic/payments/windows/purchase/cancel` endpoint.
|
|
353
|
+
/// </summary>
|
|
354
|
+
/// <param name="gsReq">The <see cref="CancelPurchaseRequest"/> instance to use for the request</param>
|
|
355
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
356
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
357
|
+
Promise<PaymentResultResponse> PostWindowsPurchaseCancel(CancelPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
358
|
+
/// <summary>
|
|
359
|
+
/// GET call to `/basic/payments/googleplay/product` endpoint.
|
|
360
|
+
/// </summary>
|
|
361
|
+
/// <param name="sku"></param>
|
|
362
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
363
|
+
/// <returns>A promise containing the <see cref="GetProductResponse"/></returns>
|
|
364
|
+
Promise<GetProductResponse> GetGoogleplayProduct(string sku, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
365
|
+
/// <summary>
|
|
366
|
+
/// POST call to `/basic/payments/windows/purchase/fail` endpoint.
|
|
367
|
+
/// </summary>
|
|
368
|
+
/// <param name="gsReq">The <see cref="FailPurchaseRequest"/> instance to use for the request</param>
|
|
369
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
370
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
371
|
+
Promise<PaymentResultResponse> PostWindowsPurchaseFail(FailPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
372
|
+
/// <summary>
|
|
373
|
+
/// POST call to `/basic/payments/itunes/purchase/cancel` endpoint.
|
|
374
|
+
/// </summary>
|
|
375
|
+
/// <param name="gsReq">The <see cref="CancelPurchaseRequest"/> instance to use for the request</param>
|
|
376
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
377
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
378
|
+
Promise<PaymentResultResponse> PostItunesPurchaseCancel(CancelPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
379
|
+
/// <summary>
|
|
380
|
+
/// GET call to `/basic/payments/test/product` endpoint.
|
|
381
|
+
/// </summary>
|
|
382
|
+
/// <param name="sku"></param>
|
|
383
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
384
|
+
/// <returns>A promise containing the <see cref="GetProductResponse"/></returns>
|
|
385
|
+
Promise<GetProductResponse> GetTestProduct(string sku, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
386
|
+
/// <summary>
|
|
387
|
+
/// POST call to `/basic/payments/steam/purchase/verify` endpoint.
|
|
388
|
+
/// </summary>
|
|
389
|
+
/// <param name="gsReq">The <see cref="VerifyPurchaseRequest"/> instance to use for the request</param>
|
|
390
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
391
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
392
|
+
Promise<PaymentResultResponse> PostSteamPurchaseVerify(VerifyPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
393
|
+
/// <summary>
|
|
394
|
+
/// POST call to `/basic/payments/itunes/purchase/track` endpoint.
|
|
395
|
+
/// </summary>
|
|
396
|
+
/// <param name="gsReq">The <see cref="TrackPurchaseRequest"/> instance to use for the request</param>
|
|
397
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
398
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
399
|
+
Promise<PaymentResultResponse> PostItunesPurchaseTrack(TrackPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader);
|
|
400
|
+
}
|
|
401
|
+
public partial class PaymentsApi : IPaymentsApi
|
|
402
|
+
{
|
|
403
|
+
/// <summary>
|
|
404
|
+
/// POST call to `/basic/payments/windows/purchase/track` endpoint.
|
|
405
|
+
/// </summary>
|
|
406
|
+
/// <param name="gsReq">The <see cref="TrackPurchaseRequest"/> instance to use for the request</param>
|
|
407
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
408
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
409
|
+
public virtual Promise<PaymentResultResponse> PostWindowsPurchaseTrack(TrackPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
410
|
+
{
|
|
411
|
+
string gsUrl = "/basic/payments/windows/purchase/track";
|
|
412
|
+
// make the request and return the result
|
|
413
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
414
|
+
}
|
|
415
|
+
/// <summary>
|
|
416
|
+
/// GET call to `/basic/payments/audits` endpoint.
|
|
417
|
+
/// </summary>
|
|
418
|
+
/// <param name="limit"></param>
|
|
419
|
+
/// <param name="player"></param>
|
|
420
|
+
/// <param name="provider"></param>
|
|
421
|
+
/// <param name="providerid"></param>
|
|
422
|
+
/// <param name="start"></param>
|
|
423
|
+
/// <param name="state"></param>
|
|
424
|
+
/// <param name="txid"></param>
|
|
425
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
426
|
+
/// <returns>A promise containing the <see cref="ListAuditResponse"/></returns>
|
|
427
|
+
public virtual Promise<ListAuditResponse> GetAudits([System.Runtime.InteropServices.DefaultParameterValueAttribute(null)] [System.Runtime.InteropServices.OptionalAttribute()] Beamable.Common.Content.Optional<int> limit, [System.Runtime.InteropServices.DefaultParameterValueAttribute(null)] [System.Runtime.InteropServices.OptionalAttribute()] Beamable.Common.Content.Optional<long> player, [System.Runtime.InteropServices.DefaultParameterValueAttribute(null)] [System.Runtime.InteropServices.OptionalAttribute()] Beamable.Common.Content.Optional<string> provider, [System.Runtime.InteropServices.DefaultParameterValueAttribute(null)] [System.Runtime.InteropServices.OptionalAttribute()] Beamable.Common.Content.Optional<string> providerid, [System.Runtime.InteropServices.DefaultParameterValueAttribute(null)] [System.Runtime.InteropServices.OptionalAttribute()] Beamable.Common.Content.Optional<int> start, [System.Runtime.InteropServices.DefaultParameterValueAttribute(null)] [System.Runtime.InteropServices.OptionalAttribute()] Beamable.Common.Content.Optional<string> state, [System.Runtime.InteropServices.DefaultParameterValueAttribute(null)] [System.Runtime.InteropServices.OptionalAttribute()] Beamable.Common.Content.Optional<long> txid, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
428
|
+
{
|
|
429
|
+
string gsUrl = "/basic/payments/audits";
|
|
430
|
+
string gsQuery = "?";
|
|
431
|
+
System.Collections.Generic.List<string> gsQueries = new System.Collections.Generic.List<string>();
|
|
432
|
+
if (((providerid != default(OptionalString))
|
|
433
|
+
&& providerid.HasValue))
|
|
434
|
+
{
|
|
435
|
+
gsQueries.Add(string.Concat("providerid=", providerid.Value.ToString()));
|
|
436
|
+
}
|
|
437
|
+
if (((provider != default(OptionalString))
|
|
438
|
+
&& provider.HasValue))
|
|
439
|
+
{
|
|
440
|
+
gsQueries.Add(string.Concat("provider=", provider.Value.ToString()));
|
|
441
|
+
}
|
|
442
|
+
if (((state != default(OptionalString))
|
|
443
|
+
&& state.HasValue))
|
|
444
|
+
{
|
|
445
|
+
gsQueries.Add(string.Concat("state=", state.Value.ToString()));
|
|
446
|
+
}
|
|
447
|
+
if (((txid != default(OptionalLong))
|
|
448
|
+
&& txid.HasValue))
|
|
449
|
+
{
|
|
450
|
+
gsQueries.Add(string.Concat("txid=", txid.Value.ToString()));
|
|
451
|
+
}
|
|
452
|
+
if (((player != default(OptionalLong))
|
|
453
|
+
&& player.HasValue))
|
|
454
|
+
{
|
|
455
|
+
gsQueries.Add(string.Concat("player=", player.Value.ToString()));
|
|
456
|
+
}
|
|
457
|
+
if (((start != default(OptionalInt))
|
|
458
|
+
&& start.HasValue))
|
|
459
|
+
{
|
|
460
|
+
gsQueries.Add(string.Concat("start=", start.Value.ToString()));
|
|
461
|
+
}
|
|
462
|
+
if (((limit != default(OptionalInt))
|
|
463
|
+
&& limit.HasValue))
|
|
464
|
+
{
|
|
465
|
+
gsQueries.Add(string.Concat("limit=", limit.Value.ToString()));
|
|
466
|
+
}
|
|
467
|
+
if ((gsQueries.Count > 0))
|
|
468
|
+
{
|
|
469
|
+
gsQuery = string.Concat(gsQuery, string.Join("&", gsQueries));
|
|
470
|
+
gsUrl = string.Concat(gsUrl, gsQuery);
|
|
471
|
+
}
|
|
472
|
+
// make the request and return the result
|
|
473
|
+
return _requester.Request<ListAuditResponse>(Method.GET, gsUrl, default(object), includeAuthHeader, this.Serialize<ListAuditResponse>);
|
|
474
|
+
}
|
|
475
|
+
/// <summary>
|
|
476
|
+
/// POST call to `/basic/payments/windows/purchase/complete` endpoint.
|
|
477
|
+
/// </summary>
|
|
478
|
+
/// <param name="gsReq">The <see cref="CompletePurchaseRequest"/> instance to use for the request</param>
|
|
479
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
480
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
481
|
+
public virtual Promise<PaymentResultResponse> PostWindowsPurchaseComplete(CompletePurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
482
|
+
{
|
|
483
|
+
string gsUrl = "/basic/payments/windows/purchase/complete";
|
|
484
|
+
// make the request and return the result
|
|
485
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
486
|
+
}
|
|
487
|
+
/// <summary>
|
|
488
|
+
/// POST call to `/basic/payments/test/purchase/begin` endpoint.
|
|
489
|
+
/// </summary>
|
|
490
|
+
/// <param name="gsReq">The <see cref="BeginPurchaseRequest"/> instance to use for the request</param>
|
|
491
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
492
|
+
/// <returns>A promise containing the <see cref="BeginPurchaseResponse"/></returns>
|
|
493
|
+
public virtual Promise<BeginPurchaseResponse> PostTestPurchaseBegin(BeginPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
494
|
+
{
|
|
495
|
+
string gsUrl = "/basic/payments/test/purchase/begin";
|
|
496
|
+
// make the request and return the result
|
|
497
|
+
return _requester.Request<BeginPurchaseResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<BeginPurchaseResponse>);
|
|
498
|
+
}
|
|
499
|
+
/// <summary>
|
|
500
|
+
/// POST call to `/basic/payments/steam/purchase/fail` endpoint.
|
|
501
|
+
/// </summary>
|
|
502
|
+
/// <param name="gsReq">The <see cref="FailPurchaseRequest"/> instance to use for the request</param>
|
|
503
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
504
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
505
|
+
public virtual Promise<PaymentResultResponse> PostSteamPurchaseFail(FailPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
506
|
+
{
|
|
507
|
+
string gsUrl = "/basic/payments/steam/purchase/fail";
|
|
508
|
+
// make the request and return the result
|
|
509
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
510
|
+
}
|
|
511
|
+
/// <summary>
|
|
512
|
+
/// POST call to `/basic/payments/facebook/purchase/complete` endpoint.
|
|
513
|
+
/// </summary>
|
|
514
|
+
/// <param name="gsReq">The <see cref="CompletePurchaseRequest"/> instance to use for the request</param>
|
|
515
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
516
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
517
|
+
public virtual Promise<PaymentResultResponse> PostFacebookPurchaseComplete(CompletePurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
518
|
+
{
|
|
519
|
+
string gsUrl = "/basic/payments/facebook/purchase/complete";
|
|
520
|
+
// make the request and return the result
|
|
521
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
522
|
+
}
|
|
523
|
+
/// <summary>
|
|
524
|
+
/// POST call to `/basic/payments/facebook/purchase/fail` endpoint.
|
|
525
|
+
/// </summary>
|
|
526
|
+
/// <param name="gsReq">The <see cref="FailPurchaseRequest"/> instance to use for the request</param>
|
|
527
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
528
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
529
|
+
public virtual Promise<PaymentResultResponse> PostFacebookPurchaseFail(FailPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
530
|
+
{
|
|
531
|
+
string gsUrl = "/basic/payments/facebook/purchase/fail";
|
|
532
|
+
// make the request and return the result
|
|
533
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
534
|
+
}
|
|
535
|
+
/// <summary>
|
|
536
|
+
/// POST call to `/basic/payments/test/purchase/complete` endpoint.
|
|
537
|
+
/// </summary>
|
|
538
|
+
/// <param name="gsReq">The <see cref="CompletePurchaseRequest"/> instance to use for the request</param>
|
|
539
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
540
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
541
|
+
public virtual Promise<PaymentResultResponse> PostTestPurchaseComplete(CompletePurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
542
|
+
{
|
|
543
|
+
string gsUrl = "/basic/payments/test/purchase/complete";
|
|
544
|
+
// make the request and return the result
|
|
545
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
546
|
+
}
|
|
547
|
+
/// <summary>
|
|
548
|
+
/// GET call to `/basic/payments/itunes/product` endpoint.
|
|
549
|
+
/// </summary>
|
|
550
|
+
/// <param name="sku"></param>
|
|
551
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
552
|
+
/// <returns>A promise containing the <see cref="GetProductResponse"/></returns>
|
|
553
|
+
public virtual Promise<GetProductResponse> GetItunesProduct(string sku, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
554
|
+
{
|
|
555
|
+
string gsUrl = "/basic/payments/itunes/product";
|
|
556
|
+
string gsQuery = "?";
|
|
557
|
+
System.Collections.Generic.List<string> gsQueries = new System.Collections.Generic.List<string>();
|
|
558
|
+
gsQueries.Add(string.Concat("sku=", _requester.EscapeURL(sku.ToString())));
|
|
559
|
+
if ((gsQueries.Count > 0))
|
|
560
|
+
{
|
|
561
|
+
gsQuery = string.Concat(gsQuery, string.Join("&", gsQueries));
|
|
562
|
+
gsUrl = string.Concat(gsUrl, gsQuery);
|
|
563
|
+
}
|
|
564
|
+
// make the request and return the result
|
|
565
|
+
return _requester.Request<GetProductResponse>(Method.GET, gsUrl, default(object), includeAuthHeader, this.Serialize<GetProductResponse>);
|
|
566
|
+
}
|
|
567
|
+
/// <summary>
|
|
568
|
+
/// POST call to `/basic/payments/googleplay/purchase/complete` endpoint.
|
|
569
|
+
/// </summary>
|
|
570
|
+
/// <param name="gsReq">The <see cref="CompletePurchaseRequest"/> instance to use for the request</param>
|
|
571
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
572
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
573
|
+
public virtual Promise<PaymentResultResponse> PostGoogleplayPurchaseComplete(CompletePurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
574
|
+
{
|
|
575
|
+
string gsUrl = "/basic/payments/googleplay/purchase/complete";
|
|
576
|
+
// make the request and return the result
|
|
577
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
578
|
+
}
|
|
579
|
+
/// <summary>
|
|
580
|
+
/// POST call to `/basic/payments/test/purchase/track` endpoint.
|
|
581
|
+
/// </summary>
|
|
582
|
+
/// <param name="gsReq">The <see cref="TrackPurchaseRequest"/> instance to use for the request</param>
|
|
583
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
584
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
585
|
+
public virtual Promise<PaymentResultResponse> PostTestPurchaseTrack(TrackPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
586
|
+
{
|
|
587
|
+
string gsUrl = "/basic/payments/test/purchase/track";
|
|
588
|
+
// make the request and return the result
|
|
589
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
590
|
+
}
|
|
591
|
+
/// <summary>
|
|
592
|
+
/// POST call to `/basic/payments/googleplay/purchase/begin` endpoint.
|
|
593
|
+
/// </summary>
|
|
594
|
+
/// <param name="gsReq">The <see cref="BeginPurchaseRequest"/> instance to use for the request</param>
|
|
595
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
596
|
+
/// <returns>A promise containing the <see cref="BeginPurchaseResponse"/></returns>
|
|
597
|
+
public virtual Promise<BeginPurchaseResponse> PostGoogleplayPurchaseBegin(BeginPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
598
|
+
{
|
|
599
|
+
string gsUrl = "/basic/payments/googleplay/purchase/begin";
|
|
600
|
+
// make the request and return the result
|
|
601
|
+
return _requester.Request<BeginPurchaseResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<BeginPurchaseResponse>);
|
|
602
|
+
}
|
|
603
|
+
/// <summary>
|
|
604
|
+
/// POST call to `/basic/payments/itunes/purchase/begin` endpoint.
|
|
605
|
+
/// </summary>
|
|
606
|
+
/// <param name="gsReq">The <see cref="BeginPurchaseRequest"/> instance to use for the request</param>
|
|
607
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
608
|
+
/// <returns>A promise containing the <see cref="BeginPurchaseResponse"/></returns>
|
|
609
|
+
public virtual Promise<BeginPurchaseResponse> PostItunesPurchaseBegin(BeginPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
610
|
+
{
|
|
611
|
+
string gsUrl = "/basic/payments/itunes/purchase/begin";
|
|
612
|
+
// make the request and return the result
|
|
613
|
+
return _requester.Request<BeginPurchaseResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<BeginPurchaseResponse>);
|
|
614
|
+
}
|
|
615
|
+
/// <summary>
|
|
616
|
+
/// POST call to `/basic/payments/googleplay/purchase/verify` endpoint.
|
|
617
|
+
/// </summary>
|
|
618
|
+
/// <param name="gsReq">The <see cref="VerifyPurchaseRequest"/> instance to use for the request</param>
|
|
619
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
620
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
621
|
+
public virtual Promise<PaymentResultResponse> PostGoogleplayPurchaseVerify(VerifyPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
622
|
+
{
|
|
623
|
+
string gsUrl = "/basic/payments/googleplay/purchase/verify";
|
|
624
|
+
// make the request and return the result
|
|
625
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
626
|
+
}
|
|
627
|
+
/// <summary>
|
|
628
|
+
/// POST call to `/basic/payments/facebook/purchase/cancel` endpoint.
|
|
629
|
+
/// </summary>
|
|
630
|
+
/// <param name="gsReq">The <see cref="CancelPurchaseRequest"/> instance to use for the request</param>
|
|
631
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
632
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
633
|
+
public virtual Promise<PaymentResultResponse> PostFacebookPurchaseCancel(CancelPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
634
|
+
{
|
|
635
|
+
string gsUrl = "/basic/payments/facebook/purchase/cancel";
|
|
636
|
+
// make the request and return the result
|
|
637
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
638
|
+
}
|
|
639
|
+
/// <summary>
|
|
640
|
+
/// POST call to `/basic/payments/coupon/purchase/track` endpoint.
|
|
641
|
+
/// </summary>
|
|
642
|
+
/// <param name="gsReq">The <see cref="TrackPurchaseRequest"/> instance to use for the request</param>
|
|
643
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
644
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
645
|
+
public virtual Promise<PaymentResultResponse> PostCouponPurchaseTrack(TrackPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
646
|
+
{
|
|
647
|
+
string gsUrl = "/basic/payments/coupon/purchase/track";
|
|
648
|
+
// make the request and return the result
|
|
649
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
650
|
+
}
|
|
651
|
+
/// <summary>
|
|
652
|
+
/// POST call to `/basic/payments/steam/purchase/complete` endpoint.
|
|
653
|
+
/// </summary>
|
|
654
|
+
/// <param name="gsReq">The <see cref="CompletePurchaseRequest"/> instance to use for the request</param>
|
|
655
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
656
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
657
|
+
public virtual Promise<PaymentResultResponse> PostSteamPurchaseComplete(CompletePurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
658
|
+
{
|
|
659
|
+
string gsUrl = "/basic/payments/steam/purchase/complete";
|
|
660
|
+
// make the request and return the result
|
|
661
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
662
|
+
}
|
|
663
|
+
/// <summary>
|
|
664
|
+
/// POST call to `/basic/payments/facebook/purchase/track` endpoint.
|
|
665
|
+
/// </summary>
|
|
666
|
+
/// <param name="gsReq">The <see cref="TrackPurchaseRequest"/> instance to use for the request</param>
|
|
667
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
668
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
669
|
+
public virtual Promise<PaymentResultResponse> PostFacebookPurchaseTrack(TrackPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
670
|
+
{
|
|
671
|
+
string gsUrl = "/basic/payments/facebook/purchase/track";
|
|
672
|
+
// make the request and return the result
|
|
673
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
674
|
+
}
|
|
675
|
+
/// <summary>
|
|
676
|
+
/// POST call to `/basic/payments/itunes/purchase/fail` endpoint.
|
|
677
|
+
/// </summary>
|
|
678
|
+
/// <param name="gsReq">The <see cref="FailPurchaseRequest"/> instance to use for the request</param>
|
|
679
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
680
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
681
|
+
public virtual Promise<PaymentResultResponse> PostItunesPurchaseFail(FailPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
682
|
+
{
|
|
683
|
+
string gsUrl = "/basic/payments/itunes/purchase/fail";
|
|
684
|
+
// make the request and return the result
|
|
685
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
686
|
+
}
|
|
687
|
+
/// <summary>
|
|
688
|
+
/// POST call to `/basic/payments/test/purchase/verify` endpoint.
|
|
689
|
+
/// </summary>
|
|
690
|
+
/// <param name="gsReq">The <see cref="VerifyPurchaseRequest"/> instance to use for the request</param>
|
|
691
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
692
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
693
|
+
public virtual Promise<PaymentResultResponse> PostTestPurchaseVerify(VerifyPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
694
|
+
{
|
|
695
|
+
string gsUrl = "/basic/payments/test/purchase/verify";
|
|
696
|
+
// make the request and return the result
|
|
697
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
698
|
+
}
|
|
699
|
+
/// <summary>
|
|
700
|
+
/// POST call to `/basic/payments/test/purchase/cancel` endpoint.
|
|
701
|
+
/// </summary>
|
|
702
|
+
/// <param name="gsReq">The <see cref="CancelPurchaseRequest"/> instance to use for the request</param>
|
|
703
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
704
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
705
|
+
public virtual Promise<PaymentResultResponse> PostTestPurchaseCancel(CancelPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
706
|
+
{
|
|
707
|
+
string gsUrl = "/basic/payments/test/purchase/cancel";
|
|
708
|
+
// make the request and return the result
|
|
709
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
710
|
+
}
|
|
711
|
+
/// <summary>
|
|
712
|
+
/// POST call to `/basic/payments/googleplay/purchase/track` endpoint.
|
|
713
|
+
/// </summary>
|
|
714
|
+
/// <param name="gsReq">The <see cref="TrackPurchaseRequest"/> instance to use for the request</param>
|
|
715
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
716
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
717
|
+
public virtual Promise<PaymentResultResponse> PostGoogleplayPurchaseTrack(TrackPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
718
|
+
{
|
|
719
|
+
string gsUrl = "/basic/payments/googleplay/purchase/track";
|
|
720
|
+
// make the request and return the result
|
|
721
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
722
|
+
}
|
|
723
|
+
/// <summary>
|
|
724
|
+
/// GET call to `/basic/payments/steam/prices` endpoint.
|
|
725
|
+
/// </summary>
|
|
726
|
+
/// <param name="steamId"></param>
|
|
727
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
728
|
+
/// <returns>A promise containing the <see cref="LocalizedPriceMap"/></returns>
|
|
729
|
+
public virtual Promise<LocalizedPriceMap> GetSteamPrices(long steamId, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
730
|
+
{
|
|
731
|
+
string gsUrl = "/basic/payments/steam/prices";
|
|
732
|
+
string gsQuery = "?";
|
|
733
|
+
System.Collections.Generic.List<string> gsQueries = new System.Collections.Generic.List<string>();
|
|
734
|
+
gsQueries.Add(string.Concat("steamId=", _requester.EscapeURL(steamId.ToString())));
|
|
735
|
+
if ((gsQueries.Count > 0))
|
|
736
|
+
{
|
|
737
|
+
gsQuery = string.Concat(gsQuery, string.Join("&", gsQueries));
|
|
738
|
+
gsUrl = string.Concat(gsUrl, gsQuery);
|
|
739
|
+
}
|
|
740
|
+
// make the request and return the result
|
|
741
|
+
return _requester.Request<LocalizedPriceMap>(Method.GET, gsUrl, default(object), includeAuthHeader, this.Serialize<LocalizedPriceMap>);
|
|
742
|
+
}
|
|
743
|
+
/// <summary>
|
|
744
|
+
/// POST call to `/basic/payments/windows/purchase/verify` endpoint.
|
|
745
|
+
/// </summary>
|
|
746
|
+
/// <param name="gsReq">The <see cref="VerifyPurchaseRequest"/> instance to use for the request</param>
|
|
747
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
748
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
749
|
+
public virtual Promise<PaymentResultResponse> PostWindowsPurchaseVerify(VerifyPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
750
|
+
{
|
|
751
|
+
string gsUrl = "/basic/payments/windows/purchase/verify";
|
|
752
|
+
// make the request and return the result
|
|
753
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
754
|
+
}
|
|
755
|
+
/// <summary>
|
|
756
|
+
/// POST call to `/basic/payments/test/purchase/fail` endpoint.
|
|
757
|
+
/// </summary>
|
|
758
|
+
/// <param name="gsReq">The <see cref="FailPurchaseRequest"/> instance to use for the request</param>
|
|
759
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
760
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
761
|
+
public virtual Promise<PaymentResultResponse> PostTestPurchaseFail(FailPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
762
|
+
{
|
|
763
|
+
string gsUrl = "/basic/payments/test/purchase/fail";
|
|
764
|
+
// make the request and return the result
|
|
765
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
766
|
+
}
|
|
767
|
+
/// <summary>
|
|
768
|
+
/// POST call to `/basic/payments/coupon/purchase/cancel` endpoint.
|
|
769
|
+
/// </summary>
|
|
770
|
+
/// <param name="gsReq">The <see cref="CancelPurchaseRequest"/> instance to use for the request</param>
|
|
771
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
772
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
773
|
+
public virtual Promise<PaymentResultResponse> PostCouponPurchaseCancel(CancelPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
774
|
+
{
|
|
775
|
+
string gsUrl = "/basic/payments/coupon/purchase/cancel";
|
|
776
|
+
// make the request and return the result
|
|
777
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
778
|
+
}
|
|
779
|
+
/// <summary>
|
|
780
|
+
/// POST call to `/basic/payments/itunes/purchase/verify` endpoint.
|
|
781
|
+
/// </summary>
|
|
782
|
+
/// <param name="gsReq">The <see cref="VerifyPurchaseRequest"/> instance to use for the request</param>
|
|
783
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
784
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
785
|
+
public virtual Promise<PaymentResultResponse> PostItunesPurchaseVerify(VerifyPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
786
|
+
{
|
|
787
|
+
string gsUrl = "/basic/payments/itunes/purchase/verify";
|
|
788
|
+
// make the request and return the result
|
|
789
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
790
|
+
}
|
|
791
|
+
/// <summary>
|
|
792
|
+
/// POST call to `/basic/payments/itunes/purchase/complete` endpoint.
|
|
793
|
+
/// </summary>
|
|
794
|
+
/// <param name="gsReq">The <see cref="CompletePurchaseRequest"/> instance to use for the request</param>
|
|
795
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
796
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
797
|
+
public virtual Promise<PaymentResultResponse> PostItunesPurchaseComplete(CompletePurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
798
|
+
{
|
|
799
|
+
string gsUrl = "/basic/payments/itunes/purchase/complete";
|
|
800
|
+
// make the request and return the result
|
|
801
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
802
|
+
}
|
|
803
|
+
/// <summary>
|
|
804
|
+
/// POST call to `/basic/payments/coupon/purchase/begin` endpoint.
|
|
805
|
+
/// </summary>
|
|
806
|
+
/// <param name="gsReq">The <see cref="BeginPurchaseRequest"/> instance to use for the request</param>
|
|
807
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
808
|
+
/// <returns>A promise containing the <see cref="BeginPurchaseResponse"/></returns>
|
|
809
|
+
public virtual Promise<BeginPurchaseResponse> PostCouponPurchaseBegin(BeginPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
810
|
+
{
|
|
811
|
+
string gsUrl = "/basic/payments/coupon/purchase/begin";
|
|
812
|
+
// make the request and return the result
|
|
813
|
+
return _requester.Request<BeginPurchaseResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<BeginPurchaseResponse>);
|
|
814
|
+
}
|
|
815
|
+
/// <summary>
|
|
816
|
+
/// POST call to `/basic/payments/facebook/purchase/verify` endpoint.
|
|
817
|
+
/// </summary>
|
|
818
|
+
/// <param name="gsReq">The <see cref="VerifyPurchaseRequest"/> instance to use for the request</param>
|
|
819
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
820
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
821
|
+
public virtual Promise<PaymentResultResponse> PostFacebookPurchaseVerify(VerifyPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
822
|
+
{
|
|
823
|
+
string gsUrl = "/basic/payments/facebook/purchase/verify";
|
|
824
|
+
// make the request and return the result
|
|
825
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
826
|
+
}
|
|
827
|
+
/// <summary>
|
|
828
|
+
/// POST call to `/basic/payments/steam/purchase/track` endpoint.
|
|
829
|
+
/// </summary>
|
|
830
|
+
/// <param name="gsReq">The <see cref="TrackPurchaseRequest"/> instance to use for the request</param>
|
|
831
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
832
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
833
|
+
public virtual Promise<PaymentResultResponse> PostSteamPurchaseTrack(TrackPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
834
|
+
{
|
|
835
|
+
string gsUrl = "/basic/payments/steam/purchase/track";
|
|
836
|
+
// make the request and return the result
|
|
837
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
838
|
+
}
|
|
839
|
+
/// <summary>
|
|
840
|
+
/// POST call to `/basic/payments/facebook/purchase/begin` endpoint.
|
|
841
|
+
/// </summary>
|
|
842
|
+
/// <param name="gsReq">The <see cref="BeginPurchaseRequest"/> instance to use for the request</param>
|
|
843
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
844
|
+
/// <returns>A promise containing the <see cref="BeginPurchaseResponse"/></returns>
|
|
845
|
+
public virtual Promise<BeginPurchaseResponse> PostFacebookPurchaseBegin(BeginPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
846
|
+
{
|
|
847
|
+
string gsUrl = "/basic/payments/facebook/purchase/begin";
|
|
848
|
+
// make the request and return the result
|
|
849
|
+
return _requester.Request<BeginPurchaseResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<BeginPurchaseResponse>);
|
|
850
|
+
}
|
|
851
|
+
/// <summary>
|
|
852
|
+
/// GET call to `/basic/payments/steam/order` endpoint.
|
|
853
|
+
/// </summary>
|
|
854
|
+
/// <param name="orderId"></param>
|
|
855
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
856
|
+
/// <returns>A promise containing the <see cref="SteamOrderInfoResponse"/></returns>
|
|
857
|
+
public virtual Promise<SteamOrderInfoResponse> GetSteamOrder(string orderId, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
858
|
+
{
|
|
859
|
+
string gsUrl = "/basic/payments/steam/order";
|
|
860
|
+
string gsQuery = "?";
|
|
861
|
+
System.Collections.Generic.List<string> gsQueries = new System.Collections.Generic.List<string>();
|
|
862
|
+
gsQueries.Add(string.Concat("orderId=", _requester.EscapeURL(orderId.ToString())));
|
|
863
|
+
if ((gsQueries.Count > 0))
|
|
864
|
+
{
|
|
865
|
+
gsQuery = string.Concat(gsQuery, string.Join("&", gsQueries));
|
|
866
|
+
gsUrl = string.Concat(gsUrl, gsQuery);
|
|
867
|
+
}
|
|
868
|
+
// make the request and return the result
|
|
869
|
+
return _requester.Request<SteamOrderInfoResponse>(Method.GET, gsUrl, default(object), includeAuthHeader, this.Serialize<SteamOrderInfoResponse>);
|
|
870
|
+
}
|
|
871
|
+
/// <summary>
|
|
872
|
+
/// POST call to `/basic/payments/coupon/purchase/verify` endpoint.
|
|
873
|
+
/// </summary>
|
|
874
|
+
/// <param name="gsReq">The <see cref="VerifyPurchaseRequest"/> instance to use for the request</param>
|
|
875
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
876
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
877
|
+
public virtual Promise<PaymentResultResponse> PostCouponPurchaseVerify(VerifyPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
878
|
+
{
|
|
879
|
+
string gsUrl = "/basic/payments/coupon/purchase/verify";
|
|
880
|
+
// make the request and return the result
|
|
881
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
882
|
+
}
|
|
883
|
+
/// <summary>
|
|
884
|
+
/// POST call to `/basic/payments/windows/purchase/begin` endpoint.
|
|
885
|
+
/// </summary>
|
|
886
|
+
/// <param name="gsReq">The <see cref="BeginPurchaseRequest"/> instance to use for the request</param>
|
|
887
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
888
|
+
/// <returns>A promise containing the <see cref="BeginPurchaseResponse"/></returns>
|
|
889
|
+
public virtual Promise<BeginPurchaseResponse> PostWindowsPurchaseBegin(BeginPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
890
|
+
{
|
|
891
|
+
string gsUrl = "/basic/payments/windows/purchase/begin";
|
|
892
|
+
// make the request and return the result
|
|
893
|
+
return _requester.Request<BeginPurchaseResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<BeginPurchaseResponse>);
|
|
894
|
+
}
|
|
895
|
+
/// <summary>
|
|
896
|
+
/// GET call to `/basic/payments/windows/product` endpoint.
|
|
897
|
+
/// </summary>
|
|
898
|
+
/// <param name="sku"></param>
|
|
899
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
900
|
+
/// <returns>A promise containing the <see cref="GetProductResponse"/></returns>
|
|
901
|
+
public virtual Promise<GetProductResponse> GetWindowsProduct(string sku, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
902
|
+
{
|
|
903
|
+
string gsUrl = "/basic/payments/windows/product";
|
|
904
|
+
string gsQuery = "?";
|
|
905
|
+
System.Collections.Generic.List<string> gsQueries = new System.Collections.Generic.List<string>();
|
|
906
|
+
gsQueries.Add(string.Concat("sku=", _requester.EscapeURL(sku.ToString())));
|
|
907
|
+
if ((gsQueries.Count > 0))
|
|
908
|
+
{
|
|
909
|
+
gsQuery = string.Concat(gsQuery, string.Join("&", gsQueries));
|
|
910
|
+
gsUrl = string.Concat(gsUrl, gsQuery);
|
|
911
|
+
}
|
|
912
|
+
// make the request and return the result
|
|
913
|
+
return _requester.Request<GetProductResponse>(Method.GET, gsUrl, default(object), includeAuthHeader, this.Serialize<GetProductResponse>);
|
|
914
|
+
}
|
|
915
|
+
/// <summary>
|
|
916
|
+
/// POST call to `/basic/payments/googleplay/purchase/fail` endpoint.
|
|
917
|
+
/// </summary>
|
|
918
|
+
/// <param name="gsReq">The <see cref="FailPurchaseRequest"/> instance to use for the request</param>
|
|
919
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
920
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
921
|
+
public virtual Promise<PaymentResultResponse> PostGoogleplayPurchaseFail(FailPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
922
|
+
{
|
|
923
|
+
string gsUrl = "/basic/payments/googleplay/purchase/fail";
|
|
924
|
+
// make the request and return the result
|
|
925
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
926
|
+
}
|
|
927
|
+
/// <summary>
|
|
928
|
+
/// GET call to `/basic/payments/facebook/product` endpoint.
|
|
929
|
+
/// </summary>
|
|
930
|
+
/// <param name="sku"></param>
|
|
931
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
932
|
+
/// <returns>A promise containing the <see cref="GetProductResponse"/></returns>
|
|
933
|
+
public virtual Promise<GetProductResponse> GetFacebookProduct(string sku, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
934
|
+
{
|
|
935
|
+
string gsUrl = "/basic/payments/facebook/product";
|
|
936
|
+
string gsQuery = "?";
|
|
937
|
+
System.Collections.Generic.List<string> gsQueries = new System.Collections.Generic.List<string>();
|
|
938
|
+
gsQueries.Add(string.Concat("sku=", _requester.EscapeURL(sku.ToString())));
|
|
939
|
+
if ((gsQueries.Count > 0))
|
|
940
|
+
{
|
|
941
|
+
gsQuery = string.Concat(gsQuery, string.Join("&", gsQueries));
|
|
942
|
+
gsUrl = string.Concat(gsUrl, gsQuery);
|
|
943
|
+
}
|
|
944
|
+
// make the request and return the result
|
|
945
|
+
return _requester.Request<GetProductResponse>(Method.GET, gsUrl, default(object), includeAuthHeader, this.Serialize<GetProductResponse>);
|
|
946
|
+
}
|
|
947
|
+
/// <summary>
|
|
948
|
+
/// POST call to `/basic/payments/googleplay/purchase/cancel` endpoint.
|
|
949
|
+
/// </summary>
|
|
950
|
+
/// <param name="gsReq">The <see cref="CancelPurchaseRequest"/> instance to use for the request</param>
|
|
951
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
952
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
953
|
+
public virtual Promise<PaymentResultResponse> PostGoogleplayPurchaseCancel(CancelPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
954
|
+
{
|
|
955
|
+
string gsUrl = "/basic/payments/googleplay/purchase/cancel";
|
|
956
|
+
// make the request and return the result
|
|
957
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
958
|
+
}
|
|
959
|
+
/// <summary>
|
|
960
|
+
/// GET call to `/basic/payments/coupon/product` endpoint.
|
|
961
|
+
/// </summary>
|
|
962
|
+
/// <param name="sku"></param>
|
|
963
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
964
|
+
/// <returns>A promise containing the <see cref="GetProductResponse"/></returns>
|
|
965
|
+
public virtual Promise<GetProductResponse> GetCouponProduct(string sku, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
966
|
+
{
|
|
967
|
+
string gsUrl = "/basic/payments/coupon/product";
|
|
968
|
+
string gsQuery = "?";
|
|
969
|
+
System.Collections.Generic.List<string> gsQueries = new System.Collections.Generic.List<string>();
|
|
970
|
+
gsQueries.Add(string.Concat("sku=", _requester.EscapeURL(sku.ToString())));
|
|
971
|
+
if ((gsQueries.Count > 0))
|
|
972
|
+
{
|
|
973
|
+
gsQuery = string.Concat(gsQuery, string.Join("&", gsQueries));
|
|
974
|
+
gsUrl = string.Concat(gsUrl, gsQuery);
|
|
975
|
+
}
|
|
976
|
+
// make the request and return the result
|
|
977
|
+
return _requester.Request<GetProductResponse>(Method.GET, gsUrl, default(object), includeAuthHeader, this.Serialize<GetProductResponse>);
|
|
978
|
+
}
|
|
979
|
+
/// <summary>
|
|
980
|
+
/// POST call to `/basic/payments/coupon/purchase/fail` endpoint.
|
|
981
|
+
/// </summary>
|
|
982
|
+
/// <param name="gsReq">The <see cref="FailPurchaseRequest"/> instance to use for the request</param>
|
|
983
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
984
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
985
|
+
public virtual Promise<PaymentResultResponse> PostCouponPurchaseFail(FailPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
986
|
+
{
|
|
987
|
+
string gsUrl = "/basic/payments/coupon/purchase/fail";
|
|
988
|
+
// make the request and return the result
|
|
989
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
990
|
+
}
|
|
991
|
+
/// <summary>
|
|
992
|
+
/// POST call to `/basic/payments/steam/purchase/begin` endpoint.
|
|
993
|
+
/// </summary>
|
|
994
|
+
/// <param name="gsReq">The <see cref="BeginPurchaseRequest"/> instance to use for the request</param>
|
|
995
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
996
|
+
/// <returns>A promise containing the <see cref="BeginPurchaseResponse"/></returns>
|
|
997
|
+
public virtual Promise<BeginPurchaseResponse> PostSteamPurchaseBegin(BeginPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
998
|
+
{
|
|
999
|
+
string gsUrl = "/basic/payments/steam/purchase/begin";
|
|
1000
|
+
// make the request and return the result
|
|
1001
|
+
return _requester.Request<BeginPurchaseResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<BeginPurchaseResponse>);
|
|
1002
|
+
}
|
|
1003
|
+
/// <summary>
|
|
1004
|
+
/// GET call to `/basic/payments/steam/products` endpoint.
|
|
1005
|
+
/// </summary>
|
|
1006
|
+
/// <param name="steamId"></param>
|
|
1007
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
1008
|
+
/// <returns>A promise containing the <see cref="GetProductsResponse"/></returns>
|
|
1009
|
+
public virtual Promise<GetProductsResponse> GetSteamProducts(long steamId, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
1010
|
+
{
|
|
1011
|
+
string gsUrl = "/basic/payments/steam/products";
|
|
1012
|
+
string gsQuery = "?";
|
|
1013
|
+
System.Collections.Generic.List<string> gsQueries = new System.Collections.Generic.List<string>();
|
|
1014
|
+
gsQueries.Add(string.Concat("steamId=", _requester.EscapeURL(steamId.ToString())));
|
|
1015
|
+
if ((gsQueries.Count > 0))
|
|
1016
|
+
{
|
|
1017
|
+
gsQuery = string.Concat(gsQuery, string.Join("&", gsQueries));
|
|
1018
|
+
gsUrl = string.Concat(gsUrl, gsQuery);
|
|
1019
|
+
}
|
|
1020
|
+
// make the request and return the result
|
|
1021
|
+
return _requester.Request<GetProductsResponse>(Method.GET, gsUrl, default(object), includeAuthHeader, this.Serialize<GetProductsResponse>);
|
|
1022
|
+
}
|
|
1023
|
+
/// <summary>
|
|
1024
|
+
/// POST call to `/basic/payments/steam/purchase/cancel` endpoint.
|
|
1025
|
+
/// </summary>
|
|
1026
|
+
/// <param name="gsReq">The <see cref="CancelPurchaseRequest"/> instance to use for the request</param>
|
|
1027
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
1028
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
1029
|
+
public virtual Promise<PaymentResultResponse> PostSteamPurchaseCancel(CancelPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
1030
|
+
{
|
|
1031
|
+
string gsUrl = "/basic/payments/steam/purchase/cancel";
|
|
1032
|
+
// make the request and return the result
|
|
1033
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
1034
|
+
}
|
|
1035
|
+
/// <summary>
|
|
1036
|
+
/// POST call to `/basic/payments/steam/auth` endpoint.
|
|
1037
|
+
/// </summary>
|
|
1038
|
+
/// <param name="gsReq">The <see cref="SteamAuthRequest"/> instance to use for the request</param>
|
|
1039
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
1040
|
+
/// <returns>A promise containing the <see cref="EmptyResponse"/></returns>
|
|
1041
|
+
public virtual Promise<EmptyResponse> PostSteamAuth(SteamAuthRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
1042
|
+
{
|
|
1043
|
+
string gsUrl = "/basic/payments/steam/auth";
|
|
1044
|
+
// make the request and return the result
|
|
1045
|
+
return _requester.Request<EmptyResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<EmptyResponse>);
|
|
1046
|
+
}
|
|
1047
|
+
/// <summary>
|
|
1048
|
+
/// GET call to `/basic/payments/steam/product` endpoint.
|
|
1049
|
+
/// </summary>
|
|
1050
|
+
/// <param name="sku"></param>
|
|
1051
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
1052
|
+
/// <returns>A promise containing the <see cref="GetProductResponse"/></returns>
|
|
1053
|
+
public virtual Promise<GetProductResponse> GetSteamProduct(string sku, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
1054
|
+
{
|
|
1055
|
+
string gsUrl = "/basic/payments/steam/product";
|
|
1056
|
+
string gsQuery = "?";
|
|
1057
|
+
System.Collections.Generic.List<string> gsQueries = new System.Collections.Generic.List<string>();
|
|
1058
|
+
gsQueries.Add(string.Concat("sku=", _requester.EscapeURL(sku.ToString())));
|
|
1059
|
+
if ((gsQueries.Count > 0))
|
|
1060
|
+
{
|
|
1061
|
+
gsQuery = string.Concat(gsQuery, string.Join("&", gsQueries));
|
|
1062
|
+
gsUrl = string.Concat(gsUrl, gsQuery);
|
|
1063
|
+
}
|
|
1064
|
+
// make the request and return the result
|
|
1065
|
+
return _requester.Request<GetProductResponse>(Method.GET, gsUrl, default(object), includeAuthHeader, this.Serialize<GetProductResponse>);
|
|
1066
|
+
}
|
|
1067
|
+
/// <summary>
|
|
1068
|
+
/// POST call to `/basic/payments/coupon/purchase/complete` endpoint.
|
|
1069
|
+
/// </summary>
|
|
1070
|
+
/// <param name="gsReq">The <see cref="CompletePurchaseRequest"/> instance to use for the request</param>
|
|
1071
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
1072
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
1073
|
+
public virtual Promise<PaymentResultResponse> PostCouponPurchaseComplete(CompletePurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
1074
|
+
{
|
|
1075
|
+
string gsUrl = "/basic/payments/coupon/purchase/complete";
|
|
1076
|
+
// make the request and return the result
|
|
1077
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
1078
|
+
}
|
|
1079
|
+
/// <summary>
|
|
1080
|
+
/// POST call to `/basic/payments/windows/purchase/cancel` endpoint.
|
|
1081
|
+
/// </summary>
|
|
1082
|
+
/// <param name="gsReq">The <see cref="CancelPurchaseRequest"/> instance to use for the request</param>
|
|
1083
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
1084
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
1085
|
+
public virtual Promise<PaymentResultResponse> PostWindowsPurchaseCancel(CancelPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
1086
|
+
{
|
|
1087
|
+
string gsUrl = "/basic/payments/windows/purchase/cancel";
|
|
1088
|
+
// make the request and return the result
|
|
1089
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
1090
|
+
}
|
|
1091
|
+
/// <summary>
|
|
1092
|
+
/// GET call to `/basic/payments/googleplay/product` endpoint.
|
|
1093
|
+
/// </summary>
|
|
1094
|
+
/// <param name="sku"></param>
|
|
1095
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
1096
|
+
/// <returns>A promise containing the <see cref="GetProductResponse"/></returns>
|
|
1097
|
+
public virtual Promise<GetProductResponse> GetGoogleplayProduct(string sku, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
1098
|
+
{
|
|
1099
|
+
string gsUrl = "/basic/payments/googleplay/product";
|
|
1100
|
+
string gsQuery = "?";
|
|
1101
|
+
System.Collections.Generic.List<string> gsQueries = new System.Collections.Generic.List<string>();
|
|
1102
|
+
gsQueries.Add(string.Concat("sku=", _requester.EscapeURL(sku.ToString())));
|
|
1103
|
+
if ((gsQueries.Count > 0))
|
|
1104
|
+
{
|
|
1105
|
+
gsQuery = string.Concat(gsQuery, string.Join("&", gsQueries));
|
|
1106
|
+
gsUrl = string.Concat(gsUrl, gsQuery);
|
|
1107
|
+
}
|
|
1108
|
+
// make the request and return the result
|
|
1109
|
+
return _requester.Request<GetProductResponse>(Method.GET, gsUrl, default(object), includeAuthHeader, this.Serialize<GetProductResponse>);
|
|
1110
|
+
}
|
|
1111
|
+
/// <summary>
|
|
1112
|
+
/// POST call to `/basic/payments/windows/purchase/fail` endpoint.
|
|
1113
|
+
/// </summary>
|
|
1114
|
+
/// <param name="gsReq">The <see cref="FailPurchaseRequest"/> instance to use for the request</param>
|
|
1115
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
1116
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
1117
|
+
public virtual Promise<PaymentResultResponse> PostWindowsPurchaseFail(FailPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
1118
|
+
{
|
|
1119
|
+
string gsUrl = "/basic/payments/windows/purchase/fail";
|
|
1120
|
+
// make the request and return the result
|
|
1121
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
1122
|
+
}
|
|
1123
|
+
/// <summary>
|
|
1124
|
+
/// POST call to `/basic/payments/itunes/purchase/cancel` endpoint.
|
|
1125
|
+
/// </summary>
|
|
1126
|
+
/// <param name="gsReq">The <see cref="CancelPurchaseRequest"/> instance to use for the request</param>
|
|
1127
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
1128
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
1129
|
+
public virtual Promise<PaymentResultResponse> PostItunesPurchaseCancel(CancelPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
1130
|
+
{
|
|
1131
|
+
string gsUrl = "/basic/payments/itunes/purchase/cancel";
|
|
1132
|
+
// make the request and return the result
|
|
1133
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
1134
|
+
}
|
|
1135
|
+
/// <summary>
|
|
1136
|
+
/// GET call to `/basic/payments/test/product` endpoint.
|
|
1137
|
+
/// </summary>
|
|
1138
|
+
/// <param name="sku"></param>
|
|
1139
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
1140
|
+
/// <returns>A promise containing the <see cref="GetProductResponse"/></returns>
|
|
1141
|
+
public virtual Promise<GetProductResponse> GetTestProduct(string sku, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
1142
|
+
{
|
|
1143
|
+
string gsUrl = "/basic/payments/test/product";
|
|
1144
|
+
string gsQuery = "?";
|
|
1145
|
+
System.Collections.Generic.List<string> gsQueries = new System.Collections.Generic.List<string>();
|
|
1146
|
+
gsQueries.Add(string.Concat("sku=", _requester.EscapeURL(sku.ToString())));
|
|
1147
|
+
if ((gsQueries.Count > 0))
|
|
1148
|
+
{
|
|
1149
|
+
gsQuery = string.Concat(gsQuery, string.Join("&", gsQueries));
|
|
1150
|
+
gsUrl = string.Concat(gsUrl, gsQuery);
|
|
1151
|
+
}
|
|
1152
|
+
// make the request and return the result
|
|
1153
|
+
return _requester.Request<GetProductResponse>(Method.GET, gsUrl, default(object), includeAuthHeader, this.Serialize<GetProductResponse>);
|
|
1154
|
+
}
|
|
1155
|
+
/// <summary>
|
|
1156
|
+
/// POST call to `/basic/payments/steam/purchase/verify` endpoint.
|
|
1157
|
+
/// </summary>
|
|
1158
|
+
/// <param name="gsReq">The <see cref="VerifyPurchaseRequest"/> instance to use for the request</param>
|
|
1159
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
1160
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
1161
|
+
public virtual Promise<PaymentResultResponse> PostSteamPurchaseVerify(VerifyPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
1162
|
+
{
|
|
1163
|
+
string gsUrl = "/basic/payments/steam/purchase/verify";
|
|
1164
|
+
// make the request and return the result
|
|
1165
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
1166
|
+
}
|
|
1167
|
+
/// <summary>
|
|
1168
|
+
/// POST call to `/basic/payments/itunes/purchase/track` endpoint.
|
|
1169
|
+
/// </summary>
|
|
1170
|
+
/// <param name="gsReq">The <see cref="TrackPurchaseRequest"/> instance to use for the request</param>
|
|
1171
|
+
/// <param name="includeAuthHeader">By default, every request will include an authorization header so that the request acts on behalf of the current user. When the includeAuthHeader argument is false, the request will not include the authorization header for the current user.</param>
|
|
1172
|
+
/// <returns>A promise containing the <see cref="PaymentResultResponse"/></returns>
|
|
1173
|
+
public virtual Promise<PaymentResultResponse> PostItunesPurchaseTrack(TrackPurchaseRequest gsReq, [System.Runtime.InteropServices.DefaultParameterValueAttribute(true)] [System.Runtime.InteropServices.OptionalAttribute()] bool includeAuthHeader)
|
|
1174
|
+
{
|
|
1175
|
+
string gsUrl = "/basic/payments/itunes/purchase/track";
|
|
1176
|
+
// make the request and return the result
|
|
1177
|
+
return _requester.Request<PaymentResultResponse>(Method.POST, gsUrl, Beamable.Serialization.JsonSerializable.ToJson(gsReq), includeAuthHeader, this.Serialize<PaymentResultResponse>);
|
|
1178
|
+
}
|
|
1179
|
+
}
|
|
1180
|
+
}
|