@runtypelabs/sdk 7.1.0 → 7.2.0

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.cjs CHANGED
@@ -6452,7 +6452,7 @@ var Runtype = class {
6452
6452
 
6453
6453
  // src/version.ts
6454
6454
  var FALLBACK_VERSION = "0.0.0";
6455
- var SDK_VERSION = "7.1.0".length > 0 ? "7.1.0" : FALLBACK_VERSION;
6455
+ var SDK_VERSION = "7.2.0".length > 0 ? "7.2.0" : FALLBACK_VERSION;
6456
6456
  var RUNTYPE_CLIENT_KIND = "sdk";
6457
6457
  var SDK_USER_AGENT = `runtype-sdk/${SDK_VERSION} (typescript)`;
6458
6458
 
package/dist/index.d.cts CHANGED
@@ -11820,6 +11820,7 @@ interface paths {
11820
11820
  "application/json": {
11821
11821
  /** @description The execution ID to resume */
11822
11822
  executionId: string;
11823
+ /** @description Optional conversation override for the resumed leg. It REPLACES the stored conversation rather than being appended to it, so send the full conversation you want the model to see, not just the new turn. Omit it to keep the stored conversation unchanged. A `system` message must come first, as in any conversation. Note this is the flow client-tool continuation contract; an agent checkpoint resume (`options.resumeFrom` on `/v1/dispatch`) instead APPENDS its `messages` after the snapshot history — send only new input there. */
11823
11824
  messages?: {
11824
11825
  content: string | ({
11825
11826
  text: string;
@@ -16701,6 +16702,7 @@ interface paths {
16701
16702
  data: {
16702
16703
  createdAt: string;
16703
16704
  id: string;
16705
+ lastModifiedSource: string | null;
16704
16706
  lastRunAt: string | null;
16705
16707
  name: string;
16706
16708
  updatedAt: string;
@@ -16818,6 +16820,7 @@ interface paths {
16818
16820
  type: string;
16819
16821
  }[];
16820
16822
  id: string;
16823
+ lastModifiedSource: string | null;
16821
16824
  lastRunAt?: string | null;
16822
16825
  name: string;
16823
16826
  organizationId: string | null;
@@ -17113,6 +17116,7 @@ interface paths {
17113
17116
  type: string;
17114
17117
  }[];
17115
17118
  id: string;
17119
+ lastModifiedSource: string | null;
17116
17120
  lastRunAt?: string | null;
17117
17121
  name: string;
17118
17122
  organizationId: string | null;
@@ -17218,6 +17222,7 @@ interface paths {
17218
17222
  type: string;
17219
17223
  }[];
17220
17224
  id: string;
17225
+ lastModifiedSource: string | null;
17221
17226
  lastRunAt?: string | null;
17222
17227
  name: string;
17223
17228
  organizationId: string | null;
package/dist/index.d.ts CHANGED
@@ -11820,6 +11820,7 @@ interface paths {
11820
11820
  "application/json": {
11821
11821
  /** @description The execution ID to resume */
11822
11822
  executionId: string;
11823
+ /** @description Optional conversation override for the resumed leg. It REPLACES the stored conversation rather than being appended to it, so send the full conversation you want the model to see, not just the new turn. Omit it to keep the stored conversation unchanged. A `system` message must come first, as in any conversation. Note this is the flow client-tool continuation contract; an agent checkpoint resume (`options.resumeFrom` on `/v1/dispatch`) instead APPENDS its `messages` after the snapshot history — send only new input there. */
11823
11824
  messages?: {
11824
11825
  content: string | ({
11825
11826
  text: string;
@@ -16701,6 +16702,7 @@ interface paths {
16701
16702
  data: {
16702
16703
  createdAt: string;
16703
16704
  id: string;
16705
+ lastModifiedSource: string | null;
16704
16706
  lastRunAt: string | null;
16705
16707
  name: string;
16706
16708
  updatedAt: string;
@@ -16818,6 +16820,7 @@ interface paths {
16818
16820
  type: string;
16819
16821
  }[];
16820
16822
  id: string;
16823
+ lastModifiedSource: string | null;
16821
16824
  lastRunAt?: string | null;
16822
16825
  name: string;
16823
16826
  organizationId: string | null;
@@ -17113,6 +17116,7 @@ interface paths {
17113
17116
  type: string;
17114
17117
  }[];
17115
17118
  id: string;
17119
+ lastModifiedSource: string | null;
17116
17120
  lastRunAt?: string | null;
17117
17121
  name: string;
17118
17122
  organizationId: string | null;
@@ -17218,6 +17222,7 @@ interface paths {
17218
17222
  type: string;
17219
17223
  }[];
17220
17224
  id: string;
17225
+ lastModifiedSource: string | null;
17221
17226
  lastRunAt?: string | null;
17222
17227
  name: string;
17223
17228
  organizationId: string | null;
package/dist/index.mjs CHANGED
@@ -6264,7 +6264,7 @@ var Runtype = class {
6264
6264
 
6265
6265
  // src/version.ts
6266
6266
  var FALLBACK_VERSION = "0.0.0";
6267
- var SDK_VERSION = "7.1.0".length > 0 ? "7.1.0" : FALLBACK_VERSION;
6267
+ var SDK_VERSION = "7.2.0".length > 0 ? "7.2.0" : FALLBACK_VERSION;
6268
6268
  var RUNTYPE_CLIENT_KIND = "sdk";
6269
6269
  var SDK_USER_AGENT = `runtype-sdk/${SDK_VERSION} (typescript)`;
6270
6270
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@runtypelabs/sdk",
3
- "version": "7.1.0",
3
+ "version": "7.2.0",
4
4
  "type": "module",
5
5
  "description": "TypeScript SDK for the Runtype API with fluent methods. Use it to quickly realize AI products, agents, and workflows.",
6
6
  "main": "dist/index.cjs",