@26lights/orcha 0.38.21 → 0.38.22

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,16 +1,17 @@
1
+ import { type Phase } from '../types';
1
2
  declare const _default: import("vue").DefineComponent<{
2
- projectId: {
3
- type: import("vue").PropType<string>;
3
+ phases: {
4
+ type: import("vue").PropType<Phase[]>;
4
5
  required: true;
5
6
  };
6
7
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
- save: (templateName: string, projectId: string) => void;
8
+ save: (templateName: string, phaseIds: string[]) => void;
8
9
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
9
- projectId: {
10
- type: import("vue").PropType<string>;
10
+ phases: {
11
+ type: import("vue").PropType<Phase[]>;
11
12
  required: true;
12
13
  };
13
14
  }>> & {
14
- onSave?: ((templateName: string, projectId: string) => any) | undefined;
15
+ onSave?: ((templateName: string, phaseIds: string[]) => any) | undefined;
15
16
  }, {}, {}>;
16
17
  export default _default;
@@ -451,5 +451,5 @@ export type ApplyTemplatePayload = {
451
451
  export type SaveTemplatePayload = {
452
452
  templateName: string;
453
453
  rank: Id;
454
- projectId: Id;
454
+ phaseIds: Id[];
455
455
  };
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "type": "module",
5
5
  "license": "CC-BY-NC-ND-4.0",
6
6
  "author": "26lights <dev@26lights.com> (https://www.26lights.com)",
7
- "version": "0.38.21",
7
+ "version": "0.38.22",
8
8
  "workspaces": [
9
9
  "packages/*"
10
10
  ],
@@ -27,7 +27,7 @@
27
27
  "vuedraggable": "~4.1.0"
28
28
  },
29
29
  "dependencies": {
30
- "@26lights/orcha": "^0.38.21",
30
+ "@26lights/orcha": "^0.38.22",
31
31
  "@floating-ui/dom": "^1.5.3",
32
32
  "@vueform/multiselect": "^2.6.6",
33
33
  "@vueuse/core": "^10.8.0",