diff --git a/lib/services/entity-sync.ts b/lib/services/entity-sync.ts index 1d9a691..12b3b53 100644 --- a/lib/services/entity-sync.ts +++ b/lib/services/entity-sync.ts @@ -58,6 +58,12 @@ export class EntitySyncService { syncId?: string ): Promise { // Route picklist entities to their specific sync methods + if (entity === EntityType.STATUSES) { + return await this.syncStatuses(isIncremental); + } + if (entity === EntityType.WORK_TYPES) { + return await this.syncWorkTypes(isIncremental); + } if (entity === EntityType.ISSUE_TYPES) { return await this.syncIssueTypes(isIncremental); }