@intentius/chant-lexicon-temporal 0.1.15 → 0.1.17

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,7 +1,7 @@
1
1
  {
2
2
  "algorithm": "sha256",
3
3
  "artifacts": {
4
- "manifest.json": "01f153ed27fa75f3ffeec4202cb7d3dcdef74712c8b196f9385e7b896c6da604",
4
+ "manifest.json": "99f627b7d6ab5d4c288d9bc088d5af5c9591f80a763e0cfb31ff971c0a196ef4",
5
5
  "meta.json": "c77a3c415993bed3865e07fa6db4fb7b9e87de0afa8d8675f64eadf50f914077",
6
6
  "types/index.d.ts": "5216f5256321f084a7c8211ef66ab599f621c74751cc3485cfc2a62502b81e2f",
7
7
  "rules/tmp001.ts": "689222211a93716a7e4432f6dd6a2a2ab54020b232049fb602893872585f9978",
@@ -11,5 +11,5 @@
11
11
  "skills/chant-temporal.md": "ff929983b33bb420c49ab61851f3799c5610256cb972d6c584792bb98b0cfb22",
12
12
  "skills/chant-temporal-ops.md": "7e83bc3e6e63af4ab14b8dc07aa00132d51991cf35b1bca29560d48934bff6dc"
13
13
  },
14
- "composite": "08737cdf11946008dd7428f19bf68924eaebf67072c3885695a00759ba743f62"
14
+ "composite": "fdc8f085a98fc3512614f377b6bdce42d497b9f1ffad943a3dfb375440f77683"
15
15
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "temporal",
3
- "version": "0.1.15",
3
+ "version": "0.1.17",
4
4
  "chantVersion": ">=0.1.0",
5
5
  "namespace": "Temporal",
6
6
  "intrinsics": [],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intentius/chant-lexicon-temporal",
3
- "version": "0.1.15",
3
+ "version": "0.1.17",
4
4
  "description": "Temporal lexicon for chant — server deployment, namespaces, search attributes, and schedules",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://intentius.io/chant",
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Integration test for the temporal-self-hosted example project.
2
+ * Integration test for the temporal-stack example project.
3
3
  *
4
4
  * Builds the example from source using the temporal serializer and
5
5
  * verifies all expected output files are produced.
@@ -13,9 +13,9 @@ import { lintCommand } from "@intentius/chant/cli/commands/lint";
13
13
  import { temporalSerializer } from "./serializer";
14
14
 
15
15
  const examplesRoot = resolve(fileURLToPath(import.meta.url), "../../../../examples");
16
- const srcDir = resolve(examplesRoot, "temporal-self-hosted", "src");
16
+ const srcDir = resolve(examplesRoot, "temporal-stack", "src");
17
17
 
18
- describe("temporal-self-hosted example", () => {
18
+ describe("temporal-stack example", () => {
19
19
  test("passes lint", async () => {
20
20
  const result = await lintCommand({ path: srcDir, format: "stylish", fix: true });
21
21
  if (!result.success || result.errorCount > 0) console.log(result.output);