connected-spaces-platform.unity.core 4.10.0-prerelease3
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/Editor/NativePluginBuildProcessor.asmdef +16 -0
- package/Editor/NativePluginBuildProcessor.asmdef.meta +7 -0
- package/Editor/NativePluginBuildProcessor.cs +41 -0
- package/Editor/NativePluginBuildProcessor.cs.meta +11 -0
- package/Editor.meta +7 -0
- package/Source/CSPFoundation.cs +417 -0
- package/Source/CSPFoundation.cs.meta +11 -0
- package/Source/ClientUserAgent.cs +292 -0
- package/Source/ClientUserAgent.cs.meta +11 -0
- package/Source/Common/Array.cs +201 -0
- package/Source/Common/Array.cs.meta +11 -0
- package/Source/Common/CancellationToken.cs +175 -0
- package/Source/Common/CancellationToken.cs.meta +11 -0
- package/Source/Common/FileExtensions.cs +15317 -0
- package/Source/Common/FileExtensions.cs.meta +11 -0
- package/Source/Common/List.cs +275 -0
- package/Source/Common/List.cs.meta +11 -0
- package/Source/Common/Map.cs +283 -0
- package/Source/Common/Map.cs.meta +11 -0
- package/Source/Common/MimeTypeHelper.cs +210 -0
- package/Source/Common/MimeTypeHelper.cs.meta +11 -0
- package/Source/Common/MimeTypes.cs +10565 -0
- package/Source/Common/MimeTypes.cs.meta +11 -0
- package/Source/Common/Variant.cs +573 -0
- package/Source/Common/Variant.cs.meta +11 -0
- package/Source/Common/VariantType.cs +28 -0
- package/Source/Common/VariantType.cs.meta +11 -0
- package/Source/Common/Vector3.cs +268 -0
- package/Source/Common/Vector3.cs.meta +11 -0
- package/Source/Common/Vector4.cs +328 -0
- package/Source/Common/Vector4.cs.meta +11 -0
- package/Source/Common.meta +7 -0
- package/Source/ConnectedSpacesPlatform.Unity.Core.asmdef +14 -0
- package/Source/ConnectedSpacesPlatform.Unity.Core.asmdef.meta +7 -0
- package/Source/Csp.cs +83 -0
- package/Source/Csp.cs.meta +11 -0
- package/Source/EThirdPartyPlatform.cs +26 -0
- package/Source/EThirdPartyPlatform.cs.meta +11 -0
- package/Source/EndpointURIs.cs +258 -0
- package/Source/EndpointURIs.cs.meta +11 -0
- package/Source/Il2cppPreserver.cs +29 -0
- package/Source/Il2cppPreserver.cs.meta +11 -0
- package/Source/Multiplayer/AssetDetailBlobParams.cs +270 -0
- package/Source/Multiplayer/AssetDetailBlobParams.cs.meta +11 -0
- package/Source/Multiplayer/ComponentBase.cs +339 -0
- package/Source/Multiplayer/ComponentBase.cs.meta +11 -0
- package/Source/Multiplayer/ComponentType.cs +46 -0
- package/Source/Multiplayer/ComponentType.cs.meta +11 -0
- package/Source/Multiplayer/ComponentUpdateInfo.cs +161 -0
- package/Source/Multiplayer/ComponentUpdateInfo.cs.meta +11 -0
- package/Source/Multiplayer/ComponentUpdateType.cs +24 -0
- package/Source/Multiplayer/ComponentUpdateType.cs.meta +11 -0
- package/Source/Multiplayer/Components/AnimatedModelActions.cs +25 -0
- package/Source/Multiplayer/Components/AnimatedModelActions.cs.meta +11 -0
- package/Source/Multiplayer/Components/AnimatedModelPropertyKeys.cs +36 -0
- package/Source/Multiplayer/Components/AnimatedModelPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/AnimatedModelSpaceComponent.cs +793 -0
- package/Source/Multiplayer/Components/AnimatedModelSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/AudioPlaybackState.cs +25 -0
- package/Source/Multiplayer/Components/AudioPlaybackState.cs.meta +11 -0
- package/Source/Multiplayer/Components/AudioPropertyKeys.cs +33 -0
- package/Source/Multiplayer/Components/AudioPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/AudioSpaceComponent.cs +693 -0
- package/Source/Multiplayer/Components/AudioSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/AudioType.cs +24 -0
- package/Source/Multiplayer/Components/AudioType.cs.meta +11 -0
- package/Source/Multiplayer/Components/AvatarComponentPropertyKeys.cs +37 -0
- package/Source/Multiplayer/Components/AvatarComponentPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/AvatarPlayMode.cs +26 -0
- package/Source/Multiplayer/Components/AvatarPlayMode.cs.meta +11 -0
- package/Source/Multiplayer/Components/AvatarSpaceComponent.cs +946 -0
- package/Source/Multiplayer/Components/AvatarSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/AvatarState.cs +29 -0
- package/Source/Multiplayer/Components/AvatarState.cs.meta +11 -0
- package/Source/Multiplayer/Components/BillboardMode.cs +24 -0
- package/Source/Multiplayer/Components/BillboardMode.cs.meta +11 -0
- package/Source/Multiplayer/Components/ButtonPropertyKeys.cs +32 -0
- package/Source/Multiplayer/Components/ButtonPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/ButtonSpaceComponent.cs +597 -0
- package/Source/Multiplayer/Components/ButtonSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/CollisionMode.cs +23 -0
- package/Source/Multiplayer/Components/CollisionMode.cs.meta +11 -0
- package/Source/Multiplayer/Components/CollisionPropertyKeys.cs +30 -0
- package/Source/Multiplayer/Components/CollisionPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/CollisionShape.cs +25 -0
- package/Source/Multiplayer/Components/CollisionShape.cs.meta +11 -0
- package/Source/Multiplayer/Components/CollisionSpaceComponent.cs +757 -0
- package/Source/Multiplayer/Components/CollisionSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/ConversationPropertyKeys.cs +30 -0
- package/Source/Multiplayer/Components/ConversationPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/ConversationSpaceComponent.cs +1105 -0
- package/Source/Multiplayer/Components/ConversationSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/CustomComponentPropertyKeys.cs +24 -0
- package/Source/Multiplayer/Components/CustomComponentPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/CustomSpaceComponent.cs +370 -0
- package/Source/Multiplayer/Components/CustomSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/DisplayMode.cs +24 -0
- package/Source/Multiplayer/Components/DisplayMode.cs.meta +11 -0
- package/Source/Multiplayer/Components/ECommercePropertyKeys.cs +24 -0
- package/Source/Multiplayer/Components/ECommercePropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/ECommerceSpaceComponent.cs +216 -0
- package/Source/Multiplayer/Components/ECommerceSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/ExternalLinkActions.cs +23 -0
- package/Source/Multiplayer/Components/ExternalLinkActions.cs.meta +11 -0
- package/Source/Multiplayer/Components/ExternalLinkPropertyKeys.cs +31 -0
- package/Source/Multiplayer/Components/ExternalLinkPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/ExternalLinkSpaceComponent.cs +579 -0
- package/Source/Multiplayer/Components/ExternalLinkSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/FiducialMarkerPropertyKeys.cs +30 -0
- package/Source/Multiplayer/Components/FiducialMarkerPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/FiducialMarkerSpaceComponent.cs +569 -0
- package/Source/Multiplayer/Components/FiducialMarkerSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/FogMode.cs +24 -0
- package/Source/Multiplayer/Components/FogMode.cs.meta +11 -0
- package/Source/Multiplayer/Components/FogPropertyKeys.cs +36 -0
- package/Source/Multiplayer/Components/FogPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/FogSpaceComponent.cs +836 -0
- package/Source/Multiplayer/Components/FogSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/ImagePropertyKeys.cs +33 -0
- package/Source/Multiplayer/Components/ImagePropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/ImageSpaceComponent.cs +693 -0
- package/Source/Multiplayer/Components/ImageSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces/IEnableableComponent.cs +24 -0
- package/Source/Multiplayer/Components/Interfaces/IEnableableComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces/IExternalResourceComponent.cs +28 -0
- package/Source/Multiplayer/Components/Interfaces/IExternalResourceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces/IPositionComponent.cs +24 -0
- package/Source/Multiplayer/Components/Interfaces/IPositionComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces/IRotationComponent.cs +24 -0
- package/Source/Multiplayer/Components/Interfaces/IRotationComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces/IScaleComponent.cs +24 -0
- package/Source/Multiplayer/Components/Interfaces/IScaleComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces/IShadowCasterComponent.cs +24 -0
- package/Source/Multiplayer/Components/Interfaces/IShadowCasterComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces/IThirdPartyComponentRef.cs +27 -0
- package/Source/Multiplayer/Components/Interfaces/IThirdPartyComponentRef.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces/ITransformComponent.cs +27 -0
- package/Source/Multiplayer/Components/Interfaces/ITransformComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces/IVisibleComponent.cs +28 -0
- package/Source/Multiplayer/Components/Interfaces/IVisibleComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces.meta +7 -0
- package/Source/Multiplayer/Components/LightCookieType.cs +24 -0
- package/Source/Multiplayer/Components/LightCookieType.cs.meta +11 -0
- package/Source/Multiplayer/Components/LightPropertyKeys.cs +38 -0
- package/Source/Multiplayer/Components/LightPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/LightShadowType.cs +25 -0
- package/Source/Multiplayer/Components/LightShadowType.cs.meta +11 -0
- package/Source/Multiplayer/Components/LightSpaceComponent.cs +891 -0
- package/Source/Multiplayer/Components/LightSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/LightType.cs +25 -0
- package/Source/Multiplayer/Components/LightType.cs.meta +11 -0
- package/Source/Multiplayer/Components/LocomotionModel.cs +24 -0
- package/Source/Multiplayer/Components/LocomotionModel.cs.meta +11 -0
- package/Source/Multiplayer/Components/PortalPropertyKeys.cs +30 -0
- package/Source/Multiplayer/Components/PortalPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/PortalSpaceComponent.cs +371 -0
- package/Source/Multiplayer/Components/PortalSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/ReflectionPropertyKeys.cs +30 -0
- package/Source/Multiplayer/Components/ReflectionPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/ReflectionShape.cs +23 -0
- package/Source/Multiplayer/Components/ReflectionShape.cs.meta +11 -0
- package/Source/Multiplayer/Components/ReflectionSpaceComponent.cs +515 -0
- package/Source/Multiplayer/Components/ReflectionSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/ScriptComponentPropertyKeys.cs +25 -0
- package/Source/Multiplayer/Components/ScriptComponentPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/ScriptScope.cs +24 -0
- package/Source/Multiplayer/Components/ScriptScope.cs.meta +11 -0
- package/Source/Multiplayer/Components/ScriptSpaceComponent.cs +258 -0
- package/Source/Multiplayer/Components/ScriptSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/SplinePropertyKeys.cs +23 -0
- package/Source/Multiplayer/Components/SplinePropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/SplineSpaceComponent.cs +184 -0
- package/Source/Multiplayer/Components/SplineSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/StaticModelPropertyKeys.cs +32 -0
- package/Source/Multiplayer/Components/StaticModelPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/StaticModelSpaceComponent.cs +640 -0
- package/Source/Multiplayer/Components/StaticModelSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/VideoPlayerActions.cs +24 -0
- package/Source/Multiplayer/Components/VideoPlayerActions.cs.meta +11 -0
- package/Source/Multiplayer/Components/VideoPlayerPlaybackState.cs +25 -0
- package/Source/Multiplayer/Components/VideoPlayerPlaybackState.cs.meta +11 -0
- package/Source/Multiplayer/Components/VideoPlayerPropertyKeys.cs +42 -0
- package/Source/Multiplayer/Components/VideoPlayerPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/VideoPlayerSourceType.cs +25 -0
- package/Source/Multiplayer/Components/VideoPlayerSourceType.cs.meta +11 -0
- package/Source/Multiplayer/Components/VideoPlayerSpaceComponent.cs +1187 -0
- package/Source/Multiplayer/Components/VideoPlayerSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components.meta +7 -0
- package/Source/Multiplayer/ConnectionState.cs +25 -0
- package/Source/Multiplayer/ConnectionState.cs.meta +11 -0
- package/Source/Multiplayer/Conversation/BaseMessageInfo.cs +293 -0
- package/Source/Multiplayer/Conversation/BaseMessageInfo.cs.meta +11 -0
- package/Source/Multiplayer/Conversation/ConversationInfo.cs +205 -0
- package/Source/Multiplayer/Conversation/ConversationInfo.cs.meta +11 -0
- package/Source/Multiplayer/Conversation/ConversationMessageType.cs +26 -0
- package/Source/Multiplayer/Conversation/ConversationMessageType.cs.meta +11 -0
- package/Source/Multiplayer/Conversation/ConversationResult.cs +152 -0
- package/Source/Multiplayer/Conversation/ConversationResult.cs.meta +11 -0
- package/Source/Multiplayer/Conversation/ConversationSystem.cs +784 -0
- package/Source/Multiplayer/Conversation/ConversationSystem.cs.meta +11 -0
- package/Source/Multiplayer/Conversation/MessageCollectionResult.cs +175 -0
- package/Source/Multiplayer/Conversation/MessageCollectionResult.cs.meta +11 -0
- package/Source/Multiplayer/Conversation/MessageInfo.cs +172 -0
- package/Source/Multiplayer/Conversation/MessageInfo.cs.meta +11 -0
- package/Source/Multiplayer/Conversation/MessageResult.cs +150 -0
- package/Source/Multiplayer/Conversation/MessageResult.cs.meta +11 -0
- package/Source/Multiplayer/Conversation.meta +7 -0
- package/Source/Multiplayer/ConversationSystemParams.cs +165 -0
- package/Source/Multiplayer/ConversationSystemParams.cs.meta +11 -0
- package/Source/Multiplayer/EAssetChangeType.cs +27 -0
- package/Source/Multiplayer/EAssetChangeType.cs.meta +11 -0
- package/Source/Multiplayer/IEntityDeserialiser.cs +70 -0
- package/Source/Multiplayer/IEntityDeserialiser.cs.meta +11 -0
- package/Source/Multiplayer/IEntitySerialiser.cs +63 -0
- package/Source/Multiplayer/IEntitySerialiser.cs.meta +11 -0
- package/Source/Multiplayer/MultiplayerConnection.cs +964 -0
- package/Source/Multiplayer/MultiplayerConnection.cs.meta +11 -0
- package/Source/Multiplayer/PropertyUpdateInfo.cs +159 -0
- package/Source/Multiplayer/PropertyUpdateInfo.cs.meta +11 -0
- package/Source/Multiplayer/ReplicatedValue.cs +593 -0
- package/Source/Multiplayer/ReplicatedValue.cs.meta +11 -0
- package/Source/Multiplayer/ReplicatedValueType.cs +28 -0
- package/Source/Multiplayer/ReplicatedValueType.cs.meta +11 -0
- package/Source/Multiplayer/Script/EntityScript.cs +479 -0
- package/Source/Multiplayer/Script/EntityScript.cs.meta +11 -0
- package/Source/Multiplayer/Script.meta +7 -0
- package/Source/Multiplayer/SpaceEntity.cs +1202 -0
- package/Source/Multiplayer/SpaceEntity.cs.meta +11 -0
- package/Source/Multiplayer/SpaceEntitySystem.cs +1304 -0
- package/Source/Multiplayer/SpaceEntitySystem.cs.meta +11 -0
- package/Source/Multiplayer/SpaceEntityType.cs +25 -0
- package/Source/Multiplayer/SpaceEntityType.cs.meta +11 -0
- package/Source/Multiplayer/SpaceEntityUpdateFlags.cs +27 -0
- package/Source/Multiplayer/SpaceEntityUpdateFlags.cs.meta +11 -0
- package/Source/Multiplayer/SpaceTransform.cs +232 -0
- package/Source/Multiplayer/SpaceTransform.cs.meta +11 -0
- package/Source/Multiplayer.meta +7 -0
- package/Source/NativeClassWrapper.cs +42 -0
- package/Source/NativeClassWrapper.cs.meta +11 -0
- package/Source/ProgressEventArgs.cs +15 -0
- package/Source/ProgressEventArgs.cs.meta +11 -0
- package/Source/Ref.cs +28 -0
- package/Source/Ref.cs.meta +11 -0
- package/Source/Services/EResultCode.cs +26 -0
- package/Source/Services/EResultCode.cs.meta +11 -0
- package/Source/Services/ResultBase.cs +237 -0
- package/Source/Services/ResultBase.cs.meta +11 -0
- package/Source/Services/WebService.cs +91 -0
- package/Source/Services/WebService.cs.meta +11 -0
- package/Source/Services.meta +7 -0
- package/Source/Systems/Analytics/AnalyticsEvent.cs +288 -0
- package/Source/Systems/Analytics/AnalyticsEvent.cs.meta +11 -0
- package/Source/Systems/Analytics/AnalyticsEventInitialiser.cs +78 -0
- package/Source/Systems/Analytics/AnalyticsEventInitialiser.cs.meta +11 -0
- package/Source/Systems/Analytics/AnalyticsSystem.cs +116 -0
- package/Source/Systems/Analytics/AnalyticsSystem.cs.meta +11 -0
- package/Source/Systems/Analytics/IAnalyticsProvider.cs +85 -0
- package/Source/Systems/Analytics/IAnalyticsProvider.cs.meta +11 -0
- package/Source/Systems/Analytics.meta +7 -0
- package/Source/Systems/Assets/Asset.cs +698 -0
- package/Source/Systems/Assets/Asset.cs.meta +11 -0
- package/Source/Systems/Assets/AssetCollection.cs +605 -0
- package/Source/Systems/Assets/AssetCollection.cs.meta +11 -0
- package/Source/Systems/Assets/AssetCollectionResult.cs +119 -0
- package/Source/Systems/Assets/AssetCollectionResult.cs.meta +11 -0
- package/Source/Systems/Assets/AssetCollectionsResult.cs +161 -0
- package/Source/Systems/Assets/AssetCollectionsResult.cs.meta +11 -0
- package/Source/Systems/Assets/AssetDataResult.cs +175 -0
- package/Source/Systems/Assets/AssetDataResult.cs.meta +11 -0
- package/Source/Systems/Assets/AssetDataSource.cs +24 -0
- package/Source/Systems/Assets/AssetDataSource.cs.meta +11 -0
- package/Source/Systems/Assets/AssetResult.cs +131 -0
- package/Source/Systems/Assets/AssetResult.cs.meta +11 -0
- package/Source/Systems/Assets/AssetSystem.cs +1601 -0
- package/Source/Systems/Assets/AssetSystem.cs.meta +11 -0
- package/Source/Systems/Assets/AssetsResult.cs +148 -0
- package/Source/Systems/Assets/AssetsResult.cs.meta +11 -0
- package/Source/Systems/Assets/BufferAssetDataSource.cs +214 -0
- package/Source/Systems/Assets/BufferAssetDataSource.cs.meta +11 -0
- package/Source/Systems/Assets/EAssetCollectionType.cs +24 -0
- package/Source/Systems/Assets/EAssetCollectionType.cs.meta +11 -0
- package/Source/Systems/Assets/EAssetPlatform.cs +20 -0
- package/Source/Systems/Assets/EAssetPlatform.cs.meta +11 -0
- package/Source/Systems/Assets/EAssetType.cs +30 -0
- package/Source/Systems/Assets/EAssetType.cs.meta +11 -0
- package/Source/Systems/Assets/FileAssetDataSource.cs +177 -0
- package/Source/Systems/Assets/FileAssetDataSource.cs.meta +11 -0
- package/Source/Systems/Assets/LODAsset.cs +157 -0
- package/Source/Systems/Assets/LODAsset.cs.meta +11 -0
- package/Source/Systems/Assets/LODChain.cs +158 -0
- package/Source/Systems/Assets/LODChain.cs.meta +11 -0
- package/Source/Systems/Assets/LODChainResult.cs +131 -0
- package/Source/Systems/Assets/LODChainResult.cs.meta +11 -0
- package/Source/Systems/Assets/UriResult.cs +193 -0
- package/Source/Systems/Assets/UriResult.cs.meta +11 -0
- package/Source/Systems/Assets.meta +7 -0
- package/Source/Systems/BooleanResult.cs +146 -0
- package/Source/Systems/BooleanResult.cs.meta +11 -0
- package/Source/Systems/ECommerce/AddShopifyStoreResult.cs +112 -0
- package/Source/Systems/ECommerce/AddShopifyStoreResult.cs.meta +11 -0
- package/Source/Systems/ECommerce/CartInfo.cs +233 -0
- package/Source/Systems/ECommerce/CartInfo.cs.meta +11 -0
- package/Source/Systems/ECommerce/CartInfoResult.cs +132 -0
- package/Source/Systems/ECommerce/CartInfoResult.cs.meta +11 -0
- package/Source/Systems/ECommerce/CartLine.cs +197 -0
- package/Source/Systems/ECommerce/CartLine.cs.meta +11 -0
- package/Source/Systems/ECommerce/CheckoutInfo.cs +161 -0
- package/Source/Systems/ECommerce/CheckoutInfo.cs.meta +11 -0
- package/Source/Systems/ECommerce/CheckoutInfoResult.cs +117 -0
- package/Source/Systems/ECommerce/CheckoutInfoResult.cs.meta +11 -0
- package/Source/Systems/ECommerce/CurrencyInfo.cs +161 -0
- package/Source/Systems/ECommerce/CurrencyInfo.cs.meta +11 -0
- package/Source/Systems/ECommerce/ECommerceSystem.cs +564 -0
- package/Source/Systems/ECommerce/ECommerceSystem.cs.meta +11 -0
- package/Source/Systems/ECommerce/ProductInfo.cs +341 -0
- package/Source/Systems/ECommerce/ProductInfo.cs.meta +11 -0
- package/Source/Systems/ECommerce/ProductInfoResult.cs +117 -0
- package/Source/Systems/ECommerce/ProductInfoResult.cs.meta +11 -0
- package/Source/Systems/ECommerce/ProductMediaInfo.cs +269 -0
- package/Source/Systems/ECommerce/ProductMediaInfo.cs.meta +11 -0
- package/Source/Systems/ECommerce/ProductVariantInfo.cs +342 -0
- package/Source/Systems/ECommerce/ProductVariantInfo.cs.meta +11 -0
- package/Source/Systems/ECommerce/ShopifyStoreInfo.cs +269 -0
- package/Source/Systems/ECommerce/ShopifyStoreInfo.cs.meta +11 -0
- package/Source/Systems/ECommerce/ValidateShopifyStoreResult.cs +120 -0
- package/Source/Systems/ECommerce/ValidateShopifyStoreResult.cs.meta +11 -0
- package/Source/Systems/ECommerce/VariantOptionInfo.cs +161 -0
- package/Source/Systems/ECommerce/VariantOptionInfo.cs.meta +11 -0
- package/Source/Systems/ECommerce.meta +7 -0
- package/Source/Systems/EventTicketing/EventTicket.cs +378 -0
- package/Source/Systems/EventTicketing/EventTicket.cs.meta +11 -0
- package/Source/Systems/EventTicketing/EventTicketResult.cs +115 -0
- package/Source/Systems/EventTicketing/EventTicketResult.cs.meta +11 -0
- package/Source/Systems/EventTicketing/EventTicketingSystem.cs +563 -0
- package/Source/Systems/EventTicketing/EventTicketingSystem.cs.meta +11 -0
- package/Source/Systems/EventTicketing/EventTicketingVendor.cs +24 -0
- package/Source/Systems/EventTicketing/EventTicketingVendor.cs.meta +11 -0
- package/Source/Systems/EventTicketing/SpaceIsTicketedResult.cs +115 -0
- package/Source/Systems/EventTicketing/SpaceIsTicketedResult.cs.meta +11 -0
- package/Source/Systems/EventTicketing/TicketStatus.cs +26 -0
- package/Source/Systems/EventTicketing/TicketStatus.cs.meta +11 -0
- package/Source/Systems/EventTicketing/TicketedEvent.cs +305 -0
- package/Source/Systems/EventTicketing/TicketedEvent.cs.meta +11 -0
- package/Source/Systems/EventTicketing/TicketedEventCollectionResult.cs +117 -0
- package/Source/Systems/EventTicketing/TicketedEventCollectionResult.cs.meta +11 -0
- package/Source/Systems/EventTicketing/TicketedEventResult.cs +117 -0
- package/Source/Systems/EventTicketing/TicketedEventResult.cs.meta +11 -0
- package/Source/Systems/EventTicketing/TicketedEventVendorAuthInfo.cs +248 -0
- package/Source/Systems/EventTicketing/TicketedEventVendorAuthInfo.cs.meta +11 -0
- package/Source/Systems/EventTicketing/TicketedEventVendorAuthInfoResult.cs +115 -0
- package/Source/Systems/EventTicketing/TicketedEventVendorAuthInfoResult.cs.meta +11 -0
- package/Source/Systems/EventTicketing.meta +7 -0
- package/Source/Systems/GraphQL/GraphQLResult.cs +146 -0
- package/Source/Systems/GraphQL/GraphQLResult.cs.meta +11 -0
- package/Source/Systems/GraphQL/GraphQLSystem.cs +221 -0
- package/Source/Systems/GraphQL/GraphQLSystem.cs.meta +11 -0
- package/Source/Systems/GraphQL.meta +7 -0
- package/Source/Systems/HTTPHeadersResult.cs +147 -0
- package/Source/Systems/HTTPHeadersResult.cs.meta +11 -0
- package/Source/Systems/Log/LogLevel.cs +28 -0
- package/Source/Systems/Log/LogLevel.cs.meta +11 -0
- package/Source/Systems/Log/LogSystem.cs +331 -0
- package/Source/Systems/Log/LogSystem.cs.meta +11 -0
- package/Source/Systems/Log.meta +7 -0
- package/Source/Systems/Maintenance/MaintenanceInfo.cs +211 -0
- package/Source/Systems/Maintenance/MaintenanceInfo.cs.meta +11 -0
- package/Source/Systems/Maintenance/MaintenanceInfoResult.cs +252 -0
- package/Source/Systems/Maintenance/MaintenanceInfoResult.cs.meta +11 -0
- package/Source/Systems/Maintenance/MaintenanceSystem.cs +154 -0
- package/Source/Systems/Maintenance/MaintenanceSystem.cs.meta +11 -0
- package/Source/Systems/Maintenance.meta +7 -0
- package/Source/Systems/NullResult.cs +122 -0
- package/Source/Systems/NullResult.cs.meta +11 -0
- package/Source/Systems/Script/ScriptSystem.cs +198 -0
- package/Source/Systems/Script/ScriptSystem.cs.meta +11 -0
- package/Source/Systems/Script.meta +7 -0
- package/Source/Systems/Settings/SettingsCollection.cs +191 -0
- package/Source/Systems/Settings/SettingsCollection.cs.meta +11 -0
- package/Source/Systems/Settings/SettingsCollectionResult.cs +119 -0
- package/Source/Systems/Settings/SettingsCollectionResult.cs.meta +11 -0
- package/Source/Systems/Settings/SettingsSystem.cs +999 -0
- package/Source/Systems/Settings/SettingsSystem.cs.meta +11 -0
- package/Source/Systems/Settings.meta +7 -0
- package/Source/Systems/Spaces/BasicSpace.cs +225 -0
- package/Source/Systems/Spaces/BasicSpace.cs.meta +11 -0
- package/Source/Systems/Spaces/BasicSpaceResult.cs +111 -0
- package/Source/Systems/Spaces/BasicSpaceResult.cs.meta +11 -0
- package/Source/Systems/Spaces/BasicSpacesResult.cs +144 -0
- package/Source/Systems/Spaces/BasicSpacesResult.cs.meta +11 -0
- package/Source/Systems/Spaces/InviteUserRoleInfo.cs +178 -0
- package/Source/Systems/Spaces/InviteUserRoleInfo.cs.meta +11 -0
- package/Source/Systems/Spaces/PendingInvitesResult.cs +117 -0
- package/Source/Systems/Spaces/PendingInvitesResult.cs.meta +11 -0
- package/Source/Systems/Spaces/Site.cs +259 -0
- package/Source/Systems/Spaces/Site.cs.meta +11 -0
- package/Source/Systems/Spaces/SiteResult.cs +114 -0
- package/Source/Systems/Spaces/SiteResult.cs.meta +11 -0
- package/Source/Systems/Spaces/SitesCollectionResult.cs +117 -0
- package/Source/Systems/Spaces/SitesCollectionResult.cs.meta +11 -0
- package/Source/Systems/Spaces/Space.cs +321 -0
- package/Source/Systems/Spaces/Space.cs.meta +11 -0
- package/Source/Systems/Spaces/SpaceAttributes.cs +27 -0
- package/Source/Systems/Spaces/SpaceAttributes.cs.meta +11 -0
- package/Source/Systems/Spaces/SpaceGeoLocation.cs +225 -0
- package/Source/Systems/Spaces/SpaceGeoLocation.cs.meta +11 -0
- package/Source/Systems/Spaces/SpaceGeoLocationResult.cs +162 -0
- package/Source/Systems/Spaces/SpaceGeoLocationResult.cs.meta +11 -0
- package/Source/Systems/Spaces/SpaceMetadataResult.cs +144 -0
- package/Source/Systems/Spaces/SpaceMetadataResult.cs.meta +11 -0
- package/Source/Systems/Spaces/SpaceResult.cs +160 -0
- package/Source/Systems/Spaces/SpaceResult.cs.meta +11 -0
- package/Source/Systems/Spaces/SpaceSystem.cs +2322 -0
- package/Source/Systems/Spaces/SpaceSystem.cs.meta +11 -0
- package/Source/Systems/Spaces/SpaceUserRole.cs +22 -0
- package/Source/Systems/Spaces/SpaceUserRole.cs.meta +11 -0
- package/Source/Systems/Spaces/SpacesMetadataResult.cs +146 -0
- package/Source/Systems/Spaces/SpacesMetadataResult.cs.meta +11 -0
- package/Source/Systems/Spaces/SpacesResult.cs +132 -0
- package/Source/Systems/Spaces/SpacesResult.cs.meta +11 -0
- package/Source/Systems/Spaces/UserRoleCollectionResult.cs +146 -0
- package/Source/Systems/Spaces/UserRoleCollectionResult.cs.meta +11 -0
- package/Source/Systems/Spaces/UserRoleInfo.cs +178 -0
- package/Source/Systems/Spaces/UserRoleInfo.cs.meta +11 -0
- package/Source/Systems/Spaces.meta +7 -0
- package/Source/Systems/Spatial/Anchor.cs +534 -0
- package/Source/Systems/Spatial/Anchor.cs.meta +11 -0
- package/Source/Systems/Spatial/AnchorCollectionResult.cs +117 -0
- package/Source/Systems/Spatial/AnchorCollectionResult.cs.meta +11 -0
- package/Source/Systems/Spatial/AnchorProvider.cs +20 -0
- package/Source/Systems/Spatial/AnchorProvider.cs.meta +11 -0
- package/Source/Systems/Spatial/AnchorResolution.cs +293 -0
- package/Source/Systems/Spatial/AnchorResolution.cs.meta +11 -0
- package/Source/Systems/Spatial/AnchorResolutionCollectionResult.cs +119 -0
- package/Source/Systems/Spatial/AnchorResolutionCollectionResult.cs.meta +11 -0
- package/Source/Systems/Spatial/AnchorResolutionResult.cs +119 -0
- package/Source/Systems/Spatial/AnchorResolutionResult.cs.meta +11 -0
- package/Source/Systems/Spatial/AnchorResult.cs +111 -0
- package/Source/Systems/Spatial/AnchorResult.cs.meta +11 -0
- package/Source/Systems/Spatial/AnchorSystem.cs +738 -0
- package/Source/Systems/Spatial/AnchorSystem.cs.meta +11 -0
- package/Source/Systems/Spatial/EPointOfInterestType.cs +20 -0
- package/Source/Systems/Spatial/EPointOfInterestType.cs.meta +11 -0
- package/Source/Systems/Spatial/GeoLocation.cs +202 -0
- package/Source/Systems/Spatial/GeoLocation.cs.meta +11 -0
- package/Source/Systems/Spatial/OlyAnchorPosition.cs +216 -0
- package/Source/Systems/Spatial/OlyAnchorPosition.cs.meta +11 -0
- package/Source/Systems/Spatial/OlyRotation.cs +250 -0
- package/Source/Systems/Spatial/OlyRotation.cs.meta +11 -0
- package/Source/Systems/Spatial/POICollectionResult.cs +117 -0
- package/Source/Systems/Spatial/POICollectionResult.cs.meta +11 -0
- package/Source/Systems/Spatial/POIResult.cs +113 -0
- package/Source/Systems/Spatial/POIResult.cs.meta +11 -0
- package/Source/Systems/Spatial/PointOfInterest.cs +463 -0
- package/Source/Systems/Spatial/PointOfInterest.cs.meta +11 -0
- package/Source/Systems/Spatial/PointOfInterestSystem.cs +314 -0
- package/Source/Systems/Spatial/PointOfInterestSystem.cs.meta +11 -0
- package/Source/Systems/Spatial.meta +7 -0
- package/Source/Systems/StringArrayResult.cs +146 -0
- package/Source/Systems/StringArrayResult.cs.meta +11 -0
- package/Source/Systems/StringResult.cs +149 -0
- package/Source/Systems/StringResult.cs.meta +11 -0
- package/Source/Systems/SystemBase.cs +84 -0
- package/Source/Systems/SystemBase.cs.meta +11 -0
- package/Source/Systems/SystemsManager.cs +474 -0
- package/Source/Systems/SystemsManager.cs.meta +11 -0
- package/Source/Systems/UInt64Result.cs +146 -0
- package/Source/Systems/UInt64Result.cs.meta +11 -0
- package/Source/Systems/Users/AgoraUserTokenParams.cs +326 -0
- package/Source/Systems/Users/AgoraUserTokenParams.cs.meta +11 -0
- package/Source/Systems/Users/AgoraUserTokenResult.cs +130 -0
- package/Source/Systems/Users/AgoraUserTokenResult.cs.meta +11 -0
- package/Source/Systems/Users/BasicProfile.cs +259 -0
- package/Source/Systems/Users/BasicProfile.cs.meta +11 -0
- package/Source/Systems/Users/BasicProfilesResult.cs +112 -0
- package/Source/Systems/Users/BasicProfilesResult.cs.meta +11 -0
- package/Source/Systems/Users/ELoginState.cs +25 -0
- package/Source/Systems/Users/ELoginState.cs.meta +11 -0
- package/Source/Systems/Users/EThirdPartyAuthenticationProviders.cs +28 -0
- package/Source/Systems/Users/EThirdPartyAuthenticationProviders.cs.meta +11 -0
- package/Source/Systems/Users/LoginState.cs +304 -0
- package/Source/Systems/Users/LoginState.cs.meta +11 -0
- package/Source/Systems/Users/LoginStateResult.cs +126 -0
- package/Source/Systems/Users/LoginStateResult.cs.meta +11 -0
- package/Source/Systems/Users/LoginTokenInfo.cs +224 -0
- package/Source/Systems/Users/LoginTokenInfo.cs.meta +11 -0
- package/Source/Systems/Users/LoginTokenReceived.cs +129 -0
- package/Source/Systems/Users/LoginTokenReceived.cs.meta +11 -0
- package/Source/Systems/Users/LogoutResult.cs +105 -0
- package/Source/Systems/Users/LogoutResult.cs.meta +11 -0
- package/Source/Systems/Users/PingResponseReceived.cs +106 -0
- package/Source/Systems/Users/PingResponseReceived.cs.meta +11 -0
- package/Source/Systems/Users/Profile.cs +367 -0
- package/Source/Systems/Users/Profile.cs.meta +11 -0
- package/Source/Systems/Users/ProfileResult.cs +110 -0
- package/Source/Systems/Users/ProfileResult.cs.meta +11 -0
- package/Source/Systems/Users/ProviderDetailsResult.cs +142 -0
- package/Source/Systems/Users/ProviderDetailsResult.cs.meta +11 -0
- package/Source/Systems/Users/ThirdPartyProviderDetails.cs +231 -0
- package/Source/Systems/Users/ThirdPartyProviderDetails.cs.meta +11 -0
- package/Source/Systems/Users/UserSystem.cs +1468 -0
- package/Source/Systems/Users/UserSystem.cs.meta +11 -0
- package/Source/Systems/Users.meta +7 -0
- package/Source/Systems/Voip/VoipSystem.cs +132 -0
- package/Source/Systems/Voip/VoipSystem.cs.meta +11 -0
- package/Source/Systems/Voip.meta +7 -0
- package/Source/Systems.meta +7 -0
- package/Source/Web/EResponseCodes.cs +83 -0
- package/Source/Web/EResponseCodes.cs.meta +11 -0
- package/Source/Web.meta +7 -0
- package/Source/WrapperHelper.cs +96 -0
- package/Source/WrapperHelper.cs.meta +11 -0
- package/Source.meta +7 -0
- package/android64/libConnectedSpacesPlatform.so +0 -0
- package/android64/libConnectedSpacesPlatform.so.meta +79 -0
- package/android64/libConnectedSpacesPlatform_D.so +0 -0
- package/android64/libConnectedSpacesPlatform_D.so.meta +79 -0
- package/android64.meta +7 -0
- package/package.json +13 -0
- package/package.json.meta +7 -0
- package/windows/ConnectedSpacesPlatform.dll +0 -0
- package/windows/ConnectedSpacesPlatform.dll.meta +79 -0
- package/windows/ConnectedSpacesPlatform_D.dll +0 -0
- package/windows/ConnectedSpacesPlatform_D.dll.meta +79 -0
- package/windows.meta +7 -0
|
@@ -0,0 +1,252 @@
|
|
|
1
|
+
// WARNING: DO NOT EDIT THIS FILE! IT IS A GENERATED FILE AND
|
|
2
|
+
// ANY CHANGES YOU MAKE WILL BE OVERWRITTEN ON THE NEXT BUILD
|
|
3
|
+
|
|
4
|
+
#nullable enable annotations
|
|
5
|
+
|
|
6
|
+
using System;
|
|
7
|
+
using System.Collections.Generic;
|
|
8
|
+
using System.Reflection;
|
|
9
|
+
using System.Runtime.InteropServices;
|
|
10
|
+
using System.Security;
|
|
11
|
+
using System.Threading.Tasks;
|
|
12
|
+
|
|
13
|
+
namespace Csp.Systems
|
|
14
|
+
{
|
|
15
|
+
/// @ingroup CSPFoundation
|
|
16
|
+
/// <summary>Data class used to contain information when a Response is received from Maintenance Window Server</summary>
|
|
17
|
+
|
|
18
|
+
public class MaintenanceInfoResult : Csp.Services.ResultBase, IDisposable
|
|
19
|
+
{
|
|
20
|
+
internal override string _safeTypeName { get; } = "csp_systems_MaintenanceInfoResult";
|
|
21
|
+
|
|
22
|
+
#region P/Invoke
|
|
23
|
+
#pragma warning disable IDE1006
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
[
|
|
28
|
+
DllImport(
|
|
29
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
30
|
+
"__Internal"
|
|
31
|
+
#elif DEBUG
|
|
32
|
+
"ConnectedSpacesPlatform_D"
|
|
33
|
+
#else
|
|
34
|
+
"ConnectedSpacesPlatform"
|
|
35
|
+
#endif
|
|
36
|
+
),
|
|
37
|
+
SuppressUnmanagedCodeSecurity
|
|
38
|
+
]
|
|
39
|
+
static extern NativePointer csp_systems_MaintenanceInfoResult_Ctor();
|
|
40
|
+
|
|
41
|
+
[
|
|
42
|
+
DllImport(
|
|
43
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
44
|
+
"__Internal"
|
|
45
|
+
#elif DEBUG
|
|
46
|
+
"ConnectedSpacesPlatform_D"
|
|
47
|
+
#else
|
|
48
|
+
"ConnectedSpacesPlatform"
|
|
49
|
+
#endif
|
|
50
|
+
),
|
|
51
|
+
SuppressUnmanagedCodeSecurity
|
|
52
|
+
]
|
|
53
|
+
static extern NativePointer csp_systems_MaintenanceInfoResult_Ctor_voidP(IntPtr arg1);
|
|
54
|
+
|
|
55
|
+
[
|
|
56
|
+
DllImport(
|
|
57
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
58
|
+
"__Internal"
|
|
59
|
+
#elif DEBUG
|
|
60
|
+
"ConnectedSpacesPlatform_D"
|
|
61
|
+
#else
|
|
62
|
+
"ConnectedSpacesPlatform"
|
|
63
|
+
#endif
|
|
64
|
+
),
|
|
65
|
+
SuppressUnmanagedCodeSecurity
|
|
66
|
+
]
|
|
67
|
+
static extern NativePointer csp_systems_MaintenanceInfoResult_Ctor_EResultCode_uint16_t(
|
|
68
|
+
Csp.Services.EResultCode ResCode,
|
|
69
|
+
ushort HttpResCode
|
|
70
|
+
);
|
|
71
|
+
|
|
72
|
+
[
|
|
73
|
+
DllImport(
|
|
74
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
75
|
+
"__Internal"
|
|
76
|
+
#elif DEBUG
|
|
77
|
+
"ConnectedSpacesPlatform_D"
|
|
78
|
+
#else
|
|
79
|
+
"ConnectedSpacesPlatform"
|
|
80
|
+
#endif
|
|
81
|
+
),
|
|
82
|
+
SuppressUnmanagedCodeSecurity
|
|
83
|
+
]
|
|
84
|
+
static extern NativePointer csp_systems_MaintenanceInfoResult_GetMaintenanceInfoResponses_ArrayR(IntPtr @class);
|
|
85
|
+
|
|
86
|
+
[
|
|
87
|
+
DllImport(
|
|
88
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
89
|
+
"__Internal"
|
|
90
|
+
#elif DEBUG
|
|
91
|
+
"ConnectedSpacesPlatform_D"
|
|
92
|
+
#else
|
|
93
|
+
"ConnectedSpacesPlatform"
|
|
94
|
+
#endif
|
|
95
|
+
),
|
|
96
|
+
SuppressUnmanagedCodeSecurity
|
|
97
|
+
]
|
|
98
|
+
static extern bool csp_systems_MaintenanceInfoResult_HasAnyMaintenanceWindowsC_bool(IntPtr @class);
|
|
99
|
+
|
|
100
|
+
[
|
|
101
|
+
DllImport(
|
|
102
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
103
|
+
"__Internal"
|
|
104
|
+
#elif DEBUG
|
|
105
|
+
"ConnectedSpacesPlatform_D"
|
|
106
|
+
#else
|
|
107
|
+
"ConnectedSpacesPlatform"
|
|
108
|
+
#endif
|
|
109
|
+
),
|
|
110
|
+
SuppressUnmanagedCodeSecurity
|
|
111
|
+
]
|
|
112
|
+
static extern NativePointer csp_systems_MaintenanceInfoResult_GetLatestMaintenanceInfoC_MaintenanceInfoRC(
|
|
113
|
+
IntPtr @class
|
|
114
|
+
);
|
|
115
|
+
|
|
116
|
+
[
|
|
117
|
+
DllImport(
|
|
118
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
119
|
+
"__Internal"
|
|
120
|
+
#elif DEBUG
|
|
121
|
+
"ConnectedSpacesPlatform_D"
|
|
122
|
+
#else
|
|
123
|
+
"ConnectedSpacesPlatform"
|
|
124
|
+
#endif
|
|
125
|
+
),
|
|
126
|
+
SuppressUnmanagedCodeSecurity
|
|
127
|
+
]
|
|
128
|
+
static extern NativePointer csp_systems_MaintenanceInfoResult_GetDefaultMaintenanceInfoC_MaintenanceInfoRC(
|
|
129
|
+
IntPtr @class
|
|
130
|
+
);
|
|
131
|
+
|
|
132
|
+
[
|
|
133
|
+
DllImport(
|
|
134
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
135
|
+
"__Internal"
|
|
136
|
+
#elif DEBUG
|
|
137
|
+
"ConnectedSpacesPlatform_D"
|
|
138
|
+
#else
|
|
139
|
+
"ConnectedSpacesPlatform"
|
|
140
|
+
#endif
|
|
141
|
+
),
|
|
142
|
+
SuppressUnmanagedCodeSecurity
|
|
143
|
+
]
|
|
144
|
+
static extern void csp_systems_MaintenanceInfoResult_Dtor(IntPtr @class);
|
|
145
|
+
|
|
146
|
+
#pragma warning restore IDE1006
|
|
147
|
+
#endregion
|
|
148
|
+
|
|
149
|
+
internal MaintenanceInfoResult(NativePointer ptr) : base(ptr) { }
|
|
150
|
+
|
|
151
|
+
public MaintenanceInfoResult(Csp.Services.ResultBase baseInstance)
|
|
152
|
+
: base(new NativePointer(baseInstance._ptr, baseInstance._ownsPtr ? (byte)1 : (byte)0))
|
|
153
|
+
{
|
|
154
|
+
// Prevent previous instance from freeing underlying pointer when destroyed
|
|
155
|
+
baseInstance._ownsPtr = false;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
public MaintenanceInfoResult()
|
|
159
|
+
{
|
|
160
|
+
var np = csp_systems_MaintenanceInfoResult_Ctor();
|
|
161
|
+
_ptr = np.Pointer;
|
|
162
|
+
_ownsPtr = np.OwnsOwnData;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
public MaintenanceInfoResult(IntPtr arg1)
|
|
166
|
+
{
|
|
167
|
+
var np = csp_systems_MaintenanceInfoResult_Ctor_voidP(arg1);
|
|
168
|
+
_ptr = np.Pointer;
|
|
169
|
+
_ownsPtr = np.OwnsOwnData;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
public MaintenanceInfoResult(Csp.Services.EResultCode ResCode, ushort HttpResCode)
|
|
173
|
+
{
|
|
174
|
+
var np = csp_systems_MaintenanceInfoResult_Ctor_EResultCode_uint16_t(ResCode, HttpResCode);
|
|
175
|
+
_ptr = np.Pointer;
|
|
176
|
+
_ownsPtr = np.OwnsOwnData;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
/// <summary>Retrieves response data from the Maintenance Window Server</summary>
|
|
180
|
+
/// <returns>Return all maintenance information available in date order</returns>
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
public Csp.Common.Array<Csp.Systems.MaintenanceInfo> GetMaintenanceInfoResponses()
|
|
184
|
+
{
|
|
185
|
+
var _result = new Csp.Common.Array<Csp.Systems.MaintenanceInfo>(
|
|
186
|
+
csp_systems_MaintenanceInfoResult_GetMaintenanceInfoResponses_ArrayR(_ptr)
|
|
187
|
+
);
|
|
188
|
+
|
|
189
|
+
return _result;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
/// <summary>Can be used to determine if any maintenance windows were defined by the services.</summary>
|
|
193
|
+
/// <returns>Will return true when `getmaintenanceinforesponses` returns a zero-sized array.</returns>
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
public bool HasAnyMaintenanceWindows()
|
|
197
|
+
{
|
|
198
|
+
var _result = csp_systems_MaintenanceInfoResult_HasAnyMaintenanceWindowsC_bool(_ptr);
|
|
199
|
+
|
|
200
|
+
return _result;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
/// <summary>Will return info for the future maintenance window closest to the current time, or default window info if none exist.</summary>
|
|
204
|
+
/// <returns>The closest maintenance window information</returns>
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
public Csp.Systems.MaintenanceInfo GetLatestMaintenanceInfo()
|
|
208
|
+
{
|
|
209
|
+
var _result = new Csp.Systems.MaintenanceInfo(
|
|
210
|
+
csp_systems_MaintenanceInfoResult_GetLatestMaintenanceInfoC_MaintenanceInfoRC(_ptr)
|
|
211
|
+
);
|
|
212
|
+
|
|
213
|
+
return _result;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
/// <summary>Represents a default maintenance window object, which is used when the platform finds no future maintenance windows.</summary>
|
|
217
|
+
/// <returns>What the platform considers to be a default maintenance window</returns>
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
public Csp.Systems.MaintenanceInfo GetDefaultMaintenanceInfo()
|
|
221
|
+
{
|
|
222
|
+
var _result = new Csp.Systems.MaintenanceInfo(
|
|
223
|
+
csp_systems_MaintenanceInfoResult_GetDefaultMaintenanceInfoC_MaintenanceInfoRC(_ptr)
|
|
224
|
+
);
|
|
225
|
+
|
|
226
|
+
return _result;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
~MaintenanceInfoResult()
|
|
230
|
+
{
|
|
231
|
+
//RealDispose();
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
void RealDispose()
|
|
235
|
+
{
|
|
236
|
+
if (_ownsPtr && !_disposed)
|
|
237
|
+
{
|
|
238
|
+
csp_systems_MaintenanceInfoResult_Dtor(_ptr);
|
|
239
|
+
_disposed = true;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
_disposed = true;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
new public void Dispose()
|
|
246
|
+
{
|
|
247
|
+
RealDispose();
|
|
248
|
+
GC.SuppressFinalize(this);
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 4a45a25f7d834f30974e18e66fdd48f3
|
|
3
|
+
MonoImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
defaultReferences: []
|
|
7
|
+
executionOrder: 0
|
|
8
|
+
icon: {instanceID: 0}
|
|
9
|
+
userData: null
|
|
10
|
+
assetBundleName: null
|
|
11
|
+
assetBundleVariant: null
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
// WARNING: DO NOT EDIT THIS FILE! IT IS A GENERATED FILE AND
|
|
2
|
+
// ANY CHANGES YOU MAKE WILL BE OVERWRITTEN ON THE NEXT BUILD
|
|
3
|
+
|
|
4
|
+
#nullable enable annotations
|
|
5
|
+
|
|
6
|
+
using System;
|
|
7
|
+
using System.Collections.Generic;
|
|
8
|
+
using System.Reflection;
|
|
9
|
+
using System.Runtime.InteropServices;
|
|
10
|
+
using System.Security;
|
|
11
|
+
using System.Threading.Tasks;
|
|
12
|
+
|
|
13
|
+
namespace Csp.Systems
|
|
14
|
+
{
|
|
15
|
+
/// @ingroup Maintenance System
|
|
16
|
+
/// <summary>Public facing system that allows interfacing with the Maintenance Window Server.</summary>
|
|
17
|
+
/// <remarks>This system can be used to query if there is currently a planned outage</remarks>
|
|
18
|
+
/// <remarks>and can also be used to check for up coming maintenances outages</remarks>
|
|
19
|
+
|
|
20
|
+
public class MaintenanceSystem : Csp.Systems.SystemBase
|
|
21
|
+
{
|
|
22
|
+
internal override string _safeTypeName { get; } = "csp_systems_MaintenanceSystem";
|
|
23
|
+
|
|
24
|
+
#region P/Invoke
|
|
25
|
+
#pragma warning disable IDE1006
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
[
|
|
30
|
+
DllImport(
|
|
31
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
32
|
+
"__Internal"
|
|
33
|
+
#elif DEBUG
|
|
34
|
+
"ConnectedSpacesPlatform_D"
|
|
35
|
+
#else
|
|
36
|
+
"ConnectedSpacesPlatform"
|
|
37
|
+
#endif
|
|
38
|
+
),
|
|
39
|
+
SuppressUnmanagedCodeSecurity
|
|
40
|
+
]
|
|
41
|
+
static extern void csp_systems_MaintenanceSystem_Dtor(IntPtr @class);
|
|
42
|
+
|
|
43
|
+
[
|
|
44
|
+
DllImport(
|
|
45
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
46
|
+
"__Internal"
|
|
47
|
+
#elif DEBUG
|
|
48
|
+
"ConnectedSpacesPlatform_D"
|
|
49
|
+
#else
|
|
50
|
+
"ConnectedSpacesPlatform"
|
|
51
|
+
#endif
|
|
52
|
+
),
|
|
53
|
+
SuppressUnmanagedCodeSecurity
|
|
54
|
+
]
|
|
55
|
+
static extern void csp_systems_MaintenanceSystem_GetMaintenanceInfo_void_MaintenanceInfoCallback(
|
|
56
|
+
IntPtr @class,
|
|
57
|
+
GetMaintenanceInfoCallbackDelegate callback,
|
|
58
|
+
IntPtr callbackStateObject
|
|
59
|
+
);
|
|
60
|
+
|
|
61
|
+
[
|
|
62
|
+
DllImport(
|
|
63
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
64
|
+
"__Internal"
|
|
65
|
+
#elif DEBUG
|
|
66
|
+
"ConnectedSpacesPlatform_D"
|
|
67
|
+
#else
|
|
68
|
+
"ConnectedSpacesPlatform"
|
|
69
|
+
#endif
|
|
70
|
+
),
|
|
71
|
+
SuppressUnmanagedCodeSecurity
|
|
72
|
+
]
|
|
73
|
+
static extern NativePointer csp_systems_MaintenanceSystem_Ctor();
|
|
74
|
+
|
|
75
|
+
#pragma warning restore IDE1006
|
|
76
|
+
#endregion
|
|
77
|
+
|
|
78
|
+
internal MaintenanceSystem(NativePointer ptr) : base(ptr) { }
|
|
79
|
+
|
|
80
|
+
public MaintenanceSystem(Csp.Systems.SystemBase baseInstance)
|
|
81
|
+
: base(new NativePointer(baseInstance._ptr, baseInstance._ownsPtr ? (byte)1 : (byte)0))
|
|
82
|
+
{
|
|
83
|
+
// Prevent previous instance from freeing underlying pointer when destroyed
|
|
84
|
+
baseInstance._ownsPtr = false;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
delegate void GetMaintenanceInfoCallbackDelegate(IntPtr _StateObject__, NativePointer Result);
|
|
88
|
+
|
|
89
|
+
~MaintenanceSystem()
|
|
90
|
+
{
|
|
91
|
+
//RealDispose();
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
void RealDispose()
|
|
95
|
+
{
|
|
96
|
+
if (_ownsPtr && !_disposed)
|
|
97
|
+
{
|
|
98
|
+
csp_systems_MaintenanceSystem_Dtor(_ptr);
|
|
99
|
+
_disposed = true;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
_disposed = true;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
new public void Dispose()
|
|
106
|
+
{
|
|
107
|
+
RealDispose();
|
|
108
|
+
GC.SuppressFinalize(this);
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
#if !UNITY_EDITOR && ENABLE_IL2CPP
|
|
112
|
+
[AOT.MonoPInvokeCallback (typeof (GetMaintenanceInfoCallbackDelegate))]
|
|
113
|
+
#endif
|
|
114
|
+
static void GetMaintenanceInfoCallbackDelegateFunction(IntPtr _StateObject__, NativePointer _Result)
|
|
115
|
+
{
|
|
116
|
+
var _handle = (GCHandle)_StateObject__;
|
|
117
|
+
var tcs = (TaskCompletionSource<Csp.Systems.MaintenanceInfoResult>)_handle.Target;
|
|
118
|
+
var _this = (MaintenanceSystem)tcs.Task.AsyncState;
|
|
119
|
+
|
|
120
|
+
var task_result = new Csp.Systems.MaintenanceInfoResult(_Result);
|
|
121
|
+
|
|
122
|
+
if (task_result.GetResultCode() == Csp.Services.EResultCode.InProgress)
|
|
123
|
+
{
|
|
124
|
+
return;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
tcs.SetResult(task_result);
|
|
128
|
+
_handle.Free();
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
static readonly GetMaintenanceInfoCallbackDelegate GetMaintenanceInfoDelegateInstance =
|
|
132
|
+
GetMaintenanceInfoCallbackDelegateFunction;
|
|
133
|
+
|
|
134
|
+
/// <summary>Receives information on planned maintenances outages schedules for the future</summary>
|
|
135
|
+
/// <returns>The result for the request</returns>
|
|
136
|
+
|
|
137
|
+
public Task<Csp.Systems.MaintenanceInfoResult> GetMaintenanceInfo()
|
|
138
|
+
{
|
|
139
|
+
var tcs = new TaskCompletionSource<Csp.Systems.MaintenanceInfoResult>(this);
|
|
140
|
+
var handle = GCHandle.Alloc(tcs);
|
|
141
|
+
|
|
142
|
+
csp_systems_MaintenanceSystem_GetMaintenanceInfo_void_MaintenanceInfoCallback(
|
|
143
|
+
_ptr,
|
|
144
|
+
GetMaintenanceInfoDelegateInstance,
|
|
145
|
+
(IntPtr)handle
|
|
146
|
+
);
|
|
147
|
+
|
|
148
|
+
return tcs.Task;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
protected MaintenanceSystem() { }
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 31ed196ca90f474fbfb7b039e7213808
|
|
3
|
+
MonoImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
defaultReferences: []
|
|
7
|
+
executionOrder: 0
|
|
8
|
+
icon: {instanceID: 0}
|
|
9
|
+
userData: null
|
|
10
|
+
assetBundleName: null
|
|
11
|
+
assetBundleVariant: null
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
// WARNING: DO NOT EDIT THIS FILE! IT IS A GENERATED FILE AND
|
|
2
|
+
// ANY CHANGES YOU MAKE WILL BE OVERWRITTEN ON THE NEXT BUILD
|
|
3
|
+
|
|
4
|
+
#nullable enable annotations
|
|
5
|
+
|
|
6
|
+
using System;
|
|
7
|
+
using System.Collections.Generic;
|
|
8
|
+
using System.Reflection;
|
|
9
|
+
using System.Runtime.InteropServices;
|
|
10
|
+
using System.Security;
|
|
11
|
+
using System.Threading.Tasks;
|
|
12
|
+
|
|
13
|
+
namespace Csp.Systems
|
|
14
|
+
{
|
|
15
|
+
/// <summary>A result handler that is used to notify a user of an error.</summary>
|
|
16
|
+
|
|
17
|
+
public class NullResult : Csp.Services.ResultBase, IDisposable
|
|
18
|
+
{
|
|
19
|
+
internal override string _safeTypeName { get; } = "csp_systems_NullResult";
|
|
20
|
+
|
|
21
|
+
#region P/Invoke
|
|
22
|
+
#pragma warning disable IDE1006
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
[
|
|
27
|
+
DllImport(
|
|
28
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
29
|
+
"__Internal"
|
|
30
|
+
#elif DEBUG
|
|
31
|
+
"ConnectedSpacesPlatform_D"
|
|
32
|
+
#else
|
|
33
|
+
"ConnectedSpacesPlatform"
|
|
34
|
+
#endif
|
|
35
|
+
),
|
|
36
|
+
SuppressUnmanagedCodeSecurity
|
|
37
|
+
]
|
|
38
|
+
static extern NativePointer csp_systems_NullResult_Ctor_EResultCode_uint16_t(
|
|
39
|
+
Csp.Services.EResultCode ResCode,
|
|
40
|
+
ushort HttpResCode
|
|
41
|
+
);
|
|
42
|
+
|
|
43
|
+
[
|
|
44
|
+
DllImport(
|
|
45
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
46
|
+
"__Internal"
|
|
47
|
+
#elif DEBUG
|
|
48
|
+
"ConnectedSpacesPlatform_D"
|
|
49
|
+
#else
|
|
50
|
+
"ConnectedSpacesPlatform"
|
|
51
|
+
#endif
|
|
52
|
+
),
|
|
53
|
+
SuppressUnmanagedCodeSecurity
|
|
54
|
+
]
|
|
55
|
+
static extern NativePointer csp_systems_NullResult_Ctor();
|
|
56
|
+
|
|
57
|
+
[
|
|
58
|
+
DllImport(
|
|
59
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
60
|
+
"__Internal"
|
|
61
|
+
#elif DEBUG
|
|
62
|
+
"ConnectedSpacesPlatform_D"
|
|
63
|
+
#else
|
|
64
|
+
"ConnectedSpacesPlatform"
|
|
65
|
+
#endif
|
|
66
|
+
),
|
|
67
|
+
SuppressUnmanagedCodeSecurity
|
|
68
|
+
]
|
|
69
|
+
static extern NativePointer csp_systems_NullResult_Ctor_voidP(IntPtr arg1);
|
|
70
|
+
|
|
71
|
+
[
|
|
72
|
+
DllImport(
|
|
73
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
74
|
+
"__Internal"
|
|
75
|
+
#elif DEBUG
|
|
76
|
+
"ConnectedSpacesPlatform_D"
|
|
77
|
+
#else
|
|
78
|
+
"ConnectedSpacesPlatform"
|
|
79
|
+
#endif
|
|
80
|
+
),
|
|
81
|
+
SuppressUnmanagedCodeSecurity
|
|
82
|
+
]
|
|
83
|
+
static extern void csp_systems_NullResult_Dtor(IntPtr @class);
|
|
84
|
+
|
|
85
|
+
#pragma warning restore IDE1006
|
|
86
|
+
#endregion
|
|
87
|
+
|
|
88
|
+
internal NullResult(NativePointer ptr) : base(ptr) { }
|
|
89
|
+
|
|
90
|
+
public NullResult(Csp.Services.ResultBase baseInstance)
|
|
91
|
+
: base(new NativePointer(baseInstance._ptr, baseInstance._ownsPtr ? (byte)1 : (byte)0))
|
|
92
|
+
{
|
|
93
|
+
// Prevent previous instance from freeing underlying pointer when destroyed
|
|
94
|
+
baseInstance._ownsPtr = false;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
protected NullResult() { }
|
|
98
|
+
|
|
99
|
+
~NullResult()
|
|
100
|
+
{
|
|
101
|
+
//RealDispose();
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
void RealDispose()
|
|
105
|
+
{
|
|
106
|
+
if (_ownsPtr && !_disposed)
|
|
107
|
+
{
|
|
108
|
+
csp_systems_NullResult_Dtor(_ptr);
|
|
109
|
+
_disposed = true;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
_disposed = true;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
new public void Dispose()
|
|
116
|
+
{
|
|
117
|
+
RealDispose();
|
|
118
|
+
GC.SuppressFinalize(this);
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 46dc7486414742539589c899e087f933
|
|
3
|
+
MonoImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
defaultReferences: []
|
|
7
|
+
executionOrder: 0
|
|
8
|
+
icon: {instanceID: 0}
|
|
9
|
+
userData: null
|
|
10
|
+
assetBundleName: null
|
|
11
|
+
assetBundleVariant: null
|