@connectedxm/client 7.9.0 → 7.9.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.d.ts +3 -1
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -642,6 +642,7 @@ interface BasePassType {
|
|
|
642
642
|
requiredPassTypeId: string | null;
|
|
643
643
|
taxCode: string | null;
|
|
644
644
|
taxIncluded: boolean;
|
|
645
|
+
requiresApproval: boolean;
|
|
645
646
|
}
|
|
646
647
|
interface PassType extends BasePassType {
|
|
647
648
|
visibility: TicketVisibility;
|
|
@@ -674,7 +675,8 @@ declare enum PurchaseStatus {
|
|
|
674
675
|
draft = "draft",
|
|
675
676
|
canceled = "canceled",
|
|
676
677
|
needsInfo = "needsInfo",
|
|
677
|
-
ready = "ready"
|
|
678
|
+
ready = "ready",
|
|
679
|
+
pending = "pending"
|
|
678
680
|
}
|
|
679
681
|
interface BasePass {
|
|
680
682
|
id: string;
|
package/dist/index.js
CHANGED
|
@@ -8129,6 +8129,7 @@ var PurchaseStatus = /* @__PURE__ */ ((PurchaseStatus2) => {
|
|
|
8129
8129
|
PurchaseStatus2["canceled"] = "canceled";
|
|
8130
8130
|
PurchaseStatus2["needsInfo"] = "needsInfo";
|
|
8131
8131
|
PurchaseStatus2["ready"] = "ready";
|
|
8132
|
+
PurchaseStatus2["pending"] = "pending";
|
|
8132
8133
|
return PurchaseStatus2;
|
|
8133
8134
|
})(PurchaseStatus || {});
|
|
8134
8135
|
var isTypePurchase = (purchase) => {
|