@whop/sdk 0.0.12 → 0.0.14
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/CHANGELOG.md +30 -0
- package/client.d.mts +2 -2
- package/client.d.mts.map +1 -1
- package/client.d.ts +2 -2
- package/client.d.ts.map +1 -1
- package/client.js.map +1 -1
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/companies.d.mts +65 -3
- package/resources/companies.d.mts.map +1 -1
- package/resources/companies.d.ts +65 -3
- package/resources/companies.d.ts.map +1 -1
- package/resources/companies.js +13 -1
- package/resources/companies.js.map +1 -1
- package/resources/companies.mjs +13 -1
- package/resources/companies.mjs.map +1 -1
- package/resources/index.d.mts +1 -1
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +1 -1
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs.map +1 -1
- package/resources/shared.d.mts +4 -0
- package/resources/shared.d.mts.map +1 -1
- package/resources/shared.d.ts +4 -0
- package/resources/shared.d.ts.map +1 -1
- package/resources/webhooks.d.mts +12 -0
- package/resources/webhooks.d.mts.map +1 -1
- package/resources/webhooks.d.ts +12 -0
- package/resources/webhooks.d.ts.map +1 -1
- package/resources/withdrawals.d.mts +12 -0
- package/resources/withdrawals.d.mts.map +1 -1
- package/resources/withdrawals.d.ts +12 -0
- package/resources/withdrawals.d.ts.map +1 -1
- package/src/client.ts +2 -0
- package/src/resources/companies.ts +82 -2
- package/src/resources/index.ts +1 -0
- package/src/resources/shared.ts +5 -0
- package/src/resources/webhooks.ts +14 -0
- package/src/resources/withdrawals.ts +14 -0
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -164,6 +164,13 @@ export interface WithdrawalRetrieveResponse {
|
|
|
164
164
|
*/
|
|
165
165
|
ledger_account: WithdrawalRetrieveResponse.LedgerAccount;
|
|
166
166
|
|
|
167
|
+
/**
|
|
168
|
+
* The markup fee that was charged for the withdrawal. This is in the same currency
|
|
169
|
+
* as the withdrawal amount. This only applies to platform accounts using Whop
|
|
170
|
+
* Rails.
|
|
171
|
+
*/
|
|
172
|
+
markup_fee: number;
|
|
173
|
+
|
|
167
174
|
/**
|
|
168
175
|
* The payout token used for the withdrawal, if applicable.
|
|
169
176
|
*/
|
|
@@ -275,6 +282,13 @@ export interface WithdrawalListResponse {
|
|
|
275
282
|
*/
|
|
276
283
|
fee_type: WithdrawalFeeTypes | null;
|
|
277
284
|
|
|
285
|
+
/**
|
|
286
|
+
* The markup fee that was charged for the withdrawal. This is in the same currency
|
|
287
|
+
* as the withdrawal amount. This only applies to platform accounts using Whop
|
|
288
|
+
* Rails.
|
|
289
|
+
*/
|
|
290
|
+
markup_fee: number;
|
|
291
|
+
|
|
278
292
|
/**
|
|
279
293
|
* The speed of the withdrawal.
|
|
280
294
|
*/
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.0.
|
|
1
|
+
export const VERSION = '0.0.14'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.0.
|
|
1
|
+
export declare const VERSION = "0.0.14";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.0.
|
|
1
|
+
export declare const VERSION = "0.0.14";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.0.
|
|
1
|
+
export const VERSION = '0.0.14'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|