@tak-ps/cloudtak 13.62.0 → 13.63.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.
@@ -8,8 +8,34 @@ type __VLS_Props = {
8
8
  };
9
9
  declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
10
10
  "update:modelValue": (value: number[]) => any;
11
+ nominate: (board: {
12
+ id: string;
13
+ name: string;
14
+ channel: number;
15
+ column: null | string;
16
+ columns: {
17
+ id: string;
18
+ name: string;
19
+ color: string;
20
+ type: "nominated" | "custom";
21
+ position: number;
22
+ }[];
23
+ }) => any;
11
24
  }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
12
25
  "onUpdate:modelValue"?: ((value: number[]) => any) | undefined;
26
+ onNominate?: ((board: {
27
+ id: string;
28
+ name: string;
29
+ channel: number;
30
+ column: null | string;
31
+ columns: {
32
+ id: string;
33
+ name: string;
34
+ color: string;
35
+ type: "nominated" | "custom";
36
+ position: number;
37
+ }[];
38
+ }) => any) | undefined;
13
39
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
14
40
  declare const _default: typeof __VLS_export;
15
41
  export default _default;
@@ -30,6 +30,8 @@ export type User = paths["/api/user/{:username}"]["get"]["responses"]["200"]["co
30
30
  export type UserList = paths["/api/user"]["get"]["responses"]["200"]["content"]["application/json"];
31
31
  export type ErrorReport = paths["/api/error/{:errorid}"]["get"]["responses"]["200"]["content"]["application/json"];
32
32
  export type ErrorReportList = paths["/api/error"]["get"]["responses"]["200"]["content"]["application/json"];
33
+ export type CoreDevice = paths["/api/core/device/{:device}"]["get"]["responses"]["200"]["content"]["application/json"];
34
+ export type CoreDeviceList = paths["/api/core/device"]["get"]["responses"]["200"]["content"]["application/json"];
33
35
  export type CoreEvent = paths["/api/core/event/{:event}"]["get"]["responses"]["200"]["content"]["application/json"];
34
36
  export type CoreEventList = paths["/api/core/event"]["get"]["responses"]["200"]["content"]["application/json"];
35
37
  export type CoreEventLink = CoreEvent["links"][0];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tak-ps/cloudtak",
3
3
  "type": "module",
4
- "version": "13.62.0",
4
+ "version": "13.63.0",
5
5
  "types": "dist/types/plugin.d.ts",
6
6
  "files": [
7
7
  "dist/types"