@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/index.d.cts
CHANGED
|
@@ -188,6 +188,13 @@ 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
|
+
*/
|
|
191
198
|
version?: string;
|
|
192
199
|
name: string;
|
|
193
200
|
job_to_be_done: string;
|
|
@@ -204,6 +211,14 @@ interface AppManifest {
|
|
|
204
211
|
applicable_regulations?: string[];
|
|
205
212
|
data_residency?: string;
|
|
206
213
|
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
|
+
description?: string;
|
|
207
222
|
docs_url?: string;
|
|
208
223
|
support_contact?: string;
|
|
209
224
|
seller_homepage_url?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -188,6 +188,13 @@ 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
|
+
*/
|
|
191
198
|
version?: string;
|
|
192
199
|
name: string;
|
|
193
200
|
job_to_be_done: string;
|
|
@@ -204,6 +211,14 @@ interface AppManifest {
|
|
|
204
211
|
applicable_regulations?: string[];
|
|
205
212
|
data_residency?: string;
|
|
206
213
|
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
|
+
description?: string;
|
|
207
222
|
docs_url?: string;
|
|
208
223
|
support_contact?: string;
|
|
209
224
|
seller_homepage_url?: string;
|
package/dist/index.js
CHANGED
|
@@ -2881,6 +2881,7 @@ var init_client = __esm({
|
|
|
2881
2881
|
"name",
|
|
2882
2882
|
"job_to_be_done",
|
|
2883
2883
|
"short_description",
|
|
2884
|
+
"description",
|
|
2884
2885
|
"category",
|
|
2885
2886
|
"docs_url",
|
|
2886
2887
|
"documentation_url",
|
|
@@ -2893,13 +2894,18 @@ var init_client = __esm({
|
|
|
2893
2894
|
"permission_class",
|
|
2894
2895
|
"approval_mode",
|
|
2895
2896
|
"dry_run_supported",
|
|
2896
|
-
"required_connected_accounts"
|
|
2897
|
+
"required_connected_accounts",
|
|
2898
|
+
"permission_scopes",
|
|
2899
|
+
"compatibility_tags"
|
|
2897
2900
|
]) {
|
|
2898
2901
|
const value = manifestPayload[fieldName];
|
|
2899
2902
|
if (value !== void 0 && value !== null) {
|
|
2900
2903
|
payload[fieldName] = value;
|
|
2901
2904
|
}
|
|
2902
2905
|
}
|
|
2906
|
+
if (payload.manifest && typeof payload.manifest === "object") {
|
|
2907
|
+
delete payload.manifest.version;
|
|
2908
|
+
}
|
|
2903
2909
|
const docsUrl = String(manifestPayload.docs_url ?? manifestPayload.documentation_url ?? "").trim();
|
|
2904
2910
|
const supportContact = String(manifestPayload.support_contact ?? "").trim();
|
|
2905
2911
|
const sellerHomepageUrl = String(manifestPayload.seller_homepage_url ?? "").trim();
|