@kilnci/shared 0.20.0 → 0.22.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.
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/pipeline/index.d.ts +1217 -0
- package/dist/pipeline/index.d.ts.map +1 -0
- package/dist/pipeline/index.js +390 -0
- package/dist/pipeline/index.js.map +1 -0
- package/dist/triggers/index.d.ts +11 -12
- package/dist/triggers/index.d.ts.map +1 -1
- package/dist/triggers/index.js +7 -22
- package/dist/triggers/index.js.map +1 -1
- package/dist/types/index.d.ts +10 -229
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +2 -3
- package/dist/types/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from './types/index.js';
|
|
2
2
|
export * from './triggers/index.js';
|
|
3
3
|
export * from './providers/index.js';
|
|
4
|
+
export { EnvValueSchema, CommandSchema, WhenConditionObjectSchema, WhenConditionSchema, OverrideConditionSchema, OverrideSchema, StageArtifactSchema, StageSchema, BranchFilterSchema, TagFilterSchema, PushTriggerSchema, PullRequestTriggerSchema, TagTriggerSchema, PipelineTriggerObjectSchema, PipelineOnSchema, PipelineSchema, PipelineConfigSchema, type WhenConditionObject, type WhenCondition, type OverrideCondition, type Override, type StageArtifact, type Stage, type PushTrigger, type PullRequestTrigger, type TagTrigger, type PipelineTriggerObject, type PipelineOn, type Pipeline, type PipelineConfig, type ParsedPipelineConfig, type ParseResult as PipelineParseResult, type BuildContext, type OverrideBuildContext, parsePipelineConfig, matchesOverrideCondition, interpolateEnvValue, applyOverrides, looksLikeTag, shouldRunStage, getPipelineFilename, PIPELINE_FILENAME, } from './pipeline/index.js';
|
|
4
5
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AAGrC,OAAO,EAEL,cAAc,EACd,aAAa,EACb,yBAAyB,EACzB,mBAAmB,EACnB,uBAAuB,EACvB,cAAc,EACd,mBAAmB,EACnB,WAAW,EACX,kBAAkB,EAClB,eAAe,EACf,iBAAiB,EACjB,wBAAwB,EACxB,gBAAgB,EAChB,2BAA2B,EAC3B,gBAAgB,EAChB,cAAc,EACd,oBAAoB,EAEpB,KAAK,mBAAmB,EACxB,KAAK,aAAa,EAClB,KAAK,iBAAiB,EACtB,KAAK,QAAQ,EACb,KAAK,aAAa,EAClB,KAAK,KAAK,EACV,KAAK,WAAW,EAChB,KAAK,kBAAkB,EACvB,KAAK,UAAU,EACf,KAAK,qBAAqB,EAC1B,KAAK,UAAU,EACf,KAAK,QAAQ,EACb,KAAK,cAAc,EACnB,KAAK,oBAAoB,EACzB,KAAK,WAAW,IAAI,mBAAmB,EACvC,KAAK,YAAY,EACjB,KAAK,oBAAoB,EAEzB,mBAAmB,EACnB,wBAAwB,EACxB,mBAAmB,EACnB,cAAc,EACd,YAAY,EACZ,cAAc,EACd,mBAAmB,EACnB,iBAAiB,GAClB,MAAM,qBAAqB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
export * from './types/index.js';
|
|
2
2
|
export * from './triggers/index.js';
|
|
3
3
|
export * from './providers/index.js';
|
|
4
|
+
// Pipeline config parsing - export schemas and functions, avoiding conflicts with triggers and types
|
|
5
|
+
export {
|
|
6
|
+
// Schemas
|
|
7
|
+
EnvValueSchema, CommandSchema, WhenConditionObjectSchema, WhenConditionSchema, OverrideConditionSchema, OverrideSchema, StageArtifactSchema, StageSchema, BranchFilterSchema, TagFilterSchema, PushTriggerSchema, PullRequestTriggerSchema, TagTriggerSchema, PipelineTriggerObjectSchema, PipelineOnSchema, PipelineSchema, PipelineConfigSchema,
|
|
8
|
+
// Functions
|
|
9
|
+
parsePipelineConfig, matchesOverrideCondition, interpolateEnvValue, applyOverrides, looksLikeTag, shouldRunStage, getPipelineFilename, PIPELINE_FILENAME, } from './pipeline/index.js';
|
|
4
10
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AAErC,qGAAqG;AACrG,OAAO;AACL,UAAU;AACV,cAAc,EACd,aAAa,EACb,yBAAyB,EACzB,mBAAmB,EACnB,uBAAuB,EACvB,cAAc,EACd,mBAAmB,EACnB,WAAW,EACX,kBAAkB,EAClB,eAAe,EACf,iBAAiB,EACjB,wBAAwB,EACxB,gBAAgB,EAChB,2BAA2B,EAC3B,gBAAgB,EAChB,cAAc,EACd,oBAAoB;AAmBpB,YAAY;AACZ,mBAAmB,EACnB,wBAAwB,EACxB,mBAAmB,EACnB,cAAc,EACd,YAAY,EACZ,cAAc,EACd,mBAAmB,EACnB,iBAAiB,GAClB,MAAM,qBAAqB,CAAC"}
|