@shipfox/api-integration-slack-dto 9.0.2 → 12.2.0
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/.turbo/turbo-build.log
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
$ shipfox-swc
|
|
2
|
-
Successfully compiled: 2 files with swc (
|
|
2
|
+
Successfully compiled: 2 files with swc (253.57ms)
|
package/.turbo/turbo-type.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @shipfox/api-integration-slack-dto
|
|
2
2
|
|
|
3
|
+
## 12.2.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [7901a60]
|
|
8
|
+
- @shipfox/api-integration-core-dto@12.2.0
|
|
9
|
+
|
|
10
|
+
## 12.0.0
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [f13e8bb]
|
|
15
|
+
- Updated dependencies [869a792]
|
|
16
|
+
- Updated dependencies [032d316]
|
|
17
|
+
- Updated dependencies [54c820e]
|
|
18
|
+
- Updated dependencies [cb0abfa]
|
|
19
|
+
- @shipfox/api-integration-core-dto@12.0.0
|
|
20
|
+
|
|
3
21
|
## 9.0.2
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/dist/schemas/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const SLACK_PROVIDER = "slack";
|
|
3
3
|
export type SlackProvider = typeof SLACK_PROVIDER;
|
|
4
|
-
export declare const slackApiEventTypes: readonly [
|
|
5
|
-
export declare const SLACK_SLASH_COMMAND_EVENT:
|
|
6
|
-
export declare const SLACK_APP_UNINSTALLED_EVENT:
|
|
7
|
-
export declare const SLACK_TOKENS_REVOKED_EVENT:
|
|
4
|
+
export declare const slackApiEventTypes: readonly ['app_mention', 'message', 'reaction_added'];
|
|
5
|
+
export declare const SLACK_SLASH_COMMAND_EVENT: 'slash_command';
|
|
6
|
+
export declare const SLACK_APP_UNINSTALLED_EVENT: 'app_uninstalled';
|
|
7
|
+
export declare const SLACK_TOKENS_REVOKED_EVENT: 'tokens_revoked';
|
|
8
8
|
export declare const slackLifecycleEventTypes: readonly ["app_uninstalled", "tokens_revoked"];
|
|
9
9
|
export declare const slackEventNames: readonly ["app_mention", "message", "reaction_added", "slash_command"];
|
|
10
10
|
export type SlackApiEventType = (typeof slackApiEventTypes)[number];
|
|
@@ -97,9 +97,8 @@ export declare const slackSlashCommandSchema: z.ZodObject<{
|
|
|
97
97
|
}, z.core.$strip>;
|
|
98
98
|
export type SlackSlashCommandDto = z.infer<typeof slackSlashCommandSchema>;
|
|
99
99
|
export declare const slackSlashCommandPayloadSchema: z.ZodObject<{
|
|
100
|
-
team_id: z.ZodString;
|
|
101
|
-
api_app_id: z.ZodOptional<z.ZodString>;
|
|
102
100
|
command: z.ZodString;
|
|
101
|
+
team_id: z.ZodString;
|
|
103
102
|
channel_id: z.ZodString;
|
|
104
103
|
user_id: z.ZodString;
|
|
105
104
|
response_url: z.ZodString;
|
|
@@ -108,6 +107,7 @@ export declare const slackSlashCommandPayloadSchema: z.ZodObject<{
|
|
|
108
107
|
team_domain: z.ZodOptional<z.ZodString>;
|
|
109
108
|
channel_name: z.ZodOptional<z.ZodString>;
|
|
110
109
|
user_name: z.ZodOptional<z.ZodString>;
|
|
110
|
+
api_app_id: z.ZodOptional<z.ZodString>;
|
|
111
111
|
is_enterprise_install: z.ZodOptional<z.ZodString>;
|
|
112
112
|
enterprise_id: z.ZodOptional<z.ZodString>;
|
|
113
113
|
enterprise_name: z.ZodOptional<z.ZodString>;
|
|
@@ -158,13 +158,13 @@ export declare const slackCallbackResponseSchema: z.ZodObject<{
|
|
|
158
158
|
slug: z.ZodString;
|
|
159
159
|
display_name: z.ZodString;
|
|
160
160
|
lifecycle_status: z.ZodEnum<{
|
|
161
|
-
error: "error";
|
|
162
161
|
active: "active";
|
|
163
162
|
disabled: "disabled";
|
|
163
|
+
error: "error";
|
|
164
164
|
}>;
|
|
165
165
|
capabilities: z.ZodArray<z.ZodEnum<{
|
|
166
|
-
source_control: "source_control";
|
|
167
166
|
agent_tools: "agent_tools";
|
|
167
|
+
source_control: "source_control";
|
|
168
168
|
}>>;
|
|
169
169
|
external_url: z.ZodOptional<z.ZodString>;
|
|
170
170
|
created_at: z.ZodString;
|
|
@@ -189,13 +189,13 @@ export declare const createE2eSlackConnectionResponseSchema: z.ZodObject<{
|
|
|
189
189
|
slug: z.ZodString;
|
|
190
190
|
display_name: z.ZodString;
|
|
191
191
|
lifecycle_status: z.ZodEnum<{
|
|
192
|
-
error: "error";
|
|
193
192
|
active: "active";
|
|
194
193
|
disabled: "disabled";
|
|
194
|
+
error: "error";
|
|
195
195
|
}>;
|
|
196
196
|
capabilities: z.ZodArray<z.ZodEnum<{
|
|
197
|
-
source_control: "source_control";
|
|
198
197
|
agent_tools: "agent_tools";
|
|
198
|
+
source_control: "source_control";
|
|
199
199
|
}>>;
|
|
200
200
|
external_url: z.ZodOptional<z.ZodString>;
|
|
201
201
|
created_at: z.ZodString;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/schemas/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAC;AAEtB,eAAO,MAAM,cAAc,UAAU,CAAC;AACtC,MAAM,MAAM,aAAa,GAAG,OAAO,cAAc,CAAC;AAElD,eAAO,MAAM,kBAAkB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/schemas/index.ts"],"names":[],"mappings":"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"}
|