@crewx/sdk 0.9.0-rc.39 → 0.9.0-rc.40
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/config/wi-boards.d.ts +15 -0
- package/dist/esm/index.js +97 -97
- package/dist/events/types.d.ts +2 -0
- package/dist/facade/Crewx.d.ts +6 -0
- package/dist/index.browser.js +2 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +98 -98
- package/dist/types/index.d.ts +106 -0
- package/dist/utils/id.d.ts +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { CrewxProjectConfig } from '../types';
|
|
2
|
+
export declare const DEFAULT_WI_BOARD_ID = "default";
|
|
3
|
+
export declare const ARCHIVE_WI_BOARD_ID = "archive";
|
|
4
|
+
export declare const WI_BOARD_ID_PATTERN: RegExp;
|
|
5
|
+
export declare function isReservedWiBoardId(id: string): boolean;
|
|
6
|
+
export interface ResolvedWiBoard {
|
|
7
|
+
id: string;
|
|
8
|
+
name: string;
|
|
9
|
+
workflowId: string;
|
|
10
|
+
description?: string;
|
|
11
|
+
goalId?: string;
|
|
12
|
+
system: boolean;
|
|
13
|
+
readOnly: boolean;
|
|
14
|
+
}
|
|
15
|
+
export declare function resolveWiBoards(config: CrewxProjectConfig | undefined): ResolvedWiBoard[];
|