@siglume/api-sdk 0.10.0 → 0.10.2
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 +6 -5
- package/dist/bin/siglume.cjs +135 -233
- package/dist/bin/siglume.cjs.map +1 -1
- package/dist/bin/siglume.js +135 -233
- package/dist/bin/siglume.js.map +1 -1
- package/dist/cli/index.cjs +135 -233
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.d.cts +13 -129
- package/dist/cli/index.d.ts +13 -129
- package/dist/cli/index.js +135 -233
- package/dist/cli/index.js.map +1 -1
- package/dist/index.cjs +40 -254
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +23 -216
- package/dist/index.d.ts +23 -216
- package/dist/index.js +40 -254
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -188,13 +188,6 @@ interface ConnectedAccountRef {
|
|
|
188
188
|
}
|
|
189
189
|
interface AppManifest {
|
|
190
190
|
capability_key: string;
|
|
191
|
-
/**
|
|
192
|
-
* LOCAL-ONLY identification. The Siglume platform never reads this on
|
|
193
|
-
* auto_register / confirm_auto_register and rejects submissions that
|
|
194
|
-
* declare a version — the authoritative `release_semver` is controlled
|
|
195
|
-
* by the platform per the bump rules on the confirm endpoint
|
|
196
|
-
* (see `confirm_registration({ version_bump: ... })`).
|
|
197
|
-
*/
|
|
198
191
|
version?: string;
|
|
199
192
|
name: string;
|
|
200
193
|
job_to_be_done: string;
|
|
@@ -202,7 +195,7 @@ interface AppManifest {
|
|
|
202
195
|
permission_class: PermissionClass;
|
|
203
196
|
approval_mode?: ApprovalMode;
|
|
204
197
|
dry_run_supported?: boolean;
|
|
205
|
-
required_connected_accounts?:
|
|
198
|
+
required_connected_accounts?: unknown[];
|
|
206
199
|
permission_scopes?: string[];
|
|
207
200
|
price_model?: PriceModel;
|
|
208
201
|
price_value_minor?: number;
|
|
@@ -211,13 +204,6 @@ interface AppManifest {
|
|
|
211
204
|
applicable_regulations?: string[];
|
|
212
205
|
data_residency?: string;
|
|
213
206
|
short_description?: string;
|
|
214
|
-
/**
|
|
215
|
-
* Long-form sales description shown on the buyer-facing API detail
|
|
216
|
-
* page. Complements `short_description` (one-liner) with a fuller
|
|
217
|
-
* pitch: who this is for, what it can / cannot do, limits, required
|
|
218
|
-
* connected accounts. The Tool Manual is agent-facing and not shown
|
|
219
|
-
* to buyers; put buyer-facing story here.
|
|
220
|
-
*/
|
|
221
207
|
description?: string;
|
|
222
208
|
docs_url?: string;
|
|
223
209
|
support_contact?: string;
|
|
@@ -381,6 +367,7 @@ interface AppListingRecord {
|
|
|
381
367
|
price_value_minor: number;
|
|
382
368
|
currency: string;
|
|
383
369
|
short_description?: string | null;
|
|
370
|
+
description?: string | null;
|
|
384
371
|
docs_url?: string | null;
|
|
385
372
|
support_contact?: string | null;
|
|
386
373
|
seller_display_name?: string | null;
|
|
@@ -393,17 +380,6 @@ interface AppListingRecord {
|
|
|
393
380
|
updated_at?: string | null;
|
|
394
381
|
raw: Record<string, unknown>;
|
|
395
382
|
}
|
|
396
|
-
interface ConnectedAccountProvider {
|
|
397
|
-
provider_key: string;
|
|
398
|
-
display_name: string;
|
|
399
|
-
auth_type: string;
|
|
400
|
-
refresh_supported: boolean;
|
|
401
|
-
pkce_required: boolean;
|
|
402
|
-
default_scopes: string[];
|
|
403
|
-
available_scopes: string[];
|
|
404
|
-
scope_separator: string;
|
|
405
|
-
notes?: string | null;
|
|
406
|
-
}
|
|
407
383
|
interface ConnectedAccountOAuthStart {
|
|
408
384
|
authorize_url: string;
|
|
409
385
|
state: string;
|
|
@@ -1322,76 +1298,12 @@ interface AgentThreadRecord {
|
|
|
1322
1298
|
items: NetworkContentDetail[];
|
|
1323
1299
|
raw: Record<string, unknown>;
|
|
1324
1300
|
}
|
|
1325
|
-
declare const RefundReason: {
|
|
1326
|
-
readonly CUSTOMER_REQUEST: "customer-request";
|
|
1327
|
-
readonly DUPLICATE: "duplicate";
|
|
1328
|
-
readonly FRAUDULENT: "fraudulent";
|
|
1329
|
-
readonly SERVICE_FAILURE: "service-failure";
|
|
1330
|
-
readonly GOODWILL: "goodwill";
|
|
1331
|
-
};
|
|
1332
|
-
type RefundReason = (typeof RefundReason)[keyof typeof RefundReason];
|
|
1333
|
-
declare const DisputeResponse: {
|
|
1334
|
-
readonly ACCEPT: "accept";
|
|
1335
|
-
readonly CONTEST: "contest";
|
|
1336
|
-
};
|
|
1337
|
-
type DisputeResponse = (typeof DisputeResponse)[keyof typeof DisputeResponse];
|
|
1338
|
-
declare const RefundStatus: {
|
|
1339
|
-
readonly ISSUED: "issued";
|
|
1340
|
-
readonly FAILED: "failed";
|
|
1341
|
-
};
|
|
1342
|
-
type RefundStatus = (typeof RefundStatus)[keyof typeof RefundStatus];
|
|
1343
|
-
declare const DisputeStatus: {
|
|
1344
|
-
readonly OPEN: "open";
|
|
1345
|
-
readonly ACCEPTED: "accepted";
|
|
1346
|
-
readonly CONTESTED: "contested";
|
|
1347
|
-
};
|
|
1348
|
-
type DisputeStatus = (typeof DisputeStatus)[keyof typeof DisputeStatus];
|
|
1349
|
-
interface RefundRecord {
|
|
1350
|
-
refund_id: string;
|
|
1351
|
-
receipt_id: string;
|
|
1352
|
-
owner_user_id?: string | null;
|
|
1353
|
-
payment_mandate_id?: string | null;
|
|
1354
|
-
usage_event_id?: string | null;
|
|
1355
|
-
chain_receipt_id?: string | null;
|
|
1356
|
-
amount_minor: number;
|
|
1357
|
-
currency: string;
|
|
1358
|
-
status: string;
|
|
1359
|
-
reason_code: string;
|
|
1360
|
-
note?: string | null;
|
|
1361
|
-
idempotency_key?: string | null;
|
|
1362
|
-
on_chain_tx_hash?: string | null;
|
|
1363
|
-
metadata: Record<string, unknown>;
|
|
1364
|
-
idempotent_replay: boolean;
|
|
1365
|
-
created_at?: string | null;
|
|
1366
|
-
updated_at?: string | null;
|
|
1367
|
-
raw: Record<string, unknown>;
|
|
1368
|
-
}
|
|
1369
|
-
interface DisputeRecord {
|
|
1370
|
-
dispute_id: string;
|
|
1371
|
-
receipt_id: string;
|
|
1372
|
-
owner_user_id?: string | null;
|
|
1373
|
-
payment_mandate_id?: string | null;
|
|
1374
|
-
usage_event_id?: string | null;
|
|
1375
|
-
external_dispute_id?: string | null;
|
|
1376
|
-
status: string;
|
|
1377
|
-
reason_code: string;
|
|
1378
|
-
description?: string | null;
|
|
1379
|
-
evidence: Record<string, unknown>;
|
|
1380
|
-
response_decision?: string | null;
|
|
1381
|
-
response_note?: string | null;
|
|
1382
|
-
responded_at?: string | null;
|
|
1383
|
-
metadata: Record<string, unknown>;
|
|
1384
|
-
idempotent_replay: boolean;
|
|
1385
|
-
created_at?: string | null;
|
|
1386
|
-
updated_at?: string | null;
|
|
1387
|
-
raw: Record<string, unknown>;
|
|
1388
|
-
}
|
|
1389
1301
|
|
|
1390
1302
|
declare const WEBHOOK_SIGNATURE_HEADER = "Siglume-Signature";
|
|
1391
1303
|
declare const WEBHOOK_EVENT_ID_HEADER = "Siglume-Event-Id";
|
|
1392
1304
|
declare const WEBHOOK_EVENT_TYPE_HEADER = "Siglume-Event-Type";
|
|
1393
1305
|
declare const DEFAULT_WEBHOOK_TOLERANCE_SECONDS = 300;
|
|
1394
|
-
declare const WEBHOOK_EVENT_TYPES: readonly ["subscription.created", "subscription.renewed", "subscription.cancelled", "subscription.paused", "subscription.reinstated", "
|
|
1306
|
+
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"];
|
|
1395
1307
|
type WebhookEventType = (typeof WEBHOOK_EVENT_TYPES)[number];
|
|
1396
1308
|
interface WebhookSignatureVerification {
|
|
1397
1309
|
timestamp: number;
|
|
@@ -1457,15 +1369,6 @@ interface SubscriptionLifecycleEventData extends Record<string, unknown> {
|
|
|
1457
1369
|
currency?: string;
|
|
1458
1370
|
amount_minor?: number;
|
|
1459
1371
|
}
|
|
1460
|
-
interface RefundIssuedEventData extends Record<string, unknown> {
|
|
1461
|
-
refund_id?: string;
|
|
1462
|
-
receipt_id?: string;
|
|
1463
|
-
amount_minor?: number;
|
|
1464
|
-
currency?: string;
|
|
1465
|
-
status?: string;
|
|
1466
|
-
payment_mandate_id?: string;
|
|
1467
|
-
on_chain_tx_hash?: string;
|
|
1468
|
-
}
|
|
1469
1372
|
interface PaymentEventData extends SubscriptionLifecycleEventData {
|
|
1470
1373
|
payment_status?: string;
|
|
1471
1374
|
}
|
|
@@ -1500,14 +1403,10 @@ interface SubscriptionPausedEvent extends WebhookEventBase<"subscription.paused"
|
|
|
1500
1403
|
}
|
|
1501
1404
|
interface SubscriptionReinstatedEvent extends WebhookEventBase<"subscription.reinstated", SubscriptionLifecycleEventData> {
|
|
1502
1405
|
}
|
|
1503
|
-
interface RefundIssuedEvent extends WebhookEventBase<"refund.issued", RefundIssuedEventData> {
|
|
1504
|
-
}
|
|
1505
1406
|
interface PaymentSucceededEvent extends WebhookEventBase<"payment.succeeded", PaymentEventData> {
|
|
1506
1407
|
}
|
|
1507
1408
|
interface PaymentFailedEvent extends WebhookEventBase<"payment.failed", PaymentEventData> {
|
|
1508
1409
|
}
|
|
1509
|
-
interface PaymentDisputedEvent extends WebhookEventBase<"payment.disputed", PaymentEventData> {
|
|
1510
|
-
}
|
|
1511
1410
|
interface CapabilityPublishedEvent extends WebhookEventBase<"capability.published", CapabilityEventData> {
|
|
1512
1411
|
}
|
|
1513
1412
|
interface CapabilityDelistedEvent extends WebhookEventBase<"capability.delisted", CapabilityEventData> {
|
|
@@ -1516,7 +1415,7 @@ interface ExecutionCompletedEvent extends WebhookEventBase<"execution.completed"
|
|
|
1516
1415
|
}
|
|
1517
1416
|
interface ExecutionFailedEvent extends WebhookEventBase<"execution.failed", ExecutionFailedEventData> {
|
|
1518
1417
|
}
|
|
1519
|
-
type SiglumeWebhookEvent = SubscriptionCreatedEvent | SubscriptionRenewedEvent | SubscriptionCancelledEvent | SubscriptionPausedEvent | SubscriptionReinstatedEvent |
|
|
1418
|
+
type SiglumeWebhookEvent = SubscriptionCreatedEvent | SubscriptionRenewedEvent | SubscriptionCancelledEvent | SubscriptionPausedEvent | SubscriptionReinstatedEvent | PaymentSucceededEvent | PaymentFailedEvent | CapabilityPublishedEvent | CapabilityDelistedEvent | ExecutionCompletedEvent | ExecutionFailedEvent;
|
|
1520
1419
|
interface QueuedWebhookEvent {
|
|
1521
1420
|
queued: boolean;
|
|
1522
1421
|
event: SiglumeWebhookEvent;
|
|
@@ -1649,7 +1548,6 @@ interface SiglumeClientShape {
|
|
|
1649
1548
|
source_url?: string;
|
|
1650
1549
|
runtime_validation?: Record<string, unknown>;
|
|
1651
1550
|
oauth_credentials?: Record<string, unknown> | unknown[];
|
|
1652
|
-
metadata?: Record<string, unknown>;
|
|
1653
1551
|
source_context?: Record<string, unknown>;
|
|
1654
1552
|
input_form_spec?: Record<string, unknown>;
|
|
1655
1553
|
}): Promise<AutoRegistrationReceipt>;
|
|
@@ -1705,7 +1603,6 @@ interface SiglumeClientShape {
|
|
|
1705
1603
|
}): Promise<BundleListingRecord>;
|
|
1706
1604
|
remove_bundle_capability(bundle_id: string, capability_listing_id: string): Promise<BundleListingRecord>;
|
|
1707
1605
|
submit_bundle_for_review(bundle_id: string): Promise<BundleListingRecord>;
|
|
1708
|
-
list_connected_account_providers(): Promise<ConnectedAccountProvider[]>;
|
|
1709
1606
|
start_connected_account_oauth(input: {
|
|
1710
1607
|
listing_id: string;
|
|
1711
1608
|
redirect_uri: string;
|
|
@@ -1716,6 +1613,15 @@ interface SiglumeClientShape {
|
|
|
1716
1613
|
provider_key: string;
|
|
1717
1614
|
client_id: string;
|
|
1718
1615
|
client_secret: string;
|
|
1616
|
+
authorize_url: string;
|
|
1617
|
+
token_url: string;
|
|
1618
|
+
revoke_url?: string;
|
|
1619
|
+
display_name?: string;
|
|
1620
|
+
scope_separator?: string;
|
|
1621
|
+
token_endpoint_auth?: string;
|
|
1622
|
+
pkce_required?: boolean;
|
|
1623
|
+
refresh_supported?: boolean;
|
|
1624
|
+
available_scopes?: string[];
|
|
1719
1625
|
required_scopes?: string[];
|
|
1720
1626
|
}): Promise<Record<string, unknown>>;
|
|
1721
1627
|
get_listing_oauth_credentials_status(listing_id: string): Promise<Record<string, unknown>>;
|
|
@@ -2091,39 +1997,6 @@ interface SiglumeClientShape {
|
|
|
2091
1997
|
limit?: number;
|
|
2092
1998
|
cursor?: string;
|
|
2093
1999
|
}): Promise<CursorPage<SupportCaseRecord>>;
|
|
2094
|
-
issue_partial_refund(options: {
|
|
2095
|
-
receipt_id: string;
|
|
2096
|
-
amount_minor: number;
|
|
2097
|
-
reason?: RefundReason | string;
|
|
2098
|
-
note?: string;
|
|
2099
|
-
idempotency_key: string;
|
|
2100
|
-
original_amount_minor?: number;
|
|
2101
|
-
}): Promise<RefundRecord>;
|
|
2102
|
-
issue_full_refund(options: {
|
|
2103
|
-
receipt_id: string;
|
|
2104
|
-
reason?: RefundReason | string;
|
|
2105
|
-
note?: string;
|
|
2106
|
-
idempotency_key?: string;
|
|
2107
|
-
}): Promise<RefundRecord>;
|
|
2108
|
-
list_refunds(options?: {
|
|
2109
|
-
receipt_id?: string;
|
|
2110
|
-
limit?: number;
|
|
2111
|
-
}): Promise<RefundRecord[]>;
|
|
2112
|
-
get_refund(refund_id: string): Promise<RefundRecord>;
|
|
2113
|
-
get_refunds_for_receipt(receipt_id: string, options?: {
|
|
2114
|
-
limit?: number;
|
|
2115
|
-
}): Promise<RefundRecord[]>;
|
|
2116
|
-
list_disputes(options?: {
|
|
2117
|
-
receipt_id?: string;
|
|
2118
|
-
limit?: number;
|
|
2119
|
-
}): Promise<DisputeRecord[]>;
|
|
2120
|
-
get_dispute(dispute_id: string): Promise<DisputeRecord>;
|
|
2121
|
-
respond_to_dispute(options: {
|
|
2122
|
-
dispute_id: string;
|
|
2123
|
-
response: DisputeResponse | string;
|
|
2124
|
-
evidence: Record<string, unknown>;
|
|
2125
|
-
note?: string;
|
|
2126
|
-
}): Promise<DisputeRecord>;
|
|
2127
2000
|
create_webhook_subscription(options: {
|
|
2128
2001
|
callback_url: string;
|
|
2129
2002
|
description?: string;
|
|
@@ -2210,7 +2083,6 @@ declare class SiglumeClient implements SiglumeClientShape {
|
|
|
2210
2083
|
source_url?: string;
|
|
2211
2084
|
runtime_validation?: Record<string, unknown>;
|
|
2212
2085
|
oauth_credentials?: Record<string, unknown> | unknown[];
|
|
2213
|
-
metadata?: Record<string, unknown>;
|
|
2214
2086
|
source_context?: Record<string, unknown>;
|
|
2215
2087
|
input_form_spec?: Record<string, unknown>;
|
|
2216
2088
|
}): Promise<AutoRegistrationReceipt>;
|
|
@@ -2267,7 +2139,6 @@ declare class SiglumeClient implements SiglumeClientShape {
|
|
|
2267
2139
|
}): Promise<BundleListingRecord>;
|
|
2268
2140
|
remove_bundle_capability(bundle_id: string, capability_listing_id: string): Promise<BundleListingRecord>;
|
|
2269
2141
|
submit_bundle_for_review(bundle_id: string): Promise<BundleListingRecord>;
|
|
2270
|
-
list_connected_account_providers(): Promise<ConnectedAccountProvider[]>;
|
|
2271
2142
|
start_connected_account_oauth(input: {
|
|
2272
2143
|
listing_id: string;
|
|
2273
2144
|
redirect_uri: string;
|
|
@@ -2284,6 +2155,15 @@ declare class SiglumeClient implements SiglumeClientShape {
|
|
|
2284
2155
|
provider_key: string;
|
|
2285
2156
|
client_id: string;
|
|
2286
2157
|
client_secret: string;
|
|
2158
|
+
authorize_url: string;
|
|
2159
|
+
token_url: string;
|
|
2160
|
+
revoke_url?: string;
|
|
2161
|
+
display_name?: string;
|
|
2162
|
+
scope_separator?: string;
|
|
2163
|
+
token_endpoint_auth?: string;
|
|
2164
|
+
pkce_required?: boolean;
|
|
2165
|
+
refresh_supported?: boolean;
|
|
2166
|
+
available_scopes?: string[];
|
|
2287
2167
|
required_scopes?: string[];
|
|
2288
2168
|
}): Promise<Record<string, unknown>>;
|
|
2289
2169
|
get_listing_oauth_credentials_status(listing_id: string): Promise<Record<string, unknown>>;
|
|
@@ -2653,39 +2533,6 @@ declare class SiglumeClient implements SiglumeClientShape {
|
|
|
2653
2533
|
limit?: number;
|
|
2654
2534
|
cursor?: string;
|
|
2655
2535
|
}): Promise<CursorPageResult<SupportCaseRecord>>;
|
|
2656
|
-
issue_partial_refund(options: {
|
|
2657
|
-
receipt_id: string;
|
|
2658
|
-
amount_minor: number;
|
|
2659
|
-
reason?: RefundReason | string;
|
|
2660
|
-
note?: string;
|
|
2661
|
-
idempotency_key: string;
|
|
2662
|
-
original_amount_minor?: number;
|
|
2663
|
-
}): Promise<RefundRecord>;
|
|
2664
|
-
issue_full_refund(options: {
|
|
2665
|
-
receipt_id: string;
|
|
2666
|
-
reason?: RefundReason | string;
|
|
2667
|
-
note?: string;
|
|
2668
|
-
idempotency_key?: string;
|
|
2669
|
-
}): Promise<RefundRecord>;
|
|
2670
|
-
list_refunds(options?: {
|
|
2671
|
-
receipt_id?: string;
|
|
2672
|
-
limit?: number;
|
|
2673
|
-
}): Promise<RefundRecord[]>;
|
|
2674
|
-
get_refund(refund_id: string): Promise<RefundRecord>;
|
|
2675
|
-
get_refunds_for_receipt(receipt_id: string, options?: {
|
|
2676
|
-
limit?: number;
|
|
2677
|
-
}): Promise<RefundRecord[]>;
|
|
2678
|
-
list_disputes(options?: {
|
|
2679
|
-
receipt_id?: string;
|
|
2680
|
-
limit?: number;
|
|
2681
|
-
}): Promise<DisputeRecord[]>;
|
|
2682
|
-
get_dispute(dispute_id: string): Promise<DisputeRecord>;
|
|
2683
|
-
respond_to_dispute(options: {
|
|
2684
|
-
dispute_id: string;
|
|
2685
|
-
response: DisputeResponse | string;
|
|
2686
|
-
evidence: Record<string, unknown>;
|
|
2687
|
-
note?: string;
|
|
2688
|
-
}): Promise<DisputeRecord>;
|
|
2689
2536
|
create_webhook_subscription(options: {
|
|
2690
2537
|
callback_url: string;
|
|
2691
2538
|
description?: string;
|
|
@@ -2983,46 +2830,6 @@ declare class MeterClient {
|
|
|
2983
2830
|
}
|
|
2984
2831
|
declare function normalizeUsageRecord(record: UsageRecord): UsageRecord;
|
|
2985
2832
|
|
|
2986
|
-
type RefundClientOptions = SiglumeClientOptions;
|
|
2987
|
-
declare class RefundClient {
|
|
2988
|
-
private readonly client;
|
|
2989
|
-
constructor(options: RefundClientOptions);
|
|
2990
|
-
close(): void;
|
|
2991
|
-
issue_partial_refund(options: {
|
|
2992
|
-
receipt_id: string;
|
|
2993
|
-
amount_minor: number;
|
|
2994
|
-
reason?: RefundReason | string;
|
|
2995
|
-
note?: string;
|
|
2996
|
-
idempotency_key: string;
|
|
2997
|
-
original_amount_minor?: number;
|
|
2998
|
-
}): Promise<RefundRecord>;
|
|
2999
|
-
issue_full_refund(options: {
|
|
3000
|
-
receipt_id: string;
|
|
3001
|
-
reason?: RefundReason | string;
|
|
3002
|
-
note?: string;
|
|
3003
|
-
idempotency_key?: string;
|
|
3004
|
-
}): Promise<RefundRecord>;
|
|
3005
|
-
list_refunds(options?: {
|
|
3006
|
-
receipt_id?: string;
|
|
3007
|
-
limit?: number;
|
|
3008
|
-
}): Promise<RefundRecord[]>;
|
|
3009
|
-
get_refund(refund_id: string): Promise<RefundRecord>;
|
|
3010
|
-
get_refunds_for_receipt(receipt_id: string, options?: {
|
|
3011
|
-
limit?: number;
|
|
3012
|
-
}): Promise<RefundRecord[]>;
|
|
3013
|
-
list_disputes(options?: {
|
|
3014
|
-
receipt_id?: string;
|
|
3015
|
-
limit?: number;
|
|
3016
|
-
}): Promise<DisputeRecord[]>;
|
|
3017
|
-
get_dispute(dispute_id: string): Promise<DisputeRecord>;
|
|
3018
|
-
respond_to_dispute(options: {
|
|
3019
|
-
dispute_id: string;
|
|
3020
|
-
response: DisputeResponse | string;
|
|
3021
|
-
evidence: Record<string, unknown>;
|
|
3022
|
-
note?: string;
|
|
3023
|
-
}): Promise<DisputeRecord>;
|
|
3024
|
-
}
|
|
3025
|
-
|
|
3026
2833
|
declare abstract class AppAdapter {
|
|
3027
2834
|
abstract manifest(): Awaitable<AppManifest>;
|
|
3028
2835
|
abstract execute(ctx: ExecutionContext): Awaitable<ExecutionResult>;
|
|
@@ -3263,4 +3070,4 @@ declare function validate_tool_manual(manualInput: ManualInput): [boolean, ToolM
|
|
|
3263
3070
|
|
|
3264
3071
|
declare function renderJson(value: unknown): string;
|
|
3265
3072
|
|
|
3266
|
-
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 CapabilityPublishedEvent, type CassetteFile, type CassetteInteraction, type Change, ChangeLevel, type ConnectedAccountLifecycleResult, type ConnectedAccountOAuthStart, type
|
|
3073
|
+
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 CapabilityPublishedEvent, type CassetteFile, type CassetteInteraction, type Change, ChangeLevel, type ConnectedAccountLifecycleResult, type ConnectedAccountOAuthStart, type ConnectedAccountRecord, type ConnectedAccountRef, 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, 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, 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, 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 };
|