connected-spaces-platform.web 5.4.0 → 5.5.0

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.
@@ -3776,20 +3776,6 @@ export declare namespace Multiplayer {
3776
3776
  set newKey(value: string);
3777
3777
  }
3778
3778
  }
3779
- export declare namespace Multiplayer {
3780
- class SequenceHierarchyChangedParams extends NativeClassWrapper implements INativeResource {
3781
- /** @internal */
3782
- constructor(pointer: NativePointer);
3783
- static create(): SequenceHierarchyChangedParams;
3784
- delete(): void;
3785
- get updateType(): Multiplayer.ESequenceUpdateType;
3786
- set updateType(value: Multiplayer.ESequenceUpdateType);
3787
- get parentId(): bigint;
3788
- set parentId(value: bigint);
3789
- get isRoot(): boolean;
3790
- set isRoot(value: boolean);
3791
- }
3792
- }
3793
3779
  export declare namespace Multiplayer {
3794
3780
  class SequenceHotspotChangedParams extends NativeClassWrapper implements INativeResource {
3795
3781
  /** @internal */
@@ -4081,24 +4067,6 @@ export declare namespace Multiplayer {
4081
4067
  setMap(value: Common.Map<Multiplayer.ReplicatedValue, Multiplayer.ReplicatedValue>): void;
4082
4068
  }
4083
4069
  }
4084
- export declare namespace Multiplayer {
4085
- /**
4086
- @ingroup Space Entity System
4087
- * @description Class which exposes data that is relevent to entity hierarchies, which comes from the underlying Sequence System.
4088
- * This allows users to manage the ordering of child entites within their parent.
4089
- */
4090
- class SequenceHierarchy extends NativeClassWrapper implements INativeResource {
4091
- /** @internal */
4092
- constructor(pointer: NativePointer);
4093
- hasParent(): boolean;
4094
- static create(): SequenceHierarchy;
4095
- delete(): void;
4096
- get ids(): Common.Array<bigint>;
4097
- set ids(value: Common.Array<bigint>);
4098
- get parentId(): bigint;
4099
- set parentId(value: bigint);
4100
- }
4101
- }
4102
4070
  export declare namespace Multiplayer {
4103
4071
  /**
4104
4072
  * @description Info class that specifies a type of update and the ID of a component the update is applied to.
@@ -4618,43 +4586,6 @@ export declare namespace Multiplayer {
4618
4586
  * @return A list of root entities.
4619
4587
  */
4620
4588
  getRootHierarchyEntities(): Common.List<Multiplayer.SpaceEntity>;
4621
- /**
4622
- * @description Creates an entity hierarchy for a given parent entity id. Pass null to create a hiererchy for the root.
4623
- * @param parentId - An optional parent. Pass null to create a hiererchy for the root.
4624
- * @param hierarchyItemIds - An array of entity ids.
4625
- * @param callback - A callback when the asynchronous task finishes.
4626
- */
4627
- createSequenceHierarchy(parentId: bigint | null, hierarchyItemIds: Common.Array<bigint>): Promise<Multiplayer.SequenceHierarchyResult>;
4628
- /**
4629
- * @description Updates an entity hierarchy for a given parent entity id. Pass null to update the root.
4630
- * This will create a hierarchy if it doesnt exist.
4631
- * @param parentId - An optional parent. Pass null to create a hiererchy for the root.
4632
- * @param hierarchyItemIds - An array of entity ids.
4633
- * @param callback - A callback when the asynchronous task finishes.
4634
- */
4635
- updateSequenceHierarchy(parentId: bigint | null, hierarchyItemIds: Common.Array<bigint>): Promise<Multiplayer.SequenceHierarchyResult>;
4636
- /**
4637
- * @description Gets an entity hierarchy for a given parent entity id. Pass null to get the root hierarchy.
4638
- * @param parentId - An optional parent. Pass null to get the root hierarchy.
4639
- * @param callback - A callback when the asynchronous task finishes.
4640
- */
4641
- getSequenceHierarchy(parentId: bigint | null): Promise<Multiplayer.SequenceHierarchyResult>;
4642
- /**
4643
- * @description Gets all hierarchies for a space
4644
- * @param callback - A callback when the asynchronous task finishes.
4645
- */
4646
- getAllSequenceHierarchies(): Promise<Multiplayer.SequenceHierarchyCollectionResult>;
4647
- /**
4648
- * @description Deletes an entity hierarchy for a given parent entity id. Pass null to delete the root hierarchy.
4649
- * @param parentId - An optional parent. Pass null to get the root hierarchy.
4650
- * @param callback - A callback when the asynchronous task finishes.
4651
- */
4652
- deleteSequenceHierarchy(parentId: bigint | null): Promise<Systems.NullResult>;
4653
- /**
4654
- * @description Sets a callback for a sequence hierarchy changed event.
4655
- * @param callback - Callback to receive data for the sequence hierarchy that has been changed.
4656
- */
4657
- setSequenceHierarchyChangedCallback(callback: (arg1: Multiplayer.SequenceHierarchyChangedParams) => void): void;
4658
4589
  }
4659
4590
  }
4660
4591
  export declare namespace Multiplayer {
@@ -6275,38 +6206,6 @@ export declare namespace Systems {
6275
6206
  isLocalUserMuted(): boolean;
6276
6207
  }
6277
6208
  }
6278
- export declare namespace Multiplayer {
6279
- /**
6280
- @ingroup Space Entity System
6281
- * @description Data class used to contain information when attempting to get a sequence hierarchy
6282
- */
6283
- class SequenceHierarchyResult extends Systems.ResultBase implements INativeResource {
6284
- /** @internal */
6285
- constructor(pointer: NativePointer);
6286
- static fromResultBase(baseInstance: Systems.ResultBase): Multiplayer.SequenceHierarchyResult;
6287
- /**
6288
- * @description Retreives the SequenceHierarchy from the result.
6289
- */
6290
- getSequenceHierarchy(): Multiplayer.SequenceHierarchy;
6291
- delete(): void;
6292
- }
6293
- }
6294
- export declare namespace Multiplayer {
6295
- /**
6296
- @ingroup Space Entity System
6297
- * @description Data class used to contain information when attempting to get an array of sequence hierachies
6298
- */
6299
- class SequenceHierarchyCollectionResult extends Systems.ResultBase implements INativeResource {
6300
- /** @internal */
6301
- constructor(pointer: NativePointer);
6302
- static fromResultBase(baseInstance: Systems.ResultBase): Multiplayer.SequenceHierarchyCollectionResult;
6303
- /**
6304
- * @description Retreives the SequenceHierarchies from the result.
6305
- */
6306
- getSequenceHierarchyCollection(): Common.Array<Multiplayer.SequenceHierarchy>;
6307
- delete(): void;
6308
- }
6309
- }
6310
6209
  export declare namespace Multiplayer {
6311
6210
  /**
6312
6211
  @ingroup AnimatedModelSpaceComponent
@@ -9491,9 +9390,10 @@ export declare namespace Systems {
9491
9390
  * @description Updates the Metadata field of an Asset Collection
9492
9391
  * @param assetCollection - Asset collection to be updated
9493
9392
  * @param newMetadata - The new metadata information that will replace the previous
9393
+ * @param tags - Optional array of strings to replace the tags
9494
9394
  * @param callback - Callback when asynchronous task finishes
9495
9395
  */
9496
- updateAssetCollectionMetadata(assetCollection: Systems.AssetCollection, newMetadata: Common.Map<string, string>): Promise<Systems.AssetCollectionResult>;
9396
+ updateAssetCollectionMetadata(assetCollection: Systems.AssetCollection, newMetadata: Common.Map<string, string>, tags: Common.Array<string> | null): Promise<Systems.AssetCollectionResult>;
9497
9397
  /**
9498
9398
  * @description Creates a new asset.
9499
9399
  * @param assetCollection - The parent collection for the asset to be associated with
@@ -10901,9 +10801,10 @@ export declare namespace Systems {
10901
10801
  * their emails and roles
10902
10802
  * @param metadata - Metadata information for the new space
10903
10803
  * @param fileThumbnail - Optional thumbnail image for the new space
10804
+ * @param tags - Optional array of strings to set the metadata tags for the new space
10904
10805
  * @param callback - Callback when asynchronous task finishes
10905
10806
  */
10906
- createSpace(name: string, description: string, attributes: Systems.SpaceAttributes, inviteUsers: Systems.InviteUserRoleInfoCollection | null, metadata: Common.Map<string, string>, fileThumbnail: Systems.FileAssetDataSource | null): Promise<Systems.SpaceResult>;
10807
+ createSpace(name: string, description: string, attributes: Systems.SpaceAttributes, inviteUsers: Systems.InviteUserRoleInfoCollection | null, metadata: Common.Map<string, string>, fileThumbnail: Systems.FileAssetDataSource | null, tags: Common.Array<string> | null): Promise<Systems.SpaceResult>;
10907
10808
  /**
10908
10809
  * @description Creates a new space Using BufferAssetDataSource.
10909
10810
  * @param name - Name for the new space
@@ -10913,9 +10814,10 @@ export declare namespace Systems {
10913
10814
  * their emails and roles
10914
10815
  * @param metadata - Metadata information for the new space
10915
10816
  * @param thumbnail - Thumbnail image buffer for the new space
10817
+ * @param tags - Optional array of strings to set the metadata tags for the new space
10916
10818
  * @param callback - Callback when asynchronous task finishes
10917
10819
  */
10918
- createSpaceWithBuffer(name: string, description: string, attributes: Systems.SpaceAttributes, inviteUsers: Systems.InviteUserRoleInfoCollection | null, metadata: Common.Map<string, string>, thumbnail: Systems.BufferAssetDataSource): Promise<Systems.SpaceResult>;
10820
+ createSpaceWithBuffer(name: string, description: string, attributes: Systems.SpaceAttributes, inviteUsers: Systems.InviteUserRoleInfoCollection | null, metadata: Common.Map<string, string>, thumbnail: Systems.BufferAssetDataSource, tags: Common.Array<string> | null): Promise<Systems.SpaceResult>;
10919
10821
  /**
10920
10822
  * @description Updates the name and/or the description of a Space
10921
10823
  * @param space - The space to update
@@ -11043,9 +10945,10 @@ export declare namespace Systems {
11043
10945
  * @description Updates the Space metadata information with the new one provided
11044
10946
  * @param spaceId - ID of Space for which the metadata will be updated
11045
10947
  * @param newMetadata - New metadata information that will replace the previous one
10948
+ * @param tags - Optional array of strings to replace the tags in the metadata
11046
10949
  * @param callback - Callback when asynchronous task finishes
11047
10950
  */
11048
- updateSpaceMetadata(spaceId: string, newMetadata: Common.Map<string, string>): Promise<Systems.NullResult>;
10951
+ updateSpaceMetadata(spaceId: string, newMetadata: Common.Map<string, string>, tags: Common.Array<string> | null): Promise<Systems.NullResult>;
11049
10952
  /**
11050
10953
  * @description Retrieves Spaces metadata information
11051
10954
  * @param spaces - Spaces for which metadata will be retrieved
@@ -11646,8 +11549,6 @@ export declare namespace Common {
11646
11549
  static ofcsp_multiplayer_ReplicatedValue(): Array<Multiplayer.ReplicatedValue>;
11647
11550
  static ofcsp_multiplayer_ComponentUpdateInfo(): Array<Multiplayer.ComponentUpdateInfo>;
11648
11551
  static ofcsp_systems_SpaceUserRole(): Array<Systems.SpaceUserRole>;
11649
- static ofuint64_t(): Array<bigint>;
11650
- static ofcsp_multiplayer_SequenceHierarchy(): Array<Multiplayer.SequenceHierarchy>;
11651
11552
  static ofcsp_multiplayer_MessageInfo(): Array<Multiplayer.MessageInfo>;
11652
11553
  static ofString(): Array<string>;
11653
11554
  static ofcsp_systems_EAssetPlatform(): Array<Systems.EAssetPlatform>;
@@ -11690,8 +11591,6 @@ export declare namespace Common {
11690
11591
  static ofcsp_multiplayer_ReplicatedValue_number(size: number): Array<Multiplayer.ReplicatedValue>;
11691
11592
  static ofcsp_multiplayer_ComponentUpdateInfo_number(size: number): Array<Multiplayer.ComponentUpdateInfo>;
11692
11593
  static ofcsp_systems_SpaceUserRole_number(size: number): Array<Systems.SpaceUserRole>;
11693
- static ofuint64_t_number(size: number): Array<bigint>;
11694
- static ofcsp_multiplayer_SequenceHierarchy_number(size: number): Array<Multiplayer.SequenceHierarchy>;
11695
11594
  static ofcsp_multiplayer_MessageInfo_number(size: number): Array<Multiplayer.MessageInfo>;
11696
11595
  static ofString_number(size: number): Array<string>;
11697
11596
  static ofcsp_systems_EAssetPlatform_number(size: number): Array<Systems.EAssetPlatform>;