andoncloud-dashboard-toolkit 1.3.20 → 1.3.21
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 +444 -354
- package/dist/index.js +11 -11
- package/dist/index.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -68,6 +68,11 @@ export type ActualStaffingCount = {
|
|
|
68
68
|
shift: Shift;
|
|
69
69
|
workplace: Workplace;
|
|
70
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
|
+
};
|
|
71
76
|
export declare enum AndonLightColor {
|
|
72
77
|
Gray = "gray",
|
|
73
78
|
Green = "green",
|
|
@@ -81,6 +86,11 @@ export type ApplicationInfo = {
|
|
|
81
86
|
export type BulkStaffingPlanInput = {
|
|
82
87
|
plans: Array<StaffingPlanInput>;
|
|
83
88
|
};
|
|
89
|
+
export type BulkUpdateStaffingPlansPayload = {
|
|
90
|
+
__typename?: 'BulkUpdateStaffingPlansPayload';
|
|
91
|
+
errors?: Maybe<Array<MutationError>>;
|
|
92
|
+
staffingPlans?: Maybe<Array<StaffingPlan>>;
|
|
93
|
+
};
|
|
84
94
|
export type CompanyConfig = {
|
|
85
95
|
__typename?: 'CompanyConfig';
|
|
86
96
|
devicesConfigs: Array<DeviceConfig>;
|
|
@@ -435,6 +445,11 @@ export type CreateProductPayload = {
|
|
|
435
445
|
errors?: Maybe<Array<MutationError>>;
|
|
436
446
|
product?: Maybe<Product>;
|
|
437
447
|
};
|
|
448
|
+
export type CreateStaffingPlanPayload = {
|
|
449
|
+
__typename?: 'CreateStaffingPlanPayload';
|
|
450
|
+
errors?: Maybe<Array<MutationError>>;
|
|
451
|
+
staffingPlan?: Maybe<StaffingPlan>;
|
|
452
|
+
};
|
|
438
453
|
/** Autogenerated return type of CreateStatusChange */
|
|
439
454
|
export type CreateStatusChangePayload = {
|
|
440
455
|
__typename?: 'CreateStatusChangePayload';
|
|
@@ -714,11 +729,11 @@ export type MetricValue = {
|
|
|
714
729
|
};
|
|
715
730
|
export type Mutation = {
|
|
716
731
|
__typename?: 'Mutation';
|
|
717
|
-
bulkUpdateStaffingPlans:
|
|
732
|
+
bulkUpdateStaffingPlans: BulkUpdateStaffingPlansPayload;
|
|
718
733
|
createDashboard: CreateDashboardPayload;
|
|
719
734
|
createOrder: CreateOrderPayload;
|
|
720
735
|
createProduct: CreateProductPayload;
|
|
721
|
-
createStaffingPlan:
|
|
736
|
+
createStaffingPlan: CreateStaffingPlanPayload;
|
|
722
737
|
createStatusChange: CreateStatusChangePayload;
|
|
723
738
|
createUserPresence: CreateUserPresencePayload;
|
|
724
739
|
createWidget: CreateWidgetPayload;
|
|
@@ -734,7 +749,7 @@ export type Mutation = {
|
|
|
734
749
|
updateNotification: UpdateNotificationPayload;
|
|
735
750
|
updateOrder: UpdateOrderPayload;
|
|
736
751
|
updateOrderExecution: UpdateOrderExecutionPayload;
|
|
737
|
-
updateStaffingPlan:
|
|
752
|
+
updateStaffingPlan: UpdateStaffingPlanPayload;
|
|
738
753
|
updateStatusChange: UpdateStatusChangePayload;
|
|
739
754
|
updateWidget: UpdateWidgetPayload;
|
|
740
755
|
updateWorkOrder: UpdateWorkOrderPayload;
|
|
@@ -1686,9 +1701,7 @@ export type Query = {
|
|
|
1686
1701
|
workplaces: Array<Workplace>;
|
|
1687
1702
|
};
|
|
1688
1703
|
export type QueryActualStaffingCountsArgs = {
|
|
1689
|
-
|
|
1690
|
-
shiftIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1691
|
-
workplaceIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1704
|
+
filter?: InputMaybe<ActualStaffingCountFilter>;
|
|
1692
1705
|
};
|
|
1693
1706
|
export type QueryCounterDirectoriesArgs = {
|
|
1694
1707
|
filter?: InputMaybe<CounterDirectoryFilter>;
|
|
@@ -1728,10 +1741,7 @@ export type QueryReasonsRecommendationArgs = {
|
|
|
1728
1741
|
workplaceId: Scalars['String']['input'];
|
|
1729
1742
|
};
|
|
1730
1743
|
export type QueryStaffingPlansArgs = {
|
|
1731
|
-
|
|
1732
|
-
dateTo: Scalars['ISO8601Date']['input'];
|
|
1733
|
-
shiftIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1734
|
-
workplaceIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1744
|
+
filter?: InputMaybe<StaffingPlanFilter>;
|
|
1735
1745
|
};
|
|
1736
1746
|
export type QueryStandardRatesArgs = {
|
|
1737
1747
|
orderExecutionId: Scalars['ID']['input'];
|
|
@@ -2004,6 +2014,12 @@ export type StaffingPlan = {
|
|
|
2004
2014
|
updatedAt: Scalars['ISO8601DateTime']['output'];
|
|
2005
2015
|
workplace: Workplace;
|
|
2006
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
|
+
};
|
|
2007
2023
|
export type StaffingPlanInput = {
|
|
2008
2024
|
date: Scalars['ISO8601Date']['input'];
|
|
2009
2025
|
recommendedOperators: Scalars['Int']['input'];
|
|
@@ -2187,6 +2203,11 @@ export type UpdateOrderPayload = {
|
|
|
2187
2203
|
errors?: Maybe<Array<MutationError>>;
|
|
2188
2204
|
order?: Maybe<Order>;
|
|
2189
2205
|
};
|
|
2206
|
+
export type UpdateStaffingPlanPayload = {
|
|
2207
|
+
__typename?: 'UpdateStaffingPlanPayload';
|
|
2208
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2209
|
+
staffingPlan?: Maybe<StaffingPlan>;
|
|
2210
|
+
};
|
|
2190
2211
|
export type UpdateStatusChangeInput = {
|
|
2191
2212
|
authorId?: InputMaybe<Scalars['ID']['input']>;
|
|
2192
2213
|
id: Scalars['ID']['input'];
|
|
@@ -3148,131 +3169,139 @@ export type BulkUpdateStaffingPlansMutationVariables = Exact<{
|
|
|
3148
3169
|
}>;
|
|
3149
3170
|
export type BulkUpdateStaffingPlansMutation = {
|
|
3150
3171
|
__typename?: 'Mutation';
|
|
3151
|
-
bulkUpdateStaffingPlans:
|
|
3152
|
-
__typename?: '
|
|
3153
|
-
|
|
3154
|
-
|
|
3155
|
-
|
|
3156
|
-
|
|
3157
|
-
|
|
3158
|
-
|
|
3159
|
-
__typename?: '
|
|
3160
|
-
colorHex?: string | null;
|
|
3161
|
-
deactivated: boolean;
|
|
3162
|
-
departmentId?: string | null;
|
|
3163
|
-
dtrUrl?: string | null;
|
|
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';
|
|
3164
3181
|
id: string;
|
|
3165
|
-
|
|
3166
|
-
|
|
3167
|
-
|
|
3168
|
-
|
|
3169
|
-
|
|
3170
|
-
__typename?: '
|
|
3171
|
-
|
|
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;
|
|
3172
3192
|
id: string;
|
|
3173
|
-
|
|
3174
|
-
|
|
3175
|
-
|
|
3176
|
-
|
|
3177
|
-
|
|
3178
|
-
__typename?: '
|
|
3179
|
-
id: string;
|
|
3180
|
-
login: string;
|
|
3181
|
-
name: string;
|
|
3182
|
-
};
|
|
3183
|
-
order?: {
|
|
3184
|
-
__typename?: 'Order';
|
|
3185
|
-
executedCount: number;
|
|
3193
|
+
minOperators: number;
|
|
3194
|
+
name: string;
|
|
3195
|
+
reasonGroupId: string;
|
|
3196
|
+
reasonsRecommendationsEnabled: boolean;
|
|
3197
|
+
currentStatusChange?: {
|
|
3198
|
+
__typename?: 'StatusChange';
|
|
3186
3199
|
finishedAt?: string | null;
|
|
3187
3200
|
id: string;
|
|
3188
3201
|
note?: string | null;
|
|
3189
|
-
|
|
3190
|
-
|
|
3191
|
-
|
|
3192
|
-
|
|
3193
|
-
|
|
3194
|
-
__typename?: 'Item';
|
|
3195
|
-
count: number;
|
|
3202
|
+
reasonHasBeenRecommended: boolean;
|
|
3203
|
+
startedAt: string;
|
|
3204
|
+
workplaceId: string;
|
|
3205
|
+
author: {
|
|
3206
|
+
__typename?: 'User';
|
|
3196
3207
|
id: string;
|
|
3197
|
-
|
|
3198
|
-
|
|
3199
|
-
|
|
3200
|
-
|
|
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;
|
|
3201
3224
|
id: string;
|
|
3202
|
-
|
|
3203
|
-
|
|
3204
|
-
|
|
3205
|
-
|
|
3206
|
-
startedAt?: string | null;
|
|
3207
|
-
workplaces: Array<{
|
|
3208
|
-
__typename?: 'Workplace';
|
|
3209
|
-
colorHex?: string | null;
|
|
3210
|
-
deactivated: boolean;
|
|
3211
|
-
departmentId?: string | null;
|
|
3212
|
-
dtrUrl?: string | null;
|
|
3225
|
+
order: {
|
|
3226
|
+
__typename?: 'Order';
|
|
3227
|
+
executedCount: number;
|
|
3228
|
+
finishedAt?: string | null;
|
|
3213
3229
|
id: string;
|
|
3214
|
-
|
|
3215
|
-
|
|
3216
|
-
|
|
3217
|
-
|
|
3218
|
-
|
|
3219
|
-
|
|
3220
|
-
|
|
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;
|
|
3221
3241
|
id: string;
|
|
3222
|
-
|
|
3223
|
-
|
|
3224
|
-
|
|
3225
|
-
|
|
3226
|
-
|
|
3227
|
-
__typename?: '
|
|
3228
|
-
|
|
3242
|
+
minOperators: number;
|
|
3243
|
+
name: string;
|
|
3244
|
+
reasonGroupId: string;
|
|
3245
|
+
reasonsRecommendationsEnabled: boolean;
|
|
3246
|
+
currentStatusChange?: {
|
|
3247
|
+
__typename?: 'StatusChange';
|
|
3248
|
+
finishedAt?: string | null;
|
|
3229
3249
|
id: string;
|
|
3230
|
-
|
|
3231
|
-
|
|
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
|
+
};
|
|
3232
3276
|
} | null;
|
|
3233
|
-
|
|
3234
|
-
|
|
3235
|
-
|
|
3236
|
-
|
|
3237
|
-
|
|
3238
|
-
|
|
3239
|
-
|
|
3240
|
-
|
|
3241
|
-
|
|
3242
|
-
|
|
3243
|
-
|
|
3244
|
-
reasonGroupId: string;
|
|
3245
|
-
statusColor: AndonLightColor;
|
|
3246
|
-
temporary: boolean;
|
|
3247
|
-
};
|
|
3248
|
-
} | null;
|
|
3249
|
-
}>;
|
|
3250
|
-
};
|
|
3251
|
-
product?: {
|
|
3252
|
-
__typename?: 'Product';
|
|
3253
|
-
assemblyManual?: string | null;
|
|
3254
|
-
id: string;
|
|
3255
|
-
name?: string | null;
|
|
3256
|
-
number?: string | null;
|
|
3257
|
-
} | null;
|
|
3258
|
-
}>;
|
|
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;
|
|
3259
3288
|
} | null;
|
|
3260
|
-
}
|
|
3261
|
-
|
|
3262
|
-
|
|
3263
|
-
|
|
3264
|
-
|
|
3265
|
-
|
|
3266
|
-
|
|
3267
|
-
|
|
3268
|
-
|
|
3269
|
-
|
|
3270
|
-
|
|
3271
|
-
|
|
3272
|
-
|
|
3273
|
-
|
|
3274
|
-
};
|
|
3275
|
-
}
|
|
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
|
+
};
|
|
3276
3305
|
};
|
|
3277
3306
|
export type CreateDashboardMutationVariables = Exact<{
|
|
3278
3307
|
gridLayout?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3434,129 +3463,137 @@ export type CreateStaffingPlanMutationVariables = Exact<{
|
|
|
3434
3463
|
export type CreateStaffingPlanMutation = {
|
|
3435
3464
|
__typename?: 'Mutation';
|
|
3436
3465
|
createStaffingPlan: {
|
|
3437
|
-
__typename?: '
|
|
3438
|
-
|
|
3439
|
-
|
|
3440
|
-
|
|
3441
|
-
|
|
3442
|
-
|
|
3443
|
-
|
|
3444
|
-
__typename?: '
|
|
3445
|
-
colorHex?: string | null;
|
|
3446
|
-
deactivated: boolean;
|
|
3447
|
-
departmentId?: string | null;
|
|
3448
|
-
dtrUrl?: string | null;
|
|
3466
|
+
__typename?: 'CreateStaffingPlanPayload';
|
|
3467
|
+
errors?: Array<{
|
|
3468
|
+
__typename?: 'MutationError';
|
|
3469
|
+
field?: string | null;
|
|
3470
|
+
messages: Array<string>;
|
|
3471
|
+
}> | null;
|
|
3472
|
+
staffingPlan?: {
|
|
3473
|
+
__typename?: 'StaffingPlan';
|
|
3449
3474
|
id: string;
|
|
3450
|
-
|
|
3451
|
-
|
|
3452
|
-
|
|
3453
|
-
|
|
3454
|
-
|
|
3455
|
-
__typename?: '
|
|
3456
|
-
|
|
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;
|
|
3457
3485
|
id: string;
|
|
3458
|
-
|
|
3459
|
-
|
|
3460
|
-
|
|
3461
|
-
|
|
3462
|
-
|
|
3463
|
-
__typename?: '
|
|
3464
|
-
id: string;
|
|
3465
|
-
login: string;
|
|
3466
|
-
name: string;
|
|
3467
|
-
};
|
|
3468
|
-
order?: {
|
|
3469
|
-
__typename?: 'Order';
|
|
3470
|
-
executedCount: number;
|
|
3486
|
+
minOperators: number;
|
|
3487
|
+
name: string;
|
|
3488
|
+
reasonGroupId: string;
|
|
3489
|
+
reasonsRecommendationsEnabled: boolean;
|
|
3490
|
+
currentStatusChange?: {
|
|
3491
|
+
__typename?: 'StatusChange';
|
|
3471
3492
|
finishedAt?: string | null;
|
|
3472
3493
|
id: string;
|
|
3473
3494
|
note?: string | null;
|
|
3474
|
-
|
|
3475
|
-
|
|
3476
|
-
|
|
3477
|
-
|
|
3478
|
-
|
|
3479
|
-
__typename?: 'Item';
|
|
3480
|
-
count: number;
|
|
3495
|
+
reasonHasBeenRecommended: boolean;
|
|
3496
|
+
startedAt: string;
|
|
3497
|
+
workplaceId: string;
|
|
3498
|
+
author: {
|
|
3499
|
+
__typename?: 'User';
|
|
3481
3500
|
id: string;
|
|
3482
|
-
|
|
3483
|
-
|
|
3484
|
-
|
|
3485
|
-
|
|
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;
|
|
3486
3517
|
id: string;
|
|
3487
|
-
|
|
3488
|
-
|
|
3489
|
-
|
|
3490
|
-
|
|
3491
|
-
startedAt?: string | null;
|
|
3492
|
-
workplaces: Array<{
|
|
3493
|
-
__typename?: 'Workplace';
|
|
3494
|
-
colorHex?: string | null;
|
|
3495
|
-
deactivated: boolean;
|
|
3496
|
-
departmentId?: string | null;
|
|
3497
|
-
dtrUrl?: string | null;
|
|
3518
|
+
order: {
|
|
3519
|
+
__typename?: 'Order';
|
|
3520
|
+
executedCount: number;
|
|
3521
|
+
finishedAt?: string | null;
|
|
3498
3522
|
id: string;
|
|
3499
|
-
|
|
3500
|
-
|
|
3501
|
-
|
|
3502
|
-
|
|
3503
|
-
|
|
3504
|
-
|
|
3505
|
-
|
|
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;
|
|
3506
3534
|
id: string;
|
|
3507
|
-
|
|
3508
|
-
|
|
3509
|
-
|
|
3510
|
-
|
|
3511
|
-
|
|
3512
|
-
__typename?: '
|
|
3513
|
-
|
|
3535
|
+
minOperators: number;
|
|
3536
|
+
name: string;
|
|
3537
|
+
reasonGroupId: string;
|
|
3538
|
+
reasonsRecommendationsEnabled: boolean;
|
|
3539
|
+
currentStatusChange?: {
|
|
3540
|
+
__typename?: 'StatusChange';
|
|
3541
|
+
finishedAt?: string | null;
|
|
3514
3542
|
id: string;
|
|
3515
|
-
|
|
3516
|
-
|
|
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
|
+
};
|
|
3517
3569
|
} | null;
|
|
3518
|
-
|
|
3519
|
-
|
|
3520
|
-
|
|
3521
|
-
|
|
3522
|
-
|
|
3523
|
-
|
|
3524
|
-
|
|
3525
|
-
|
|
3526
|
-
|
|
3527
|
-
|
|
3528
|
-
|
|
3529
|
-
reasonGroupId: string;
|
|
3530
|
-
statusColor: AndonLightColor;
|
|
3531
|
-
temporary: boolean;
|
|
3532
|
-
};
|
|
3533
|
-
} | null;
|
|
3534
|
-
}>;
|
|
3535
|
-
};
|
|
3536
|
-
product?: {
|
|
3537
|
-
__typename?: 'Product';
|
|
3538
|
-
assemblyManual?: string | null;
|
|
3539
|
-
id: string;
|
|
3540
|
-
name?: string | null;
|
|
3541
|
-
number?: string | null;
|
|
3542
|
-
} | null;
|
|
3543
|
-
}>;
|
|
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;
|
|
3544
3581
|
} | null;
|
|
3545
|
-
}
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
|
|
3555
|
-
|
|
3556
|
-
|
|
3557
|
-
|
|
3558
|
-
|
|
3559
|
-
};
|
|
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;
|
|
3560
3597
|
};
|
|
3561
3598
|
};
|
|
3562
3599
|
export type CreateStatusChangeMutationVariables = Exact<{
|
|
@@ -4614,129 +4651,137 @@ export type UpdateStaffingPlanMutationVariables = Exact<{
|
|
|
4614
4651
|
export type UpdateStaffingPlanMutation = {
|
|
4615
4652
|
__typename?: 'Mutation';
|
|
4616
4653
|
updateStaffingPlan: {
|
|
4617
|
-
__typename?: '
|
|
4618
|
-
|
|
4619
|
-
|
|
4620
|
-
|
|
4621
|
-
|
|
4622
|
-
|
|
4623
|
-
|
|
4624
|
-
__typename?: '
|
|
4625
|
-
colorHex?: string | null;
|
|
4626
|
-
deactivated: boolean;
|
|
4627
|
-
departmentId?: string | null;
|
|
4628
|
-
dtrUrl?: string | null;
|
|
4654
|
+
__typename?: 'UpdateStaffingPlanPayload';
|
|
4655
|
+
errors?: Array<{
|
|
4656
|
+
__typename?: 'MutationError';
|
|
4657
|
+
field?: string | null;
|
|
4658
|
+
messages: Array<string>;
|
|
4659
|
+
}> | null;
|
|
4660
|
+
staffingPlan?: {
|
|
4661
|
+
__typename?: 'StaffingPlan';
|
|
4629
4662
|
id: string;
|
|
4630
|
-
|
|
4631
|
-
|
|
4632
|
-
|
|
4633
|
-
|
|
4634
|
-
|
|
4635
|
-
__typename?: '
|
|
4636
|
-
|
|
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;
|
|
4637
4673
|
id: string;
|
|
4638
|
-
|
|
4639
|
-
|
|
4640
|
-
|
|
4641
|
-
|
|
4642
|
-
|
|
4643
|
-
__typename?: '
|
|
4644
|
-
id: string;
|
|
4645
|
-
login: string;
|
|
4646
|
-
name: string;
|
|
4647
|
-
};
|
|
4648
|
-
order?: {
|
|
4649
|
-
__typename?: 'Order';
|
|
4650
|
-
executedCount: number;
|
|
4674
|
+
minOperators: number;
|
|
4675
|
+
name: string;
|
|
4676
|
+
reasonGroupId: string;
|
|
4677
|
+
reasonsRecommendationsEnabled: boolean;
|
|
4678
|
+
currentStatusChange?: {
|
|
4679
|
+
__typename?: 'StatusChange';
|
|
4651
4680
|
finishedAt?: string | null;
|
|
4652
4681
|
id: string;
|
|
4653
4682
|
note?: string | null;
|
|
4654
|
-
|
|
4655
|
-
|
|
4656
|
-
|
|
4657
|
-
|
|
4658
|
-
|
|
4659
|
-
__typename?: 'Item';
|
|
4660
|
-
count: number;
|
|
4683
|
+
reasonHasBeenRecommended: boolean;
|
|
4684
|
+
startedAt: string;
|
|
4685
|
+
workplaceId: string;
|
|
4686
|
+
author: {
|
|
4687
|
+
__typename?: 'User';
|
|
4661
4688
|
id: string;
|
|
4662
|
-
|
|
4663
|
-
|
|
4664
|
-
|
|
4665
|
-
|
|
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;
|
|
4666
4705
|
id: string;
|
|
4667
|
-
|
|
4668
|
-
|
|
4669
|
-
|
|
4670
|
-
|
|
4671
|
-
startedAt?: string | null;
|
|
4672
|
-
workplaces: Array<{
|
|
4673
|
-
__typename?: 'Workplace';
|
|
4674
|
-
colorHex?: string | null;
|
|
4675
|
-
deactivated: boolean;
|
|
4676
|
-
departmentId?: string | null;
|
|
4677
|
-
dtrUrl?: string | null;
|
|
4706
|
+
order: {
|
|
4707
|
+
__typename?: 'Order';
|
|
4708
|
+
executedCount: number;
|
|
4709
|
+
finishedAt?: string | null;
|
|
4678
4710
|
id: string;
|
|
4679
|
-
|
|
4680
|
-
|
|
4681
|
-
|
|
4682
|
-
|
|
4683
|
-
|
|
4684
|
-
|
|
4685
|
-
|
|
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;
|
|
4686
4722
|
id: string;
|
|
4687
|
-
|
|
4688
|
-
|
|
4689
|
-
|
|
4690
|
-
|
|
4691
|
-
|
|
4692
|
-
__typename?: '
|
|
4693
|
-
|
|
4723
|
+
minOperators: number;
|
|
4724
|
+
name: string;
|
|
4725
|
+
reasonGroupId: string;
|
|
4726
|
+
reasonsRecommendationsEnabled: boolean;
|
|
4727
|
+
currentStatusChange?: {
|
|
4728
|
+
__typename?: 'StatusChange';
|
|
4729
|
+
finishedAt?: string | null;
|
|
4694
4730
|
id: string;
|
|
4695
|
-
|
|
4696
|
-
|
|
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
|
+
};
|
|
4697
4757
|
} | null;
|
|
4698
|
-
|
|
4699
|
-
|
|
4700
|
-
|
|
4701
|
-
|
|
4702
|
-
|
|
4703
|
-
|
|
4704
|
-
|
|
4705
|
-
|
|
4706
|
-
|
|
4707
|
-
|
|
4708
|
-
|
|
4709
|
-
reasonGroupId: string;
|
|
4710
|
-
statusColor: AndonLightColor;
|
|
4711
|
-
temporary: boolean;
|
|
4712
|
-
};
|
|
4713
|
-
} | null;
|
|
4714
|
-
}>;
|
|
4715
|
-
};
|
|
4716
|
-
product?: {
|
|
4717
|
-
__typename?: 'Product';
|
|
4718
|
-
assemblyManual?: string | null;
|
|
4719
|
-
id: string;
|
|
4720
|
-
name?: string | null;
|
|
4721
|
-
number?: string | null;
|
|
4722
|
-
} | null;
|
|
4723
|
-
}>;
|
|
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;
|
|
4724
4769
|
} | null;
|
|
4725
|
-
}
|
|
4726
|
-
|
|
4727
|
-
|
|
4728
|
-
|
|
4729
|
-
|
|
4730
|
-
|
|
4731
|
-
|
|
4732
|
-
|
|
4733
|
-
|
|
4734
|
-
|
|
4735
|
-
|
|
4736
|
-
|
|
4737
|
-
|
|
4738
|
-
|
|
4739
|
-
};
|
|
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;
|
|
4740
4785
|
};
|
|
4741
4786
|
};
|
|
4742
4787
|
export type UpdateStatusChangeMutationVariables = Exact<{
|
|
@@ -5050,9 +5095,7 @@ export type UpdateWorkOrderMutation = {
|
|
|
5050
5095
|
};
|
|
5051
5096
|
};
|
|
5052
5097
|
export type ActualStaffingCountsQueryVariables = Exact<{
|
|
5053
|
-
|
|
5054
|
-
date: Scalars['ISO8601Date']['input'];
|
|
5055
|
-
shiftIds?: InputMaybe<Array<Scalars['ID']['input']> | Scalars['ID']['input']>;
|
|
5098
|
+
filter?: InputMaybe<ActualStaffingCountFilter>;
|
|
5056
5099
|
}>;
|
|
5057
5100
|
export type ActualStaffingCountsQuery = {
|
|
5058
5101
|
__typename?: 'Query';
|
|
@@ -5714,10 +5757,7 @@ export type ShiftsQuery = {
|
|
|
5714
5757
|
}>;
|
|
5715
5758
|
};
|
|
5716
5759
|
export type StaffingPlansQueryVariables = Exact<{
|
|
5717
|
-
|
|
5718
|
-
dateFrom: Scalars['ISO8601Date']['input'];
|
|
5719
|
-
dateTo: Scalars['ISO8601Date']['input'];
|
|
5720
|
-
shiftIds?: InputMaybe<Array<Scalars['ID']['input']> | Scalars['ID']['input']>;
|
|
5760
|
+
filter?: InputMaybe<StaffingPlanFilter>;
|
|
5721
5761
|
}>;
|
|
5722
5762
|
export type StaffingPlansQuery = {
|
|
5723
5763
|
__typename?: 'Query';
|
|
@@ -6304,6 +6344,52 @@ export type WorkplacesQuery = {
|
|
|
6304
6344
|
} | null;
|
|
6305
6345
|
}>;
|
|
6306
6346
|
};
|
|
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
|
+
};
|
|
6307
6393
|
export type ListStatusChangesQueryVariables = Exact<{
|
|
6308
6394
|
filter?: InputMaybe<StatusChangeFilter>;
|
|
6309
6395
|
}>;
|
|
@@ -6642,6 +6728,8 @@ export declare const WidgetDocument: import("graphql/language/ast").DocumentNode
|
|
|
6642
6728
|
export declare const WidgetsDocument: import("graphql/language/ast").DocumentNode;
|
|
6643
6729
|
export declare const WorkOrdersDocument: import("graphql/language/ast").DocumentNode;
|
|
6644
6730
|
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;
|
|
6645
6733
|
export declare const ListStatusChangesDocument: import("graphql/language/ast").DocumentNode;
|
|
6646
6734
|
export declare const ListWorkOrdersDocument: import("graphql/language/ast").DocumentNode;
|
|
6647
6735
|
export declare const ListWorkplacesDocument: import("graphql/language/ast").DocumentNode;
|
|
@@ -6672,7 +6760,7 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
6672
6760
|
updateStatusChange(variables: UpdateStatusChangeMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<UpdateStatusChangeMutation>;
|
|
6673
6761
|
updateWidget(variables: UpdateWidgetMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<UpdateWidgetMutation>;
|
|
6674
6762
|
updateWorkOrder(variables: UpdateWorkOrderMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<UpdateWorkOrderMutation>;
|
|
6675
|
-
actualStaffingCounts(variables
|
|
6763
|
+
actualStaffingCounts(variables?: ActualStaffingCountsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ActualStaffingCountsQuery>;
|
|
6676
6764
|
applicationInfo(variables?: ApplicationInfoQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ApplicationInfoQuery>;
|
|
6677
6765
|
companyConfig(variables?: CompanyConfigQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CompanyConfigQuery>;
|
|
6678
6766
|
counterDirectories(variables?: CounterDirectoriesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CounterDirectoriesQuery>;
|
|
@@ -6690,7 +6778,7 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
6690
6778
|
reasons(variables?: ReasonsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ReasonsQuery>;
|
|
6691
6779
|
reasonsRecommendation(variables: ReasonsRecommendationQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ReasonsRecommendationQuery>;
|
|
6692
6780
|
shifts(variables?: ShiftsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ShiftsQuery>;
|
|
6693
|
-
staffingPlans(variables
|
|
6781
|
+
staffingPlans(variables?: StaffingPlansQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<StaffingPlansQuery>;
|
|
6694
6782
|
standardRates(variables: StandardRatesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<StandardRatesQuery>;
|
|
6695
6783
|
statusChangeTransitionPermissions(variables?: StatusChangeTransitionPermissionsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<StatusChangeTransitionPermissionsQuery>;
|
|
6696
6784
|
statusChanges(variables?: StatusChangesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<StatusChangesQuery>;
|
|
@@ -6700,6 +6788,8 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
6700
6788
|
widgets(variables?: WidgetsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<WidgetsQuery>;
|
|
6701
6789
|
workOrders(variables?: WorkOrdersQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<WorkOrdersQuery>;
|
|
6702
6790
|
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>;
|
|
6703
6793
|
listStatusChanges(variables?: ListStatusChangesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ListStatusChangesQuery>;
|
|
6704
6794
|
listWorkOrders(variables?: ListWorkOrdersQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ListWorkOrdersQuery>;
|
|
6705
6795
|
listWorkplaces(variables?: ListWorkplacesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ListWorkplacesQuery>;
|