@granular-software/sdk 0.4.23 → 0.4.24
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.js +3 -3
- package/dist/agent-evals.js.map +1 -1
- package/dist/agent-evals.mjs +3 -3
- package/dist/agent-evals.mjs.map +1 -1
- package/dist/agent-harness.js +3 -3
- package/dist/agent-harness.js.map +1 -1
- package/dist/agent-harness.mjs +3 -3
- package/dist/agent-harness.mjs.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/agent-evals.js
CHANGED
|
@@ -14438,9 +14438,9 @@ ${loopBlock}
|
|
|
14438
14438
|
- Never invent helper methods such as \`find(...)\` or unsupported parameters such as \`id\` when the typedefs require \`path\`.
|
|
14439
14439
|
- Use \`ClassName.get({ path })\` only when you already know an object's graph path.
|
|
14440
14440
|
- Use \`ClassName.count()\` when you only need a total.
|
|
14441
|
-
- Use \`ClassName.page({ page, perPage, saveAs })\` when you need both records and pagination metadata like \`totalCount\` or \`hasMore\`.
|
|
14442
|
-
- Use \`ClassName.list({ page, perPage, saveAs })\` to load one typed page of records. \`limit\` is only a legacy alias for \`perPage\`.
|
|
14443
|
-
- Use \`for await (const item of ClassName.iterate({ perPage, maxItems }))\` for large batch jobs so you do not materialize the whole result set at once.
|
|
14441
|
+
- Use \`ClassName.page({ page, perPage, saveAs })\` when you need both records and pagination metadata like \`totalCount\` or \`hasMore\`. \`perPage\` defaults to \`100\` and larger values are clamped to \`100\`.
|
|
14442
|
+
- Use \`ClassName.list({ page, perPage, saveAs })\` to load one typed page of records. \`limit\` is only a legacy alias for \`perPage\`, \`perPage\` defaults to \`100\`, and larger values are clamped to \`100\`.
|
|
14443
|
+
- Use \`for await (const item of ClassName.iterate({ perPage, maxItems }))\` for large batch jobs so you do not materialize the whole result set at once. \`perPage\` defaults to \`100\` and larger values are clamped to \`100\`.
|
|
14444
14444
|
- Instance methods: \`await instance.method_name(params)\`.
|
|
14445
14445
|
- Static methods: \`await ClassName.static_method(params)\`.
|
|
14446
14446
|
- Global effects: \`await effect_name(params)\`.
|