@contractspec/example.personalization 3.4.3 → 3.5.2

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,11 +2,11 @@ $ 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=8
6
- Bundled 8 modules in 19ms
5
+ [contractspec-bun-build] transpile target=bun root=src entries=8 noBundle=false
6
+ Bundled 8 modules in 7ms
7
7
 
8
8
  ./behavior-tracking.js 1.33 KB (entry point)
9
- ./index.js 7.61 KB (entry point)
9
+ ./index.js 7.60 KB (entry point)
10
10
  docs/index.js 1.48 KB (entry point)
11
11
  docs/personalization.docblock.js 1.48 KB (entry point)
12
12
  ./example.js 0.99 KB (entry point)
@@ -14,27 +14,27 @@ Bundled 8 modules in 19ms
14
14
  ./personalization.feature.js 0.71 KB (entry point)
15
15
  ./workflow-extension.js 1.59 KB (entry point)
16
16
 
17
- [contractspec-bun-build] transpile target=node root=src entries=8
18
- Bundled 8 modules in 27ms
17
+ [contractspec-bun-build] transpile target=node root=src entries=8 noBundle=false
18
+ Bundled 8 modules in 10ms
19
19
 
20
20
  ./behavior-tracking.js 1.32 KB (entry point)
21
- ./index.js 7.60 KB (entry point)
21
+ ./index.js 7.59 KB (entry point)
22
22
  docs/index.js 1.47 KB (entry point)
23
23
  docs/personalization.docblock.js 1.47 KB (entry point)
24
24
  ./example.js 0.99 KB (entry point)
25
- ./overlay-customization.js 1.53 KB (entry point)
25
+ ./overlay-customization.js 1.52 KB (entry point)
26
26
  ./personalization.feature.js 0.70 KB (entry point)
27
27
  ./workflow-extension.js 1.58 KB (entry point)
28
28
 
29
- [contractspec-bun-build] transpile target=browser root=src entries=8
30
- Bundled 8 modules in 15ms
29
+ [contractspec-bun-build] transpile target=browser root=src entries=8 noBundle=false
30
+ Bundled 8 modules in 7ms
31
31
 
32
32
  ./behavior-tracking.js 1.32 KB (entry point)
33
- ./index.js 7.60 KB (entry point)
33
+ ./index.js 7.59 KB (entry point)
34
34
  docs/index.js 1.47 KB (entry point)
35
35
  docs/personalization.docblock.js 1.47 KB (entry point)
36
36
  ./example.js 0.99 KB (entry point)
37
- ./overlay-customization.js 1.53 KB (entry point)
37
+ ./overlay-customization.js 1.52 KB (entry point)
38
38
  ./personalization.feature.js 0.70 KB (entry point)
39
39
  ./workflow-extension.js 1.58 KB (entry point)
40
40
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,45 @@
1
1
  # @contractspec/example.personalization
2
2
 
3
+ ## 3.5.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 18df977: fix: release workflow
8
+ - Updated dependencies [18df977]
9
+ - @contractspec/lib.workflow-composer@3.5.2
10
+ - @contractspec/lib.personalization@4.0.2
11
+ - @contractspec/lib.contracts-spec@3.5.2
12
+ - @contractspec/lib.overlay-engine@3.5.2
13
+ - @contractspec/lib.logger@3.5.2
14
+
15
+ ## 3.5.1
16
+
17
+ ### Patch Changes
18
+
19
+ - dfff0d4: fix: use client within lib surface-runtime
20
+ - Updated dependencies [dfff0d4]
21
+ - @contractspec/lib.workflow-composer@3.5.1
22
+ - @contractspec/lib.personalization@4.0.1
23
+ - @contractspec/lib.contracts-spec@3.5.1
24
+ - @contractspec/lib.overlay-engine@3.5.1
25
+ - @contractspec/lib.logger@3.5.1
26
+
27
+ ## 3.5.0
28
+
29
+ ### Minor Changes
30
+
31
+ - 230bdf6: feat: ai-chat wireing
32
+
33
+ ### Patch Changes
34
+
35
+ - Updated dependencies [66c51da]
36
+ - Updated dependencies [230bdf6]
37
+ - @contractspec/lib.personalization@4.0.0
38
+ - @contractspec/lib.workflow-composer@3.5.0
39
+ - @contractspec/lib.contracts-spec@3.5.0
40
+ - @contractspec/lib.overlay-engine@3.5.0
41
+ - @contractspec/lib.logger@3.5.0
42
+
3
43
  ## 3.4.3
4
44
 
5
45
  ### Patch Changes
@@ -5,9 +5,9 @@ import { InMemoryBehaviorStore } from "@contractspec/lib.personalization/store";
5
5
  import { BehaviorAnalyzer } from "@contractspec/lib.personalization/analyzer";
6
6
  import { Logger, LogLevel } from "@contractspec/lib.logger";
7
7
  var logger = new Logger({
8
- level: LogLevel.DEBUG,
9
- environment: "development",
10
- enableColors: true
8
+ level: LogLevel.INFO,
9
+ environment: "production",
10
+ enableColors: false
11
11
  });
12
12
  async function runBehaviorTrackingExample() {
13
13
  const store = new InMemoryBehaviorStore;
@@ -4,9 +4,9 @@ import { InMemoryBehaviorStore } from "@contractspec/lib.personalization/store";
4
4
  import { BehaviorAnalyzer } from "@contractspec/lib.personalization/analyzer";
5
5
  import { Logger, LogLevel } from "@contractspec/lib.logger";
6
6
  var logger = new Logger({
7
- level: LogLevel.DEBUG,
8
- environment: "development",
9
- enableColors: true
7
+ level: LogLevel.INFO,
8
+ environment: "production",
9
+ enableColors: false
10
10
  });
11
11
  async function runBehaviorTrackingExample() {
12
12
  const store = new InMemoryBehaviorStore;
@@ -4,9 +4,9 @@ import { InMemoryBehaviorStore } from "@contractspec/lib.personalization/store";
4
4
  import { BehaviorAnalyzer } from "@contractspec/lib.personalization/analyzer";
5
5
  import { Logger, LogLevel } from "@contractspec/lib.logger";
6
6
  var logger = new Logger({
7
- level: LogLevel.DEBUG,
8
- environment: "development",
9
- enableColors: true
7
+ level: LogLevel.INFO,
8
+ environment: "production",
9
+ enableColors: false
10
10
  });
11
11
  async function runBehaviorTrackingExample() {
12
12
  const store = new InMemoryBehaviorStore;
@@ -120,9 +120,9 @@ import {
120
120
  } from "@contractspec/lib.overlay-engine";
121
121
  import { Logger as Logger2, LogLevel as LogLevel2 } from "@contractspec/lib.logger";
122
122
  var logger2 = new Logger2({
123
- level: LogLevel2.DEBUG,
124
- environment: "development",
125
- enableColors: true
123
+ level: LogLevel2.INFO,
124
+ environment: "production",
125
+ enableColors: false
126
126
  });
127
127
  async function runOverlayCustomizationExample() {
128
128
  const registry = new OverlayRegistry({ allowUnsigned: true });
@@ -167,9 +167,9 @@ import { StabilityEnum } from "@contractspec/lib.contracts-spec";
167
167
  import { WorkflowComposer } from "@contractspec/lib.workflow-composer";
168
168
  import { Logger as Logger3, LogLevel as LogLevel3 } from "@contractspec/lib.logger";
169
169
  var logger3 = new Logger3({
170
- level: LogLevel3.DEBUG,
171
- environment: "development",
172
- enableColors: true
170
+ level: LogLevel3.INFO,
171
+ environment: "production",
172
+ enableColors: false
173
173
  });
174
174
  var BaseWorkflow = {
175
175
  meta: {
@@ -7,9 +7,9 @@ import {
7
7
  } from "@contractspec/lib.overlay-engine";
8
8
  import { Logger, LogLevel } from "@contractspec/lib.logger";
9
9
  var logger = new Logger({
10
- level: LogLevel.DEBUG,
11
- environment: "development",
12
- enableColors: true
10
+ level: LogLevel.INFO,
11
+ environment: "production",
12
+ enableColors: false
13
13
  });
14
14
  async function runOverlayCustomizationExample() {
15
15
  const registry = new OverlayRegistry({ allowUnsigned: true });
@@ -3,9 +3,9 @@ import { StabilityEnum } from "@contractspec/lib.contracts-spec";
3
3
  import { WorkflowComposer } from "@contractspec/lib.workflow-composer";
4
4
  import { Logger, LogLevel } from "@contractspec/lib.logger";
5
5
  var logger = new Logger({
6
- level: LogLevel.DEBUG,
7
- environment: "development",
8
- enableColors: true
6
+ level: LogLevel.INFO,
7
+ environment: "production",
8
+ enableColors: false
9
9
  });
10
10
  var BaseWorkflow = {
11
11
  meta: {
package/dist/index.js CHANGED
@@ -5,9 +5,9 @@ import { InMemoryBehaviorStore } from "@contractspec/lib.personalization/store";
5
5
  import { BehaviorAnalyzer } from "@contractspec/lib.personalization/analyzer";
6
6
  import { Logger, LogLevel } from "@contractspec/lib.logger";
7
7
  var logger = new Logger({
8
- level: LogLevel.DEBUG,
9
- environment: "development",
10
- enableColors: true
8
+ level: LogLevel.INFO,
9
+ environment: "production",
10
+ enableColors: false
11
11
  });
12
12
  async function runBehaviorTrackingExample() {
13
13
  const store = new InMemoryBehaviorStore;
@@ -121,9 +121,9 @@ import {
121
121
  } from "@contractspec/lib.overlay-engine";
122
122
  import { Logger as Logger2, LogLevel as LogLevel2 } from "@contractspec/lib.logger";
123
123
  var logger2 = new Logger2({
124
- level: LogLevel2.DEBUG,
125
- environment: "development",
126
- enableColors: true
124
+ level: LogLevel2.INFO,
125
+ environment: "production",
126
+ enableColors: false
127
127
  });
128
128
  async function runOverlayCustomizationExample() {
129
129
  const registry = new OverlayRegistry({ allowUnsigned: true });
@@ -168,9 +168,9 @@ import { StabilityEnum } from "@contractspec/lib.contracts-spec";
168
168
  import { WorkflowComposer } from "@contractspec/lib.workflow-composer";
169
169
  import { Logger as Logger3, LogLevel as LogLevel3 } from "@contractspec/lib.logger";
170
170
  var logger3 = new Logger3({
171
- level: LogLevel3.DEBUG,
172
- environment: "development",
173
- enableColors: true
171
+ level: LogLevel3.INFO,
172
+ environment: "production",
173
+ enableColors: false
174
174
  });
175
175
  var BaseWorkflow = {
176
176
  meta: {
@@ -4,9 +4,9 @@ import { InMemoryBehaviorStore } from "@contractspec/lib.personalization/store";
4
4
  import { BehaviorAnalyzer } from "@contractspec/lib.personalization/analyzer";
5
5
  import { Logger, LogLevel } from "@contractspec/lib.logger";
6
6
  var logger = new Logger({
7
- level: LogLevel.DEBUG,
8
- environment: "development",
9
- enableColors: true
7
+ level: LogLevel.INFO,
8
+ environment: "production",
9
+ enableColors: false
10
10
  });
11
11
  async function runBehaviorTrackingExample() {
12
12
  const store = new InMemoryBehaviorStore;
@@ -4,9 +4,9 @@ import { InMemoryBehaviorStore } from "@contractspec/lib.personalization/store";
4
4
  import { BehaviorAnalyzer } from "@contractspec/lib.personalization/analyzer";
5
5
  import { Logger, LogLevel } from "@contractspec/lib.logger";
6
6
  var logger = new Logger({
7
- level: LogLevel.DEBUG,
8
- environment: "development",
9
- enableColors: true
7
+ level: LogLevel.INFO,
8
+ environment: "production",
9
+ enableColors: false
10
10
  });
11
11
  async function runBehaviorTrackingExample() {
12
12
  const store = new InMemoryBehaviorStore;
@@ -120,9 +120,9 @@ import {
120
120
  } from "@contractspec/lib.overlay-engine";
121
121
  import { Logger as Logger2, LogLevel as LogLevel2 } from "@contractspec/lib.logger";
122
122
  var logger2 = new Logger2({
123
- level: LogLevel2.DEBUG,
124
- environment: "development",
125
- enableColors: true
123
+ level: LogLevel2.INFO,
124
+ environment: "production",
125
+ enableColors: false
126
126
  });
127
127
  async function runOverlayCustomizationExample() {
128
128
  const registry = new OverlayRegistry({ allowUnsigned: true });
@@ -167,9 +167,9 @@ import { StabilityEnum } from "@contractspec/lib.contracts-spec";
167
167
  import { WorkflowComposer } from "@contractspec/lib.workflow-composer";
168
168
  import { Logger as Logger3, LogLevel as LogLevel3 } from "@contractspec/lib.logger";
169
169
  var logger3 = new Logger3({
170
- level: LogLevel3.DEBUG,
171
- environment: "development",
172
- enableColors: true
170
+ level: LogLevel3.INFO,
171
+ environment: "production",
172
+ enableColors: false
173
173
  });
174
174
  var BaseWorkflow = {
175
175
  meta: {
@@ -7,9 +7,9 @@ import {
7
7
  } from "@contractspec/lib.overlay-engine";
8
8
  import { Logger, LogLevel } from "@contractspec/lib.logger";
9
9
  var logger = new Logger({
10
- level: LogLevel.DEBUG,
11
- environment: "development",
12
- enableColors: true
10
+ level: LogLevel.INFO,
11
+ environment: "production",
12
+ enableColors: false
13
13
  });
14
14
  async function runOverlayCustomizationExample() {
15
15
  const registry = new OverlayRegistry({ allowUnsigned: true });
@@ -3,9 +3,9 @@ import { StabilityEnum } from "@contractspec/lib.contracts-spec";
3
3
  import { WorkflowComposer } from "@contractspec/lib.workflow-composer";
4
4
  import { Logger, LogLevel } from "@contractspec/lib.logger";
5
5
  var logger = new Logger({
6
- level: LogLevel.DEBUG,
7
- environment: "development",
8
- enableColors: true
6
+ level: LogLevel.INFO,
7
+ environment: "production",
8
+ enableColors: false
9
9
  });
10
10
  var BaseWorkflow = {
11
11
  meta: {
@@ -8,9 +8,9 @@ import {
8
8
  } from "@contractspec/lib.overlay-engine";
9
9
  import { Logger, LogLevel } from "@contractspec/lib.logger";
10
10
  var logger = new Logger({
11
- level: LogLevel.DEBUG,
12
- environment: "development",
13
- enableColors: true
11
+ level: LogLevel.INFO,
12
+ environment: "production",
13
+ enableColors: false
14
14
  });
15
15
  async function runOverlayCustomizationExample() {
16
16
  const registry = new OverlayRegistry({ allowUnsigned: true });
@@ -4,9 +4,9 @@ import { StabilityEnum } from "@contractspec/lib.contracts-spec";
4
4
  import { WorkflowComposer } from "@contractspec/lib.workflow-composer";
5
5
  import { Logger, LogLevel } from "@contractspec/lib.logger";
6
6
  var logger = new Logger({
7
- level: LogLevel.DEBUG,
8
- environment: "development",
9
- enableColors: true
7
+ level: LogLevel.INFO,
8
+ environment: "production",
9
+ enableColors: false
10
10
  });
11
11
  var BaseWorkflow = {
12
12
  meta: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/example.personalization",
3
- "version": "3.4.3",
3
+ "version": "3.5.2",
4
4
  "description": "Personalization examples: behavior tracking, overlay customization, workflow extension.",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
@@ -85,16 +85,16 @@
85
85
  "typecheck": "tsc --noEmit"
86
86
  },
87
87
  "dependencies": {
88
- "@contractspec/lib.personalization": "3.4.3",
89
- "@contractspec/lib.overlay-engine": "3.4.3",
90
- "@contractspec/lib.workflow-composer": "3.4.3",
91
- "@contractspec/lib.contracts-spec": "3.4.3",
92
- "@contractspec/lib.logger": "3.4.3"
88
+ "@contractspec/lib.personalization": "4.0.2",
89
+ "@contractspec/lib.overlay-engine": "3.5.2",
90
+ "@contractspec/lib.workflow-composer": "3.5.2",
91
+ "@contractspec/lib.contracts-spec": "3.5.2",
92
+ "@contractspec/lib.logger": "3.5.2"
93
93
  },
94
94
  "devDependencies": {
95
- "@contractspec/tool.typescript": "3.4.3",
95
+ "@contractspec/tool.typescript": "3.5.2",
96
96
  "typescript": "^5.9.3",
97
- "@contractspec/tool.bun": "3.4.3"
97
+ "@contractspec/tool.bun": "3.5.2"
98
98
  },
99
99
  "publishConfig": {
100
100
  "access": "public",