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,269 @@
|
|
|
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 ECommerce System
|
|
16
|
+
/// <summary>Represents media information for a product</summary>
|
|
17
|
+
|
|
18
|
+
public class ProductMediaInfo : NativeClassWrapper, IDisposable
|
|
19
|
+
{
|
|
20
|
+
internal override string _safeTypeName { get; } = "csp_systems_ProductMediaInfo";
|
|
21
|
+
|
|
22
|
+
#region P/Invoke
|
|
23
|
+
#pragma warning disable IDE1006
|
|
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 IntPtr csp_systems_ProductMediaInfo__Get_MediaContentType(IntPtr @class);
|
|
39
|
+
|
|
40
|
+
[
|
|
41
|
+
DllImport(
|
|
42
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
43
|
+
"__Internal"
|
|
44
|
+
#elif DEBUG
|
|
45
|
+
"ConnectedSpacesPlatform_D"
|
|
46
|
+
#else
|
|
47
|
+
"ConnectedSpacesPlatform"
|
|
48
|
+
#endif
|
|
49
|
+
),
|
|
50
|
+
SuppressUnmanagedCodeSecurity
|
|
51
|
+
]
|
|
52
|
+
static extern void csp_systems_ProductMediaInfo__Set_MediaContentType(IntPtr @class, IntPtr value);
|
|
53
|
+
|
|
54
|
+
[
|
|
55
|
+
DllImport(
|
|
56
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
57
|
+
"__Internal"
|
|
58
|
+
#elif DEBUG
|
|
59
|
+
"ConnectedSpacesPlatform_D"
|
|
60
|
+
#else
|
|
61
|
+
"ConnectedSpacesPlatform"
|
|
62
|
+
#endif
|
|
63
|
+
),
|
|
64
|
+
SuppressUnmanagedCodeSecurity
|
|
65
|
+
]
|
|
66
|
+
static extern IntPtr csp_systems_ProductMediaInfo__Get_Alt(IntPtr @class);
|
|
67
|
+
|
|
68
|
+
[
|
|
69
|
+
DllImport(
|
|
70
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
71
|
+
"__Internal"
|
|
72
|
+
#elif DEBUG
|
|
73
|
+
"ConnectedSpacesPlatform_D"
|
|
74
|
+
#else
|
|
75
|
+
"ConnectedSpacesPlatform"
|
|
76
|
+
#endif
|
|
77
|
+
),
|
|
78
|
+
SuppressUnmanagedCodeSecurity
|
|
79
|
+
]
|
|
80
|
+
static extern void csp_systems_ProductMediaInfo__Set_Alt(IntPtr @class, IntPtr value);
|
|
81
|
+
|
|
82
|
+
[
|
|
83
|
+
DllImport(
|
|
84
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
85
|
+
"__Internal"
|
|
86
|
+
#elif DEBUG
|
|
87
|
+
"ConnectedSpacesPlatform_D"
|
|
88
|
+
#else
|
|
89
|
+
"ConnectedSpacesPlatform"
|
|
90
|
+
#endif
|
|
91
|
+
),
|
|
92
|
+
SuppressUnmanagedCodeSecurity
|
|
93
|
+
]
|
|
94
|
+
static extern IntPtr csp_systems_ProductMediaInfo__Get_Url(IntPtr @class);
|
|
95
|
+
|
|
96
|
+
[
|
|
97
|
+
DllImport(
|
|
98
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
99
|
+
"__Internal"
|
|
100
|
+
#elif DEBUG
|
|
101
|
+
"ConnectedSpacesPlatform_D"
|
|
102
|
+
#else
|
|
103
|
+
"ConnectedSpacesPlatform"
|
|
104
|
+
#endif
|
|
105
|
+
),
|
|
106
|
+
SuppressUnmanagedCodeSecurity
|
|
107
|
+
]
|
|
108
|
+
static extern void csp_systems_ProductMediaInfo__Set_Url(IntPtr @class, IntPtr value);
|
|
109
|
+
|
|
110
|
+
[
|
|
111
|
+
DllImport(
|
|
112
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
113
|
+
"__Internal"
|
|
114
|
+
#elif DEBUG
|
|
115
|
+
"ConnectedSpacesPlatform_D"
|
|
116
|
+
#else
|
|
117
|
+
"ConnectedSpacesPlatform"
|
|
118
|
+
#endif
|
|
119
|
+
),
|
|
120
|
+
SuppressUnmanagedCodeSecurity
|
|
121
|
+
]
|
|
122
|
+
static extern int csp_systems_ProductMediaInfo__Get_Width(IntPtr @class);
|
|
123
|
+
|
|
124
|
+
[
|
|
125
|
+
DllImport(
|
|
126
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
127
|
+
"__Internal"
|
|
128
|
+
#elif DEBUG
|
|
129
|
+
"ConnectedSpacesPlatform_D"
|
|
130
|
+
#else
|
|
131
|
+
"ConnectedSpacesPlatform"
|
|
132
|
+
#endif
|
|
133
|
+
),
|
|
134
|
+
SuppressUnmanagedCodeSecurity
|
|
135
|
+
]
|
|
136
|
+
static extern void csp_systems_ProductMediaInfo__Set_Width(IntPtr @class, int value);
|
|
137
|
+
|
|
138
|
+
[
|
|
139
|
+
DllImport(
|
|
140
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
141
|
+
"__Internal"
|
|
142
|
+
#elif DEBUG
|
|
143
|
+
"ConnectedSpacesPlatform_D"
|
|
144
|
+
#else
|
|
145
|
+
"ConnectedSpacesPlatform"
|
|
146
|
+
#endif
|
|
147
|
+
),
|
|
148
|
+
SuppressUnmanagedCodeSecurity
|
|
149
|
+
]
|
|
150
|
+
static extern int csp_systems_ProductMediaInfo__Get_Height(IntPtr @class);
|
|
151
|
+
|
|
152
|
+
[
|
|
153
|
+
DllImport(
|
|
154
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
155
|
+
"__Internal"
|
|
156
|
+
#elif DEBUG
|
|
157
|
+
"ConnectedSpacesPlatform_D"
|
|
158
|
+
#else
|
|
159
|
+
"ConnectedSpacesPlatform"
|
|
160
|
+
#endif
|
|
161
|
+
),
|
|
162
|
+
SuppressUnmanagedCodeSecurity
|
|
163
|
+
]
|
|
164
|
+
static extern void csp_systems_ProductMediaInfo__Set_Height(IntPtr @class, int value);
|
|
165
|
+
|
|
166
|
+
[
|
|
167
|
+
DllImport(
|
|
168
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
169
|
+
"__Internal"
|
|
170
|
+
#elif DEBUG
|
|
171
|
+
"ConnectedSpacesPlatform_D"
|
|
172
|
+
#else
|
|
173
|
+
"ConnectedSpacesPlatform"
|
|
174
|
+
#endif
|
|
175
|
+
),
|
|
176
|
+
SuppressUnmanagedCodeSecurity
|
|
177
|
+
]
|
|
178
|
+
static extern NativePointer csp_systems_ProductMediaInfo_Ctor();
|
|
179
|
+
|
|
180
|
+
[
|
|
181
|
+
DllImport(
|
|
182
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
183
|
+
"__Internal"
|
|
184
|
+
#elif DEBUG
|
|
185
|
+
"ConnectedSpacesPlatform_D"
|
|
186
|
+
#else
|
|
187
|
+
"ConnectedSpacesPlatform"
|
|
188
|
+
#endif
|
|
189
|
+
),
|
|
190
|
+
SuppressUnmanagedCodeSecurity
|
|
191
|
+
]
|
|
192
|
+
static extern void csp_systems_ProductMediaInfo_Dtor(IntPtr @class);
|
|
193
|
+
|
|
194
|
+
#pragma warning restore IDE1006
|
|
195
|
+
#endregion
|
|
196
|
+
|
|
197
|
+
internal ProductMediaInfo(NativePointer ptr) : base(ptr) { }
|
|
198
|
+
|
|
199
|
+
/// <summary>Type of media content used.</summary>
|
|
200
|
+
|
|
201
|
+
public string MediaContentType
|
|
202
|
+
{
|
|
203
|
+
get => WrapperHelper.NativeUTF8ToString(csp_systems_ProductMediaInfo__Get_MediaContentType(_ptr));
|
|
204
|
+
set => csp_systems_ProductMediaInfo__Set_MediaContentType(_ptr, WrapperHelper.StringToNativeUTF8(value));
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
/// <summary>Alternative description of the media.</summary>
|
|
208
|
+
|
|
209
|
+
public string Alt
|
|
210
|
+
{
|
|
211
|
+
get => WrapperHelper.NativeUTF8ToString(csp_systems_ProductMediaInfo__Get_Alt(_ptr));
|
|
212
|
+
set => csp_systems_ProductMediaInfo__Set_Alt(_ptr, WrapperHelper.StringToNativeUTF8(value));
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
/// <summary>Url of the media.</summary>
|
|
216
|
+
|
|
217
|
+
public string Url
|
|
218
|
+
{
|
|
219
|
+
get => WrapperHelper.NativeUTF8ToString(csp_systems_ProductMediaInfo__Get_Url(_ptr));
|
|
220
|
+
set => csp_systems_ProductMediaInfo__Set_Url(_ptr, WrapperHelper.StringToNativeUTF8(value));
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
/// <summary>Width of the media.</summary>
|
|
224
|
+
|
|
225
|
+
public int Width
|
|
226
|
+
{
|
|
227
|
+
get => csp_systems_ProductMediaInfo__Get_Width(_ptr);
|
|
228
|
+
set => csp_systems_ProductMediaInfo__Set_Width(_ptr, value);
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
/// <summary>Height of the media.</summary>
|
|
232
|
+
|
|
233
|
+
public int Height
|
|
234
|
+
{
|
|
235
|
+
get => csp_systems_ProductMediaInfo__Get_Height(_ptr);
|
|
236
|
+
set => csp_systems_ProductMediaInfo__Set_Height(_ptr, value);
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
public ProductMediaInfo()
|
|
240
|
+
{
|
|
241
|
+
var np = csp_systems_ProductMediaInfo_Ctor();
|
|
242
|
+
_ptr = np.Pointer;
|
|
243
|
+
_ownsPtr = np.OwnsOwnData;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
~ProductMediaInfo()
|
|
247
|
+
{
|
|
248
|
+
//RealDispose();
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
void RealDispose()
|
|
252
|
+
{
|
|
253
|
+
if (_ownsPtr && !_disposed)
|
|
254
|
+
{
|
|
255
|
+
csp_systems_ProductMediaInfo_Dtor(_ptr);
|
|
256
|
+
_disposed = true;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
_disposed = true;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
public void Dispose()
|
|
263
|
+
{
|
|
264
|
+
RealDispose();
|
|
265
|
+
GC.SuppressFinalize(this);
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 8db2bbe234e4493081471a3ce646b4c6
|
|
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,342 @@
|
|
|
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 ECommerce System
|
|
16
|
+
/// <summary>Represents variant information for a product</summary>
|
|
17
|
+
|
|
18
|
+
public class ProductVariantInfo : NativeClassWrapper, IDisposable
|
|
19
|
+
{
|
|
20
|
+
internal override string _safeTypeName { get; } = "csp_systems_ProductVariantInfo";
|
|
21
|
+
|
|
22
|
+
#region P/Invoke
|
|
23
|
+
#pragma warning disable IDE1006
|
|
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 IntPtr csp_systems_ProductVariantInfo__Get_Id(IntPtr @class);
|
|
39
|
+
|
|
40
|
+
[
|
|
41
|
+
DllImport(
|
|
42
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
43
|
+
"__Internal"
|
|
44
|
+
#elif DEBUG
|
|
45
|
+
"ConnectedSpacesPlatform_D"
|
|
46
|
+
#else
|
|
47
|
+
"ConnectedSpacesPlatform"
|
|
48
|
+
#endif
|
|
49
|
+
),
|
|
50
|
+
SuppressUnmanagedCodeSecurity
|
|
51
|
+
]
|
|
52
|
+
static extern void csp_systems_ProductVariantInfo__Set_Id(IntPtr @class, IntPtr value);
|
|
53
|
+
|
|
54
|
+
[
|
|
55
|
+
DllImport(
|
|
56
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
57
|
+
"__Internal"
|
|
58
|
+
#elif DEBUG
|
|
59
|
+
"ConnectedSpacesPlatform_D"
|
|
60
|
+
#else
|
|
61
|
+
"ConnectedSpacesPlatform"
|
|
62
|
+
#endif
|
|
63
|
+
),
|
|
64
|
+
SuppressUnmanagedCodeSecurity
|
|
65
|
+
]
|
|
66
|
+
static extern IntPtr csp_systems_ProductVariantInfo__Get_Title(IntPtr @class);
|
|
67
|
+
|
|
68
|
+
[
|
|
69
|
+
DllImport(
|
|
70
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
71
|
+
"__Internal"
|
|
72
|
+
#elif DEBUG
|
|
73
|
+
"ConnectedSpacesPlatform_D"
|
|
74
|
+
#else
|
|
75
|
+
"ConnectedSpacesPlatform"
|
|
76
|
+
#endif
|
|
77
|
+
),
|
|
78
|
+
SuppressUnmanagedCodeSecurity
|
|
79
|
+
]
|
|
80
|
+
static extern void csp_systems_ProductVariantInfo__Set_Title(IntPtr @class, IntPtr value);
|
|
81
|
+
|
|
82
|
+
[
|
|
83
|
+
DllImport(
|
|
84
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
85
|
+
"__Internal"
|
|
86
|
+
#elif DEBUG
|
|
87
|
+
"ConnectedSpacesPlatform_D"
|
|
88
|
+
#else
|
|
89
|
+
"ConnectedSpacesPlatform"
|
|
90
|
+
#endif
|
|
91
|
+
),
|
|
92
|
+
SuppressUnmanagedCodeSecurity
|
|
93
|
+
]
|
|
94
|
+
static extern IntPtr csp_systems_ProductVariantInfo__Get_Url(IntPtr @class);
|
|
95
|
+
|
|
96
|
+
[
|
|
97
|
+
DllImport(
|
|
98
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
99
|
+
"__Internal"
|
|
100
|
+
#elif DEBUG
|
|
101
|
+
"ConnectedSpacesPlatform_D"
|
|
102
|
+
#else
|
|
103
|
+
"ConnectedSpacesPlatform"
|
|
104
|
+
#endif
|
|
105
|
+
),
|
|
106
|
+
SuppressUnmanagedCodeSecurity
|
|
107
|
+
]
|
|
108
|
+
static extern void csp_systems_ProductVariantInfo__Set_Url(IntPtr @class, IntPtr value);
|
|
109
|
+
|
|
110
|
+
[
|
|
111
|
+
DllImport(
|
|
112
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
113
|
+
"__Internal"
|
|
114
|
+
#elif DEBUG
|
|
115
|
+
"ConnectedSpacesPlatform_D"
|
|
116
|
+
#else
|
|
117
|
+
"ConnectedSpacesPlatform"
|
|
118
|
+
#endif
|
|
119
|
+
),
|
|
120
|
+
SuppressUnmanagedCodeSecurity
|
|
121
|
+
]
|
|
122
|
+
static extern bool csp_systems_ProductVariantInfo__Get_AvailableForSale(IntPtr @class);
|
|
123
|
+
|
|
124
|
+
[
|
|
125
|
+
DllImport(
|
|
126
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
127
|
+
"__Internal"
|
|
128
|
+
#elif DEBUG
|
|
129
|
+
"ConnectedSpacesPlatform_D"
|
|
130
|
+
#else
|
|
131
|
+
"ConnectedSpacesPlatform"
|
|
132
|
+
#endif
|
|
133
|
+
),
|
|
134
|
+
SuppressUnmanagedCodeSecurity
|
|
135
|
+
]
|
|
136
|
+
static extern void csp_systems_ProductVariantInfo__Set_AvailableForSale(IntPtr @class, bool value);
|
|
137
|
+
|
|
138
|
+
[
|
|
139
|
+
DllImport(
|
|
140
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
141
|
+
"__Internal"
|
|
142
|
+
#elif DEBUG
|
|
143
|
+
"ConnectedSpacesPlatform_D"
|
|
144
|
+
#else
|
|
145
|
+
"ConnectedSpacesPlatform"
|
|
146
|
+
#endif
|
|
147
|
+
),
|
|
148
|
+
SuppressUnmanagedCodeSecurity
|
|
149
|
+
]
|
|
150
|
+
static extern NativePointer csp_systems_ProductVariantInfo__Get_Media(IntPtr @class);
|
|
151
|
+
|
|
152
|
+
[
|
|
153
|
+
DllImport(
|
|
154
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
155
|
+
"__Internal"
|
|
156
|
+
#elif DEBUG
|
|
157
|
+
"ConnectedSpacesPlatform_D"
|
|
158
|
+
#else
|
|
159
|
+
"ConnectedSpacesPlatform"
|
|
160
|
+
#endif
|
|
161
|
+
),
|
|
162
|
+
SuppressUnmanagedCodeSecurity
|
|
163
|
+
]
|
|
164
|
+
static extern void csp_systems_ProductVariantInfo__Set_Media(IntPtr @class, IntPtr value);
|
|
165
|
+
|
|
166
|
+
[
|
|
167
|
+
DllImport(
|
|
168
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
169
|
+
"__Internal"
|
|
170
|
+
#elif DEBUG
|
|
171
|
+
"ConnectedSpacesPlatform_D"
|
|
172
|
+
#else
|
|
173
|
+
"ConnectedSpacesPlatform"
|
|
174
|
+
#endif
|
|
175
|
+
),
|
|
176
|
+
SuppressUnmanagedCodeSecurity
|
|
177
|
+
]
|
|
178
|
+
static extern NativePointer csp_systems_ProductVariantInfo__Get_Options(IntPtr @class);
|
|
179
|
+
|
|
180
|
+
[
|
|
181
|
+
DllImport(
|
|
182
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
183
|
+
"__Internal"
|
|
184
|
+
#elif DEBUG
|
|
185
|
+
"ConnectedSpacesPlatform_D"
|
|
186
|
+
#else
|
|
187
|
+
"ConnectedSpacesPlatform"
|
|
188
|
+
#endif
|
|
189
|
+
),
|
|
190
|
+
SuppressUnmanagedCodeSecurity
|
|
191
|
+
]
|
|
192
|
+
static extern void csp_systems_ProductVariantInfo__Set_Options(IntPtr @class, IntPtr value);
|
|
193
|
+
|
|
194
|
+
[
|
|
195
|
+
DllImport(
|
|
196
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
197
|
+
"__Internal"
|
|
198
|
+
#elif DEBUG
|
|
199
|
+
"ConnectedSpacesPlatform_D"
|
|
200
|
+
#else
|
|
201
|
+
"ConnectedSpacesPlatform"
|
|
202
|
+
#endif
|
|
203
|
+
),
|
|
204
|
+
SuppressUnmanagedCodeSecurity
|
|
205
|
+
]
|
|
206
|
+
static extern NativePointer csp_systems_ProductVariantInfo__Get_UnitPrice(IntPtr @class);
|
|
207
|
+
|
|
208
|
+
[
|
|
209
|
+
DllImport(
|
|
210
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
211
|
+
"__Internal"
|
|
212
|
+
#elif DEBUG
|
|
213
|
+
"ConnectedSpacesPlatform_D"
|
|
214
|
+
#else
|
|
215
|
+
"ConnectedSpacesPlatform"
|
|
216
|
+
#endif
|
|
217
|
+
),
|
|
218
|
+
SuppressUnmanagedCodeSecurity
|
|
219
|
+
]
|
|
220
|
+
static extern void csp_systems_ProductVariantInfo__Set_UnitPrice(IntPtr @class, IntPtr value);
|
|
221
|
+
|
|
222
|
+
[
|
|
223
|
+
DllImport(
|
|
224
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
225
|
+
"__Internal"
|
|
226
|
+
#elif DEBUG
|
|
227
|
+
"ConnectedSpacesPlatform_D"
|
|
228
|
+
#else
|
|
229
|
+
"ConnectedSpacesPlatform"
|
|
230
|
+
#endif
|
|
231
|
+
),
|
|
232
|
+
SuppressUnmanagedCodeSecurity
|
|
233
|
+
]
|
|
234
|
+
static extern NativePointer csp_systems_ProductVariantInfo_Ctor();
|
|
235
|
+
|
|
236
|
+
[
|
|
237
|
+
DllImport(
|
|
238
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
239
|
+
"__Internal"
|
|
240
|
+
#elif DEBUG
|
|
241
|
+
"ConnectedSpacesPlatform_D"
|
|
242
|
+
#else
|
|
243
|
+
"ConnectedSpacesPlatform"
|
|
244
|
+
#endif
|
|
245
|
+
),
|
|
246
|
+
SuppressUnmanagedCodeSecurity
|
|
247
|
+
]
|
|
248
|
+
static extern void csp_systems_ProductVariantInfo_Dtor(IntPtr @class);
|
|
249
|
+
|
|
250
|
+
#pragma warning restore IDE1006
|
|
251
|
+
#endregion
|
|
252
|
+
|
|
253
|
+
internal ProductVariantInfo(NativePointer ptr) : base(ptr) { }
|
|
254
|
+
|
|
255
|
+
/// <summary>Id of the variant.</summary>
|
|
256
|
+
|
|
257
|
+
public string Id
|
|
258
|
+
{
|
|
259
|
+
get => WrapperHelper.NativeUTF8ToString(csp_systems_ProductVariantInfo__Get_Id(_ptr));
|
|
260
|
+
set => csp_systems_ProductVariantInfo__Set_Id(_ptr, WrapperHelper.StringToNativeUTF8(value));
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
/// <summary>Title of the variant.</summary>
|
|
264
|
+
|
|
265
|
+
public string Title
|
|
266
|
+
{
|
|
267
|
+
get => WrapperHelper.NativeUTF8ToString(csp_systems_ProductVariantInfo__Get_Title(_ptr));
|
|
268
|
+
set => csp_systems_ProductVariantInfo__Set_Title(_ptr, WrapperHelper.StringToNativeUTF8(value));
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
/// <summary>Url of variant.</summary>
|
|
272
|
+
|
|
273
|
+
public string Url
|
|
274
|
+
{
|
|
275
|
+
get => WrapperHelper.NativeUTF8ToString(csp_systems_ProductVariantInfo__Get_Url(_ptr));
|
|
276
|
+
set => csp_systems_ProductVariantInfo__Set_Url(_ptr, WrapperHelper.StringToNativeUTF8(value));
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
/// <summary>Is variant available for sale.</summary>
|
|
280
|
+
|
|
281
|
+
public bool AvailableForSale
|
|
282
|
+
{
|
|
283
|
+
get => csp_systems_ProductVariantInfo__Get_AvailableForSale(_ptr);
|
|
284
|
+
set => csp_systems_ProductVariantInfo__Set_AvailableForSale(_ptr, value);
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
/// <summary>Media for a variant</summary>
|
|
288
|
+
|
|
289
|
+
public Csp.Systems.ProductMediaInfo Media
|
|
290
|
+
{
|
|
291
|
+
get => new Csp.Systems.ProductMediaInfo(csp_systems_ProductVariantInfo__Get_Media(_ptr));
|
|
292
|
+
set => csp_systems_ProductVariantInfo__Set_Media(_ptr, value._ptr);
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
/// <summary>Additional options for variant</summary>
|
|
296
|
+
|
|
297
|
+
public Csp.Common.Array<Csp.Systems.VariantOptionInfo> Options
|
|
298
|
+
{
|
|
299
|
+
get =>
|
|
300
|
+
new Csp.Common.Array<Csp.Systems.VariantOptionInfo>(csp_systems_ProductVariantInfo__Get_Options(_ptr));
|
|
301
|
+
set => csp_systems_ProductVariantInfo__Set_Options(_ptr, value._ptr);
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
/// <summary>Unit price for the variant</summary>
|
|
305
|
+
|
|
306
|
+
public Csp.Systems.CurrencyInfo UnitPrice
|
|
307
|
+
{
|
|
308
|
+
get => new Csp.Systems.CurrencyInfo(csp_systems_ProductVariantInfo__Get_UnitPrice(_ptr));
|
|
309
|
+
set => csp_systems_ProductVariantInfo__Set_UnitPrice(_ptr, value._ptr);
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
public ProductVariantInfo()
|
|
313
|
+
{
|
|
314
|
+
var np = csp_systems_ProductVariantInfo_Ctor();
|
|
315
|
+
_ptr = np.Pointer;
|
|
316
|
+
_ownsPtr = np.OwnsOwnData;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
~ProductVariantInfo()
|
|
320
|
+
{
|
|
321
|
+
//RealDispose();
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
void RealDispose()
|
|
325
|
+
{
|
|
326
|
+
if (_ownsPtr && !_disposed)
|
|
327
|
+
{
|
|
328
|
+
csp_systems_ProductVariantInfo_Dtor(_ptr);
|
|
329
|
+
_disposed = true;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
_disposed = true;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
public void Dispose()
|
|
336
|
+
{
|
|
337
|
+
RealDispose();
|
|
338
|
+
GC.SuppressFinalize(this);
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
}
|
|
342
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 229c299ff263489f95531f11618f203f
|
|
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
|