@contractspec/example.video-api-showcase 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 23ms
7
-
8
- ./build-api-video.js 1.31 KB (entry point)
9
- ./index.js 7.41 KB (entry point)
10
- docs/index.js 2.94 KB (entry point)
11
- docs/video-api-showcase.docblock.js 2.94 KB (entry point)
12
- ./example.js 0.98 KB (entry point)
13
- ./sample-specs.js 2.22 KB (entry point)
14
-
15
- [contractspec-bun-build] transpile target=node root=src entries=6
16
- Bundled 6 modules in 18ms
17
-
18
- ./build-api-video.js 1.31 KB (entry point)
19
- ./index.js 7.40 KB (entry point)
20
- docs/index.js 2.93 KB (entry point)
21
- docs/video-api-showcase.docblock.js 2.93 KB (entry point)
22
- ./example.js 0.97 KB (entry point)
23
- ./sample-specs.js 2.21 KB (entry point)
24
-
25
- [contractspec-bun-build] transpile target=browser root=src entries=6
26
- Bundled 6 modules in 14ms
27
-
28
- ./build-api-video.js 1.31 KB (entry point)
29
- ./index.js 7.40 KB (entry point)
30
- docs/index.js 2.93 KB (entry point)
31
- docs/video-api-showcase.docblock.js 2.93 KB (entry point)
32
- ./example.js 0.97 KB (entry point)
33
- ./sample-specs.js 2.21 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 6ms
8
+
9
+ ./build-api-video.js 1.31 KB (entry point)
10
+ ./index.js 8.0 KB (entry point)
11
+ docs/index.js 2.94 KB (entry point)
12
+ docs/video-api-showcase.docblock.js 2.94 KB (entry point)
13
+ ./example.js 0.98 KB (entry point)
14
+ ./sample-specs.js 2.22 KB (entry point)
15
+ ./video-api-showcase.feature.js 0.62 KB (entry point)
16
+
17
+ [contractspec-bun-build] transpile target=node root=src entries=7
18
+ Bundled 7 modules in 8ms
19
+
20
+ ./build-api-video.js 1.31 KB (entry point)
21
+ ./index.js 8.00 KB (entry point)
22
+ docs/index.js 2.93 KB (entry point)
23
+ docs/video-api-showcase.docblock.js 2.93 KB (entry point)
24
+ ./example.js 0.97 KB (entry point)
25
+ ./sample-specs.js 2.21 KB (entry point)
26
+ ./video-api-showcase.feature.js 0.61 KB (entry point)
27
+
28
+ [contractspec-bun-build] transpile target=browser root=src entries=7
29
+ Bundled 7 modules in 8ms
30
+
31
+ ./build-api-video.js 1.31 KB (entry point)
32
+ ./index.js 8.00 KB (entry point)
33
+ docs/index.js 2.93 KB (entry point)
34
+ docs/video-api-showcase.docblock.js 2.93 KB (entry point)
35
+ ./example.js 0.97 KB (entry point)
36
+ ./sample-specs.js 2.21 KB (entry point)
37
+ ./video-api-showcase.feature.js 0.61 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,33 @@
1
1
  # @contractspec/example.video-api-showcase
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-integrations@3.4.0
14
+ - @contractspec/lib.contracts-spec@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
+ - Updated dependencies [575b316]
27
+ - @contractspec/lib.contracts-integrations@3.3.0
28
+ - @contractspec/lib.contracts-spec@3.3.0
29
+ - @contractspec/lib.video-gen@2.3.0
30
+
3
31
  ## 3.2.0
4
32
 
5
33
  ### Minor Changes
@@ -230,6 +230,25 @@ var sendNotificationSpec = {
230
230
  "Event Schema"
231
231
  ]
232
232
  };
233
+
234
+ // src/video-api-showcase.feature.ts
235
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
236
+ var VideoApiShowcaseFeature = defineFeature({
237
+ meta: {
238
+ key: "video-api-showcase",
239
+ version: "1.0.0",
240
+ title: "Video API Showcase",
241
+ description: "Generate API documentation videos from contract spec metadata",
242
+ domain: "video",
243
+ owners: ["@examples"],
244
+ tags: ["video", "api", "documentation", "showcase"],
245
+ stability: "experimental"
246
+ },
247
+ docs: [
248
+ "docs.examples.video-api-showcase",
249
+ "docs.examples.video-api-showcase.usage"
250
+ ]
251
+ });
233
252
  export {
234
253
  sendNotificationSpec,
235
254
  listTransactionsSpec,
@@ -237,5 +256,6 @@ export {
237
256
  createUserSpec,
238
257
  buildRenderConfig,
239
258
  buildApiVideoSuite,
240
- buildApiVideo
259
+ buildApiVideo,
260
+ VideoApiShowcaseFeature
241
261
  };
@@ -0,0 +1,21 @@
1
+ // src/video-api-showcase.feature.ts
2
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
3
+ var VideoApiShowcaseFeature = defineFeature({
4
+ meta: {
5
+ key: "video-api-showcase",
6
+ version: "1.0.0",
7
+ title: "Video API Showcase",
8
+ description: "Generate API documentation videos from contract spec metadata",
9
+ domain: "video",
10
+ owners: ["@examples"],
11
+ tags: ["video", "api", "documentation", "showcase"],
12
+ stability: "experimental"
13
+ },
14
+ docs: [
15
+ "docs.examples.video-api-showcase",
16
+ "docs.examples.video-api-showcase.usage"
17
+ ]
18
+ });
19
+ export {
20
+ VideoApiShowcaseFeature
21
+ };
package/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export * from './sample-specs';
2
2
  export * from './build-api-video';
3
+ export * from './video-api-showcase.feature';
3
4
  export { default as example } from './example';
4
5
  import './docs';
package/dist/index.js CHANGED
@@ -231,6 +231,25 @@ var sendNotificationSpec = {
231
231
  "Event Schema"
232
232
  ]
233
233
  };
234
+
235
+ // src/video-api-showcase.feature.ts
236
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
237
+ var VideoApiShowcaseFeature = defineFeature({
238
+ meta: {
239
+ key: "video-api-showcase",
240
+ version: "1.0.0",
241
+ title: "Video API Showcase",
242
+ description: "Generate API documentation videos from contract spec metadata",
243
+ domain: "video",
244
+ owners: ["@examples"],
245
+ tags: ["video", "api", "documentation", "showcase"],
246
+ stability: "experimental"
247
+ },
248
+ docs: [
249
+ "docs.examples.video-api-showcase",
250
+ "docs.examples.video-api-showcase.usage"
251
+ ]
252
+ });
234
253
  export {
235
254
  sendNotificationSpec,
236
255
  listTransactionsSpec,
@@ -238,5 +257,6 @@ export {
238
257
  createUserSpec,
239
258
  buildRenderConfig,
240
259
  buildApiVideoSuite,
241
- buildApiVideo
260
+ buildApiVideo,
261
+ VideoApiShowcaseFeature
242
262
  };
@@ -230,6 +230,25 @@ var sendNotificationSpec = {
230
230
  "Event Schema"
231
231
  ]
232
232
  };
233
+
234
+ // src/video-api-showcase.feature.ts
235
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
236
+ var VideoApiShowcaseFeature = defineFeature({
237
+ meta: {
238
+ key: "video-api-showcase",
239
+ version: "1.0.0",
240
+ title: "Video API Showcase",
241
+ description: "Generate API documentation videos from contract spec metadata",
242
+ domain: "video",
243
+ owners: ["@examples"],
244
+ tags: ["video", "api", "documentation", "showcase"],
245
+ stability: "experimental"
246
+ },
247
+ docs: [
248
+ "docs.examples.video-api-showcase",
249
+ "docs.examples.video-api-showcase.usage"
250
+ ]
251
+ });
233
252
  export {
234
253
  sendNotificationSpec,
235
254
  listTransactionsSpec,
@@ -237,5 +256,6 @@ export {
237
256
  createUserSpec,
238
257
  buildRenderConfig,
239
258
  buildApiVideoSuite,
240
- buildApiVideo
259
+ buildApiVideo,
260
+ VideoApiShowcaseFeature
241
261
  };
@@ -0,0 +1,21 @@
1
+ // src/video-api-showcase.feature.ts
2
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
3
+ var VideoApiShowcaseFeature = defineFeature({
4
+ meta: {
5
+ key: "video-api-showcase",
6
+ version: "1.0.0",
7
+ title: "Video API Showcase",
8
+ description: "Generate API documentation videos from contract spec metadata",
9
+ domain: "video",
10
+ owners: ["@examples"],
11
+ tags: ["video", "api", "documentation", "showcase"],
12
+ stability: "experimental"
13
+ },
14
+ docs: [
15
+ "docs.examples.video-api-showcase",
16
+ "docs.examples.video-api-showcase.usage"
17
+ ]
18
+ });
19
+ export {
20
+ VideoApiShowcaseFeature
21
+ };
@@ -0,0 +1 @@
1
+ export declare const VideoApiShowcaseFeature: import("@contractspec/lib.contracts-spec").FeatureModuleSpec;
@@ -0,0 +1,22 @@
1
+ // @bun
2
+ // src/video-api-showcase.feature.ts
3
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
4
+ var VideoApiShowcaseFeature = defineFeature({
5
+ meta: {
6
+ key: "video-api-showcase",
7
+ version: "1.0.0",
8
+ title: "Video API Showcase",
9
+ description: "Generate API documentation videos from contract spec metadata",
10
+ domain: "video",
11
+ owners: ["@examples"],
12
+ tags: ["video", "api", "documentation", "showcase"],
13
+ stability: "experimental"
14
+ },
15
+ docs: [
16
+ "docs.examples.video-api-showcase",
17
+ "docs.examples.video-api-showcase.usage"
18
+ ]
19
+ });
20
+ export {
21
+ VideoApiShowcaseFeature
22
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/example.video-api-showcase",
3
- "version": "3.2.0",
3
+ "version": "3.4.0",
4
4
  "description": "Generate API documentation videos from contract spec definitions using the ApiOverview composition.",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
@@ -53,6 +53,13 @@
53
53
  "node": "./dist/node/sample-specs.js",
54
54
  "browser": "./dist/browser/sample-specs.js",
55
55
  "default": "./dist/sample-specs.js"
56
+ },
57
+ "./video-api-showcase.feature": {
58
+ "types": "./dist/video-api-showcase.feature.d.ts",
59
+ "bun": "./dist/video-api-showcase.feature.js",
60
+ "node": "./dist/node/video-api-showcase.feature.js",
61
+ "browser": "./dist/browser/video-api-showcase.feature.js",
62
+ "default": "./dist/video-api-showcase.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.contracts-integrations": "3.2.0",
76
- "@contractspec/lib.video-gen": "2.2.0"
81
+ "@contractspec/lib.contracts-spec": "3.4.0",
82
+ "@contractspec/lib.contracts-integrations": "3.4.0",
83
+ "@contractspec/lib.video-gen": "2.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/sample-specs.js",
132
139
  "browser": "./dist/browser/sample-specs.js",
133
140
  "default": "./dist/sample-specs.js"
141
+ },
142
+ "./video-api-showcase.feature": {
143
+ "types": "./dist/video-api-showcase.feature.d.ts",
144
+ "bun": "./dist/video-api-showcase.feature.js",
145
+ "node": "./dist/node/video-api-showcase.feature.js",
146
+ "browser": "./dist/browser/video-api-showcase.feature.js",
147
+ "default": "./dist/video-api-showcase.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 './sample-specs';
2
2
  export * from './build-api-video';
3
+ export * from './video-api-showcase.feature';
3
4
 
4
5
  export { default as example } from './example';
5
6
 
@@ -0,0 +1,20 @@
1
+ import { defineFeature } from '@contractspec/lib.contracts-spec';
2
+
3
+ export const VideoApiShowcaseFeature = defineFeature({
4
+ meta: {
5
+ key: 'video-api-showcase',
6
+ version: '1.0.0',
7
+ title: 'Video API Showcase',
8
+ description:
9
+ 'Generate API documentation videos from contract spec metadata',
10
+ domain: 'video',
11
+ owners: ['@examples'],
12
+ tags: ['video', 'api', 'documentation', 'showcase'],
13
+ stability: 'experimental',
14
+ },
15
+
16
+ docs: [
17
+ 'docs.examples.video-api-showcase',
18
+ 'docs.examples.video-api-showcase.usage',
19
+ ],
20
+ });