Skip to main content

OrganizationEventsPayload

Events delivered by the organizationEvents subscription.

union OrganizationEventsPayload = ProjectEvent | OciRepoEvent | BundleEvent

Possible types​

OrganizationEventsPayload.ProjectEvent object​

A lifecycle event for a project.

Emitted when a project is created, updated (renamed, settings changed), or deleted. Subscribe via organizationEvents or projectEvents.

OrganizationEventsPayload.OciRepoEvent object​

A lifecycle event for an OCI repository in the organization's bundle catalog.

Emitted with action CREATED the first time a bundle is published under a new repository name. The registry is immutable — repositories cannot be renamed or deleted through the API today — so subsequent publishes to an existing repository fire a BundleEvent instead. Subscribe via organizationEvents.

OrganizationEventsPayload.BundleEvent object​

A lifecycle event for a published bundle version.

Emitted with action CREATED each time a new bundle release is pushed to an OCI repository in the organization. Bundle versions are immutable, so neither UPDATED nor DELETED is emitted today. Subscribe via organizationEvents.

Returned By​

organizationEvents subscription