@iblai/data-layer 1.0.0 → 1.1.1

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.js CHANGED
@@ -37611,10 +37611,11 @@ const stripeApiSlice = react.createApi({
37611
37611
  providesTags: ['stripe-context'],
37612
37612
  }),
37613
37613
  getStripePricingPageSession: builder.query({
37614
- query: ({ platform_key }) => ({
37614
+ query: ({ platform_key, params }) => ({
37615
37615
  url: STRIPE_ENDPOINTS.GET_STRIPE_PRICING_PAGE_SESSION.path(platform_key),
37616
37616
  service: STRIPE_ENDPOINTS.GET_STRIPE_PRICING_PAGE_SESSION.service,
37617
37617
  method: 'GET',
37618
+ params,
37618
37619
  }),
37619
37620
  providesTags: ['stripe-context'],
37620
37621
  }),