sh3-core 0.1.0 → 0.3.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/api.d.ts +1 -0
- package/dist/artifact.d.ts +32 -0
- package/dist/artifact.js +1 -0
- package/dist/assets/icons.svg +1119 -1119
- package/dist/auth/auth.svelte.d.ts +6 -0
- package/dist/auth/auth.svelte.js +8 -0
- package/dist/auth/index.d.ts +1 -1
- package/dist/auth/index.js +1 -1
- package/dist/build.d.ts +20 -0
- package/dist/build.js +78 -1
- package/dist/createShell.d.ts +24 -0
- package/dist/createShell.js +78 -0
- package/dist/diagnostic/DiagnosticPanel.svelte +106 -0
- package/dist/diagnostic/DiagnosticPanel.svelte.d.ts +3 -0
- package/dist/diagnostic/DiagnosticPromptModal.svelte +82 -0
- package/dist/diagnostic/DiagnosticPromptModal.svelte.d.ts +8 -0
- package/dist/diagnostic/diagnosticApp.d.ts +2 -0
- package/dist/diagnostic/diagnosticApp.js +24 -0
- package/dist/diagnostic/diagnosticShard.svelte.d.ts +2 -0
- package/dist/diagnostic/diagnosticShard.svelte.js +106 -0
- package/dist/host-entry.d.ts +4 -1
- package/dist/host-entry.js +3 -1
- package/dist/host.d.ts +10 -1
- package/dist/host.js +34 -22
- package/dist/index.d.ts +1 -0
- package/dist/platform/index.d.ts +10 -0
- package/dist/platform/index.js +37 -0
- package/dist/platform/tauri-backend.d.ts +15 -0
- package/dist/platform/tauri-backend.js +58 -0
- package/dist/registry/schema.js +5 -0
- package/dist/registry/types.d.ts +20 -3
- package/dist/server-shard/types.d.ts +67 -0
- package/dist/server-shard/types.js +13 -0
- package/dist/shards/types.d.ts +8 -0
- package/package.json +1 -1
- package/dist/registry-shard/RegistryView.svelte +0 -561
- package/dist/registry-shard/RegistryView.svelte.d.ts +0 -3
- package/dist/registry-shard/registryApp.d.ts +0 -10
- package/dist/registry-shard/registryApp.js +0 -24
- package/dist/registry-shard/registryShard.svelte.d.ts +0 -45
- package/dist/registry-shard/registryShard.svelte.js +0 -125
package/dist/api.d.ts
CHANGED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Static manifest file included in every SH3 artifact directory.
|
|
3
|
+
* Generated at build time from the shard/app manifest in code.
|
|
4
|
+
* This is the single source of truth for package metadata —
|
|
5
|
+
* registries, servers, and install tools read this instead of
|
|
6
|
+
* requiring manual metadata entry.
|
|
7
|
+
*/
|
|
8
|
+
export interface ArtifactManifest {
|
|
9
|
+
/** Unique package identifier. Matches the shard/app manifest id. */
|
|
10
|
+
id: string;
|
|
11
|
+
/** Whether this is a shard or app (or both via combo bundle). */
|
|
12
|
+
type: 'shard' | 'app' | 'combo';
|
|
13
|
+
/** Human-readable display name. */
|
|
14
|
+
label: string;
|
|
15
|
+
/** Version string (semver). */
|
|
16
|
+
version: string;
|
|
17
|
+
/** SH3 contract version this artifact was built against. */
|
|
18
|
+
contractVersion: number;
|
|
19
|
+
/** Relative path to the client bundle within the artifact directory. Omit if server-only. */
|
|
20
|
+
client?: string;
|
|
21
|
+
/** Relative path to the server bundle within the artifact directory. Omit if client-only. */
|
|
22
|
+
server?: string;
|
|
23
|
+
/** Short description (one or two sentences). */
|
|
24
|
+
description?: string;
|
|
25
|
+
/** Author name. */
|
|
26
|
+
author?: string;
|
|
27
|
+
/** Package dependencies. */
|
|
28
|
+
requires?: Array<{
|
|
29
|
+
id: string;
|
|
30
|
+
versionRange: string;
|
|
31
|
+
}>;
|
|
32
|
+
}
|
package/dist/artifact.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|