@dendotdev/grunt 1.0.3 → 1.0.4

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/dist/index.d.mts CHANGED
@@ -3819,7 +3819,7 @@ declare class UgcModule extends ModuleBase {
3819
3819
  * @param assetId - Asset GUID
3820
3820
  * @returns Asset details
3821
3821
  */
3822
- getAsset(title: string, assetType: AssetKind, assetId: string): Promise<HaloApiResult<AuthoringAsset>>;
3822
+ getAsset(title: string, assetType: string, assetId: string): Promise<HaloApiResult<AuthoringAsset>>;
3823
3823
  /**
3824
3824
  * Get the latest version of an asset.
3825
3825
  *
@@ -3828,7 +3828,7 @@ declare class UgcModule extends ModuleBase {
3828
3828
  * @param assetId - Asset GUID
3829
3829
  * @returns Latest asset version
3830
3830
  */
3831
- getLatestAssetVersion(title: string, assetType: AssetKind, assetId: string): Promise<HaloApiResult<AuthoringAssetVersion>>;
3831
+ getLatestAssetVersion(title: string, assetType: string, assetId: string): Promise<HaloApiResult<AuthoringAssetVersion>>;
3832
3832
  /**
3833
3833
  * Get a specific version of an asset.
3834
3834
  *
@@ -3838,7 +3838,7 @@ declare class UgcModule extends ModuleBase {
3838
3838
  * @param versionId - Version GUID
3839
3839
  * @returns Asset version
3840
3840
  */
3841
- getSpecificAssetVersion(title: string, assetType: AssetKind, assetId: string, versionId: string): Promise<HaloApiResult<AuthoringAssetVersion>>;
3841
+ getSpecificAssetVersion(title: string, assetType: string, assetId: string, versionId: string): Promise<HaloApiResult<AuthoringAssetVersion>>;
3842
3842
  /**
3843
3843
  * Get the published version of an asset.
3844
3844
  *
@@ -3847,7 +3847,7 @@ declare class UgcModule extends ModuleBase {
3847
3847
  * @param assetId - Asset GUID
3848
3848
  * @returns Published asset version
3849
3849
  */
3850
- getPublishedVersion(title: string, assetType: AssetKind, assetId: string): Promise<HaloApiResult<AuthoringAssetVersion>>;
3850
+ getPublishedVersion(title: string, assetType: string, assetId: string): Promise<HaloApiResult<AuthoringAssetVersion>>;
3851
3851
  /**
3852
3852
  * List all versions of an asset.
3853
3853
  *
@@ -3856,7 +3856,7 @@ declare class UgcModule extends ModuleBase {
3856
3856
  * @param assetId - Asset GUID
3857
3857
  * @returns All asset versions
3858
3858
  */
3859
- listAllVersions(title: string, assetType: AssetKind, assetId: string): Promise<HaloApiResult<AuthoringAssetVersionContainer>>;
3859
+ listAllVersions(title: string, assetType: string, assetId: string): Promise<HaloApiResult<AuthoringAssetVersionContainer>>;
3860
3860
  /**
3861
3861
  * List assets created by a player.
3862
3862
  *
@@ -3867,7 +3867,7 @@ declare class UgcModule extends ModuleBase {
3867
3867
  * @param count - Number of results
3868
3868
  * @returns Player's assets
3869
3869
  */
3870
- listPlayerAssets(title: string, player: string, assetType: AssetKind, start?: number, count?: number): Promise<HaloApiResult<AuthoringAssetContainer>>;
3870
+ listPlayerAssets(title: string, player: string, assetType: string, start?: number, count?: number): Promise<HaloApiResult<AuthoringAssetContainer>>;
3871
3871
  /**
3872
3872
  * Favorite an asset.
3873
3873
  *
@@ -3876,7 +3876,7 @@ declare class UgcModule extends ModuleBase {
3876
3876
  * @param assetId - Asset GUID
3877
3877
  * @returns Favorite result
3878
3878
  */
3879
- favoriteAnAsset(player: string, assetType: AssetKind, assetId: string): Promise<HaloApiResult<FavoriteAsset>>;
3879
+ favoriteAnAsset(player: string, assetType: string, assetId: string): Promise<HaloApiResult<FavoriteAsset>>;
3880
3880
  /**
3881
3881
  * Check if a player has bookmarked an asset.
3882
3882
  *
@@ -3886,7 +3886,7 @@ declare class UgcModule extends ModuleBase {
3886
3886
  * @param assetId - Asset GUID
3887
3887
  * @returns Favorite status
3888
3888
  */
3889
- checkAssetPlayerBookmark(title: string, player: string, assetType: AssetKind, assetId: string): Promise<HaloApiResult<FavoriteAsset>>;
3889
+ checkAssetPlayerBookmark(title: string, player: string, assetType: string, assetId: string): Promise<HaloApiResult<FavoriteAsset>>;
3890
3890
  /**
3891
3891
  * List player's favorite assets of a specific type.
3892
3892
  *
@@ -3894,7 +3894,7 @@ declare class UgcModule extends ModuleBase {
3894
3894
  * @param assetType - Type of asset
3895
3895
  * @returns Favorites container
3896
3896
  */
3897
- listPlayerFavorites(player: string, assetType: AssetKind): Promise<HaloApiResult<AuthoringFavoritesContainer>>;
3897
+ listPlayerFavorites(player: string, assetType: string): Promise<HaloApiResult<AuthoringFavoritesContainer>>;
3898
3898
  /**
3899
3899
  * List all of a player's favorite assets.
3900
3900
  *
@@ -3910,7 +3910,7 @@ declare class UgcModule extends ModuleBase {
3910
3910
  * @param assetId - Asset GUID
3911
3911
  * @returns Rating info
3912
3912
  */
3913
- getAssetRatings(player: string, assetType: AssetKind, assetId: string): Promise<HaloApiResult<AuthoringAssetRating>>;
3913
+ getAssetRatings(player: string, assetType: string, assetId: string): Promise<HaloApiResult<AuthoringAssetRating>>;
3914
3914
  /**
3915
3915
  * Rate an asset.
3916
3916
  *
@@ -3920,7 +3920,7 @@ declare class UgcModule extends ModuleBase {
3920
3920
  * @param rating - Rating to submit
3921
3921
  * @returns Updated rating
3922
3922
  */
3923
- rateAnAsset(player: string, assetType: AssetKind, assetId: string, rating: AuthoringAssetRating): Promise<HaloApiResult<AuthoringAssetRating>>;
3923
+ rateAnAsset(player: string, assetType: string, assetId: string, rating: AuthoringAssetRating): Promise<HaloApiResult<AuthoringAssetRating>>;
3924
3924
  /**
3925
3925
  * Report an asset for moderation.
3926
3926
  *
@@ -3930,7 +3930,7 @@ declare class UgcModule extends ModuleBase {
3930
3930
  * @param report - Report details
3931
3931
  * @returns Report result
3932
3932
  */
3933
- reportAnAsset(player: string, assetType: AssetKind, assetId: string, report: AssetReport): Promise<HaloApiResult<AssetReport>>;
3933
+ reportAnAsset(player: string, assetType: string, assetId: string, report: AssetReport): Promise<HaloApiResult<AssetReport>>;
3934
3934
  /**
3935
3935
  * Delete an asset and all its versions.
3936
3936
  *
@@ -3939,7 +3939,7 @@ declare class UgcModule extends ModuleBase {
3939
3939
  * @param assetId - Asset GUID
3940
3940
  * @returns Success status
3941
3941
  */
3942
- deleteAllVersions(title: string, assetType: AssetKind, assetId: string): Promise<HaloApiResult<boolean>>;
3942
+ deleteAllVersions(title: string, assetType: string, assetId: string): Promise<HaloApiResult<boolean>>;
3943
3943
  /**
3944
3944
  * Delete a specific version of an asset.
3945
3945
  *
@@ -3949,7 +3949,7 @@ declare class UgcModule extends ModuleBase {
3949
3949
  * @param versionId - Version GUID
3950
3950
  * @returns Success status
3951
3951
  */
3952
- deleteVersion(title: string, assetType: AssetKind, assetId: string, versionId: string): Promise<HaloApiResult<boolean>>;
3952
+ deleteVersion(title: string, assetType: string, assetId: string, versionId: string): Promise<HaloApiResult<boolean>>;
3953
3953
  /**
3954
3954
  * Publish an asset version.
3955
3955
  *
@@ -3959,7 +3959,7 @@ declare class UgcModule extends ModuleBase {
3959
3959
  * @param clearanceId - Clearance ID
3960
3960
  * @returns Success status
3961
3961
  */
3962
- publishAssetVersion(assetType: AssetKind, assetId: string, versionId: string, clearanceId: string): Promise<HaloApiResult<boolean>>;
3962
+ publishAssetVersion(assetType: string, assetId: string, versionId: string, clearanceId: string): Promise<HaloApiResult<boolean>>;
3963
3963
  /**
3964
3964
  * Unpublish an asset.
3965
3965
  *
@@ -3967,7 +3967,7 @@ declare class UgcModule extends ModuleBase {
3967
3967
  * @param assetId - Asset GUID
3968
3968
  * @returns Success status
3969
3969
  */
3970
- unpublishAsset(assetType: AssetKind, assetId: string): Promise<HaloApiResult<boolean>>;
3970
+ unpublishAsset(assetType: string, assetId: string): Promise<HaloApiResult<boolean>>;
3971
3971
  /**
3972
3972
  * Grant or revoke permissions for an asset.
3973
3973
  *
@@ -3978,7 +3978,7 @@ declare class UgcModule extends ModuleBase {
3978
3978
  * @param permission - Permission details
3979
3979
  * @returns Updated permission
3980
3980
  */
3981
- grantOrRevokePermissions(title: string, assetType: AssetKind, assetId: string, player: string, permission: Permission): Promise<HaloApiResult<Permission>>;
3981
+ grantOrRevokePermissions(title: string, assetType: string, assetId: string, player: string, permission: Permission): Promise<HaloApiResult<Permission>>;
3982
3982
  /**
3983
3983
  * Start an authoring session for an asset.
3984
3984
  *
@@ -3988,7 +3988,7 @@ declare class UgcModule extends ModuleBase {
3988
3988
  * @param includeContainerSas - Include container SAS URL
3989
3989
  * @returns Session details
3990
3990
  */
3991
- startSession(title: string, assetType: AssetKind, assetId: string, includeContainerSas?: boolean): Promise<HaloApiResult<AssetAuthoringSession>>;
3991
+ startSession(title: string, assetType: string, assetId: string, includeContainerSas?: boolean): Promise<HaloApiResult<AssetAuthoringSession>>;
3992
3992
  /**
3993
3993
  * Extend an authoring session.
3994
3994
  *
@@ -3998,7 +3998,7 @@ declare class UgcModule extends ModuleBase {
3998
3998
  * @param includeContainerSas - Include container SAS URL
3999
3999
  * @returns Extended session
4000
4000
  */
4001
- extendSession(title: string, assetType: AssetKind, assetId: string, includeContainerSas?: boolean): Promise<HaloApiResult<AssetAuthoringSession>>;
4001
+ extendSession(title: string, assetType: string, assetId: string, includeContainerSas?: boolean): Promise<HaloApiResult<AssetAuthoringSession>>;
4002
4002
  /**
4003
4003
  * End an authoring session.
4004
4004
  *
@@ -4007,7 +4007,7 @@ declare class UgcModule extends ModuleBase {
4007
4007
  * @param assetId - Asset GUID
4008
4008
  * @returns Success status
4009
4009
  */
4010
- endSession(title: string, assetType: AssetKind, assetId: string): Promise<HaloApiResult<boolean>>;
4010
+ endSession(title: string, assetType: string, assetId: string): Promise<HaloApiResult<boolean>>;
4011
4011
  /**
4012
4012
  * Create a new asset version.
4013
4013
  *
@@ -4017,7 +4017,7 @@ declare class UgcModule extends ModuleBase {
4017
4017
  * @param starter - Source asset to clone from
4018
4018
  * @returns New asset version
4019
4019
  */
4020
- createAssetVersion(title: string, assetType: AssetKind, assetId: string, starter: AuthoringSessionSourceStarter): Promise<HaloApiResult<AuthoringAssetVersion>>;
4020
+ createAssetVersion(title: string, assetType: string, assetId: string, starter: AuthoringSessionSourceStarter): Promise<HaloApiResult<AuthoringAssetVersion>>;
4021
4021
  /**
4022
4022
  * Patch an asset version.
4023
4023
  *
@@ -4028,7 +4028,7 @@ declare class UgcModule extends ModuleBase {
4028
4028
  * @param patchedAsset - Updated asset data
4029
4029
  * @returns Updated asset version
4030
4030
  */
4031
- patchAssetVersion(title: string, assetType: AssetKind, assetId: string, versionId: string, patchedAsset: Partial<AuthoringAssetVersion>): Promise<HaloApiResult<AuthoringAssetVersion>>;
4031
+ patchAssetVersion(title: string, assetType: string, assetId: string, versionId: string, patchedAsset: Partial<AuthoringAssetVersion>): Promise<HaloApiResult<AuthoringAssetVersion>>;
4032
4032
  /**
4033
4033
  * Get a blob from UGC storage.
4034
4034
  *
package/dist/index.d.ts CHANGED
@@ -3819,7 +3819,7 @@ declare class UgcModule extends ModuleBase {
3819
3819
  * @param assetId - Asset GUID
3820
3820
  * @returns Asset details
3821
3821
  */
3822
- getAsset(title: string, assetType: AssetKind, assetId: string): Promise<HaloApiResult<AuthoringAsset>>;
3822
+ getAsset(title: string, assetType: string, assetId: string): Promise<HaloApiResult<AuthoringAsset>>;
3823
3823
  /**
3824
3824
  * Get the latest version of an asset.
3825
3825
  *
@@ -3828,7 +3828,7 @@ declare class UgcModule extends ModuleBase {
3828
3828
  * @param assetId - Asset GUID
3829
3829
  * @returns Latest asset version
3830
3830
  */
3831
- getLatestAssetVersion(title: string, assetType: AssetKind, assetId: string): Promise<HaloApiResult<AuthoringAssetVersion>>;
3831
+ getLatestAssetVersion(title: string, assetType: string, assetId: string): Promise<HaloApiResult<AuthoringAssetVersion>>;
3832
3832
  /**
3833
3833
  * Get a specific version of an asset.
3834
3834
  *
@@ -3838,7 +3838,7 @@ declare class UgcModule extends ModuleBase {
3838
3838
  * @param versionId - Version GUID
3839
3839
  * @returns Asset version
3840
3840
  */
3841
- getSpecificAssetVersion(title: string, assetType: AssetKind, assetId: string, versionId: string): Promise<HaloApiResult<AuthoringAssetVersion>>;
3841
+ getSpecificAssetVersion(title: string, assetType: string, assetId: string, versionId: string): Promise<HaloApiResult<AuthoringAssetVersion>>;
3842
3842
  /**
3843
3843
  * Get the published version of an asset.
3844
3844
  *
@@ -3847,7 +3847,7 @@ declare class UgcModule extends ModuleBase {
3847
3847
  * @param assetId - Asset GUID
3848
3848
  * @returns Published asset version
3849
3849
  */
3850
- getPublishedVersion(title: string, assetType: AssetKind, assetId: string): Promise<HaloApiResult<AuthoringAssetVersion>>;
3850
+ getPublishedVersion(title: string, assetType: string, assetId: string): Promise<HaloApiResult<AuthoringAssetVersion>>;
3851
3851
  /**
3852
3852
  * List all versions of an asset.
3853
3853
  *
@@ -3856,7 +3856,7 @@ declare class UgcModule extends ModuleBase {
3856
3856
  * @param assetId - Asset GUID
3857
3857
  * @returns All asset versions
3858
3858
  */
3859
- listAllVersions(title: string, assetType: AssetKind, assetId: string): Promise<HaloApiResult<AuthoringAssetVersionContainer>>;
3859
+ listAllVersions(title: string, assetType: string, assetId: string): Promise<HaloApiResult<AuthoringAssetVersionContainer>>;
3860
3860
  /**
3861
3861
  * List assets created by a player.
3862
3862
  *
@@ -3867,7 +3867,7 @@ declare class UgcModule extends ModuleBase {
3867
3867
  * @param count - Number of results
3868
3868
  * @returns Player's assets
3869
3869
  */
3870
- listPlayerAssets(title: string, player: string, assetType: AssetKind, start?: number, count?: number): Promise<HaloApiResult<AuthoringAssetContainer>>;
3870
+ listPlayerAssets(title: string, player: string, assetType: string, start?: number, count?: number): Promise<HaloApiResult<AuthoringAssetContainer>>;
3871
3871
  /**
3872
3872
  * Favorite an asset.
3873
3873
  *
@@ -3876,7 +3876,7 @@ declare class UgcModule extends ModuleBase {
3876
3876
  * @param assetId - Asset GUID
3877
3877
  * @returns Favorite result
3878
3878
  */
3879
- favoriteAnAsset(player: string, assetType: AssetKind, assetId: string): Promise<HaloApiResult<FavoriteAsset>>;
3879
+ favoriteAnAsset(player: string, assetType: string, assetId: string): Promise<HaloApiResult<FavoriteAsset>>;
3880
3880
  /**
3881
3881
  * Check if a player has bookmarked an asset.
3882
3882
  *
@@ -3886,7 +3886,7 @@ declare class UgcModule extends ModuleBase {
3886
3886
  * @param assetId - Asset GUID
3887
3887
  * @returns Favorite status
3888
3888
  */
3889
- checkAssetPlayerBookmark(title: string, player: string, assetType: AssetKind, assetId: string): Promise<HaloApiResult<FavoriteAsset>>;
3889
+ checkAssetPlayerBookmark(title: string, player: string, assetType: string, assetId: string): Promise<HaloApiResult<FavoriteAsset>>;
3890
3890
  /**
3891
3891
  * List player's favorite assets of a specific type.
3892
3892
  *
@@ -3894,7 +3894,7 @@ declare class UgcModule extends ModuleBase {
3894
3894
  * @param assetType - Type of asset
3895
3895
  * @returns Favorites container
3896
3896
  */
3897
- listPlayerFavorites(player: string, assetType: AssetKind): Promise<HaloApiResult<AuthoringFavoritesContainer>>;
3897
+ listPlayerFavorites(player: string, assetType: string): Promise<HaloApiResult<AuthoringFavoritesContainer>>;
3898
3898
  /**
3899
3899
  * List all of a player's favorite assets.
3900
3900
  *
@@ -3910,7 +3910,7 @@ declare class UgcModule extends ModuleBase {
3910
3910
  * @param assetId - Asset GUID
3911
3911
  * @returns Rating info
3912
3912
  */
3913
- getAssetRatings(player: string, assetType: AssetKind, assetId: string): Promise<HaloApiResult<AuthoringAssetRating>>;
3913
+ getAssetRatings(player: string, assetType: string, assetId: string): Promise<HaloApiResult<AuthoringAssetRating>>;
3914
3914
  /**
3915
3915
  * Rate an asset.
3916
3916
  *
@@ -3920,7 +3920,7 @@ declare class UgcModule extends ModuleBase {
3920
3920
  * @param rating - Rating to submit
3921
3921
  * @returns Updated rating
3922
3922
  */
3923
- rateAnAsset(player: string, assetType: AssetKind, assetId: string, rating: AuthoringAssetRating): Promise<HaloApiResult<AuthoringAssetRating>>;
3923
+ rateAnAsset(player: string, assetType: string, assetId: string, rating: AuthoringAssetRating): Promise<HaloApiResult<AuthoringAssetRating>>;
3924
3924
  /**
3925
3925
  * Report an asset for moderation.
3926
3926
  *
@@ -3930,7 +3930,7 @@ declare class UgcModule extends ModuleBase {
3930
3930
  * @param report - Report details
3931
3931
  * @returns Report result
3932
3932
  */
3933
- reportAnAsset(player: string, assetType: AssetKind, assetId: string, report: AssetReport): Promise<HaloApiResult<AssetReport>>;
3933
+ reportAnAsset(player: string, assetType: string, assetId: string, report: AssetReport): Promise<HaloApiResult<AssetReport>>;
3934
3934
  /**
3935
3935
  * Delete an asset and all its versions.
3936
3936
  *
@@ -3939,7 +3939,7 @@ declare class UgcModule extends ModuleBase {
3939
3939
  * @param assetId - Asset GUID
3940
3940
  * @returns Success status
3941
3941
  */
3942
- deleteAllVersions(title: string, assetType: AssetKind, assetId: string): Promise<HaloApiResult<boolean>>;
3942
+ deleteAllVersions(title: string, assetType: string, assetId: string): Promise<HaloApiResult<boolean>>;
3943
3943
  /**
3944
3944
  * Delete a specific version of an asset.
3945
3945
  *
@@ -3949,7 +3949,7 @@ declare class UgcModule extends ModuleBase {
3949
3949
  * @param versionId - Version GUID
3950
3950
  * @returns Success status
3951
3951
  */
3952
- deleteVersion(title: string, assetType: AssetKind, assetId: string, versionId: string): Promise<HaloApiResult<boolean>>;
3952
+ deleteVersion(title: string, assetType: string, assetId: string, versionId: string): Promise<HaloApiResult<boolean>>;
3953
3953
  /**
3954
3954
  * Publish an asset version.
3955
3955
  *
@@ -3959,7 +3959,7 @@ declare class UgcModule extends ModuleBase {
3959
3959
  * @param clearanceId - Clearance ID
3960
3960
  * @returns Success status
3961
3961
  */
3962
- publishAssetVersion(assetType: AssetKind, assetId: string, versionId: string, clearanceId: string): Promise<HaloApiResult<boolean>>;
3962
+ publishAssetVersion(assetType: string, assetId: string, versionId: string, clearanceId: string): Promise<HaloApiResult<boolean>>;
3963
3963
  /**
3964
3964
  * Unpublish an asset.
3965
3965
  *
@@ -3967,7 +3967,7 @@ declare class UgcModule extends ModuleBase {
3967
3967
  * @param assetId - Asset GUID
3968
3968
  * @returns Success status
3969
3969
  */
3970
- unpublishAsset(assetType: AssetKind, assetId: string): Promise<HaloApiResult<boolean>>;
3970
+ unpublishAsset(assetType: string, assetId: string): Promise<HaloApiResult<boolean>>;
3971
3971
  /**
3972
3972
  * Grant or revoke permissions for an asset.
3973
3973
  *
@@ -3978,7 +3978,7 @@ declare class UgcModule extends ModuleBase {
3978
3978
  * @param permission - Permission details
3979
3979
  * @returns Updated permission
3980
3980
  */
3981
- grantOrRevokePermissions(title: string, assetType: AssetKind, assetId: string, player: string, permission: Permission): Promise<HaloApiResult<Permission>>;
3981
+ grantOrRevokePermissions(title: string, assetType: string, assetId: string, player: string, permission: Permission): Promise<HaloApiResult<Permission>>;
3982
3982
  /**
3983
3983
  * Start an authoring session for an asset.
3984
3984
  *
@@ -3988,7 +3988,7 @@ declare class UgcModule extends ModuleBase {
3988
3988
  * @param includeContainerSas - Include container SAS URL
3989
3989
  * @returns Session details
3990
3990
  */
3991
- startSession(title: string, assetType: AssetKind, assetId: string, includeContainerSas?: boolean): Promise<HaloApiResult<AssetAuthoringSession>>;
3991
+ startSession(title: string, assetType: string, assetId: string, includeContainerSas?: boolean): Promise<HaloApiResult<AssetAuthoringSession>>;
3992
3992
  /**
3993
3993
  * Extend an authoring session.
3994
3994
  *
@@ -3998,7 +3998,7 @@ declare class UgcModule extends ModuleBase {
3998
3998
  * @param includeContainerSas - Include container SAS URL
3999
3999
  * @returns Extended session
4000
4000
  */
4001
- extendSession(title: string, assetType: AssetKind, assetId: string, includeContainerSas?: boolean): Promise<HaloApiResult<AssetAuthoringSession>>;
4001
+ extendSession(title: string, assetType: string, assetId: string, includeContainerSas?: boolean): Promise<HaloApiResult<AssetAuthoringSession>>;
4002
4002
  /**
4003
4003
  * End an authoring session.
4004
4004
  *
@@ -4007,7 +4007,7 @@ declare class UgcModule extends ModuleBase {
4007
4007
  * @param assetId - Asset GUID
4008
4008
  * @returns Success status
4009
4009
  */
4010
- endSession(title: string, assetType: AssetKind, assetId: string): Promise<HaloApiResult<boolean>>;
4010
+ endSession(title: string, assetType: string, assetId: string): Promise<HaloApiResult<boolean>>;
4011
4011
  /**
4012
4012
  * Create a new asset version.
4013
4013
  *
@@ -4017,7 +4017,7 @@ declare class UgcModule extends ModuleBase {
4017
4017
  * @param starter - Source asset to clone from
4018
4018
  * @returns New asset version
4019
4019
  */
4020
- createAssetVersion(title: string, assetType: AssetKind, assetId: string, starter: AuthoringSessionSourceStarter): Promise<HaloApiResult<AuthoringAssetVersion>>;
4020
+ createAssetVersion(title: string, assetType: string, assetId: string, starter: AuthoringSessionSourceStarter): Promise<HaloApiResult<AuthoringAssetVersion>>;
4021
4021
  /**
4022
4022
  * Patch an asset version.
4023
4023
  *
@@ -4028,7 +4028,7 @@ declare class UgcModule extends ModuleBase {
4028
4028
  * @param patchedAsset - Updated asset data
4029
4029
  * @returns Updated asset version
4030
4030
  */
4031
- patchAssetVersion(title: string, assetType: AssetKind, assetId: string, versionId: string, patchedAsset: Partial<AuthoringAssetVersion>): Promise<HaloApiResult<AuthoringAssetVersion>>;
4031
+ patchAssetVersion(title: string, assetType: string, assetId: string, versionId: string, patchedAsset: Partial<AuthoringAssetVersion>): Promise<HaloApiResult<AuthoringAssetVersion>>;
4032
4032
  /**
4033
4033
  * Get a blob from UGC storage.
4034
4034
  *