@shipfox/api-integration-github-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
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
$ shipfox-swc
|
|
2
|
-
Successfully compiled: 5 files with swc (
|
|
2
|
+
Successfully compiled: 5 files with swc (238.84ms)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @shipfox/api-integration-github-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,78 +1,78 @@
|
|
|
1
1
|
export declare const githubEventCatalog: {
|
|
2
|
-
readonly provider:
|
|
2
|
+
readonly provider: 'GitHub';
|
|
3
3
|
readonly passthrough: true;
|
|
4
4
|
readonly upstreamEventsDocUrl: "https://docs.github.com/en/webhooks/webhook-events-and-payloads";
|
|
5
5
|
readonly events: readonly [{
|
|
6
|
-
readonly name:
|
|
7
|
-
readonly summary:
|
|
8
|
-
readonly emittedWhen:
|
|
9
|
-
readonly payloadKind:
|
|
6
|
+
readonly name: 'push';
|
|
7
|
+
readonly summary: 'A Git reference receives one or more commits.';
|
|
8
|
+
readonly emittedWhen: 'GitHub sends a push webhook to the connected GitHub App.';
|
|
9
|
+
readonly payloadKind: 'raw-provider';
|
|
10
10
|
readonly payloadDocUrl: "https://docs.github.com/en/webhooks/webhook-events-and-payloads";
|
|
11
11
|
}, {
|
|
12
|
-
readonly name:
|
|
13
|
-
readonly summary:
|
|
14
|
-
readonly emittedWhen:
|
|
15
|
-
readonly payloadKind:
|
|
12
|
+
readonly name: 'pull_request.opened';
|
|
13
|
+
readonly summary: 'A pull request opens.';
|
|
14
|
+
readonly emittedWhen: 'GitHub sends a pull_request webhook with the opened action.';
|
|
15
|
+
readonly payloadKind: 'raw-provider';
|
|
16
16
|
readonly payloadDocUrl: "https://docs.github.com/en/webhooks/webhook-events-and-payloads";
|
|
17
17
|
}, {
|
|
18
|
-
readonly name:
|
|
19
|
-
readonly summary:
|
|
20
|
-
readonly emittedWhen:
|
|
21
|
-
readonly payloadKind:
|
|
18
|
+
readonly name: 'pull_request.closed';
|
|
19
|
+
readonly summary: 'A pull request closes or merges.';
|
|
20
|
+
readonly emittedWhen: 'GitHub sends a pull_request webhook with the closed action.';
|
|
21
|
+
readonly payloadKind: 'raw-provider';
|
|
22
22
|
readonly payloadDocUrl: "https://docs.github.com/en/webhooks/webhook-events-and-payloads";
|
|
23
23
|
}, {
|
|
24
|
-
readonly name:
|
|
25
|
-
readonly summary:
|
|
26
|
-
readonly emittedWhen:
|
|
27
|
-
readonly payloadKind:
|
|
24
|
+
readonly name: 'pull_request.synchronize';
|
|
25
|
+
readonly summary: 'A pull request head branch receives commits.';
|
|
26
|
+
readonly emittedWhen: 'GitHub sends a pull_request webhook with the synchronize action.';
|
|
27
|
+
readonly payloadKind: 'raw-provider';
|
|
28
28
|
readonly payloadDocUrl: "https://docs.github.com/en/webhooks/webhook-events-and-payloads";
|
|
29
29
|
}, {
|
|
30
|
-
readonly name:
|
|
31
|
-
readonly summary:
|
|
32
|
-
readonly emittedWhen:
|
|
33
|
-
readonly payloadKind:
|
|
30
|
+
readonly name: 'pull_request.reopened';
|
|
31
|
+
readonly summary: 'A closed pull request reopens.';
|
|
32
|
+
readonly emittedWhen: 'GitHub sends a pull_request webhook with the reopened action.';
|
|
33
|
+
readonly payloadKind: 'raw-provider';
|
|
34
34
|
readonly payloadDocUrl: "https://docs.github.com/en/webhooks/webhook-events-and-payloads";
|
|
35
35
|
}, {
|
|
36
|
-
readonly name:
|
|
37
|
-
readonly summary:
|
|
38
|
-
readonly emittedWhen:
|
|
39
|
-
readonly payloadKind:
|
|
36
|
+
readonly name: 'issues.opened';
|
|
37
|
+
readonly summary: 'An issue opens.';
|
|
38
|
+
readonly emittedWhen: 'GitHub sends an issues webhook with the opened action.';
|
|
39
|
+
readonly payloadKind: 'raw-provider';
|
|
40
40
|
readonly payloadDocUrl: "https://docs.github.com/en/webhooks/webhook-events-and-payloads";
|
|
41
41
|
}, {
|
|
42
|
-
readonly name:
|
|
43
|
-
readonly summary:
|
|
44
|
-
readonly emittedWhen:
|
|
45
|
-
readonly payloadKind:
|
|
42
|
+
readonly name: 'issues.closed';
|
|
43
|
+
readonly summary: 'An issue closes.';
|
|
44
|
+
readonly emittedWhen: 'GitHub sends an issues webhook with the closed action.';
|
|
45
|
+
readonly payloadKind: 'raw-provider';
|
|
46
46
|
readonly payloadDocUrl: "https://docs.github.com/en/webhooks/webhook-events-and-payloads";
|
|
47
47
|
}, {
|
|
48
|
-
readonly name:
|
|
49
|
-
readonly summary:
|
|
50
|
-
readonly emittedWhen:
|
|
51
|
-
readonly payloadKind:
|
|
48
|
+
readonly name: 'issues.reopened';
|
|
49
|
+
readonly summary: 'A closed issue reopens.';
|
|
50
|
+
readonly emittedWhen: 'GitHub sends an issues webhook with the reopened action.';
|
|
51
|
+
readonly payloadKind: 'raw-provider';
|
|
52
52
|
readonly payloadDocUrl: "https://docs.github.com/en/webhooks/webhook-events-and-payloads";
|
|
53
53
|
}, {
|
|
54
|
-
readonly name:
|
|
55
|
-
readonly summary:
|
|
56
|
-
readonly emittedWhen:
|
|
57
|
-
readonly payloadKind:
|
|
54
|
+
readonly name: 'issues.edited';
|
|
55
|
+
readonly summary: 'An issue title or body changes.';
|
|
56
|
+
readonly emittedWhen: 'GitHub sends an issues webhook with the edited action.';
|
|
57
|
+
readonly payloadKind: 'raw-provider';
|
|
58
58
|
readonly payloadDocUrl: "https://docs.github.com/en/webhooks/webhook-events-and-payloads";
|
|
59
59
|
}, {
|
|
60
|
-
readonly name:
|
|
61
|
-
readonly summary:
|
|
62
|
-
readonly emittedWhen:
|
|
63
|
-
readonly payloadKind:
|
|
60
|
+
readonly name: 'issues.labeled';
|
|
61
|
+
readonly summary: 'A label is added to an issue.';
|
|
62
|
+
readonly emittedWhen: 'GitHub sends an issues webhook with the labeled action.';
|
|
63
|
+
readonly payloadKind: 'raw-provider';
|
|
64
64
|
readonly payloadDocUrl: "https://docs.github.com/en/webhooks/webhook-events-and-payloads";
|
|
65
65
|
}, {
|
|
66
|
-
readonly name:
|
|
67
|
-
readonly summary:
|
|
68
|
-
readonly emittedWhen:
|
|
69
|
-
readonly payloadKind:
|
|
66
|
+
readonly name: 'issues.unlabeled';
|
|
67
|
+
readonly summary: 'A label is removed from an issue.';
|
|
68
|
+
readonly emittedWhen: 'GitHub sends an issues webhook with the unlabeled action.';
|
|
69
|
+
readonly payloadKind: 'raw-provider';
|
|
70
70
|
readonly payloadDocUrl: "https://docs.github.com/en/webhooks/webhook-events-and-payloads";
|
|
71
71
|
}, {
|
|
72
|
-
readonly name:
|
|
73
|
-
readonly summary:
|
|
74
|
-
readonly emittedWhen:
|
|
75
|
-
readonly payloadKind:
|
|
72
|
+
readonly name: 'release.published';
|
|
73
|
+
readonly summary: 'A release is published.';
|
|
74
|
+
readonly emittedWhen: 'GitHub sends a release webhook with the published action.';
|
|
75
|
+
readonly payloadKind: 'raw-provider';
|
|
76
76
|
readonly payloadDocUrl: "https://docs.github.com/en/webhooks/webhook-events-and-payloads";
|
|
77
77
|
}];
|
|
78
78
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"event-catalog.d.ts","sourceRoot":"","sources":["../src/event-catalog.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,kBAAkB
|
|
1
|
+
{"version":3,"file":"event-catalog.d.ts","sourceRoot":"","sources":["../src/event-catalog.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,kBAAkB;uBACnB,QAAQ;;;;uBAKR,MAAM;0BACH,+CAA+C;8BAC3C,0DAA0D;8BAC1D,cAAc;;;uBAIrB,qBAAqB;0BAClB,uBAAuB;8BACnB,6DAA6D;8BAC7D,cAAc;;;uBAIrB,qBAAqB;0BAClB,kCAAkC;8BAC9B,6DAA6D;8BAC7D,cAAc;;;uBAIrB,0BAA0B;0BACvB,8CAA8C;8BAC1C,kEAAkE;8BAClE,cAAc;;;uBAIrB,uBAAuB;0BACpB,gCAAgC;8BAC5B,+DAA+D;8BAC/D,cAAc;;;uBAIrB,eAAe;0BACZ,iBAAiB;8BACb,wDAAwD;8BACxD,cAAc;;;uBAIrB,eAAe;0BACZ,kBAAkB;8BACd,wDAAwD;8BACxD,cAAc;;;uBAIrB,iBAAiB;0BACd,yBAAyB;8BACrB,0DAA0D;8BAC1D,cAAc;;;uBAIrB,eAAe;0BACZ,iCAAiC;8BAC7B,wDAAwD;8BACxD,cAAc;;;uBAIrB,gBAAgB;0BACb,+BAA+B;8BAC3B,yDAAyD;8BACzD,cAAc;;;uBAIrB,kBAAkB;0BACf,mCAAmC;8BAC/B,2DAA2D;8BAC3D,cAAc;;;uBAIrB,mBAAmB;0BAChB,yBAAyB;8BACrB,2DAA2D;8BAC3D,cAAc;;;CAIW,CAAC"}
|
package/dist/schemas/github.d.ts
CHANGED
|
@@ -22,13 +22,13 @@ export declare const githubCallbackResponseSchema: z.ZodObject<{
|
|
|
22
22
|
slug: z.ZodString;
|
|
23
23
|
display_name: z.ZodString;
|
|
24
24
|
lifecycle_status: z.ZodEnum<{
|
|
25
|
-
error: "error";
|
|
26
25
|
active: "active";
|
|
27
26
|
disabled: "disabled";
|
|
27
|
+
error: "error";
|
|
28
28
|
}>;
|
|
29
29
|
capabilities: z.ZodArray<z.ZodEnum<{
|
|
30
|
-
source_control: "source_control";
|
|
31
30
|
agent_tools: "agent_tools";
|
|
31
|
+
source_control: "source_control";
|
|
32
32
|
}>>;
|
|
33
33
|
external_url: z.ZodOptional<z.ZodString>;
|
|
34
34
|
created_at: z.ZodString;
|
|
@@ -51,13 +51,13 @@ export declare const createE2eGithubConnectionResponseSchema: z.ZodObject<{
|
|
|
51
51
|
slug: z.ZodString;
|
|
52
52
|
display_name: z.ZodString;
|
|
53
53
|
lifecycle_status: z.ZodEnum<{
|
|
54
|
-
error: "error";
|
|
55
54
|
active: "active";
|
|
56
55
|
disabled: "disabled";
|
|
56
|
+
error: "error";
|
|
57
57
|
}>;
|
|
58
58
|
capabilities: z.ZodArray<z.ZodEnum<{
|
|
59
|
-
source_control: "source_control";
|
|
60
59
|
agent_tools: "agent_tools";
|
|
60
|
+
source_control: "source_control";
|
|
61
61
|
}>>;
|
|
62
62
|
external_url: z.ZodOptional<z.ZodString>;
|
|
63
63
|
created_at: z.ZodString;
|