diff --git a/report/schemas.api.md b/report/schemas.api.md index aa72553..0329e31 100644 --- a/report/schemas.api.md +++ b/report/schemas.api.md @@ -168,6 +168,7 @@ export type AssetBundleConversionManuallyQueuedEvent = BaseEvent & { entityId: string; platform: 'windows' | 'mac' | 'webgl'; isLods: boolean; + isPriority: boolean; }; }; diff --git a/src/platform/events/services.ts b/src/platform/events/services.ts index 402eafd..e9e44f1 100644 --- a/src/platform/events/services.ts +++ b/src/platform/events/services.ts @@ -84,6 +84,7 @@ export type AssetBundleConversionManuallyQueuedEvent = BaseEvent & { entityId: string platform: 'windows' | 'mac' | 'webgl' isLods: boolean + isPriority: boolean } } @@ -100,7 +101,8 @@ export namespace AssetBundleConversionManuallyQueuedEvent { properties: { entityId: { type: 'string' }, platform: { type: 'string', enum: ['windows', 'mac', 'webgl'] }, - isLods: { type: 'boolean' } + isLods: { type: 'boolean' }, + isPriority: { type: 'boolean' } }, required: ['entityId', 'platform', 'isLods'] } diff --git a/test/platform/events/asset-bundle.spec.ts b/test/platform/events/asset-bundle.spec.ts index 9a8ccab..e212827 100644 --- a/test/platform/events/asset-bundle.spec.ts +++ b/test/platform/events/asset-bundle.spec.ts @@ -32,7 +32,8 @@ describe('AssetBundleConversionManuallyQueued Events tests', () => { metadata: { entityId: 'baf', platform: 'mac', - isLods: false + isLods: false, + isPriority: false } }