@siglume/api-sdk 1.2.2 → 2.0.1
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 +19 -2
- package/dist/bin/siglume.cjs +63 -470
- package/dist/bin/siglume.cjs.map +1 -1
- package/dist/bin/siglume.js +63 -470
- package/dist/bin/siglume.js.map +1 -1
- package/dist/cli/index.cjs +63 -470
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.d.cts +29 -268
- package/dist/cli/index.d.ts +29 -268
- package/dist/cli/index.js +63 -470
- package/dist/cli/index.js.map +1 -1
- package/dist/index.cjs +35 -454
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +30 -332
- package/dist/index.d.ts +30 -332
- package/dist/index.js +35 -454
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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;
|
|
@@ -876,209 +879,6 @@ interface InstalledToolReceiptStepRecord {
|
|
|
876
879
|
created_at?: string | null;
|
|
877
880
|
raw: Record<string, unknown>;
|
|
878
881
|
}
|
|
879
|
-
interface WorksCategoryRecord {
|
|
880
|
-
key: string;
|
|
881
|
-
name_ja?: string | null;
|
|
882
|
-
name_en?: string | null;
|
|
883
|
-
description_ja?: string | null;
|
|
884
|
-
description_en?: string | null;
|
|
885
|
-
icon_url?: string | null;
|
|
886
|
-
open_job_count: number;
|
|
887
|
-
display_order: number;
|
|
888
|
-
raw: Record<string, unknown>;
|
|
889
|
-
}
|
|
890
|
-
interface WorksRegistrationRecord {
|
|
891
|
-
agent_id: string;
|
|
892
|
-
works_registered: boolean;
|
|
893
|
-
tagline?: string | null;
|
|
894
|
-
categories: string[];
|
|
895
|
-
capabilities: string[];
|
|
896
|
-
description?: string | null;
|
|
897
|
-
execution_status: string;
|
|
898
|
-
approval_required: boolean;
|
|
899
|
-
intent_id?: string | null;
|
|
900
|
-
approval_status?: string | null;
|
|
901
|
-
approval_snapshot_hash?: string | null;
|
|
902
|
-
approval_preview: Record<string, unknown>;
|
|
903
|
-
raw: Record<string, unknown>;
|
|
904
|
-
}
|
|
905
|
-
interface WorksOwnerDashboardAgent {
|
|
906
|
-
agent_id: string;
|
|
907
|
-
name?: string | null;
|
|
908
|
-
reputation: Record<string, unknown>;
|
|
909
|
-
capabilities: string[];
|
|
910
|
-
raw: Record<string, unknown>;
|
|
911
|
-
}
|
|
912
|
-
interface WorksOwnerDashboardPitch {
|
|
913
|
-
proposal_id: string;
|
|
914
|
-
need_id?: string | null;
|
|
915
|
-
title?: string | null;
|
|
916
|
-
title_en?: string | null;
|
|
917
|
-
status?: string | null;
|
|
918
|
-
raw: Record<string, unknown>;
|
|
919
|
-
}
|
|
920
|
-
interface WorksOwnerDashboardOrder {
|
|
921
|
-
order_id: string;
|
|
922
|
-
need_id?: string | null;
|
|
923
|
-
title?: string | null;
|
|
924
|
-
title_en?: string | null;
|
|
925
|
-
status?: string | null;
|
|
926
|
-
raw: Record<string, unknown>;
|
|
927
|
-
}
|
|
928
|
-
interface WorksOwnerDashboardStats {
|
|
929
|
-
total_agents: number;
|
|
930
|
-
total_pending: number;
|
|
931
|
-
total_active: number;
|
|
932
|
-
raw: Record<string, unknown>;
|
|
933
|
-
}
|
|
934
|
-
interface WorksOwnerDashboard {
|
|
935
|
-
agents: WorksOwnerDashboardAgent[];
|
|
936
|
-
pending_pitches: WorksOwnerDashboardPitch[];
|
|
937
|
-
active_orders: WorksOwnerDashboardOrder[];
|
|
938
|
-
completed_orders: WorksOwnerDashboardOrder[];
|
|
939
|
-
stats: WorksOwnerDashboardStats;
|
|
940
|
-
raw: Record<string, unknown>;
|
|
941
|
-
}
|
|
942
|
-
interface WorksPosterDashboardJob {
|
|
943
|
-
job_id: string;
|
|
944
|
-
title?: string | null;
|
|
945
|
-
title_en?: string | null;
|
|
946
|
-
proposal_count: number;
|
|
947
|
-
created_at?: string | null;
|
|
948
|
-
raw: Record<string, unknown>;
|
|
949
|
-
}
|
|
950
|
-
interface WorksPosterDashboardOrder {
|
|
951
|
-
order_id: string;
|
|
952
|
-
need_id?: string | null;
|
|
953
|
-
title?: string | null;
|
|
954
|
-
title_en?: string | null;
|
|
955
|
-
status?: string | null;
|
|
956
|
-
has_deliverable: boolean;
|
|
957
|
-
deliverable_count: number;
|
|
958
|
-
awaiting_buyer_action: boolean;
|
|
959
|
-
raw: Record<string, unknown>;
|
|
960
|
-
}
|
|
961
|
-
interface WorksPosterDashboardStats {
|
|
962
|
-
total_posted: number;
|
|
963
|
-
total_completed: number;
|
|
964
|
-
raw: Record<string, unknown>;
|
|
965
|
-
}
|
|
966
|
-
interface WorksPosterDashboard {
|
|
967
|
-
open_jobs: WorksPosterDashboardJob[];
|
|
968
|
-
in_progress_orders: WorksPosterDashboardOrder[];
|
|
969
|
-
completed_orders: WorksPosterDashboardOrder[];
|
|
970
|
-
stats: WorksPosterDashboardStats;
|
|
971
|
-
raw: Record<string, unknown>;
|
|
972
|
-
}
|
|
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
882
|
interface MarketProposalRecord {
|
|
1083
883
|
proposal_id: string;
|
|
1084
884
|
parent_proposal_id?: string | null;
|
|
@@ -1372,7 +1172,7 @@ declare const WEBHOOK_SIGNATURE_HEADER = "Siglume-Signature";
|
|
|
1372
1172
|
declare const WEBHOOK_EVENT_ID_HEADER = "Siglume-Event-Id";
|
|
1373
1173
|
declare const WEBHOOK_EVENT_TYPE_HEADER = "Siglume-Event-Type";
|
|
1374
1174
|
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"];
|
|
1175
|
+
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
1176
|
type WebhookEventType = (typeof WEBHOOK_EVENT_TYPES)[number];
|
|
1377
1177
|
interface WebhookSignatureVerification {
|
|
1378
1178
|
timestamp: number;
|
|
@@ -1462,6 +1262,20 @@ interface ExecutionFailedEventData extends ExecutionCompletedEventData {
|
|
|
1462
1262
|
reason_code?: string;
|
|
1463
1263
|
reason?: string;
|
|
1464
1264
|
}
|
|
1265
|
+
interface RewardPayoutEventData extends Record<string, unknown> {
|
|
1266
|
+
reward_payout_request_id?: string;
|
|
1267
|
+
app_id?: string;
|
|
1268
|
+
developer_id?: string;
|
|
1269
|
+
recipient_subject?: string;
|
|
1270
|
+
amount_minor?: number;
|
|
1271
|
+
display_currency?: string;
|
|
1272
|
+
token_symbol?: string;
|
|
1273
|
+
reward_event_id?: string;
|
|
1274
|
+
status?: string;
|
|
1275
|
+
tx_hash?: string | null;
|
|
1276
|
+
failure_code?: string | null;
|
|
1277
|
+
failure_reason?: string | null;
|
|
1278
|
+
}
|
|
1465
1279
|
interface SubscriptionCreatedEvent extends WebhookEventBase<"subscription.created", SubscriptionLifecycleEventData> {
|
|
1466
1280
|
}
|
|
1467
1281
|
interface SubscriptionRenewedEvent extends WebhookEventBase<"subscription.renewed", SubscriptionLifecycleEventData> {
|
|
@@ -1484,7 +1298,17 @@ interface ExecutionCompletedEvent extends WebhookEventBase<"execution.completed"
|
|
|
1484
1298
|
}
|
|
1485
1299
|
interface ExecutionFailedEvent extends WebhookEventBase<"execution.failed", ExecutionFailedEventData> {
|
|
1486
1300
|
}
|
|
1487
|
-
|
|
1301
|
+
interface RewardPayoutCreatedEvent extends WebhookEventBase<"reward_payout.created", RewardPayoutEventData> {
|
|
1302
|
+
}
|
|
1303
|
+
interface RewardPayoutProviderPendingEvent extends WebhookEventBase<"reward_payout.provider_pending", RewardPayoutEventData> {
|
|
1304
|
+
}
|
|
1305
|
+
interface RewardPaidEvent extends WebhookEventBase<"reward_paid", RewardPayoutEventData> {
|
|
1306
|
+
}
|
|
1307
|
+
interface RewardPayoutFailedEvent extends WebhookEventBase<"reward_payout.failed", RewardPayoutEventData> {
|
|
1308
|
+
}
|
|
1309
|
+
interface RewardPayoutCancelledEvent extends WebhookEventBase<"reward_payout.cancelled", RewardPayoutEventData> {
|
|
1310
|
+
}
|
|
1311
|
+
type SiglumeWebhookEvent = SubscriptionCreatedEvent | SubscriptionRenewedEvent | SubscriptionCancelledEvent | SubscriptionPausedEvent | SubscriptionReinstatedEvent | PaymentSucceededEvent | PaymentFailedEvent | CapabilityPublishedEvent | CapabilityDelistedEvent | ExecutionCompletedEvent | ExecutionFailedEvent | RewardPayoutCreatedEvent | RewardPayoutProviderPendingEvent | RewardPaidEvent | RewardPayoutFailedEvent | RewardPayoutCancelledEvent;
|
|
1488
1312
|
interface QueuedWebhookEvent {
|
|
1489
1313
|
queued: boolean;
|
|
1490
1314
|
event: SiglumeWebhookEvent;
|
|
@@ -1822,30 +1646,6 @@ interface SiglumeClientShape {
|
|
|
1822
1646
|
status?: string;
|
|
1823
1647
|
lang?: string;
|
|
1824
1648
|
}): Promise<MarketNeedRecord>;
|
|
1825
|
-
list_works_categories(options?: {
|
|
1826
|
-
agent_id?: string;
|
|
1827
|
-
lang?: string;
|
|
1828
|
-
}): Promise<WorksCategoryRecord[]>;
|
|
1829
|
-
get_works_registration(options?: {
|
|
1830
|
-
agent_id?: string;
|
|
1831
|
-
lang?: string;
|
|
1832
|
-
}): Promise<WorksRegistrationRecord>;
|
|
1833
|
-
register_for_works(options?: {
|
|
1834
|
-
agent_id?: string;
|
|
1835
|
-
tagline?: string;
|
|
1836
|
-
description?: string;
|
|
1837
|
-
categories?: string[];
|
|
1838
|
-
capabilities?: string[];
|
|
1839
|
-
lang?: string;
|
|
1840
|
-
}): Promise<WorksRegistrationRecord>;
|
|
1841
|
-
get_works_owner_dashboard(options?: {
|
|
1842
|
-
agent_id?: string;
|
|
1843
|
-
lang?: string;
|
|
1844
|
-
}): Promise<WorksOwnerDashboard>;
|
|
1845
|
-
get_works_poster_dashboard(options?: {
|
|
1846
|
-
agent_id?: string;
|
|
1847
|
-
lang?: string;
|
|
1848
|
-
}): Promise<WorksPosterDashboard>;
|
|
1849
1649
|
list_market_proposals(options?: {
|
|
1850
1650
|
agent_id?: string;
|
|
1851
1651
|
status?: string;
|
|
@@ -1967,45 +1767,6 @@ interface SiglumeClientShape {
|
|
|
1967
1767
|
agent_id?: string;
|
|
1968
1768
|
lang?: string;
|
|
1969
1769
|
}): 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
1770
|
update_agent_charter(agent_id: string, charter_text: string, options?: {
|
|
2010
1771
|
role?: string;
|
|
2011
1772
|
target_profile?: Record<string, unknown>;
|
|
@@ -2336,30 +2097,6 @@ declare class SiglumeClient implements SiglumeClientShape {
|
|
|
2336
2097
|
status?: string;
|
|
2337
2098
|
lang?: string;
|
|
2338
2099
|
}): Promise<MarketNeedRecord>;
|
|
2339
|
-
list_works_categories(options?: {
|
|
2340
|
-
agent_id?: string;
|
|
2341
|
-
lang?: string;
|
|
2342
|
-
}): Promise<WorksCategoryRecord[]>;
|
|
2343
|
-
get_works_registration(options?: {
|
|
2344
|
-
agent_id?: string;
|
|
2345
|
-
lang?: string;
|
|
2346
|
-
}): Promise<WorksRegistrationRecord>;
|
|
2347
|
-
register_for_works(options?: {
|
|
2348
|
-
agent_id?: string;
|
|
2349
|
-
tagline?: string;
|
|
2350
|
-
description?: string;
|
|
2351
|
-
categories?: string[];
|
|
2352
|
-
capabilities?: string[];
|
|
2353
|
-
lang?: string;
|
|
2354
|
-
}): Promise<WorksRegistrationRecord>;
|
|
2355
|
-
get_works_owner_dashboard(options?: {
|
|
2356
|
-
agent_id?: string;
|
|
2357
|
-
lang?: string;
|
|
2358
|
-
}): Promise<WorksOwnerDashboard>;
|
|
2359
|
-
get_works_poster_dashboard(options?: {
|
|
2360
|
-
agent_id?: string;
|
|
2361
|
-
lang?: string;
|
|
2362
|
-
}): Promise<WorksPosterDashboard>;
|
|
2363
2100
|
list_installed_tools(options?: {
|
|
2364
2101
|
agent_id?: string;
|
|
2365
2102
|
lang?: string;
|
|
@@ -2415,45 +2152,6 @@ declare class SiglumeClient implements SiglumeClientShape {
|
|
|
2415
2152
|
agent_id?: string;
|
|
2416
2153
|
lang?: string;
|
|
2417
2154
|
}): 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
2155
|
list_market_proposals(options?: {
|
|
2458
2156
|
agent_id?: string;
|
|
2459
2157
|
status?: string;
|
|
@@ -3101,4 +2799,4 @@ declare function validate_tool_manual(manualInput: ManualInput): [boolean, ToolM
|
|
|
3101
2799
|
|
|
3102
2800
|
declare function renderJson(value: unknown): string;
|
|
3103
2801
|
|
|
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
|
|
2802
|
+
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, 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 };
|