@26lights/orcha 0.42.112 → 0.42.113

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.
@@ -124,7 +124,12 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
124
124
  removeComment: (payload: RemoveCommentPayload) => void;
125
125
  toast: (message: string, type: "error" | "success") => void;
126
126
  startTimer: (payload: StartTimerPayload) => void;
127
- createSprint: (projectId: string) => void;
127
+ createSprint: (payload: {
128
+ projectId: Id;
129
+ name: string;
130
+ startDate: string;
131
+ endDate: string;
132
+ }) => void;
128
133
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
129
134
  filters: {
130
135
  type: import("vue").PropType<FeedFilters>;
@@ -240,7 +245,12 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
240
245
  onAddFiles?: ((payload: AddFilesPayload) => any) | undefined;
241
246
  onAddComment?: ((payload: AddCommentPayload) => any) | undefined;
242
247
  onToast?: ((message: string, type: "error" | "success") => any) | undefined;
243
- onCreateSprint?: ((projectId: string) => any) | undefined;
248
+ onCreateSprint?: ((payload: {
249
+ projectId: Id;
250
+ name: string;
251
+ startDate: string;
252
+ endDate: string;
253
+ }) => any) | undefined;
244
254
  onAddActivity?: ((payload: AddActivityFeedPayload) => any) | undefined;
245
255
  "onChange:activities"?: ((payload: ChangeFeedActivitiesPayload) => any) | undefined;
246
256
  "onUpdate:filters"?: ((value: FeedFilters) => any) | undefined;
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.42.112",
7
+ "version": "0.42.113",
8
8
  "workspaces": [
9
9
  "packages/*"
10
10
  ],