diff --git a/report/schemas.api.md b/report/schemas.api.md index cbfcde3..d1dde1a 100644 --- a/report/schemas.api.md +++ b/report/schemas.api.md @@ -143,7 +143,7 @@ export type AssetBundleConvertedEvent = BaseEvent & { subType: Events.SubType.AssetBundle.CONVERTED; metadata: { entityId: string; - platform: 'windows' | 'mac' | 'webgl'; + platform: 'windows' | 'mac' | 'webglb'; }; }; diff --git a/src/platform/events/services.ts b/src/platform/events/services.ts index 244dbd5..f01e9b6 100644 --- a/src/platform/events/services.ts +++ b/src/platform/events/services.ts @@ -45,7 +45,7 @@ export type AssetBundleConvertedEvent = BaseEvent & { subType: Events.SubType.AssetBundle.CONVERTED metadata: { entityId: string - platform: 'windows' | 'mac' | 'webgl' + platform: 'windows' | 'mac' | 'webglb' } } @@ -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'] }