mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-21 09:01:23 +00:00
Complete Foundry refactor checklist
This commit is contained in:
parent
40bed3b0a1
commit
13fc9cb318
91 changed files with 5091 additions and 4108 deletions
36
foundry/packages/backend/src/actors/organization/queues.ts
Normal file
36
foundry/packages/backend/src/actors/organization/queues.ts
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
export const ORGANIZATION_QUEUE_NAMES = [
|
||||
"organization.command.createTask",
|
||||
"organization.command.snapshot.broadcast",
|
||||
"organization.command.syncGithubSession",
|
||||
"organization.command.better_auth.session_index.upsert",
|
||||
"organization.command.better_auth.session_index.delete",
|
||||
"organization.command.better_auth.email_index.upsert",
|
||||
"organization.command.better_auth.email_index.delete",
|
||||
"organization.command.better_auth.account_index.upsert",
|
||||
"organization.command.better_auth.account_index.delete",
|
||||
"organization.command.better_auth.verification.create",
|
||||
"organization.command.better_auth.verification.update",
|
||||
"organization.command.better_auth.verification.update_many",
|
||||
"organization.command.better_auth.verification.delete",
|
||||
"organization.command.better_auth.verification.delete_many",
|
||||
"organization.command.github.repository_projection.apply",
|
||||
"organization.command.github.data_projection.apply",
|
||||
"organization.command.github.sync_progress.apply",
|
||||
"organization.command.github.webhook_receipt.record",
|
||||
"organization.command.github.organization_shell.sync_from_github",
|
||||
"organization.command.shell.profile.update",
|
||||
"organization.command.shell.sync_started.mark",
|
||||
"organization.command.billing.stripe_customer.apply",
|
||||
"organization.command.billing.stripe_subscription.apply",
|
||||
"organization.command.billing.free_plan.apply",
|
||||
"organization.command.billing.payment_method.set",
|
||||
"organization.command.billing.status.set",
|
||||
"organization.command.billing.invoice.upsert",
|
||||
"organization.command.billing.seat_usage.record",
|
||||
] as const;
|
||||
|
||||
export type OrganizationQueueName = (typeof ORGANIZATION_QUEUE_NAMES)[number];
|
||||
|
||||
export function organizationWorkflowQueueName(name: OrganizationQueueName): OrganizationQueueName {
|
||||
return name;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue