@siglume/api-sdk 0.10.7 → 1.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/README.md +12 -6
- package/dist/bin/siglume.cjs +349 -295
- package/dist/bin/siglume.cjs.map +1 -1
- package/dist/bin/siglume.js +349 -295
- package/dist/bin/siglume.js.map +1 -1
- package/dist/cli/index.cjs +349 -295
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.d.cts +76 -65
- package/dist/cli/index.d.ts +76 -65
- package/dist/cli/index.js +349 -295
- package/dist/cli/index.js.map +1 -1
- package/dist/index.cjs +171 -134
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +89 -108
- package/dist/index.d.ts +89 -108
- package/dist/index.js +171 -134
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -190,11 +190,26 @@ declare const ListingCurrency: {
|
|
|
190
190
|
readonly JPY: "JPY";
|
|
191
191
|
};
|
|
192
192
|
type ListingCurrency = (typeof ListingCurrency)[keyof typeof ListingCurrency];
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
193
|
+
declare const PersistenceMode: {
|
|
194
|
+
readonly NONE: "none";
|
|
195
|
+
readonly LOCAL: "local";
|
|
196
|
+
readonly PLATFORM: "platform";
|
|
197
|
+
readonly DEVELOPER_SERVER: "developer_server";
|
|
198
|
+
};
|
|
199
|
+
type PersistenceMode = (typeof PersistenceMode)[keyof typeof PersistenceMode];
|
|
200
|
+
interface CapabilityPersistencePolicy {
|
|
201
|
+
mode: PersistenceMode;
|
|
202
|
+
schema_version?: string;
|
|
203
|
+
scope?: string;
|
|
204
|
+
restore_required?: boolean;
|
|
205
|
+
max_bytes?: number;
|
|
206
|
+
endpoint?: string | null;
|
|
207
|
+
description?: string;
|
|
208
|
+
/**
|
|
209
|
+
* JSON Schema for persisted game save data.
|
|
210
|
+
* Required when store_vertical is "game" and mode is not "none".
|
|
211
|
+
*/
|
|
212
|
+
save_data_schema?: Record<string, unknown>;
|
|
198
213
|
}
|
|
199
214
|
interface AppManifest {
|
|
200
215
|
capability_key: string;
|
|
@@ -221,10 +236,14 @@ interface AppManifest {
|
|
|
221
236
|
support_contact?: string;
|
|
222
237
|
seller_homepage_url?: string;
|
|
223
238
|
seller_social_url?: string;
|
|
239
|
+
publisher_type?: "user" | "company";
|
|
240
|
+
company_id?: string;
|
|
241
|
+
publisher_company_id?: string;
|
|
224
242
|
store_vertical: StoreVertical;
|
|
225
243
|
compatibility_tags?: string[];
|
|
226
244
|
example_prompts?: string[];
|
|
227
245
|
latency_tier?: string;
|
|
246
|
+
persistence?: CapabilityPersistencePolicy;
|
|
228
247
|
}
|
|
229
248
|
interface ExecutionContext {
|
|
230
249
|
agent_id: string;
|
|
@@ -234,7 +253,6 @@ interface ExecutionContext {
|
|
|
234
253
|
source_type?: string;
|
|
235
254
|
environment?: Environment;
|
|
236
255
|
execution_kind?: ExecutionKind;
|
|
237
|
-
connected_accounts?: Record<string, ConnectedAccountRef>;
|
|
238
256
|
budget_remaining_minor?: number | null;
|
|
239
257
|
trace_id?: string;
|
|
240
258
|
idempotency_key?: string;
|
|
@@ -388,29 +406,52 @@ interface AppListingRecord {
|
|
|
388
406
|
seller_display_name?: string | null;
|
|
389
407
|
seller_homepage_url?: string | null;
|
|
390
408
|
seller_social_url?: string | null;
|
|
409
|
+
publisher_type?: string | null;
|
|
410
|
+
publisher_company_id?: string | null;
|
|
411
|
+
company_id?: string | null;
|
|
412
|
+
company_name?: string | null;
|
|
413
|
+
company_publish_status?: string | null;
|
|
414
|
+
company_terms_version?: string | null;
|
|
391
415
|
review_status?: string | null;
|
|
392
416
|
review_note?: string | null;
|
|
393
417
|
submission_blockers: string[];
|
|
418
|
+
persistence: Record<string, unknown>;
|
|
394
419
|
created_at?: string | null;
|
|
395
420
|
updated_at?: string | null;
|
|
396
421
|
raw: Record<string, unknown>;
|
|
397
422
|
}
|
|
398
|
-
interface
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
423
|
+
interface CompanyPublisherRecord {
|
|
424
|
+
company_id: string;
|
|
425
|
+
name: string;
|
|
426
|
+
status: string;
|
|
427
|
+
description?: string | null;
|
|
428
|
+
is_founder: boolean;
|
|
429
|
+
membership_role?: string | null;
|
|
430
|
+
membership_status?: string | null;
|
|
431
|
+
can_publish: boolean;
|
|
432
|
+
can_approve: boolean;
|
|
433
|
+
approval_required: boolean;
|
|
434
|
+
paid_listing_allowed: boolean;
|
|
435
|
+
disabled_reasons: string[];
|
|
436
|
+
company_terms_version?: string | null;
|
|
437
|
+
active_listing_count: number;
|
|
438
|
+
pending_approval_count: number;
|
|
439
|
+
settlement_wallet_ready: boolean;
|
|
440
|
+
settlement_wallets: Array<Record<string, unknown>>;
|
|
441
|
+
raw: Record<string, unknown>;
|
|
404
442
|
}
|
|
405
|
-
interface
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
443
|
+
interface CapabilitySaveStateRecord {
|
|
444
|
+
capability_key: string;
|
|
445
|
+
save_key: string;
|
|
446
|
+
schema_version: string;
|
|
447
|
+
revision: number;
|
|
448
|
+
payload: Record<string, unknown>;
|
|
449
|
+
metadata: Record<string, unknown>;
|
|
450
|
+
checksum?: string | null;
|
|
451
|
+
updated_at?: string | null;
|
|
452
|
+
created_at?: string | null;
|
|
453
|
+
exists: boolean;
|
|
454
|
+
raw: Record<string, unknown>;
|
|
414
455
|
}
|
|
415
456
|
interface BundleMember {
|
|
416
457
|
capability_listing_id: string;
|
|
@@ -447,7 +488,6 @@ interface AutoRegistrationReceipt {
|
|
|
447
488
|
auto_manifest: Record<string, unknown>;
|
|
448
489
|
confidence: Record<string, unknown>;
|
|
449
490
|
validation_report?: Record<string, unknown>;
|
|
450
|
-
oauth_status?: Record<string, unknown>;
|
|
451
491
|
review_url?: string | null;
|
|
452
492
|
trace_id?: string | null;
|
|
453
493
|
request_id?: string | null;
|
|
@@ -492,7 +532,6 @@ interface SandboxSession {
|
|
|
492
532
|
dry_run_supported: boolean;
|
|
493
533
|
approval_mode?: string | null;
|
|
494
534
|
required_connected_accounts: unknown[];
|
|
495
|
-
connected_accounts: Array<Record<string, unknown>>;
|
|
496
535
|
stub_providers_enabled: boolean;
|
|
497
536
|
simulated_receipts: boolean;
|
|
498
537
|
approval_simulator: boolean;
|
|
@@ -528,19 +567,6 @@ interface GrantBindingResult {
|
|
|
528
567
|
request_id?: string | null;
|
|
529
568
|
raw: Record<string, unknown>;
|
|
530
569
|
}
|
|
531
|
-
interface ConnectedAccountRecord {
|
|
532
|
-
connected_account_id: string;
|
|
533
|
-
provider_key: string;
|
|
534
|
-
account_role: string;
|
|
535
|
-
display_name?: string | null;
|
|
536
|
-
environment?: string | null;
|
|
537
|
-
connection_status?: string | null;
|
|
538
|
-
scopes: string[];
|
|
539
|
-
metadata: Record<string, unknown>;
|
|
540
|
-
created_at?: string | null;
|
|
541
|
-
updated_at?: string | null;
|
|
542
|
-
raw: Record<string, unknown>;
|
|
543
|
-
}
|
|
544
570
|
interface UsageEventRecord {
|
|
545
571
|
usage_event_id: string;
|
|
546
572
|
capability_key?: string | null;
|
|
@@ -1562,7 +1588,6 @@ interface SiglumeClientShape {
|
|
|
1562
1588
|
source_code?: string;
|
|
1563
1589
|
source_url?: string;
|
|
1564
1590
|
runtime_validation?: Record<string, unknown>;
|
|
1565
|
-
oauth_credentials?: Record<string, unknown> | unknown[];
|
|
1566
1591
|
source_context?: Record<string, unknown>;
|
|
1567
1592
|
input_form_spec?: Record<string, unknown>;
|
|
1568
1593
|
}): Promise<AutoRegistrationReceipt>;
|
|
@@ -1578,6 +1603,19 @@ interface SiglumeClientShape {
|
|
|
1578
1603
|
cursor?: string;
|
|
1579
1604
|
}): Promise<CursorPage<AppListingRecord>>;
|
|
1580
1605
|
get_listing(listing_id: string): Promise<AppListingRecord>;
|
|
1606
|
+
list_company_publishers(): Promise<CompanyPublisherRecord[]>;
|
|
1607
|
+
request_company_publish_approval(listing_id: string, note?: string): Promise<AppListingRecord>;
|
|
1608
|
+
decide_company_publish_approval(listing_id: string, options: {
|
|
1609
|
+
decision: "approve" | "reject";
|
|
1610
|
+
reason?: string;
|
|
1611
|
+
}): Promise<AppListingRecord>;
|
|
1612
|
+
get_capability_state(capability_key: string, save_key?: string): Promise<CapabilitySaveStateRecord>;
|
|
1613
|
+
put_capability_state(capability_key: string, save_key?: string, payload?: Record<string, unknown>, options?: {
|
|
1614
|
+
schema_version?: string;
|
|
1615
|
+
expected_revision?: number | null;
|
|
1616
|
+
metadata?: Record<string, unknown>;
|
|
1617
|
+
}): Promise<CapabilitySaveStateRecord>;
|
|
1618
|
+
delete_capability_state(capability_key: string, save_key?: string): Promise<CapabilitySaveStateRecord>;
|
|
1581
1619
|
list_capabilities(options?: {
|
|
1582
1620
|
mine?: boolean;
|
|
1583
1621
|
status?: string;
|
|
@@ -1618,34 +1656,6 @@ interface SiglumeClientShape {
|
|
|
1618
1656
|
}): Promise<BundleListingRecord>;
|
|
1619
1657
|
remove_bundle_capability(bundle_id: string, capability_listing_id: string): Promise<BundleListingRecord>;
|
|
1620
1658
|
submit_bundle_for_review(bundle_id: string): Promise<BundleListingRecord>;
|
|
1621
|
-
start_connected_account_oauth(input: {
|
|
1622
|
-
listing_id: string;
|
|
1623
|
-
redirect_uri: string;
|
|
1624
|
-
scopes?: string[];
|
|
1625
|
-
account_role?: string;
|
|
1626
|
-
}): Promise<ConnectedAccountOAuthStart>;
|
|
1627
|
-
set_listing_oauth_credentials(listing_id: string, input: {
|
|
1628
|
-
provider_key: string;
|
|
1629
|
-
client_id: string;
|
|
1630
|
-
client_secret: string;
|
|
1631
|
-
authorize_url: string;
|
|
1632
|
-
token_url: string;
|
|
1633
|
-
revoke_url?: string;
|
|
1634
|
-
display_name?: string;
|
|
1635
|
-
scope_separator?: string;
|
|
1636
|
-
token_endpoint_auth?: string;
|
|
1637
|
-
pkce_required?: boolean;
|
|
1638
|
-
refresh_supported?: boolean;
|
|
1639
|
-
available_scopes?: string[];
|
|
1640
|
-
required_scopes?: string[];
|
|
1641
|
-
}): Promise<Record<string, unknown>>;
|
|
1642
|
-
get_listing_oauth_credentials_status(listing_id: string): Promise<Record<string, unknown>>;
|
|
1643
|
-
complete_connected_account_oauth(input: {
|
|
1644
|
-
state: string;
|
|
1645
|
-
code: string;
|
|
1646
|
-
}): Promise<Record<string, unknown>>;
|
|
1647
|
-
refresh_connected_account(account_id: string): Promise<ConnectedAccountLifecycleResult>;
|
|
1648
|
-
revoke_connected_account(account_id: string): Promise<ConnectedAccountLifecycleResult>;
|
|
1649
1659
|
get_developer_portal(): Promise<DeveloperPortalSummary>;
|
|
1650
1660
|
create_sandbox_session(options: {
|
|
1651
1661
|
agent_id: string;
|
|
@@ -1992,12 +2002,6 @@ interface SiglumeClientShape {
|
|
|
1992
2002
|
agent_id: string;
|
|
1993
2003
|
binding_status?: string;
|
|
1994
2004
|
}): Promise<GrantBindingResult>;
|
|
1995
|
-
list_connected_accounts(options?: {
|
|
1996
|
-
provider_key?: string;
|
|
1997
|
-
environment?: string;
|
|
1998
|
-
limit?: number;
|
|
1999
|
-
cursor?: string;
|
|
2000
|
-
}): Promise<CursorPage<ConnectedAccountRecord>>;
|
|
2001
2005
|
create_support_case(subject: string, body: string, options?: {
|
|
2002
2006
|
trace_id?: string;
|
|
2003
2007
|
case_type?: string;
|
|
@@ -2097,7 +2101,6 @@ declare class SiglumeClient implements SiglumeClientShape {
|
|
|
2097
2101
|
source_code?: string;
|
|
2098
2102
|
source_url?: string;
|
|
2099
2103
|
runtime_validation?: Record<string, unknown>;
|
|
2100
|
-
oauth_credentials?: Record<string, unknown> | unknown[];
|
|
2101
2104
|
source_context?: Record<string, unknown>;
|
|
2102
2105
|
input_form_spec?: Record<string, unknown>;
|
|
2103
2106
|
}): Promise<AutoRegistrationReceipt>;
|
|
@@ -2120,6 +2123,19 @@ declare class SiglumeClient implements SiglumeClientShape {
|
|
|
2120
2123
|
cursor?: string;
|
|
2121
2124
|
}): Promise<CursorPageResult<AppListingRecord>>;
|
|
2122
2125
|
get_listing(listing_id: string): Promise<AppListingRecord>;
|
|
2126
|
+
list_company_publishers(): Promise<CompanyPublisherRecord[]>;
|
|
2127
|
+
request_company_publish_approval(listing_id: string, note?: string): Promise<AppListingRecord>;
|
|
2128
|
+
decide_company_publish_approval(listing_id: string, options: {
|
|
2129
|
+
decision: "approve" | "reject";
|
|
2130
|
+
reason?: string;
|
|
2131
|
+
}): Promise<AppListingRecord>;
|
|
2132
|
+
get_capability_state(capability_key: string, save_key?: string): Promise<CapabilitySaveStateRecord>;
|
|
2133
|
+
put_capability_state(capability_key: string, save_key?: string, payload?: Record<string, unknown>, options?: {
|
|
2134
|
+
schema_version?: string;
|
|
2135
|
+
expected_revision?: number | null;
|
|
2136
|
+
metadata?: Record<string, unknown>;
|
|
2137
|
+
}): Promise<CapabilitySaveStateRecord>;
|
|
2138
|
+
delete_capability_state(capability_key: string, save_key?: string): Promise<CapabilitySaveStateRecord>;
|
|
2123
2139
|
list_bundles(options?: {
|
|
2124
2140
|
mine?: boolean;
|
|
2125
2141
|
status?: string;
|
|
@@ -2154,34 +2170,6 @@ declare class SiglumeClient implements SiglumeClientShape {
|
|
|
2154
2170
|
}): Promise<BundleListingRecord>;
|
|
2155
2171
|
remove_bundle_capability(bundle_id: string, capability_listing_id: string): Promise<BundleListingRecord>;
|
|
2156
2172
|
submit_bundle_for_review(bundle_id: string): Promise<BundleListingRecord>;
|
|
2157
|
-
start_connected_account_oauth(input: {
|
|
2158
|
-
listing_id: string;
|
|
2159
|
-
redirect_uri: string;
|
|
2160
|
-
scopes?: string[];
|
|
2161
|
-
account_role?: string;
|
|
2162
|
-
}): Promise<ConnectedAccountOAuthStart>;
|
|
2163
|
-
complete_connected_account_oauth(input: {
|
|
2164
|
-
state: string;
|
|
2165
|
-
code: string;
|
|
2166
|
-
}): Promise<Record<string, unknown>>;
|
|
2167
|
-
refresh_connected_account(account_id: string): Promise<ConnectedAccountLifecycleResult>;
|
|
2168
|
-
revoke_connected_account(account_id: string): Promise<ConnectedAccountLifecycleResult>;
|
|
2169
|
-
set_listing_oauth_credentials(listing_id: string, input: {
|
|
2170
|
-
provider_key: string;
|
|
2171
|
-
client_id: string;
|
|
2172
|
-
client_secret: string;
|
|
2173
|
-
authorize_url: string;
|
|
2174
|
-
token_url: string;
|
|
2175
|
-
revoke_url?: string;
|
|
2176
|
-
display_name?: string;
|
|
2177
|
-
scope_separator?: string;
|
|
2178
|
-
token_endpoint_auth?: string;
|
|
2179
|
-
pkce_required?: boolean;
|
|
2180
|
-
refresh_supported?: boolean;
|
|
2181
|
-
available_scopes?: string[];
|
|
2182
|
-
required_scopes?: string[];
|
|
2183
|
-
}): Promise<Record<string, unknown>>;
|
|
2184
|
-
get_listing_oauth_credentials_status(listing_id: string): Promise<Record<string, unknown>>;
|
|
2185
2173
|
get_developer_portal(): Promise<DeveloperPortalSummary>;
|
|
2186
2174
|
create_sandbox_session(options: {
|
|
2187
2175
|
agent_id: string;
|
|
@@ -2528,12 +2516,6 @@ declare class SiglumeClient implements SiglumeClientShape {
|
|
|
2528
2516
|
agent_id: string;
|
|
2529
2517
|
binding_status?: string;
|
|
2530
2518
|
}): Promise<GrantBindingResult>;
|
|
2531
|
-
list_connected_accounts(options?: {
|
|
2532
|
-
provider_key?: string;
|
|
2533
|
-
environment?: string;
|
|
2534
|
-
limit?: number;
|
|
2535
|
-
cursor?: string;
|
|
2536
|
-
}): Promise<CursorPageResult<ConnectedAccountRecord>>;
|
|
2537
2519
|
create_support_case(subject: string, body: string, options?: {
|
|
2538
2520
|
trace_id?: string;
|
|
2539
2521
|
case_type?: string;
|
|
@@ -2878,7 +2860,6 @@ declare class AppTestHarness {
|
|
|
2878
2860
|
validate_manifest(): Promise<string[]>;
|
|
2879
2861
|
validate_tool_manual(manual?: ToolManual | Record<string, unknown>): [boolean, ToolManualIssue[]];
|
|
2880
2862
|
validate_receipt(result: ExecutionResult): string[];
|
|
2881
|
-
simulate_connected_account_missing(task_type?: string, options?: Parameters<AppTestHarness["executeWithKind"]>[2]): Promise<ExecutionResult>;
|
|
2882
2863
|
simulate_metering(record: UsageRecord, options?: {
|
|
2883
2864
|
execution_result?: ExecutionResult | null;
|
|
2884
2865
|
}): Promise<MeteringSimulationResult>;
|
|
@@ -3092,4 +3073,4 @@ declare function validate_tool_manual(manualInput: ManualInput): [boolean, ToolM
|
|
|
3092
3073
|
|
|
3093
3074
|
declare function renderJson(value: unknown): string;
|
|
3094
3075
|
|
|
3095
|
-
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, BreakingChange, type BudgetPolicy, type BundleListingRecord, type BundleMember, type CapabilityBindingRecord, type CapabilityDelistedEvent, type CapabilityEventData, type CapabilityListing, type
|
|
3076
|
+
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, 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, 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 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 };
|