@contractspec/example.video-marketing-clip 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 57ms
7
-
8
- ./briefs.js 2.65 KB (entry point)
9
- ./index.js 7.76 KB (entry point)
10
- docs/index.js 3.12 KB (entry point)
11
- docs/video-marketing-clip.docblock.js 3.12 KB (entry point)
12
- ./example.js 1.00 KB (entry point)
13
- ./generate-clip.js 1.0 KB (entry point)
14
-
15
- [contractspec-bun-build] transpile target=node root=src entries=6
16
- Bundled 6 modules in 38ms
17
-
18
- ./briefs.js 2.64 KB (entry point)
19
- ./index.js 7.76 KB (entry point)
20
- docs/index.js 3.11 KB (entry point)
21
- docs/video-marketing-clip.docblock.js 3.11 KB (entry point)
22
- ./example.js 0.99 KB (entry point)
23
- ./generate-clip.js 1.0 KB (entry point)
24
-
25
- [contractspec-bun-build] transpile target=browser root=src entries=6
26
- Bundled 6 modules in 43ms
27
-
28
- ./briefs.js 2.64 KB (entry point)
29
- ./index.js 7.76 KB (entry point)
30
- docs/index.js 3.11 KB (entry point)
31
- docs/video-marketing-clip.docblock.js 3.11 KB (entry point)
32
- ./example.js 0.99 KB (entry point)
33
- ./generate-clip.js 1.0 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 12ms
8
+
9
+ ./briefs.js 2.65 KB (entry point)
10
+ ./index.js 8.37 KB (entry point)
11
+ docs/index.js 3.12 KB (entry point)
12
+ docs/video-marketing-clip.docblock.js 3.12 KB (entry point)
13
+ ./example.js 1.00 KB (entry point)
14
+ ./generate-clip.js 1.0 KB (entry point)
15
+ ./video-marketing-clip.feature.js 0.62 KB (entry point)
16
+
17
+ [contractspec-bun-build] transpile target=node root=src entries=7
18
+ Bundled 7 modules in 9ms
19
+
20
+ ./briefs.js 2.64 KB (entry point)
21
+ ./index.js 8.36 KB (entry point)
22
+ docs/index.js 3.11 KB (entry point)
23
+ docs/video-marketing-clip.docblock.js 3.11 KB (entry point)
24
+ ./example.js 0.99 KB (entry point)
25
+ ./generate-clip.js 1.0 KB (entry point)
26
+ ./video-marketing-clip.feature.js 0.62 KB (entry point)
27
+
28
+ [contractspec-bun-build] transpile target=browser root=src entries=7
29
+ Bundled 7 modules in 7ms
30
+
31
+ ./briefs.js 2.64 KB (entry point)
32
+ ./index.js 8.36 KB (entry point)
33
+ docs/index.js 3.11 KB (entry point)
34
+ docs/video-marketing-clip.docblock.js 3.11 KB (entry point)
35
+ ./example.js 0.99 KB (entry point)
36
+ ./generate-clip.js 1.0 KB (entry point)
37
+ ./video-marketing-clip.feature.js 0.62 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,32 @@
1
1
  # @contractspec/example.video-marketing-clip
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/lib.contracts-spec@3.4.0
14
+ - @contractspec/lib.content-gen@3.4.0
15
+ - @contractspec/lib.video-gen@2.4.0
16
+
17
+ ## 3.3.0
18
+
19
+ ### Minor Changes
20
+
21
+ - 890a0da: fix: stability improvements
22
+
23
+ ### Patch Changes
24
+
25
+ - Updated dependencies [890a0da]
26
+ - @contractspec/lib.contracts-spec@3.3.0
27
+ - @contractspec/lib.content-gen@3.3.0
28
+ - @contractspec/lib.video-gen@2.3.0
29
+
3
30
  ## 3.2.0
4
31
 
5
32
  ### Minor 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.2.0",
3
+ "version": "3.4.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.2.0",
75
- "@contractspec/lib.video-gen": "2.2.0",
76
- "@contractspec/lib.content-gen": "3.2.0"
81
+ "@contractspec/lib.contracts-spec": "3.4.0",
82
+ "@contractspec/lib.video-gen": "2.4.0",
83
+ "@contractspec/lib.content-gen": "3.4.0"
77
84
  },
78
85
  "devDependencies": {
79
- "@contractspec/tool.typescript": "3.2.0",
80
- "@contractspec/tool.bun": "3.2.0",
86
+ "@contractspec/tool.typescript": "3.4.0",
87
+ "@contractspec/tool.bun": "3.4.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
+ });