@siglume/api-sdk 0.7.5 → 0.8.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 +34 -3
- package/dist/bin/siglume.cjs +442 -44
- package/dist/bin/siglume.cjs.map +1 -1
- package/dist/bin/siglume.js +442 -44
- package/dist/bin/siglume.js.map +1 -1
- package/dist/cli/index.cjs +442 -44
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.d.cts +11 -0
- package/dist/cli/index.d.ts +11 -0
- package/dist/cli/index.js +442 -44
- package/dist/cli/index.js.map +1 -1
- package/dist/index.cjs +40 -26
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +14 -2
- package/dist/index.d.ts +14 -2
- package/dist/index.js +40 -26
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cli/index.d.cts
CHANGED
|
@@ -154,6 +154,8 @@ interface AppManifest {
|
|
|
154
154
|
short_description?: string;
|
|
155
155
|
docs_url?: string;
|
|
156
156
|
support_contact?: string;
|
|
157
|
+
seller_homepage_url?: string;
|
|
158
|
+
seller_social_url?: string;
|
|
157
159
|
compatibility_tags?: string[];
|
|
158
160
|
example_prompts?: string[];
|
|
159
161
|
latency_tier?: string;
|
|
@@ -245,6 +247,9 @@ interface AppListingRecord {
|
|
|
245
247
|
short_description?: string | null;
|
|
246
248
|
docs_url?: string | null;
|
|
247
249
|
support_contact?: string | null;
|
|
250
|
+
seller_display_name?: string | null;
|
|
251
|
+
seller_homepage_url?: string | null;
|
|
252
|
+
seller_social_url?: string | null;
|
|
248
253
|
review_status?: string | null;
|
|
249
254
|
review_note?: string | null;
|
|
250
255
|
submission_blockers: string[];
|
|
@@ -310,9 +315,12 @@ interface BundleListingRecord {
|
|
|
310
315
|
interface AutoRegistrationReceipt {
|
|
311
316
|
listing_id: string;
|
|
312
317
|
status: string;
|
|
318
|
+
registration_mode?: string | null;
|
|
319
|
+
listing_status?: string | null;
|
|
313
320
|
auto_manifest: Record<string, unknown>;
|
|
314
321
|
confidence: Record<string, unknown>;
|
|
315
322
|
validation_report?: Record<string, unknown>;
|
|
323
|
+
oauth_status?: Record<string, unknown>;
|
|
316
324
|
review_url?: string | null;
|
|
317
325
|
trace_id?: string | null;
|
|
318
326
|
request_id?: string | null;
|
|
@@ -327,6 +335,8 @@ interface RegistrationQuality {
|
|
|
327
335
|
interface RegistrationConfirmation {
|
|
328
336
|
listing_id: string;
|
|
329
337
|
status: string;
|
|
338
|
+
message?: string | null;
|
|
339
|
+
checklist?: Record<string, boolean>;
|
|
330
340
|
release: Record<string, unknown>;
|
|
331
341
|
quality: RegistrationQuality;
|
|
332
342
|
trace_id?: string | null;
|
|
@@ -1397,6 +1407,7 @@ interface SiglumeClientShape {
|
|
|
1397
1407
|
source_code?: string;
|
|
1398
1408
|
source_url?: string;
|
|
1399
1409
|
runtime_validation?: Record<string, unknown>;
|
|
1410
|
+
oauth_credentials?: Record<string, unknown> | unknown[];
|
|
1400
1411
|
metadata?: Record<string, unknown>;
|
|
1401
1412
|
source_context?: Record<string, unknown>;
|
|
1402
1413
|
input_form_spec?: Record<string, unknown>;
|
package/dist/cli/index.d.ts
CHANGED
|
@@ -154,6 +154,8 @@ interface AppManifest {
|
|
|
154
154
|
short_description?: string;
|
|
155
155
|
docs_url?: string;
|
|
156
156
|
support_contact?: string;
|
|
157
|
+
seller_homepage_url?: string;
|
|
158
|
+
seller_social_url?: string;
|
|
157
159
|
compatibility_tags?: string[];
|
|
158
160
|
example_prompts?: string[];
|
|
159
161
|
latency_tier?: string;
|
|
@@ -245,6 +247,9 @@ interface AppListingRecord {
|
|
|
245
247
|
short_description?: string | null;
|
|
246
248
|
docs_url?: string | null;
|
|
247
249
|
support_contact?: string | null;
|
|
250
|
+
seller_display_name?: string | null;
|
|
251
|
+
seller_homepage_url?: string | null;
|
|
252
|
+
seller_social_url?: string | null;
|
|
248
253
|
review_status?: string | null;
|
|
249
254
|
review_note?: string | null;
|
|
250
255
|
submission_blockers: string[];
|
|
@@ -310,9 +315,12 @@ interface BundleListingRecord {
|
|
|
310
315
|
interface AutoRegistrationReceipt {
|
|
311
316
|
listing_id: string;
|
|
312
317
|
status: string;
|
|
318
|
+
registration_mode?: string | null;
|
|
319
|
+
listing_status?: string | null;
|
|
313
320
|
auto_manifest: Record<string, unknown>;
|
|
314
321
|
confidence: Record<string, unknown>;
|
|
315
322
|
validation_report?: Record<string, unknown>;
|
|
323
|
+
oauth_status?: Record<string, unknown>;
|
|
316
324
|
review_url?: string | null;
|
|
317
325
|
trace_id?: string | null;
|
|
318
326
|
request_id?: string | null;
|
|
@@ -327,6 +335,8 @@ interface RegistrationQuality {
|
|
|
327
335
|
interface RegistrationConfirmation {
|
|
328
336
|
listing_id: string;
|
|
329
337
|
status: string;
|
|
338
|
+
message?: string | null;
|
|
339
|
+
checklist?: Record<string, boolean>;
|
|
330
340
|
release: Record<string, unknown>;
|
|
331
341
|
quality: RegistrationQuality;
|
|
332
342
|
trace_id?: string | null;
|
|
@@ -1397,6 +1407,7 @@ interface SiglumeClientShape {
|
|
|
1397
1407
|
source_code?: string;
|
|
1398
1408
|
source_url?: string;
|
|
1399
1409
|
runtime_validation?: Record<string, unknown>;
|
|
1410
|
+
oauth_credentials?: Record<string, unknown> | unknown[];
|
|
1400
1411
|
metadata?: Record<string, unknown>;
|
|
1401
1412
|
source_context?: Record<string, unknown>;
|
|
1402
1413
|
input_form_spec?: Record<string, unknown>;
|