@connectedxm/admin 3.0.2 → 3.0.3

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 CHANGED
@@ -16345,6 +16345,7 @@ var PaymentLineItemType = /* @__PURE__ */ ((PaymentLineItemType2) => {
16345
16345
  PaymentLineItemType2["booking"] = "booking";
16346
16346
  PaymentLineItemType2["coupon"] = "coupon";
16347
16347
  PaymentLineItemType2["subscription"] = "subscription";
16348
+ PaymentLineItemType2["refund"] = "refund";
16348
16349
  return PaymentLineItemType2;
16349
16350
  })(PaymentLineItemType || {});
16350
16351
  var TaxIntegrationType = /* @__PURE__ */ ((TaxIntegrationType2) => {
package/dist/index.d.cts CHANGED
@@ -1647,7 +1647,8 @@ declare enum PaymentLineItemType {
1647
1647
  invoice = "invoice",
1648
1648
  booking = "booking",
1649
1649
  coupon = "coupon",
1650
- subscription = "subscription"
1650
+ subscription = "subscription",
1651
+ refund = "refund"
1651
1652
  }
1652
1653
  interface BasePaymentLineItem {
1653
1654
  id: string;
@@ -26530,7 +26531,7 @@ declare const DeleteOrganizationWebhook: ({ webhookId, adminApiParams, queryClie
26530
26531
  declare const useDeleteOrganizationWebhook: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteOrganizationWebhook>>, Omit<DeleteOrganizationWebhookParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteOrganizationWebhookParams, "queryClient" | "adminApiParams">, unknown>;
26531
26532
 
26532
26533
  interface RefundLineItem {
26533
- lineItemId: string;
26534
+ id: string;
26534
26535
  amount: number;
26535
26536
  }
26536
26537
  /**
package/dist/index.d.ts CHANGED
@@ -1647,7 +1647,8 @@ declare enum PaymentLineItemType {
1647
1647
  invoice = "invoice",
1648
1648
  booking = "booking",
1649
1649
  coupon = "coupon",
1650
- subscription = "subscription"
1650
+ subscription = "subscription",
1651
+ refund = "refund"
1651
1652
  }
1652
1653
  interface BasePaymentLineItem {
1653
1654
  id: string;
@@ -26530,7 +26531,7 @@ declare const DeleteOrganizationWebhook: ({ webhookId, adminApiParams, queryClie
26530
26531
  declare const useDeleteOrganizationWebhook: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteOrganizationWebhook>>, Omit<DeleteOrganizationWebhookParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteOrganizationWebhookParams, "queryClient" | "adminApiParams">, unknown>;
26531
26532
 
26532
26533
  interface RefundLineItem {
26533
- lineItemId: string;
26534
+ id: string;
26534
26535
  amount: number;
26535
26536
  }
26536
26537
  /**
package/dist/index.js CHANGED
@@ -13240,6 +13240,7 @@ var PaymentLineItemType = /* @__PURE__ */ ((PaymentLineItemType2) => {
13240
13240
  PaymentLineItemType2["booking"] = "booking";
13241
13241
  PaymentLineItemType2["coupon"] = "coupon";
13242
13242
  PaymentLineItemType2["subscription"] = "subscription";
13243
+ PaymentLineItemType2["refund"] = "refund";
13243
13244
  return PaymentLineItemType2;
13244
13245
  })(PaymentLineItemType || {});
13245
13246
  var TaxIntegrationType = /* @__PURE__ */ ((TaxIntegrationType2) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "3.0.2",
3
+ "version": "3.0.3",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",