tonightpass 0.0.264 → 0.0.266
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 +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -357,7 +357,7 @@ type Order = Base & {
|
|
|
357
357
|
refundLastAttemptAt?: Date;
|
|
358
358
|
user: UserProfile;
|
|
359
359
|
};
|
|
360
|
-
type OrderEndpoints = Endpoint<"GET", "/orders", ArrayResult<Order>, ArrayOptions<Order>> | Endpoint<"GET", "/orders/:orderId", Order>;
|
|
360
|
+
type OrderEndpoints = Endpoint<"GET", "/orders", ArrayResult<Order>, ArrayOptions<Order>> | Endpoint<"GET", "/orders/:orderId", Order> | Endpoint<"GET", "/orders/:orderId/invoice", string>;
|
|
361
361
|
|
|
362
362
|
type OrganizationAnalyticsOverview = {
|
|
363
363
|
metrics: {
|
|
@@ -593,6 +593,7 @@ type Organization = Base & {
|
|
|
593
593
|
};
|
|
594
594
|
type OrganizationBilling = {
|
|
595
595
|
account: string;
|
|
596
|
+
isPayoutsEnabled: boolean;
|
|
596
597
|
vatRate: number;
|
|
597
598
|
};
|
|
598
599
|
type OrganizationBillingAccount = Stripe__default.Account;
|
package/dist/index.d.ts
CHANGED
|
@@ -357,7 +357,7 @@ type Order = Base & {
|
|
|
357
357
|
refundLastAttemptAt?: Date;
|
|
358
358
|
user: UserProfile;
|
|
359
359
|
};
|
|
360
|
-
type OrderEndpoints = Endpoint<"GET", "/orders", ArrayResult<Order>, ArrayOptions<Order>> | Endpoint<"GET", "/orders/:orderId", Order>;
|
|
360
|
+
type OrderEndpoints = Endpoint<"GET", "/orders", ArrayResult<Order>, ArrayOptions<Order>> | Endpoint<"GET", "/orders/:orderId", Order> | Endpoint<"GET", "/orders/:orderId/invoice", string>;
|
|
361
361
|
|
|
362
362
|
type OrganizationAnalyticsOverview = {
|
|
363
363
|
metrics: {
|
|
@@ -593,6 +593,7 @@ type Organization = Base & {
|
|
|
593
593
|
};
|
|
594
594
|
type OrganizationBilling = {
|
|
595
595
|
account: string;
|
|
596
|
+
isPayoutsEnabled: boolean;
|
|
596
597
|
vatRate: number;
|
|
597
598
|
};
|
|
598
599
|
type OrganizationBillingAccount = Stripe__default.Account;
|