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.
@@ -84,7 +84,7 @@ export type ApplicationInfo = {
84
84
  apiVersion: Scalars['String']['output'];
85
85
  };
86
86
  export type BulkStaffingPlanInput = {
87
- plans: Array<StaffingPlanInput>;
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
- id: Scalars['ID']['input'];
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
- id: Scalars['ID']['input'];
4649
- recommendedOperators: Scalars['Int']['input'];
4651
+ input: StaffingPlanUpdateInput;
4650
4652
  }>;
4651
4653
  export type UpdateStaffingPlanMutation = {
4652
4654
  __typename?: 'Mutation';