@schnebel-crm/integration-sdk 0.1.0 → 0.1.7
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.
|
@@ -6,6 +6,8 @@ interface IntegrationProjectConfig {
|
|
|
6
6
|
outDir?: string;
|
|
7
7
|
/** GitHub repository URL (required for public App Store integrations) */
|
|
8
8
|
github?: string;
|
|
9
|
+
/** Additional packages to mark as external (not bundled into the output) */
|
|
10
|
+
external?: string[];
|
|
9
11
|
}
|
|
10
12
|
declare function defineConfig(config: IntegrationProjectConfig): IntegrationProjectConfig;
|
|
11
13
|
//#endregion
|
package/dist/config.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { n as defineConfig, t as IntegrationProjectConfig } from "./config-
|
|
1
|
+
import { n as defineConfig, t as IntegrationProjectConfig } from "./config-EqS46QMG.mjs";
|
|
2
2
|
export { IntegrationProjectConfig, defineConfig };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { n as defineConfig, t as IntegrationProjectConfig } from "./config-
|
|
1
|
+
import { n as defineConfig, t as IntegrationProjectConfig } from "./config-EqS46QMG.mjs";
|
|
2
2
|
|
|
3
3
|
//#region src/types.d.ts
|
|
4
4
|
declare const INTEGRATION_CATEGORIES: readonly ["email", "calendar", "communication", "analytics", "storage", "payment", "marketing", "automation", "other"];
|
package/package.json
CHANGED
|
@@ -1,8 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@schnebel-crm/integration-sdk",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"type": "module",
|
|
3
|
+
"version": "0.1.7",
|
|
5
4
|
"description": "SDK for building custom integrations for Schnebel CRM",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"crm",
|
|
7
|
+
"integration",
|
|
8
|
+
"plugin",
|
|
9
|
+
"schnebel",
|
|
10
|
+
"sdk"
|
|
11
|
+
],
|
|
12
|
+
"homepage": "https://schnebel-crm.de/docs/integrations",
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"files": [
|
|
15
|
+
"dist"
|
|
16
|
+
],
|
|
17
|
+
"type": "module",
|
|
6
18
|
"main": "./dist/index.mjs",
|
|
7
19
|
"types": "./dist/index.d.mts",
|
|
8
20
|
"exports": {
|
|
@@ -15,18 +27,11 @@
|
|
|
15
27
|
"import": "./dist/config.mjs"
|
|
16
28
|
}
|
|
17
29
|
},
|
|
18
|
-
"files": ["dist"],
|
|
19
30
|
"scripts": {
|
|
20
31
|
"build": "tsdown src/index.ts src/config.ts --format esm --dts --clean",
|
|
21
32
|
"check-types": "tsc --noEmit",
|
|
22
33
|
"prepublishOnly": "pnpm run build"
|
|
23
34
|
},
|
|
24
|
-
"keywords": ["schnebel", "crm", "integration", "sdk", "plugin"],
|
|
25
|
-
"license": "MIT",
|
|
26
|
-
"repository": {
|
|
27
|
-
"type": "git",
|
|
28
|
-
"url": "https://github.com/schnebel-it/schnebel-crm"
|
|
29
|
-
},
|
|
30
35
|
"devDependencies": {
|
|
31
36
|
"tsdown": "^0.16.5",
|
|
32
37
|
"typescript": "^5"
|