@timardex/cluemart-shared 1.0.42 → 1.0.43

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/index.mjs CHANGED
@@ -3023,7 +3023,7 @@ var GET_TESTER = gql16`
3023
3023
 
3024
3024
  // src/graphql/mutations/testers.ts
3025
3025
  var CREATE_TESTER_MUTATION = gql17`
3026
- mutation createTester($input: CreateTesterInputType!) {
3026
+ mutation createTester($input: TesterInputType!) {
3027
3027
  createTester(input: $input) {
3028
3028
  ...TesterFields
3029
3029
  }
@@ -3031,7 +3031,7 @@ var CREATE_TESTER_MUTATION = gql17`
3031
3031
  ${TESTER_FIELDS_FRAGMENT}
3032
3032
  `;
3033
3033
  var UPDATE_TESTER_MUTATION = gql17`
3034
- mutation updateTester($_id: ID!, $input: UpdateTesterInputType!) {
3034
+ mutation updateTester($_id: ID!, $input: TesterInputType!) {
3035
3035
  updateTester(_id: $_id, input: $input) {
3036
3036
  ...TesterFields
3037
3037
  }