@synnaxlabs/client 0.44.2 → 0.44.4
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 +6 -6
- package/dist/channel/client.d.ts +1 -0
- package/dist/channel/client.d.ts.map +1 -1
- package/dist/channel/payload.d.ts +15 -15
- package/dist/channel/payload.d.ts.map +1 -1
- package/dist/channel/retriever.d.ts +1 -1
- package/dist/channel/writer.d.ts +2 -2
- package/dist/channel/writer.d.ts.map +1 -1
- package/dist/client.cjs +24 -24
- package/dist/client.d.ts +2 -2
- package/dist/client.js +3099 -2742
- package/dist/control/state.d.ts +4 -4
- package/dist/framer/deleter.d.ts +1 -1
- package/dist/framer/streamer.d.ts +16 -16
- package/dist/framer/streamer.d.ts.map +1 -1
- package/dist/framer/writer.d.ts +24 -24
- package/dist/framer/writer.d.ts.map +1 -1
- package/dist/hardware/task/client.d.ts +7 -0
- package/dist/hardware/task/client.d.ts.map +1 -1
- package/dist/ontology/group/client.d.ts +2 -0
- package/dist/ontology/group/client.d.ts.map +1 -1
- package/dist/ranger/alias.d.ts +1 -1
- package/dist/ranger/alias.d.ts.map +1 -1
- package/dist/testutil/client.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/channel/client.ts +5 -3
- package/src/channel/payload.ts +10 -2
- package/src/channel/writer.ts +2 -1
- package/src/framer/streamer.spec.ts +1 -1
- package/src/framer/streamer.ts +4 -3
- package/src/framer/writer.ts +26 -16
- package/src/hardware/task/client.ts +93 -20
- package/src/ontology/group/client.ts +3 -0
- package/src/ranger/alias.ts +1 -4
- package/src/testutil/client.ts +7 -0
package/dist/client.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ export declare const synnaxPropsZ: z.ZodObject<{
|
|
|
21
21
|
value: z.ZodBigInt;
|
|
22
22
|
}, z.core.$strip>, z.ZodTransform<TimeSpan, {
|
|
23
23
|
value: bigint;
|
|
24
|
-
}>>, z.ZodPipe<z.ZodString, z.ZodTransform<TimeSpan, string>>, z.ZodPipe<z.ZodNumber, z.ZodTransform<TimeSpan, number>>, z.ZodCustom<TimeSpan, TimeSpan
|
|
24
|
+
}>>, z.ZodPipe<z.ZodString, z.ZodTransform<TimeSpan, string>>, z.ZodPipe<z.ZodNumber, z.ZodTransform<TimeSpan, number>>, z.ZodPipe<z.ZodBigInt, z.ZodTransform<TimeSpan, bigint>>, z.ZodCustom<TimeSpan, TimeSpan>, z.ZodPipe<z.ZodCustom<TimeStamp, TimeStamp>, z.ZodTransform<TimeSpan, TimeStamp>>, z.ZodPipe<z.ZodCustom<import('@synnaxlabs/x').Rate, import('@synnaxlabs/x').Rate>, z.ZodTransform<TimeSpan, import('@synnaxlabs/x').Rate>>]>>;
|
|
25
25
|
secure: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
26
26
|
name: z.ZodOptional<z.ZodString>;
|
|
27
27
|
retry: z.ZodOptional<z.ZodObject<{
|
|
@@ -29,7 +29,7 @@ export declare const synnaxPropsZ: z.ZodObject<{
|
|
|
29
29
|
value: z.ZodBigInt;
|
|
30
30
|
}, z.core.$strip>, z.ZodTransform<TimeSpan, {
|
|
31
31
|
value: bigint;
|
|
32
|
-
}>>, z.ZodPipe<z.ZodString, z.ZodTransform<TimeSpan, string>>, z.ZodPipe<z.ZodNumber, z.ZodTransform<TimeSpan, number>>, z.ZodCustom<TimeSpan, TimeSpan
|
|
32
|
+
}>>, z.ZodPipe<z.ZodString, z.ZodTransform<TimeSpan, string>>, z.ZodPipe<z.ZodNumber, z.ZodTransform<TimeSpan, number>>, z.ZodPipe<z.ZodBigInt, z.ZodTransform<TimeSpan, bigint>>, z.ZodCustom<TimeSpan, TimeSpan>, z.ZodPipe<z.ZodCustom<import('@synnaxlabs/x/telem').TimeStamp, import('@synnaxlabs/x/telem').TimeStamp>, z.ZodTransform<TimeSpan, import('@synnaxlabs/x/telem').TimeStamp>>, z.ZodPipe<z.ZodCustom<import('@synnaxlabs/x').Rate, import('@synnaxlabs/x').Rate>, z.ZodTransform<TimeSpan, import('@synnaxlabs/x').Rate>>]>>;
|
|
33
33
|
maxRetries: z.ZodOptional<z.ZodNumber>;
|
|
34
34
|
scale: z.ZodOptional<z.ZodNumber>;
|
|
35
35
|
}, z.core.$strip>>;
|