andoncloud-workplaces-state-timelines-widget 1.2.5 → 1.2.7
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.ts +32 -5
- package/dist/index.js +373 -2
- package/dist/index.js.map +1 -1
- package/package.json +33 -27
- package/dist/components/Loading/index.d.ts +0 -3
- package/dist/components/SettingsForm/index.d.ts +0 -4
- package/dist/components/SettingsFormContent/index.d.ts +0 -5
- package/dist/components/Timeline/index.d.ts +0 -10
- package/dist/components/Timeline/styled.d.ts +0 -10
- package/dist/components/TimelineLoader/index.d.ts +0 -3
- package/dist/components/Widget/index.d.ts +0 -5
- package/dist/components/Widget/utils.d.ts +0 -12
- package/dist/components/WidgetSettings/index.d.ts +0 -4
- package/dist/components/WidgetView/index.d.ts +0 -4
- package/dist/helpers.d.ts +0 -3
- package/dist/i18n.d.ts +0 -2
- package/dist/locales/index.d.ts +0 -25
- package/dist/stories/Widget.stories.d.ts +0 -5
- package/dist/types.d.ts +0 -18
- package/dist/utils/graphql-sdk.d.ts +0 -142
- package/dist/version.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,24 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "andoncloud-workplaces-state-timelines-widget",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.7",
|
|
4
4
|
"description": "Made with create-andoncloud-widget",
|
|
5
5
|
"author": "Adrian Olszewski",
|
|
6
6
|
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
7
8
|
"main": "dist/index.js",
|
|
8
|
-
"
|
|
9
|
-
"source": "src/index.tsx",
|
|
10
|
-
"engines": {
|
|
11
|
-
"node": ">=14"
|
|
12
|
-
},
|
|
9
|
+
"types": "dist/index.d.ts",
|
|
13
10
|
"scripts": {
|
|
14
|
-
"build": "library-scripts build
|
|
15
|
-
"build:watch": "library-scripts build-watch
|
|
16
|
-
"
|
|
17
|
-
"start": "run-p build:watch start:preview",
|
|
11
|
+
"build": "library-scripts build",
|
|
12
|
+
"build:watch": "library-scripts build-watch",
|
|
13
|
+
"i18n:extract": "i18next src/components/**/*.tsx [-oc]",
|
|
18
14
|
"lint": "eslint --ext .ts,.tsx --quiet --fix .",
|
|
19
15
|
"lint:ci": "eslint --ext .ts,.tsx --quiet .",
|
|
20
|
-
"i18n:extract": "i18next src/components/**/*.tsx [-oc]",
|
|
21
16
|
"prepare": "run-s build",
|
|
17
|
+
"prestart": "npm run build",
|
|
18
|
+
"start": "run-p build:watch start:preview",
|
|
19
|
+
"start:preview": "cd preview && npm run start",
|
|
20
|
+
"test": "cypress run --component",
|
|
22
21
|
"update": "ncu --reject graphql-request -u && npm install --ignore-scripts && cd preview && ncu -u && npm install",
|
|
23
22
|
"version:bump": "npm version --no-git-tag-version patch"
|
|
24
23
|
},
|
|
@@ -29,42 +28,49 @@
|
|
|
29
28
|
"andoncloud-dashboard-toolkit": "^1.0.0",
|
|
30
29
|
"andoncloud-sdk": "^1.0.0",
|
|
31
30
|
"andoncloud-widget-base": "^1.0.0",
|
|
31
|
+
"dayjs": "^1.11.0",
|
|
32
32
|
"graphql-request": "^6.0.0",
|
|
33
33
|
"i18next": "^22.0.0",
|
|
34
34
|
"react": "^18.0.0",
|
|
35
35
|
"react-i18next": "^12.0.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
+
"@craco/craco": "^7.1.0",
|
|
38
39
|
"@emotion/react": "^11.14.0",
|
|
39
40
|
"@emotion/styled": "^11.14.1",
|
|
40
|
-
"@mui/icons-material": "^7.3.
|
|
41
|
-
"@mui/lab": "^7.0.1-beta.
|
|
42
|
-
"@mui/material": "^7.3.
|
|
43
|
-
"@
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"andoncloud-
|
|
47
|
-
"andoncloud-
|
|
48
|
-
"
|
|
41
|
+
"@mui/icons-material": "^7.3.9",
|
|
42
|
+
"@mui/lab": "^7.0.1-beta.23",
|
|
43
|
+
"@mui/material": "^7.3.9",
|
|
44
|
+
"@mui/x-date-pickers": "^8.27.2",
|
|
45
|
+
"@types/react": "^19.2.14",
|
|
46
|
+
"ajv": "^8.18.0",
|
|
47
|
+
"andoncloud-dashboard-toolkit": "^1.5.63",
|
|
48
|
+
"andoncloud-library-scripts": "^2.0.0",
|
|
49
|
+
"andoncloud-sdk": "^1.7.25",
|
|
50
|
+
"andoncloud-widget-base": "^1.2.25",
|
|
51
|
+
"cypress": "^15.13.0",
|
|
52
|
+
"eslint-config-andoncloud": "^1.1.0",
|
|
49
53
|
"graphql-request": "^6.1.0",
|
|
50
|
-
"i18next": "^
|
|
54
|
+
"i18next": "^26.0.2",
|
|
51
55
|
"mobx": "^6.15.0",
|
|
52
56
|
"mobx-react-lite": "^4.1.1",
|
|
53
|
-
"npm-check-updates": "^19.
|
|
57
|
+
"npm-check-updates": "^19.6.6",
|
|
54
58
|
"npm-run-all": "^4.1.5",
|
|
55
|
-
"postcss": "^8.5.
|
|
59
|
+
"postcss": "^8.5.8",
|
|
56
60
|
"react": "^19.2.4",
|
|
57
61
|
"react-dom": "^19.2.4",
|
|
58
|
-
"react-i18next": "^
|
|
59
|
-
"react-router-dom": "^7.13.
|
|
62
|
+
"react-i18next": "^17.0.1",
|
|
63
|
+
"react-router-dom": "^7.13.2",
|
|
60
64
|
"react-scripts": "^5.0.1",
|
|
61
|
-
"
|
|
65
|
+
"tsdown": "^0.21.7",
|
|
66
|
+
"typescript": "~5.9.3",
|
|
67
|
+
"webpack-dev-server": "^5.2.3"
|
|
62
68
|
},
|
|
63
69
|
"files": [
|
|
64
70
|
"dist"
|
|
65
71
|
],
|
|
66
72
|
"dependencies": {
|
|
67
|
-
"
|
|
73
|
+
"actioncable": "^5.2.8-1",
|
|
68
74
|
"react-content-loader": "^7.1.2",
|
|
69
75
|
"yup": "^1.7.1"
|
|
70
76
|
}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { SettingsFormContentProps } from 'andoncloud-widget-base';
|
|
3
|
-
import { WidgetData, WidgetSettings } from '@/types';
|
|
4
|
-
declare const SettingsFormContent: React.FC<SettingsFormContentProps<WidgetData, WidgetSettings>>;
|
|
5
|
-
export default SettingsFormContent;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { ListStatusChanges_StatusChange, NormalizedShift } from 'andoncloud-dashboard-toolkit';
|
|
3
|
-
export interface TimelineProps {
|
|
4
|
-
title: string;
|
|
5
|
-
shift: NormalizedShift | null;
|
|
6
|
-
statusChanges: ListStatusChanges_StatusChange[];
|
|
7
|
-
loading?: boolean;
|
|
8
|
-
}
|
|
9
|
-
declare const Timeline: React.FC<TimelineProps>;
|
|
10
|
-
export default Timeline;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { AndonLightColor } from 'andoncloud-dashboard-toolkit';
|
|
2
|
-
export interface TimelineElementProps {
|
|
3
|
-
percentWidth: number;
|
|
4
|
-
color?: AndonLightColor;
|
|
5
|
-
}
|
|
6
|
-
export declare const TimelineRow: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
7
|
-
export declare const TimelineWrapper: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
8
|
-
export declare const TimelineTimeInfoContainer: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
9
|
-
export declare const TimelineTimeInfo: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
10
|
-
export declare const TimelineElement: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & TimelineElementProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { TFunction } from 'i18next';
|
|
2
|
-
import * as yup from 'yup';
|
|
3
|
-
export declare const getSettingsFormProps: (t: TFunction) => {
|
|
4
|
-
initialValues: {
|
|
5
|
-
workplacesIds: never[];
|
|
6
|
-
};
|
|
7
|
-
validationSchema: yup.ObjectSchema<{
|
|
8
|
-
workplacesIds: (string | undefined)[];
|
|
9
|
-
}, yup.AnyObject, {
|
|
10
|
-
workplacesIds: "";
|
|
11
|
-
}, "">;
|
|
12
|
-
};
|
package/dist/helpers.d.ts
DELETED
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
import { AndonLightColor, ListStatusChanges_StatusChange, NormalizedShift } from 'andoncloud-dashboard-toolkit';
|
|
2
|
-
export declare const durationSeconds: (shift: NormalizedShift, statusChange: ListStatusChanges_StatusChange, currentDate: Date) => number;
|
|
3
|
-
export declare const mapTimelineColor: (color: AndonLightColor) => string;
|
package/dist/i18n.d.ts
DELETED
package/dist/locales/index.d.ts
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
declare const resources: {
|
|
2
|
-
en: {
|
|
3
|
-
translation: {
|
|
4
|
-
Loading: string;
|
|
5
|
-
Workplaces: string;
|
|
6
|
-
"Select and arrange the order": string;
|
|
7
|
-
Cancel: string;
|
|
8
|
-
Save: string;
|
|
9
|
-
"History timeline time info now": string;
|
|
10
|
-
Settings: string;
|
|
11
|
-
};
|
|
12
|
-
};
|
|
13
|
-
pl: {
|
|
14
|
-
translation: {
|
|
15
|
-
Loading: string;
|
|
16
|
-
Workplaces: string;
|
|
17
|
-
"Select and arrange the order": string;
|
|
18
|
-
Cancel: string;
|
|
19
|
-
Save: string;
|
|
20
|
-
"History timeline time info now": string;
|
|
21
|
-
Settings: string;
|
|
22
|
-
};
|
|
23
|
-
};
|
|
24
|
-
};
|
|
25
|
-
export default resources;
|
package/dist/types.d.ts
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import type { BaseWidgetData, BaseWidgetSettings, ListStatusChanges_StatusChange, ListWorkplaces_Workplace, Shift } from 'andoncloud-dashboard-toolkit';
|
|
2
|
-
import { BaseWidgetViewProps } from 'andoncloud-widget-base';
|
|
3
|
-
interface WidgetViewData {
|
|
4
|
-
shifts: Shift[];
|
|
5
|
-
workplaces: ListWorkplaces_Workplace[];
|
|
6
|
-
statusChanges: ListStatusChanges_StatusChange[];
|
|
7
|
-
}
|
|
8
|
-
interface WidgetSettingsData {
|
|
9
|
-
workplaces: ListWorkplaces_Workplace[];
|
|
10
|
-
}
|
|
11
|
-
export interface WidgetData extends BaseWidgetData, WidgetViewData, WidgetSettingsData {
|
|
12
|
-
}
|
|
13
|
-
export interface WidgetSettings extends BaseWidgetSettings {
|
|
14
|
-
workplacesIds: string[];
|
|
15
|
-
}
|
|
16
|
-
export interface WidgetViewProps extends BaseWidgetViewProps<WidgetData, WidgetSettings> {
|
|
17
|
-
}
|
|
18
|
-
export {};
|
|
@@ -1,142 +0,0 @@
|
|
|
1
|
-
declare const _default: (url: string, token: string) => {
|
|
2
|
-
createDashboard(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
3
|
-
id: string;
|
|
4
|
-
name: string;
|
|
5
|
-
gridLayout?: string | null | undefined;
|
|
6
|
-
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").CreateDashboardMutation>;
|
|
7
|
-
createOrder(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
8
|
-
id: string;
|
|
9
|
-
number: string;
|
|
10
|
-
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").CreateOrderMutation>;
|
|
11
|
-
createProduct(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
12
|
-
id: string;
|
|
13
|
-
name?: string | null | undefined;
|
|
14
|
-
number: string;
|
|
15
|
-
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").CreateProductMutation>;
|
|
16
|
-
createStatusChange(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
17
|
-
id: string;
|
|
18
|
-
userId?: string | null | undefined;
|
|
19
|
-
reasonId: string;
|
|
20
|
-
workplaceId: string;
|
|
21
|
-
startedAt?: string | null | undefined;
|
|
22
|
-
note?: string | null | undefined;
|
|
23
|
-
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").CreateStatusChangeMutation>;
|
|
24
|
-
createUserPresence(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
25
|
-
id: string;
|
|
26
|
-
workplaceId: string;
|
|
27
|
-
userToken: string;
|
|
28
|
-
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").CreateUserPresenceMutation>;
|
|
29
|
-
createWidget(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
30
|
-
id: string;
|
|
31
|
-
config?: string | null | undefined;
|
|
32
|
-
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").CreateWidgetMutation>;
|
|
33
|
-
pauseOrderExecution(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
34
|
-
id: string;
|
|
35
|
-
statusChangeId: string;
|
|
36
|
-
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").PauseOrderExecutionMutation>;
|
|
37
|
-
removeDashboard(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
38
|
-
id: string;
|
|
39
|
-
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").RemoveDashboardMutation>;
|
|
40
|
-
removeUserPresence(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
41
|
-
id: string;
|
|
42
|
-
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").RemoveUserPresenceMutation>;
|
|
43
|
-
removeWidget(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
44
|
-
id: string;
|
|
45
|
-
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").RemoveWidgetMutation>;
|
|
46
|
-
removeWorkplaceUsersPresences(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
47
|
-
workplaceId: string;
|
|
48
|
-
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").RemoveWorkplaceUsersPresencesMutation>;
|
|
49
|
-
setCounter(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
50
|
-
id: string;
|
|
51
|
-
value: number;
|
|
52
|
-
note?: string | null | undefined;
|
|
53
|
-
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").SetCounterMutation>;
|
|
54
|
-
startOrderExecution(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
55
|
-
id: string;
|
|
56
|
-
workplaceId: string;
|
|
57
|
-
orderId: string;
|
|
58
|
-
productId?: string | null | undefined;
|
|
59
|
-
statusChangeId: string;
|
|
60
|
-
quantity?: number | null | undefined;
|
|
61
|
-
note?: string | null | undefined;
|
|
62
|
-
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").StartOrderExecutionMutation>;
|
|
63
|
-
stopOrderExecution(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
64
|
-
id: string;
|
|
65
|
-
statusChangeId: string;
|
|
66
|
-
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").StopOrderExecutionMutation>;
|
|
67
|
-
updateDashboard(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
68
|
-
id: string;
|
|
69
|
-
name?: string | null | undefined;
|
|
70
|
-
gridLayout: string;
|
|
71
|
-
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").UpdateDashboardMutation>;
|
|
72
|
-
updateOrderExecution(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
73
|
-
id: string;
|
|
74
|
-
standardRateId: string;
|
|
75
|
-
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").UpdateOrderExecutionMutation>;
|
|
76
|
-
updateWidget(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
77
|
-
id: string;
|
|
78
|
-
config: string;
|
|
79
|
-
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").UpdateWidgetMutation>;
|
|
80
|
-
companyConfig(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
81
|
-
[key: string]: never;
|
|
82
|
-
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").CompanyConfigQuery>;
|
|
83
|
-
counterDirectories(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
84
|
-
[key: string]: never;
|
|
85
|
-
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").CounterDirectoriesQuery>;
|
|
86
|
-
counters(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
87
|
-
[key: string]: never;
|
|
88
|
-
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").CountersQuery>;
|
|
89
|
-
currentUser(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
90
|
-
[key: string]: never;
|
|
91
|
-
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").CurrentUserQuery>;
|
|
92
|
-
dashboards(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
93
|
-
[key: string]: never;
|
|
94
|
-
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").DashboardsQuery>;
|
|
95
|
-
metricValues(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
96
|
-
workplaceIds?: string | string[] | null | undefined;
|
|
97
|
-
metricIds?: string | string[] | null | undefined;
|
|
98
|
-
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").MetricValuesQuery>;
|
|
99
|
-
metrics(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
100
|
-
[key: string]: never;
|
|
101
|
-
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").MetricsQuery>;
|
|
102
|
-
orders(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
103
|
-
[key: string]: never;
|
|
104
|
-
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").OrdersQuery>;
|
|
105
|
-
ordersExecutions(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
106
|
-
[key: string]: never;
|
|
107
|
-
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").OrdersExecutionsQuery>;
|
|
108
|
-
products(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
109
|
-
[key: string]: never;
|
|
110
|
-
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").ProductsQuery>;
|
|
111
|
-
reasons(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
112
|
-
[key: string]: never;
|
|
113
|
-
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").ReasonsQuery>;
|
|
114
|
-
shifts(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
115
|
-
[key: string]: never;
|
|
116
|
-
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").ShiftsQuery>;
|
|
117
|
-
standardRates(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
118
|
-
orderExecutionId: string;
|
|
119
|
-
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").StandardRatesQuery>;
|
|
120
|
-
statusChangeTransitionPermissions(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
121
|
-
[key: string]: never;
|
|
122
|
-
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").StatusChangeTransitionPermissionsQuery>;
|
|
123
|
-
statusChanges(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
124
|
-
[key: string]: never;
|
|
125
|
-
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").StatusChangesQuery>;
|
|
126
|
-
users(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
127
|
-
[key: string]: never;
|
|
128
|
-
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").UsersQuery>;
|
|
129
|
-
usersPresences(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
130
|
-
[key: string]: never;
|
|
131
|
-
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").UsersPresencesQuery>;
|
|
132
|
-
widget(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
133
|
-
id: string;
|
|
134
|
-
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").WidgetQuery>;
|
|
135
|
-
workplaces(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
136
|
-
[key: string]: never;
|
|
137
|
-
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").WorkplacesQuery>;
|
|
138
|
-
workplaceEvent(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
139
|
-
id: string;
|
|
140
|
-
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").WorkplaceEventSubscription>;
|
|
141
|
-
};
|
|
142
|
-
export default _default;
|
package/dist/version.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const LIBRARY_VERSION = "1.2.5";
|