@visa-check-r/integrations 0.0.81 → 0.0.82

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.cjs.js CHANGED
@@ -2839,7 +2839,8 @@ var creditTransactionQuery = [
2839
2839
  "planId",
2840
2840
  "creditTransactionType",
2841
2841
  "couponCode",
2842
- "couponAmount"
2842
+ "couponAmount",
2843
+ "user"
2843
2844
  ];
2844
2845
  var serviceCreditCostQuery = [
2845
2846
  "createdAt",
@@ -2894,11 +2895,17 @@ var creditPlanDeleteIntegration = createDeleteIntegration(ENTITY4);
2894
2895
  var ENTITY5 = "creditTransaction";
2895
2896
  var creditTransactionIntegration = createStandardEntityIntegration({
2896
2897
  key: ENTITY5,
2897
- fields: creditTransactionQuery
2898
+ fields: creditTransactionQuery,
2899
+ nested: {
2900
+ ...getUserResponseNestedFields
2901
+ }
2898
2902
  });
2899
2903
  var creditTransactionListIntegration = createListIntegration({
2900
2904
  key: "creditTransactions",
2901
- fields: creditTransactionQuery
2905
+ fields: creditTransactionQuery,
2906
+ nested: {
2907
+ ...getUserResponseNestedFields
2908
+ }
2902
2909
  });
2903
2910
  var creditTransactionDeleteIntegration = createDeleteIntegration(ENTITY5);
2904
2911