@kl1/contracts 1.4.24 → 1.4.26

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.
@@ -279491,15 +279491,18 @@ export declare const publicApiContract: {
279491
279491
  body: import("zod").ZodObject<{
279492
279492
  channelId: import("zod").ZodString;
279493
279493
  message: import("zod").ZodString;
279494
- contactId: import("zod").ZodString;
279494
+ contactId: import("zod").ZodOptional<import("zod").ZodString>;
279495
+ platformUserId: import("zod").ZodOptional<import("zod").ZodString>;
279495
279496
  }, "strip", import("zod").ZodTypeAny, {
279496
279497
  message: string;
279497
279498
  channelId: string;
279498
- contactId: string;
279499
+ contactId?: string | undefined;
279500
+ platformUserId?: string | undefined;
279499
279501
  }, {
279500
279502
  message: string;
279501
279503
  channelId: string;
279502
- contactId: string;
279504
+ contactId?: string | undefined;
279505
+ platformUserId?: string | undefined;
279503
279506
  }>;
279504
279507
  summary: "Send line message";
279505
279508
  method: "POST";