@shipfox/api-integration-webhook-dto 12.2.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 +13 -0
- package/dist/constants.d.ts +1 -1
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +2 -2
- package/dist/constants.js.map +1 -1
- package/dist/tsconfig.test.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/constants.ts +9 -1
- package/tsconfig.build.tsbuildinfo +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
$ shipfox-swc
|
|
2
|
-
Successfully compiled: 3 files with swc (
|
|
2
|
+
Successfully compiled: 3 files with swc (321.85ms)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @shipfox/api-integration-webhook-dto
|
|
2
2
|
|
|
3
|
+
## 14.0.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1b71a66: Exposes each provider's event catalog and the fixed-event providers on the integration validation context. Every provider now refuses the reserved `manual` and `cron` connection slugs.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [18e9bad]
|
|
12
|
+
- Updated dependencies [c44641f]
|
|
13
|
+
- Updated dependencies [1b71a66]
|
|
14
|
+
- @shipfox/api-integration-core-dto@14.0.0
|
|
15
|
+
|
|
3
16
|
## 12.2.0
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/constants.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const WEBHOOK_PROVIDER: 'webhook';
|
|
2
2
|
export declare const WEBHOOK_RECEIVED_EVENT: 'received';
|
|
3
|
-
export declare const WEBHOOK_RESERVED_SLUGS: readonly [
|
|
3
|
+
export declare const WEBHOOK_RESERVED_SLUGS: readonly ["github", "gitea", "sentry", "manual", "cron"];
|
|
4
4
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,gBAAgB,EAAG,SAAkB,CAAC;AACnD,eAAO,MAAM,sBAAsB,EAAG,UAAmB,CAAC;AAE1D,eAAO,MAAM,sBAAsB,0DAKzB,CAAC"}
|
package/dist/constants.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
+
import { RESERVED_CONNECTION_SLUGS } from '@shipfox/api-integration-core-dto';
|
|
1
2
|
export const WEBHOOK_PROVIDER = 'webhook';
|
|
2
3
|
export const WEBHOOK_RECEIVED_EVENT = 'received';
|
|
3
4
|
export const WEBHOOK_RESERVED_SLUGS = [
|
|
4
5
|
'github',
|
|
5
6
|
'gitea',
|
|
6
7
|
'sentry',
|
|
7
|
-
|
|
8
|
-
'cron'
|
|
8
|
+
...RESERVED_CONNECTION_SLUGS
|
|
9
9
|
];
|
|
10
10
|
|
|
11
11
|
//# sourceMappingURL=constants.js.map
|
package/dist/constants.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/constants.ts"],"sourcesContent":["
|
|
1
|
+
{"version":3,"sources":["../src/constants.ts"],"sourcesContent":["import {RESERVED_CONNECTION_SLUGS} from '@shipfox/api-integration-core-dto';\n\nexport const WEBHOOK_PROVIDER = 'webhook' as const;\nexport const WEBHOOK_RECEIVED_EVENT = 'received' as const;\n\nexport const WEBHOOK_RESERVED_SLUGS = [\n 'github',\n 'gitea',\n 'sentry',\n ...RESERVED_CONNECTION_SLUGS,\n] as const;\n"],"names":["RESERVED_CONNECTION_SLUGS","WEBHOOK_PROVIDER","WEBHOOK_RECEIVED_EVENT","WEBHOOK_RESERVED_SLUGS"],"mappings":"AAAA,SAAQA,yBAAyB,QAAO,oCAAoC;AAE5E,OAAO,MAAMC,mBAAmB,UAAmB;AACnD,OAAO,MAAMC,yBAAyB,WAAoB;AAE1D,OAAO,MAAMC,yBAAyB;IACpC;IACA;IACA;OACGH;CACJ,CAAU"}
|