@appconda/sdk 1.0.680 → 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.
@@ -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>;
@@ -1994,6 +2006,59 @@ export declare const ListWorkerWhatsAppMessagesSchema: z.ZodObject<{
1994
2006
  cursor: z.ZodOptional<z.ZodString>;
1995
2007
  limit: z.ZodOptional<z.ZodString>;
1996
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>;
1997
2062
  export declare const ListGoogleMeetCalendarsSchema: z.ZodObject<{
1998
2063
  tenantId: z.ZodString;
1999
2064
  credentialId: z.ZodString;