@appconda/sdk 1.0.678 → 1.0.681
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 +86 -0
- package/dist/modules/emploid/schema.js +89 -1
- package/dist/modules/emploid/service.d.ts +31 -1
- package/dist/modules/emploid/service.js +46 -1
- package/dist/modules/emploid/types.d.ts +153 -0
- package/dist/modules/emploid/types.js +1 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +102 -0
- package/src/modules/emploid/service.ts +96 -1
- package/src/modules/emploid/types.ts +144 -0
|
@@ -982,6 +982,18 @@ export declare const DeleteCollectionSchema: z.ZodObject<{
|
|
|
982
982
|
tenantId: z.ZodString;
|
|
983
983
|
collectionId: z.ZodString;
|
|
984
984
|
}, z.core.$strip>;
|
|
985
|
+
export declare const ArchiveCollectionSchema: z.ZodObject<{
|
|
986
|
+
tenantId: z.ZodString;
|
|
987
|
+
collectionId: z.ZodString;
|
|
988
|
+
reason: z.ZodString;
|
|
989
|
+
actor: z.ZodString;
|
|
990
|
+
}, z.core.$strip>;
|
|
991
|
+
export declare const PurgeCollectionSchema: z.ZodObject<{
|
|
992
|
+
tenantId: z.ZodString;
|
|
993
|
+
collectionId: z.ZodString;
|
|
994
|
+
actor: z.ZodString;
|
|
995
|
+
confirm: z.ZodLiteral<"PURGE">;
|
|
996
|
+
}, z.core.$strip>;
|
|
985
997
|
export declare const ListCollectionsSchema: z.ZodObject<{
|
|
986
998
|
tenantId: z.ZodString;
|
|
987
999
|
dataModelId: z.ZodOptional<z.ZodString>;
|
|
@@ -1973,6 +1985,80 @@ export declare const ListChannelsSchema: z.ZodObject<{
|
|
|
1973
1985
|
tenantId: z.ZodString;
|
|
1974
1986
|
entityId: z.ZodOptional<z.ZodString>;
|
|
1975
1987
|
}, z.core.$strip>;
|
|
1988
|
+
export declare const SendWorkerWhatsAppMessageSchema: z.ZodObject<{
|
|
1989
|
+
tenantId: z.ZodString;
|
|
1990
|
+
workerId: z.ZodString;
|
|
1991
|
+
channelId: z.ZodOptional<z.ZodString>;
|
|
1992
|
+
to: z.ZodString;
|
|
1993
|
+
body: z.ZodOptional<z.ZodString>;
|
|
1994
|
+
contentSid: z.ZodOptional<z.ZodString>;
|
|
1995
|
+
contentVariables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1996
|
+
idempotencyKey: z.ZodString;
|
|
1997
|
+
}, z.core.$strip>;
|
|
1998
|
+
export declare const TestWorkerWhatsAppChannelSchema: z.ZodObject<{
|
|
1999
|
+
tenantId: z.ZodString;
|
|
2000
|
+
channelId: z.ZodString;
|
|
2001
|
+
}, z.core.$strip>;
|
|
2002
|
+
export declare const ListWorkerWhatsAppMessagesSchema: z.ZodObject<{
|
|
2003
|
+
tenantId: z.ZodString;
|
|
2004
|
+
workerId: z.ZodString;
|
|
2005
|
+
channelId: z.ZodOptional<z.ZodString>;
|
|
2006
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
2007
|
+
limit: z.ZodOptional<z.ZodString>;
|
|
2008
|
+
}, z.core.$strip>;
|
|
2009
|
+
export declare const SendWorkerSlackMessageSchema: z.ZodObject<{
|
|
2010
|
+
tenantId: z.ZodString;
|
|
2011
|
+
workerId: z.ZodString;
|
|
2012
|
+
channelId: z.ZodOptional<z.ZodString>;
|
|
2013
|
+
conversationId: z.ZodString;
|
|
2014
|
+
body: z.ZodString;
|
|
2015
|
+
threadTs: z.ZodOptional<z.ZodString>;
|
|
2016
|
+
idempotencyKey: z.ZodString;
|
|
2017
|
+
}, z.core.$strip>;
|
|
2018
|
+
export declare const TestWorkerSlackChannelSchema: z.ZodObject<{
|
|
2019
|
+
tenantId: z.ZodString;
|
|
2020
|
+
channelId: z.ZodString;
|
|
2021
|
+
}, z.core.$strip>;
|
|
2022
|
+
export declare const ListSlackConversationsSchema: z.ZodObject<{
|
|
2023
|
+
tenantId: z.ZodString;
|
|
2024
|
+
credentialRef: z.ZodString;
|
|
2025
|
+
}, z.core.$strip>;
|
|
2026
|
+
export declare const ListWorkerSlackMessagesSchema: z.ZodObject<{
|
|
2027
|
+
tenantId: z.ZodString;
|
|
2028
|
+
workerId: z.ZodString;
|
|
2029
|
+
channelId: z.ZodOptional<z.ZodString>;
|
|
2030
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
2031
|
+
limit: z.ZodOptional<z.ZodString>;
|
|
2032
|
+
}, z.core.$strip>;
|
|
2033
|
+
export declare const SendWorkerDiscordMessageSchema: z.ZodObject<{
|
|
2034
|
+
tenantId: z.ZodString;
|
|
2035
|
+
workerId: z.ZodString;
|
|
2036
|
+
channelId: z.ZodOptional<z.ZodString>;
|
|
2037
|
+
conversationId: z.ZodString;
|
|
2038
|
+
body: z.ZodString;
|
|
2039
|
+
replyToMessageId: z.ZodOptional<z.ZodString>;
|
|
2040
|
+
idempotencyKey: z.ZodString;
|
|
2041
|
+
}, z.core.$strip>;
|
|
2042
|
+
export declare const TestWorkerDiscordChannelSchema: z.ZodObject<{
|
|
2043
|
+
tenantId: z.ZodString;
|
|
2044
|
+
channelId: z.ZodString;
|
|
2045
|
+
}, z.core.$strip>;
|
|
2046
|
+
export declare const ListDiscordGuildsSchema: z.ZodObject<{
|
|
2047
|
+
tenantId: z.ZodString;
|
|
2048
|
+
credentialRef: z.ZodString;
|
|
2049
|
+
}, z.core.$strip>;
|
|
2050
|
+
export declare const ListDiscordGuildChannelsSchema: z.ZodObject<{
|
|
2051
|
+
tenantId: z.ZodString;
|
|
2052
|
+
credentialRef: z.ZodString;
|
|
2053
|
+
guildId: z.ZodString;
|
|
2054
|
+
}, z.core.$strip>;
|
|
2055
|
+
export declare const ListWorkerDiscordMessagesSchema: z.ZodObject<{
|
|
2056
|
+
tenantId: z.ZodString;
|
|
2057
|
+
workerId: z.ZodString;
|
|
2058
|
+
channelId: z.ZodOptional<z.ZodString>;
|
|
2059
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
2060
|
+
limit: z.ZodOptional<z.ZodString>;
|
|
2061
|
+
}, z.core.$strip>;
|
|
1976
2062
|
export declare const ListGoogleMeetCalendarsSchema: z.ZodObject<{
|
|
1977
2063
|
tenantId: z.ZodString;
|
|
1978
2064
|
credentialId: z.ZodString;
|