@kitsy/coop-core 2.1.0 → 2.1.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/index.d.cts CHANGED
@@ -730,6 +730,10 @@ interface CoopConfig {
730
730
  delivery?: string;
731
731
  run?: string;
732
732
  };
733
+ id?: {
734
+ naming?: string;
735
+ seq_padding?: number;
736
+ };
733
737
  defaults?: {
734
738
  task?: {
735
739
  type?: TaskType;
@@ -754,6 +758,9 @@ interface CoopConfig {
754
758
  plugins?: {
755
759
  enabled?: string[];
756
760
  };
761
+ artifacts?: {
762
+ dir?: string;
763
+ };
757
764
  hooks?: {
758
765
  on_task_transition?: string;
759
766
  on_delivery_complete?: string;
package/dist/index.d.ts CHANGED
@@ -730,6 +730,10 @@ interface CoopConfig {
730
730
  delivery?: string;
731
731
  run?: string;
732
732
  };
733
+ id?: {
734
+ naming?: string;
735
+ seq_padding?: number;
736
+ };
733
737
  defaults?: {
734
738
  task?: {
735
739
  type?: TaskType;
@@ -754,6 +758,9 @@ interface CoopConfig {
754
758
  plugins?: {
755
759
  enabled?: string[];
756
760
  };
761
+ artifacts?: {
762
+ dir?: string;
763
+ };
757
764
  hooks?: {
758
765
  on_task_transition?: string;
759
766
  on_delivery_complete?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kitsy/coop-core",
3
3
  "description": "Core models, parser, validator, graph, and planning engine for COOP.",
4
- "version": "2.1.0",
4
+ "version": "2.1.2",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "publishConfig": {