@perstack/api-client 0.0.32 → 0.0.33

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.
@@ -904,6 +904,7 @@ declare const apiCheckpointActionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
904
904
  }, z.core.$strip>], "type">;
905
905
  type ApiCheckpointAction = z.infer<typeof apiCheckpointActionSchema>;
906
906
  declare const apiCheckpointSchema: z.ZodObject<{
907
+ jobId: z.ZodString;
907
908
  runId: z.ZodString;
908
909
  stepNumber: z.ZodNumber;
909
910
  pendingToolCalls: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -1893,6 +1894,7 @@ declare const createCheckpointInput: z.ZodObject<{
1893
1894
  expertJobId: z.ZodCUID2;
1894
1895
  checkpoint: z.ZodObject<{
1895
1896
  id: z.ZodString;
1897
+ jobId: z.ZodString;
1896
1898
  runId: z.ZodString;
1897
1899
  status: z.ZodEnum<{
1898
1900
  init: "init";
@@ -1999,7 +2001,7 @@ declare const createCheckpointInput: z.ZodObject<{
1999
2001
  name: z.ZodString;
2000
2002
  version: z.ZodString;
2001
2003
  }, z.core.$strip>;
2002
- delegateTo: z.ZodOptional<z.ZodObject<{
2004
+ delegateTo: z.ZodOptional<z.ZodArray<z.ZodObject<{
2003
2005
  expert: z.ZodObject<{
2004
2006
  key: z.ZodString;
2005
2007
  name: z.ZodString;
@@ -2008,7 +2010,7 @@ declare const createCheckpointInput: z.ZodObject<{
2008
2010
  toolCallId: z.ZodString;
2009
2011
  toolName: z.ZodString;
2010
2012
  query: z.ZodString;
2011
- }, z.core.$strip>>;
2013
+ }, z.core.$strip>>>;
2012
2014
  delegatedBy: z.ZodOptional<z.ZodObject<{
2013
2015
  expert: z.ZodObject<{
2014
2016
  key: z.ZodString;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@perstack/api-client",
3
- "version": "0.0.32",
3
+ "version": "0.0.33",
4
4
  "description": "Perstack API Client",
5
5
  "author": "Wintermute Technologies, Inc.",
6
6
  "license": "Apache-2.0",
@@ -17,7 +17,7 @@
17
17
  ],
18
18
  "dependencies": {
19
19
  "zod": "^4.1.13",
20
- "@perstack/core": "0.0.21"
20
+ "@perstack/core": "0.0.22"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@tsconfig/node22": "^22.0.5",