@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.
- package/dist/modules/emploid/schema.d.ts +21 -0
- package/dist/modules/emploid/schema.js +24 -1
- package/dist/modules/emploid/service.d.ts +8 -0
- package/dist/modules/emploid/service.js +10 -1
- package/dist/modules/emploid/types.d.ts +49 -0
- package/dist/modules/emploid/types.js +1 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +26 -0
- package/src/modules/emploid/service.ts +14 -0
- package/src/modules/emploid/types.ts +53 -0
|
@@ -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;
|