andoncloud-dashboard-toolkit 1.3.21 → 1.3.22
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 +7 -5
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +3 -1
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -84,7 +84,7 @@ export type ApplicationInfo = {
|
|
|
84
84
|
apiVersion: Scalars['String']['output'];
|
|
85
85
|
};
|
|
86
86
|
export type BulkStaffingPlanInput = {
|
|
87
|
-
plans: Array<
|
|
87
|
+
plans: Array<StaffingPlanUpdateInput>;
|
|
88
88
|
};
|
|
89
89
|
export type BulkUpdateStaffingPlansPayload = {
|
|
90
90
|
__typename?: 'BulkUpdateStaffingPlansPayload';
|
|
@@ -843,8 +843,7 @@ export type MutationUpdateOrderExecutionArgs = {
|
|
|
843
843
|
standardRateId: Scalars['ID']['input'];
|
|
844
844
|
};
|
|
845
845
|
export type MutationUpdateStaffingPlanArgs = {
|
|
846
|
-
|
|
847
|
-
recommendedOperators: Scalars['Int']['input'];
|
|
846
|
+
input: StaffingPlanUpdateInput;
|
|
848
847
|
};
|
|
849
848
|
export type MutationUpdateStatusChangeArgs = {
|
|
850
849
|
input: UpdateStatusChangeInput;
|
|
@@ -2026,6 +2025,10 @@ export type StaffingPlanInput = {
|
|
|
2026
2025
|
shiftId: Scalars['ID']['input'];
|
|
2027
2026
|
workplaceId: Scalars['ID']['input'];
|
|
2028
2027
|
};
|
|
2028
|
+
export type StaffingPlanUpdateInput = {
|
|
2029
|
+
id: Scalars['ID']['input'];
|
|
2030
|
+
recommendedOperators: Scalars['Int']['input'];
|
|
2031
|
+
};
|
|
2029
2032
|
export type StandardRate = {
|
|
2030
2033
|
__typename?: 'StandardRate';
|
|
2031
2034
|
id: Scalars['ID']['output'];
|
|
@@ -4645,8 +4648,7 @@ export type UpdateOrderExecutionMutation = {
|
|
|
4645
4648
|
};
|
|
4646
4649
|
};
|
|
4647
4650
|
export type UpdateStaffingPlanMutationVariables = Exact<{
|
|
4648
|
-
|
|
4649
|
-
recommendedOperators: Scalars['Int']['input'];
|
|
4651
|
+
input: StaffingPlanUpdateInput;
|
|
4650
4652
|
}>;
|
|
4651
4653
|
export type UpdateStaffingPlanMutation = {
|
|
4652
4654
|
__typename?: 'Mutation';
|