@digilogiclabs/platform-core 1.4.0 → 1.5.0

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/testing.mjs CHANGED
@@ -2480,7 +2480,9 @@ var RAGConfigSchema = z.object({
2480
2480
  var CryptoConfigSchema = z.object({
2481
2481
  enabled: z.boolean().default(false).describe("Enable field-level encryption"),
2482
2482
  masterKey: z.string().optional().describe("256-bit master key as hex (64 chars). Required when enabled."),
2483
- hmacKey: z.string().optional().describe("HMAC key for deterministic hashing (derived from master key if not provided)")
2483
+ hmacKey: z.string().optional().describe(
2484
+ "HMAC key for deterministic hashing (derived from master key if not provided)"
2485
+ )
2484
2486
  }).refine(
2485
2487
  (data) => {
2486
2488
  if (data.enabled) {
@@ -3247,7 +3249,12 @@ init_IAI();
3247
3249
  init_IRAG();
3248
3250
 
3249
3251
  // src/adapters/memory/MemoryCrypto.ts
3250
- import { randomBytes as randomBytes7, createCipheriv, createDecipheriv, createHmac } from "crypto";
3252
+ import {
3253
+ randomBytes as randomBytes7,
3254
+ createCipheriv,
3255
+ createDecipheriv,
3256
+ createHmac
3257
+ } from "crypto";
3251
3258
  var MemoryCrypto = class {
3252
3259
  keys = /* @__PURE__ */ new Map();
3253
3260
  activeKeyId;