@shipfox/api-integration-sentry-dto 12.0.0 → 14.0.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 +1 -1
- package/CHANGELOG.md +16 -0
- package/dist/event-catalog.d.ts +2 -2
- package/dist/event-catalog.d.ts.map +1 -1
- package/dist/schemas/sentry.d.ts +2 -2
- package/dist/schemas/webhooks.d.ts +4 -4
- package/dist/tsconfig.test.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/tsconfig.build.tsbuildinfo +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
$ shipfox-swc
|
|
2
|
-
Successfully compiled: 5 files with swc (
|
|
2
|
+
Successfully compiled: 5 files with swc (252.11ms)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @shipfox/api-integration-sentry-dto
|
|
2
2
|
|
|
3
|
+
## 14.0.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [18e9bad]
|
|
8
|
+
- Updated dependencies [c44641f]
|
|
9
|
+
- Updated dependencies [1b71a66]
|
|
10
|
+
- @shipfox/api-integration-core-dto@14.0.0
|
|
11
|
+
|
|
12
|
+
## 12.2.0
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [7901a60]
|
|
17
|
+
- @shipfox/api-integration-core-dto@12.2.0
|
|
18
|
+
|
|
3
19
|
## 12.0.0
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/event-catalog.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export declare const sentryEventCatalog: {
|
|
2
|
-
readonly provider:
|
|
2
|
+
readonly provider: 'Sentry';
|
|
3
3
|
readonly events: {
|
|
4
4
|
name: string;
|
|
5
|
-
summary: "A Sentry issue is
|
|
5
|
+
summary: "A Sentry issue is archived." | "A Sentry issue is assigned." | "A Sentry issue is created." | "A Sentry issue is resolved." | "A resolved Sentry issue becomes unresolved.";
|
|
6
6
|
emittedWhen: string;
|
|
7
7
|
payloadKind: "shipfox-normalized";
|
|
8
8
|
payloadDocUrl: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"event-catalog.d.ts","sourceRoot":"","sources":["../src/event-catalog.ts"],"names":[],"mappings":"AAgBA,eAAO,MAAM,kBAAkB
|
|
1
|
+
{"version":3,"file":"event-catalog.d.ts","sourceRoot":"","sources":["../src/event-catalog.ts"],"names":[],"mappings":"AAgBA,eAAO,MAAM,kBAAkB;uBACnB,QAAQ;;;;;;;;CAWwB,CAAC"}
|
package/dist/schemas/sentry.d.ts
CHANGED
|
@@ -21,13 +21,13 @@ export declare const sentryConnectResponseSchema: z.ZodObject<{
|
|
|
21
21
|
slug: z.ZodString;
|
|
22
22
|
display_name: z.ZodString;
|
|
23
23
|
lifecycle_status: z.ZodEnum<{
|
|
24
|
-
error: "error";
|
|
25
24
|
active: "active";
|
|
26
25
|
disabled: "disabled";
|
|
26
|
+
error: "error";
|
|
27
27
|
}>;
|
|
28
28
|
capabilities: z.ZodArray<z.ZodEnum<{
|
|
29
|
-
source_control: "source_control";
|
|
30
29
|
agent_tools: "agent_tools";
|
|
30
|
+
source_control: "source_control";
|
|
31
31
|
}>>;
|
|
32
32
|
external_url: z.ZodOptional<z.ZodString>;
|
|
33
33
|
created_at: z.ZodString;
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const sentryIssueActionSchema: z.ZodEnum<{
|
|
3
|
+
archived: "archived";
|
|
4
|
+
assigned: "assigned";
|
|
3
5
|
created: "created";
|
|
4
6
|
resolved: "resolved";
|
|
5
|
-
assigned: "assigned";
|
|
6
|
-
archived: "archived";
|
|
7
7
|
unresolved: "unresolved";
|
|
8
8
|
}>;
|
|
9
9
|
export type SentryIssueAction = z.infer<typeof sentryIssueActionSchema>;
|
|
10
10
|
export declare const sentryIssueWebhookSchema: z.ZodObject<{
|
|
11
11
|
action: z.ZodEnum<{
|
|
12
|
+
archived: "archived";
|
|
13
|
+
assigned: "assigned";
|
|
12
14
|
created: "created";
|
|
13
15
|
resolved: "resolved";
|
|
14
|
-
assigned: "assigned";
|
|
15
|
-
archived: "archived";
|
|
16
16
|
unresolved: "unresolved";
|
|
17
17
|
}>;
|
|
18
18
|
installation: z.ZodObject<{
|