Skip to content

Commit

Permalink
fix: platform value on AssetBundleConverted event (#321)
Browse files Browse the repository at this point in the history
  • Loading branch information
aleortega authored Dec 9, 2024
1 parent c3c210f commit 9105c6b
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 AssetBundleConvertedEvent = BaseEvent & {
subType: Events.SubType.AssetBundle.CONVERTED;
metadata: {
entityId: string;
platform: 'windows' | 'mac' | 'webgl';
platform: 'windows' | 'mac' | 'webglb';
};
};

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 AssetBundleConvertedEvent = BaseEvent & {
subType: Events.SubType.AssetBundle.CONVERTED
metadata: {
entityId: string
platform: 'windows' | 'mac' | 'webgl'
platform: 'windows' | 'mac' | 'webglb'
}
}

Expand All @@ -61,7 +61,7 @@ export namespace AssetBundleConvertedEvent {
type: 'object',
properties: {
entityId: { type: 'string' },
platform: { type: 'string', enum: ['windows', 'mac', 'webgl'] }
platform: { type: 'string', enum: ['windows', 'mac', 'webglb'] }
},
required: ['entityId', 'platform']
}
Expand Down

0 comments on commit 9105c6b

Please sign in to comment.