@granular-software/sdk 0.4.53 → 0.4.55
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/agent-evals.d.mts +1 -1
- package/dist/agent-evals.d.ts +1 -1
- package/dist/agent-evals.js +23 -13
- package/dist/agent-evals.js.map +1 -1
- package/dist/agent-evals.mjs +23 -13
- package/dist/agent-evals.mjs.map +1 -1
- package/dist/agent-harness.js +6 -6
- package/dist/agent-harness.js.map +1 -1
- package/dist/agent-harness.mjs +6 -6
- package/dist/agent-harness.mjs.map +1 -1
- package/dist/cli/index.js +19 -8
- package/dist/{client-CfTDojJF.d.mts → client-BKde5VzV.d.ts} +8 -1
- package/dist/{client-DcRzwuGp.d.ts → client-DL4S9uRc.d.mts} +8 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +16 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +16 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -14431,6 +14431,7 @@ var Environment = class _Environment {
|
|
|
14431
14431
|
import: async (records, options) => this.enqueueRecordImport(records, options),
|
|
14432
14432
|
listImports: async (status) => this.listRecordImports(status),
|
|
14433
14433
|
getImport: async (importId) => this.getRecordImport(importId),
|
|
14434
|
+
listImportItems: async (importId, status) => this.listRecordImportItems(importId, status),
|
|
14434
14435
|
getImportSummary: async () => this.getRecordImportSummary(),
|
|
14435
14436
|
cancelImport: async (importId) => this.cancelRecordImport(importId),
|
|
14436
14437
|
getAwaitingCount: async () => this.getAwaitingRecordCount()
|
|
@@ -15609,6 +15610,15 @@ var Environment = class _Environment {
|
|
|
15609
15610
|
`/control/record-imports/${importId}`
|
|
15610
15611
|
);
|
|
15611
15612
|
}
|
|
15613
|
+
/**
|
|
15614
|
+
* List the individual records persisted for one asynchronous import. This
|
|
15615
|
+
* makes terminal import failures diagnosable without database access.
|
|
15616
|
+
*/
|
|
15617
|
+
async listRecordImportItems(importId, status) {
|
|
15618
|
+
const suffix = status ? `?status=${encodeURIComponent(status)}` : "";
|
|
15619
|
+
const response = await this.controlPlaneRequest(`/control/record-imports/${importId}/items${suffix}`);
|
|
15620
|
+
return Array.isArray(response.items) ? response.items : [];
|
|
15621
|
+
}
|
|
15612
15622
|
/**
|
|
15613
15623
|
* Cancel a queued/background record import.
|
|
15614
15624
|
*/
|
|
@@ -17949,8 +17959,8 @@ var manifest_default = {
|
|
|
17949
17959
|
continuationBuilder: "buildContinuationInstruction:action-presentation",
|
|
17950
17960
|
modelOutputInstruction: "agent-evals:modelOutputInstruction",
|
|
17951
17961
|
codeReviewPolicy: "reviewGeneratedJobCode",
|
|
17952
|
-
defaultModel: "gpt-5.
|
|
17953
|
-
modelMatrix: ["gpt-5.
|
|
17962
|
+
defaultModel: "gpt-5.6-luna",
|
|
17963
|
+
modelMatrix: ["gpt-5.6-luna"],
|
|
17954
17964
|
temperature: 0,
|
|
17955
17965
|
compatibility: {
|
|
17956
17966
|
minSdkVersion: "0.4.40",
|
|
@@ -17996,8 +18006,8 @@ var manifest_default2 = {
|
|
|
17996
18006
|
continuationBuilder: "buildContinuationInstruction:experimental-compact",
|
|
17997
18007
|
modelOutputInstruction: "agent-evals:modelOutputInstruction",
|
|
17998
18008
|
codeReviewPolicy: "reviewGeneratedJobCode",
|
|
17999
|
-
defaultModel: "gpt-5.
|
|
18000
|
-
modelMatrix: ["gpt-5.
|
|
18009
|
+
defaultModel: "gpt-5.6-luna",
|
|
18010
|
+
modelMatrix: ["gpt-5.6-luna"],
|
|
18001
18011
|
temperature: 0,
|
|
18002
18012
|
compatibility: {
|
|
18003
18013
|
minSdkVersion: "0.4.40",
|
|
@@ -18043,8 +18053,8 @@ var manifest_default3 = {
|
|
|
18043
18053
|
continuationBuilder: "buildContinuationInstruction",
|
|
18044
18054
|
modelOutputInstruction: "agent-evals:modelOutputInstruction",
|
|
18045
18055
|
codeReviewPolicy: "reviewGeneratedJobCode",
|
|
18046
|
-
defaultModel: "gpt-5.
|
|
18047
|
-
modelMatrix: ["gpt-5.
|
|
18056
|
+
defaultModel: "gpt-5.6-luna",
|
|
18057
|
+
modelMatrix: ["gpt-5.6-luna"],
|
|
18048
18058
|
temperature: 0,
|
|
18049
18059
|
compatibility: {
|
|
18050
18060
|
minSdkVersion: "0.4.40",
|