andoncloud-dashboard-toolkit 1.2.8 → 1.2.10
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 +260 -263
- package/dist/index.js +34 -34
- package/dist/index.js.map +1 -1
- package/dist/operations/mutations/index.d.ts +11 -11
- package/dist/operations/queries/index.d.ts +17 -17
- package/dist/types.d.ts +1 -1
- package/package.json +1 -1
|
@@ -2912,37 +2912,37 @@ export declare enum CounterKindEnum {
|
|
|
2912
2912
|
Bad = "bad",
|
|
2913
2913
|
Good = "good"
|
|
2914
2914
|
}
|
|
2915
|
-
/** Autogenerated return type of CreateDashboard */
|
|
2915
|
+
/** Autogenerated return type of CreateDashboard. */
|
|
2916
2916
|
export declare type CreateDashboardPayload = {
|
|
2917
2917
|
__typename?: 'CreateDashboardPayload';
|
|
2918
2918
|
dashboard?: Maybe<Dashboard>;
|
|
2919
2919
|
errors?: Maybe<Array<MutationError>>;
|
|
2920
2920
|
};
|
|
2921
|
-
/** Autogenerated return type of CreateOrder */
|
|
2921
|
+
/** Autogenerated return type of CreateOrder. */
|
|
2922
2922
|
export declare type CreateOrderPayload = {
|
|
2923
2923
|
__typename?: 'CreateOrderPayload';
|
|
2924
2924
|
errors?: Maybe<Array<MutationError>>;
|
|
2925
2925
|
order?: Maybe<Order>;
|
|
2926
2926
|
};
|
|
2927
|
-
/** Autogenerated return type of CreateProduct */
|
|
2927
|
+
/** Autogenerated return type of CreateProduct. */
|
|
2928
2928
|
export declare type CreateProductPayload = {
|
|
2929
2929
|
__typename?: 'CreateProductPayload';
|
|
2930
2930
|
errors?: Maybe<Array<MutationError>>;
|
|
2931
2931
|
product?: Maybe<Product>;
|
|
2932
2932
|
};
|
|
2933
|
-
/** Autogenerated return type of CreateStatusChange */
|
|
2933
|
+
/** Autogenerated return type of CreateStatusChange. */
|
|
2934
2934
|
export declare type CreateStatusChangePayload = {
|
|
2935
2935
|
__typename?: 'CreateStatusChangePayload';
|
|
2936
2936
|
errors?: Maybe<Array<MutationError>>;
|
|
2937
2937
|
statusChange?: Maybe<StatusChange>;
|
|
2938
2938
|
};
|
|
2939
|
-
/** Autogenerated return type of CreateUserPresence */
|
|
2939
|
+
/** Autogenerated return type of CreateUserPresence. */
|
|
2940
2940
|
export declare type CreateUserPresencePayload = {
|
|
2941
2941
|
__typename?: 'CreateUserPresencePayload';
|
|
2942
2942
|
errors?: Maybe<Array<MutationError>>;
|
|
2943
2943
|
userPresence?: Maybe<UserPresence>;
|
|
2944
2944
|
};
|
|
2945
|
-
/** Autogenerated return type of CreateWidget */
|
|
2945
|
+
/** Autogenerated return type of CreateWidget. */
|
|
2946
2946
|
export declare type CreateWidgetPayload = {
|
|
2947
2947
|
__typename?: 'CreateWidgetPayload';
|
|
2948
2948
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -5054,7 +5054,7 @@ export declare type MetricValue = {
|
|
|
5054
5054
|
id: Scalars['ID'];
|
|
5055
5055
|
metricId: Scalars['String'];
|
|
5056
5056
|
statusColor: AndonLightColor;
|
|
5057
|
-
|
|
5057
|
+
textValue?: Maybe<Scalars['String']>;
|
|
5058
5058
|
timer?: Maybe<Scalars['Int']>;
|
|
5059
5059
|
type: MetricTypeEnum;
|
|
5060
5060
|
unit?: Maybe<MetricUnitEnum>;
|
|
@@ -9308,7 +9308,7 @@ export declare type OrderFilter = {
|
|
|
9308
9308
|
uuid_starts_with_any?: InputMaybe<Array<Scalars['String']>>;
|
|
9309
9309
|
uuid_true?: InputMaybe<Scalars['String']>;
|
|
9310
9310
|
};
|
|
9311
|
-
/** Autogenerated return type of PauseOrderExecution */
|
|
9311
|
+
/** Autogenerated return type of PauseOrderExecution. */
|
|
9312
9312
|
export declare type PauseOrderExecutionPayload = {
|
|
9313
9313
|
__typename?: 'PauseOrderExecutionPayload';
|
|
9314
9314
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -10474,7 +10474,6 @@ export declare type QueryProductsArgs = {
|
|
|
10474
10474
|
};
|
|
10475
10475
|
export declare type QueryReasonsArgs = {
|
|
10476
10476
|
filter?: InputMaybe<ReasonFilter>;
|
|
10477
|
-
reasonGroupWorkplaceId?: InputMaybe<Scalars['String']>;
|
|
10478
10477
|
};
|
|
10479
10478
|
export declare type QueryStandardRatesArgs = {
|
|
10480
10479
|
orderExecutionId: Scalars['ID'];
|
|
@@ -12295,22 +12294,22 @@ export declare type ReasonFilter = {
|
|
|
12295
12294
|
updated_at_starts_with_any?: InputMaybe<Array<Scalars['String']>>;
|
|
12296
12295
|
updated_at_true?: InputMaybe<Scalars['String']>;
|
|
12297
12296
|
};
|
|
12298
|
-
/** Autogenerated return type of RemoveDashboard */
|
|
12297
|
+
/** Autogenerated return type of RemoveDashboard. */
|
|
12299
12298
|
export declare type RemoveDashboardPayload = {
|
|
12300
12299
|
__typename?: 'RemoveDashboardPayload';
|
|
12301
12300
|
errors?: Maybe<Array<MutationError>>;
|
|
12302
12301
|
};
|
|
12303
|
-
/** Autogenerated return type of RemoveUserPresence */
|
|
12302
|
+
/** Autogenerated return type of RemoveUserPresence. */
|
|
12304
12303
|
export declare type RemoveUserPresencePayload = {
|
|
12305
12304
|
__typename?: 'RemoveUserPresencePayload';
|
|
12306
12305
|
errors?: Maybe<Array<MutationError>>;
|
|
12307
12306
|
};
|
|
12308
|
-
/** Autogenerated return type of RemoveWidget */
|
|
12307
|
+
/** Autogenerated return type of RemoveWidget. */
|
|
12309
12308
|
export declare type RemoveWidgetPayload = {
|
|
12310
12309
|
__typename?: 'RemoveWidgetPayload';
|
|
12311
12310
|
errors?: Maybe<Array<MutationError>>;
|
|
12312
12311
|
};
|
|
12313
|
-
/** Autogenerated return type of RemoveWorkplaceUsersPresences */
|
|
12312
|
+
/** Autogenerated return type of RemoveWorkplaceUsersPresences. */
|
|
12314
12313
|
export declare type RemoveWorkplaceUsersPresencesPayload = {
|
|
12315
12314
|
__typename?: 'RemoveWorkplaceUsersPresencesPayload';
|
|
12316
12315
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -12334,7 +12333,7 @@ export declare type ScreenSaverConfig = {
|
|
|
12334
12333
|
enabled: Scalars['Boolean'];
|
|
12335
12334
|
idleTime: Scalars['Int'];
|
|
12336
12335
|
};
|
|
12337
|
-
/** Autogenerated return type of SetCounter */
|
|
12336
|
+
/** Autogenerated return type of SetCounter. */
|
|
12338
12337
|
export declare type SetCounterPayload = {
|
|
12339
12338
|
__typename?: 'SetCounterPayload';
|
|
12340
12339
|
counter?: Maybe<Counter>;
|
|
@@ -12352,7 +12351,7 @@ export declare type StandardRate = {
|
|
|
12352
12351
|
id: Scalars['ID'];
|
|
12353
12352
|
label: Scalars['String'];
|
|
12354
12353
|
};
|
|
12355
|
-
/** Autogenerated return type of StartOrderExecution */
|
|
12354
|
+
/** Autogenerated return type of StartOrderExecution. */
|
|
12356
12355
|
export declare type StartOrderExecutionPayload = {
|
|
12357
12356
|
__typename?: 'StartOrderExecutionPayload';
|
|
12358
12357
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -13278,7 +13277,7 @@ export declare enum StatusScreenDisplayBlocksEnum {
|
|
|
13278
13277
|
Orders = "ORDERS",
|
|
13279
13278
|
Presences = "PRESENCES"
|
|
13280
13279
|
}
|
|
13281
|
-
/** Autogenerated return type of StopOrderExecution */
|
|
13280
|
+
/** Autogenerated return type of StopOrderExecution. */
|
|
13282
13281
|
export declare type StopOrderExecutionPayload = {
|
|
13283
13282
|
__typename?: 'StopOrderExecutionPayload';
|
|
13284
13283
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -13291,25 +13290,25 @@ export declare type Subscription = {
|
|
|
13291
13290
|
export declare type SubscriptionWorkplaceEventArgs = {
|
|
13292
13291
|
id: Scalars['ID'];
|
|
13293
13292
|
};
|
|
13294
|
-
/** Autogenerated return type of UpdateDashboard */
|
|
13293
|
+
/** Autogenerated return type of UpdateDashboard. */
|
|
13295
13294
|
export declare type UpdateDashboardPayload = {
|
|
13296
13295
|
__typename?: 'UpdateDashboardPayload';
|
|
13297
13296
|
dashboard?: Maybe<Dashboard>;
|
|
13298
13297
|
errors?: Maybe<Array<MutationError>>;
|
|
13299
13298
|
};
|
|
13300
|
-
/** Autogenerated return type of UpdateNotification */
|
|
13299
|
+
/** Autogenerated return type of UpdateNotification. */
|
|
13301
13300
|
export declare type UpdateNotificationPayload = {
|
|
13302
13301
|
__typename?: 'UpdateNotificationPayload';
|
|
13303
13302
|
errors?: Maybe<Array<MutationError>>;
|
|
13304
13303
|
notification?: Maybe<Notification>;
|
|
13305
13304
|
};
|
|
13306
|
-
/** Autogenerated return type of UpdateOrderExecution */
|
|
13305
|
+
/** Autogenerated return type of UpdateOrderExecution. */
|
|
13307
13306
|
export declare type UpdateOrderExecutionPayload = {
|
|
13308
13307
|
__typename?: 'UpdateOrderExecutionPayload';
|
|
13309
13308
|
errors?: Maybe<Array<MutationError>>;
|
|
13310
13309
|
orderExecution?: Maybe<OrderExecution>;
|
|
13311
13310
|
};
|
|
13312
|
-
/** Autogenerated return type of UpdateWidget */
|
|
13311
|
+
/** Autogenerated return type of UpdateWidget. */
|
|
13313
13312
|
export declare type UpdateWidgetPayload = {
|
|
13314
13313
|
__typename?: 'UpdateWidgetPayload';
|
|
13315
13314
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -18798,7 +18797,7 @@ export declare enum WorkplaceEvent {
|
|
|
18798
18797
|
UserPresenceUpdated = "USER_PRESENCE_UPDATED"
|
|
18799
18798
|
}
|
|
18800
18799
|
export declare type WorkplaceEventSubjectUnion = Counter | MetricValue | Notification | Order | StatusChange | UserPresence;
|
|
18801
|
-
/** Autogenerated return type of WorkplaceEventSubscription */
|
|
18800
|
+
/** Autogenerated return type of WorkplaceEventSubscription. */
|
|
18802
18801
|
export declare type WorkplaceEventSubscriptionPayload = {
|
|
18803
18802
|
__typename?: 'WorkplaceEventSubscriptionPayload';
|
|
18804
18803
|
event: WorkplaceEvent;
|
|
@@ -21388,9 +21387,9 @@ export declare type WorkplaceFilter = {
|
|
|
21388
21387
|
verify_existence_of_standard_rate_for_order_true?: InputMaybe<Scalars['String']>;
|
|
21389
21388
|
};
|
|
21390
21389
|
export declare type CreateDashboardMutationVariables = Exact<{
|
|
21390
|
+
gridLayout?: InputMaybe<Scalars['String']>;
|
|
21391
21391
|
id: Scalars['ID'];
|
|
21392
21392
|
name: Scalars['String'];
|
|
21393
|
-
gridLayout?: InputMaybe<Scalars['String']>;
|
|
21394
21393
|
}>;
|
|
21395
21394
|
export declare type CreateDashboardMutation = {
|
|
21396
21395
|
__typename?: 'Mutation';
|
|
@@ -21398,9 +21397,9 @@ export declare type CreateDashboardMutation = {
|
|
|
21398
21397
|
__typename?: 'CreateDashboardPayload';
|
|
21399
21398
|
dashboard?: {
|
|
21400
21399
|
__typename?: 'Dashboard';
|
|
21400
|
+
gridLayout?: string | null;
|
|
21401
21401
|
id: string;
|
|
21402
21402
|
name: string;
|
|
21403
|
-
gridLayout?: string | null;
|
|
21404
21403
|
} | null;
|
|
21405
21404
|
errors?: Array<{
|
|
21406
21405
|
__typename?: 'MutationError';
|
|
@@ -21417,16 +21416,16 @@ export declare type CreateOrderMutation = {
|
|
|
21417
21416
|
__typename?: 'Mutation';
|
|
21418
21417
|
createOrder: {
|
|
21419
21418
|
__typename?: 'CreateOrderPayload';
|
|
21420
|
-
order?: {
|
|
21421
|
-
__typename?: 'Order';
|
|
21422
|
-
id: string;
|
|
21423
|
-
number: string;
|
|
21424
|
-
} | null;
|
|
21425
21419
|
errors?: Array<{
|
|
21426
21420
|
__typename?: 'MutationError';
|
|
21427
21421
|
field?: string | null;
|
|
21428
21422
|
messages: Array<string>;
|
|
21429
21423
|
}> | null;
|
|
21424
|
+
order?: {
|
|
21425
|
+
__typename?: 'Order';
|
|
21426
|
+
id: string;
|
|
21427
|
+
number: string;
|
|
21428
|
+
} | null;
|
|
21430
21429
|
};
|
|
21431
21430
|
};
|
|
21432
21431
|
export declare type CreateProductMutationVariables = Exact<{
|
|
@@ -21438,52 +21437,44 @@ export declare type CreateProductMutation = {
|
|
|
21438
21437
|
__typename?: 'Mutation';
|
|
21439
21438
|
createProduct: {
|
|
21440
21439
|
__typename?: 'CreateProductPayload';
|
|
21440
|
+
errors?: Array<{
|
|
21441
|
+
__typename?: 'MutationError';
|
|
21442
|
+
field?: string | null;
|
|
21443
|
+
messages: Array<string>;
|
|
21444
|
+
}> | null;
|
|
21441
21445
|
product?: {
|
|
21442
21446
|
__typename?: 'Product';
|
|
21447
|
+
assemblyManual?: string | null;
|
|
21443
21448
|
id: string;
|
|
21444
21449
|
name?: string | null;
|
|
21445
21450
|
number: string;
|
|
21446
|
-
assemblyManual?: string | null;
|
|
21447
21451
|
} | null;
|
|
21448
|
-
errors?: Array<{
|
|
21449
|
-
__typename?: 'MutationError';
|
|
21450
|
-
field?: string | null;
|
|
21451
|
-
messages: Array<string>;
|
|
21452
|
-
}> | null;
|
|
21453
21452
|
};
|
|
21454
21453
|
};
|
|
21455
21454
|
export declare type CreateStatusChangeMutationVariables = Exact<{
|
|
21456
21455
|
id: Scalars['ID'];
|
|
21457
|
-
|
|
21456
|
+
note?: InputMaybe<Scalars['String']>;
|
|
21458
21457
|
reasonId: Scalars['ID'];
|
|
21459
|
-
workplaceId: Scalars['ID'];
|
|
21460
21458
|
startedAt?: InputMaybe<Scalars['String']>;
|
|
21461
|
-
|
|
21459
|
+
userId?: InputMaybe<Scalars['ID']>;
|
|
21460
|
+
workplaceId: Scalars['ID'];
|
|
21462
21461
|
}>;
|
|
21463
21462
|
export declare type CreateStatusChangeMutation = {
|
|
21464
21463
|
__typename?: 'Mutation';
|
|
21465
21464
|
createStatusChange: {
|
|
21466
21465
|
__typename?: 'CreateStatusChangePayload';
|
|
21466
|
+
errors?: Array<{
|
|
21467
|
+
__typename?: 'MutationError';
|
|
21468
|
+
field?: string | null;
|
|
21469
|
+
messages: Array<string>;
|
|
21470
|
+
}> | null;
|
|
21467
21471
|
statusChange?: {
|
|
21468
21472
|
__typename?: 'StatusChange';
|
|
21469
|
-
id: string;
|
|
21470
|
-
workplaceId: string;
|
|
21471
|
-
startedAt: string;
|
|
21472
21473
|
finishedAt?: string | null;
|
|
21474
|
+
id: string;
|
|
21473
21475
|
note?: string | null;
|
|
21474
|
-
|
|
21475
|
-
|
|
21476
|
-
id: string;
|
|
21477
|
-
parentId?: string | null;
|
|
21478
|
-
reasonGroupId: string;
|
|
21479
|
-
name: string;
|
|
21480
|
-
position: number;
|
|
21481
|
-
leaf: boolean;
|
|
21482
|
-
acceptanceMonit: boolean;
|
|
21483
|
-
hasNote: boolean;
|
|
21484
|
-
isNoteRequired: boolean;
|
|
21485
|
-
statusColor: AndonLightColor;
|
|
21486
|
-
};
|
|
21476
|
+
startedAt: string;
|
|
21477
|
+
workplaceId: string;
|
|
21487
21478
|
author: {
|
|
21488
21479
|
__typename?: 'User';
|
|
21489
21480
|
id: string;
|
|
@@ -21497,72 +21488,80 @@ export declare type CreateStatusChangeMutation = {
|
|
|
21497
21488
|
} | null;
|
|
21498
21489
|
product?: {
|
|
21499
21490
|
__typename?: 'Product';
|
|
21491
|
+
assemblyManual?: string | null;
|
|
21500
21492
|
id: string;
|
|
21501
21493
|
name?: string | null;
|
|
21502
21494
|
number: string;
|
|
21503
|
-
assemblyManual?: string | null;
|
|
21504
21495
|
} | null;
|
|
21496
|
+
reason: {
|
|
21497
|
+
__typename?: 'Reason';
|
|
21498
|
+
acceptanceMonit: boolean;
|
|
21499
|
+
hasNote: boolean;
|
|
21500
|
+
id: string;
|
|
21501
|
+
isNoteRequired: boolean;
|
|
21502
|
+
leaf: boolean;
|
|
21503
|
+
name: string;
|
|
21504
|
+
parentId?: string | null;
|
|
21505
|
+
position: number;
|
|
21506
|
+
reasonGroupId: string;
|
|
21507
|
+
statusColor: AndonLightColor;
|
|
21508
|
+
};
|
|
21505
21509
|
} | null;
|
|
21506
|
-
errors?: Array<{
|
|
21507
|
-
__typename?: 'MutationError';
|
|
21508
|
-
field?: string | null;
|
|
21509
|
-
messages: Array<string>;
|
|
21510
|
-
}> | null;
|
|
21511
21510
|
};
|
|
21512
21511
|
};
|
|
21513
21512
|
export declare type CreateUserPresenceMutationVariables = Exact<{
|
|
21514
21513
|
id: Scalars['ID'];
|
|
21515
|
-
workplaceId: Scalars['ID'];
|
|
21516
21514
|
userToken: Scalars['String'];
|
|
21515
|
+
workplaceId: Scalars['ID'];
|
|
21517
21516
|
}>;
|
|
21518
21517
|
export declare type CreateUserPresenceMutation = {
|
|
21519
21518
|
__typename?: 'Mutation';
|
|
21520
21519
|
createUserPresence: {
|
|
21521
21520
|
__typename?: 'CreateUserPresencePayload';
|
|
21521
|
+
errors?: Array<{
|
|
21522
|
+
__typename?: 'MutationError';
|
|
21523
|
+
field?: string | null;
|
|
21524
|
+
messages: Array<string>;
|
|
21525
|
+
}> | null;
|
|
21522
21526
|
userPresence?: {
|
|
21523
21527
|
__typename?: 'UserPresence';
|
|
21528
|
+
finishedAt?: string | null;
|
|
21524
21529
|
id: string;
|
|
21525
|
-
workplaceId: string;
|
|
21526
21530
|
startedAt: string;
|
|
21527
|
-
|
|
21528
|
-
|
|
21531
|
+
workplaceId: string;
|
|
21532
|
+
author: {
|
|
21529
21533
|
__typename?: 'User';
|
|
21530
21534
|
id: string;
|
|
21531
21535
|
login: string;
|
|
21532
21536
|
name: string;
|
|
21533
21537
|
};
|
|
21534
|
-
|
|
21538
|
+
user: {
|
|
21535
21539
|
__typename?: 'User';
|
|
21536
21540
|
id: string;
|
|
21537
21541
|
login: string;
|
|
21538
21542
|
name: string;
|
|
21539
21543
|
};
|
|
21540
21544
|
} | null;
|
|
21541
|
-
errors?: Array<{
|
|
21542
|
-
__typename?: 'MutationError';
|
|
21543
|
-
field?: string | null;
|
|
21544
|
-
messages: Array<string>;
|
|
21545
|
-
}> | null;
|
|
21546
21545
|
};
|
|
21547
21546
|
};
|
|
21548
21547
|
export declare type CreateWidgetMutationVariables = Exact<{
|
|
21549
|
-
id: Scalars['ID'];
|
|
21550
21548
|
config?: InputMaybe<Scalars['String']>;
|
|
21549
|
+
id: Scalars['ID'];
|
|
21551
21550
|
}>;
|
|
21552
21551
|
export declare type CreateWidgetMutation = {
|
|
21553
21552
|
__typename?: 'Mutation';
|
|
21554
21553
|
createWidget: {
|
|
21555
21554
|
__typename?: 'CreateWidgetPayload';
|
|
21556
|
-
widget?: {
|
|
21557
|
-
__typename?: 'Widget';
|
|
21558
|
-
id: string;
|
|
21559
|
-
config?: string | null;
|
|
21560
|
-
} | null;
|
|
21561
21555
|
errors?: Array<{
|
|
21562
21556
|
__typename?: 'MutationError';
|
|
21563
21557
|
field?: string | null;
|
|
21564
21558
|
messages: Array<string>;
|
|
21565
21559
|
}> | null;
|
|
21560
|
+
widget?: {
|
|
21561
|
+
__typename?: 'Widget';
|
|
21562
|
+
config?: string | null;
|
|
21563
|
+
id: string;
|
|
21564
|
+
} | null;
|
|
21566
21565
|
};
|
|
21567
21566
|
};
|
|
21568
21567
|
export declare type PauseOrderExecutionMutationVariables = Exact<{
|
|
@@ -21573,15 +21572,20 @@ export declare type PauseOrderExecutionMutation = {
|
|
|
21573
21572
|
__typename?: 'Mutation';
|
|
21574
21573
|
pauseOrderExecution: {
|
|
21575
21574
|
__typename?: 'PauseOrderExecutionPayload';
|
|
21575
|
+
errors?: Array<{
|
|
21576
|
+
__typename?: 'MutationError';
|
|
21577
|
+
field?: string | null;
|
|
21578
|
+
messages: Array<string>;
|
|
21579
|
+
}> | null;
|
|
21576
21580
|
orderExecution?: {
|
|
21577
21581
|
__typename?: 'OrderExecution';
|
|
21578
|
-
id: string;
|
|
21579
|
-
workplaceId: string;
|
|
21580
|
-
startedAt: string;
|
|
21581
21582
|
finishedAt?: string | null;
|
|
21582
|
-
|
|
21583
|
+
id: string;
|
|
21583
21584
|
note?: string | null;
|
|
21585
|
+
quantity?: number | null;
|
|
21584
21586
|
standardRateMismatched: boolean;
|
|
21587
|
+
startedAt: string;
|
|
21588
|
+
workplaceId: string;
|
|
21585
21589
|
order: {
|
|
21586
21590
|
__typename?: 'Order';
|
|
21587
21591
|
id: string;
|
|
@@ -21589,17 +21593,12 @@ export declare type PauseOrderExecutionMutation = {
|
|
|
21589
21593
|
};
|
|
21590
21594
|
product?: {
|
|
21591
21595
|
__typename?: 'Product';
|
|
21596
|
+
assemblyManual?: string | null;
|
|
21592
21597
|
id: string;
|
|
21593
21598
|
name?: string | null;
|
|
21594
21599
|
number: string;
|
|
21595
|
-
assemblyManual?: string | null;
|
|
21596
21600
|
} | null;
|
|
21597
21601
|
} | null;
|
|
21598
|
-
errors?: Array<{
|
|
21599
|
-
__typename?: 'MutationError';
|
|
21600
|
-
field?: string | null;
|
|
21601
|
-
messages: Array<string>;
|
|
21602
|
-
}> | null;
|
|
21603
21602
|
};
|
|
21604
21603
|
};
|
|
21605
21604
|
export declare type RemoveDashboardMutationVariables = Exact<{
|
|
@@ -21660,8 +21659,8 @@ export declare type RemoveWorkplaceUsersPresencesMutation = {
|
|
|
21660
21659
|
};
|
|
21661
21660
|
export declare type SetCounterMutationVariables = Exact<{
|
|
21662
21661
|
id: Scalars['ID'];
|
|
21663
|
-
value: Scalars['Float'];
|
|
21664
21662
|
note?: InputMaybe<Scalars['String']>;
|
|
21663
|
+
value: Scalars['Float'];
|
|
21665
21664
|
}>;
|
|
21666
21665
|
export declare type SetCounterMutation = {
|
|
21667
21666
|
__typename?: 'Mutation';
|
|
@@ -21669,15 +21668,15 @@ export declare type SetCounterMutation = {
|
|
|
21669
21668
|
__typename?: 'SetCounterPayload';
|
|
21670
21669
|
counter?: {
|
|
21671
21670
|
__typename?: 'Counter';
|
|
21671
|
+
directoryId?: string | null;
|
|
21672
|
+
hasNote: boolean;
|
|
21672
21673
|
id: string;
|
|
21673
21674
|
kind: CounterKindEnum;
|
|
21674
|
-
workplaceId: string;
|
|
21675
|
-
directoryId?: string | null;
|
|
21676
|
-
reasonId: string;
|
|
21677
21675
|
name: string;
|
|
21678
|
-
value: number;
|
|
21679
21676
|
position: number;
|
|
21680
|
-
|
|
21677
|
+
reasonId: string;
|
|
21678
|
+
value: number;
|
|
21679
|
+
workplaceId: string;
|
|
21681
21680
|
} | null;
|
|
21682
21681
|
errors?: Array<{
|
|
21683
21682
|
__typename?: 'MutationError';
|
|
@@ -21688,26 +21687,31 @@ export declare type SetCounterMutation = {
|
|
|
21688
21687
|
};
|
|
21689
21688
|
export declare type StartOrderExecutionMutationVariables = Exact<{
|
|
21690
21689
|
id: Scalars['ID'];
|
|
21691
|
-
|
|
21690
|
+
note?: InputMaybe<Scalars['String']>;
|
|
21692
21691
|
orderId: Scalars['ID'];
|
|
21693
21692
|
productId?: InputMaybe<Scalars['ID']>;
|
|
21694
|
-
statusChangeId: Scalars['ID'];
|
|
21695
21693
|
quantity?: InputMaybe<Scalars['Float']>;
|
|
21696
|
-
|
|
21694
|
+
statusChangeId: Scalars['ID'];
|
|
21695
|
+
workplaceId: Scalars['ID'];
|
|
21697
21696
|
}>;
|
|
21698
21697
|
export declare type StartOrderExecutionMutation = {
|
|
21699
21698
|
__typename?: 'Mutation';
|
|
21700
21699
|
startOrderExecution: {
|
|
21701
21700
|
__typename?: 'StartOrderExecutionPayload';
|
|
21701
|
+
errors?: Array<{
|
|
21702
|
+
__typename?: 'MutationError';
|
|
21703
|
+
field?: string | null;
|
|
21704
|
+
messages: Array<string>;
|
|
21705
|
+
}> | null;
|
|
21702
21706
|
orderExecution?: {
|
|
21703
21707
|
__typename?: 'OrderExecution';
|
|
21704
|
-
id: string;
|
|
21705
|
-
workplaceId: string;
|
|
21706
|
-
startedAt: string;
|
|
21707
21708
|
finishedAt?: string | null;
|
|
21708
|
-
|
|
21709
|
+
id: string;
|
|
21709
21710
|
note?: string | null;
|
|
21711
|
+
quantity?: number | null;
|
|
21710
21712
|
standardRateMismatched: boolean;
|
|
21713
|
+
startedAt: string;
|
|
21714
|
+
workplaceId: string;
|
|
21711
21715
|
order: {
|
|
21712
21716
|
__typename?: 'Order';
|
|
21713
21717
|
id: string;
|
|
@@ -21715,17 +21719,12 @@ export declare type StartOrderExecutionMutation = {
|
|
|
21715
21719
|
};
|
|
21716
21720
|
product?: {
|
|
21717
21721
|
__typename?: 'Product';
|
|
21722
|
+
assemblyManual?: string | null;
|
|
21718
21723
|
id: string;
|
|
21719
21724
|
name?: string | null;
|
|
21720
21725
|
number: string;
|
|
21721
|
-
assemblyManual?: string | null;
|
|
21722
21726
|
} | null;
|
|
21723
21727
|
} | null;
|
|
21724
|
-
errors?: Array<{
|
|
21725
|
-
__typename?: 'MutationError';
|
|
21726
|
-
field?: string | null;
|
|
21727
|
-
messages: Array<string>;
|
|
21728
|
-
}> | null;
|
|
21729
21728
|
};
|
|
21730
21729
|
};
|
|
21731
21730
|
export declare type StopOrderExecutionMutationVariables = Exact<{
|
|
@@ -21736,15 +21735,20 @@ export declare type StopOrderExecutionMutation = {
|
|
|
21736
21735
|
__typename?: 'Mutation';
|
|
21737
21736
|
stopOrderExecution: {
|
|
21738
21737
|
__typename?: 'StopOrderExecutionPayload';
|
|
21738
|
+
errors?: Array<{
|
|
21739
|
+
__typename?: 'MutationError';
|
|
21740
|
+
field?: string | null;
|
|
21741
|
+
messages: Array<string>;
|
|
21742
|
+
}> | null;
|
|
21739
21743
|
orderExecution?: {
|
|
21740
21744
|
__typename?: 'OrderExecution';
|
|
21741
|
-
id: string;
|
|
21742
|
-
workplaceId: string;
|
|
21743
|
-
startedAt: string;
|
|
21744
21745
|
finishedAt?: string | null;
|
|
21745
|
-
|
|
21746
|
+
id: string;
|
|
21746
21747
|
note?: string | null;
|
|
21748
|
+
quantity?: number | null;
|
|
21747
21749
|
standardRateMismatched: boolean;
|
|
21750
|
+
startedAt: string;
|
|
21751
|
+
workplaceId: string;
|
|
21748
21752
|
order: {
|
|
21749
21753
|
__typename?: 'Order';
|
|
21750
21754
|
id: string;
|
|
@@ -21752,23 +21756,18 @@ export declare type StopOrderExecutionMutation = {
|
|
|
21752
21756
|
};
|
|
21753
21757
|
product?: {
|
|
21754
21758
|
__typename?: 'Product';
|
|
21759
|
+
assemblyManual?: string | null;
|
|
21755
21760
|
id: string;
|
|
21756
21761
|
name?: string | null;
|
|
21757
21762
|
number: string;
|
|
21758
|
-
assemblyManual?: string | null;
|
|
21759
21763
|
} | null;
|
|
21760
21764
|
} | null;
|
|
21761
|
-
errors?: Array<{
|
|
21762
|
-
__typename?: 'MutationError';
|
|
21763
|
-
field?: string | null;
|
|
21764
|
-
messages: Array<string>;
|
|
21765
|
-
}> | null;
|
|
21766
21765
|
};
|
|
21767
21766
|
};
|
|
21768
21767
|
export declare type UpdateDashboardMutationVariables = Exact<{
|
|
21768
|
+
gridLayout: Scalars['String'];
|
|
21769
21769
|
id: Scalars['ID'];
|
|
21770
21770
|
name?: InputMaybe<Scalars['String']>;
|
|
21771
|
-
gridLayout: Scalars['String'];
|
|
21772
21771
|
}>;
|
|
21773
21772
|
export declare type UpdateDashboardMutation = {
|
|
21774
21773
|
__typename?: 'Mutation';
|
|
@@ -21776,9 +21775,9 @@ export declare type UpdateDashboardMutation = {
|
|
|
21776
21775
|
__typename?: 'UpdateDashboardPayload';
|
|
21777
21776
|
dashboard?: {
|
|
21778
21777
|
__typename?: 'Dashboard';
|
|
21778
|
+
gridLayout?: string | null;
|
|
21779
21779
|
id: string;
|
|
21780
21780
|
name: string;
|
|
21781
|
-
gridLayout?: string | null;
|
|
21782
21781
|
} | null;
|
|
21783
21782
|
errors?: Array<{
|
|
21784
21783
|
__typename?: 'MutationError';
|
|
@@ -21795,23 +21794,23 @@ export declare type UpdateNotificationMutation = {
|
|
|
21795
21794
|
__typename?: 'Mutation';
|
|
21796
21795
|
updateNotification: {
|
|
21797
21796
|
__typename?: 'UpdateNotificationPayload';
|
|
21797
|
+
errors?: Array<{
|
|
21798
|
+
__typename?: 'MutationError';
|
|
21799
|
+
field?: string | null;
|
|
21800
|
+
messages: Array<string>;
|
|
21801
|
+
}> | null;
|
|
21798
21802
|
notification?: {
|
|
21799
21803
|
__typename?: 'Notification';
|
|
21800
21804
|
channel?: string | null;
|
|
21805
|
+
details?: string | null;
|
|
21801
21806
|
emitterId: string;
|
|
21802
21807
|
emitterType: string;
|
|
21803
21808
|
id: string;
|
|
21804
21809
|
message: string;
|
|
21805
|
-
details?: string | null;
|
|
21806
21810
|
receiverId: string;
|
|
21807
21811
|
receiverType: string;
|
|
21808
21812
|
status?: string | null;
|
|
21809
21813
|
} | null;
|
|
21810
|
-
errors?: Array<{
|
|
21811
|
-
__typename?: 'MutationError';
|
|
21812
|
-
field?: string | null;
|
|
21813
|
-
messages: Array<string>;
|
|
21814
|
-
}> | null;
|
|
21815
21814
|
};
|
|
21816
21815
|
};
|
|
21817
21816
|
export declare type UpdateOrderExecutionMutationVariables = Exact<{
|
|
@@ -21822,15 +21821,20 @@ export declare type UpdateOrderExecutionMutation = {
|
|
|
21822
21821
|
__typename?: 'Mutation';
|
|
21823
21822
|
updateOrderExecution: {
|
|
21824
21823
|
__typename?: 'UpdateOrderExecutionPayload';
|
|
21824
|
+
errors?: Array<{
|
|
21825
|
+
__typename?: 'MutationError';
|
|
21826
|
+
field?: string | null;
|
|
21827
|
+
messages: Array<string>;
|
|
21828
|
+
}> | null;
|
|
21825
21829
|
orderExecution?: {
|
|
21826
21830
|
__typename?: 'OrderExecution';
|
|
21827
|
-
id: string;
|
|
21828
|
-
workplaceId: string;
|
|
21829
|
-
startedAt: string;
|
|
21830
21831
|
finishedAt?: string | null;
|
|
21831
|
-
|
|
21832
|
+
id: string;
|
|
21832
21833
|
note?: string | null;
|
|
21834
|
+
quantity?: number | null;
|
|
21833
21835
|
standardRateMismatched: boolean;
|
|
21836
|
+
startedAt: string;
|
|
21837
|
+
workplaceId: string;
|
|
21834
21838
|
order: {
|
|
21835
21839
|
__typename?: 'Order';
|
|
21836
21840
|
id: string;
|
|
@@ -21838,37 +21842,32 @@ export declare type UpdateOrderExecutionMutation = {
|
|
|
21838
21842
|
};
|
|
21839
21843
|
product?: {
|
|
21840
21844
|
__typename?: 'Product';
|
|
21845
|
+
assemblyManual?: string | null;
|
|
21841
21846
|
id: string;
|
|
21842
21847
|
name?: string | null;
|
|
21843
21848
|
number: string;
|
|
21844
|
-
assemblyManual?: string | null;
|
|
21845
21849
|
} | null;
|
|
21846
21850
|
} | null;
|
|
21847
|
-
errors?: Array<{
|
|
21848
|
-
__typename?: 'MutationError';
|
|
21849
|
-
field?: string | null;
|
|
21850
|
-
messages: Array<string>;
|
|
21851
|
-
}> | null;
|
|
21852
21851
|
};
|
|
21853
21852
|
};
|
|
21854
21853
|
export declare type UpdateWidgetMutationVariables = Exact<{
|
|
21855
|
-
id: Scalars['ID'];
|
|
21856
21854
|
config: Scalars['String'];
|
|
21855
|
+
id: Scalars['ID'];
|
|
21857
21856
|
}>;
|
|
21858
21857
|
export declare type UpdateWidgetMutation = {
|
|
21859
21858
|
__typename?: 'Mutation';
|
|
21860
21859
|
updateWidget: {
|
|
21861
21860
|
__typename?: 'UpdateWidgetPayload';
|
|
21862
|
-
widget?: {
|
|
21863
|
-
__typename?: 'Widget';
|
|
21864
|
-
id: string;
|
|
21865
|
-
config?: string | null;
|
|
21866
|
-
} | null;
|
|
21867
21861
|
errors?: Array<{
|
|
21868
21862
|
__typename?: 'MutationError';
|
|
21869
21863
|
field?: string | null;
|
|
21870
21864
|
messages: Array<string>;
|
|
21871
21865
|
}> | null;
|
|
21866
|
+
widget?: {
|
|
21867
|
+
__typename?: 'Widget';
|
|
21868
|
+
config?: string | null;
|
|
21869
|
+
id: string;
|
|
21870
|
+
} | null;
|
|
21872
21871
|
};
|
|
21873
21872
|
};
|
|
21874
21873
|
export declare type CompanyConfigQueryVariables = Exact<{
|
|
@@ -21880,14 +21879,20 @@ export declare type CompanyConfigQuery = {
|
|
|
21880
21879
|
__typename?: 'CompanyConfig';
|
|
21881
21880
|
displayedKpiItems: Array<string>;
|
|
21882
21881
|
statusChangeTransitionPermissionsUpdatedAt?: string | null;
|
|
21882
|
+
devicesConfigs: Array<{
|
|
21883
|
+
__typename?: 'DeviceConfig';
|
|
21884
|
+
defaultWorkplaceId: string;
|
|
21885
|
+
deviceId: string;
|
|
21886
|
+
name: string;
|
|
21887
|
+
}>;
|
|
21883
21888
|
productConfig: {
|
|
21884
21889
|
__typename?: 'ProductConfig';
|
|
21885
21890
|
alternativeName: boolean;
|
|
21886
21891
|
formFieldsConfigs: Array<{
|
|
21887
21892
|
__typename?: 'FieldConfig';
|
|
21888
21893
|
name: string;
|
|
21889
|
-
regexp?: string | null;
|
|
21890
21894
|
prefix?: string | null;
|
|
21895
|
+
regexp?: string | null;
|
|
21891
21896
|
unit?: string | null;
|
|
21892
21897
|
}>;
|
|
21893
21898
|
};
|
|
@@ -21897,49 +21902,43 @@ export declare type CompanyConfigQuery = {
|
|
|
21897
21902
|
};
|
|
21898
21903
|
workplacesConfigs: Array<{
|
|
21899
21904
|
__typename?: 'WorkplaceConfig';
|
|
21900
|
-
workplaceId: string;
|
|
21901
21905
|
defaultScreen: ScreenEnum;
|
|
21902
21906
|
menuDisplayItems: Array<ScreenEnum>;
|
|
21903
21907
|
statusScreenDisplayBlocks?: Array<StatusScreenDisplayBlocksEnum> | null;
|
|
21908
|
+
workplaceId: string;
|
|
21904
21909
|
orderConfig: {
|
|
21905
21910
|
__typename?: 'OrderConfig';
|
|
21906
|
-
alternativeName: boolean;
|
|
21907
|
-
featureEnabled: boolean;
|
|
21908
|
-
afterStartOrderExecutionReasonId?: string | null;
|
|
21909
21911
|
afterPauseOrderExecutionReasonId?: string | null;
|
|
21912
|
+
afterStartOrderExecutionReasonId?: string | null;
|
|
21910
21913
|
afterStopOrderExecutionReasonId?: string | null;
|
|
21914
|
+
alternativeName: boolean;
|
|
21915
|
+
featureEnabled: boolean;
|
|
21911
21916
|
stopOrderExecutionEnabled: boolean;
|
|
21912
21917
|
orderExecutionFormFieldsConfigs: Array<{
|
|
21913
21918
|
__typename?: 'FieldConfig';
|
|
21914
21919
|
name: string;
|
|
21915
|
-
regexp?: string | null;
|
|
21916
21920
|
prefix?: string | null;
|
|
21921
|
+
regexp?: string | null;
|
|
21917
21922
|
unit?: string | null;
|
|
21918
21923
|
}>;
|
|
21919
21924
|
orderFormFieldsConfigs: Array<{
|
|
21920
21925
|
__typename?: 'FieldConfig';
|
|
21921
21926
|
name: string;
|
|
21922
|
-
regexp?: string | null;
|
|
21923
21927
|
prefix?: string | null;
|
|
21928
|
+
regexp?: string | null;
|
|
21924
21929
|
unit?: string | null;
|
|
21925
21930
|
}>;
|
|
21926
21931
|
};
|
|
21927
21932
|
screenSaverConfig: {
|
|
21928
21933
|
__typename?: 'ScreenSaverConfig';
|
|
21929
|
-
|
|
21930
|
-
idleTime: number;
|
|
21934
|
+
autoSignOut: boolean;
|
|
21931
21935
|
displayAfterIdle: boolean;
|
|
21932
|
-
displayAfterStatusChangeCreated: boolean;
|
|
21933
21936
|
displayAfterOrderCreated: boolean;
|
|
21934
|
-
|
|
21937
|
+
displayAfterStatusChangeCreated: boolean;
|
|
21938
|
+
enabled: boolean;
|
|
21939
|
+
idleTime: number;
|
|
21935
21940
|
};
|
|
21936
21941
|
}>;
|
|
21937
|
-
devicesConfigs: Array<{
|
|
21938
|
-
__typename?: 'DeviceConfig';
|
|
21939
|
-
deviceId: string;
|
|
21940
|
-
name: string;
|
|
21941
|
-
defaultWorkplaceId: string;
|
|
21942
|
-
}>;
|
|
21943
21942
|
};
|
|
21944
21943
|
};
|
|
21945
21944
|
export declare type CounterDirectoriesQueryVariables = Exact<{
|
|
@@ -21949,9 +21948,9 @@ export declare type CounterDirectoriesQuery = {
|
|
|
21949
21948
|
__typename?: 'Query';
|
|
21950
21949
|
counterDirectories: Array<{
|
|
21951
21950
|
__typename?: 'CounterDirectory';
|
|
21951
|
+
directoryId?: string | null;
|
|
21952
21952
|
id: string;
|
|
21953
21953
|
name?: string | null;
|
|
21954
|
-
directoryId?: string | null;
|
|
21955
21954
|
position: number;
|
|
21956
21955
|
workplaceId: string;
|
|
21957
21956
|
}>;
|
|
@@ -21963,15 +21962,15 @@ export declare type CountersQuery = {
|
|
|
21963
21962
|
__typename?: 'Query';
|
|
21964
21963
|
counters: Array<{
|
|
21965
21964
|
__typename?: 'Counter';
|
|
21965
|
+
directoryId?: string | null;
|
|
21966
|
+
hasNote: boolean;
|
|
21966
21967
|
id: string;
|
|
21967
21968
|
kind: CounterKindEnum;
|
|
21968
|
-
workplaceId: string;
|
|
21969
|
-
directoryId?: string | null;
|
|
21970
|
-
reasonId: string;
|
|
21971
21969
|
name: string;
|
|
21972
|
-
value: number;
|
|
21973
21970
|
position: number;
|
|
21974
|
-
|
|
21971
|
+
reasonId: string;
|
|
21972
|
+
value: number;
|
|
21973
|
+
workplaceId: string;
|
|
21975
21974
|
}>;
|
|
21976
21975
|
};
|
|
21977
21976
|
export declare type CurrentUserQueryVariables = Exact<{
|
|
@@ -21993,9 +21992,9 @@ export declare type DashboardsQuery = {
|
|
|
21993
21992
|
__typename?: 'Query';
|
|
21994
21993
|
dashboards: Array<{
|
|
21995
21994
|
__typename?: 'Dashboard';
|
|
21995
|
+
gridLayout?: string | null;
|
|
21996
21996
|
id: string;
|
|
21997
21997
|
name: string;
|
|
21998
|
-
gridLayout?: string | null;
|
|
21999
21998
|
}>;
|
|
22000
21999
|
};
|
|
22001
22000
|
export declare type DepartmentsQueryVariables = Exact<{
|
|
@@ -22022,22 +22021,22 @@ export declare type FloorPlansQuery = {
|
|
|
22022
22021
|
}>;
|
|
22023
22022
|
};
|
|
22024
22023
|
export declare type MetricValuesQueryVariables = Exact<{
|
|
22025
|
-
workplaceIds?: InputMaybe<Array<Scalars['ID']> | Scalars['ID']>;
|
|
22026
22024
|
metricIds?: InputMaybe<Array<Scalars['ID']> | Scalars['ID']>;
|
|
22025
|
+
workplaceIds?: InputMaybe<Array<Scalars['ID']> | Scalars['ID']>;
|
|
22027
22026
|
}>;
|
|
22028
22027
|
export declare type MetricValuesQuery = {
|
|
22029
22028
|
__typename?: 'Query';
|
|
22030
22029
|
metricValues: Array<{
|
|
22031
22030
|
__typename?: 'MetricValue';
|
|
22032
|
-
id: string;
|
|
22033
22031
|
active: boolean;
|
|
22034
|
-
|
|
22035
|
-
|
|
22036
|
-
strValue?: string | null;
|
|
22032
|
+
id: string;
|
|
22033
|
+
metricId: string;
|
|
22037
22034
|
statusColor: AndonLightColor;
|
|
22038
|
-
|
|
22035
|
+
textValue?: string | null;
|
|
22036
|
+
timer?: number | null;
|
|
22037
|
+
type: MetricTypeEnum;
|
|
22039
22038
|
unit?: MetricUnitEnum | null;
|
|
22040
|
-
|
|
22039
|
+
workplaceId: string;
|
|
22041
22040
|
}>;
|
|
22042
22041
|
};
|
|
22043
22042
|
export declare type MetricsQueryVariables = Exact<{
|
|
@@ -22059,11 +22058,11 @@ export declare type NotificationsQuery = {
|
|
|
22059
22058
|
notifications: Array<{
|
|
22060
22059
|
__typename?: 'Notification';
|
|
22061
22060
|
channel?: string | null;
|
|
22061
|
+
details?: string | null;
|
|
22062
22062
|
emitterId: string;
|
|
22063
22063
|
emitterType: string;
|
|
22064
22064
|
id: string;
|
|
22065
22065
|
message: string;
|
|
22066
|
-
details?: string | null;
|
|
22067
22066
|
receiverId: string;
|
|
22068
22067
|
receiverType: string;
|
|
22069
22068
|
status?: string | null;
|
|
@@ -22087,13 +22086,13 @@ export declare type OrdersExecutionsQuery = {
|
|
|
22087
22086
|
__typename?: 'Query';
|
|
22088
22087
|
ordersExecutions: Array<{
|
|
22089
22088
|
__typename?: 'OrderExecution';
|
|
22090
|
-
id: string;
|
|
22091
|
-
workplaceId: string;
|
|
22092
|
-
startedAt: string;
|
|
22093
22089
|
finishedAt?: string | null;
|
|
22094
|
-
|
|
22090
|
+
id: string;
|
|
22095
22091
|
note?: string | null;
|
|
22092
|
+
quantity?: number | null;
|
|
22096
22093
|
standardRateMismatched: boolean;
|
|
22094
|
+
startedAt: string;
|
|
22095
|
+
workplaceId: string;
|
|
22097
22096
|
order: {
|
|
22098
22097
|
__typename?: 'Order';
|
|
22099
22098
|
id: string;
|
|
@@ -22101,10 +22100,10 @@ export declare type OrdersExecutionsQuery = {
|
|
|
22101
22100
|
};
|
|
22102
22101
|
product?: {
|
|
22103
22102
|
__typename?: 'Product';
|
|
22103
|
+
assemblyManual?: string | null;
|
|
22104
22104
|
id: string;
|
|
22105
22105
|
name?: string | null;
|
|
22106
22106
|
number: string;
|
|
22107
|
-
assemblyManual?: string | null;
|
|
22108
22107
|
} | null;
|
|
22109
22108
|
}>;
|
|
22110
22109
|
};
|
|
@@ -22115,29 +22114,28 @@ export declare type ProductsQuery = {
|
|
|
22115
22114
|
__typename?: 'Query';
|
|
22116
22115
|
products: Array<{
|
|
22117
22116
|
__typename?: 'Product';
|
|
22117
|
+
assemblyManual?: string | null;
|
|
22118
22118
|
id: string;
|
|
22119
22119
|
name?: string | null;
|
|
22120
22120
|
number: string;
|
|
22121
|
-
assemblyManual?: string | null;
|
|
22122
22121
|
}>;
|
|
22123
22122
|
};
|
|
22124
22123
|
export declare type ReasonsQueryVariables = Exact<{
|
|
22125
22124
|
filter?: InputMaybe<ReasonFilter>;
|
|
22126
|
-
reasonGroupWorkplaceId?: InputMaybe<Scalars['String']>;
|
|
22127
22125
|
}>;
|
|
22128
22126
|
export declare type ReasonsQuery = {
|
|
22129
22127
|
__typename?: 'Query';
|
|
22130
22128
|
reasons: Array<{
|
|
22131
22129
|
__typename?: 'Reason';
|
|
22132
|
-
id: string;
|
|
22133
|
-
parentId?: string | null;
|
|
22134
|
-
reasonGroupId: string;
|
|
22135
|
-
name: string;
|
|
22136
|
-
position: number;
|
|
22137
|
-
leaf: boolean;
|
|
22138
22130
|
acceptanceMonit: boolean;
|
|
22139
22131
|
hasNote: boolean;
|
|
22132
|
+
id: string;
|
|
22140
22133
|
isNoteRequired: boolean;
|
|
22134
|
+
leaf: boolean;
|
|
22135
|
+
name: string;
|
|
22136
|
+
parentId?: string | null;
|
|
22137
|
+
position: number;
|
|
22138
|
+
reasonGroupId: string;
|
|
22141
22139
|
statusColor: AndonLightColor;
|
|
22142
22140
|
}>;
|
|
22143
22141
|
};
|
|
@@ -22148,10 +22146,10 @@ export declare type ShiftsQuery = {
|
|
|
22148
22146
|
__typename?: 'Query';
|
|
22149
22147
|
shifts: Array<{
|
|
22150
22148
|
__typename?: 'Shift';
|
|
22149
|
+
finishedAt: string;
|
|
22151
22150
|
id: string;
|
|
22152
22151
|
name: string;
|
|
22153
22152
|
startedAt: string;
|
|
22154
|
-
finishedAt: string;
|
|
22155
22153
|
}>;
|
|
22156
22154
|
};
|
|
22157
22155
|
export declare type StandardRatesQueryVariables = Exact<{
|
|
@@ -22172,10 +22170,10 @@ export declare type StatusChangeTransitionPermissionsQuery = {
|
|
|
22172
22170
|
__typename?: 'Query';
|
|
22173
22171
|
statusChangeTransitionPermissions: Array<{
|
|
22174
22172
|
__typename?: 'StatusChangeTransitionPermission';
|
|
22175
|
-
workplaceId: string;
|
|
22176
|
-
roleId: string;
|
|
22177
22173
|
fromReasonId: string;
|
|
22174
|
+
roleId: string;
|
|
22178
22175
|
toReasonId: string;
|
|
22176
|
+
workplaceId: string;
|
|
22179
22177
|
}>;
|
|
22180
22178
|
};
|
|
22181
22179
|
export declare type StatusChangesQueryVariables = Exact<{
|
|
@@ -22185,24 +22183,11 @@ export declare type StatusChangesQuery = {
|
|
|
22185
22183
|
__typename?: 'Query';
|
|
22186
22184
|
statusChanges: Array<{
|
|
22187
22185
|
__typename?: 'StatusChange';
|
|
22188
|
-
id: string;
|
|
22189
|
-
workplaceId: string;
|
|
22190
|
-
startedAt: string;
|
|
22191
22186
|
finishedAt?: string | null;
|
|
22187
|
+
id: string;
|
|
22192
22188
|
note?: string | null;
|
|
22193
|
-
|
|
22194
|
-
|
|
22195
|
-
id: string;
|
|
22196
|
-
parentId?: string | null;
|
|
22197
|
-
reasonGroupId: string;
|
|
22198
|
-
name: string;
|
|
22199
|
-
position: number;
|
|
22200
|
-
leaf: boolean;
|
|
22201
|
-
acceptanceMonit: boolean;
|
|
22202
|
-
hasNote: boolean;
|
|
22203
|
-
isNoteRequired: boolean;
|
|
22204
|
-
statusColor: AndonLightColor;
|
|
22205
|
-
};
|
|
22189
|
+
startedAt: string;
|
|
22190
|
+
workplaceId: string;
|
|
22206
22191
|
author: {
|
|
22207
22192
|
__typename?: 'User';
|
|
22208
22193
|
id: string;
|
|
@@ -22216,11 +22201,24 @@ export declare type StatusChangesQuery = {
|
|
|
22216
22201
|
} | null;
|
|
22217
22202
|
product?: {
|
|
22218
22203
|
__typename?: 'Product';
|
|
22204
|
+
assemblyManual?: string | null;
|
|
22219
22205
|
id: string;
|
|
22220
22206
|
name?: string | null;
|
|
22221
22207
|
number: string;
|
|
22222
|
-
assemblyManual?: string | null;
|
|
22223
22208
|
} | null;
|
|
22209
|
+
reason: {
|
|
22210
|
+
__typename?: 'Reason';
|
|
22211
|
+
acceptanceMonit: boolean;
|
|
22212
|
+
hasNote: boolean;
|
|
22213
|
+
id: string;
|
|
22214
|
+
isNoteRequired: boolean;
|
|
22215
|
+
leaf: boolean;
|
|
22216
|
+
name: string;
|
|
22217
|
+
parentId?: string | null;
|
|
22218
|
+
position: number;
|
|
22219
|
+
reasonGroupId: string;
|
|
22220
|
+
statusColor: AndonLightColor;
|
|
22221
|
+
};
|
|
22224
22222
|
}>;
|
|
22225
22223
|
};
|
|
22226
22224
|
export declare type UsersQueryVariables = Exact<{
|
|
@@ -22242,17 +22240,17 @@ export declare type UsersPresencesQuery = {
|
|
|
22242
22240
|
__typename?: 'Query';
|
|
22243
22241
|
usersPresences: Array<{
|
|
22244
22242
|
__typename?: 'UserPresence';
|
|
22243
|
+
finishedAt?: string | null;
|
|
22245
22244
|
id: string;
|
|
22246
|
-
workplaceId: string;
|
|
22247
22245
|
startedAt: string;
|
|
22248
|
-
|
|
22249
|
-
|
|
22246
|
+
workplaceId: string;
|
|
22247
|
+
author: {
|
|
22250
22248
|
__typename?: 'User';
|
|
22251
22249
|
id: string;
|
|
22252
22250
|
login: string;
|
|
22253
22251
|
name: string;
|
|
22254
22252
|
};
|
|
22255
|
-
|
|
22253
|
+
user: {
|
|
22256
22254
|
__typename?: 'User';
|
|
22257
22255
|
id: string;
|
|
22258
22256
|
login: string;
|
|
@@ -22267,8 +22265,8 @@ export declare type WidgetQuery = {
|
|
|
22267
22265
|
__typename?: 'Query';
|
|
22268
22266
|
widget: {
|
|
22269
22267
|
__typename?: 'Widget';
|
|
22270
|
-
id: string;
|
|
22271
22268
|
config?: string | null;
|
|
22269
|
+
id: string;
|
|
22272
22270
|
};
|
|
22273
22271
|
};
|
|
22274
22272
|
export declare type WidgetsQueryVariables = Exact<{
|
|
@@ -22278,8 +22276,8 @@ export declare type WidgetsQuery = {
|
|
|
22278
22276
|
__typename?: 'Query';
|
|
22279
22277
|
widgets: Array<{
|
|
22280
22278
|
__typename?: 'Widget';
|
|
22281
|
-
id: string;
|
|
22282
22279
|
config?: string | null;
|
|
22280
|
+
id: string;
|
|
22283
22281
|
}>;
|
|
22284
22282
|
};
|
|
22285
22283
|
export declare type WorkplacesQueryVariables = Exact<{
|
|
@@ -22289,31 +22287,18 @@ export declare type WorkplacesQuery = {
|
|
|
22289
22287
|
__typename?: 'Query';
|
|
22290
22288
|
workplaces: Array<{
|
|
22291
22289
|
__typename?: 'Workplace';
|
|
22290
|
+
departmentId?: string | null;
|
|
22292
22291
|
id: string;
|
|
22292
|
+
minOperators: number;
|
|
22293
22293
|
name: string;
|
|
22294
22294
|
reasonGroupId: string;
|
|
22295
|
-
minOperators: number;
|
|
22296
|
-
departmentId?: string | null;
|
|
22297
22295
|
currentStatusChange?: {
|
|
22298
22296
|
__typename?: 'StatusChange';
|
|
22299
|
-
id: string;
|
|
22300
|
-
workplaceId: string;
|
|
22301
|
-
startedAt: string;
|
|
22302
22297
|
finishedAt?: string | null;
|
|
22298
|
+
id: string;
|
|
22303
22299
|
note?: string | null;
|
|
22304
|
-
|
|
22305
|
-
|
|
22306
|
-
id: string;
|
|
22307
|
-
parentId?: string | null;
|
|
22308
|
-
reasonGroupId: string;
|
|
22309
|
-
name: string;
|
|
22310
|
-
position: number;
|
|
22311
|
-
leaf: boolean;
|
|
22312
|
-
acceptanceMonit: boolean;
|
|
22313
|
-
hasNote: boolean;
|
|
22314
|
-
isNoteRequired: boolean;
|
|
22315
|
-
statusColor: AndonLightColor;
|
|
22316
|
-
};
|
|
22300
|
+
startedAt: string;
|
|
22301
|
+
workplaceId: string;
|
|
22317
22302
|
author: {
|
|
22318
22303
|
__typename?: 'User';
|
|
22319
22304
|
id: string;
|
|
@@ -22327,11 +22312,24 @@ export declare type WorkplacesQuery = {
|
|
|
22327
22312
|
} | null;
|
|
22328
22313
|
product?: {
|
|
22329
22314
|
__typename?: 'Product';
|
|
22315
|
+
assemblyManual?: string | null;
|
|
22330
22316
|
id: string;
|
|
22331
22317
|
name?: string | null;
|
|
22332
22318
|
number: string;
|
|
22333
|
-
assemblyManual?: string | null;
|
|
22334
22319
|
} | null;
|
|
22320
|
+
reason: {
|
|
22321
|
+
__typename?: 'Reason';
|
|
22322
|
+
acceptanceMonit: boolean;
|
|
22323
|
+
hasNote: boolean;
|
|
22324
|
+
id: string;
|
|
22325
|
+
isNoteRequired: boolean;
|
|
22326
|
+
leaf: boolean;
|
|
22327
|
+
name: string;
|
|
22328
|
+
parentId?: string | null;
|
|
22329
|
+
position: number;
|
|
22330
|
+
reasonGroupId: string;
|
|
22331
|
+
statusColor: AndonLightColor;
|
|
22332
|
+
};
|
|
22335
22333
|
} | null;
|
|
22336
22334
|
}>;
|
|
22337
22335
|
};
|
|
@@ -22345,34 +22343,34 @@ export declare type WorkplaceEventSubscription = {
|
|
|
22345
22343
|
event: WorkplaceEvent;
|
|
22346
22344
|
subject?: {
|
|
22347
22345
|
__typename: 'Counter';
|
|
22346
|
+
directoryId?: string | null;
|
|
22347
|
+
hasNote: boolean;
|
|
22348
22348
|
id: string;
|
|
22349
22349
|
kind: CounterKindEnum;
|
|
22350
|
-
workplaceId: string;
|
|
22351
|
-
directoryId?: string | null;
|
|
22352
|
-
reasonId: string;
|
|
22353
22350
|
name: string;
|
|
22354
|
-
value: number;
|
|
22355
22351
|
position: number;
|
|
22356
|
-
|
|
22352
|
+
reasonId: string;
|
|
22353
|
+
value: number;
|
|
22354
|
+
workplaceId: string;
|
|
22357
22355
|
} | {
|
|
22358
22356
|
__typename: 'MetricValue';
|
|
22359
|
-
id: string;
|
|
22360
22357
|
active: boolean;
|
|
22361
|
-
|
|
22362
|
-
|
|
22363
|
-
strValue?: string | null;
|
|
22358
|
+
id: string;
|
|
22359
|
+
metricId: string;
|
|
22364
22360
|
statusColor: AndonLightColor;
|
|
22365
|
-
|
|
22361
|
+
textValue?: string | null;
|
|
22362
|
+
timer?: number | null;
|
|
22363
|
+
type: MetricTypeEnum;
|
|
22366
22364
|
unit?: MetricUnitEnum | null;
|
|
22367
|
-
|
|
22365
|
+
workplaceId: string;
|
|
22368
22366
|
} | {
|
|
22369
22367
|
__typename: 'Notification';
|
|
22370
22368
|
channel?: string | null;
|
|
22369
|
+
details?: string | null;
|
|
22371
22370
|
emitterId: string;
|
|
22372
22371
|
emitterType: string;
|
|
22373
22372
|
id: string;
|
|
22374
22373
|
message: string;
|
|
22375
|
-
details?: string | null;
|
|
22376
22374
|
receiverId: string;
|
|
22377
22375
|
receiverType: string;
|
|
22378
22376
|
status?: string | null;
|
|
@@ -22382,24 +22380,11 @@ export declare type WorkplaceEventSubscription = {
|
|
|
22382
22380
|
number: string;
|
|
22383
22381
|
} | {
|
|
22384
22382
|
__typename: 'StatusChange';
|
|
22385
|
-
id: string;
|
|
22386
|
-
workplaceId: string;
|
|
22387
|
-
startedAt: string;
|
|
22388
22383
|
finishedAt?: string | null;
|
|
22384
|
+
id: string;
|
|
22389
22385
|
note?: string | null;
|
|
22390
|
-
|
|
22391
|
-
|
|
22392
|
-
id: string;
|
|
22393
|
-
parentId?: string | null;
|
|
22394
|
-
reasonGroupId: string;
|
|
22395
|
-
name: string;
|
|
22396
|
-
position: number;
|
|
22397
|
-
leaf: boolean;
|
|
22398
|
-
acceptanceMonit: boolean;
|
|
22399
|
-
hasNote: boolean;
|
|
22400
|
-
isNoteRequired: boolean;
|
|
22401
|
-
statusColor: AndonLightColor;
|
|
22402
|
-
};
|
|
22386
|
+
startedAt: string;
|
|
22387
|
+
workplaceId: string;
|
|
22403
22388
|
author: {
|
|
22404
22389
|
__typename?: 'User';
|
|
22405
22390
|
id: string;
|
|
@@ -22413,24 +22398,37 @@ export declare type WorkplaceEventSubscription = {
|
|
|
22413
22398
|
} | null;
|
|
22414
22399
|
product?: {
|
|
22415
22400
|
__typename?: 'Product';
|
|
22401
|
+
assemblyManual?: string | null;
|
|
22416
22402
|
id: string;
|
|
22417
22403
|
name?: string | null;
|
|
22418
22404
|
number: string;
|
|
22419
|
-
assemblyManual?: string | null;
|
|
22420
22405
|
} | null;
|
|
22406
|
+
reason: {
|
|
22407
|
+
__typename?: 'Reason';
|
|
22408
|
+
acceptanceMonit: boolean;
|
|
22409
|
+
hasNote: boolean;
|
|
22410
|
+
id: string;
|
|
22411
|
+
isNoteRequired: boolean;
|
|
22412
|
+
leaf: boolean;
|
|
22413
|
+
name: string;
|
|
22414
|
+
parentId?: string | null;
|
|
22415
|
+
position: number;
|
|
22416
|
+
reasonGroupId: string;
|
|
22417
|
+
statusColor: AndonLightColor;
|
|
22418
|
+
};
|
|
22421
22419
|
} | {
|
|
22422
22420
|
__typename: 'UserPresence';
|
|
22421
|
+
finishedAt?: string | null;
|
|
22423
22422
|
id: string;
|
|
22424
|
-
workplaceId: string;
|
|
22425
22423
|
startedAt: string;
|
|
22426
|
-
|
|
22427
|
-
|
|
22424
|
+
workplaceId: string;
|
|
22425
|
+
author: {
|
|
22428
22426
|
__typename?: 'User';
|
|
22429
22427
|
id: string;
|
|
22430
22428
|
login: string;
|
|
22431
22429
|
name: string;
|
|
22432
22430
|
};
|
|
22433
|
-
|
|
22431
|
+
user: {
|
|
22434
22432
|
__typename?: 'User';
|
|
22435
22433
|
id: string;
|
|
22436
22434
|
login: string;
|
|
@@ -22523,8 +22521,8 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
22523
22521
|
filter?: FloorPlanFilter | null | undefined;
|
|
22524
22522
|
}> | undefined, requestHeaders?: Dom.RequestInit["headers"]): Promise<FloorPlansQuery>;
|
|
22525
22523
|
metricValues(variables?: Exact<{
|
|
22526
|
-
workplaceIds?: string | string[] | null | undefined;
|
|
22527
22524
|
metricIds?: string | string[] | null | undefined;
|
|
22525
|
+
workplaceIds?: string | string[] | null | undefined;
|
|
22528
22526
|
}> | undefined, requestHeaders?: Dom.RequestInit["headers"]): Promise<MetricValuesQuery>;
|
|
22529
22527
|
metrics(variables?: Exact<{
|
|
22530
22528
|
[key: string]: never;
|
|
@@ -22543,7 +22541,6 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
22543
22541
|
}> | undefined, requestHeaders?: Dom.RequestInit["headers"]): Promise<ProductsQuery>;
|
|
22544
22542
|
reasons(variables?: Exact<{
|
|
22545
22543
|
filter?: ReasonFilter | null | undefined;
|
|
22546
|
-
reasonGroupWorkplaceId?: string | null | undefined;
|
|
22547
22544
|
}> | undefined, requestHeaders?: Dom.RequestInit["headers"]): Promise<ReasonsQuery>;
|
|
22548
22545
|
shifts(variables?: Exact<{
|
|
22549
22546
|
[key: string]: never;
|