@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.mjs
CHANGED
|
@@ -67160,6 +67160,7 @@ const ModelPrefsObjectSchema = objectType({
|
|
|
67160
67160
|
memorySummaryCadenceMinutes: numberType().min(0).default(60),
|
|
67161
67161
|
maxMemorySummariesRetained: numberType().min(0).default(50),
|
|
67162
67162
|
excludedProvidersForWorkflows: recordType(stringType(), arrayType(stringType())).default({}),
|
|
67163
|
+
quantModelWeight: numberType().min(0).max(1).default(0.7),
|
|
67163
67164
|
});
|
|
67164
67165
|
const ModelPrefsSchema = ModelPrefsObjectSchema.default({});
|
|
67165
67166
|
|