@adaptic/utils 0.0.928 → 0.0.930
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 +1 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +1 -0
- package/dist/index.mjs.map +1 -1
- package/dist/types/trading-policy/schemas/effective-policy.schema.d.ts +5 -0
- package/dist/types/trading-policy/schemas/effective-policy.schema.d.ts.map +1 -1
- package/dist/types/trading-policy/schemas/model-prefs.schema.d.ts +6 -0
- package/dist/types/trading-policy/schemas/model-prefs.schema.d.ts.map +1 -1
- package/dist/types/trading-policy/schemas/policy-mutation.schema.d.ts +9 -0
- package/dist/types/trading-policy/schemas/policy-mutation.schema.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -67162,6 +67162,7 @@ const ModelPrefsObjectSchema = objectType({
|
|
|
67162
67162
|
memorySummaryCadenceMinutes: numberType().min(0).default(60),
|
|
67163
67163
|
maxMemorySummariesRetained: numberType().min(0).default(50),
|
|
67164
67164
|
excludedProvidersForWorkflows: recordType(stringType(), arrayType(stringType())).default({}),
|
|
67165
|
+
quantModelWeight: numberType().min(0).max(1).default(0.7),
|
|
67165
67166
|
});
|
|
67166
67167
|
const ModelPrefsSchema = ModelPrefsObjectSchema.default({});
|
|
67167
67168
|
|