@siglume/api-sdk 0.9.1 → 0.10.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/bin/siglume.cjs +7 -1
- package/dist/bin/siglume.cjs.map +1 -1
- package/dist/bin/siglume.js +7 -1
- package/dist/bin/siglume.js.map +1 -1
- package/dist/cli/index.cjs +7 -1
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.d.cts +15 -0
- package/dist/cli/index.d.ts +15 -0
- package/dist/cli/index.js +7 -1
- package/dist/cli/index.js.map +1 -1
- package/dist/index.cjs +7 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +15 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +7 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cli/index.d.cts
CHANGED
|
@@ -136,6 +136,13 @@ declare const AppCategory: {
|
|
|
136
136
|
type AppCategory = (typeof AppCategory)[keyof typeof AppCategory];
|
|
137
137
|
interface AppManifest {
|
|
138
138
|
capability_key: string;
|
|
139
|
+
/**
|
|
140
|
+
* LOCAL-ONLY identification. The Siglume platform never reads this on
|
|
141
|
+
* auto_register / confirm_auto_register and rejects submissions that
|
|
142
|
+
* declare a version — the authoritative `release_semver` is controlled
|
|
143
|
+
* by the platform per the bump rules on the confirm endpoint
|
|
144
|
+
* (see `confirm_registration({ version_bump: ... })`).
|
|
145
|
+
*/
|
|
139
146
|
version?: string;
|
|
140
147
|
name: string;
|
|
141
148
|
job_to_be_done: string;
|
|
@@ -152,6 +159,14 @@ interface AppManifest {
|
|
|
152
159
|
applicable_regulations?: string[];
|
|
153
160
|
data_residency?: string;
|
|
154
161
|
short_description?: string;
|
|
162
|
+
/**
|
|
163
|
+
* Long-form sales description shown on the buyer-facing API detail
|
|
164
|
+
* page. Complements `short_description` (one-liner) with a fuller
|
|
165
|
+
* pitch: who this is for, what it can / cannot do, limits, required
|
|
166
|
+
* connected accounts. The Tool Manual is agent-facing and not shown
|
|
167
|
+
* to buyers; put buyer-facing story here.
|
|
168
|
+
*/
|
|
169
|
+
description?: string;
|
|
155
170
|
docs_url?: string;
|
|
156
171
|
support_contact?: string;
|
|
157
172
|
seller_homepage_url?: string;
|
package/dist/cli/index.d.ts
CHANGED
|
@@ -136,6 +136,13 @@ declare const AppCategory: {
|
|
|
136
136
|
type AppCategory = (typeof AppCategory)[keyof typeof AppCategory];
|
|
137
137
|
interface AppManifest {
|
|
138
138
|
capability_key: string;
|
|
139
|
+
/**
|
|
140
|
+
* LOCAL-ONLY identification. The Siglume platform never reads this on
|
|
141
|
+
* auto_register / confirm_auto_register and rejects submissions that
|
|
142
|
+
* declare a version — the authoritative `release_semver` is controlled
|
|
143
|
+
* by the platform per the bump rules on the confirm endpoint
|
|
144
|
+
* (see `confirm_registration({ version_bump: ... })`).
|
|
145
|
+
*/
|
|
139
146
|
version?: string;
|
|
140
147
|
name: string;
|
|
141
148
|
job_to_be_done: string;
|
|
@@ -152,6 +159,14 @@ interface AppManifest {
|
|
|
152
159
|
applicable_regulations?: string[];
|
|
153
160
|
data_residency?: string;
|
|
154
161
|
short_description?: string;
|
|
162
|
+
/**
|
|
163
|
+
* Long-form sales description shown on the buyer-facing API detail
|
|
164
|
+
* page. Complements `short_description` (one-liner) with a fuller
|
|
165
|
+
* pitch: who this is for, what it can / cannot do, limits, required
|
|
166
|
+
* connected accounts. The Tool Manual is agent-facing and not shown
|
|
167
|
+
* to buyers; put buyer-facing story here.
|
|
168
|
+
*/
|
|
169
|
+
description?: string;
|
|
155
170
|
docs_url?: string;
|
|
156
171
|
support_contact?: string;
|
|
157
172
|
seller_homepage_url?: string;
|
package/dist/cli/index.js
CHANGED
|
@@ -2570,6 +2570,7 @@ var init_client = __esm({
|
|
|
2570
2570
|
"name",
|
|
2571
2571
|
"job_to_be_done",
|
|
2572
2572
|
"short_description",
|
|
2573
|
+
"description",
|
|
2573
2574
|
"category",
|
|
2574
2575
|
"docs_url",
|
|
2575
2576
|
"documentation_url",
|
|
@@ -2582,13 +2583,18 @@ var init_client = __esm({
|
|
|
2582
2583
|
"permission_class",
|
|
2583
2584
|
"approval_mode",
|
|
2584
2585
|
"dry_run_supported",
|
|
2585
|
-
"required_connected_accounts"
|
|
2586
|
+
"required_connected_accounts",
|
|
2587
|
+
"permission_scopes",
|
|
2588
|
+
"compatibility_tags"
|
|
2586
2589
|
]) {
|
|
2587
2590
|
const value = manifestPayload[fieldName];
|
|
2588
2591
|
if (value !== void 0 && value !== null) {
|
|
2589
2592
|
payload[fieldName] = value;
|
|
2590
2593
|
}
|
|
2591
2594
|
}
|
|
2595
|
+
if (payload.manifest && typeof payload.manifest === "object") {
|
|
2596
|
+
delete payload.manifest.version;
|
|
2597
|
+
}
|
|
2592
2598
|
const docsUrl = String(manifestPayload.docs_url ?? manifestPayload.documentation_url ?? "").trim();
|
|
2593
2599
|
const supportContact = String(manifestPayload.support_contact ?? "").trim();
|
|
2594
2600
|
const sellerHomepageUrl = String(manifestPayload.seller_homepage_url ?? "").trim();
|