@adaptic/utils 0.0.935 → 0.0.937

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 CHANGED
@@ -67436,11 +67436,11 @@ const EffectiveTradingPolicySchema = objectType({
67436
67436
  * user-customized policy exists. All nested preference sub-objects are
67437
67437
  * passed as empty objects so Zod applies their field-level defaults.
67438
67438
  *
67439
- * Key conservative choices:
67439
+ * Key choices:
67440
67440
  * - Advisory-only autonomy (no autonomous execution)
67441
- * - Real-time trading disabled
67442
- * - Only equities, ETFs, and fractional shares enabled
67443
- * - No shorting, margin, crypto, options, futures, or forex
67441
+ * - Real-time trading enabled
67442
+ * - Equities, ETFs, crypto, options, futures, and forex enabled
67443
+ * - No shorting or margin (user must opt-in)
67444
67444
  * - All protective overlays disabled (user must opt-in)
67445
67445
  * - No LLM providers pre-configured
67446
67446
  */
@@ -67452,9 +67452,9 @@ const DEFAULT_TRADING_POLICY = EffectiveTradingPolicySchema.parse({
67452
67452
  equitiesEnabled: true,
67453
67453
  etfsEnabled: true,
67454
67454
  cryptoEnabled: true,
67455
- optionsEnabled: false,
67456
- futuresEnabled: false,
67457
- forexEnabled: false,
67455
+ optionsEnabled: true,
67456
+ futuresEnabled: true,
67457
+ forexEnabled: true,
67458
67458
  shortingEnabled: false,
67459
67459
  marginEnabled: false,
67460
67460
  fractionalSharesEnabled: true,