@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 Credential from "./schemas/credential.js";
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 TCredential = FromSchema<typeof Credential>;
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 Credential from "./schemas/credential.js";
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";
@@ -1,5 +1,5 @@
1
1
  declare const _default: {
2
- readonly $id: "credential";
2
+ readonly $id: "credentials";
3
3
  readonly additionalProperties: false;
4
4
  readonly properties: {
5
5
  readonly accessKeyId: {
@@ -1,4 +1,4 @@
1
- const $id = "credential", additionalProperties = false, nullable = true, type = "string";
1
+ const $id = "credentials", additionalProperties = false, nullable = true, type = "string";
2
2
  export default {
3
3
  $id,
4
4
  additionalProperties,
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.2.86",
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",