andoncloud-dashboard-toolkit 1.3.21 → 1.4.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.
- package/dist/graphql-request.d.ts +75 -846
- package/dist/helpers/sdk.d.ts +2 -0
- package/dist/index.js +11 -11
- package/dist/index.js.map +1 -1
- package/dist/operations/generated/mutations/index.d.ts +2 -3
- package/dist/operations/generated/queries/index.d.ts +0 -2
- package/dist/types.d.ts +2 -0
- package/dist/version.d.ts +1 -1
- package/package.json +17 -17
|
@@ -43,36 +43,17 @@ export type Scalars = {
|
|
|
43
43
|
input: number;
|
|
44
44
|
output: number;
|
|
45
45
|
};
|
|
46
|
-
/** An ISO 8601-encoded date */
|
|
47
|
-
ISO8601Date: {
|
|
48
|
-
input: any;
|
|
49
|
-
output: any;
|
|
50
|
-
};
|
|
51
|
-
/** An ISO 8601-encoded datetime */
|
|
52
|
-
ISO8601DateTime: {
|
|
53
|
-
input: any;
|
|
54
|
-
output: any;
|
|
55
|
-
};
|
|
56
46
|
/** Represents untyped JSON */
|
|
57
47
|
JSON: {
|
|
58
48
|
input: any;
|
|
59
49
|
output: any;
|
|
60
50
|
};
|
|
61
51
|
};
|
|
62
|
-
export
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
plannedOperators?: Maybe<Scalars['Int']['output']>;
|
|
68
|
-
shift: Shift;
|
|
69
|
-
workplace: Workplace;
|
|
70
|
-
};
|
|
71
|
-
export type ActualStaffingCountFilter = {
|
|
72
|
-
date?: InputMaybe<Scalars['ISO8601Date']['input']>;
|
|
73
|
-
shift_id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
74
|
-
workplace_id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
75
|
-
};
|
|
52
|
+
export declare enum AccessRequestTypeEnum {
|
|
53
|
+
FeatureAccess = "FEATURE_ACCESS",
|
|
54
|
+
Purchase = "PURCHASE",
|
|
55
|
+
TrialExpired = "TRIAL_EXPIRED"
|
|
56
|
+
}
|
|
76
57
|
export declare enum AndonLightColor {
|
|
77
58
|
Gray = "gray",
|
|
78
59
|
Green = "green",
|
|
@@ -83,14 +64,6 @@ export type ApplicationInfo = {
|
|
|
83
64
|
__typename?: 'ApplicationInfo';
|
|
84
65
|
apiVersion: Scalars['String']['output'];
|
|
85
66
|
};
|
|
86
|
-
export type BulkStaffingPlanInput = {
|
|
87
|
-
plans: Array<StaffingPlanInput>;
|
|
88
|
-
};
|
|
89
|
-
export type BulkUpdateStaffingPlansPayload = {
|
|
90
|
-
__typename?: 'BulkUpdateStaffingPlansPayload';
|
|
91
|
-
errors?: Maybe<Array<MutationError>>;
|
|
92
|
-
staffingPlans?: Maybe<Array<StaffingPlan>>;
|
|
93
|
-
};
|
|
94
67
|
export type CompanyConfig = {
|
|
95
68
|
__typename?: 'CompanyConfig';
|
|
96
69
|
devicesConfigs: Array<DeviceConfig>;
|
|
@@ -445,11 +418,6 @@ export type CreateProductPayload = {
|
|
|
445
418
|
errors?: Maybe<Array<MutationError>>;
|
|
446
419
|
product?: Maybe<Product>;
|
|
447
420
|
};
|
|
448
|
-
export type CreateStaffingPlanPayload = {
|
|
449
|
-
__typename?: 'CreateStaffingPlanPayload';
|
|
450
|
-
errors?: Maybe<Array<MutationError>>;
|
|
451
|
-
staffingPlan?: Maybe<StaffingPlan>;
|
|
452
|
-
};
|
|
453
421
|
/** Autogenerated return type of CreateStatusChange */
|
|
454
422
|
export type CreateStatusChangePayload = {
|
|
455
423
|
__typename?: 'CreateStatusChangePayload';
|
|
@@ -729,11 +697,9 @@ export type MetricValue = {
|
|
|
729
697
|
};
|
|
730
698
|
export type Mutation = {
|
|
731
699
|
__typename?: 'Mutation';
|
|
732
|
-
bulkUpdateStaffingPlans: BulkUpdateStaffingPlansPayload;
|
|
733
700
|
createDashboard: CreateDashboardPayload;
|
|
734
701
|
createOrder: CreateOrderPayload;
|
|
735
702
|
createProduct: CreateProductPayload;
|
|
736
|
-
createStaffingPlan: CreateStaffingPlanPayload;
|
|
737
703
|
createStatusChange: CreateStatusChangePayload;
|
|
738
704
|
createUserPresence: CreateUserPresencePayload;
|
|
739
705
|
createWidget: CreateWidgetPayload;
|
|
@@ -742,21 +708,19 @@ export type Mutation = {
|
|
|
742
708
|
removeUserPresence: RemoveUserPresencePayload;
|
|
743
709
|
removeWidget: RemoveWidgetPayload;
|
|
744
710
|
removeWorkplaceUsersPresences: RemoveWorkplaceUsersPresencesPayload;
|
|
711
|
+
requestFeatureAccess: RequestFeatureAccessMutationPayload;
|
|
745
712
|
setCounter: SetCounterPayload;
|
|
746
713
|
startOrderExecution: StartOrderExecutionPayload;
|
|
714
|
+
startTrial: StartTrialMutationPayload;
|
|
747
715
|
stopOrderExecution: StopOrderExecutionPayload;
|
|
748
716
|
updateDashboard: UpdateDashboardPayload;
|
|
749
717
|
updateNotification: UpdateNotificationPayload;
|
|
750
718
|
updateOrder: UpdateOrderPayload;
|
|
751
719
|
updateOrderExecution: UpdateOrderExecutionPayload;
|
|
752
|
-
updateStaffingPlan: UpdateStaffingPlanPayload;
|
|
753
720
|
updateStatusChange: UpdateStatusChangePayload;
|
|
754
721
|
updateWidget: UpdateWidgetPayload;
|
|
755
722
|
updateWorkOrder: UpdateWorkOrderPayload;
|
|
756
723
|
};
|
|
757
|
-
export type MutationBulkUpdateStaffingPlansArgs = {
|
|
758
|
-
input: BulkStaffingPlanInput;
|
|
759
|
-
};
|
|
760
724
|
export type MutationCreateDashboardArgs = {
|
|
761
725
|
gridLayout?: InputMaybe<Scalars['String']['input']>;
|
|
762
726
|
id: Scalars['ID']['input'];
|
|
@@ -771,9 +735,6 @@ export type MutationCreateProductArgs = {
|
|
|
771
735
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
772
736
|
number: Scalars['String']['input'];
|
|
773
737
|
};
|
|
774
|
-
export type MutationCreateStaffingPlanArgs = {
|
|
775
|
-
input: StaffingPlanInput;
|
|
776
|
-
};
|
|
777
738
|
export type MutationCreateStatusChangeArgs = {
|
|
778
739
|
id: Scalars['ID']['input'];
|
|
779
740
|
note?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -808,6 +769,9 @@ export type MutationRemoveWidgetArgs = {
|
|
|
808
769
|
export type MutationRemoveWorkplaceUsersPresencesArgs = {
|
|
809
770
|
workplaceId: Scalars['ID']['input'];
|
|
810
771
|
};
|
|
772
|
+
export type MutationRequestFeatureAccessArgs = {
|
|
773
|
+
input: RequestFeatureAccessInput;
|
|
774
|
+
};
|
|
811
775
|
export type MutationSetCounterArgs = {
|
|
812
776
|
id: Scalars['ID']['input'];
|
|
813
777
|
note?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -822,6 +786,9 @@ export type MutationStartOrderExecutionArgs = {
|
|
|
822
786
|
statusChangeId: Scalars['ID']['input'];
|
|
823
787
|
workplaceId: Scalars['ID']['input'];
|
|
824
788
|
};
|
|
789
|
+
export type MutationStartTrialArgs = {
|
|
790
|
+
input: StartTrialInput;
|
|
791
|
+
};
|
|
825
792
|
export type MutationStopOrderExecutionArgs = {
|
|
826
793
|
id: Scalars['ID']['input'];
|
|
827
794
|
statusChangeId: Scalars['ID']['input'];
|
|
@@ -842,10 +809,6 @@ export type MutationUpdateOrderExecutionArgs = {
|
|
|
842
809
|
id: Scalars['ID']['input'];
|
|
843
810
|
standardRateId: Scalars['ID']['input'];
|
|
844
811
|
};
|
|
845
|
-
export type MutationUpdateStaffingPlanArgs = {
|
|
846
|
-
id: Scalars['ID']['input'];
|
|
847
|
-
recommendedOperators: Scalars['Int']['input'];
|
|
848
|
-
};
|
|
849
812
|
export type MutationUpdateStatusChangeArgs = {
|
|
850
813
|
input: UpdateStatusChangeInput;
|
|
851
814
|
};
|
|
@@ -1535,7 +1498,6 @@ export declare enum ProductionMode {
|
|
|
1535
1498
|
}
|
|
1536
1499
|
export type Query = {
|
|
1537
1500
|
__typename?: 'Query';
|
|
1538
|
-
actualStaffingCounts: Array<ActualStaffingCount>;
|
|
1539
1501
|
/** Returns application information, including the current API version. */
|
|
1540
1502
|
applicationInfo: ApplicationInfo;
|
|
1541
1503
|
/**
|
|
@@ -1641,7 +1603,6 @@ export type Query = {
|
|
|
1641
1603
|
* used for scheduling, reporting, and tracking production activities.
|
|
1642
1604
|
*/
|
|
1643
1605
|
shifts: Array<Shift>;
|
|
1644
|
-
staffingPlans: Array<StaffingPlan>;
|
|
1645
1606
|
/**
|
|
1646
1607
|
* Returns standard production rates defined for an order execution.
|
|
1647
1608
|
* Standard rates specify expected output (e.g. good or bad pieces per hour,
|
|
@@ -1700,9 +1661,6 @@ export type Query = {
|
|
|
1700
1661
|
*/
|
|
1701
1662
|
workplaces: Array<Workplace>;
|
|
1702
1663
|
};
|
|
1703
|
-
export type QueryActualStaffingCountsArgs = {
|
|
1704
|
-
filter?: InputMaybe<ActualStaffingCountFilter>;
|
|
1705
|
-
};
|
|
1706
1664
|
export type QueryCounterDirectoriesArgs = {
|
|
1707
1665
|
filter?: InputMaybe<CounterDirectoryFilter>;
|
|
1708
1666
|
};
|
|
@@ -1740,9 +1698,6 @@ export type QueryReasonsArgs = {
|
|
|
1740
1698
|
export type QueryReasonsRecommendationArgs = {
|
|
1741
1699
|
workplaceId: Scalars['String']['input'];
|
|
1742
1700
|
};
|
|
1743
|
-
export type QueryStaffingPlansArgs = {
|
|
1744
|
-
filter?: InputMaybe<StaffingPlanFilter>;
|
|
1745
|
-
};
|
|
1746
1701
|
export type QueryStandardRatesArgs = {
|
|
1747
1702
|
orderExecutionId: Scalars['ID']['input'];
|
|
1748
1703
|
};
|
|
@@ -1969,6 +1924,17 @@ export type RemoveWorkplaceUsersPresencesPayload = {
|
|
|
1969
1924
|
__typename?: 'RemoveWorkplaceUsersPresencesPayload';
|
|
1970
1925
|
errors?: Maybe<Array<MutationError>>;
|
|
1971
1926
|
};
|
|
1927
|
+
export type RequestFeatureAccessInput = {
|
|
1928
|
+
featureKey: Scalars['String']['input'];
|
|
1929
|
+
requestType: AccessRequestTypeEnum;
|
|
1930
|
+
workplaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
1931
|
+
};
|
|
1932
|
+
/** Autogenerated return type of RequestFeatureAccessMutation */
|
|
1933
|
+
export type RequestFeatureAccessMutationPayload = {
|
|
1934
|
+
__typename?: 'RequestFeatureAccessMutationPayload';
|
|
1935
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1936
|
+
success: Scalars['Boolean']['output'];
|
|
1937
|
+
};
|
|
1972
1938
|
export type RoleConfig = {
|
|
1973
1939
|
__typename?: 'RoleConfig';
|
|
1974
1940
|
historyVisibilityEnabled: Scalars['Boolean']['output'];
|
|
@@ -2003,29 +1969,6 @@ export type Shift = {
|
|
|
2003
1969
|
name: Scalars['String']['output'];
|
|
2004
1970
|
startedAt: Scalars['String']['output'];
|
|
2005
1971
|
};
|
|
2006
|
-
export type StaffingPlan = {
|
|
2007
|
-
__typename?: 'StaffingPlan';
|
|
2008
|
-
author: User;
|
|
2009
|
-
createdAt: Scalars['ISO8601DateTime']['output'];
|
|
2010
|
-
date: Scalars['ISO8601Date']['output'];
|
|
2011
|
-
id: Scalars['ID']['output'];
|
|
2012
|
-
recommendedOperators: Scalars['Int']['output'];
|
|
2013
|
-
shift: Shift;
|
|
2014
|
-
updatedAt: Scalars['ISO8601DateTime']['output'];
|
|
2015
|
-
workplace: Workplace;
|
|
2016
|
-
};
|
|
2017
|
-
export type StaffingPlanFilter = {
|
|
2018
|
-
date_from?: InputMaybe<Scalars['ISO8601Date']['input']>;
|
|
2019
|
-
date_to?: InputMaybe<Scalars['ISO8601Date']['input']>;
|
|
2020
|
-
shift_id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2021
|
-
workplace_id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2022
|
-
};
|
|
2023
|
-
export type StaffingPlanInput = {
|
|
2024
|
-
date: Scalars['ISO8601Date']['input'];
|
|
2025
|
-
recommendedOperators: Scalars['Int']['input'];
|
|
2026
|
-
shiftId: Scalars['ID']['input'];
|
|
2027
|
-
workplaceId: Scalars['ID']['input'];
|
|
2028
|
-
};
|
|
2029
1972
|
export type StandardRate = {
|
|
2030
1973
|
__typename?: 'StandardRate';
|
|
2031
1974
|
id: Scalars['ID']['output'];
|
|
@@ -2037,6 +1980,15 @@ export type StartOrderExecutionPayload = {
|
|
|
2037
1980
|
errors?: Maybe<Array<MutationError>>;
|
|
2038
1981
|
orderExecution?: Maybe<OrderExecution>;
|
|
2039
1982
|
};
|
|
1983
|
+
export type StartTrialInput = {
|
|
1984
|
+
featureKey: Scalars['String']['input'];
|
|
1985
|
+
};
|
|
1986
|
+
/** Autogenerated return type of StartTrialMutation */
|
|
1987
|
+
export type StartTrialMutationPayload = {
|
|
1988
|
+
__typename?: 'StartTrialMutationPayload';
|
|
1989
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1990
|
+
success: Scalars['Boolean']['output'];
|
|
1991
|
+
};
|
|
2040
1992
|
export type StatusChange = {
|
|
2041
1993
|
__typename?: 'StatusChange';
|
|
2042
1994
|
author: User;
|
|
@@ -2203,11 +2155,6 @@ export type UpdateOrderPayload = {
|
|
|
2203
2155
|
errors?: Maybe<Array<MutationError>>;
|
|
2204
2156
|
order?: Maybe<Order>;
|
|
2205
2157
|
};
|
|
2206
|
-
export type UpdateStaffingPlanPayload = {
|
|
2207
|
-
__typename?: 'UpdateStaffingPlanPayload';
|
|
2208
|
-
errors?: Maybe<Array<MutationError>>;
|
|
2209
|
-
staffingPlan?: Maybe<StaffingPlan>;
|
|
2210
|
-
};
|
|
2211
2158
|
export type UpdateStatusChangeInput = {
|
|
2212
2159
|
authorId?: InputMaybe<Scalars['ID']['input']>;
|
|
2213
2160
|
id: Scalars['ID']['input'];
|
|
@@ -2853,7 +2800,6 @@ export declare enum WorkOrderStatusEnum {
|
|
|
2853
2800
|
}
|
|
2854
2801
|
export type Workplace = {
|
|
2855
2802
|
__typename?: 'Workplace';
|
|
2856
|
-
colorHex?: Maybe<Scalars['String']['output']>;
|
|
2857
2803
|
currentStatusChange?: Maybe<StatusChange>;
|
|
2858
2804
|
deactivated: Scalars['Boolean']['output'];
|
|
2859
2805
|
departmentId?: Maybe<Scalars['String']['output']>;
|
|
@@ -3164,145 +3110,6 @@ export type WorkplaceFilter = {
|
|
|
3164
3110
|
verify_existence_of_standard_rate_for_order_eq?: InputMaybe<Scalars['String']['input']>;
|
|
3165
3111
|
verify_existence_of_standard_rate_for_order_equals?: InputMaybe<Scalars['String']['input']>;
|
|
3166
3112
|
};
|
|
3167
|
-
export type BulkUpdateStaffingPlansMutationVariables = Exact<{
|
|
3168
|
-
input: BulkStaffingPlanInput;
|
|
3169
|
-
}>;
|
|
3170
|
-
export type BulkUpdateStaffingPlansMutation = {
|
|
3171
|
-
__typename?: 'Mutation';
|
|
3172
|
-
bulkUpdateStaffingPlans: {
|
|
3173
|
-
__typename?: 'BulkUpdateStaffingPlansPayload';
|
|
3174
|
-
errors?: Array<{
|
|
3175
|
-
__typename?: 'MutationError';
|
|
3176
|
-
field?: string | null;
|
|
3177
|
-
messages: Array<string>;
|
|
3178
|
-
}> | null;
|
|
3179
|
-
staffingPlans?: Array<{
|
|
3180
|
-
__typename?: 'StaffingPlan';
|
|
3181
|
-
id: string;
|
|
3182
|
-
date: any;
|
|
3183
|
-
recommendedOperators: number;
|
|
3184
|
-
createdAt: any;
|
|
3185
|
-
updatedAt: any;
|
|
3186
|
-
workplace: {
|
|
3187
|
-
__typename?: 'Workplace';
|
|
3188
|
-
colorHex?: string | null;
|
|
3189
|
-
deactivated: boolean;
|
|
3190
|
-
departmentId?: string | null;
|
|
3191
|
-
dtrUrl?: string | null;
|
|
3192
|
-
id: string;
|
|
3193
|
-
minOperators: number;
|
|
3194
|
-
name: string;
|
|
3195
|
-
reasonGroupId: string;
|
|
3196
|
-
reasonsRecommendationsEnabled: boolean;
|
|
3197
|
-
currentStatusChange?: {
|
|
3198
|
-
__typename?: 'StatusChange';
|
|
3199
|
-
finishedAt?: string | null;
|
|
3200
|
-
id: string;
|
|
3201
|
-
note?: string | null;
|
|
3202
|
-
reasonHasBeenRecommended: boolean;
|
|
3203
|
-
startedAt: string;
|
|
3204
|
-
workplaceId: string;
|
|
3205
|
-
author: {
|
|
3206
|
-
__typename?: 'User';
|
|
3207
|
-
id: string;
|
|
3208
|
-
login: string;
|
|
3209
|
-
name: string;
|
|
3210
|
-
};
|
|
3211
|
-
order?: {
|
|
3212
|
-
__typename?: 'Order';
|
|
3213
|
-
executedCount: number;
|
|
3214
|
-
finishedAt?: string | null;
|
|
3215
|
-
id: string;
|
|
3216
|
-
note?: string | null;
|
|
3217
|
-
number: string;
|
|
3218
|
-
plannedCount: number;
|
|
3219
|
-
position?: number | null;
|
|
3220
|
-
startedAt?: string | null;
|
|
3221
|
-
items: Array<{
|
|
3222
|
-
__typename?: 'Item';
|
|
3223
|
-
count: number;
|
|
3224
|
-
id: string;
|
|
3225
|
-
order: {
|
|
3226
|
-
__typename?: 'Order';
|
|
3227
|
-
executedCount: number;
|
|
3228
|
-
finishedAt?: string | null;
|
|
3229
|
-
id: string;
|
|
3230
|
-
note?: string | null;
|
|
3231
|
-
number: string;
|
|
3232
|
-
plannedCount: number;
|
|
3233
|
-
position?: number | null;
|
|
3234
|
-
startedAt?: string | null;
|
|
3235
|
-
workplaces: Array<{
|
|
3236
|
-
__typename?: 'Workplace';
|
|
3237
|
-
colorHex?: string | null;
|
|
3238
|
-
deactivated: boolean;
|
|
3239
|
-
departmentId?: string | null;
|
|
3240
|
-
dtrUrl?: string | null;
|
|
3241
|
-
id: string;
|
|
3242
|
-
minOperators: number;
|
|
3243
|
-
name: string;
|
|
3244
|
-
reasonGroupId: string;
|
|
3245
|
-
reasonsRecommendationsEnabled: boolean;
|
|
3246
|
-
currentStatusChange?: {
|
|
3247
|
-
__typename?: 'StatusChange';
|
|
3248
|
-
finishedAt?: string | null;
|
|
3249
|
-
id: string;
|
|
3250
|
-
note?: string | null;
|
|
3251
|
-
reasonHasBeenRecommended: boolean;
|
|
3252
|
-
startedAt: string;
|
|
3253
|
-
workplaceId: string;
|
|
3254
|
-
product?: {
|
|
3255
|
-
__typename?: 'Product';
|
|
3256
|
-
assemblyManual?: string | null;
|
|
3257
|
-
id: string;
|
|
3258
|
-
name?: string | null;
|
|
3259
|
-
number?: string | null;
|
|
3260
|
-
} | null;
|
|
3261
|
-
reason: {
|
|
3262
|
-
__typename?: 'Reason';
|
|
3263
|
-
acceptanceMonit: boolean;
|
|
3264
|
-
canBeRecommended: boolean;
|
|
3265
|
-
hasNote: boolean;
|
|
3266
|
-
id: string;
|
|
3267
|
-
isNoteRequired: boolean;
|
|
3268
|
-
leaf: boolean;
|
|
3269
|
-
name: string;
|
|
3270
|
-
parentId?: string | null;
|
|
3271
|
-
position: number;
|
|
3272
|
-
reasonGroupId: string;
|
|
3273
|
-
statusColor: AndonLightColor;
|
|
3274
|
-
temporary: boolean;
|
|
3275
|
-
};
|
|
3276
|
-
} | null;
|
|
3277
|
-
}>;
|
|
3278
|
-
};
|
|
3279
|
-
product?: {
|
|
3280
|
-
__typename?: 'Product';
|
|
3281
|
-
assemblyManual?: string | null;
|
|
3282
|
-
id: string;
|
|
3283
|
-
name?: string | null;
|
|
3284
|
-
number?: string | null;
|
|
3285
|
-
} | null;
|
|
3286
|
-
}>;
|
|
3287
|
-
} | null;
|
|
3288
|
-
} | null;
|
|
3289
|
-
};
|
|
3290
|
-
shift: {
|
|
3291
|
-
__typename?: 'Shift';
|
|
3292
|
-
finishedAt: string;
|
|
3293
|
-
id: string;
|
|
3294
|
-
name: string;
|
|
3295
|
-
startedAt: string;
|
|
3296
|
-
};
|
|
3297
|
-
author: {
|
|
3298
|
-
__typename?: 'User';
|
|
3299
|
-
id: string;
|
|
3300
|
-
login: string;
|
|
3301
|
-
name: string;
|
|
3302
|
-
};
|
|
3303
|
-
}> | null;
|
|
3304
|
-
};
|
|
3305
|
-
};
|
|
3306
3113
|
export type CreateDashboardMutationVariables = Exact<{
|
|
3307
3114
|
gridLayout?: InputMaybe<Scalars['String']['input']>;
|
|
3308
3115
|
id: Scalars['ID']['input'];
|
|
@@ -3364,7 +3171,6 @@ export type CreateOrderMutation = {
|
|
|
3364
3171
|
startedAt?: string | null;
|
|
3365
3172
|
workplaces: Array<{
|
|
3366
3173
|
__typename?: 'Workplace';
|
|
3367
|
-
colorHex?: string | null;
|
|
3368
3174
|
deactivated: boolean;
|
|
3369
3175
|
departmentId?: string | null;
|
|
3370
3176
|
dtrUrl?: string | null;
|
|
@@ -3457,145 +3263,6 @@ export type CreateProductMutation = {
|
|
|
3457
3263
|
} | null;
|
|
3458
3264
|
};
|
|
3459
3265
|
};
|
|
3460
|
-
export type CreateStaffingPlanMutationVariables = Exact<{
|
|
3461
|
-
input: StaffingPlanInput;
|
|
3462
|
-
}>;
|
|
3463
|
-
export type CreateStaffingPlanMutation = {
|
|
3464
|
-
__typename?: 'Mutation';
|
|
3465
|
-
createStaffingPlan: {
|
|
3466
|
-
__typename?: 'CreateStaffingPlanPayload';
|
|
3467
|
-
errors?: Array<{
|
|
3468
|
-
__typename?: 'MutationError';
|
|
3469
|
-
field?: string | null;
|
|
3470
|
-
messages: Array<string>;
|
|
3471
|
-
}> | null;
|
|
3472
|
-
staffingPlan?: {
|
|
3473
|
-
__typename?: 'StaffingPlan';
|
|
3474
|
-
id: string;
|
|
3475
|
-
date: any;
|
|
3476
|
-
recommendedOperators: number;
|
|
3477
|
-
createdAt: any;
|
|
3478
|
-
updatedAt: any;
|
|
3479
|
-
workplace: {
|
|
3480
|
-
__typename?: 'Workplace';
|
|
3481
|
-
colorHex?: string | null;
|
|
3482
|
-
deactivated: boolean;
|
|
3483
|
-
departmentId?: string | null;
|
|
3484
|
-
dtrUrl?: string | null;
|
|
3485
|
-
id: string;
|
|
3486
|
-
minOperators: number;
|
|
3487
|
-
name: string;
|
|
3488
|
-
reasonGroupId: string;
|
|
3489
|
-
reasonsRecommendationsEnabled: boolean;
|
|
3490
|
-
currentStatusChange?: {
|
|
3491
|
-
__typename?: 'StatusChange';
|
|
3492
|
-
finishedAt?: string | null;
|
|
3493
|
-
id: string;
|
|
3494
|
-
note?: string | null;
|
|
3495
|
-
reasonHasBeenRecommended: boolean;
|
|
3496
|
-
startedAt: string;
|
|
3497
|
-
workplaceId: string;
|
|
3498
|
-
author: {
|
|
3499
|
-
__typename?: 'User';
|
|
3500
|
-
id: string;
|
|
3501
|
-
login: string;
|
|
3502
|
-
name: string;
|
|
3503
|
-
};
|
|
3504
|
-
order?: {
|
|
3505
|
-
__typename?: 'Order';
|
|
3506
|
-
executedCount: number;
|
|
3507
|
-
finishedAt?: string | null;
|
|
3508
|
-
id: string;
|
|
3509
|
-
note?: string | null;
|
|
3510
|
-
number: string;
|
|
3511
|
-
plannedCount: number;
|
|
3512
|
-
position?: number | null;
|
|
3513
|
-
startedAt?: string | null;
|
|
3514
|
-
items: Array<{
|
|
3515
|
-
__typename?: 'Item';
|
|
3516
|
-
count: number;
|
|
3517
|
-
id: string;
|
|
3518
|
-
order: {
|
|
3519
|
-
__typename?: 'Order';
|
|
3520
|
-
executedCount: number;
|
|
3521
|
-
finishedAt?: string | null;
|
|
3522
|
-
id: string;
|
|
3523
|
-
note?: string | null;
|
|
3524
|
-
number: string;
|
|
3525
|
-
plannedCount: number;
|
|
3526
|
-
position?: number | null;
|
|
3527
|
-
startedAt?: string | null;
|
|
3528
|
-
workplaces: Array<{
|
|
3529
|
-
__typename?: 'Workplace';
|
|
3530
|
-
colorHex?: string | null;
|
|
3531
|
-
deactivated: boolean;
|
|
3532
|
-
departmentId?: string | null;
|
|
3533
|
-
dtrUrl?: string | null;
|
|
3534
|
-
id: string;
|
|
3535
|
-
minOperators: number;
|
|
3536
|
-
name: string;
|
|
3537
|
-
reasonGroupId: string;
|
|
3538
|
-
reasonsRecommendationsEnabled: boolean;
|
|
3539
|
-
currentStatusChange?: {
|
|
3540
|
-
__typename?: 'StatusChange';
|
|
3541
|
-
finishedAt?: string | null;
|
|
3542
|
-
id: string;
|
|
3543
|
-
note?: string | null;
|
|
3544
|
-
reasonHasBeenRecommended: boolean;
|
|
3545
|
-
startedAt: string;
|
|
3546
|
-
workplaceId: string;
|
|
3547
|
-
product?: {
|
|
3548
|
-
__typename?: 'Product';
|
|
3549
|
-
assemblyManual?: string | null;
|
|
3550
|
-
id: string;
|
|
3551
|
-
name?: string | null;
|
|
3552
|
-
number?: string | null;
|
|
3553
|
-
} | null;
|
|
3554
|
-
reason: {
|
|
3555
|
-
__typename?: 'Reason';
|
|
3556
|
-
acceptanceMonit: boolean;
|
|
3557
|
-
canBeRecommended: boolean;
|
|
3558
|
-
hasNote: boolean;
|
|
3559
|
-
id: string;
|
|
3560
|
-
isNoteRequired: boolean;
|
|
3561
|
-
leaf: boolean;
|
|
3562
|
-
name: string;
|
|
3563
|
-
parentId?: string | null;
|
|
3564
|
-
position: number;
|
|
3565
|
-
reasonGroupId: string;
|
|
3566
|
-
statusColor: AndonLightColor;
|
|
3567
|
-
temporary: boolean;
|
|
3568
|
-
};
|
|
3569
|
-
} | null;
|
|
3570
|
-
}>;
|
|
3571
|
-
};
|
|
3572
|
-
product?: {
|
|
3573
|
-
__typename?: 'Product';
|
|
3574
|
-
assemblyManual?: string | null;
|
|
3575
|
-
id: string;
|
|
3576
|
-
name?: string | null;
|
|
3577
|
-
number?: string | null;
|
|
3578
|
-
} | null;
|
|
3579
|
-
}>;
|
|
3580
|
-
} | null;
|
|
3581
|
-
} | null;
|
|
3582
|
-
};
|
|
3583
|
-
shift: {
|
|
3584
|
-
__typename?: 'Shift';
|
|
3585
|
-
finishedAt: string;
|
|
3586
|
-
id: string;
|
|
3587
|
-
name: string;
|
|
3588
|
-
startedAt: string;
|
|
3589
|
-
};
|
|
3590
|
-
author: {
|
|
3591
|
-
__typename?: 'User';
|
|
3592
|
-
id: string;
|
|
3593
|
-
login: string;
|
|
3594
|
-
name: string;
|
|
3595
|
-
};
|
|
3596
|
-
} | null;
|
|
3597
|
-
};
|
|
3598
|
-
};
|
|
3599
3266
|
export type CreateStatusChangeMutationVariables = Exact<{
|
|
3600
3267
|
id: Scalars['ID']['input'];
|
|
3601
3268
|
note?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3654,7 +3321,6 @@ export type CreateStatusChangeMutation = {
|
|
|
3654
3321
|
startedAt?: string | null;
|
|
3655
3322
|
workplaces: Array<{
|
|
3656
3323
|
__typename?: 'Workplace';
|
|
3657
|
-
colorHex?: string | null;
|
|
3658
3324
|
deactivated: boolean;
|
|
3659
3325
|
departmentId?: string | null;
|
|
3660
3326
|
dtrUrl?: string | null;
|
|
@@ -3854,7 +3520,6 @@ export type PauseOrderExecutionMutation = {
|
|
|
3854
3520
|
startedAt?: string | null;
|
|
3855
3521
|
workplaces: Array<{
|
|
3856
3522
|
__typename?: 'Workplace';
|
|
3857
|
-
colorHex?: string | null;
|
|
3858
3523
|
deactivated: boolean;
|
|
3859
3524
|
departmentId?: string | null;
|
|
3860
3525
|
dtrUrl?: string | null;
|
|
@@ -4007,6 +3672,21 @@ export type RemoveWorkplaceUsersPresencesMutation = {
|
|
|
4007
3672
|
}> | null;
|
|
4008
3673
|
};
|
|
4009
3674
|
};
|
|
3675
|
+
export type RequestFeatureAccessMutationVariables = Exact<{
|
|
3676
|
+
input: RequestFeatureAccessInput;
|
|
3677
|
+
}>;
|
|
3678
|
+
export type RequestFeatureAccessMutation = {
|
|
3679
|
+
__typename?: 'Mutation';
|
|
3680
|
+
requestFeatureAccess: {
|
|
3681
|
+
__typename?: 'RequestFeatureAccessMutationPayload';
|
|
3682
|
+
success: boolean;
|
|
3683
|
+
errors?: Array<{
|
|
3684
|
+
__typename?: 'MutationError';
|
|
3685
|
+
field?: string | null;
|
|
3686
|
+
messages: Array<string>;
|
|
3687
|
+
}> | null;
|
|
3688
|
+
};
|
|
3689
|
+
};
|
|
4010
3690
|
export type SetCounterMutationVariables = Exact<{
|
|
4011
3691
|
id: Scalars['ID']['input'];
|
|
4012
3692
|
note?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4092,7 +3772,6 @@ export type StartOrderExecutionMutation = {
|
|
|
4092
3772
|
startedAt?: string | null;
|
|
4093
3773
|
workplaces: Array<{
|
|
4094
3774
|
__typename?: 'Workplace';
|
|
4095
|
-
colorHex?: string | null;
|
|
4096
3775
|
deactivated: boolean;
|
|
4097
3776
|
departmentId?: string | null;
|
|
4098
3777
|
dtrUrl?: string | null;
|
|
@@ -4189,6 +3868,21 @@ export type StartOrderExecutionMutation = {
|
|
|
4189
3868
|
} | null;
|
|
4190
3869
|
};
|
|
4191
3870
|
};
|
|
3871
|
+
export type StartTrialMutationVariables = Exact<{
|
|
3872
|
+
input: StartTrialInput;
|
|
3873
|
+
}>;
|
|
3874
|
+
export type StartTrialMutation = {
|
|
3875
|
+
__typename?: 'Mutation';
|
|
3876
|
+
startTrial: {
|
|
3877
|
+
__typename?: 'StartTrialMutationPayload';
|
|
3878
|
+
success: boolean;
|
|
3879
|
+
errors?: Array<{
|
|
3880
|
+
__typename?: 'MutationError';
|
|
3881
|
+
field?: string | null;
|
|
3882
|
+
messages: Array<string>;
|
|
3883
|
+
}> | null;
|
|
3884
|
+
};
|
|
3885
|
+
};
|
|
4192
3886
|
export type StopOrderExecutionMutationVariables = Exact<{
|
|
4193
3887
|
id: Scalars['ID']['input'];
|
|
4194
3888
|
statusChangeId: Scalars['ID']['input'];
|
|
@@ -4241,7 +3935,6 @@ export type StopOrderExecutionMutation = {
|
|
|
4241
3935
|
startedAt?: string | null;
|
|
4242
3936
|
workplaces: Array<{
|
|
4243
3937
|
__typename?: 'Workplace';
|
|
4244
|
-
colorHex?: string | null;
|
|
4245
3938
|
deactivated: boolean;
|
|
4246
3939
|
departmentId?: string | null;
|
|
4247
3940
|
dtrUrl?: string | null;
|
|
@@ -4425,7 +4118,6 @@ export type UpdateOrderMutation = {
|
|
|
4425
4118
|
startedAt?: string | null;
|
|
4426
4119
|
workplaces: Array<{
|
|
4427
4120
|
__typename?: 'Workplace';
|
|
4428
|
-
colorHex?: string | null;
|
|
4429
4121
|
deactivated: boolean;
|
|
4430
4122
|
departmentId?: string | null;
|
|
4431
4123
|
dtrUrl?: string | null;
|
|
@@ -4547,7 +4239,6 @@ export type UpdateOrderExecutionMutation = {
|
|
|
4547
4239
|
startedAt?: string | null;
|
|
4548
4240
|
workplaces: Array<{
|
|
4549
4241
|
__typename?: 'Workplace';
|
|
4550
|
-
colorHex?: string | null;
|
|
4551
4242
|
deactivated: boolean;
|
|
4552
4243
|
departmentId?: string | null;
|
|
4553
4244
|
dtrUrl?: string | null;
|
|
@@ -4644,161 +4335,21 @@ export type UpdateOrderExecutionMutation = {
|
|
|
4644
4335
|
} | null;
|
|
4645
4336
|
};
|
|
4646
4337
|
};
|
|
4647
|
-
export type
|
|
4648
|
-
|
|
4649
|
-
recommendedOperators: Scalars['Int']['input'];
|
|
4338
|
+
export type UpdateStatusChangeMutationVariables = Exact<{
|
|
4339
|
+
input: UpdateStatusChangeInput;
|
|
4650
4340
|
}>;
|
|
4651
|
-
export type
|
|
4341
|
+
export type UpdateStatusChangeMutation = {
|
|
4652
4342
|
__typename?: 'Mutation';
|
|
4653
|
-
|
|
4654
|
-
__typename?: '
|
|
4343
|
+
updateStatusChange: {
|
|
4344
|
+
__typename?: 'UpdateStatusChangePayload';
|
|
4655
4345
|
errors?: Array<{
|
|
4656
4346
|
__typename?: 'MutationError';
|
|
4657
4347
|
field?: string | null;
|
|
4658
4348
|
messages: Array<string>;
|
|
4659
4349
|
}> | null;
|
|
4660
|
-
|
|
4661
|
-
__typename?: '
|
|
4662
|
-
|
|
4663
|
-
date: any;
|
|
4664
|
-
recommendedOperators: number;
|
|
4665
|
-
createdAt: any;
|
|
4666
|
-
updatedAt: any;
|
|
4667
|
-
workplace: {
|
|
4668
|
-
__typename?: 'Workplace';
|
|
4669
|
-
colorHex?: string | null;
|
|
4670
|
-
deactivated: boolean;
|
|
4671
|
-
departmentId?: string | null;
|
|
4672
|
-
dtrUrl?: string | null;
|
|
4673
|
-
id: string;
|
|
4674
|
-
minOperators: number;
|
|
4675
|
-
name: string;
|
|
4676
|
-
reasonGroupId: string;
|
|
4677
|
-
reasonsRecommendationsEnabled: boolean;
|
|
4678
|
-
currentStatusChange?: {
|
|
4679
|
-
__typename?: 'StatusChange';
|
|
4680
|
-
finishedAt?: string | null;
|
|
4681
|
-
id: string;
|
|
4682
|
-
note?: string | null;
|
|
4683
|
-
reasonHasBeenRecommended: boolean;
|
|
4684
|
-
startedAt: string;
|
|
4685
|
-
workplaceId: string;
|
|
4686
|
-
author: {
|
|
4687
|
-
__typename?: 'User';
|
|
4688
|
-
id: string;
|
|
4689
|
-
login: string;
|
|
4690
|
-
name: string;
|
|
4691
|
-
};
|
|
4692
|
-
order?: {
|
|
4693
|
-
__typename?: 'Order';
|
|
4694
|
-
executedCount: number;
|
|
4695
|
-
finishedAt?: string | null;
|
|
4696
|
-
id: string;
|
|
4697
|
-
note?: string | null;
|
|
4698
|
-
number: string;
|
|
4699
|
-
plannedCount: number;
|
|
4700
|
-
position?: number | null;
|
|
4701
|
-
startedAt?: string | null;
|
|
4702
|
-
items: Array<{
|
|
4703
|
-
__typename?: 'Item';
|
|
4704
|
-
count: number;
|
|
4705
|
-
id: string;
|
|
4706
|
-
order: {
|
|
4707
|
-
__typename?: 'Order';
|
|
4708
|
-
executedCount: number;
|
|
4709
|
-
finishedAt?: string | null;
|
|
4710
|
-
id: string;
|
|
4711
|
-
note?: string | null;
|
|
4712
|
-
number: string;
|
|
4713
|
-
plannedCount: number;
|
|
4714
|
-
position?: number | null;
|
|
4715
|
-
startedAt?: string | null;
|
|
4716
|
-
workplaces: Array<{
|
|
4717
|
-
__typename?: 'Workplace';
|
|
4718
|
-
colorHex?: string | null;
|
|
4719
|
-
deactivated: boolean;
|
|
4720
|
-
departmentId?: string | null;
|
|
4721
|
-
dtrUrl?: string | null;
|
|
4722
|
-
id: string;
|
|
4723
|
-
minOperators: number;
|
|
4724
|
-
name: string;
|
|
4725
|
-
reasonGroupId: string;
|
|
4726
|
-
reasonsRecommendationsEnabled: boolean;
|
|
4727
|
-
currentStatusChange?: {
|
|
4728
|
-
__typename?: 'StatusChange';
|
|
4729
|
-
finishedAt?: string | null;
|
|
4730
|
-
id: string;
|
|
4731
|
-
note?: string | null;
|
|
4732
|
-
reasonHasBeenRecommended: boolean;
|
|
4733
|
-
startedAt: string;
|
|
4734
|
-
workplaceId: string;
|
|
4735
|
-
product?: {
|
|
4736
|
-
__typename?: 'Product';
|
|
4737
|
-
assemblyManual?: string | null;
|
|
4738
|
-
id: string;
|
|
4739
|
-
name?: string | null;
|
|
4740
|
-
number?: string | null;
|
|
4741
|
-
} | null;
|
|
4742
|
-
reason: {
|
|
4743
|
-
__typename?: 'Reason';
|
|
4744
|
-
acceptanceMonit: boolean;
|
|
4745
|
-
canBeRecommended: boolean;
|
|
4746
|
-
hasNote: boolean;
|
|
4747
|
-
id: string;
|
|
4748
|
-
isNoteRequired: boolean;
|
|
4749
|
-
leaf: boolean;
|
|
4750
|
-
name: string;
|
|
4751
|
-
parentId?: string | null;
|
|
4752
|
-
position: number;
|
|
4753
|
-
reasonGroupId: string;
|
|
4754
|
-
statusColor: AndonLightColor;
|
|
4755
|
-
temporary: boolean;
|
|
4756
|
-
};
|
|
4757
|
-
} | null;
|
|
4758
|
-
}>;
|
|
4759
|
-
};
|
|
4760
|
-
product?: {
|
|
4761
|
-
__typename?: 'Product';
|
|
4762
|
-
assemblyManual?: string | null;
|
|
4763
|
-
id: string;
|
|
4764
|
-
name?: string | null;
|
|
4765
|
-
number?: string | null;
|
|
4766
|
-
} | null;
|
|
4767
|
-
}>;
|
|
4768
|
-
} | null;
|
|
4769
|
-
} | null;
|
|
4770
|
-
};
|
|
4771
|
-
shift: {
|
|
4772
|
-
__typename?: 'Shift';
|
|
4773
|
-
finishedAt: string;
|
|
4774
|
-
id: string;
|
|
4775
|
-
name: string;
|
|
4776
|
-
startedAt: string;
|
|
4777
|
-
};
|
|
4778
|
-
author: {
|
|
4779
|
-
__typename?: 'User';
|
|
4780
|
-
id: string;
|
|
4781
|
-
login: string;
|
|
4782
|
-
name: string;
|
|
4783
|
-
};
|
|
4784
|
-
} | null;
|
|
4785
|
-
};
|
|
4786
|
-
};
|
|
4787
|
-
export type UpdateStatusChangeMutationVariables = Exact<{
|
|
4788
|
-
input: UpdateStatusChangeInput;
|
|
4789
|
-
}>;
|
|
4790
|
-
export type UpdateStatusChangeMutation = {
|
|
4791
|
-
__typename?: 'Mutation';
|
|
4792
|
-
updateStatusChange: {
|
|
4793
|
-
__typename?: 'UpdateStatusChangePayload';
|
|
4794
|
-
errors?: Array<{
|
|
4795
|
-
__typename?: 'MutationError';
|
|
4796
|
-
field?: string | null;
|
|
4797
|
-
messages: Array<string>;
|
|
4798
|
-
}> | null;
|
|
4799
|
-
statusChange?: {
|
|
4800
|
-
__typename?: 'StatusChange';
|
|
4801
|
-
finishedAt?: string | null;
|
|
4350
|
+
statusChange?: {
|
|
4351
|
+
__typename?: 'StatusChange';
|
|
4352
|
+
finishedAt?: string | null;
|
|
4802
4353
|
id: string;
|
|
4803
4354
|
note?: string | null;
|
|
4804
4355
|
reasonHasBeenRecommended: boolean;
|
|
@@ -4836,7 +4387,6 @@ export type UpdateStatusChangeMutation = {
|
|
|
4836
4387
|
startedAt?: string | null;
|
|
4837
4388
|
workplaces: Array<{
|
|
4838
4389
|
__typename?: 'Workplace';
|
|
4839
|
-
colorHex?: string | null;
|
|
4840
4390
|
deactivated: boolean;
|
|
4841
4391
|
departmentId?: string | null;
|
|
4842
4392
|
dtrUrl?: string | null;
|
|
@@ -4998,7 +4548,6 @@ export type UpdateWorkOrderMutation = {
|
|
|
4998
4548
|
} | null;
|
|
4999
4549
|
workplaces: Array<{
|
|
5000
4550
|
__typename?: 'Workplace';
|
|
5001
|
-
colorHex?: string | null;
|
|
5002
4551
|
deactivated: boolean;
|
|
5003
4552
|
departmentId?: string | null;
|
|
5004
4553
|
dtrUrl?: string | null;
|
|
@@ -5047,7 +4596,6 @@ export type UpdateWorkOrderMutation = {
|
|
|
5047
4596
|
startedAt?: string | null;
|
|
5048
4597
|
workplaces: Array<{
|
|
5049
4598
|
__typename?: 'Workplace';
|
|
5050
|
-
colorHex?: string | null;
|
|
5051
4599
|
deactivated: boolean;
|
|
5052
4600
|
departmentId?: string | null;
|
|
5053
4601
|
dtrUrl?: string | null;
|
|
@@ -5094,130 +4642,6 @@ export type UpdateWorkOrderMutation = {
|
|
|
5094
4642
|
} | null;
|
|
5095
4643
|
};
|
|
5096
4644
|
};
|
|
5097
|
-
export type ActualStaffingCountsQueryVariables = Exact<{
|
|
5098
|
-
filter?: InputMaybe<ActualStaffingCountFilter>;
|
|
5099
|
-
}>;
|
|
5100
|
-
export type ActualStaffingCountsQuery = {
|
|
5101
|
-
__typename?: 'Query';
|
|
5102
|
-
actualStaffingCounts: Array<{
|
|
5103
|
-
__typename?: 'ActualStaffingCount';
|
|
5104
|
-
date: any;
|
|
5105
|
-
actualOperators: number;
|
|
5106
|
-
plannedOperators?: number | null;
|
|
5107
|
-
hasDeviation: boolean;
|
|
5108
|
-
workplace: {
|
|
5109
|
-
__typename?: 'Workplace';
|
|
5110
|
-
colorHex?: string | null;
|
|
5111
|
-
deactivated: boolean;
|
|
5112
|
-
departmentId?: string | null;
|
|
5113
|
-
dtrUrl?: string | null;
|
|
5114
|
-
id: string;
|
|
5115
|
-
minOperators: number;
|
|
5116
|
-
name: string;
|
|
5117
|
-
reasonGroupId: string;
|
|
5118
|
-
reasonsRecommendationsEnabled: boolean;
|
|
5119
|
-
currentStatusChange?: {
|
|
5120
|
-
__typename?: 'StatusChange';
|
|
5121
|
-
finishedAt?: string | null;
|
|
5122
|
-
id: string;
|
|
5123
|
-
note?: string | null;
|
|
5124
|
-
reasonHasBeenRecommended: boolean;
|
|
5125
|
-
startedAt: string;
|
|
5126
|
-
workplaceId: string;
|
|
5127
|
-
author: {
|
|
5128
|
-
__typename?: 'User';
|
|
5129
|
-
id: string;
|
|
5130
|
-
login: string;
|
|
5131
|
-
name: string;
|
|
5132
|
-
};
|
|
5133
|
-
order?: {
|
|
5134
|
-
__typename?: 'Order';
|
|
5135
|
-
executedCount: number;
|
|
5136
|
-
finishedAt?: string | null;
|
|
5137
|
-
id: string;
|
|
5138
|
-
note?: string | null;
|
|
5139
|
-
number: string;
|
|
5140
|
-
plannedCount: number;
|
|
5141
|
-
position?: number | null;
|
|
5142
|
-
startedAt?: string | null;
|
|
5143
|
-
items: Array<{
|
|
5144
|
-
__typename?: 'Item';
|
|
5145
|
-
count: number;
|
|
5146
|
-
id: string;
|
|
5147
|
-
order: {
|
|
5148
|
-
__typename?: 'Order';
|
|
5149
|
-
executedCount: number;
|
|
5150
|
-
finishedAt?: string | null;
|
|
5151
|
-
id: string;
|
|
5152
|
-
note?: string | null;
|
|
5153
|
-
number: string;
|
|
5154
|
-
plannedCount: number;
|
|
5155
|
-
position?: number | null;
|
|
5156
|
-
startedAt?: string | null;
|
|
5157
|
-
workplaces: Array<{
|
|
5158
|
-
__typename?: 'Workplace';
|
|
5159
|
-
colorHex?: string | null;
|
|
5160
|
-
deactivated: boolean;
|
|
5161
|
-
departmentId?: string | null;
|
|
5162
|
-
dtrUrl?: string | null;
|
|
5163
|
-
id: string;
|
|
5164
|
-
minOperators: number;
|
|
5165
|
-
name: string;
|
|
5166
|
-
reasonGroupId: string;
|
|
5167
|
-
reasonsRecommendationsEnabled: boolean;
|
|
5168
|
-
currentStatusChange?: {
|
|
5169
|
-
__typename?: 'StatusChange';
|
|
5170
|
-
finishedAt?: string | null;
|
|
5171
|
-
id: string;
|
|
5172
|
-
note?: string | null;
|
|
5173
|
-
reasonHasBeenRecommended: boolean;
|
|
5174
|
-
startedAt: string;
|
|
5175
|
-
workplaceId: string;
|
|
5176
|
-
product?: {
|
|
5177
|
-
__typename?: 'Product';
|
|
5178
|
-
assemblyManual?: string | null;
|
|
5179
|
-
id: string;
|
|
5180
|
-
name?: string | null;
|
|
5181
|
-
number?: string | null;
|
|
5182
|
-
} | null;
|
|
5183
|
-
reason: {
|
|
5184
|
-
__typename?: 'Reason';
|
|
5185
|
-
acceptanceMonit: boolean;
|
|
5186
|
-
canBeRecommended: boolean;
|
|
5187
|
-
hasNote: boolean;
|
|
5188
|
-
id: string;
|
|
5189
|
-
isNoteRequired: boolean;
|
|
5190
|
-
leaf: boolean;
|
|
5191
|
-
name: string;
|
|
5192
|
-
parentId?: string | null;
|
|
5193
|
-
position: number;
|
|
5194
|
-
reasonGroupId: string;
|
|
5195
|
-
statusColor: AndonLightColor;
|
|
5196
|
-
temporary: boolean;
|
|
5197
|
-
};
|
|
5198
|
-
} | null;
|
|
5199
|
-
}>;
|
|
5200
|
-
};
|
|
5201
|
-
product?: {
|
|
5202
|
-
__typename?: 'Product';
|
|
5203
|
-
assemblyManual?: string | null;
|
|
5204
|
-
id: string;
|
|
5205
|
-
name?: string | null;
|
|
5206
|
-
number?: string | null;
|
|
5207
|
-
} | null;
|
|
5208
|
-
}>;
|
|
5209
|
-
} | null;
|
|
5210
|
-
} | null;
|
|
5211
|
-
};
|
|
5212
|
-
shift: {
|
|
5213
|
-
__typename?: 'Shift';
|
|
5214
|
-
finishedAt: string;
|
|
5215
|
-
id: string;
|
|
5216
|
-
name: string;
|
|
5217
|
-
startedAt: string;
|
|
5218
|
-
};
|
|
5219
|
-
}>;
|
|
5220
|
-
};
|
|
5221
4645
|
export type ApplicationInfoQueryVariables = Exact<{
|
|
5222
4646
|
[key: string]: never;
|
|
5223
4647
|
}>;
|
|
@@ -5470,7 +4894,6 @@ export type OrdersQuery = {
|
|
|
5470
4894
|
}>;
|
|
5471
4895
|
workplaces: Array<{
|
|
5472
4896
|
__typename?: 'Workplace';
|
|
5473
|
-
colorHex?: string | null;
|
|
5474
4897
|
deactivated: boolean;
|
|
5475
4898
|
departmentId?: string | null;
|
|
5476
4899
|
dtrUrl?: string | null;
|
|
@@ -5532,7 +4955,6 @@ export type OrdersQuery = {
|
|
|
5532
4955
|
}>;
|
|
5533
4956
|
workplaces: Array<{
|
|
5534
4957
|
__typename?: 'Workplace';
|
|
5535
|
-
colorHex?: string | null;
|
|
5536
4958
|
deactivated: boolean;
|
|
5537
4959
|
departmentId?: string | null;
|
|
5538
4960
|
dtrUrl?: string | null;
|
|
@@ -5588,7 +5010,6 @@ export type OrdersExecutionsQuery = {
|
|
|
5588
5010
|
startedAt?: string | null;
|
|
5589
5011
|
workplaces: Array<{
|
|
5590
5012
|
__typename?: 'Workplace';
|
|
5591
|
-
colorHex?: string | null;
|
|
5592
5013
|
deactivated: boolean;
|
|
5593
5014
|
departmentId?: string | null;
|
|
5594
5015
|
dtrUrl?: string | null;
|
|
@@ -5756,137 +5177,6 @@ export type ShiftsQuery = {
|
|
|
5756
5177
|
startedAt: string;
|
|
5757
5178
|
}>;
|
|
5758
5179
|
};
|
|
5759
|
-
export type StaffingPlansQueryVariables = Exact<{
|
|
5760
|
-
filter?: InputMaybe<StaffingPlanFilter>;
|
|
5761
|
-
}>;
|
|
5762
|
-
export type StaffingPlansQuery = {
|
|
5763
|
-
__typename?: 'Query';
|
|
5764
|
-
staffingPlans: Array<{
|
|
5765
|
-
__typename?: 'StaffingPlan';
|
|
5766
|
-
id: string;
|
|
5767
|
-
date: any;
|
|
5768
|
-
recommendedOperators: number;
|
|
5769
|
-
createdAt: any;
|
|
5770
|
-
updatedAt: any;
|
|
5771
|
-
workplace: {
|
|
5772
|
-
__typename?: 'Workplace';
|
|
5773
|
-
colorHex?: string | null;
|
|
5774
|
-
deactivated: boolean;
|
|
5775
|
-
departmentId?: string | null;
|
|
5776
|
-
dtrUrl?: string | null;
|
|
5777
|
-
id: string;
|
|
5778
|
-
minOperators: number;
|
|
5779
|
-
name: string;
|
|
5780
|
-
reasonGroupId: string;
|
|
5781
|
-
reasonsRecommendationsEnabled: boolean;
|
|
5782
|
-
currentStatusChange?: {
|
|
5783
|
-
__typename?: 'StatusChange';
|
|
5784
|
-
finishedAt?: string | null;
|
|
5785
|
-
id: string;
|
|
5786
|
-
note?: string | null;
|
|
5787
|
-
reasonHasBeenRecommended: boolean;
|
|
5788
|
-
startedAt: string;
|
|
5789
|
-
workplaceId: string;
|
|
5790
|
-
author: {
|
|
5791
|
-
__typename?: 'User';
|
|
5792
|
-
id: string;
|
|
5793
|
-
login: string;
|
|
5794
|
-
name: string;
|
|
5795
|
-
};
|
|
5796
|
-
order?: {
|
|
5797
|
-
__typename?: 'Order';
|
|
5798
|
-
executedCount: number;
|
|
5799
|
-
finishedAt?: string | null;
|
|
5800
|
-
id: string;
|
|
5801
|
-
note?: string | null;
|
|
5802
|
-
number: string;
|
|
5803
|
-
plannedCount: number;
|
|
5804
|
-
position?: number | null;
|
|
5805
|
-
startedAt?: string | null;
|
|
5806
|
-
items: Array<{
|
|
5807
|
-
__typename?: 'Item';
|
|
5808
|
-
count: number;
|
|
5809
|
-
id: string;
|
|
5810
|
-
order: {
|
|
5811
|
-
__typename?: 'Order';
|
|
5812
|
-
executedCount: number;
|
|
5813
|
-
finishedAt?: string | null;
|
|
5814
|
-
id: string;
|
|
5815
|
-
note?: string | null;
|
|
5816
|
-
number: string;
|
|
5817
|
-
plannedCount: number;
|
|
5818
|
-
position?: number | null;
|
|
5819
|
-
startedAt?: string | null;
|
|
5820
|
-
workplaces: Array<{
|
|
5821
|
-
__typename?: 'Workplace';
|
|
5822
|
-
colorHex?: string | null;
|
|
5823
|
-
deactivated: boolean;
|
|
5824
|
-
departmentId?: string | null;
|
|
5825
|
-
dtrUrl?: string | null;
|
|
5826
|
-
id: string;
|
|
5827
|
-
minOperators: number;
|
|
5828
|
-
name: string;
|
|
5829
|
-
reasonGroupId: string;
|
|
5830
|
-
reasonsRecommendationsEnabled: boolean;
|
|
5831
|
-
currentStatusChange?: {
|
|
5832
|
-
__typename?: 'StatusChange';
|
|
5833
|
-
finishedAt?: string | null;
|
|
5834
|
-
id: string;
|
|
5835
|
-
note?: string | null;
|
|
5836
|
-
reasonHasBeenRecommended: boolean;
|
|
5837
|
-
startedAt: string;
|
|
5838
|
-
workplaceId: string;
|
|
5839
|
-
product?: {
|
|
5840
|
-
__typename?: 'Product';
|
|
5841
|
-
assemblyManual?: string | null;
|
|
5842
|
-
id: string;
|
|
5843
|
-
name?: string | null;
|
|
5844
|
-
number?: string | null;
|
|
5845
|
-
} | null;
|
|
5846
|
-
reason: {
|
|
5847
|
-
__typename?: 'Reason';
|
|
5848
|
-
acceptanceMonit: boolean;
|
|
5849
|
-
canBeRecommended: boolean;
|
|
5850
|
-
hasNote: boolean;
|
|
5851
|
-
id: string;
|
|
5852
|
-
isNoteRequired: boolean;
|
|
5853
|
-
leaf: boolean;
|
|
5854
|
-
name: string;
|
|
5855
|
-
parentId?: string | null;
|
|
5856
|
-
position: number;
|
|
5857
|
-
reasonGroupId: string;
|
|
5858
|
-
statusColor: AndonLightColor;
|
|
5859
|
-
temporary: boolean;
|
|
5860
|
-
};
|
|
5861
|
-
} | null;
|
|
5862
|
-
}>;
|
|
5863
|
-
};
|
|
5864
|
-
product?: {
|
|
5865
|
-
__typename?: 'Product';
|
|
5866
|
-
assemblyManual?: string | null;
|
|
5867
|
-
id: string;
|
|
5868
|
-
name?: string | null;
|
|
5869
|
-
number?: string | null;
|
|
5870
|
-
} | null;
|
|
5871
|
-
}>;
|
|
5872
|
-
} | null;
|
|
5873
|
-
} | null;
|
|
5874
|
-
};
|
|
5875
|
-
shift: {
|
|
5876
|
-
__typename?: 'Shift';
|
|
5877
|
-
finishedAt: string;
|
|
5878
|
-
id: string;
|
|
5879
|
-
name: string;
|
|
5880
|
-
startedAt: string;
|
|
5881
|
-
};
|
|
5882
|
-
author: {
|
|
5883
|
-
__typename?: 'User';
|
|
5884
|
-
id: string;
|
|
5885
|
-
login: string;
|
|
5886
|
-
name: string;
|
|
5887
|
-
};
|
|
5888
|
-
}>;
|
|
5889
|
-
};
|
|
5890
5180
|
export type StandardRatesQueryVariables = Exact<{
|
|
5891
5181
|
orderExecutionId: Scalars['ID']['input'];
|
|
5892
5182
|
}>;
|
|
@@ -5956,7 +5246,6 @@ export type StatusChangesQuery = {
|
|
|
5956
5246
|
startedAt?: string | null;
|
|
5957
5247
|
workplaces: Array<{
|
|
5958
5248
|
__typename?: 'Workplace';
|
|
5959
|
-
colorHex?: string | null;
|
|
5960
5249
|
deactivated: boolean;
|
|
5961
5250
|
departmentId?: string | null;
|
|
5962
5251
|
dtrUrl?: string | null;
|
|
@@ -6148,7 +5437,6 @@ export type WorkOrdersQuery = {
|
|
|
6148
5437
|
} | null;
|
|
6149
5438
|
workplaces: Array<{
|
|
6150
5439
|
__typename?: 'Workplace';
|
|
6151
|
-
colorHex?: string | null;
|
|
6152
5440
|
deactivated: boolean;
|
|
6153
5441
|
departmentId?: string | null;
|
|
6154
5442
|
dtrUrl?: string | null;
|
|
@@ -6197,7 +5485,6 @@ export type WorkOrdersQuery = {
|
|
|
6197
5485
|
startedAt?: string | null;
|
|
6198
5486
|
workplaces: Array<{
|
|
6199
5487
|
__typename?: 'Workplace';
|
|
6200
|
-
colorHex?: string | null;
|
|
6201
5488
|
deactivated: boolean;
|
|
6202
5489
|
departmentId?: string | null;
|
|
6203
5490
|
dtrUrl?: string | null;
|
|
@@ -6250,7 +5537,6 @@ export type WorkplacesQuery = {
|
|
|
6250
5537
|
__typename?: 'Query';
|
|
6251
5538
|
workplaces: Array<{
|
|
6252
5539
|
__typename?: 'Workplace';
|
|
6253
|
-
colorHex?: string | null;
|
|
6254
5540
|
deactivated: boolean;
|
|
6255
5541
|
departmentId?: string | null;
|
|
6256
5542
|
dtrUrl?: string | null;
|
|
@@ -6299,7 +5585,6 @@ export type WorkplacesQuery = {
|
|
|
6299
5585
|
startedAt?: string | null;
|
|
6300
5586
|
workplaces: Array<{
|
|
6301
5587
|
__typename?: 'Workplace';
|
|
6302
|
-
colorHex?: string | null;
|
|
6303
5588
|
deactivated: boolean;
|
|
6304
5589
|
departmentId?: string | null;
|
|
6305
5590
|
dtrUrl?: string | null;
|
|
@@ -6344,52 +5629,6 @@ export type WorkplacesQuery = {
|
|
|
6344
5629
|
} | null;
|
|
6345
5630
|
}>;
|
|
6346
5631
|
};
|
|
6347
|
-
export type ListActualStaffingCountsQueryVariables = Exact<{
|
|
6348
|
-
filter?: InputMaybe<ActualStaffingCountFilter>;
|
|
6349
|
-
}>;
|
|
6350
|
-
export type ListActualStaffingCountsQuery = {
|
|
6351
|
-
__typename?: 'Query';
|
|
6352
|
-
actualStaffingCounts: Array<{
|
|
6353
|
-
__typename?: 'ActualStaffingCount';
|
|
6354
|
-
date: any;
|
|
6355
|
-
actualOperators: number;
|
|
6356
|
-
plannedOperators?: number | null;
|
|
6357
|
-
hasDeviation: boolean;
|
|
6358
|
-
workplace: {
|
|
6359
|
-
__typename?: 'Workplace';
|
|
6360
|
-
id: string;
|
|
6361
|
-
name: string;
|
|
6362
|
-
};
|
|
6363
|
-
shift: {
|
|
6364
|
-
__typename?: 'Shift';
|
|
6365
|
-
id: string;
|
|
6366
|
-
name: string;
|
|
6367
|
-
};
|
|
6368
|
-
}>;
|
|
6369
|
-
};
|
|
6370
|
-
export type ListStaffingPlansQueryVariables = Exact<{
|
|
6371
|
-
filter?: InputMaybe<StaffingPlanFilter>;
|
|
6372
|
-
}>;
|
|
6373
|
-
export type ListStaffingPlansQuery = {
|
|
6374
|
-
__typename?: 'Query';
|
|
6375
|
-
staffingPlans: Array<{
|
|
6376
|
-
__typename?: 'StaffingPlan';
|
|
6377
|
-
id: string;
|
|
6378
|
-
date: any;
|
|
6379
|
-
recommendedOperators: number;
|
|
6380
|
-
workplace: {
|
|
6381
|
-
__typename?: 'Workplace';
|
|
6382
|
-
id: string;
|
|
6383
|
-
name: string;
|
|
6384
|
-
colorHex?: string | null;
|
|
6385
|
-
};
|
|
6386
|
-
shift: {
|
|
6387
|
-
__typename?: 'Shift';
|
|
6388
|
-
id: string;
|
|
6389
|
-
name: string;
|
|
6390
|
-
};
|
|
6391
|
-
}>;
|
|
6392
|
-
};
|
|
6393
5632
|
export type ListStatusChangesQueryVariables = Exact<{
|
|
6394
5633
|
filter?: InputMaybe<StatusChangeFilter>;
|
|
6395
5634
|
}>;
|
|
@@ -6676,11 +5915,9 @@ export type WorkplaceEventSubscription = {
|
|
|
6676
5915
|
} | null;
|
|
6677
5916
|
};
|
|
6678
5917
|
};
|
|
6679
|
-
export declare const BulkUpdateStaffingPlansDocument: import("graphql/language/ast").DocumentNode;
|
|
6680
5918
|
export declare const CreateDashboardDocument: import("graphql/language/ast").DocumentNode;
|
|
6681
5919
|
export declare const CreateOrderDocument: import("graphql/language/ast").DocumentNode;
|
|
6682
5920
|
export declare const CreateProductDocument: import("graphql/language/ast").DocumentNode;
|
|
6683
|
-
export declare const CreateStaffingPlanDocument: import("graphql/language/ast").DocumentNode;
|
|
6684
5921
|
export declare const CreateStatusChangeDocument: import("graphql/language/ast").DocumentNode;
|
|
6685
5922
|
export declare const CreateUserPresenceDocument: import("graphql/language/ast").DocumentNode;
|
|
6686
5923
|
export declare const CreateWidgetDocument: import("graphql/language/ast").DocumentNode;
|
|
@@ -6689,18 +5926,18 @@ export declare const RemoveDashboardDocument: import("graphql/language/ast").Doc
|
|
|
6689
5926
|
export declare const RemoveUserPresenceDocument: import("graphql/language/ast").DocumentNode;
|
|
6690
5927
|
export declare const RemoveWidgetDocument: import("graphql/language/ast").DocumentNode;
|
|
6691
5928
|
export declare const RemoveWorkplaceUsersPresencesDocument: import("graphql/language/ast").DocumentNode;
|
|
5929
|
+
export declare const RequestFeatureAccessDocument: import("graphql/language/ast").DocumentNode;
|
|
6692
5930
|
export declare const SetCounterDocument: import("graphql/language/ast").DocumentNode;
|
|
6693
5931
|
export declare const StartOrderExecutionDocument: import("graphql/language/ast").DocumentNode;
|
|
5932
|
+
export declare const StartTrialDocument: import("graphql/language/ast").DocumentNode;
|
|
6694
5933
|
export declare const StopOrderExecutionDocument: import("graphql/language/ast").DocumentNode;
|
|
6695
5934
|
export declare const UpdateDashboardDocument: import("graphql/language/ast").DocumentNode;
|
|
6696
5935
|
export declare const UpdateNotificationDocument: import("graphql/language/ast").DocumentNode;
|
|
6697
5936
|
export declare const UpdateOrderDocument: import("graphql/language/ast").DocumentNode;
|
|
6698
5937
|
export declare const UpdateOrderExecutionDocument: import("graphql/language/ast").DocumentNode;
|
|
6699
|
-
export declare const UpdateStaffingPlanDocument: import("graphql/language/ast").DocumentNode;
|
|
6700
5938
|
export declare const UpdateStatusChangeDocument: import("graphql/language/ast").DocumentNode;
|
|
6701
5939
|
export declare const UpdateWidgetDocument: import("graphql/language/ast").DocumentNode;
|
|
6702
5940
|
export declare const UpdateWorkOrderDocument: import("graphql/language/ast").DocumentNode;
|
|
6703
|
-
export declare const ActualStaffingCountsDocument: import("graphql/language/ast").DocumentNode;
|
|
6704
5941
|
export declare const ApplicationInfoDocument: import("graphql/language/ast").DocumentNode;
|
|
6705
5942
|
export declare const CompanyConfigDocument: import("graphql/language/ast").DocumentNode;
|
|
6706
5943
|
export declare const CounterDirectoriesDocument: import("graphql/language/ast").DocumentNode;
|
|
@@ -6718,7 +5955,6 @@ export declare const ProductsDocument: import("graphql/language/ast").DocumentNo
|
|
|
6718
5955
|
export declare const ReasonsDocument: import("graphql/language/ast").DocumentNode;
|
|
6719
5956
|
export declare const ReasonsRecommendationDocument: import("graphql/language/ast").DocumentNode;
|
|
6720
5957
|
export declare const ShiftsDocument: import("graphql/language/ast").DocumentNode;
|
|
6721
|
-
export declare const StaffingPlansDocument: import("graphql/language/ast").DocumentNode;
|
|
6722
5958
|
export declare const StandardRatesDocument: import("graphql/language/ast").DocumentNode;
|
|
6723
5959
|
export declare const StatusChangeTransitionPermissionsDocument: import("graphql/language/ast").DocumentNode;
|
|
6724
5960
|
export declare const StatusChangesDocument: import("graphql/language/ast").DocumentNode;
|
|
@@ -6728,19 +5964,15 @@ export declare const WidgetDocument: import("graphql/language/ast").DocumentNode
|
|
|
6728
5964
|
export declare const WidgetsDocument: import("graphql/language/ast").DocumentNode;
|
|
6729
5965
|
export declare const WorkOrdersDocument: import("graphql/language/ast").DocumentNode;
|
|
6730
5966
|
export declare const WorkplacesDocument: import("graphql/language/ast").DocumentNode;
|
|
6731
|
-
export declare const ListActualStaffingCountsDocument: import("graphql/language/ast").DocumentNode;
|
|
6732
|
-
export declare const ListStaffingPlansDocument: import("graphql/language/ast").DocumentNode;
|
|
6733
5967
|
export declare const ListStatusChangesDocument: import("graphql/language/ast").DocumentNode;
|
|
6734
5968
|
export declare const ListWorkOrdersDocument: import("graphql/language/ast").DocumentNode;
|
|
6735
5969
|
export declare const ListWorkplacesDocument: import("graphql/language/ast").DocumentNode;
|
|
6736
5970
|
export declare const WorkplaceEventDocument: import("graphql/language/ast").DocumentNode;
|
|
6737
5971
|
export type SdkFunctionWrapper = <T>(action: (requestHeaders?: Record<string, string>) => Promise<T>, operationName: string, operationType?: string, variables?: any) => Promise<T>;
|
|
6738
5972
|
export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionWrapper): {
|
|
6739
|
-
bulkUpdateStaffingPlans(variables: BulkUpdateStaffingPlansMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<BulkUpdateStaffingPlansMutation>;
|
|
6740
5973
|
createDashboard(variables: CreateDashboardMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateDashboardMutation>;
|
|
6741
5974
|
createOrder(variables: CreateOrderMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateOrderMutation>;
|
|
6742
5975
|
createProduct(variables: CreateProductMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateProductMutation>;
|
|
6743
|
-
createStaffingPlan(variables: CreateStaffingPlanMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateStaffingPlanMutation>;
|
|
6744
5976
|
createStatusChange(variables: CreateStatusChangeMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateStatusChangeMutation>;
|
|
6745
5977
|
createUserPresence(variables: CreateUserPresenceMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateUserPresenceMutation>;
|
|
6746
5978
|
createWidget(variables: CreateWidgetMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateWidgetMutation>;
|
|
@@ -6749,18 +5981,18 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
6749
5981
|
removeUserPresence(variables: RemoveUserPresenceMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<RemoveUserPresenceMutation>;
|
|
6750
5982
|
removeWidget(variables: RemoveWidgetMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<RemoveWidgetMutation>;
|
|
6751
5983
|
removeWorkplaceUsersPresences(variables: RemoveWorkplaceUsersPresencesMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<RemoveWorkplaceUsersPresencesMutation>;
|
|
5984
|
+
requestFeatureAccess(variables: RequestFeatureAccessMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<RequestFeatureAccessMutation>;
|
|
6752
5985
|
setCounter(variables: SetCounterMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<SetCounterMutation>;
|
|
6753
5986
|
startOrderExecution(variables: StartOrderExecutionMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<StartOrderExecutionMutation>;
|
|
5987
|
+
startTrial(variables: StartTrialMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<StartTrialMutation>;
|
|
6754
5988
|
stopOrderExecution(variables: StopOrderExecutionMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<StopOrderExecutionMutation>;
|
|
6755
5989
|
updateDashboard(variables: UpdateDashboardMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<UpdateDashboardMutation>;
|
|
6756
5990
|
updateNotification(variables: UpdateNotificationMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<UpdateNotificationMutation>;
|
|
6757
5991
|
updateOrder(variables: UpdateOrderMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<UpdateOrderMutation>;
|
|
6758
5992
|
updateOrderExecution(variables: UpdateOrderExecutionMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<UpdateOrderExecutionMutation>;
|
|
6759
|
-
updateStaffingPlan(variables: UpdateStaffingPlanMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<UpdateStaffingPlanMutation>;
|
|
6760
5993
|
updateStatusChange(variables: UpdateStatusChangeMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<UpdateStatusChangeMutation>;
|
|
6761
5994
|
updateWidget(variables: UpdateWidgetMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<UpdateWidgetMutation>;
|
|
6762
5995
|
updateWorkOrder(variables: UpdateWorkOrderMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<UpdateWorkOrderMutation>;
|
|
6763
|
-
actualStaffingCounts(variables?: ActualStaffingCountsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ActualStaffingCountsQuery>;
|
|
6764
5996
|
applicationInfo(variables?: ApplicationInfoQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ApplicationInfoQuery>;
|
|
6765
5997
|
companyConfig(variables?: CompanyConfigQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CompanyConfigQuery>;
|
|
6766
5998
|
counterDirectories(variables?: CounterDirectoriesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CounterDirectoriesQuery>;
|
|
@@ -6778,7 +6010,6 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
6778
6010
|
reasons(variables?: ReasonsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ReasonsQuery>;
|
|
6779
6011
|
reasonsRecommendation(variables: ReasonsRecommendationQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ReasonsRecommendationQuery>;
|
|
6780
6012
|
shifts(variables?: ShiftsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ShiftsQuery>;
|
|
6781
|
-
staffingPlans(variables?: StaffingPlansQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<StaffingPlansQuery>;
|
|
6782
6013
|
standardRates(variables: StandardRatesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<StandardRatesQuery>;
|
|
6783
6014
|
statusChangeTransitionPermissions(variables?: StatusChangeTransitionPermissionsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<StatusChangeTransitionPermissionsQuery>;
|
|
6784
6015
|
statusChanges(variables?: StatusChangesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<StatusChangesQuery>;
|
|
@@ -6788,8 +6019,6 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
6788
6019
|
widgets(variables?: WidgetsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<WidgetsQuery>;
|
|
6789
6020
|
workOrders(variables?: WorkOrdersQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<WorkOrdersQuery>;
|
|
6790
6021
|
workplaces(variables?: WorkplacesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<WorkplacesQuery>;
|
|
6791
|
-
listActualStaffingCounts(variables?: ListActualStaffingCountsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ListActualStaffingCountsQuery>;
|
|
6792
|
-
listStaffingPlans(variables?: ListStaffingPlansQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ListStaffingPlansQuery>;
|
|
6793
6022
|
listStatusChanges(variables?: ListStatusChangesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ListStatusChangesQuery>;
|
|
6794
6023
|
listWorkOrders(variables?: ListWorkOrdersQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ListWorkOrdersQuery>;
|
|
6795
6024
|
listWorkplaces(variables?: ListWorkplacesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ListWorkplacesQuery>;
|