OSS-first docs

These docs teach the open system first: contracts, generated surfaces, runtimes, governance, and incremental adoption. Studio shows up as the operating layer on top, not as the source of truth.

marketplace.inventory.updated

Product inventory has been updated.

  • Type: event (event)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @marketplace-team
  • Tags: marketplace, product, inventory
  • File: packages/examples/marketplace/src/product/product.event.ts
  • field.key.label
    marketplace.inventory.updated
    field.version.label
    1.0.0
    field.type.label
    event (event)
    field.title.label
    marketplace.inventory.updated
    field.description.label

    Product inventory has been updated.

  • Type: event (event)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @marketplace-team
  • Tags: marketplace, product, inventory
  • File: packages/examples/marketplace/src/product/product.event.ts
  • field.tags.label
    marketplace,product,inventory
    field.owners.label
    @marketplace-team
    field.stability.label
    experimental

    Product inventory has been updated.

    Source Definition

    import { defineEvent } from '@lssm-tech/lib.contracts-spec';
    import { defineSchemaModel, ScalarTypeEnum } from '@lssm-tech/lib.schema';
    
    export const InventoryUpdatedEvent = defineEvent({
    	meta: {
    		key: 'marketplace.inventory.updated',
    		version: '1.0.0',
    		description: 'Product inventory has been updated.',
    		stability: 'experimental',
    		owners: ['@marketplace-team'],
    		tags: ['marketplace', 'product', 'inventory'],
    	},
    	payload: InventoryUpdatedPayload,
    });