@skaldapp/shared 1.2.86 → 1.3.1
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/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { FromSchema } from "json-schema-to-ts";
|
|
2
|
-
import
|
|
2
|
+
import Credentials from "./schemas/credentials.js";
|
|
3
3
|
import OpenAI from "./schemas/openai.js";
|
|
4
4
|
import Page from "./schemas/page.js";
|
|
5
|
-
export type
|
|
5
|
+
export type TCredentials = FromSchema<typeof Credentials>;
|
|
6
6
|
export type TOpenAI = FromSchema<typeof OpenAI>;
|
|
7
7
|
export type TPage = FromSchema<typeof Page> & {
|
|
8
8
|
$branch: TPage[];
|
package/dist/index.js
CHANGED
|
@@ -3,7 +3,7 @@ import AJV from "ajv";
|
|
|
3
3
|
import dynamicDefaults from "ajv-keywords/dist/definitions/dynamicDefaults.js";
|
|
4
4
|
import { generateSlug } from "random-word-slugs";
|
|
5
5
|
import { computed, reactive, ref, toRef, watch } from "vue";
|
|
6
|
-
import
|
|
6
|
+
import Credentials from "./schemas/credentials.js";
|
|
7
7
|
import Nodes from "./schemas/nodes.js";
|
|
8
8
|
import OpenAI from "./schemas/openai.js";
|
|
9
9
|
import Page from "./schemas/page.js";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://www.schemastore.org/package",
|
|
3
3
|
"name": "@skaldapp/shared",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.3.1",
|
|
5
5
|
"description": "A TypeScript library providing reactive data structures, JSON schema validation, and tree utilities for Vue-based applications in the skald ecosystem.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"vue",
|