@knapsack/adapter-core 4.92.2--canary.7497.7ab86e4.0 → 4.92.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.
- package/dist/entity-filename.d.ts +1 -1
- package/dist/entity-filename.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +1 -1
- package/package.json +5 -5
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Source tagging — the single identity for a source on disk.
|
|
3
3
|
*
|
|
4
4
|
* A sourceTag is `{sourceEvt}-{hash}` — used as both the folder name
|
|
5
|
-
* and the filename tag for
|
|
5
|
+
* and the filename tag for DSS entities. Readable (you know the source type)
|
|
6
6
|
* and unique (hash of sourceKey).
|
|
7
7
|
*
|
|
8
8
|
* @example
|
package/dist/entity-filename.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Source tagging — the single identity for a source on disk.
|
|
3
3
|
*
|
|
4
4
|
* A sourceTag is `{sourceEvt}-{hash}` — used as both the folder name
|
|
5
|
-
* and the filename tag for
|
|
5
|
+
* and the filename tag for DSS entities. Readable (you know the source type)
|
|
6
6
|
* and unique (hash of sourceKey).
|
|
7
7
|
*
|
|
8
8
|
* @example
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @knapsack/ingest-core
|
|
3
3
|
*
|
|
4
|
-
* Core types, interfaces, and utilities for
|
|
4
|
+
* Core types, interfaces, and utilities for DSS ingestion.
|
|
5
5
|
* All ingestion pipelines depend on this package for shared infrastructure.
|
|
6
6
|
*/
|
|
7
7
|
export type { SourceType, EntityKind, IngestSourceType, ContextEntity, Manifest, ManifestItem, ValidationResult, PipelineStage, StageStatus, StageInfo, MdxConfig, StorybookConfig, KnapsackConfig, FigmaConfig, ParserConfig, ChannelConfig, AdapterMessage, } from './types.js';
|
package/dist/index.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @knapsack/ingest-core
|
|
3
3
|
*
|
|
4
|
-
* Core types, interfaces, and utilities for
|
|
4
|
+
* Core types, interfaces, and utilities for DSS ingestion.
|
|
5
5
|
* All ingestion pipelines depend on this package for shared infrastructure.
|
|
6
6
|
*/
|
|
7
7
|
export { SOURCE_TYPE_TO_EVT } from './types.js';
|
|
8
8
|
export { buildLogContext } from './log.js';
|
|
9
9
|
// Filesystem utilities
|
|
10
10
|
export { writeFile } from './fs.js';
|
|
11
|
-
// Entity filename utilities (
|
|
11
|
+
// Entity filename utilities (DSS entities/ stage naming)
|
|
12
12
|
export { sourceTag, tagFilenameForEntity } from './entity-filename.js';
|
|
13
13
|
// Entity content hashing
|
|
14
14
|
export { contentHash } from './entity-hash.js';
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AA6BH,OAAO,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;AAgBhD,OAAO,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAE3C,uBAAuB;AACvB,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAEpC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AA6BH,OAAO,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;AAgBhD,OAAO,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAE3C,uBAAuB;AACvB,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAEpC,yDAAyD;AACzD,OAAO,EAAE,SAAS,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAC;AAEvE,yBAAyB;AACzB,OAAO,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAQ/C,OAAO,EAAE,sBAAsB,EAAE,MAAM,yBAAyB,CAAC"}
|
package/dist/types.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knapsack/adapter-core",
|
|
3
3
|
"description": "Core types, interfaces, and logging for ContextSrcAdapters",
|
|
4
|
-
"version": "4.92.2
|
|
4
|
+
"version": "4.92.2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -22,12 +22,12 @@
|
|
|
22
22
|
},
|
|
23
23
|
"author": "Knapsack (https://www.knapsack.cloud)",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@knapsack/logger": "4.92.2
|
|
25
|
+
"@knapsack/logger": "4.92.2",
|
|
26
26
|
"yaml": "^2.7.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@knapsack/eslint-config-starter": "4.92.2
|
|
30
|
-
"@knapsack/typescript-config-starter": "4.92.2
|
|
29
|
+
"@knapsack/eslint-config-starter": "4.92.2",
|
|
30
|
+
"@knapsack/typescript-config-starter": "4.92.2",
|
|
31
31
|
"@types/node": "^22.19.11",
|
|
32
32
|
"eslint": "^9.20.0",
|
|
33
33
|
"typescript": "^5.9.3"
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"directory": "libs/ingest-pipeline/adapters/core",
|
|
42
42
|
"type": "git"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "d83cef05e8c23b5fdafe2b7e89e1b01ee7b39edf"
|
|
45
45
|
}
|