@appconda/sdk 1.0.678 → 1.0.680

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.
@@ -1973,6 +1973,27 @@ export declare const ListChannelsSchema: z.ZodObject<{
1973
1973
  tenantId: z.ZodString;
1974
1974
  entityId: z.ZodOptional<z.ZodString>;
1975
1975
  }, z.core.$strip>;
1976
+ export declare const SendWorkerWhatsAppMessageSchema: z.ZodObject<{
1977
+ tenantId: z.ZodString;
1978
+ workerId: z.ZodString;
1979
+ channelId: z.ZodOptional<z.ZodString>;
1980
+ to: z.ZodString;
1981
+ body: z.ZodOptional<z.ZodString>;
1982
+ contentSid: z.ZodOptional<z.ZodString>;
1983
+ contentVariables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1984
+ idempotencyKey: z.ZodString;
1985
+ }, z.core.$strip>;
1986
+ export declare const TestWorkerWhatsAppChannelSchema: z.ZodObject<{
1987
+ tenantId: z.ZodString;
1988
+ channelId: z.ZodString;
1989
+ }, z.core.$strip>;
1990
+ export declare const ListWorkerWhatsAppMessagesSchema: z.ZodObject<{
1991
+ tenantId: z.ZodString;
1992
+ workerId: z.ZodString;
1993
+ channelId: z.ZodOptional<z.ZodString>;
1994
+ cursor: z.ZodOptional<z.ZodString>;
1995
+ limit: z.ZodOptional<z.ZodString>;
1996
+ }, z.core.$strip>;
1976
1997
  export declare const ListGoogleMeetCalendarsSchema: z.ZodObject<{
1977
1998
  tenantId: z.ZodString;
1978
1999
  credentialId: z.ZodString;