@contractspec/example.project-management-sync 3.2.0 → 3.4.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.
@@ -1,35 +1,39 @@
1
- $ contractspec-bun-build prebuild
2
- $ bun run prebuild && bun run build:bundle && bun run build:types
3
- $ contractspec-bun-build prebuild
4
- $ contractspec-bun-build transpile
5
- [contractspec-bun-build] transpile target=bun root=src entries=6
6
- Bundled 6 modules in 11ms
7
-
8
- docs/index.js 1.60 KB (entry point)
9
- ./index.js 6.85 KB (entry point)
10
- docs/project-management-sync.docblock.js 1.60 KB (entry point)
11
- ./example.js 1.0 KB (entry point)
12
- ./run.js 4.26 KB (entry point)
13
- ./sync.js 4.24 KB (entry point)
14
-
15
- [contractspec-bun-build] transpile target=node root=src entries=6
16
- Bundled 6 modules in 9ms
17
-
18
- docs/index.js 1.59 KB (entry point)
19
- ./index.js 6.85 KB (entry point)
20
- docs/project-management-sync.docblock.js 1.59 KB (entry point)
21
- ./example.js 1.0 KB (entry point)
22
- ./run.js 4.25 KB (entry point)
23
- ./sync.js 4.23 KB (entry point)
24
-
25
- [contractspec-bun-build] transpile target=browser root=src entries=6
26
- Bundled 6 modules in 20ms
27
-
28
- docs/index.js 1.59 KB (entry point)
29
- ./index.js 6.85 KB (entry point)
30
- docs/project-management-sync.docblock.js 1.59 KB (entry point)
31
- ./example.js 1.0 KB (entry point)
32
- ./run.js 4.25 KB (entry point)
33
- ./sync.js 4.23 KB (entry point)
34
-
35
- $ contractspec-bun-build types
1
+
2
+ $ contractspec-bun-build prebuild
3
+ $ bun run prebuild && bun run build:bundle && bun run build:types
4
+ $ contractspec-bun-build prebuild
5
+ $ contractspec-bun-build transpile
6
+ [contractspec-bun-build] transpile target=bun root=src entries=7
7
+ Bundled 7 modules in 13ms
8
+
9
+ docs/index.js 1.60 KB (entry point)
10
+ ./index.js 7.77 KB (entry point)
11
+ docs/project-management-sync.docblock.js 1.60 KB (entry point)
12
+ ./example.js 1.0 KB (entry point)
13
+ ./project-management-sync.feature.js 0.93 KB (entry point)
14
+ ./run.js 4.26 KB (entry point)
15
+ ./sync.js 4.24 KB (entry point)
16
+
17
+ [contractspec-bun-build] transpile target=node root=src entries=7
18
+ Bundled 7 modules in 17ms
19
+
20
+ docs/index.js 1.59 KB (entry point)
21
+ ./index.js 7.76 KB (entry point)
22
+ docs/project-management-sync.docblock.js 1.59 KB (entry point)
23
+ ./example.js 1.0 KB (entry point)
24
+ ./project-management-sync.feature.js 0.92 KB (entry point)
25
+ ./run.js 4.25 KB (entry point)
26
+ ./sync.js 4.23 KB (entry point)
27
+
28
+ [contractspec-bun-build] transpile target=browser root=src entries=7
29
+ Bundled 7 modules in 15ms
30
+
31
+ docs/index.js 1.59 KB (entry point)
32
+ ./index.js 7.76 KB (entry point)
33
+ docs/project-management-sync.docblock.js 1.59 KB (entry point)
34
+ ./example.js 1.0 KB (entry point)
35
+ ./project-management-sync.feature.js 0.92 KB (entry point)
36
+ ./run.js 4.25 KB (entry point)
37
+ ./sync.js 4.23 KB (entry point)
38
+
39
+ $ contractspec-bun-build types
@@ -1 +1,2 @@
1
- $ contractspec-bun-build prebuild
1
+
2
+ $ contractspec-bun-build prebuild
package/CHANGELOG.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # @contractspec/example.project-management-sync
2
2
 
3
+ ## 3.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 0ee467a: feat: improve ai and customization
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [0ee467a]
12
+ - Updated dependencies [56ee8e6]
13
+ - @contractspec/integration.providers-impls@3.4.0
14
+ - @contractspec/lib.contracts-spec@3.4.0
15
+
16
+ ## 3.3.0
17
+
18
+ ### Minor Changes
19
+
20
+ - 890a0da: fix: stability improvements
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies [890a0da]
25
+ - @contractspec/integration.providers-impls@3.3.0
26
+ - @contractspec/lib.contracts-spec@3.3.0
27
+
3
28
  ## 3.2.0
4
29
 
5
30
  ### Minor Changes
@@ -183,6 +183,30 @@ function splitList(value) {
183
183
  const items = value.split(",").map((item) => item.trim()).filter(Boolean);
184
184
  return items.length > 0 ? items : undefined;
185
185
  }
186
+
187
+ // src/project-management-sync.feature.ts
188
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
189
+ var ProjectManagementSyncFeature = defineFeature({
190
+ meta: {
191
+ key: "project-management-sync",
192
+ version: "1.0.0",
193
+ title: "Project Management Sync",
194
+ description: "Create work items in Linear, Jira, and Notion from contract definitions",
195
+ domain: "integration",
196
+ owners: ["@examples"],
197
+ tags: ["project-management", "sync", "linear", "jira", "notion"],
198
+ stability: "experimental"
199
+ },
200
+ integrations: [
201
+ { key: "project-management-sync.integration.linear", version: "1.0.0" },
202
+ { key: "project-management-sync.integration.jira", version: "1.0.0" },
203
+ { key: "project-management-sync.integration.notion", version: "1.0.0" }
204
+ ],
205
+ docs: [
206
+ "docs.examples.project-management-sync",
207
+ "docs.examples.project-management-sync.usage"
208
+ ]
209
+ });
186
210
  export {
187
211
  syncProjectManagementWorkItems,
188
212
  runProjectManagementSyncFromEnv,
@@ -190,5 +214,6 @@ export {
190
214
  example_default as example,
191
215
  createProviderFromEnv,
192
216
  buildSampleWorkItems,
193
- buildSampleSummary
217
+ buildSampleSummary,
218
+ ProjectManagementSyncFeature
194
219
  };
@@ -0,0 +1,26 @@
1
+ // src/project-management-sync.feature.ts
2
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
3
+ var ProjectManagementSyncFeature = defineFeature({
4
+ meta: {
5
+ key: "project-management-sync",
6
+ version: "1.0.0",
7
+ title: "Project Management Sync",
8
+ description: "Create work items in Linear, Jira, and Notion from contract definitions",
9
+ domain: "integration",
10
+ owners: ["@examples"],
11
+ tags: ["project-management", "sync", "linear", "jira", "notion"],
12
+ stability: "experimental"
13
+ },
14
+ integrations: [
15
+ { key: "project-management-sync.integration.linear", version: "1.0.0" },
16
+ { key: "project-management-sync.integration.jira", version: "1.0.0" },
17
+ { key: "project-management-sync.integration.notion", version: "1.0.0" }
18
+ ],
19
+ docs: [
20
+ "docs.examples.project-management-sync",
21
+ "docs.examples.project-management-sync.usage"
22
+ ]
23
+ });
24
+ export {
25
+ ProjectManagementSyncFeature
26
+ };
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from './sync';
2
+ export * from './project-management-sync.feature';
2
3
  export { default as example } from './example';
3
4
  import './docs';
package/dist/index.js CHANGED
@@ -184,6 +184,30 @@ function splitList(value) {
184
184
  const items = value.split(",").map((item) => item.trim()).filter(Boolean);
185
185
  return items.length > 0 ? items : undefined;
186
186
  }
187
+
188
+ // src/project-management-sync.feature.ts
189
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
190
+ var ProjectManagementSyncFeature = defineFeature({
191
+ meta: {
192
+ key: "project-management-sync",
193
+ version: "1.0.0",
194
+ title: "Project Management Sync",
195
+ description: "Create work items in Linear, Jira, and Notion from contract definitions",
196
+ domain: "integration",
197
+ owners: ["@examples"],
198
+ tags: ["project-management", "sync", "linear", "jira", "notion"],
199
+ stability: "experimental"
200
+ },
201
+ integrations: [
202
+ { key: "project-management-sync.integration.linear", version: "1.0.0" },
203
+ { key: "project-management-sync.integration.jira", version: "1.0.0" },
204
+ { key: "project-management-sync.integration.notion", version: "1.0.0" }
205
+ ],
206
+ docs: [
207
+ "docs.examples.project-management-sync",
208
+ "docs.examples.project-management-sync.usage"
209
+ ]
210
+ });
187
211
  export {
188
212
  syncProjectManagementWorkItems,
189
213
  runProjectManagementSyncFromEnv,
@@ -191,5 +215,6 @@ export {
191
215
  example_default as example,
192
216
  createProviderFromEnv,
193
217
  buildSampleWorkItems,
194
- buildSampleSummary
218
+ buildSampleSummary,
219
+ ProjectManagementSyncFeature
195
220
  };
@@ -183,6 +183,30 @@ function splitList(value) {
183
183
  const items = value.split(",").map((item) => item.trim()).filter(Boolean);
184
184
  return items.length > 0 ? items : undefined;
185
185
  }
186
+
187
+ // src/project-management-sync.feature.ts
188
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
189
+ var ProjectManagementSyncFeature = defineFeature({
190
+ meta: {
191
+ key: "project-management-sync",
192
+ version: "1.0.0",
193
+ title: "Project Management Sync",
194
+ description: "Create work items in Linear, Jira, and Notion from contract definitions",
195
+ domain: "integration",
196
+ owners: ["@examples"],
197
+ tags: ["project-management", "sync", "linear", "jira", "notion"],
198
+ stability: "experimental"
199
+ },
200
+ integrations: [
201
+ { key: "project-management-sync.integration.linear", version: "1.0.0" },
202
+ { key: "project-management-sync.integration.jira", version: "1.0.0" },
203
+ { key: "project-management-sync.integration.notion", version: "1.0.0" }
204
+ ],
205
+ docs: [
206
+ "docs.examples.project-management-sync",
207
+ "docs.examples.project-management-sync.usage"
208
+ ]
209
+ });
186
210
  export {
187
211
  syncProjectManagementWorkItems,
188
212
  runProjectManagementSyncFromEnv,
@@ -190,5 +214,6 @@ export {
190
214
  example_default as example,
191
215
  createProviderFromEnv,
192
216
  buildSampleWorkItems,
193
- buildSampleSummary
217
+ buildSampleSummary,
218
+ ProjectManagementSyncFeature
194
219
  };
@@ -0,0 +1,26 @@
1
+ // src/project-management-sync.feature.ts
2
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
3
+ var ProjectManagementSyncFeature = defineFeature({
4
+ meta: {
5
+ key: "project-management-sync",
6
+ version: "1.0.0",
7
+ title: "Project Management Sync",
8
+ description: "Create work items in Linear, Jira, and Notion from contract definitions",
9
+ domain: "integration",
10
+ owners: ["@examples"],
11
+ tags: ["project-management", "sync", "linear", "jira", "notion"],
12
+ stability: "experimental"
13
+ },
14
+ integrations: [
15
+ { key: "project-management-sync.integration.linear", version: "1.0.0" },
16
+ { key: "project-management-sync.integration.jira", version: "1.0.0" },
17
+ { key: "project-management-sync.integration.notion", version: "1.0.0" }
18
+ ],
19
+ docs: [
20
+ "docs.examples.project-management-sync",
21
+ "docs.examples.project-management-sync.usage"
22
+ ]
23
+ });
24
+ export {
25
+ ProjectManagementSyncFeature
26
+ };
@@ -0,0 +1 @@
1
+ export declare const ProjectManagementSyncFeature: import("@contractspec/lib.contracts-spec").FeatureModuleSpec;
@@ -0,0 +1,27 @@
1
+ // @bun
2
+ // src/project-management-sync.feature.ts
3
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
4
+ var ProjectManagementSyncFeature = defineFeature({
5
+ meta: {
6
+ key: "project-management-sync",
7
+ version: "1.0.0",
8
+ title: "Project Management Sync",
9
+ description: "Create work items in Linear, Jira, and Notion from contract definitions",
10
+ domain: "integration",
11
+ owners: ["@examples"],
12
+ tags: ["project-management", "sync", "linear", "jira", "notion"],
13
+ stability: "experimental"
14
+ },
15
+ integrations: [
16
+ { key: "project-management-sync.integration.linear", version: "1.0.0" },
17
+ { key: "project-management-sync.integration.jira", version: "1.0.0" },
18
+ { key: "project-management-sync.integration.notion", version: "1.0.0" }
19
+ ],
20
+ docs: [
21
+ "docs.examples.project-management-sync",
22
+ "docs.examples.project-management-sync.usage"
23
+ ]
24
+ });
25
+ export {
26
+ ProjectManagementSyncFeature
27
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/example.project-management-sync",
3
- "version": "3.2.0",
3
+ "version": "3.4.0",
4
4
  "description": "Project management sync example: Linear, Jira, and Notion work item creation.",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
@@ -40,6 +40,13 @@
40
40
  "browser": "./dist/browser/example.js",
41
41
  "default": "./dist/example.js"
42
42
  },
43
+ "./project-management-sync.feature": {
44
+ "types": "./dist/project-management-sync.feature.d.ts",
45
+ "bun": "./dist/project-management-sync.feature.js",
46
+ "node": "./dist/node/project-management-sync.feature.js",
47
+ "browser": "./dist/browser/project-management-sync.feature.js",
48
+ "default": "./dist/project-management-sync.feature.js"
49
+ },
43
50
  "./run": {
44
51
  "types": "./dist/run.d.ts",
45
52
  "bun": "./dist/run.js",
@@ -71,13 +78,13 @@
71
78
  "typecheck": "tsc --noEmit"
72
79
  },
73
80
  "dependencies": {
74
- "@contractspec/integration.providers-impls": "3.2.0",
75
- "@contractspec/lib.contracts-spec": "3.2.0"
81
+ "@contractspec/integration.providers-impls": "3.4.0",
82
+ "@contractspec/lib.contracts-spec": "3.4.0"
76
83
  },
77
84
  "devDependencies": {
78
- "@contractspec/tool.typescript": "3.2.0",
85
+ "@contractspec/tool.typescript": "3.4.0",
79
86
  "typescript": "^5.9.3",
80
- "@contractspec/tool.bun": "3.2.0"
87
+ "@contractspec/tool.bun": "3.4.0"
81
88
  },
82
89
  "publishConfig": {
83
90
  "access": "public",
@@ -117,6 +124,13 @@
117
124
  "browser": "./dist/browser/example.js",
118
125
  "default": "./dist/example.js"
119
126
  },
127
+ "./project-management-sync.feature": {
128
+ "types": "./dist/project-management-sync.feature.d.ts",
129
+ "bun": "./dist/project-management-sync.feature.js",
130
+ "node": "./dist/node/project-management-sync.feature.js",
131
+ "browser": "./dist/browser/project-management-sync.feature.js",
132
+ "default": "./dist/project-management-sync.feature.js"
133
+ },
120
134
  "./run": {
121
135
  "types": "./dist/run.d.ts",
122
136
  "bun": "./dist/run.js",
package/src/index.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from './sync';
2
+ export * from './project-management-sync.feature';
2
3
  export { default as example } from './example';
3
4
  import './docs';
@@ -0,0 +1,26 @@
1
+ import { defineFeature } from '@contractspec/lib.contracts-spec';
2
+
3
+ export const ProjectManagementSyncFeature = defineFeature({
4
+ meta: {
5
+ key: 'project-management-sync',
6
+ version: '1.0.0',
7
+ title: 'Project Management Sync',
8
+ description:
9
+ 'Create work items in Linear, Jira, and Notion from contract definitions',
10
+ domain: 'integration',
11
+ owners: ['@examples'],
12
+ tags: ['project-management', 'sync', 'linear', 'jira', 'notion'],
13
+ stability: 'experimental',
14
+ },
15
+
16
+ integrations: [
17
+ { key: 'project-management-sync.integration.linear', version: '1.0.0' },
18
+ { key: 'project-management-sync.integration.jira', version: '1.0.0' },
19
+ { key: 'project-management-sync.integration.notion', version: '1.0.0' },
20
+ ],
21
+
22
+ docs: [
23
+ 'docs.examples.project-management-sync',
24
+ 'docs.examples.project-management-sync.usage',
25
+ ],
26
+ });