@contractspec/example.video-marketing-clip 3.1.1 → 3.3.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.
@@ -2,34 +2,37 @@ $ contractspec-bun-build prebuild
2
2
  $ bun run prebuild && bun run build:bundle && bun run build:types
3
3
  $ contractspec-bun-build prebuild
4
4
  $ contractspec-bun-build transpile
5
- [contractspec-bun-build] transpile target=bun root=src entries=6
6
- Bundled 6 modules in 35ms
5
+ [contractspec-bun-build] transpile target=bun root=src entries=7
6
+ Bundled 7 modules in 24ms
7
7
 
8
8
  ./briefs.js 2.65 KB (entry point)
9
- ./index.js 7.76 KB (entry point)
9
+ ./index.js 8.37 KB (entry point)
10
10
  docs/index.js 3.12 KB (entry point)
11
11
  docs/video-marketing-clip.docblock.js 3.12 KB (entry point)
12
12
  ./example.js 1.00 KB (entry point)
13
13
  ./generate-clip.js 1.0 KB (entry point)
14
+ ./video-marketing-clip.feature.js 0.62 KB (entry point)
14
15
 
15
- [contractspec-bun-build] transpile target=node root=src entries=6
16
- Bundled 6 modules in 32ms
16
+ [contractspec-bun-build] transpile target=node root=src entries=7
17
+ Bundled 7 modules in 23ms
17
18
 
18
19
  ./briefs.js 2.64 KB (entry point)
19
- ./index.js 7.76 KB (entry point)
20
+ ./index.js 8.36 KB (entry point)
20
21
  docs/index.js 3.11 KB (entry point)
21
22
  docs/video-marketing-clip.docblock.js 3.11 KB (entry point)
22
23
  ./example.js 0.99 KB (entry point)
23
24
  ./generate-clip.js 1.0 KB (entry point)
25
+ ./video-marketing-clip.feature.js 0.62 KB (entry point)
24
26
 
25
- [contractspec-bun-build] transpile target=browser root=src entries=6
26
- Bundled 6 modules in 15ms
27
+ [contractspec-bun-build] transpile target=browser root=src entries=7
28
+ Bundled 7 modules in 21ms
27
29
 
28
30
  ./briefs.js 2.64 KB (entry point)
29
- ./index.js 7.76 KB (entry point)
31
+ ./index.js 8.36 KB (entry point)
30
32
  docs/index.js 3.11 KB (entry point)
31
33
  docs/video-marketing-clip.docblock.js 3.11 KB (entry point)
32
34
  ./example.js 0.99 KB (entry point)
33
35
  ./generate-clip.js 1.0 KB (entry point)
36
+ ./video-marketing-clip.feature.js 0.62 KB (entry point)
34
37
 
35
38
  $ contractspec-bun-build types
package/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # @contractspec/example.video-marketing-clip
2
2
 
3
+ ## 3.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 890a0da: fix: stability improvements
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [890a0da]
12
+ - @contractspec/lib.contracts-spec@3.3.0
13
+ - @contractspec/lib.content-gen@3.3.0
14
+ - @contractspec/lib.video-gen@2.3.0
15
+
16
+ ## 3.2.0
17
+
18
+ ### Minor Changes
19
+
20
+ - a281fc5: fix: missing dependencies
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies [a281fc5]
25
+ - @contractspec/lib.contracts-spec@3.2.0
26
+ - @contractspec/lib.content-gen@3.2.0
27
+ - @contractspec/lib.video-gen@2.2.0
28
+
3
29
  ## 3.1.1
4
30
 
5
31
  ### Patch Changes
@@ -191,11 +191,31 @@ async function generateAllFormats(brief, targetDurationSeconds) {
191
191
  ]);
192
192
  return { landscape, square, portrait };
193
193
  }
194
+
195
+ // src/video-marketing-clip.feature.ts
196
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
197
+ var VideoMarketingClipFeature = defineFeature({
198
+ meta: {
199
+ key: "video-marketing-clip",
200
+ version: "1.0.0",
201
+ title: "Video Marketing Clips",
202
+ description: "Generate short-form marketing videos from content briefs",
203
+ domain: "video",
204
+ owners: ["@examples"],
205
+ tags: ["video", "marketing", "clips", "content"],
206
+ stability: "experimental"
207
+ },
208
+ docs: [
209
+ "docs.examples.video-marketing-clip",
210
+ "docs.examples.video-marketing-clip.usage"
211
+ ]
212
+ });
194
213
  export {
195
214
  productLaunchBrief,
196
215
  generateMarketingClip,
197
216
  generateAllFormats,
198
217
  featureAnnouncementBrief,
199
218
  example_default as example,
200
- caseStudyBrief
219
+ caseStudyBrief,
220
+ VideoMarketingClipFeature
201
221
  };
@@ -0,0 +1,21 @@
1
+ // src/video-marketing-clip.feature.ts
2
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
3
+ var VideoMarketingClipFeature = defineFeature({
4
+ meta: {
5
+ key: "video-marketing-clip",
6
+ version: "1.0.0",
7
+ title: "Video Marketing Clips",
8
+ description: "Generate short-form marketing videos from content briefs",
9
+ domain: "video",
10
+ owners: ["@examples"],
11
+ tags: ["video", "marketing", "clips", "content"],
12
+ stability: "experimental"
13
+ },
14
+ docs: [
15
+ "docs.examples.video-marketing-clip",
16
+ "docs.examples.video-marketing-clip.usage"
17
+ ]
18
+ });
19
+ export {
20
+ VideoMarketingClipFeature
21
+ };
package/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export * from './briefs';
2
2
  export * from './generate-clip';
3
+ export * from './video-marketing-clip.feature';
3
4
  export { default as example } from './example';
4
5
  import './docs';
package/dist/index.js CHANGED
@@ -192,11 +192,31 @@ async function generateAllFormats(brief, targetDurationSeconds) {
192
192
  ]);
193
193
  return { landscape, square, portrait };
194
194
  }
195
+
196
+ // src/video-marketing-clip.feature.ts
197
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
198
+ var VideoMarketingClipFeature = defineFeature({
199
+ meta: {
200
+ key: "video-marketing-clip",
201
+ version: "1.0.0",
202
+ title: "Video Marketing Clips",
203
+ description: "Generate short-form marketing videos from content briefs",
204
+ domain: "video",
205
+ owners: ["@examples"],
206
+ tags: ["video", "marketing", "clips", "content"],
207
+ stability: "experimental"
208
+ },
209
+ docs: [
210
+ "docs.examples.video-marketing-clip",
211
+ "docs.examples.video-marketing-clip.usage"
212
+ ]
213
+ });
195
214
  export {
196
215
  productLaunchBrief,
197
216
  generateMarketingClip,
198
217
  generateAllFormats,
199
218
  featureAnnouncementBrief,
200
219
  example_default as example,
201
- caseStudyBrief
220
+ caseStudyBrief,
221
+ VideoMarketingClipFeature
202
222
  };
@@ -191,11 +191,31 @@ async function generateAllFormats(brief, targetDurationSeconds) {
191
191
  ]);
192
192
  return { landscape, square, portrait };
193
193
  }
194
+
195
+ // src/video-marketing-clip.feature.ts
196
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
197
+ var VideoMarketingClipFeature = defineFeature({
198
+ meta: {
199
+ key: "video-marketing-clip",
200
+ version: "1.0.0",
201
+ title: "Video Marketing Clips",
202
+ description: "Generate short-form marketing videos from content briefs",
203
+ domain: "video",
204
+ owners: ["@examples"],
205
+ tags: ["video", "marketing", "clips", "content"],
206
+ stability: "experimental"
207
+ },
208
+ docs: [
209
+ "docs.examples.video-marketing-clip",
210
+ "docs.examples.video-marketing-clip.usage"
211
+ ]
212
+ });
194
213
  export {
195
214
  productLaunchBrief,
196
215
  generateMarketingClip,
197
216
  generateAllFormats,
198
217
  featureAnnouncementBrief,
199
218
  example_default as example,
200
- caseStudyBrief
219
+ caseStudyBrief,
220
+ VideoMarketingClipFeature
201
221
  };
@@ -0,0 +1,21 @@
1
+ // src/video-marketing-clip.feature.ts
2
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
3
+ var VideoMarketingClipFeature = defineFeature({
4
+ meta: {
5
+ key: "video-marketing-clip",
6
+ version: "1.0.0",
7
+ title: "Video Marketing Clips",
8
+ description: "Generate short-form marketing videos from content briefs",
9
+ domain: "video",
10
+ owners: ["@examples"],
11
+ tags: ["video", "marketing", "clips", "content"],
12
+ stability: "experimental"
13
+ },
14
+ docs: [
15
+ "docs.examples.video-marketing-clip",
16
+ "docs.examples.video-marketing-clip.usage"
17
+ ]
18
+ });
19
+ export {
20
+ VideoMarketingClipFeature
21
+ };
@@ -0,0 +1 @@
1
+ export declare const VideoMarketingClipFeature: import("@contractspec/lib.contracts-spec").FeatureModuleSpec;
@@ -0,0 +1,22 @@
1
+ // @bun
2
+ // src/video-marketing-clip.feature.ts
3
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
4
+ var VideoMarketingClipFeature = defineFeature({
5
+ meta: {
6
+ key: "video-marketing-clip",
7
+ version: "1.0.0",
8
+ title: "Video Marketing Clips",
9
+ description: "Generate short-form marketing videos from content briefs",
10
+ domain: "video",
11
+ owners: ["@examples"],
12
+ tags: ["video", "marketing", "clips", "content"],
13
+ stability: "experimental"
14
+ },
15
+ docs: [
16
+ "docs.examples.video-marketing-clip",
17
+ "docs.examples.video-marketing-clip.usage"
18
+ ]
19
+ });
20
+ export {
21
+ VideoMarketingClipFeature
22
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/example.video-marketing-clip",
3
- "version": "3.1.1",
3
+ "version": "3.3.0",
4
4
  "description": "Generate short-form marketing videos from content briefs using the video-gen pipeline.",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
@@ -53,6 +53,13 @@
53
53
  "node": "./dist/node/generate-clip.js",
54
54
  "browser": "./dist/browser/generate-clip.js",
55
55
  "default": "./dist/generate-clip.js"
56
+ },
57
+ "./video-marketing-clip.feature": {
58
+ "types": "./dist/video-marketing-clip.feature.d.ts",
59
+ "bun": "./dist/video-marketing-clip.feature.js",
60
+ "node": "./dist/node/video-marketing-clip.feature.js",
61
+ "browser": "./dist/browser/video-marketing-clip.feature.js",
62
+ "default": "./dist/video-marketing-clip.feature.js"
56
63
  }
57
64
  },
58
65
  "scripts": {
@@ -71,13 +78,13 @@
71
78
  "typecheck": "tsc --noEmit"
72
79
  },
73
80
  "dependencies": {
74
- "@contractspec/lib.contracts-spec": "3.1.1",
75
- "@contractspec/lib.video-gen": "2.1.1",
76
- "@contractspec/lib.content-gen": "3.1.1"
81
+ "@contractspec/lib.contracts-spec": "3.3.0",
82
+ "@contractspec/lib.video-gen": "2.3.0",
83
+ "@contractspec/lib.content-gen": "3.3.0"
77
84
  },
78
85
  "devDependencies": {
79
- "@contractspec/tool.typescript": "3.1.0",
80
- "@contractspec/tool.bun": "3.1.0",
86
+ "@contractspec/tool.typescript": "3.3.0",
87
+ "@contractspec/tool.bun": "3.3.0",
81
88
  "typescript": "^5.9.3"
82
89
  },
83
90
  "publishConfig": {
@@ -131,6 +138,13 @@
131
138
  "node": "./dist/node/generate-clip.js",
132
139
  "browser": "./dist/browser/generate-clip.js",
133
140
  "default": "./dist/generate-clip.js"
141
+ },
142
+ "./video-marketing-clip.feature": {
143
+ "types": "./dist/video-marketing-clip.feature.d.ts",
144
+ "bun": "./dist/video-marketing-clip.feature.js",
145
+ "node": "./dist/node/video-marketing-clip.feature.js",
146
+ "browser": "./dist/browser/video-marketing-clip.feature.js",
147
+ "default": "./dist/video-marketing-clip.feature.js"
134
148
  }
135
149
  },
136
150
  "registry": "https://registry.npmjs.org/"
package/src/index.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  export * from './briefs';
2
2
  export * from './generate-clip';
3
+ export * from './video-marketing-clip.feature';
3
4
 
4
5
  export { default as example } from './example';
5
6
 
@@ -0,0 +1,19 @@
1
+ import { defineFeature } from '@contractspec/lib.contracts-spec';
2
+
3
+ export const VideoMarketingClipFeature = defineFeature({
4
+ meta: {
5
+ key: 'video-marketing-clip',
6
+ version: '1.0.0',
7
+ title: 'Video Marketing Clips',
8
+ description: 'Generate short-form marketing videos from content briefs',
9
+ domain: 'video',
10
+ owners: ['@examples'],
11
+ tags: ['video', 'marketing', 'clips', 'content'],
12
+ stability: 'experimental',
13
+ },
14
+
15
+ docs: [
16
+ 'docs.examples.video-marketing-clip',
17
+ 'docs.examples.video-marketing-clip.usage',
18
+ ],
19
+ });