@zuplo/cli 6.73.1 → 6.73.3
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/node_modules/@posthog/core/dist/error-tracking/error-properties-builder.d.ts.map +1 -1
- package/node_modules/@posthog/core/dist/featureFlagUtils.d.ts +22 -0
- package/node_modules/@posthog/core/dist/featureFlagUtils.d.ts.map +1 -1
- package/node_modules/@posthog/core/dist/featureFlagUtils.js +38 -0
- package/node_modules/@posthog/core/dist/featureFlagUtils.mjs +33 -1
- package/node_modules/@posthog/core/dist/index.d.ts +1 -1
- package/node_modules/@posthog/core/dist/index.d.ts.map +1 -1
- package/node_modules/@posthog/core/dist/index.js +9 -0
- package/node_modules/@posthog/core/dist/index.mjs +2 -2
- package/node_modules/@posthog/core/dist/posthog-core-stateless.d.ts +6 -0
- package/node_modules/@posthog/core/dist/posthog-core-stateless.d.ts.map +1 -1
- package/node_modules/@posthog/core/dist/posthog-core-stateless.js +5 -1
- package/node_modules/@posthog/core/dist/posthog-core-stateless.mjs +6 -2
- package/node_modules/@posthog/core/dist/posthog-core.d.ts +1 -0
- package/node_modules/@posthog/core/dist/posthog-core.d.ts.map +1 -1
- package/node_modules/@posthog/core/dist/posthog-core.js +9 -3
- package/node_modules/@posthog/core/dist/posthog-core.mjs +9 -3
- package/node_modules/@posthog/core/dist/types.d.ts +6 -1
- package/node_modules/@posthog/core/dist/types.d.ts.map +1 -1
- package/node_modules/@posthog/core/package.json +2 -2
- package/node_modules/@posthog/core/src/error-tracking/error-properties-builder.ts +7 -5
- package/node_modules/@posthog/core/src/featureFlagUtils.ts +64 -0
- package/node_modules/@posthog/core/src/index.ts +1 -0
- package/node_modules/@posthog/core/src/posthog-core-stateless.ts +20 -2
- package/node_modules/@posthog/core/src/posthog-core.ts +12 -2
- package/node_modules/@posthog/core/src/types.ts +6 -1
- package/node_modules/@posthog/types/dist/posthog-config.d.ts +11 -0
- package/node_modules/@posthog/types/dist/posthog-config.d.ts.map +1 -1
- package/node_modules/@posthog/types/package.json +1 -1
- package/node_modules/@posthog/types/src/posthog-config.ts +12 -0
- package/node_modules/@zuplo/core/package.json +1 -1
- package/node_modules/@zuplo/graphql/package.json +1 -1
- package/node_modules/@zuplo/openapi-tools/package.json +1 -1
- package/node_modules/@zuplo/otel/package.json +1 -1
- package/node_modules/@zuplo/runtime/out/esm/{chunk-HKPNCGDG.js → chunk-HGOTWF3J.js} +53 -53
- package/node_modules/@zuplo/runtime/out/esm/chunk-HGOTWF3J.js.map +1 -0
- package/node_modules/@zuplo/runtime/out/esm/index.js +1 -1
- package/node_modules/@zuplo/runtime/out/esm/mcp-gateway/index.js +1 -1
- package/node_modules/@zuplo/runtime/out/types/index.d.ts +16 -0
- package/node_modules/@zuplo/runtime/package.json +1 -1
- package/package.json +6 -6
- package/node_modules/@zuplo/runtime/out/esm/chunk-HKPNCGDG.js.map +0 -1
- /package/node_modules/@zuplo/runtime/out/esm/{chunk-HKPNCGDG.js.LEGAL.txt → chunk-HGOTWF3J.js.LEGAL.txt} +0 -0
|
@@ -2555,8 +2555,24 @@ declare type BasicDictionary = Record<
|
|
|
2555
2555
|
declare interface BatchDispatcherOptions {
|
|
2556
2556
|
msDelay: number;
|
|
2557
2557
|
name?: string;
|
|
2558
|
+
/**
|
|
2559
|
+
* Flush immediately once this many payloads are queued instead of waiting
|
|
2560
|
+
* the full `msDelay`. Bounds the size of a single dispatched batch.
|
|
2561
|
+
* @defaultValue 1000
|
|
2562
|
+
*/
|
|
2563
|
+
maxBatchSize?: number;
|
|
2564
|
+
/**
|
|
2565
|
+
* Hard cap on queued payloads. Payloads enqueued beyond this limit are
|
|
2566
|
+
* dropped rather than growing memory without bound.
|
|
2567
|
+
* @defaultValue 10000
|
|
2568
|
+
*/
|
|
2569
|
+
maxQueueSize?: number;
|
|
2558
2570
|
}
|
|
2559
2571
|
|
|
2572
|
+
/* Excluded from this release type: BatchDispatchLimits */
|
|
2573
|
+
|
|
2574
|
+
/* Excluded from this release type: BatchDispatchOptions */
|
|
2575
|
+
|
|
2560
2576
|
/**
|
|
2561
2577
|
* Configured provider/model targets rejected in open-but-filtered mode; requests may use a bare model name or provider/model.
|
|
2562
2578
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zuplo/cli",
|
|
3
|
-
"version": "6.73.
|
|
3
|
+
"version": "6.73.3",
|
|
4
4
|
"repository": "https://github.com/zuplo/zuplo",
|
|
5
5
|
"author": "Zuplo, Inc.",
|
|
6
6
|
"type": "module",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"@opentelemetry/api": "1.9.0",
|
|
28
28
|
"@opentelemetry/api-logs": "0.201.1",
|
|
29
29
|
"@swc/core": "1.10.18",
|
|
30
|
-
"@zuplo/core": "6.73.
|
|
30
|
+
"@zuplo/core": "6.73.3",
|
|
31
31
|
"@zuplo/editor": "1.0.20821740935",
|
|
32
|
-
"@zuplo/openapi-tools": "6.73.
|
|
33
|
-
"@zuplo/runtime": "6.73.
|
|
32
|
+
"@zuplo/openapi-tools": "6.73.3",
|
|
33
|
+
"@zuplo/runtime": "6.73.3",
|
|
34
34
|
"chalk": "5.4.1",
|
|
35
35
|
"chokidar": "3.5.3",
|
|
36
36
|
"cookie": "1.0.2",
|
|
@@ -61,8 +61,8 @@
|
|
|
61
61
|
"workerd": "1.20241230.0",
|
|
62
62
|
"yargs": "17.7.2",
|
|
63
63
|
"zod": "3.25.76",
|
|
64
|
-
"@zuplo/graphql": "6.73.
|
|
65
|
-
"@zuplo/otel": "6.73.
|
|
64
|
+
"@zuplo/graphql": "6.73.3",
|
|
65
|
+
"@zuplo/otel": "6.73.3"
|
|
66
66
|
},
|
|
67
67
|
"bundleDependencies": [
|
|
68
68
|
"@inquirer/prompts",
|