shoal-web-sdk 0.0.96 → 0.0.97

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.
@@ -340,10 +340,6 @@ export type ProxyNodeProps = {
340
340
  export type VmNodeProps = {
341
341
  os?: string;
342
342
  };
343
- export type SchedulerNodeProps2 = {
344
- scheduleExpression?: string;
345
- url?: string;
346
- };
347
343
  export type NodeSourceUploadResponse = {
348
344
  fileName: string;
349
345
  /**
@@ -998,10 +998,6 @@ export declare const zGraph: z.ZodObject<{
998
998
  }, z.core.$strip>>]>>;
999
999
  }, z.core.$strip>>;
1000
1000
  }, z.core.$strip>;
1001
- export declare const zSchedulerNodeProps2: z.ZodObject<{
1002
- scheduleExpression: z.ZodOptional<z.ZodString>;
1003
- url: z.ZodOptional<z.ZodString>;
1004
- }, z.core.$strip>;
1005
1001
  export declare const zNodeSourceUploadResponse: z.ZodObject<{
1006
1002
  fileName: z.ZodString;
1007
1003
  size: z.ZodCoercedBigInt<unknown>;
@@ -421,10 +421,6 @@ export const zGraph = z.object({
421
421
  versionUUID: z.uuid(),
422
422
  nodes: z.array(zNode)
423
423
  });
424
- export const zSchedulerNodeProps2 = z.object({
425
- scheduleExpression: z.optional(z.string()),
426
- url: z.optional(z.string())
427
- });
428
424
  export const zNodeSourceUploadResponse = z.object({
429
425
  fileName: z.string(),
430
426
  size: z.coerce.bigint(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "0.0.96",
3
+ "version": "0.0.97",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",