@siglume/api-sdk 1.2.1 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -217,6 +217,7 @@ interface AppManifest {
217
217
  capability_key: string;
218
218
  version?: string;
219
219
  name: string;
220
+ /** Buyer-facing task summary, max 240 characters. */
220
221
  job_to_be_done: string;
221
222
  category?: AppCategory;
222
223
  permission_class: PermissionClass;
@@ -234,7 +235,9 @@ interface AppManifest {
234
235
  jurisdiction: string;
235
236
  applicable_regulations?: string[];
236
237
  data_residency?: string;
238
+ /** Catalog tagline shown on cards and the detail header, max 60 characters. */
237
239
  short_description?: string;
240
+ /** Detail-page copy for limits, approval behavior, pricing notes, and expected results, max 1000 characters. */
238
241
  description?: string;
239
242
  docs_url?: string;
240
243
  support_contact?: string;
@@ -970,115 +973,6 @@ interface WorksPosterDashboard {
970
973
  stats: WorksPosterDashboardStats;
971
974
  raw: Record<string, unknown>;
972
975
  }
973
- interface PartnerDashboard {
974
- partner_id: string;
975
- company_name?: string | null;
976
- plan?: string | null;
977
- plan_label?: string | null;
978
- month_bytes_used: number;
979
- month_bytes_limit: number;
980
- month_usage_pct: number;
981
- total_source_items: number;
982
- has_billing: boolean;
983
- has_subscription: boolean;
984
- raw: Record<string, unknown>;
985
- }
986
- interface PartnerUsage {
987
- plan?: string | null;
988
- month_bytes_used: number;
989
- month_bytes_limit: number;
990
- month_bytes_remaining: number;
991
- month_usage_pct: number;
992
- raw: Record<string, unknown>;
993
- }
994
- interface PartnerApiKeyRecord {
995
- credential_id: string;
996
- name?: string | null;
997
- key_id?: string | null;
998
- allowed_source_types: string[];
999
- last_used_at?: string | null;
1000
- created_at?: string | null;
1001
- revoked: boolean;
1002
- raw: Record<string, unknown>;
1003
- }
1004
- interface PartnerApiKeyHandle {
1005
- credential_id: string;
1006
- name?: string | null;
1007
- key_id?: string | null;
1008
- allowed_source_types: string[];
1009
- masked_key_hint?: string | null;
1010
- raw: Record<string, unknown>;
1011
- }
1012
- interface AdsBilling {
1013
- currency?: string | null;
1014
- billing_mode?: string | null;
1015
- month_spend_jpy: number;
1016
- month_spend_usd: number;
1017
- all_time_spend_jpy: number;
1018
- all_time_spend_usd: number;
1019
- total_impressions: number;
1020
- total_replies: number;
1021
- has_billing: boolean;
1022
- has_subscription: boolean;
1023
- invoices: Array<Record<string, unknown>>;
1024
- wallet?: Record<string, unknown> | null;
1025
- balances: Array<Record<string, unknown>>;
1026
- supported_tokens: Array<Record<string, unknown>>;
1027
- funding_instructions?: Record<string, unknown> | null;
1028
- mandate?: PlanWeb3Mandate | null;
1029
- raw: Record<string, unknown>;
1030
- }
1031
- interface AdsBillingSettlement {
1032
- status?: string | null;
1033
- message?: string | null;
1034
- settles_automatically?: boolean | null;
1035
- cycle_key?: string | null;
1036
- settled_at?: string | null;
1037
- raw: Record<string, unknown>;
1038
- }
1039
- interface AdsProfile {
1040
- has_profile: boolean;
1041
- company_name?: string | null;
1042
- ad_currency?: string | null;
1043
- has_billing: boolean;
1044
- raw: Record<string, unknown>;
1045
- }
1046
- interface AdsCampaignRecord {
1047
- campaign_id: string;
1048
- name?: string | null;
1049
- target_url?: string | null;
1050
- content_brief?: string | null;
1051
- target_topics: string[];
1052
- posting_interval_minutes: number;
1053
- max_posts_per_day: number;
1054
- currency?: string | null;
1055
- monthly_budget_jpy: number;
1056
- cpm_jpy: number;
1057
- cpr_jpy: number;
1058
- monthly_budget_usd: number;
1059
- cpm_usd: number;
1060
- cpr_usd: number;
1061
- status: string;
1062
- month_spend_jpy: number;
1063
- month_spend_usd: number;
1064
- total_posts: number;
1065
- total_impressions: number;
1066
- total_replies: number;
1067
- next_post_at?: string | null;
1068
- created_at?: string | null;
1069
- raw: Record<string, unknown>;
1070
- }
1071
- interface AdsCampaignPostRecord {
1072
- post_id: string;
1073
- content_id?: string | null;
1074
- cost_jpy: number;
1075
- cost_usd: number;
1076
- impressions: number;
1077
- replies: number;
1078
- status?: string | null;
1079
- created_at?: string | null;
1080
- raw: Record<string, unknown>;
1081
- }
1082
976
  interface MarketProposalRecord {
1083
977
  proposal_id: string;
1084
978
  parent_proposal_id?: string | null;
@@ -1372,7 +1266,7 @@ declare const WEBHOOK_SIGNATURE_HEADER = "Siglume-Signature";
1372
1266
  declare const WEBHOOK_EVENT_ID_HEADER = "Siglume-Event-Id";
1373
1267
  declare const WEBHOOK_EVENT_TYPE_HEADER = "Siglume-Event-Type";
1374
1268
  declare const DEFAULT_WEBHOOK_TOLERANCE_SECONDS = 300;
1375
- declare const WEBHOOK_EVENT_TYPES: readonly ["subscription.created", "subscription.renewed", "subscription.cancelled", "subscription.paused", "subscription.reinstated", "payment.succeeded", "payment.failed", "capability.published", "capability.delisted", "execution.completed", "execution.failed"];
1269
+ declare const WEBHOOK_EVENT_TYPES: readonly ["subscription.created", "subscription.renewed", "subscription.cancelled", "subscription.paused", "subscription.reinstated", "payment.succeeded", "payment.failed", "capability.published", "capability.delisted", "execution.completed", "execution.failed", "reward_payout.created", "reward_payout.provider_pending", "reward_paid", "reward_payout.failed", "reward_payout.cancelled"];
1376
1270
  type WebhookEventType = (typeof WEBHOOK_EVENT_TYPES)[number];
1377
1271
  interface WebhookSignatureVerification {
1378
1272
  timestamp: number;
@@ -1462,6 +1356,20 @@ interface ExecutionFailedEventData extends ExecutionCompletedEventData {
1462
1356
  reason_code?: string;
1463
1357
  reason?: string;
1464
1358
  }
1359
+ interface RewardPayoutEventData extends Record<string, unknown> {
1360
+ reward_payout_request_id?: string;
1361
+ app_id?: string;
1362
+ developer_id?: string;
1363
+ recipient_subject?: string;
1364
+ amount_minor?: number;
1365
+ display_currency?: string;
1366
+ token_symbol?: string;
1367
+ reward_event_id?: string;
1368
+ status?: string;
1369
+ tx_hash?: string | null;
1370
+ failure_code?: string | null;
1371
+ failure_reason?: string | null;
1372
+ }
1465
1373
  interface SubscriptionCreatedEvent extends WebhookEventBase<"subscription.created", SubscriptionLifecycleEventData> {
1466
1374
  }
1467
1375
  interface SubscriptionRenewedEvent extends WebhookEventBase<"subscription.renewed", SubscriptionLifecycleEventData> {
@@ -1484,7 +1392,17 @@ interface ExecutionCompletedEvent extends WebhookEventBase<"execution.completed"
1484
1392
  }
1485
1393
  interface ExecutionFailedEvent extends WebhookEventBase<"execution.failed", ExecutionFailedEventData> {
1486
1394
  }
1487
- type SiglumeWebhookEvent = SubscriptionCreatedEvent | SubscriptionRenewedEvent | SubscriptionCancelledEvent | SubscriptionPausedEvent | SubscriptionReinstatedEvent | PaymentSucceededEvent | PaymentFailedEvent | CapabilityPublishedEvent | CapabilityDelistedEvent | ExecutionCompletedEvent | ExecutionFailedEvent;
1395
+ interface RewardPayoutCreatedEvent extends WebhookEventBase<"reward_payout.created", RewardPayoutEventData> {
1396
+ }
1397
+ interface RewardPayoutProviderPendingEvent extends WebhookEventBase<"reward_payout.provider_pending", RewardPayoutEventData> {
1398
+ }
1399
+ interface RewardPaidEvent extends WebhookEventBase<"reward_paid", RewardPayoutEventData> {
1400
+ }
1401
+ interface RewardPayoutFailedEvent extends WebhookEventBase<"reward_payout.failed", RewardPayoutEventData> {
1402
+ }
1403
+ interface RewardPayoutCancelledEvent extends WebhookEventBase<"reward_payout.cancelled", RewardPayoutEventData> {
1404
+ }
1405
+ type SiglumeWebhookEvent = SubscriptionCreatedEvent | SubscriptionRenewedEvent | SubscriptionCancelledEvent | SubscriptionPausedEvent | SubscriptionReinstatedEvent | PaymentSucceededEvent | PaymentFailedEvent | CapabilityPublishedEvent | CapabilityDelistedEvent | ExecutionCompletedEvent | ExecutionFailedEvent | RewardPayoutCreatedEvent | RewardPayoutProviderPendingEvent | RewardPaidEvent | RewardPayoutFailedEvent | RewardPayoutCancelledEvent;
1488
1406
  interface QueuedWebhookEvent {
1489
1407
  queued: boolean;
1490
1408
  event: SiglumeWebhookEvent;
@@ -1967,45 +1885,6 @@ interface SiglumeClientShape {
1967
1885
  agent_id?: string;
1968
1886
  lang?: string;
1969
1887
  }): Promise<InstalledToolReceiptStepRecord[]>;
1970
- get_partner_dashboard(options?: {
1971
- agent_id?: string;
1972
- lang?: string;
1973
- }): Promise<PartnerDashboard>;
1974
- get_partner_usage(options?: {
1975
- agent_id?: string;
1976
- lang?: string;
1977
- }): Promise<PartnerUsage>;
1978
- list_partner_api_keys(options?: {
1979
- agent_id?: string;
1980
- lang?: string;
1981
- }): Promise<PartnerApiKeyRecord[]>;
1982
- create_partner_api_key(options?: {
1983
- agent_id?: string;
1984
- name?: string;
1985
- allowed_source_types?: string[];
1986
- lang?: string;
1987
- }): Promise<PartnerApiKeyHandle>;
1988
- get_ads_billing(options?: {
1989
- agent_id?: string;
1990
- rail?: string;
1991
- lang?: string;
1992
- }): Promise<AdsBilling>;
1993
- settle_ads_billing(options?: {
1994
- agent_id?: string;
1995
- lang?: string;
1996
- }): Promise<AdsBillingSettlement>;
1997
- get_ads_profile(options?: {
1998
- agent_id?: string;
1999
- lang?: string;
2000
- }): Promise<AdsProfile>;
2001
- list_ads_campaigns(options?: {
2002
- agent_id?: string;
2003
- lang?: string;
2004
- }): Promise<AdsCampaignRecord[]>;
2005
- list_ads_campaign_posts(campaign_id: string, options?: {
2006
- agent_id?: string;
2007
- lang?: string;
2008
- }): Promise<AdsCampaignPostRecord[]>;
2009
1888
  update_agent_charter(agent_id: string, charter_text: string, options?: {
2010
1889
  role?: string;
2011
1890
  target_profile?: Record<string, unknown>;
@@ -2415,45 +2294,6 @@ declare class SiglumeClient implements SiglumeClientShape {
2415
2294
  agent_id?: string;
2416
2295
  lang?: string;
2417
2296
  }): Promise<InstalledToolReceiptStepRecord[]>;
2418
- get_partner_dashboard(options?: {
2419
- agent_id?: string;
2420
- lang?: string;
2421
- }): Promise<PartnerDashboard>;
2422
- get_partner_usage(options?: {
2423
- agent_id?: string;
2424
- lang?: string;
2425
- }): Promise<PartnerUsage>;
2426
- list_partner_api_keys(options?: {
2427
- agent_id?: string;
2428
- lang?: string;
2429
- }): Promise<PartnerApiKeyRecord[]>;
2430
- create_partner_api_key(options?: {
2431
- agent_id?: string;
2432
- name?: string;
2433
- allowed_source_types?: string[];
2434
- lang?: string;
2435
- }): Promise<PartnerApiKeyHandle>;
2436
- get_ads_billing(options?: {
2437
- agent_id?: string;
2438
- rail?: string;
2439
- lang?: string;
2440
- }): Promise<AdsBilling>;
2441
- settle_ads_billing(options?: {
2442
- agent_id?: string;
2443
- lang?: string;
2444
- }): Promise<AdsBillingSettlement>;
2445
- get_ads_profile(options?: {
2446
- agent_id?: string;
2447
- lang?: string;
2448
- }): Promise<AdsProfile>;
2449
- list_ads_campaigns(options?: {
2450
- agent_id?: string;
2451
- lang?: string;
2452
- }): Promise<AdsCampaignRecord[]>;
2453
- list_ads_campaign_posts(campaign_id: string, options?: {
2454
- agent_id?: string;
2455
- lang?: string;
2456
- }): Promise<AdsCampaignPostRecord[]>;
2457
2297
  list_market_proposals(options?: {
2458
2298
  agent_id?: string;
2459
2299
  status?: string;
@@ -3101,4 +2941,4 @@ declare function validate_tool_manual(manualInput: ManualInput): [boolean, ToolM
3101
2941
 
3102
2942
  declare function renderJson(value: unknown): string;
3103
2943
 
3104
- export { type AccessGrantRecord, type AccountAlert, type AccountContentDeleteResult, type AccountContentPostResult, type AccountDigest, type AccountDigestItem, type AccountDigestSummary, type AccountFeedbackSubmission, type AccountPlan, type AccountPlanCancellation, type AccountPreferences, type AccountWatchlist, type AdsBilling, type AdsBillingSettlement, type AdsCampaignPostRecord, type AdsCampaignRecord, type AdsProfile, type AgentCharter, type AgentRecord, type AgentThreadRecord, type AgentTopicSubscription, AnthropicProvider, type AnthropicToolDefinition, AppAdapter, AppCategory, type AppListingRecord, type AppManifest, AppTestHarness, ApprovalMode, type ApprovalPolicy, type ApprovalRequestHint, type AutoRegistrationReceipt, type Awaitable, type BillingPortalLink, type BillingTiming, BreakingChange, type BudgetPolicy, type BundleListingRecord, type BundleMember, type CapabilityBindingRecord, type CapabilityDelistedEvent, type CapabilityEventData, type CapabilityListing, type CapabilityPersistencePolicy, type CapabilityPublishedEvent, type CapabilitySaveStateRecord, type CassetteFile, type CassetteInteraction, type Change, ChangeLevel, type CompanyPublisherRecord, type CrossCurrencyQuote, type CursorPage, DEFAULT_OPERATION_AGENT_ID, DEFAULT_SIGLUME_API_BASE, DEFAULT_WEBHOOK_TOLERANCE_SECONDS, type DeveloperPortalSummary, type EmbeddedWalletCharge, type EnvelopeMeta, Environment, type ExecutionArtifact, type ExecutionCompletedEvent, type ExecutionCompletedEventData, type ExecutionContext, type ExecutionFailedEvent, type ExecutionFailedEventData, ExecutionKind, type ExecutionResult, type ExpressLikeRequest, type ExpressLikeResponse, type FavoriteAgent, type FavoriteAgentMutation, type GrantBindingResult, type HeaderLike, type HealthCheckResult, InMemoryWebhookDedupe, type InstalledToolBindingPolicyRecord, type InstalledToolConnectionReadiness, type InstalledToolExecutionRecord, type InstalledToolPolicyUpdateResult, type InstalledToolReceiptRecord, type InstalledToolReceiptStepRecord, type InstalledToolRecord, type JsonObject, type JsonPrimitive, type JsonValue, LLMProvider, ListingCurrency, MINIMUM_JPY_OPERATION_PRICE_MINOR, type MarketNeedRecord, type MarketProposalActionResult, type MarketProposalRecord, type McpToolDescriptor, MeterClient, type MeterClientOptions, type MeterRecordResult, type MeteringInvoiceLinePreview, type MeteringSimulationResult, type NetworkClaimRecord, type NetworkContentDetail, type NetworkContentSummary, type NetworkEvidenceRecord, type NetworkRepliesPage, type OpenAIFunctionDefinition, OpenAIProvider, type OpenAIResponsesToolDefinition, type OperationExecution, type OperationMetadata, type PartnerApiKeyHandle, type PartnerApiKeyRecord, type PartnerDashboard, type PartnerUsage, type PaymentEventData, type PaymentFailedEvent, type PaymentSucceededEvent, PermissionClass, PersistenceMode, type PlanCheckoutSession, type PlanWeb3Mandate, type PolygonMandate, PriceModel, type PricingPlan, type PricingPlanItem, type QueuedWebhookEvent, type ReceiptRef, RecordMode, Recorder, type RecorderOptions, type RegistrationConfirmation, type RegistrationQuality, type SandboxSession, SettlementMode, type SettlementReceipt, type SideEffectRecord, SiglumeAPIError, SiglumeAssistError, SiglumeBuyerClient, type SiglumeBuyerClientOptions, SiglumeClient, SiglumeClientError, type SiglumeClientOptions, type SiglumeClientShape, SiglumeError, SiglumeExperimentalError, SiglumeExperimentalWarning, SiglumeNotFoundError, SiglumeProjectError, SiglumeValidationError, SiglumeWebhookError, type SiglumeWebhookEvent, SiglumeWebhookPayloadError, SiglumeWebhookReplayError, SiglumeWebhookSignatureError, StoreVertical, type StructuredGenerationUsage, StubProvider, type Subscription, type SubscriptionCancelledEvent, type SubscriptionCreatedEvent, type SubscriptionLifecycleEventData, type SubscriptionPausedEvent, type SubscriptionReinstatedEvent, type SubscriptionRenewedEvent, type SupportCaseRecord, TOOL_MANUAL_DRAFT_PROMPT, type ToolManual, type ToolManualAssistAttempt, type ToolManualAssistMetadata, type ToolManualAssistResult, type ToolManualGrade, type ToolManualIssue, type ToolManualIssueSeverity, ToolManualPermissionClass, type ToolManualQualityReport, type ToolSchemaExport, type UsageEventRecord, type UsageRecord, WEBHOOK_EVENT_ID_HEADER, WEBHOOK_EVENT_TYPES, WEBHOOK_EVENT_TYPE_HEADER, WEBHOOK_SIGNATURE_HEADER, type WebhookCallback, type WebhookDeliveryRecord, type WebhookDispatchResult, type WebhookEventBase, type WebhookEventType, WebhookHandler, type WebhookSignatureVerification, type WebhookSubscriptionRecord, type WorksCategoryRecord, type WorksOwnerDashboard, type WorksOwnerDashboardAgent, type WorksOwnerDashboardOrder, type WorksOwnerDashboardPitch, type WorksOwnerDashboardStats, type WorksPosterDashboard, type WorksPosterDashboardJob, type WorksPosterDashboardOrder, type WorksPosterDashboardStats, type WorksRegistrationRecord, buildOperationMetadata, build_webhook_signature_header, compute_webhook_signature, defaultCapabilityKeyForOperation, defaultOperationOutputSchema, diff_manifest, diff_tool_manual, draft_tool_manual, fallbackOperationCatalog, fill_tool_manual_gaps, normalizeUsageRecord, parse_cross_currency_quote, parse_embedded_wallet_charge, parse_polygon_mandate, parse_queued_webhook_event, parse_settlement_receipt, parse_webhook_delivery, parse_webhook_event, parse_webhook_subscription, renderJson as render_json, score_tool_manual_offline, score_tool_manual_remote, simulate_embedded_wallet_charge, simulate_polygon_mandate, to_anthropic_tool, to_mcp_tool, to_openai_function, to_openai_responses_tool, tool_manual_to_dict, validate_tool_manual, verify_webhook_signature };
2944
+ export { type AccessGrantRecord, type AccountAlert, type AccountContentDeleteResult, type AccountContentPostResult, type AccountDigest, type AccountDigestItem, type AccountDigestSummary, type AccountFeedbackSubmission, type AccountPlan, type AccountPlanCancellation, type AccountPreferences, type AccountWatchlist, type AgentCharter, type AgentRecord, type AgentThreadRecord, type AgentTopicSubscription, AnthropicProvider, type AnthropicToolDefinition, AppAdapter, AppCategory, type AppListingRecord, type AppManifest, AppTestHarness, ApprovalMode, type ApprovalPolicy, type ApprovalRequestHint, type AutoRegistrationReceipt, type Awaitable, type BillingPortalLink, type BillingTiming, BreakingChange, type BudgetPolicy, type BundleListingRecord, type BundleMember, type CapabilityBindingRecord, type CapabilityDelistedEvent, type CapabilityEventData, type CapabilityListing, type CapabilityPersistencePolicy, type CapabilityPublishedEvent, type CapabilitySaveStateRecord, type CassetteFile, type CassetteInteraction, type Change, ChangeLevel, type CompanyPublisherRecord, type CrossCurrencyQuote, type CursorPage, DEFAULT_OPERATION_AGENT_ID, DEFAULT_SIGLUME_API_BASE, DEFAULT_WEBHOOK_TOLERANCE_SECONDS, type DeveloperPortalSummary, type EmbeddedWalletCharge, type EnvelopeMeta, Environment, type ExecutionArtifact, type ExecutionCompletedEvent, type ExecutionCompletedEventData, type ExecutionContext, type ExecutionFailedEvent, type ExecutionFailedEventData, ExecutionKind, type ExecutionResult, type ExpressLikeRequest, type ExpressLikeResponse, type FavoriteAgent, type FavoriteAgentMutation, type GrantBindingResult, type HeaderLike, type HealthCheckResult, InMemoryWebhookDedupe, type InstalledToolBindingPolicyRecord, type InstalledToolConnectionReadiness, type InstalledToolExecutionRecord, type InstalledToolPolicyUpdateResult, type InstalledToolReceiptRecord, type InstalledToolReceiptStepRecord, type InstalledToolRecord, type JsonObject, type JsonPrimitive, type JsonValue, LLMProvider, ListingCurrency, MINIMUM_JPY_OPERATION_PRICE_MINOR, type MarketNeedRecord, type MarketProposalActionResult, type MarketProposalRecord, type McpToolDescriptor, MeterClient, type MeterClientOptions, type MeterRecordResult, type MeteringInvoiceLinePreview, type MeteringSimulationResult, type NetworkClaimRecord, type NetworkContentDetail, type NetworkContentSummary, type NetworkEvidenceRecord, type NetworkRepliesPage, type OpenAIFunctionDefinition, OpenAIProvider, type OpenAIResponsesToolDefinition, type OperationExecution, type OperationMetadata, type PaymentEventData, type PaymentFailedEvent, type PaymentSucceededEvent, PermissionClass, PersistenceMode, type PlanCheckoutSession, type PlanWeb3Mandate, type PolygonMandate, PriceModel, type PricingPlan, type PricingPlanItem, type QueuedWebhookEvent, type ReceiptRef, RecordMode, Recorder, type RecorderOptions, type RegistrationConfirmation, type RegistrationQuality, type RewardPaidEvent, type RewardPayoutCancelledEvent, type RewardPayoutCreatedEvent, type RewardPayoutEventData, type RewardPayoutFailedEvent, type RewardPayoutProviderPendingEvent, type SandboxSession, SettlementMode, type SettlementReceipt, type SideEffectRecord, SiglumeAPIError, SiglumeAssistError, SiglumeBuyerClient, type SiglumeBuyerClientOptions, SiglumeClient, SiglumeClientError, type SiglumeClientOptions, type SiglumeClientShape, SiglumeError, SiglumeExperimentalError, SiglumeExperimentalWarning, SiglumeNotFoundError, SiglumeProjectError, SiglumeValidationError, SiglumeWebhookError, type SiglumeWebhookEvent, SiglumeWebhookPayloadError, SiglumeWebhookReplayError, SiglumeWebhookSignatureError, StoreVertical, type StructuredGenerationUsage, StubProvider, type Subscription, type SubscriptionCancelledEvent, type SubscriptionCreatedEvent, type SubscriptionLifecycleEventData, type SubscriptionPausedEvent, type SubscriptionReinstatedEvent, type SubscriptionRenewedEvent, type SupportCaseRecord, TOOL_MANUAL_DRAFT_PROMPT, type ToolManual, type ToolManualAssistAttempt, type ToolManualAssistMetadata, type ToolManualAssistResult, type ToolManualGrade, type ToolManualIssue, type ToolManualIssueSeverity, ToolManualPermissionClass, type ToolManualQualityReport, type ToolSchemaExport, type UsageEventRecord, type UsageRecord, WEBHOOK_EVENT_ID_HEADER, WEBHOOK_EVENT_TYPES, WEBHOOK_EVENT_TYPE_HEADER, WEBHOOK_SIGNATURE_HEADER, type WebhookCallback, type WebhookDeliveryRecord, type WebhookDispatchResult, type WebhookEventBase, type WebhookEventType, WebhookHandler, type WebhookSignatureVerification, type WebhookSubscriptionRecord, type WorksCategoryRecord, type WorksOwnerDashboard, type WorksOwnerDashboardAgent, type WorksOwnerDashboardOrder, type WorksOwnerDashboardPitch, type WorksOwnerDashboardStats, type WorksPosterDashboard, type WorksPosterDashboardJob, type WorksPosterDashboardOrder, type WorksPosterDashboardStats, type WorksRegistrationRecord, buildOperationMetadata, build_webhook_signature_header, compute_webhook_signature, defaultCapabilityKeyForOperation, defaultOperationOutputSchema, diff_manifest, diff_tool_manual, draft_tool_manual, fallbackOperationCatalog, fill_tool_manual_gaps, normalizeUsageRecord, parse_cross_currency_quote, parse_embedded_wallet_charge, parse_polygon_mandate, parse_queued_webhook_event, parse_settlement_receipt, parse_webhook_delivery, parse_webhook_event, parse_webhook_subscription, renderJson as render_json, score_tool_manual_offline, score_tool_manual_remote, simulate_embedded_wallet_charge, simulate_polygon_mandate, to_anthropic_tool, to_mcp_tool, to_openai_function, to_openai_responses_tool, tool_manual_to_dict, validate_tool_manual, verify_webhook_signature };
package/dist/index.d.ts CHANGED
@@ -217,6 +217,7 @@ interface AppManifest {
217
217
  capability_key: string;
218
218
  version?: string;
219
219
  name: string;
220
+ /** Buyer-facing task summary, max 240 characters. */
220
221
  job_to_be_done: string;
221
222
  category?: AppCategory;
222
223
  permission_class: PermissionClass;
@@ -234,7 +235,9 @@ interface AppManifest {
234
235
  jurisdiction: string;
235
236
  applicable_regulations?: string[];
236
237
  data_residency?: string;
238
+ /** Catalog tagline shown on cards and the detail header, max 60 characters. */
237
239
  short_description?: string;
240
+ /** Detail-page copy for limits, approval behavior, pricing notes, and expected results, max 1000 characters. */
238
241
  description?: string;
239
242
  docs_url?: string;
240
243
  support_contact?: string;
@@ -970,115 +973,6 @@ interface WorksPosterDashboard {
970
973
  stats: WorksPosterDashboardStats;
971
974
  raw: Record<string, unknown>;
972
975
  }
973
- interface PartnerDashboard {
974
- partner_id: string;
975
- company_name?: string | null;
976
- plan?: string | null;
977
- plan_label?: string | null;
978
- month_bytes_used: number;
979
- month_bytes_limit: number;
980
- month_usage_pct: number;
981
- total_source_items: number;
982
- has_billing: boolean;
983
- has_subscription: boolean;
984
- raw: Record<string, unknown>;
985
- }
986
- interface PartnerUsage {
987
- plan?: string | null;
988
- month_bytes_used: number;
989
- month_bytes_limit: number;
990
- month_bytes_remaining: number;
991
- month_usage_pct: number;
992
- raw: Record<string, unknown>;
993
- }
994
- interface PartnerApiKeyRecord {
995
- credential_id: string;
996
- name?: string | null;
997
- key_id?: string | null;
998
- allowed_source_types: string[];
999
- last_used_at?: string | null;
1000
- created_at?: string | null;
1001
- revoked: boolean;
1002
- raw: Record<string, unknown>;
1003
- }
1004
- interface PartnerApiKeyHandle {
1005
- credential_id: string;
1006
- name?: string | null;
1007
- key_id?: string | null;
1008
- allowed_source_types: string[];
1009
- masked_key_hint?: string | null;
1010
- raw: Record<string, unknown>;
1011
- }
1012
- interface AdsBilling {
1013
- currency?: string | null;
1014
- billing_mode?: string | null;
1015
- month_spend_jpy: number;
1016
- month_spend_usd: number;
1017
- all_time_spend_jpy: number;
1018
- all_time_spend_usd: number;
1019
- total_impressions: number;
1020
- total_replies: number;
1021
- has_billing: boolean;
1022
- has_subscription: boolean;
1023
- invoices: Array<Record<string, unknown>>;
1024
- wallet?: Record<string, unknown> | null;
1025
- balances: Array<Record<string, unknown>>;
1026
- supported_tokens: Array<Record<string, unknown>>;
1027
- funding_instructions?: Record<string, unknown> | null;
1028
- mandate?: PlanWeb3Mandate | null;
1029
- raw: Record<string, unknown>;
1030
- }
1031
- interface AdsBillingSettlement {
1032
- status?: string | null;
1033
- message?: string | null;
1034
- settles_automatically?: boolean | null;
1035
- cycle_key?: string | null;
1036
- settled_at?: string | null;
1037
- raw: Record<string, unknown>;
1038
- }
1039
- interface AdsProfile {
1040
- has_profile: boolean;
1041
- company_name?: string | null;
1042
- ad_currency?: string | null;
1043
- has_billing: boolean;
1044
- raw: Record<string, unknown>;
1045
- }
1046
- interface AdsCampaignRecord {
1047
- campaign_id: string;
1048
- name?: string | null;
1049
- target_url?: string | null;
1050
- content_brief?: string | null;
1051
- target_topics: string[];
1052
- posting_interval_minutes: number;
1053
- max_posts_per_day: number;
1054
- currency?: string | null;
1055
- monthly_budget_jpy: number;
1056
- cpm_jpy: number;
1057
- cpr_jpy: number;
1058
- monthly_budget_usd: number;
1059
- cpm_usd: number;
1060
- cpr_usd: number;
1061
- status: string;
1062
- month_spend_jpy: number;
1063
- month_spend_usd: number;
1064
- total_posts: number;
1065
- total_impressions: number;
1066
- total_replies: number;
1067
- next_post_at?: string | null;
1068
- created_at?: string | null;
1069
- raw: Record<string, unknown>;
1070
- }
1071
- interface AdsCampaignPostRecord {
1072
- post_id: string;
1073
- content_id?: string | null;
1074
- cost_jpy: number;
1075
- cost_usd: number;
1076
- impressions: number;
1077
- replies: number;
1078
- status?: string | null;
1079
- created_at?: string | null;
1080
- raw: Record<string, unknown>;
1081
- }
1082
976
  interface MarketProposalRecord {
1083
977
  proposal_id: string;
1084
978
  parent_proposal_id?: string | null;
@@ -1372,7 +1266,7 @@ declare const WEBHOOK_SIGNATURE_HEADER = "Siglume-Signature";
1372
1266
  declare const WEBHOOK_EVENT_ID_HEADER = "Siglume-Event-Id";
1373
1267
  declare const WEBHOOK_EVENT_TYPE_HEADER = "Siglume-Event-Type";
1374
1268
  declare const DEFAULT_WEBHOOK_TOLERANCE_SECONDS = 300;
1375
- declare const WEBHOOK_EVENT_TYPES: readonly ["subscription.created", "subscription.renewed", "subscription.cancelled", "subscription.paused", "subscription.reinstated", "payment.succeeded", "payment.failed", "capability.published", "capability.delisted", "execution.completed", "execution.failed"];
1269
+ declare const WEBHOOK_EVENT_TYPES: readonly ["subscription.created", "subscription.renewed", "subscription.cancelled", "subscription.paused", "subscription.reinstated", "payment.succeeded", "payment.failed", "capability.published", "capability.delisted", "execution.completed", "execution.failed", "reward_payout.created", "reward_payout.provider_pending", "reward_paid", "reward_payout.failed", "reward_payout.cancelled"];
1376
1270
  type WebhookEventType = (typeof WEBHOOK_EVENT_TYPES)[number];
1377
1271
  interface WebhookSignatureVerification {
1378
1272
  timestamp: number;
@@ -1462,6 +1356,20 @@ interface ExecutionFailedEventData extends ExecutionCompletedEventData {
1462
1356
  reason_code?: string;
1463
1357
  reason?: string;
1464
1358
  }
1359
+ interface RewardPayoutEventData extends Record<string, unknown> {
1360
+ reward_payout_request_id?: string;
1361
+ app_id?: string;
1362
+ developer_id?: string;
1363
+ recipient_subject?: string;
1364
+ amount_minor?: number;
1365
+ display_currency?: string;
1366
+ token_symbol?: string;
1367
+ reward_event_id?: string;
1368
+ status?: string;
1369
+ tx_hash?: string | null;
1370
+ failure_code?: string | null;
1371
+ failure_reason?: string | null;
1372
+ }
1465
1373
  interface SubscriptionCreatedEvent extends WebhookEventBase<"subscription.created", SubscriptionLifecycleEventData> {
1466
1374
  }
1467
1375
  interface SubscriptionRenewedEvent extends WebhookEventBase<"subscription.renewed", SubscriptionLifecycleEventData> {
@@ -1484,7 +1392,17 @@ interface ExecutionCompletedEvent extends WebhookEventBase<"execution.completed"
1484
1392
  }
1485
1393
  interface ExecutionFailedEvent extends WebhookEventBase<"execution.failed", ExecutionFailedEventData> {
1486
1394
  }
1487
- type SiglumeWebhookEvent = SubscriptionCreatedEvent | SubscriptionRenewedEvent | SubscriptionCancelledEvent | SubscriptionPausedEvent | SubscriptionReinstatedEvent | PaymentSucceededEvent | PaymentFailedEvent | CapabilityPublishedEvent | CapabilityDelistedEvent | ExecutionCompletedEvent | ExecutionFailedEvent;
1395
+ interface RewardPayoutCreatedEvent extends WebhookEventBase<"reward_payout.created", RewardPayoutEventData> {
1396
+ }
1397
+ interface RewardPayoutProviderPendingEvent extends WebhookEventBase<"reward_payout.provider_pending", RewardPayoutEventData> {
1398
+ }
1399
+ interface RewardPaidEvent extends WebhookEventBase<"reward_paid", RewardPayoutEventData> {
1400
+ }
1401
+ interface RewardPayoutFailedEvent extends WebhookEventBase<"reward_payout.failed", RewardPayoutEventData> {
1402
+ }
1403
+ interface RewardPayoutCancelledEvent extends WebhookEventBase<"reward_payout.cancelled", RewardPayoutEventData> {
1404
+ }
1405
+ type SiglumeWebhookEvent = SubscriptionCreatedEvent | SubscriptionRenewedEvent | SubscriptionCancelledEvent | SubscriptionPausedEvent | SubscriptionReinstatedEvent | PaymentSucceededEvent | PaymentFailedEvent | CapabilityPublishedEvent | CapabilityDelistedEvent | ExecutionCompletedEvent | ExecutionFailedEvent | RewardPayoutCreatedEvent | RewardPayoutProviderPendingEvent | RewardPaidEvent | RewardPayoutFailedEvent | RewardPayoutCancelledEvent;
1488
1406
  interface QueuedWebhookEvent {
1489
1407
  queued: boolean;
1490
1408
  event: SiglumeWebhookEvent;
@@ -1967,45 +1885,6 @@ interface SiglumeClientShape {
1967
1885
  agent_id?: string;
1968
1886
  lang?: string;
1969
1887
  }): Promise<InstalledToolReceiptStepRecord[]>;
1970
- get_partner_dashboard(options?: {
1971
- agent_id?: string;
1972
- lang?: string;
1973
- }): Promise<PartnerDashboard>;
1974
- get_partner_usage(options?: {
1975
- agent_id?: string;
1976
- lang?: string;
1977
- }): Promise<PartnerUsage>;
1978
- list_partner_api_keys(options?: {
1979
- agent_id?: string;
1980
- lang?: string;
1981
- }): Promise<PartnerApiKeyRecord[]>;
1982
- create_partner_api_key(options?: {
1983
- agent_id?: string;
1984
- name?: string;
1985
- allowed_source_types?: string[];
1986
- lang?: string;
1987
- }): Promise<PartnerApiKeyHandle>;
1988
- get_ads_billing(options?: {
1989
- agent_id?: string;
1990
- rail?: string;
1991
- lang?: string;
1992
- }): Promise<AdsBilling>;
1993
- settle_ads_billing(options?: {
1994
- agent_id?: string;
1995
- lang?: string;
1996
- }): Promise<AdsBillingSettlement>;
1997
- get_ads_profile(options?: {
1998
- agent_id?: string;
1999
- lang?: string;
2000
- }): Promise<AdsProfile>;
2001
- list_ads_campaigns(options?: {
2002
- agent_id?: string;
2003
- lang?: string;
2004
- }): Promise<AdsCampaignRecord[]>;
2005
- list_ads_campaign_posts(campaign_id: string, options?: {
2006
- agent_id?: string;
2007
- lang?: string;
2008
- }): Promise<AdsCampaignPostRecord[]>;
2009
1888
  update_agent_charter(agent_id: string, charter_text: string, options?: {
2010
1889
  role?: string;
2011
1890
  target_profile?: Record<string, unknown>;
@@ -2415,45 +2294,6 @@ declare class SiglumeClient implements SiglumeClientShape {
2415
2294
  agent_id?: string;
2416
2295
  lang?: string;
2417
2296
  }): Promise<InstalledToolReceiptStepRecord[]>;
2418
- get_partner_dashboard(options?: {
2419
- agent_id?: string;
2420
- lang?: string;
2421
- }): Promise<PartnerDashboard>;
2422
- get_partner_usage(options?: {
2423
- agent_id?: string;
2424
- lang?: string;
2425
- }): Promise<PartnerUsage>;
2426
- list_partner_api_keys(options?: {
2427
- agent_id?: string;
2428
- lang?: string;
2429
- }): Promise<PartnerApiKeyRecord[]>;
2430
- create_partner_api_key(options?: {
2431
- agent_id?: string;
2432
- name?: string;
2433
- allowed_source_types?: string[];
2434
- lang?: string;
2435
- }): Promise<PartnerApiKeyHandle>;
2436
- get_ads_billing(options?: {
2437
- agent_id?: string;
2438
- rail?: string;
2439
- lang?: string;
2440
- }): Promise<AdsBilling>;
2441
- settle_ads_billing(options?: {
2442
- agent_id?: string;
2443
- lang?: string;
2444
- }): Promise<AdsBillingSettlement>;
2445
- get_ads_profile(options?: {
2446
- agent_id?: string;
2447
- lang?: string;
2448
- }): Promise<AdsProfile>;
2449
- list_ads_campaigns(options?: {
2450
- agent_id?: string;
2451
- lang?: string;
2452
- }): Promise<AdsCampaignRecord[]>;
2453
- list_ads_campaign_posts(campaign_id: string, options?: {
2454
- agent_id?: string;
2455
- lang?: string;
2456
- }): Promise<AdsCampaignPostRecord[]>;
2457
2297
  list_market_proposals(options?: {
2458
2298
  agent_id?: string;
2459
2299
  status?: string;
@@ -3101,4 +2941,4 @@ declare function validate_tool_manual(manualInput: ManualInput): [boolean, ToolM
3101
2941
 
3102
2942
  declare function renderJson(value: unknown): string;
3103
2943
 
3104
- export { type AccessGrantRecord, type AccountAlert, type AccountContentDeleteResult, type AccountContentPostResult, type AccountDigest, type AccountDigestItem, type AccountDigestSummary, type AccountFeedbackSubmission, type AccountPlan, type AccountPlanCancellation, type AccountPreferences, type AccountWatchlist, type AdsBilling, type AdsBillingSettlement, type AdsCampaignPostRecord, type AdsCampaignRecord, type AdsProfile, type AgentCharter, type AgentRecord, type AgentThreadRecord, type AgentTopicSubscription, AnthropicProvider, type AnthropicToolDefinition, AppAdapter, AppCategory, type AppListingRecord, type AppManifest, AppTestHarness, ApprovalMode, type ApprovalPolicy, type ApprovalRequestHint, type AutoRegistrationReceipt, type Awaitable, type BillingPortalLink, type BillingTiming, BreakingChange, type BudgetPolicy, type BundleListingRecord, type BundleMember, type CapabilityBindingRecord, type CapabilityDelistedEvent, type CapabilityEventData, type CapabilityListing, type CapabilityPersistencePolicy, type CapabilityPublishedEvent, type CapabilitySaveStateRecord, type CassetteFile, type CassetteInteraction, type Change, ChangeLevel, type CompanyPublisherRecord, type CrossCurrencyQuote, type CursorPage, DEFAULT_OPERATION_AGENT_ID, DEFAULT_SIGLUME_API_BASE, DEFAULT_WEBHOOK_TOLERANCE_SECONDS, type DeveloperPortalSummary, type EmbeddedWalletCharge, type EnvelopeMeta, Environment, type ExecutionArtifact, type ExecutionCompletedEvent, type ExecutionCompletedEventData, type ExecutionContext, type ExecutionFailedEvent, type ExecutionFailedEventData, ExecutionKind, type ExecutionResult, type ExpressLikeRequest, type ExpressLikeResponse, type FavoriteAgent, type FavoriteAgentMutation, type GrantBindingResult, type HeaderLike, type HealthCheckResult, InMemoryWebhookDedupe, type InstalledToolBindingPolicyRecord, type InstalledToolConnectionReadiness, type InstalledToolExecutionRecord, type InstalledToolPolicyUpdateResult, type InstalledToolReceiptRecord, type InstalledToolReceiptStepRecord, type InstalledToolRecord, type JsonObject, type JsonPrimitive, type JsonValue, LLMProvider, ListingCurrency, MINIMUM_JPY_OPERATION_PRICE_MINOR, type MarketNeedRecord, type MarketProposalActionResult, type MarketProposalRecord, type McpToolDescriptor, MeterClient, type MeterClientOptions, type MeterRecordResult, type MeteringInvoiceLinePreview, type MeteringSimulationResult, type NetworkClaimRecord, type NetworkContentDetail, type NetworkContentSummary, type NetworkEvidenceRecord, type NetworkRepliesPage, type OpenAIFunctionDefinition, OpenAIProvider, type OpenAIResponsesToolDefinition, type OperationExecution, type OperationMetadata, type PartnerApiKeyHandle, type PartnerApiKeyRecord, type PartnerDashboard, type PartnerUsage, type PaymentEventData, type PaymentFailedEvent, type PaymentSucceededEvent, PermissionClass, PersistenceMode, type PlanCheckoutSession, type PlanWeb3Mandate, type PolygonMandate, PriceModel, type PricingPlan, type PricingPlanItem, type QueuedWebhookEvent, type ReceiptRef, RecordMode, Recorder, type RecorderOptions, type RegistrationConfirmation, type RegistrationQuality, type SandboxSession, SettlementMode, type SettlementReceipt, type SideEffectRecord, SiglumeAPIError, SiglumeAssistError, SiglumeBuyerClient, type SiglumeBuyerClientOptions, SiglumeClient, SiglumeClientError, type SiglumeClientOptions, type SiglumeClientShape, SiglumeError, SiglumeExperimentalError, SiglumeExperimentalWarning, SiglumeNotFoundError, SiglumeProjectError, SiglumeValidationError, SiglumeWebhookError, type SiglumeWebhookEvent, SiglumeWebhookPayloadError, SiglumeWebhookReplayError, SiglumeWebhookSignatureError, StoreVertical, type StructuredGenerationUsage, StubProvider, type Subscription, type SubscriptionCancelledEvent, type SubscriptionCreatedEvent, type SubscriptionLifecycleEventData, type SubscriptionPausedEvent, type SubscriptionReinstatedEvent, type SubscriptionRenewedEvent, type SupportCaseRecord, TOOL_MANUAL_DRAFT_PROMPT, type ToolManual, type ToolManualAssistAttempt, type ToolManualAssistMetadata, type ToolManualAssistResult, type ToolManualGrade, type ToolManualIssue, type ToolManualIssueSeverity, ToolManualPermissionClass, type ToolManualQualityReport, type ToolSchemaExport, type UsageEventRecord, type UsageRecord, WEBHOOK_EVENT_ID_HEADER, WEBHOOK_EVENT_TYPES, WEBHOOK_EVENT_TYPE_HEADER, WEBHOOK_SIGNATURE_HEADER, type WebhookCallback, type WebhookDeliveryRecord, type WebhookDispatchResult, type WebhookEventBase, type WebhookEventType, WebhookHandler, type WebhookSignatureVerification, type WebhookSubscriptionRecord, type WorksCategoryRecord, type WorksOwnerDashboard, type WorksOwnerDashboardAgent, type WorksOwnerDashboardOrder, type WorksOwnerDashboardPitch, type WorksOwnerDashboardStats, type WorksPosterDashboard, type WorksPosterDashboardJob, type WorksPosterDashboardOrder, type WorksPosterDashboardStats, type WorksRegistrationRecord, buildOperationMetadata, build_webhook_signature_header, compute_webhook_signature, defaultCapabilityKeyForOperation, defaultOperationOutputSchema, diff_manifest, diff_tool_manual, draft_tool_manual, fallbackOperationCatalog, fill_tool_manual_gaps, normalizeUsageRecord, parse_cross_currency_quote, parse_embedded_wallet_charge, parse_polygon_mandate, parse_queued_webhook_event, parse_settlement_receipt, parse_webhook_delivery, parse_webhook_event, parse_webhook_subscription, renderJson as render_json, score_tool_manual_offline, score_tool_manual_remote, simulate_embedded_wallet_charge, simulate_polygon_mandate, to_anthropic_tool, to_mcp_tool, to_openai_function, to_openai_responses_tool, tool_manual_to_dict, validate_tool_manual, verify_webhook_signature };
2944
+ export { type AccessGrantRecord, type AccountAlert, type AccountContentDeleteResult, type AccountContentPostResult, type AccountDigest, type AccountDigestItem, type AccountDigestSummary, type AccountFeedbackSubmission, type AccountPlan, type AccountPlanCancellation, type AccountPreferences, type AccountWatchlist, type AgentCharter, type AgentRecord, type AgentThreadRecord, type AgentTopicSubscription, AnthropicProvider, type AnthropicToolDefinition, AppAdapter, AppCategory, type AppListingRecord, type AppManifest, AppTestHarness, ApprovalMode, type ApprovalPolicy, type ApprovalRequestHint, type AutoRegistrationReceipt, type Awaitable, type BillingPortalLink, type BillingTiming, BreakingChange, type BudgetPolicy, type BundleListingRecord, type BundleMember, type CapabilityBindingRecord, type CapabilityDelistedEvent, type CapabilityEventData, type CapabilityListing, type CapabilityPersistencePolicy, type CapabilityPublishedEvent, type CapabilitySaveStateRecord, type CassetteFile, type CassetteInteraction, type Change, ChangeLevel, type CompanyPublisherRecord, type CrossCurrencyQuote, type CursorPage, DEFAULT_OPERATION_AGENT_ID, DEFAULT_SIGLUME_API_BASE, DEFAULT_WEBHOOK_TOLERANCE_SECONDS, type DeveloperPortalSummary, type EmbeddedWalletCharge, type EnvelopeMeta, Environment, type ExecutionArtifact, type ExecutionCompletedEvent, type ExecutionCompletedEventData, type ExecutionContext, type ExecutionFailedEvent, type ExecutionFailedEventData, ExecutionKind, type ExecutionResult, type ExpressLikeRequest, type ExpressLikeResponse, type FavoriteAgent, type FavoriteAgentMutation, type GrantBindingResult, type HeaderLike, type HealthCheckResult, InMemoryWebhookDedupe, type InstalledToolBindingPolicyRecord, type InstalledToolConnectionReadiness, type InstalledToolExecutionRecord, type InstalledToolPolicyUpdateResult, type InstalledToolReceiptRecord, type InstalledToolReceiptStepRecord, type InstalledToolRecord, type JsonObject, type JsonPrimitive, type JsonValue, LLMProvider, ListingCurrency, MINIMUM_JPY_OPERATION_PRICE_MINOR, type MarketNeedRecord, type MarketProposalActionResult, type MarketProposalRecord, type McpToolDescriptor, MeterClient, type MeterClientOptions, type MeterRecordResult, type MeteringInvoiceLinePreview, type MeteringSimulationResult, type NetworkClaimRecord, type NetworkContentDetail, type NetworkContentSummary, type NetworkEvidenceRecord, type NetworkRepliesPage, type OpenAIFunctionDefinition, OpenAIProvider, type OpenAIResponsesToolDefinition, type OperationExecution, type OperationMetadata, type PaymentEventData, type PaymentFailedEvent, type PaymentSucceededEvent, PermissionClass, PersistenceMode, type PlanCheckoutSession, type PlanWeb3Mandate, type PolygonMandate, PriceModel, type PricingPlan, type PricingPlanItem, type QueuedWebhookEvent, type ReceiptRef, RecordMode, Recorder, type RecorderOptions, type RegistrationConfirmation, type RegistrationQuality, type RewardPaidEvent, type RewardPayoutCancelledEvent, type RewardPayoutCreatedEvent, type RewardPayoutEventData, type RewardPayoutFailedEvent, type RewardPayoutProviderPendingEvent, type SandboxSession, SettlementMode, type SettlementReceipt, type SideEffectRecord, SiglumeAPIError, SiglumeAssistError, SiglumeBuyerClient, type SiglumeBuyerClientOptions, SiglumeClient, SiglumeClientError, type SiglumeClientOptions, type SiglumeClientShape, SiglumeError, SiglumeExperimentalError, SiglumeExperimentalWarning, SiglumeNotFoundError, SiglumeProjectError, SiglumeValidationError, SiglumeWebhookError, type SiglumeWebhookEvent, SiglumeWebhookPayloadError, SiglumeWebhookReplayError, SiglumeWebhookSignatureError, StoreVertical, type StructuredGenerationUsage, StubProvider, type Subscription, type SubscriptionCancelledEvent, type SubscriptionCreatedEvent, type SubscriptionLifecycleEventData, type SubscriptionPausedEvent, type SubscriptionReinstatedEvent, type SubscriptionRenewedEvent, type SupportCaseRecord, TOOL_MANUAL_DRAFT_PROMPT, type ToolManual, type ToolManualAssistAttempt, type ToolManualAssistMetadata, type ToolManualAssistResult, type ToolManualGrade, type ToolManualIssue, type ToolManualIssueSeverity, ToolManualPermissionClass, type ToolManualQualityReport, type ToolSchemaExport, type UsageEventRecord, type UsageRecord, WEBHOOK_EVENT_ID_HEADER, WEBHOOK_EVENT_TYPES, WEBHOOK_EVENT_TYPE_HEADER, WEBHOOK_SIGNATURE_HEADER, type WebhookCallback, type WebhookDeliveryRecord, type WebhookDispatchResult, type WebhookEventBase, type WebhookEventType, WebhookHandler, type WebhookSignatureVerification, type WebhookSubscriptionRecord, type WorksCategoryRecord, type WorksOwnerDashboard, type WorksOwnerDashboardAgent, type WorksOwnerDashboardOrder, type WorksOwnerDashboardPitch, type WorksOwnerDashboardStats, type WorksPosterDashboard, type WorksPosterDashboardJob, type WorksPosterDashboardOrder, type WorksPosterDashboardStats, type WorksRegistrationRecord, buildOperationMetadata, build_webhook_signature_header, compute_webhook_signature, defaultCapabilityKeyForOperation, defaultOperationOutputSchema, diff_manifest, diff_tool_manual, draft_tool_manual, fallbackOperationCatalog, fill_tool_manual_gaps, normalizeUsageRecord, parse_cross_currency_quote, parse_embedded_wallet_charge, parse_polygon_mandate, parse_queued_webhook_event, parse_settlement_receipt, parse_webhook_delivery, parse_webhook_event, parse_webhook_subscription, renderJson as render_json, score_tool_manual_offline, score_tool_manual_remote, simulate_embedded_wallet_charge, simulate_polygon_mandate, to_anthropic_tool, to_mcp_tool, to_openai_function, to_openai_responses_tool, tool_manual_to_dict, validate_tool_manual, verify_webhook_signature };