@synnaxlabs/client 0.44.1 → 0.44.2
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/.turbo/turbo-build.log +5 -5
- package/dist/channel/client.d.ts +11 -4
- package/dist/channel/client.d.ts.map +1 -1
- package/dist/channel/payload.d.ts +86 -14
- package/dist/channel/payload.d.ts.map +1 -1
- package/dist/channel/writer.d.ts.map +1 -1
- package/dist/client.cjs +20 -20
- package/dist/client.js +1803 -1764
- package/dist/framer/streamer.d.ts +96 -0
- package/dist/framer/streamer.d.ts.map +1 -1
- package/dist/framer/writer.d.ts +80 -0
- package/dist/framer/writer.d.ts.map +1 -1
- package/dist/hardware/device/payload.d.ts +4 -4
- package/dist/hardware/rack/payload.d.ts +4 -4
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/ontology/payload.d.ts +1 -0
- package/dist/ontology/payload.d.ts.map +1 -1
- package/dist/ranger/alias.d.ts +5 -1
- package/dist/ranger/alias.d.ts.map +1 -1
- package/dist/ranger/client.d.ts +5 -1
- package/dist/ranger/client.d.ts.map +1 -1
- package/dist/ranger/external.d.ts +1 -1
- package/dist/ranger/external.d.ts.map +1 -1
- package/dist/ranger/kv.d.ts +1 -0
- package/dist/ranger/kv.d.ts.map +1 -1
- package/dist/ranger/payload.d.ts +3 -7
- package/dist/ranger/payload.d.ts.map +1 -1
- package/dist/ranger/writer.d.ts +1 -1
- package/dist/testutil/client.d.ts +1 -1
- package/dist/testutil/client.d.ts.map +1 -1
- package/dist/workspace/payload.d.ts +1 -1
- package/package.json +2 -2
- package/src/access/policy/policy.spec.ts +3 -3
- package/src/channel/channel.spec.ts +2 -2
- package/src/channel/client.ts +21 -5
- package/src/channel/payload.ts +4 -4
- package/src/channel/writer.ts +4 -1
- package/src/control/state.spec.ts +2 -2
- package/src/errors.spec.ts +2 -2
- package/src/framer/adapter.spec.ts +2 -2
- package/src/framer/client.spec.ts +2 -2
- package/src/framer/deleter.spec.ts +2 -2
- package/src/framer/iterator.spec.ts +2 -2
- package/src/framer/streamer.spec.ts +2 -2
- package/src/framer/writer.spec.ts +3 -2
- package/src/hardware/device/device.spec.ts +2 -2
- package/src/hardware/rack/rack.spec.ts +2 -2
- package/src/hardware/task/task.spec.ts +2 -2
- package/src/index.ts +1 -1
- package/src/label/label.spec.ts +2 -2
- package/src/ontology/group/group.spec.ts +2 -2
- package/src/ontology/ontology.spec.ts +2 -2
- package/src/ontology/payload.ts +3 -0
- package/src/ranger/alias.ts +27 -1
- package/src/ranger/client.ts +30 -3
- package/src/ranger/external.ts +1 -9
- package/src/ranger/kv.ts +3 -0
- package/src/ranger/payload.ts +4 -2
- package/src/ranger/ranger.spec.ts +3 -3
- package/src/testutil/client.ts +1 -1
- package/src/user/user.spec.ts +2 -2
- package/src/workspace/lineplot/lineplot.spec.ts +2 -2
- package/src/workspace/log/log.spec.ts +2 -2
- package/src/workspace/schematic/schematic.spec.ts +2 -2
- package/src/workspace/table/table.spec.ts +2 -2
- package/src/workspace/workspace.spec.ts +2 -2
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
import { uuid } from "@synnaxlabs/x";
|
|
11
11
|
import { describe, expect, test } from "vitest";
|
|
12
12
|
|
|
13
|
-
import {
|
|
13
|
+
import { createTestClient } from "@/testutil/client";
|
|
14
14
|
|
|
15
|
-
const client =
|
|
15
|
+
const client = createTestClient();
|
|
16
16
|
|
|
17
17
|
describe("LinePlot", () => {
|
|
18
18
|
describe("create", () => {
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
import { uuid } from "@synnaxlabs/x";
|
|
11
11
|
import { describe, expect, test } from "vitest";
|
|
12
12
|
|
|
13
|
-
import {
|
|
13
|
+
import { createTestClient } from "@/testutil/client";
|
|
14
14
|
|
|
15
|
-
const client =
|
|
15
|
+
const client = createTestClient();
|
|
16
16
|
|
|
17
17
|
describe("Log", () => {
|
|
18
18
|
describe("create", () => {
|
|
@@ -11,9 +11,9 @@ import { uuid } from "@synnaxlabs/x";
|
|
|
11
11
|
import { describe, expect, it, test } from "vitest";
|
|
12
12
|
|
|
13
13
|
import { ValidationError } from "@/errors";
|
|
14
|
-
import {
|
|
14
|
+
import { createTestClient } from "@/testutil/client";
|
|
15
15
|
|
|
16
|
-
const client =
|
|
16
|
+
const client = createTestClient();
|
|
17
17
|
|
|
18
18
|
describe("Schematic", () => {
|
|
19
19
|
describe("create", () => {
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
import { uuid } from "@synnaxlabs/x";
|
|
11
11
|
import { describe, expect, test } from "vitest";
|
|
12
12
|
|
|
13
|
-
import {
|
|
13
|
+
import { createTestClient } from "@/testutil/client";
|
|
14
14
|
|
|
15
|
-
const client =
|
|
15
|
+
const client = createTestClient();
|
|
16
16
|
|
|
17
17
|
describe("Table", () => {
|
|
18
18
|
describe("create", () => {
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
import { uuid } from "@synnaxlabs/x";
|
|
11
11
|
import { describe, expect, test } from "vitest";
|
|
12
12
|
|
|
13
|
-
import {
|
|
13
|
+
import { createTestClient } from "@/testutil/client";
|
|
14
14
|
|
|
15
|
-
const client =
|
|
15
|
+
const client = createTestClient();
|
|
16
16
|
|
|
17
17
|
describe("Workspace", () => {
|
|
18
18
|
describe("create", () => {
|