Skip to content

Commit

Permalink
fix: AssetBundleConversionFinished platform property values (#323)
Browse files Browse the repository at this point in the history
  • Loading branch information
aleortega authored Dec 16, 2024
1 parent 4dd23a2 commit 7162c8a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion report/schemas.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export type AssetBundleConversionFinishedEvent = BaseEvent & {
subType: Events.SubType.AssetBundle.CONVERTED;
metadata: {
entityId: string;
platform: 'windows' | 'mac' | 'webglb';
platform: 'windows' | 'mac' | 'webgl';
statusCode: number;
isLods: boolean;
};
Expand Down
4 changes: 2 additions & 2 deletions src/platform/events/services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export type AssetBundleConversionFinishedEvent = BaseEvent & {
subType: Events.SubType.AssetBundle.CONVERTED
metadata: {
entityId: string
platform: 'windows' | 'mac' | 'webglb'
platform: 'windows' | 'mac' | 'webgl'
statusCode: number
isLods: boolean
}
Expand All @@ -63,7 +63,7 @@ export namespace AssetBundleConversionFinishedEvent {
type: 'object',
properties: {
entityId: { type: 'string' },
platform: { type: 'string', enum: ['windows', 'mac', 'webglb'] },
platform: { type: 'string', enum: ['windows', 'mac', 'webgl'] },
statusCode: { type: 'number' },
isLods: { type: 'boolean' }
},
Expand Down

0 comments on commit 7162c8a

Please sign in to comment.