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