@mastra/libsql 1.19.0-alpha.0 → 1.19.0-alpha.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.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { createClient } from "@libsql/client";
2
2
  import { ErrorCategory, ErrorDomain, MastraError } from "@mastra/core/error";
3
- import { AGENTS_SCHEMA, AGENT_VERSIONS_SCHEMA, AgentsStorage, BackgroundTasksStorage, BlobStore, ChannelsStorage, DATASETS_SCHEMA, DATASET_ITEMS_SCHEMA, DATASET_VERSIONS_SCHEMA, DatasetsStorage, EXPERIMENTS_SCHEMA, EXPERIMENT_RESULTS_SCHEMA, ExperimentsStorage, FAVORITES_SCHEMA, FactoryStorage, FavoritesStorage, HarnessStorage, MCPClientsStorage, MCPServersStorage, MCP_CLIENTS_SCHEMA, MCP_CLIENT_VERSIONS_SCHEMA, MCP_SERVERS_SCHEMA, MCP_SERVER_VERSIONS_SCHEMA, MastraCompositeStore, MemoryStorage, NotificationsStorage, OBSERVATIONAL_MEMORY_TABLE_SCHEMA, ObservabilityStorage, PROMPT_BLOCKS_SCHEMA, PROMPT_BLOCK_VERSIONS_SCHEMA, PromptBlocksStorage, SCORERS_SCHEMA, SCORER_DEFINITIONS_SCHEMA, SCORER_DEFINITION_VERSIONS_SCHEMA, SKILLS_SCHEMA, SKILL_BLOBS_SCHEMA, SKILL_VERSIONS_SCHEMA, SPAN_SCHEMA, SchedulesStorage, ScorerDefinitionsStorage, ScoresStorage, SkillsStorage, TABLE_AGENTS, TABLE_AGENT_VERSIONS, TABLE_BACKGROUND_TASKS, TABLE_CHANNEL_CONFIG, TABLE_CHANNEL_INSTALLATIONS, TABLE_DATASETS, TABLE_DATASET_ITEMS, TABLE_DATASET_VERSIONS, TABLE_EXPERIMENTS, TABLE_EXPERIMENT_RESULTS, TABLE_FAVORITES, TABLE_HARNESS_SESSIONS, TABLE_MCP_CLIENTS, TABLE_MCP_CLIENT_VERSIONS, TABLE_MCP_SERVERS, TABLE_MCP_SERVER_VERSIONS, TABLE_MESSAGES, TABLE_NOTIFICATIONS, TABLE_PROMPT_BLOCKS, TABLE_PROMPT_BLOCK_VERSIONS, TABLE_RESOURCES, TABLE_SCHEDULES, TABLE_SCHEDULE_TRIGGERS, TABLE_SCHEMAS, TABLE_SCORERS, TABLE_SCORER_DEFINITIONS, TABLE_SCORER_DEFINITION_VERSIONS, TABLE_SKILLS, TABLE_SKILL_BLOBS, TABLE_SKILL_VERSIONS, TABLE_SPANS, TABLE_THREADS, TABLE_THREAD_STATE, TABLE_TOOL_PROVIDER_CONNECTIONS, TABLE_WORKFLOW_SNAPSHOT, TABLE_WORKSPACES, TABLE_WORKSPACE_VERSIONS, THREAD_STATE_SCHEMA, TOOL_PROVIDER_CONNECTIONS_SCHEMA, ThreadStateStorage, ToolProviderConnectionsStorage, TraceStatus, UniqueViolationError, WORKSPACES_SCHEMA, WORKSPACE_VERSIONS_SCHEMA, WorkflowsStorage, WorkspacesStorage, calculatePagination, createStorageErrorId, createVectorErrorId, ensureDate, getSqlType, hasErrorCode, listTracesArgsSchema, mergeWorkflowStepResult, normalizePerPage, normalizeScheduleTarget, parseDuration, safelyParseJSON, toTraceSpans, transformScoreRow, validateStorageMetadataFilter } from "@mastra/core/storage";
3
+ import { AGENTS_SCHEMA, AGENT_VERSIONS_SCHEMA, AgentsStorage, BackgroundTasksStorage, BlobStore, ChannelsStorage, DATASETS_SCHEMA, DATASET_ITEMS_SCHEMA, DATASET_VERSIONS_SCHEMA, DatasetsStorage, EXPERIMENTS_SCHEMA, EXPERIMENT_RESULTS_SCHEMA, ExperimentsStorage, FAVORITES_SCHEMA, FactoryStorage, FavoritesStorage, HarnessStorage, MCPClientsStorage, MCPServersStorage, MCP_CLIENTS_SCHEMA, MCP_CLIENT_VERSIONS_SCHEMA, MCP_SERVERS_SCHEMA, MCP_SERVER_VERSIONS_SCHEMA, MastraCompositeStore, MemoryStorage, NotificationsStorage, OBSERVATIONAL_MEMORY_TABLE_SCHEMA, ObservabilityStorage, PROMPT_BLOCKS_SCHEMA, PROMPT_BLOCK_VERSIONS_SCHEMA, PromptBlocksStorage, SCORERS_SCHEMA, SCORER_DEFINITIONS_SCHEMA, SCORER_DEFINITION_VERSIONS_SCHEMA, SKILLS_SCHEMA, SKILL_BLOBS_SCHEMA, SKILL_VERSIONS_SCHEMA, SPAN_SCHEMA, SchedulesStorage, ScorerDefinitionsStorage, ScoresStorage, SkillsStorage, TABLE_AGENTS, TABLE_AGENT_VERSIONS, TABLE_BACKGROUND_TASKS, TABLE_CHANNEL_CONFIG, TABLE_CHANNEL_INSTALLATIONS, TABLE_DATASETS, TABLE_DATASET_ITEMS, TABLE_DATASET_VERSIONS, TABLE_EXPERIMENTS, TABLE_EXPERIMENT_RESULTS, TABLE_FAVORITES, TABLE_HARNESS_SESSIONS, TABLE_MCP_CLIENTS, TABLE_MCP_CLIENT_VERSIONS, TABLE_MCP_SERVERS, TABLE_MCP_SERVER_VERSIONS, TABLE_MESSAGES, TABLE_NOTIFICATIONS, TABLE_PROMPT_BLOCKS, TABLE_PROMPT_BLOCK_VERSIONS, TABLE_RESOURCES, TABLE_SCHEDULES, TABLE_SCHEDULE_TRIGGERS, TABLE_SCHEMAS, TABLE_SCORERS, TABLE_SCORER_DEFINITIONS, TABLE_SCORER_DEFINITION_VERSIONS, TABLE_SKILLS, TABLE_SKILL_BLOBS, TABLE_SKILL_VERSIONS, TABLE_SPANS, TABLE_THREADS, TABLE_THREAD_STATE, TABLE_TOOL_PROVIDER_CONNECTIONS, TABLE_WORKFLOW_DEFINITIONS, TABLE_WORKFLOW_SNAPSHOT, TABLE_WORKSPACES, TABLE_WORKSPACE_VERSIONS, THREAD_STATE_SCHEMA, TOOL_PROVIDER_CONNECTIONS_SCHEMA, ThreadStateStorage, ToolProviderConnectionsStorage, TraceStatus, UniqueViolationError, WORKSPACES_SCHEMA, WORKSPACE_VERSIONS_SCHEMA, WorkflowDefinitionsStorage, WorkflowsStorage, WorkspacesStorage, calculatePagination, createStorageErrorId, createVectorErrorId, ensureDate, getSqlType, hasErrorCode, listTracesArgsSchema, mergeWorkflowStepResult, normalizePerPage, normalizeScheduleTarget, parseDuration, safelyParseJSON, toTraceSpans, transformScoreRow, validateStorageMetadataFilter } from "@mastra/core/storage";
4
4
  import { parseFieldKey, parseSqlIdentifier } from "@mastra/core/utils";
5
5
  import { MastraVector, validateTopK, validateUpsertInput } from "@mastra/core/vector";
6
6
  import { BaseFilterTranslator } from "@mastra/core/vector/filter";
@@ -2853,7 +2853,7 @@ function serializeJson(v) {
2853
2853
  if (typeof v === "object" && v != null) return JSON.stringify(v);
2854
2854
  return v ?? null;
2855
2855
  }
2856
- function parseJson$2(val) {
2856
+ function parseJson$3(val) {
2857
2857
  if (val == null) return void 0;
2858
2858
  if (typeof val === "string") try {
2859
2859
  return JSON.parse(val);
@@ -2868,14 +2868,14 @@ function rowToTask(row) {
2868
2868
  status: String(row.status),
2869
2869
  toolName: String(row.tool_name),
2870
2870
  toolCallId: String(row.tool_call_id),
2871
- args: parseJson$2(row.args) ?? {},
2871
+ args: parseJson$3(row.args) ?? {},
2872
2872
  agentId: String(row.agent_id),
2873
2873
  threadId: row.thread_id != null ? String(row.thread_id) : void 0,
2874
2874
  resourceId: row.resource_id != null ? String(row.resource_id) : void 0,
2875
2875
  runId: String(row.run_id),
2876
- result: parseJson$2(row.result),
2877
- error: parseJson$2(row.error),
2878
- suspendPayload: parseJson$2(row.suspend_payload),
2876
+ result: parseJson$3(row.result),
2877
+ error: parseJson$3(row.error),
2878
+ suspendPayload: parseJson$3(row.suspend_payload),
2879
2879
  retryCount: Number(row.retry_count),
2880
2880
  maxRetries: Number(row.max_retries),
2881
2881
  timeoutMs: Number(row.timeout_ms),
@@ -8529,7 +8529,7 @@ const statusTimestamp = (status, now) => {
8529
8529
  if (status === "discarded") return { discardedAt: now };
8530
8530
  return {};
8531
8531
  };
8532
- function parseJson$1(value) {
8532
+ function parseJson$2(value) {
8533
8533
  if (value == null) return void 0;
8534
8534
  if (typeof value === "string") try {
8535
8535
  return JSON.parse(value);
@@ -8551,14 +8551,14 @@ function rowToNotification(row) {
8551
8551
  priority: String(row.priority),
8552
8552
  status: String(row.status),
8553
8553
  summary: String(row.summary),
8554
- payload: parseJson$1(row.payload),
8554
+ payload: parseJson$2(row.payload),
8555
8555
  resourceId: row.resourceId == null ? void 0 : String(row.resourceId),
8556
8556
  agentId: row.agentId == null ? void 0 : String(row.agentId),
8557
8557
  sourceId: row.sourceId == null ? void 0 : String(row.sourceId),
8558
8558
  dedupeKey: row.dedupeKey == null ? void 0 : String(row.dedupeKey),
8559
8559
  coalesceKey: row.coalesceKey == null ? void 0 : String(row.coalesceKey),
8560
8560
  coalescedCount: Number(row.coalescedCount ?? 1),
8561
- attributes: parseJson$1(row.attributes),
8561
+ attributes: parseJson$2(row.attributes),
8562
8562
  createdAt: new Date(String(row.createdAt)),
8563
8563
  updatedAt: new Date(String(row.updatedAt)),
8564
8564
  deliveredAt: parseDate(row.deliveredAt),
@@ -8574,7 +8574,7 @@ function rowToNotification(row) {
8574
8574
  lastDeliveryError: row.lastDeliveryError == null ? void 0 : String(row.lastDeliveryError),
8575
8575
  deliveredSignalId: row.deliveredSignalId == null ? void 0 : String(row.deliveredSignalId),
8576
8576
  summarySignalId: row.summarySignalId == null ? void 0 : String(row.summarySignalId),
8577
- metadata: parseJson$1(row.metadata)
8577
+ metadata: parseJson$2(row.metadata)
8578
8578
  };
8579
8579
  }
8580
8580
  function addArrayFilter(conditions, args, column, value) {
@@ -9765,7 +9765,7 @@ var PromptBlocksLibSQL = class extends PromptBlocksStorage {
9765
9765
  };
9766
9766
  //#endregion
9767
9767
  //#region src/storage/domains/schedules/index.ts
9768
- function parseJson(val) {
9768
+ function parseJson$1(val) {
9769
9769
  if (val == null) return void 0;
9770
9770
  if (typeof val === "string") try {
9771
9771
  return JSON.parse(val);
@@ -9779,7 +9779,7 @@ function toNumber(val) {
9779
9779
  return Number(val);
9780
9780
  }
9781
9781
  function rowToSchedule(row) {
9782
- const target = parseJson(row.target);
9782
+ const target = parseJson$1(row.target);
9783
9783
  if (!target) throw new Error(`Schedule row ${row.id} has invalid target`);
9784
9784
  const schedule = {
9785
9785
  id: String(row.id),
@@ -9793,7 +9793,7 @@ function rowToSchedule(row) {
9793
9793
  if (row.timezone != null) schedule.timezone = String(row.timezone);
9794
9794
  if (row.last_fire_at != null) schedule.lastFireAt = toNumber(row.last_fire_at);
9795
9795
  if (row.last_run_id != null) schedule.lastRunId = String(row.last_run_id);
9796
- const metadata = parseJson(row.metadata);
9796
+ const metadata = parseJson$1(row.metadata);
9797
9797
  if (metadata !== void 0) schedule.metadata = metadata;
9798
9798
  if (row.owner_type != null) schedule.ownerType = String(row.owner_type);
9799
9799
  if (row.owner_id != null) schedule.ownerId = String(row.owner_id);
@@ -9811,7 +9811,7 @@ function rowToTrigger(row) {
9811
9811
  };
9812
9812
  if (row.error != null) trigger.error = String(row.error);
9813
9813
  if (row.parent_trigger_id != null) trigger.parentTriggerId = String(row.parent_trigger_id);
9814
- const metadata = parseJson(row.metadata);
9814
+ const metadata = parseJson$1(row.metadata);
9815
9815
  if (metadata !== void 0) trigger.metadata = metadata;
9816
9816
  return trigger;
9817
9817
  }
@@ -11692,6 +11692,159 @@ var ToolProviderConnectionsLibSQL = class extends ToolProviderConnectionsStorage
11692
11692
  }
11693
11693
  };
11694
11694
  //#endregion
11695
+ //#region src/storage/domains/workflow-definitions/index.ts
11696
+ function parseJson(val, column, rowId) {
11697
+ if (val == null) return void 0;
11698
+ if (typeof val === "string") try {
11699
+ return JSON.parse(val);
11700
+ } catch {
11701
+ throw new Error(`Workflow definition row "${String(rowId)}" has malformed JSON in column "${column}".`);
11702
+ }
11703
+ return val;
11704
+ }
11705
+ function rowToDefinition(row) {
11706
+ const inputSchema = parseJson(row.inputSchema, "inputSchema", row.id);
11707
+ const outputSchema = parseJson(row.outputSchema, "outputSchema", row.id);
11708
+ const graph = parseJson(row.graph, "graph", row.id);
11709
+ if (inputSchema === void 0 || outputSchema === void 0 || graph === void 0) throw new Error(`Workflow definition row "${row.id}" is missing required JSON columns.`);
11710
+ const def = {
11711
+ id: String(row.id),
11712
+ inputSchema,
11713
+ outputSchema,
11714
+ graph,
11715
+ status: row.status,
11716
+ source: row.source,
11717
+ createdAt: new Date(row.createdAt),
11718
+ updatedAt: new Date(row.updatedAt)
11719
+ };
11720
+ if (row.description != null) def.description = String(row.description);
11721
+ const metadata = parseJson(row.metadata, "metadata", row.id);
11722
+ if (metadata !== void 0) def.metadata = metadata;
11723
+ const stateSchema = parseJson(row.stateSchema, "stateSchema", row.id);
11724
+ if (stateSchema !== void 0) def.stateSchema = stateSchema;
11725
+ const requestContextSchema = parseJson(row.requestContextSchema, "requestContextSchema", row.id);
11726
+ if (requestContextSchema !== void 0) def.requestContextSchema = requestContextSchema;
11727
+ if (row.authorId != null) def.authorId = String(row.authorId);
11728
+ return def;
11729
+ }
11730
+ var WorkflowDefinitionsLibSQL = class extends WorkflowDefinitionsStorage {
11731
+ #db;
11732
+ #client;
11733
+ constructor(config) {
11734
+ super();
11735
+ const client = resolveClient(config);
11736
+ this.#client = client;
11737
+ this.#db = new LibSQLDB({
11738
+ client,
11739
+ maxRetries: config.maxRetries,
11740
+ initialBackoffMs: config.initialBackoffMs
11741
+ });
11742
+ }
11743
+ async init() {
11744
+ await this.#db.createTable({
11745
+ tableName: TABLE_WORKFLOW_DEFINITIONS,
11746
+ schema: TABLE_SCHEMAS[TABLE_WORKFLOW_DEFINITIONS]
11747
+ });
11748
+ await this.#client.execute({
11749
+ sql: `CREATE INDEX IF NOT EXISTS idx_workflow_definitions_status ON "${TABLE_WORKFLOW_DEFINITIONS}" ("status")`,
11750
+ args: []
11751
+ });
11752
+ }
11753
+ async dangerouslyClearAll() {
11754
+ await this.#db.deleteData({ tableName: TABLE_WORKFLOW_DEFINITIONS });
11755
+ }
11756
+ async upsert(input) {
11757
+ const now = /* @__PURE__ */ new Date();
11758
+ if (!await this.get(input.id)) {
11759
+ if (!("inputSchema" in input) || !input.inputSchema) throw new Error(`Cannot create workflow definition "${input.id}": inputSchema is required.`);
11760
+ if (!("outputSchema" in input) || !input.outputSchema) throw new Error(`Cannot create workflow definition "${input.id}": outputSchema is required.`);
11761
+ if (!("graph" in input) || !input.graph) throw new Error(`Cannot create workflow definition "${input.id}": graph is required.`);
11762
+ const record = {
11763
+ id: input.id,
11764
+ description: input.description ?? null,
11765
+ metadata: input.metadata ?? null,
11766
+ inputSchema: input.inputSchema,
11767
+ outputSchema: input.outputSchema,
11768
+ stateSchema: input.stateSchema ?? null,
11769
+ requestContextSchema: input.requestContextSchema ?? null,
11770
+ graph: input.graph,
11771
+ status: "active",
11772
+ source: "storage",
11773
+ authorId: "authorId" in input ? input.authorId ?? null : null,
11774
+ createdAt: now,
11775
+ updatedAt: now
11776
+ };
11777
+ try {
11778
+ await this.#db.insertOnly({
11779
+ tableName: TABLE_WORKFLOW_DEFINITIONS,
11780
+ record
11781
+ });
11782
+ } catch (error) {
11783
+ if (!await this.get(input.id)) throw error;
11784
+ return this.#applyUpdate(input, now);
11785
+ }
11786
+ const created = await this.get(input.id);
11787
+ if (!created) throw new Error(`Failed to persist workflow definition "${input.id}".`);
11788
+ return created;
11789
+ }
11790
+ return this.#applyUpdate(input, now);
11791
+ }
11792
+ async #applyUpdate(input, now) {
11793
+ const data = { updatedAt: now };
11794
+ if ("description" in input && input.description !== void 0) data.description = input.description;
11795
+ if ("metadata" in input && input.metadata !== void 0) data.metadata = input.metadata;
11796
+ if ("inputSchema" in input && input.inputSchema !== void 0) data.inputSchema = input.inputSchema;
11797
+ if ("outputSchema" in input && input.outputSchema !== void 0) data.outputSchema = input.outputSchema;
11798
+ if ("stateSchema" in input && input.stateSchema !== void 0) data.stateSchema = input.stateSchema;
11799
+ if ("requestContextSchema" in input && input.requestContextSchema !== void 0) data.requestContextSchema = input.requestContextSchema;
11800
+ if ("graph" in input && input.graph !== void 0) data.graph = input.graph;
11801
+ if ("status" in input && input.status !== void 0) data.status = input.status;
11802
+ if ("authorId" in input && input.authorId !== void 0) data.authorId = input.authorId;
11803
+ await this.#db.update({
11804
+ tableName: TABLE_WORKFLOW_DEFINITIONS,
11805
+ keys: { id: input.id },
11806
+ data
11807
+ });
11808
+ const updated = await this.get(input.id);
11809
+ if (!updated) throw new Error(`Failed to update workflow definition "${input.id}".`);
11810
+ return updated;
11811
+ }
11812
+ async get(id) {
11813
+ const row = (await this.#client.execute({
11814
+ sql: `SELECT ${buildSelectColumns(TABLE_WORKFLOW_DEFINITIONS)} FROM "${TABLE_WORKFLOW_DEFINITIONS}" WHERE id = ?`,
11815
+ args: [id]
11816
+ })).rows[0];
11817
+ return row ? rowToDefinition(row) : null;
11818
+ }
11819
+ async list(args) {
11820
+ const conditions = [];
11821
+ const params = [];
11822
+ if (args?.status) {
11823
+ conditions.push("status = ?");
11824
+ params.push(args.status);
11825
+ }
11826
+ if (args?.authorId !== void 0) {
11827
+ conditions.push("authorId = ?");
11828
+ params.push(args.authorId);
11829
+ }
11830
+ const where = conditions.length > 0 ? `WHERE ${conditions.join(" AND ")}` : "";
11831
+ const definitions = (await this.#client.execute({
11832
+ sql: `SELECT ${buildSelectColumns(TABLE_WORKFLOW_DEFINITIONS)} FROM "${TABLE_WORKFLOW_DEFINITIONS}" ${where} ORDER BY updatedAt DESC`,
11833
+ args: params
11834
+ })).rows.map((row) => rowToDefinition(row));
11835
+ return {
11836
+ definitions,
11837
+ total: definitions.length
11838
+ };
11839
+ }
11840
+ async delete(id) {
11841
+ await this.#client.execute({
11842
+ sql: `DELETE FROM "${TABLE_WORKFLOW_DEFINITIONS}" WHERE id = ?`,
11843
+ args: [id]
11844
+ });
11845
+ }
11846
+ };
11847
+ //#endregion
11695
11848
  //#region src/storage/domains/workflows/index.ts
11696
11849
  var WorkflowsLibSQL = class WorkflowsLibSQL extends WorkflowsStorage {
11697
11850
  /**
@@ -12986,6 +13139,7 @@ var LibSQLStore = class extends MastraCompositeStore {
12986
13139
  };
12987
13140
  const scores = new ScoresLibSQL(domainConfig);
12988
13141
  const workflows = new WorkflowsLibSQL(domainConfig);
13142
+ const workflowDefinitions = new WorkflowDefinitionsLibSQL(domainConfig);
12989
13143
  const memory = new MemoryLibSQL(domainConfig);
12990
13144
  const observability = new ObservabilityLibSQL(domainConfig);
12991
13145
  const agents = new AgentsLibSQL(domainConfig);
@@ -13009,6 +13163,7 @@ var LibSQLStore = class extends MastraCompositeStore {
13009
13163
  this.stores = {
13010
13164
  scores,
13011
13165
  workflows,
13166
+ workflowDefinitions,
13012
13167
  memory,
13013
13168
  observability,
13014
13169
  agents,
@@ -13197,6 +13352,6 @@ Example Complex Query:
13197
13352
  ]
13198
13353
  }`;
13199
13354
  //#endregion
13200
- export { AgentsLibSQL, BackgroundTasksLibSQL, BlobsLibSQL, ChannelsLibSQL, DatasetsLibSQL, LibSQLStore as DefaultStorage, LibSQLStore, ExperimentsLibSQL, FavoritesLibSQL, HarnessLibSQL, LIBSQL_PROMPT, LibSQLFactoryStorage, LibSQLVector, MCPClientsLibSQL, MCPServersLibSQL, MemoryLibSQL, NotificationsLibSQL, ObservabilityLibSQL, PromptBlocksLibSQL, SchedulesLibSQL, ScorerDefinitionsLibSQL, ScoresLibSQL, SkillsLibSQL, ThreadStateLibSQL, ToolProviderConnectionsLibSQL, WorkflowsLibSQL, WorkspacesLibSQL };
13355
+ export { AgentsLibSQL, BackgroundTasksLibSQL, BlobsLibSQL, ChannelsLibSQL, DatasetsLibSQL, LibSQLStore as DefaultStorage, LibSQLStore, ExperimentsLibSQL, FavoritesLibSQL, HarnessLibSQL, LIBSQL_PROMPT, LibSQLFactoryStorage, LibSQLVector, MCPClientsLibSQL, MCPServersLibSQL, MemoryLibSQL, NotificationsLibSQL, ObservabilityLibSQL, PromptBlocksLibSQL, SchedulesLibSQL, ScorerDefinitionsLibSQL, ScoresLibSQL, SkillsLibSQL, ThreadStateLibSQL, ToolProviderConnectionsLibSQL, WorkflowDefinitionsLibSQL, WorkflowsLibSQL, WorkspacesLibSQL };
13201
13356
 
13202
13357
  //# sourceMappingURL=index.js.map