@infrab4a/connect 1.0.3 → 1.0.5

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.
@@ -4194,7 +4194,7 @@
4194
4194
  where: {
4195
4195
  type: 'product_kit_bool_exp',
4196
4196
  required: true,
4197
- value: { product_id: { _eq: productId } },
4197
+ value: { kit_product_id: { _eq: productId } },
4198
4198
  },
4199
4199
  })];
4200
4200
  case 1:
@@ -4204,8 +4204,8 @@
4204
4204
  type: '[product_kit_insert_input!]',
4205
4205
  required: true,
4206
4206
  value: plainData.kitProducts.map(function (kitProduct) { return ({
4207
- kit_product_id: kitProduct.productId || kitProduct.product.id,
4208
- product_id: productId,
4207
+ kit_product_id: productId,
4208
+ product_id: kitProduct.productId || kitProduct.product.id,
4209
4209
  quantity: kitProduct.quantity,
4210
4210
  }); }),
4211
4211
  },