@connectedxm/admin 1.3.1 → 1.3.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.d.mts CHANGED
@@ -1262,6 +1262,7 @@ interface Notification extends BaseNotification {
1262
1262
  type PermissionDomain = keyof Omit<OrganizationMembership, "organizationId" | "userId" | "user">;
1263
1263
  type PermissionType = "read" | "create" | "update" | "del";
1264
1264
  interface ModulePermissions {
1265
+ superEnabled: boolean;
1265
1266
  enabled: boolean;
1266
1267
  read: boolean;
1267
1268
  create: boolean;
@@ -1466,6 +1467,11 @@ interface BasePayment {
1466
1467
  stripeId: string | null;
1467
1468
  last4: string | null;
1468
1469
  debugId: string | null;
1470
+ salesTax: number;
1471
+ salesTaxRate: string | null;
1472
+ country: string;
1473
+ state: string;
1474
+ zip: string;
1469
1475
  createdAt: string;
1470
1476
  }
1471
1477
  declare enum PaymentIntegrationType {
package/dist/index.d.ts CHANGED
@@ -1262,6 +1262,7 @@ interface Notification extends BaseNotification {
1262
1262
  type PermissionDomain = keyof Omit<OrganizationMembership, "organizationId" | "userId" | "user">;
1263
1263
  type PermissionType = "read" | "create" | "update" | "del";
1264
1264
  interface ModulePermissions {
1265
+ superEnabled: boolean;
1265
1266
  enabled: boolean;
1266
1267
  read: boolean;
1267
1268
  create: boolean;
@@ -1466,6 +1467,11 @@ interface BasePayment {
1466
1467
  stripeId: string | null;
1467
1468
  last4: string | null;
1468
1469
  debugId: string | null;
1470
+ salesTax: number;
1471
+ salesTaxRate: string | null;
1472
+ country: string;
1473
+ state: string;
1474
+ zip: string;
1469
1475
  createdAt: string;
1470
1476
  }
1471
1477
  declare enum PaymentIntegrationType {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "1.3.1",
3
+ "version": "1.3.3",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "repository": {