You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Regenerate schema.d.ts from updated server OpenAPI spec
- Fix show.ts for removed github field and published_at type change
- Add GitHub Actions CI workflow (build, typecheck, all tests)
- Add shields.io badges to README (CI, license, npm, node, TypeScript, Discord)
/** @description Announce a new bundle version from a GitHub release (OIDC only) */
411
+
/** @description Announce a single artifact for a bundle version from a GitHub release (OIDC only). Idempotent - can be called multiple times for different artifacts of the same version. */
429
412
post: {
430
413
parameters: {
431
414
query?: never;
@@ -436,14 +419,21 @@ export interface paths {
436
419
requestBody: {
437
420
content: {
438
421
"application/json": {
439
-
/** @description Package name (@scope/name) */
440
422
name: string;
441
-
/** @description Semantic version */
442
423
version: string;
443
-
/** @description Bundle manifest */
444
-
manifest: Record<string,never>;
445
-
/** @description GitHub release tag (e.g., v0.1.0) */
424
+
manifest: {
425
+
[key: string]: unknown;
426
+
};
446
427
release_tag: string;
428
+
/** @default false */
429
+
prerelease: boolean;
430
+
artifact: {
431
+
filename: string;
432
+
os: string;
433
+
arch: string;
434
+
sha256: string;
435
+
size: number;
436
+
};
447
437
};
448
438
};
449
439
};
@@ -455,34 +445,16 @@ export interface paths {
455
445
};
456
446
content: {
457
447
"application/json": {
458
-
success: boolean;
459
-
bundle: {
460
-
name: string;
461
-
version: string;
462
-
artifacts_count: number;
463
-
};
464
-
release: {
465
-
tag: string;
466
-
url: string;
448
+
package: string;
449
+
version: string;
450
+
artifact: {
451
+
os: string;
452
+
arch: string;
453
+
filename: string;
467
454
};
468
-
artifacts: {
469
-
platform: {
470
-
/** @description Operating system (darwin, linux, win32, any) */
0 commit comments