wowok_agent 2.1.18 → 2.1.19

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.
@@ -1,5 +1,5 @@
1
1
  import { z } from "zod";
2
- export declare const MessageStatusSchema: z.ZodEnum<["pending", "confirmed", "read", "failed", "rejected"]>;
2
+ export declare const MessageStatusSchema: z.ZodEnum<["pending", "confirmed", "read", "failed", "rejected", "decrypted"]>;
3
3
  export declare const MessageDirectionSchema: z.ZodEnum<["sent", "received"]>;
4
4
  export declare const MessageTypeSchema: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<3>]>;
5
5
  export declare const MessageContentTypeSchema: z.ZodEnum<["text", "zip", "wts", "wip"]>;
@@ -37,7 +37,7 @@ export declare const MessageSchema: z.ZodObject<{
37
37
  passportAddress: z.ZodOptional<z.ZodString>;
38
38
  lastReceivedLeafIndex: z.ZodOptional<z.ZodNumber>;
39
39
  direction: z.ZodEnum<["sent", "received"]>;
40
- status: z.ZodEnum<["pending", "confirmed", "read", "failed", "rejected"]>;
40
+ status: z.ZodEnum<["pending", "confirmed", "read", "failed", "rejected", "decrypted"]>;
41
41
  msgType: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<3>]>;
42
42
  leafIndex: z.ZodOptional<z.ZodNumber>;
43
43
  prevRoot: z.ZodOptional<z.ZodString>;
@@ -87,7 +87,7 @@ export declare const MessageSchema: z.ZodObject<{
87
87
  }>>;
88
88
  proof: z.ZodOptional<z.ZodString>;
89
89
  }, "strip", z.ZodTypeAny, {
90
- status: "pending" | "confirmed" | "read" | "failed" | "rejected";
90
+ status: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted";
91
91
  createdAt: number;
92
92
  messageId: string;
93
93
  fromAddress: string;
@@ -122,7 +122,7 @@ export declare const MessageSchema: z.ZodObject<{
122
122
  downloadedAt?: number | undefined;
123
123
  } | undefined;
124
124
  }, {
125
- status: "pending" | "confirmed" | "read" | "failed" | "rejected";
125
+ status: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted";
126
126
  createdAt: number;
127
127
  messageId: string;
128
128
  fromAddress: string;
@@ -178,7 +178,7 @@ export declare const ConversationInfoSchema: z.ZodObject<{
178
178
  }>;
179
179
  export declare const MessageFilterSchema: z.ZodObject<{
180
180
  direction: z.ZodOptional<z.ZodEnum<["sent", "received"]>>;
181
- status: z.ZodOptional<z.ZodEnum<["pending", "confirmed", "read", "failed", "rejected"]>>;
181
+ status: z.ZodOptional<z.ZodEnum<["pending", "confirmed", "read", "failed", "rejected", "decrypted"]>>;
182
182
  peerAddress: z.ZodOptional<z.ZodObject<{
183
183
  name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
184
184
  local_mark_first: z.ZodOptional<z.ZodBoolean>;
@@ -229,7 +229,7 @@ export declare const MessageFilterSchema: z.ZodObject<{
229
229
  }>>;
230
230
  account: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
231
231
  }, "strip", z.ZodTypeAny, {
232
- status?: "pending" | "confirmed" | "read" | "failed" | "rejected" | undefined;
232
+ status?: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted" | undefined;
233
233
  limit?: number | undefined;
234
234
  account?: string | undefined;
235
235
  contentType?: "text" | "wip" | "zip" | "wts" | undefined;
@@ -267,7 +267,7 @@ export declare const MessageFilterSchema: z.ZodObject<{
267
267
  relation?: "union" | "intersection" | undefined;
268
268
  } | undefined;
269
269
  }, {
270
- status?: "pending" | "confirmed" | "read" | "failed" | "rejected" | undefined;
270
+ status?: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted" | undefined;
271
271
  limit?: number | undefined;
272
272
  account?: string | undefined;
273
273
  contentType?: "text" | "wip" | "zip" | "wts" | undefined;
@@ -345,7 +345,7 @@ export declare const SendFileOptionsSchema: z.ZodObject<{
345
345
  }>;
346
346
  export declare const SendMessageResultSchema: z.ZodObject<{
347
347
  messageId: z.ZodString;
348
- status: z.ZodEnum<["pending", "confirmed", "read", "failed", "rejected"]>;
348
+ status: z.ZodEnum<["pending", "confirmed", "read", "failed", "rejected", "decrypted"]>;
349
349
  merkleData: z.ZodOptional<z.ZodObject<{
350
350
  leafIndex: z.ZodNumber;
351
351
  prevRoot: z.ZodString;
@@ -370,7 +370,7 @@ export declare const SendMessageResultSchema: z.ZodObject<{
370
370
  }>>;
371
371
  guardList: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
372
372
  }, "strip", z.ZodTypeAny, {
373
- status: "pending" | "confirmed" | "read" | "failed" | "rejected";
373
+ status: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted";
374
374
  messageId: string;
375
375
  merkleData?: {
376
376
  serverTimestamp: number;
@@ -382,7 +382,7 @@ export declare const SendMessageResultSchema: z.ZodObject<{
382
382
  } | undefined;
383
383
  guardList?: string[] | undefined;
384
384
  }, {
385
- status: "pending" | "confirmed" | "read" | "failed" | "rejected";
385
+ status: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted";
386
386
  messageId: string;
387
387
  merkleData?: {
388
388
  serverTimestamp: number;
@@ -1229,7 +1229,7 @@ export declare const MessengerOperationInputSchema: z.ZodDiscriminatedUnion<"ope
1229
1229
  operation: z.ZodLiteral<"watch_messages">;
1230
1230
  filter: z.ZodOptional<z.ZodObject<{
1231
1231
  direction: z.ZodOptional<z.ZodEnum<["sent", "received"]>>;
1232
- status: z.ZodOptional<z.ZodEnum<["pending", "confirmed", "read", "failed", "rejected"]>>;
1232
+ status: z.ZodOptional<z.ZodEnum<["pending", "confirmed", "read", "failed", "rejected", "decrypted"]>>;
1233
1233
  peerAddress: z.ZodOptional<z.ZodObject<{
1234
1234
  name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1235
1235
  local_mark_first: z.ZodOptional<z.ZodBoolean>;
@@ -1280,7 +1280,7 @@ export declare const MessengerOperationInputSchema: z.ZodDiscriminatedUnion<"ope
1280
1280
  }>>;
1281
1281
  account: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1282
1282
  }, "strip", z.ZodTypeAny, {
1283
- status?: "pending" | "confirmed" | "read" | "failed" | "rejected" | undefined;
1283
+ status?: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted" | undefined;
1284
1284
  limit?: number | undefined;
1285
1285
  account?: string | undefined;
1286
1286
  contentType?: "text" | "wip" | "zip" | "wts" | undefined;
@@ -1318,7 +1318,7 @@ export declare const MessengerOperationInputSchema: z.ZodDiscriminatedUnion<"ope
1318
1318
  relation?: "union" | "intersection" | undefined;
1319
1319
  } | undefined;
1320
1320
  }, {
1321
- status?: "pending" | "confirmed" | "read" | "failed" | "rejected" | undefined;
1321
+ status?: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted" | undefined;
1322
1322
  limit?: number | undefined;
1323
1323
  account?: string | undefined;
1324
1324
  contentType?: "text" | "wip" | "zip" | "wts" | undefined;
@@ -1359,7 +1359,7 @@ export declare const MessengerOperationInputSchema: z.ZodDiscriminatedUnion<"ope
1359
1359
  }, "strip", z.ZodTypeAny, {
1360
1360
  operation: "watch_messages";
1361
1361
  filter?: {
1362
- status?: "pending" | "confirmed" | "read" | "failed" | "rejected" | undefined;
1362
+ status?: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted" | undefined;
1363
1363
  limit?: number | undefined;
1364
1364
  account?: string | undefined;
1365
1365
  contentType?: "text" | "wip" | "zip" | "wts" | undefined;
@@ -1400,7 +1400,7 @@ export declare const MessengerOperationInputSchema: z.ZodDiscriminatedUnion<"ope
1400
1400
  }, {
1401
1401
  operation: "watch_messages";
1402
1402
  filter?: {
1403
- status?: "pending" | "confirmed" | "read" | "failed" | "rejected" | undefined;
1403
+ status?: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted" | undefined;
1404
1404
  limit?: number | undefined;
1405
1405
  account?: string | undefined;
1406
1406
  contentType?: "text" | "wip" | "zip" | "wts" | undefined;
@@ -1451,7 +1451,7 @@ export declare const MessengerOperationInputSchema: z.ZodDiscriminatedUnion<"ope
1451
1451
  passportAddress: z.ZodOptional<z.ZodString>;
1452
1452
  lastReceivedLeafIndex: z.ZodOptional<z.ZodNumber>;
1453
1453
  direction: z.ZodEnum<["sent", "received"]>;
1454
- status: z.ZodEnum<["pending", "confirmed", "read", "failed", "rejected"]>;
1454
+ status: z.ZodEnum<["pending", "confirmed", "read", "failed", "rejected", "decrypted"]>;
1455
1455
  msgType: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<3>]>;
1456
1456
  leafIndex: z.ZodOptional<z.ZodNumber>;
1457
1457
  prevRoot: z.ZodOptional<z.ZodString>;
@@ -1501,7 +1501,7 @@ export declare const MessengerOperationInputSchema: z.ZodDiscriminatedUnion<"ope
1501
1501
  }>>;
1502
1502
  proof: z.ZodOptional<z.ZodString>;
1503
1503
  }, "strip", z.ZodTypeAny, {
1504
- status: "pending" | "confirmed" | "read" | "failed" | "rejected";
1504
+ status: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted";
1505
1505
  createdAt: number;
1506
1506
  messageId: string;
1507
1507
  fromAddress: string;
@@ -1536,7 +1536,7 @@ export declare const MessengerOperationInputSchema: z.ZodDiscriminatedUnion<"ope
1536
1536
  downloadedAt?: number | undefined;
1537
1537
  } | undefined;
1538
1538
  }, {
1539
- status: "pending" | "confirmed" | "read" | "failed" | "rejected";
1539
+ status: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted";
1540
1540
  createdAt: number;
1541
1541
  messageId: string;
1542
1542
  fromAddress: string;
@@ -1576,7 +1576,7 @@ export declare const MessengerOperationInputSchema: z.ZodDiscriminatedUnion<"ope
1576
1576
  operation: "extract_zip_messages";
1577
1577
  outputDir: string;
1578
1578
  messages: (string | {
1579
- status: "pending" | "confirmed" | "read" | "failed" | "rejected";
1579
+ status: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted";
1580
1580
  createdAt: number;
1581
1581
  messageId: string;
1582
1582
  fromAddress: string;
@@ -1616,7 +1616,7 @@ export declare const MessengerOperationInputSchema: z.ZodDiscriminatedUnion<"ope
1616
1616
  operation: "extract_zip_messages";
1617
1617
  outputDir: string;
1618
1618
  messages: (string | {
1619
- status: "pending" | "confirmed" | "read" | "failed" | "rejected";
1619
+ status: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted";
1620
1620
  createdAt: number;
1621
1621
  messageId: string;
1622
1622
  fromAddress: string;
@@ -2427,7 +2427,7 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
2427
2427
  operation: z.ZodLiteral<"send_message">;
2428
2428
  result: z.ZodObject<{
2429
2429
  messageId: z.ZodString;
2430
- status: z.ZodEnum<["pending", "confirmed", "read", "failed", "rejected"]>;
2430
+ status: z.ZodEnum<["pending", "confirmed", "read", "failed", "rejected", "decrypted"]>;
2431
2431
  merkleData: z.ZodOptional<z.ZodObject<{
2432
2432
  leafIndex: z.ZodNumber;
2433
2433
  prevRoot: z.ZodString;
@@ -2452,7 +2452,7 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
2452
2452
  }>>;
2453
2453
  guardList: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2454
2454
  }, "strip", z.ZodTypeAny, {
2455
- status: "pending" | "confirmed" | "read" | "failed" | "rejected";
2455
+ status: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted";
2456
2456
  messageId: string;
2457
2457
  merkleData?: {
2458
2458
  serverTimestamp: number;
@@ -2464,7 +2464,7 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
2464
2464
  } | undefined;
2465
2465
  guardList?: string[] | undefined;
2466
2466
  }, {
2467
- status: "pending" | "confirmed" | "read" | "failed" | "rejected";
2467
+ status: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted";
2468
2468
  messageId: string;
2469
2469
  merkleData?: {
2470
2470
  serverTimestamp: number;
@@ -2478,7 +2478,7 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
2478
2478
  }>;
2479
2479
  }, "strip", z.ZodTypeAny, {
2480
2480
  result: {
2481
- status: "pending" | "confirmed" | "read" | "failed" | "rejected";
2481
+ status: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted";
2482
2482
  messageId: string;
2483
2483
  merkleData?: {
2484
2484
  serverTimestamp: number;
@@ -2493,7 +2493,7 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
2493
2493
  operation: "send_message";
2494
2494
  }, {
2495
2495
  result: {
2496
- status: "pending" | "confirmed" | "read" | "failed" | "rejected";
2496
+ status: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted";
2497
2497
  messageId: string;
2498
2498
  merkleData?: {
2499
2499
  serverTimestamp: number;
@@ -2510,7 +2510,7 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
2510
2510
  operation: z.ZodLiteral<"send_file">;
2511
2511
  result: z.ZodObject<{
2512
2512
  messageId: z.ZodString;
2513
- status: z.ZodEnum<["pending", "confirmed", "read", "failed", "rejected"]>;
2513
+ status: z.ZodEnum<["pending", "confirmed", "read", "failed", "rejected", "decrypted"]>;
2514
2514
  merkleData: z.ZodOptional<z.ZodObject<{
2515
2515
  leafIndex: z.ZodNumber;
2516
2516
  prevRoot: z.ZodString;
@@ -2535,7 +2535,7 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
2535
2535
  }>>;
2536
2536
  guardList: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2537
2537
  }, "strip", z.ZodTypeAny, {
2538
- status: "pending" | "confirmed" | "read" | "failed" | "rejected";
2538
+ status: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted";
2539
2539
  messageId: string;
2540
2540
  merkleData?: {
2541
2541
  serverTimestamp: number;
@@ -2547,7 +2547,7 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
2547
2547
  } | undefined;
2548
2548
  guardList?: string[] | undefined;
2549
2549
  }, {
2550
- status: "pending" | "confirmed" | "read" | "failed" | "rejected";
2550
+ status: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted";
2551
2551
  messageId: string;
2552
2552
  merkleData?: {
2553
2553
  serverTimestamp: number;
@@ -2561,7 +2561,7 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
2561
2561
  }>;
2562
2562
  }, "strip", z.ZodTypeAny, {
2563
2563
  result: {
2564
- status: "pending" | "confirmed" | "read" | "failed" | "rejected";
2564
+ status: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted";
2565
2565
  messageId: string;
2566
2566
  merkleData?: {
2567
2567
  serverTimestamp: number;
@@ -2576,7 +2576,7 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
2576
2576
  operation: "send_file";
2577
2577
  }, {
2578
2578
  result: {
2579
- status: "pending" | "confirmed" | "read" | "failed" | "rejected";
2579
+ status: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted";
2580
2580
  messageId: string;
2581
2581
  merkleData?: {
2582
2582
  serverTimestamp: number;
@@ -2601,7 +2601,7 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
2601
2601
  passportAddress: z.ZodOptional<z.ZodString>;
2602
2602
  lastReceivedLeafIndex: z.ZodOptional<z.ZodNumber>;
2603
2603
  direction: z.ZodEnum<["sent", "received"]>;
2604
- status: z.ZodEnum<["pending", "confirmed", "read", "failed", "rejected"]>;
2604
+ status: z.ZodEnum<["pending", "confirmed", "read", "failed", "rejected", "decrypted"]>;
2605
2605
  msgType: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<3>]>;
2606
2606
  leafIndex: z.ZodOptional<z.ZodNumber>;
2607
2607
  prevRoot: z.ZodOptional<z.ZodString>;
@@ -2651,7 +2651,7 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
2651
2651
  }>>;
2652
2652
  proof: z.ZodOptional<z.ZodString>;
2653
2653
  }, "strip", z.ZodTypeAny, {
2654
- status: "pending" | "confirmed" | "read" | "failed" | "rejected";
2654
+ status: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted";
2655
2655
  createdAt: number;
2656
2656
  messageId: string;
2657
2657
  fromAddress: string;
@@ -2686,7 +2686,7 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
2686
2686
  downloadedAt?: number | undefined;
2687
2687
  } | undefined;
2688
2688
  }, {
2689
- status: "pending" | "confirmed" | "read" | "failed" | "rejected";
2689
+ status: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted";
2690
2690
  createdAt: number;
2691
2691
  messageId: string;
2692
2692
  fromAddress: string;
@@ -2723,7 +2723,7 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
2723
2723
  }>, "many">;
2724
2724
  }, "strip", z.ZodTypeAny, {
2725
2725
  result: {
2726
- status: "pending" | "confirmed" | "read" | "failed" | "rejected";
2726
+ status: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted";
2727
2727
  createdAt: number;
2728
2728
  messageId: string;
2729
2729
  fromAddress: string;
@@ -2761,7 +2761,7 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
2761
2761
  operation: "watch_messages";
2762
2762
  }, {
2763
2763
  result: {
2764
- status: "pending" | "confirmed" | "read" | "failed" | "rejected";
2764
+ status: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted";
2765
2765
  createdAt: number;
2766
2766
  messageId: string;
2767
2767
  fromAddress: string;
@@ -3305,7 +3305,7 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
3305
3305
  operation: "watch_conversations";
3306
3306
  } | {
3307
3307
  result: {
3308
- status: "pending" | "confirmed" | "read" | "failed" | "rejected";
3308
+ status: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted";
3309
3309
  messageId: string;
3310
3310
  merkleData?: {
3311
3311
  serverTimestamp: number;
@@ -3320,7 +3320,7 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
3320
3320
  operation: "send_message";
3321
3321
  } | {
3322
3322
  result: {
3323
- status: "pending" | "confirmed" | "read" | "failed" | "rejected";
3323
+ status: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted";
3324
3324
  messageId: string;
3325
3325
  merkleData?: {
3326
3326
  serverTimestamp: number;
@@ -3335,7 +3335,7 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
3335
3335
  operation: "send_file";
3336
3336
  } | {
3337
3337
  result: {
3338
- status: "pending" | "confirmed" | "read" | "failed" | "rejected";
3338
+ status: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted";
3339
3339
  createdAt: number;
3340
3340
  messageId: string;
3341
3341
  fromAddress: string;
@@ -3485,7 +3485,7 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
3485
3485
  operation: "watch_conversations";
3486
3486
  } | {
3487
3487
  result: {
3488
- status: "pending" | "confirmed" | "read" | "failed" | "rejected";
3488
+ status: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted";
3489
3489
  messageId: string;
3490
3490
  merkleData?: {
3491
3491
  serverTimestamp: number;
@@ -3500,7 +3500,7 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
3500
3500
  operation: "send_message";
3501
3501
  } | {
3502
3502
  result: {
3503
- status: "pending" | "confirmed" | "read" | "failed" | "rejected";
3503
+ status: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted";
3504
3504
  messageId: string;
3505
3505
  merkleData?: {
3506
3506
  serverTimestamp: number;
@@ -3515,7 +3515,7 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
3515
3515
  operation: "send_file";
3516
3516
  } | {
3517
3517
  result: {
3518
- status: "pending" | "confirmed" | "read" | "failed" | "rejected";
3518
+ status: "pending" | "confirmed" | "read" | "failed" | "rejected" | "decrypted";
3519
3519
  createdAt: number;
3520
3520
  messageId: string;
3521
3521
  fromAddress: string;
@@ -4,7 +4,7 @@ import { NameOrAddressSchema, EntrypointSchema, ManyAccountOrMark_AddressSchema,
4
4
  // Messenger Schema Definitions (strictly based on messenger-api.ts and types.ts)
5
5
  // ============================================================
6
6
  // Enums from types.ts
7
- export const MessageStatusSchema = z.enum(["pending", "confirmed", "read", "failed", "rejected"]);
7
+ export const MessageStatusSchema = z.enum(["pending", "confirmed", "read", "failed", "rejected", "decrypted"]);
8
8
  export const MessageDirectionSchema = z.enum(["sent", "received"]);
9
9
  export const MessageTypeSchema = z.union([z.literal(1), z.literal(3)]);
10
10
  export const MessageContentTypeSchema = z.enum(["text", "zip", "wts", "wip"]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wowok_agent",
3
- "version": "2.1.18",
3
+ "version": "2.1.19",
4
4
  "description": "Making It Easy for Agents to Communicate, Collaborate, Trade, and Trust.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -30,7 +30,7 @@
30
30
  "dependencies": {
31
31
  "@modelcontextprotocol/sdk": "^1.29.0",
32
32
  "lodash": "^4.18.1",
33
- "wowok": "2.1.18",
33
+ "wowok": "2.1.19",
34
34
  "zod": "^3.25.76"
35
35
  },
36
36
  "devDependencies": {