@agentrix/shared 2.0.1 → 2.0.2

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
@@ -115,12 +115,8 @@ const OAuthLoginQuerySchema = zod.z.object({
115
115
  // Base64-encoded Ed25519 public key
116
116
  challenge: zod.z.string(),
117
117
  // Base64-encoded random challenge
118
- signatureProof: zod.z.string(),
118
+ signatureProof: zod.z.string()
119
119
  // Base64-encoded Ed25519 signature
120
- salt: zod.z.string().optional(),
121
- // Salt for password encryption (base64) - optional, set after login
122
- encryptedSecret: zod.z.string().optional()
123
- // Encrypted secret (base64) - optional, set after login
124
120
  });
125
121
  const OAuthCallbackQuerySchema = zod.z.object({
126
122
  code: zod.z.string(),
@@ -575,7 +571,7 @@ const CreateAgentRequestSchema = zod.z.object({
575
571
  placeholderMsg: zod.z.string().default("Ask me anything..."),
576
572
  gitRepoId: zod.z.string().optional(),
577
573
  supportLocal: zod.z.boolean().default(false),
578
- config: AgentCustomConfigSchema.optional()
574
+ config: AgentCustomConfigSchema.nullable().optional()
579
575
  });
580
576
  const CreateAgentResponseSchema = AgentSchema;
581
577
  const UpdateAgentRequestSchema = zod.z.object({