@whop/sdk 0.0.14 → 0.0.16
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 +31 -0
- package/client.d.mts +10 -4
- package/client.d.mts.map +1 -1
- package/client.d.ts +10 -4
- package/client.d.ts.map +1 -1
- package/client.js +6 -0
- package/client.js.map +1 -1
- package/client.mjs +6 -0
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/checkout-configurations.d.mts +16 -0
- package/resources/checkout-configurations.d.mts.map +1 -1
- package/resources/checkout-configurations.d.ts +16 -0
- package/resources/checkout-configurations.d.ts.map +1 -1
- package/resources/courses.d.mts +33 -0
- package/resources/courses.d.mts.map +1 -1
- package/resources/courses.d.ts +33 -0
- package/resources/courses.d.ts.map +1 -1
- package/resources/experiences.d.mts +12 -0
- package/resources/experiences.d.mts.map +1 -1
- package/resources/experiences.d.ts +12 -0
- package/resources/experiences.d.ts.map +1 -1
- package/resources/fee-markups.d.mts +179 -0
- package/resources/fee-markups.d.mts.map +1 -0
- package/resources/fee-markups.d.ts +179 -0
- package/resources/fee-markups.d.ts.map +1 -0
- package/resources/fee-markups.js +64 -0
- package/resources/fee-markups.js.map +1 -0
- package/resources/fee-markups.mjs +60 -0
- package/resources/fee-markups.mjs.map +1 -0
- package/resources/index.d.mts +4 -2
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +4 -2
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js +5 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs +2 -0
- package/resources/index.mjs.map +1 -1
- package/resources/payment-methods.d.mts +202 -54
- package/resources/payment-methods.d.mts.map +1 -1
- package/resources/payment-methods.d.ts +202 -54
- package/resources/payment-methods.d.ts.map +1 -1
- package/resources/payments.d.mts +55 -1
- package/resources/payments.d.mts.map +1 -1
- package/resources/payments.d.ts +55 -1
- package/resources/payments.d.ts.map +1 -1
- package/resources/payments.js +23 -0
- package/resources/payments.js.map +1 -1
- package/resources/payments.mjs +23 -0
- package/resources/payments.mjs.map +1 -1
- package/resources/payout-methods.d.mts +78 -0
- package/resources/payout-methods.d.mts.map +1 -0
- package/resources/payout-methods.d.ts +78 -0
- package/resources/payout-methods.d.ts.map +1 -0
- package/resources/payout-methods.js +23 -0
- package/resources/payout-methods.js.map +1 -0
- package/resources/payout-methods.mjs +19 -0
- package/resources/payout-methods.mjs.map +1 -0
- package/resources/shared.d.mts +38 -0
- package/resources/shared.d.mts.map +1 -1
- package/resources/shared.d.ts +38 -0
- package/resources/shared.d.ts.map +1 -1
- package/resources/withdrawals.d.mts +170 -1
- package/resources/withdrawals.d.mts.map +1 -1
- package/resources/withdrawals.d.ts +170 -1
- package/resources/withdrawals.d.ts.map +1 -1
- package/resources/withdrawals.js +38 -0
- package/resources/withdrawals.js.map +1 -1
- package/resources/withdrawals.mjs +38 -0
- package/resources/withdrawals.mjs.map +1 -1
- package/src/client.ts +48 -0
- package/src/resources/checkout-configurations.ts +20 -0
- package/src/resources/courses.ts +38 -0
- package/src/resources/experiences.ts +15 -0
- package/src/resources/fee-markups.ts +232 -0
- package/src/resources/index.ts +21 -0
- package/src/resources/payment-methods.ts +236 -54
- package/src/resources/payments.ts +105 -0
- package/src/resources/payout-methods.ts +105 -0
- package/src/resources/shared.ts +44 -0
- package/src/resources/withdrawals.ts +247 -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
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
import { APIResource } from "../core/resource.mjs";
|
|
2
|
+
import { APIPromise } from "../core/api-promise.mjs";
|
|
3
|
+
import { CursorPage, type CursorPageParams, PagePromise } from "../core/pagination.mjs";
|
|
4
|
+
import { RequestOptions } from "../internal/request-options.mjs";
|
|
5
|
+
export declare class FeeMarkups extends APIResource {
|
|
6
|
+
/**
|
|
7
|
+
* Creates or updates a fee markup for a company.
|
|
8
|
+
*
|
|
9
|
+
* Required permissions:
|
|
10
|
+
*
|
|
11
|
+
* - `company:update_child_fees`
|
|
12
|
+
*
|
|
13
|
+
* @example
|
|
14
|
+
* ```ts
|
|
15
|
+
* const feeMarkup = await client.feeMarkups.create({
|
|
16
|
+
* company_id: 'biz_xxxxxxxxxxxxxx',
|
|
17
|
+
* fee_type: 'crypto_withdrawal_markup',
|
|
18
|
+
* });
|
|
19
|
+
* ```
|
|
20
|
+
*/
|
|
21
|
+
create(body: FeeMarkupCreateParams, options?: RequestOptions): APIPromise<FeeMarkupCreateResponse>;
|
|
22
|
+
/**
|
|
23
|
+
* Lists fee markups for a company.
|
|
24
|
+
*
|
|
25
|
+
* Required permissions:
|
|
26
|
+
*
|
|
27
|
+
* - `company:update_child_fees`
|
|
28
|
+
*
|
|
29
|
+
* @example
|
|
30
|
+
* ```ts
|
|
31
|
+
* // Automatically fetches more pages as needed.
|
|
32
|
+
* for await (const feeMarkupListResponse of client.feeMarkups.list(
|
|
33
|
+
* { company_id: 'biz_xxxxxxxxxxxxxx' },
|
|
34
|
+
* )) {
|
|
35
|
+
* // ...
|
|
36
|
+
* }
|
|
37
|
+
* ```
|
|
38
|
+
*/
|
|
39
|
+
list(query: FeeMarkupListParams, options?: RequestOptions): PagePromise<FeeMarkupListResponsesCursorPage, FeeMarkupListResponse>;
|
|
40
|
+
/**
|
|
41
|
+
* Deletes a fee markup for a company.
|
|
42
|
+
*
|
|
43
|
+
* Required permissions:
|
|
44
|
+
*
|
|
45
|
+
* - `company:update_child_fees`
|
|
46
|
+
*
|
|
47
|
+
* @example
|
|
48
|
+
* ```ts
|
|
49
|
+
* const feeMarkup = await client.feeMarkups.delete('id');
|
|
50
|
+
* ```
|
|
51
|
+
*/
|
|
52
|
+
delete(id: string, options?: RequestOptions): APIPromise<FeeMarkupDeleteResponse>;
|
|
53
|
+
}
|
|
54
|
+
export type FeeMarkupListResponsesCursorPage = CursorPage<FeeMarkupListResponse>;
|
|
55
|
+
/**
|
|
56
|
+
* The types of fee markups that can be configured
|
|
57
|
+
*/
|
|
58
|
+
export type FeeMarkupType = 'crypto_withdrawal_markup' | 'rtp_withdrawal_markup' | 'next_day_bank_withdrawal_markup' | 'bank_wire_withdrawal_markup' | 'digital_wallet_withdrawal_markup';
|
|
59
|
+
/**
|
|
60
|
+
* Represents a fee markup configuration for a company
|
|
61
|
+
*/
|
|
62
|
+
export interface FeeMarkupCreateResponse {
|
|
63
|
+
/**
|
|
64
|
+
* The unique identifier of the fee markup.
|
|
65
|
+
*/
|
|
66
|
+
id: string;
|
|
67
|
+
/**
|
|
68
|
+
* When this fee markup was created.
|
|
69
|
+
*/
|
|
70
|
+
created_at: string;
|
|
71
|
+
/**
|
|
72
|
+
* The type of fee this markup applies to.
|
|
73
|
+
*/
|
|
74
|
+
fee_type: FeeMarkupType;
|
|
75
|
+
/**
|
|
76
|
+
* The fixed fee in USD to charge (0-50).
|
|
77
|
+
*/
|
|
78
|
+
fixed_fee_usd: number | null;
|
|
79
|
+
/**
|
|
80
|
+
* Internal notes about this fee markup.
|
|
81
|
+
*/
|
|
82
|
+
notes: string | null;
|
|
83
|
+
/**
|
|
84
|
+
* The percentage fee to charge (0-25).
|
|
85
|
+
*/
|
|
86
|
+
percentage_fee: number | null;
|
|
87
|
+
/**
|
|
88
|
+
* When this fee markup was last updated.
|
|
89
|
+
*/
|
|
90
|
+
updated_at: string;
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* Represents a fee markup configuration for a company
|
|
94
|
+
*/
|
|
95
|
+
export interface FeeMarkupListResponse {
|
|
96
|
+
/**
|
|
97
|
+
* The unique identifier of the fee markup.
|
|
98
|
+
*/
|
|
99
|
+
id: string;
|
|
100
|
+
/**
|
|
101
|
+
* When this fee markup was created.
|
|
102
|
+
*/
|
|
103
|
+
created_at: string;
|
|
104
|
+
/**
|
|
105
|
+
* The type of fee this markup applies to.
|
|
106
|
+
*/
|
|
107
|
+
fee_type: FeeMarkupType;
|
|
108
|
+
/**
|
|
109
|
+
* The fixed fee in USD to charge (0-50).
|
|
110
|
+
*/
|
|
111
|
+
fixed_fee_usd: number | null;
|
|
112
|
+
/**
|
|
113
|
+
* Internal notes about this fee markup.
|
|
114
|
+
*/
|
|
115
|
+
notes: string | null;
|
|
116
|
+
/**
|
|
117
|
+
* The percentage fee to charge (0-25).
|
|
118
|
+
*/
|
|
119
|
+
percentage_fee: number | null;
|
|
120
|
+
/**
|
|
121
|
+
* When this fee markup was last updated.
|
|
122
|
+
*/
|
|
123
|
+
updated_at: string;
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* Represents `true` or `false` values.
|
|
127
|
+
*/
|
|
128
|
+
export type FeeMarkupDeleteResponse = boolean;
|
|
129
|
+
export interface FeeMarkupCreateParams {
|
|
130
|
+
/**
|
|
131
|
+
* The ID (tag) of the company you want to update the fee markup for.
|
|
132
|
+
*/
|
|
133
|
+
company_id: string;
|
|
134
|
+
/**
|
|
135
|
+
* The type of fee this markup applies to.
|
|
136
|
+
*/
|
|
137
|
+
fee_type: FeeMarkupType;
|
|
138
|
+
/**
|
|
139
|
+
* The fixed fee in USD to charge (0-50).
|
|
140
|
+
*/
|
|
141
|
+
fixed_fee_usd?: number | null;
|
|
142
|
+
/**
|
|
143
|
+
* Custom metadata to attach to this fee markup.
|
|
144
|
+
*/
|
|
145
|
+
metadata?: {
|
|
146
|
+
[key: string]: unknown;
|
|
147
|
+
} | null;
|
|
148
|
+
/**
|
|
149
|
+
* Internal notes about this fee markup.
|
|
150
|
+
*/
|
|
151
|
+
notes?: string | null;
|
|
152
|
+
/**
|
|
153
|
+
* The percentage fee to charge (0-25).
|
|
154
|
+
*/
|
|
155
|
+
percentage_fee?: number | null;
|
|
156
|
+
}
|
|
157
|
+
export interface FeeMarkupListParams extends CursorPageParams {
|
|
158
|
+
/**
|
|
159
|
+
* The ID (tag) of the company you want to list the fee markups for. If you pass
|
|
160
|
+
* your platform account, you will get the platform default markups.
|
|
161
|
+
*/
|
|
162
|
+
company_id: string;
|
|
163
|
+
/**
|
|
164
|
+
* Returns the elements in the list that come before the specified cursor.
|
|
165
|
+
*/
|
|
166
|
+
before?: string | null;
|
|
167
|
+
/**
|
|
168
|
+
* Returns the first _n_ elements from the list.
|
|
169
|
+
*/
|
|
170
|
+
first?: number | null;
|
|
171
|
+
/**
|
|
172
|
+
* Returns the last _n_ elements from the list.
|
|
173
|
+
*/
|
|
174
|
+
last?: number | null;
|
|
175
|
+
}
|
|
176
|
+
export declare namespace FeeMarkups {
|
|
177
|
+
export { type FeeMarkupType as FeeMarkupType, type FeeMarkupCreateResponse as FeeMarkupCreateResponse, type FeeMarkupListResponse as FeeMarkupListResponse, type FeeMarkupDeleteResponse as FeeMarkupDeleteResponse, type FeeMarkupListResponsesCursorPage as FeeMarkupListResponsesCursorPage, type FeeMarkupCreateParams as FeeMarkupCreateParams, type FeeMarkupListParams as FeeMarkupListParams, };
|
|
178
|
+
}
|
|
179
|
+
//# sourceMappingURL=fee-markups.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fee-markups.d.mts","sourceRoot":"","sources":["../src/resources/fee-markups.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
import { APIResource } from "../core/resource.js";
|
|
2
|
+
import { APIPromise } from "../core/api-promise.js";
|
|
3
|
+
import { CursorPage, type CursorPageParams, PagePromise } from "../core/pagination.js";
|
|
4
|
+
import { RequestOptions } from "../internal/request-options.js";
|
|
5
|
+
export declare class FeeMarkups extends APIResource {
|
|
6
|
+
/**
|
|
7
|
+
* Creates or updates a fee markup for a company.
|
|
8
|
+
*
|
|
9
|
+
* Required permissions:
|
|
10
|
+
*
|
|
11
|
+
* - `company:update_child_fees`
|
|
12
|
+
*
|
|
13
|
+
* @example
|
|
14
|
+
* ```ts
|
|
15
|
+
* const feeMarkup = await client.feeMarkups.create({
|
|
16
|
+
* company_id: 'biz_xxxxxxxxxxxxxx',
|
|
17
|
+
* fee_type: 'crypto_withdrawal_markup',
|
|
18
|
+
* });
|
|
19
|
+
* ```
|
|
20
|
+
*/
|
|
21
|
+
create(body: FeeMarkupCreateParams, options?: RequestOptions): APIPromise<FeeMarkupCreateResponse>;
|
|
22
|
+
/**
|
|
23
|
+
* Lists fee markups for a company.
|
|
24
|
+
*
|
|
25
|
+
* Required permissions:
|
|
26
|
+
*
|
|
27
|
+
* - `company:update_child_fees`
|
|
28
|
+
*
|
|
29
|
+
* @example
|
|
30
|
+
* ```ts
|
|
31
|
+
* // Automatically fetches more pages as needed.
|
|
32
|
+
* for await (const feeMarkupListResponse of client.feeMarkups.list(
|
|
33
|
+
* { company_id: 'biz_xxxxxxxxxxxxxx' },
|
|
34
|
+
* )) {
|
|
35
|
+
* // ...
|
|
36
|
+
* }
|
|
37
|
+
* ```
|
|
38
|
+
*/
|
|
39
|
+
list(query: FeeMarkupListParams, options?: RequestOptions): PagePromise<FeeMarkupListResponsesCursorPage, FeeMarkupListResponse>;
|
|
40
|
+
/**
|
|
41
|
+
* Deletes a fee markup for a company.
|
|
42
|
+
*
|
|
43
|
+
* Required permissions:
|
|
44
|
+
*
|
|
45
|
+
* - `company:update_child_fees`
|
|
46
|
+
*
|
|
47
|
+
* @example
|
|
48
|
+
* ```ts
|
|
49
|
+
* const feeMarkup = await client.feeMarkups.delete('id');
|
|
50
|
+
* ```
|
|
51
|
+
*/
|
|
52
|
+
delete(id: string, options?: RequestOptions): APIPromise<FeeMarkupDeleteResponse>;
|
|
53
|
+
}
|
|
54
|
+
export type FeeMarkupListResponsesCursorPage = CursorPage<FeeMarkupListResponse>;
|
|
55
|
+
/**
|
|
56
|
+
* The types of fee markups that can be configured
|
|
57
|
+
*/
|
|
58
|
+
export type FeeMarkupType = 'crypto_withdrawal_markup' | 'rtp_withdrawal_markup' | 'next_day_bank_withdrawal_markup' | 'bank_wire_withdrawal_markup' | 'digital_wallet_withdrawal_markup';
|
|
59
|
+
/**
|
|
60
|
+
* Represents a fee markup configuration for a company
|
|
61
|
+
*/
|
|
62
|
+
export interface FeeMarkupCreateResponse {
|
|
63
|
+
/**
|
|
64
|
+
* The unique identifier of the fee markup.
|
|
65
|
+
*/
|
|
66
|
+
id: string;
|
|
67
|
+
/**
|
|
68
|
+
* When this fee markup was created.
|
|
69
|
+
*/
|
|
70
|
+
created_at: string;
|
|
71
|
+
/**
|
|
72
|
+
* The type of fee this markup applies to.
|
|
73
|
+
*/
|
|
74
|
+
fee_type: FeeMarkupType;
|
|
75
|
+
/**
|
|
76
|
+
* The fixed fee in USD to charge (0-50).
|
|
77
|
+
*/
|
|
78
|
+
fixed_fee_usd: number | null;
|
|
79
|
+
/**
|
|
80
|
+
* Internal notes about this fee markup.
|
|
81
|
+
*/
|
|
82
|
+
notes: string | null;
|
|
83
|
+
/**
|
|
84
|
+
* The percentage fee to charge (0-25).
|
|
85
|
+
*/
|
|
86
|
+
percentage_fee: number | null;
|
|
87
|
+
/**
|
|
88
|
+
* When this fee markup was last updated.
|
|
89
|
+
*/
|
|
90
|
+
updated_at: string;
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* Represents a fee markup configuration for a company
|
|
94
|
+
*/
|
|
95
|
+
export interface FeeMarkupListResponse {
|
|
96
|
+
/**
|
|
97
|
+
* The unique identifier of the fee markup.
|
|
98
|
+
*/
|
|
99
|
+
id: string;
|
|
100
|
+
/**
|
|
101
|
+
* When this fee markup was created.
|
|
102
|
+
*/
|
|
103
|
+
created_at: string;
|
|
104
|
+
/**
|
|
105
|
+
* The type of fee this markup applies to.
|
|
106
|
+
*/
|
|
107
|
+
fee_type: FeeMarkupType;
|
|
108
|
+
/**
|
|
109
|
+
* The fixed fee in USD to charge (0-50).
|
|
110
|
+
*/
|
|
111
|
+
fixed_fee_usd: number | null;
|
|
112
|
+
/**
|
|
113
|
+
* Internal notes about this fee markup.
|
|
114
|
+
*/
|
|
115
|
+
notes: string | null;
|
|
116
|
+
/**
|
|
117
|
+
* The percentage fee to charge (0-25).
|
|
118
|
+
*/
|
|
119
|
+
percentage_fee: number | null;
|
|
120
|
+
/**
|
|
121
|
+
* When this fee markup was last updated.
|
|
122
|
+
*/
|
|
123
|
+
updated_at: string;
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* Represents `true` or `false` values.
|
|
127
|
+
*/
|
|
128
|
+
export type FeeMarkupDeleteResponse = boolean;
|
|
129
|
+
export interface FeeMarkupCreateParams {
|
|
130
|
+
/**
|
|
131
|
+
* The ID (tag) of the company you want to update the fee markup for.
|
|
132
|
+
*/
|
|
133
|
+
company_id: string;
|
|
134
|
+
/**
|
|
135
|
+
* The type of fee this markup applies to.
|
|
136
|
+
*/
|
|
137
|
+
fee_type: FeeMarkupType;
|
|
138
|
+
/**
|
|
139
|
+
* The fixed fee in USD to charge (0-50).
|
|
140
|
+
*/
|
|
141
|
+
fixed_fee_usd?: number | null;
|
|
142
|
+
/**
|
|
143
|
+
* Custom metadata to attach to this fee markup.
|
|
144
|
+
*/
|
|
145
|
+
metadata?: {
|
|
146
|
+
[key: string]: unknown;
|
|
147
|
+
} | null;
|
|
148
|
+
/**
|
|
149
|
+
* Internal notes about this fee markup.
|
|
150
|
+
*/
|
|
151
|
+
notes?: string | null;
|
|
152
|
+
/**
|
|
153
|
+
* The percentage fee to charge (0-25).
|
|
154
|
+
*/
|
|
155
|
+
percentage_fee?: number | null;
|
|
156
|
+
}
|
|
157
|
+
export interface FeeMarkupListParams extends CursorPageParams {
|
|
158
|
+
/**
|
|
159
|
+
* The ID (tag) of the company you want to list the fee markups for. If you pass
|
|
160
|
+
* your platform account, you will get the platform default markups.
|
|
161
|
+
*/
|
|
162
|
+
company_id: string;
|
|
163
|
+
/**
|
|
164
|
+
* Returns the elements in the list that come before the specified cursor.
|
|
165
|
+
*/
|
|
166
|
+
before?: string | null;
|
|
167
|
+
/**
|
|
168
|
+
* Returns the first _n_ elements from the list.
|
|
169
|
+
*/
|
|
170
|
+
first?: number | null;
|
|
171
|
+
/**
|
|
172
|
+
* Returns the last _n_ elements from the list.
|
|
173
|
+
*/
|
|
174
|
+
last?: number | null;
|
|
175
|
+
}
|
|
176
|
+
export declare namespace FeeMarkups {
|
|
177
|
+
export { type FeeMarkupType as FeeMarkupType, type FeeMarkupCreateResponse as FeeMarkupCreateResponse, type FeeMarkupListResponse as FeeMarkupListResponse, type FeeMarkupDeleteResponse as FeeMarkupDeleteResponse, type FeeMarkupListResponsesCursorPage as FeeMarkupListResponsesCursorPage, type FeeMarkupCreateParams as FeeMarkupCreateParams, type FeeMarkupListParams as FeeMarkupListParams, };
|
|
178
|
+
}
|
|
179
|
+
//# sourceMappingURL=fee-markups.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fee-markups.d.ts","sourceRoot":"","sources":["../src/resources/fee-markups.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.FeeMarkups = void 0;
|
|
5
|
+
const resource_1 = require("../core/resource.js");
|
|
6
|
+
const pagination_1 = require("../core/pagination.js");
|
|
7
|
+
const path_1 = require("../internal/utils/path.js");
|
|
8
|
+
class FeeMarkups extends resource_1.APIResource {
|
|
9
|
+
/**
|
|
10
|
+
* Creates or updates a fee markup for a company.
|
|
11
|
+
*
|
|
12
|
+
* Required permissions:
|
|
13
|
+
*
|
|
14
|
+
* - `company:update_child_fees`
|
|
15
|
+
*
|
|
16
|
+
* @example
|
|
17
|
+
* ```ts
|
|
18
|
+
* const feeMarkup = await client.feeMarkups.create({
|
|
19
|
+
* company_id: 'biz_xxxxxxxxxxxxxx',
|
|
20
|
+
* fee_type: 'crypto_withdrawal_markup',
|
|
21
|
+
* });
|
|
22
|
+
* ```
|
|
23
|
+
*/
|
|
24
|
+
create(body, options) {
|
|
25
|
+
return this._client.post('/fee_markups', { body, ...options });
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Lists fee markups for a company.
|
|
29
|
+
*
|
|
30
|
+
* Required permissions:
|
|
31
|
+
*
|
|
32
|
+
* - `company:update_child_fees`
|
|
33
|
+
*
|
|
34
|
+
* @example
|
|
35
|
+
* ```ts
|
|
36
|
+
* // Automatically fetches more pages as needed.
|
|
37
|
+
* for await (const feeMarkupListResponse of client.feeMarkups.list(
|
|
38
|
+
* { company_id: 'biz_xxxxxxxxxxxxxx' },
|
|
39
|
+
* )) {
|
|
40
|
+
* // ...
|
|
41
|
+
* }
|
|
42
|
+
* ```
|
|
43
|
+
*/
|
|
44
|
+
list(query, options) {
|
|
45
|
+
return this._client.getAPIList('/fee_markups', (pagination_1.CursorPage), { query, ...options });
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* Deletes a fee markup for a company.
|
|
49
|
+
*
|
|
50
|
+
* Required permissions:
|
|
51
|
+
*
|
|
52
|
+
* - `company:update_child_fees`
|
|
53
|
+
*
|
|
54
|
+
* @example
|
|
55
|
+
* ```ts
|
|
56
|
+
* const feeMarkup = await client.feeMarkups.delete('id');
|
|
57
|
+
* ```
|
|
58
|
+
*/
|
|
59
|
+
delete(id, options) {
|
|
60
|
+
return this._client.delete((0, path_1.path) `/fee_markups/${id}`, options);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
exports.FeeMarkups = FeeMarkups;
|
|
64
|
+
//# sourceMappingURL=fee-markups.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fee-markups.js","sourceRoot":"","sources":["../src/resources/fee-markups.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,kDAA+C;AAE/C,sDAAoF;AAEpF,oDAA8C;AAE9C,MAAa,UAAW,SAAQ,sBAAW;IACzC;;;;;;;;;;;;;;OAcG;IACH,MAAM,CAAC,IAA2B,EAAE,OAAwB;QAC1D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,cAAc,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACjE,CAAC;IAED;;;;;;;;;;;;;;;;OAgBG;IACH,IAAI,CACF,KAA0B,EAC1B,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,cAAc,EAAE,CAAA,uBAAiC,CAAA,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC3G,CAAC;IAED;;;;;;;;;;;OAWG;IACH,MAAM,CAAC,EAAU,EAAE,OAAwB;QACzC,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAA,WAAI,EAAA,gBAAgB,EAAE,EAAE,EAAE,OAAO,CAAC,CAAC;IAChE,CAAC;CACF;AA3DD,gCA2DC"}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
import { APIResource } from "../core/resource.mjs";
|
|
3
|
+
import { CursorPage } from "../core/pagination.mjs";
|
|
4
|
+
import { path } from "../internal/utils/path.mjs";
|
|
5
|
+
export class FeeMarkups extends APIResource {
|
|
6
|
+
/**
|
|
7
|
+
* Creates or updates a fee markup for a company.
|
|
8
|
+
*
|
|
9
|
+
* Required permissions:
|
|
10
|
+
*
|
|
11
|
+
* - `company:update_child_fees`
|
|
12
|
+
*
|
|
13
|
+
* @example
|
|
14
|
+
* ```ts
|
|
15
|
+
* const feeMarkup = await client.feeMarkups.create({
|
|
16
|
+
* company_id: 'biz_xxxxxxxxxxxxxx',
|
|
17
|
+
* fee_type: 'crypto_withdrawal_markup',
|
|
18
|
+
* });
|
|
19
|
+
* ```
|
|
20
|
+
*/
|
|
21
|
+
create(body, options) {
|
|
22
|
+
return this._client.post('/fee_markups', { body, ...options });
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Lists fee markups for a company.
|
|
26
|
+
*
|
|
27
|
+
* Required permissions:
|
|
28
|
+
*
|
|
29
|
+
* - `company:update_child_fees`
|
|
30
|
+
*
|
|
31
|
+
* @example
|
|
32
|
+
* ```ts
|
|
33
|
+
* // Automatically fetches more pages as needed.
|
|
34
|
+
* for await (const feeMarkupListResponse of client.feeMarkups.list(
|
|
35
|
+
* { company_id: 'biz_xxxxxxxxxxxxxx' },
|
|
36
|
+
* )) {
|
|
37
|
+
* // ...
|
|
38
|
+
* }
|
|
39
|
+
* ```
|
|
40
|
+
*/
|
|
41
|
+
list(query, options) {
|
|
42
|
+
return this._client.getAPIList('/fee_markups', (CursorPage), { query, ...options });
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Deletes a fee markup for a company.
|
|
46
|
+
*
|
|
47
|
+
* Required permissions:
|
|
48
|
+
*
|
|
49
|
+
* - `company:update_child_fees`
|
|
50
|
+
*
|
|
51
|
+
* @example
|
|
52
|
+
* ```ts
|
|
53
|
+
* const feeMarkup = await client.feeMarkups.delete('id');
|
|
54
|
+
* ```
|
|
55
|
+
*/
|
|
56
|
+
delete(id, options) {
|
|
57
|
+
return this._client.delete(path `/fee_markups/${id}`, options);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
//# sourceMappingURL=fee-markups.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fee-markups.mjs","sourceRoot":"","sources":["../src/resources/fee-markups.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OAEf,EAAE,UAAU,EAAsC;OAElD,EAAE,IAAI,EAAE;AAEf,MAAM,OAAO,UAAW,SAAQ,WAAW;IACzC;;;;;;;;;;;;;;OAcG;IACH,MAAM,CAAC,IAA2B,EAAE,OAAwB;QAC1D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,cAAc,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACjE,CAAC;IAED;;;;;;;;;;;;;;;;OAgBG;IACH,IAAI,CACF,KAA0B,EAC1B,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,cAAc,EAAE,CAAA,UAAiC,CAAA,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC3G,CAAC;IAED;;;;;;;;;;;OAWG;IACH,MAAM,CAAC,EAAU,EAAE,OAAwB;QACzC,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAA,gBAAgB,EAAE,EAAE,EAAE,OAAO,CAAC,CAAC;IAChE,CAAC;CACF"}
|
package/resources/index.d.mts
CHANGED
|
@@ -15,6 +15,7 @@ export { Courses, type Course, type CourseVisibilities, type Languages, type Cou
|
|
|
15
15
|
export { Disputes, type Dispute, type DisputeStatuses, type DisputeListResponse, type DisputeListParams, type DisputeUpdateEvidenceParams, type DisputeListResponsesCursorPage, } from "./disputes.mjs";
|
|
16
16
|
export { Entries, type EntryListResponse, type EntryApproveResponse, type EntryListParams, type EntryListResponsesCursorPage, } from "./entries.mjs";
|
|
17
17
|
export { Experiences, type ExperienceListResponse, type ExperienceDeleteResponse, type ExperienceCreateParams, type ExperienceUpdateParams, type ExperienceListParams, type ExperienceAttachParams, type ExperienceDetachParams, type ExperienceDuplicateParams, type ExperienceListResponsesCursorPage, } from "./experiences.mjs";
|
|
18
|
+
export { FeeMarkups, type FeeMarkupType, type FeeMarkupCreateResponse, type FeeMarkupListResponse, type FeeMarkupDeleteResponse, type FeeMarkupCreateParams, type FeeMarkupListParams, type FeeMarkupListResponsesCursorPage, } from "./fee-markups.mjs";
|
|
18
19
|
export { ForumPosts, type ForumPostVisibilityType, type ForumPostListResponse, type ForumPostCreateParams, type ForumPostUpdateParams, type ForumPostListParams, type ForumPostListResponsesCursorPage, } from "./forum-posts.mjs";
|
|
19
20
|
export { Forums, type ForumListResponse, type ForumUpdateParams, type ForumListParams, type ForumListResponsesCursorPage, } from "./forums.mjs";
|
|
20
21
|
export { Invoices, type InvoiceVoidResponse, type InvoiceCreateParams, type InvoiceListParams, } from "./invoices.mjs";
|
|
@@ -24,7 +25,8 @@ export { Memberships, type MembershipListResponse, type MembershipUpdateParams,
|
|
|
24
25
|
export { Messages, type MessageListResponse, type MessageCreateParams, type MessageUpdateParams, type MessageListParams, type MessageListResponsesCursorPage, } from "./messages.mjs";
|
|
25
26
|
export { Notifications, type NotificationCreateResponse, type NotificationCreateParams, } from "./notifications.mjs";
|
|
26
27
|
export { PaymentMethods, type PaymentMethodRetrieveResponse, type PaymentMethodListResponse, type PaymentMethodRetrieveParams, type PaymentMethodListParams, type PaymentMethodListResponsesCursorPage, } from "./payment-methods.mjs";
|
|
27
|
-
export { Payments, type BillingReasons, type CardBrands, type PaymentMethodTypes, type PaymentListResponse, type PaymentCreateParams, type PaymentListParams, type PaymentRefundParams, type PaymentListResponsesCursorPage, } from "./payments.mjs";
|
|
28
|
+
export { Payments, type BillingReasons, type CardBrands, type PaymentMethodTypes, type PaymentListResponse, type PaymentListFeesResponse, type PaymentCreateParams, type PaymentListParams, type PaymentListFeesParams, type PaymentRefundParams, type PaymentListResponsesCursorPage, type PaymentListFeesResponsesCursorPage, } from "./payments.mjs";
|
|
29
|
+
export { PayoutMethods, type PayoutMethodListResponse, type PayoutMethodListParams, type PayoutMethodListResponsesCursorPage, } from "./payout-methods.mjs";
|
|
28
30
|
export { Plans, type PlanListResponse, type PlanDeleteResponse, type PlanCreateParams, type PlanUpdateParams, type PlanListParams, type PlanListResponsesCursorPage, } from "./plans.mjs";
|
|
29
31
|
export { Products, type ProductDeleteResponse, type ProductCreateParams, type ProductUpdateParams, type ProductListParams, } from "./products.mjs";
|
|
30
32
|
export { PromoCodes, type PromoCode, type PromoCodeStatus, type PromoDuration, type PromoCodeListResponse, type PromoCodeDeleteResponse, type PromoCodeCreateParams, type PromoCodeListParams, type PromoCodeListResponsesCursorPage, } from "./promo-codes.mjs";
|
|
@@ -37,5 +39,5 @@ export { SupportChannels, type SupportChannelListResponse, type SupportChannelCr
|
|
|
37
39
|
export { Transfers, type TransferListResponse, type TransferCreateParams, type TransferListParams, type TransferListResponsesCursorPage, } from "./transfers.mjs";
|
|
38
40
|
export { Users, type UserRetrieveResponse, type UserCheckAccessResponse, type UserCheckAccessParams, } from "./users.mjs";
|
|
39
41
|
export { Webhooks, type InvoiceCreatedWebhookEvent, type InvoicePaidWebhookEvent, type InvoicePastDueWebhookEvent, type InvoiceVoidedWebhookEvent, type MembershipActivatedWebhookEvent, type MembershipDeactivatedWebhookEvent, type EntryCreatedWebhookEvent, type EntryApprovedWebhookEvent, type EntryDeniedWebhookEvent, type EntryDeletedWebhookEvent, type SetupIntentRequiresActionWebhookEvent, type SetupIntentSucceededWebhookEvent, type SetupIntentCanceledWebhookEvent, type WithdrawalCreatedWebhookEvent, type WithdrawalUpdatedWebhookEvent, type CourseLessonInteractionCompletedWebhookEvent, type PaymentSucceededWebhookEvent, type PaymentFailedWebhookEvent, type PaymentPendingWebhookEvent, type DisputeCreatedWebhookEvent, type DisputeUpdatedWebhookEvent, type RefundCreatedWebhookEvent, type RefundUpdatedWebhookEvent, type UnwrapWebhookEvent, } from "./webhooks.mjs";
|
|
40
|
-
export { Withdrawals, type WithdrawalFeeTypes, type WithdrawalSpeeds, type WithdrawalStatus, type WithdrawalTypes, type WithdrawalRetrieveResponse, type WithdrawalListResponse, type WithdrawalListParams, type WithdrawalListResponsesCursorPage, } from "./withdrawals.mjs";
|
|
42
|
+
export { Withdrawals, type WithdrawalFeeTypes, type WithdrawalSpeeds, type WithdrawalStatus, type WithdrawalTypes, type WithdrawalCreateResponse, type WithdrawalRetrieveResponse, type WithdrawalListResponse, type WithdrawalCreateParams, type WithdrawalListParams, type WithdrawalListResponsesCursorPage, } from "./withdrawals.mjs";
|
|
41
43
|
//# sourceMappingURL=index.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":"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"}
|
package/resources/index.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export { Courses, type Course, type CourseVisibilities, type Languages, type Cou
|
|
|
15
15
|
export { Disputes, type Dispute, type DisputeStatuses, type DisputeListResponse, type DisputeListParams, type DisputeUpdateEvidenceParams, type DisputeListResponsesCursorPage, } from "./disputes.js";
|
|
16
16
|
export { Entries, type EntryListResponse, type EntryApproveResponse, type EntryListParams, type EntryListResponsesCursorPage, } from "./entries.js";
|
|
17
17
|
export { Experiences, type ExperienceListResponse, type ExperienceDeleteResponse, type ExperienceCreateParams, type ExperienceUpdateParams, type ExperienceListParams, type ExperienceAttachParams, type ExperienceDetachParams, type ExperienceDuplicateParams, type ExperienceListResponsesCursorPage, } from "./experiences.js";
|
|
18
|
+
export { FeeMarkups, type FeeMarkupType, type FeeMarkupCreateResponse, type FeeMarkupListResponse, type FeeMarkupDeleteResponse, type FeeMarkupCreateParams, type FeeMarkupListParams, type FeeMarkupListResponsesCursorPage, } from "./fee-markups.js";
|
|
18
19
|
export { ForumPosts, type ForumPostVisibilityType, type ForumPostListResponse, type ForumPostCreateParams, type ForumPostUpdateParams, type ForumPostListParams, type ForumPostListResponsesCursorPage, } from "./forum-posts.js";
|
|
19
20
|
export { Forums, type ForumListResponse, type ForumUpdateParams, type ForumListParams, type ForumListResponsesCursorPage, } from "./forums.js";
|
|
20
21
|
export { Invoices, type InvoiceVoidResponse, type InvoiceCreateParams, type InvoiceListParams, } from "./invoices.js";
|
|
@@ -24,7 +25,8 @@ export { Memberships, type MembershipListResponse, type MembershipUpdateParams,
|
|
|
24
25
|
export { Messages, type MessageListResponse, type MessageCreateParams, type MessageUpdateParams, type MessageListParams, type MessageListResponsesCursorPage, } from "./messages.js";
|
|
25
26
|
export { Notifications, type NotificationCreateResponse, type NotificationCreateParams, } from "./notifications.js";
|
|
26
27
|
export { PaymentMethods, type PaymentMethodRetrieveResponse, type PaymentMethodListResponse, type PaymentMethodRetrieveParams, type PaymentMethodListParams, type PaymentMethodListResponsesCursorPage, } from "./payment-methods.js";
|
|
27
|
-
export { Payments, type BillingReasons, type CardBrands, type PaymentMethodTypes, type PaymentListResponse, type PaymentCreateParams, type PaymentListParams, type PaymentRefundParams, type PaymentListResponsesCursorPage, } from "./payments.js";
|
|
28
|
+
export { Payments, type BillingReasons, type CardBrands, type PaymentMethodTypes, type PaymentListResponse, type PaymentListFeesResponse, type PaymentCreateParams, type PaymentListParams, type PaymentListFeesParams, type PaymentRefundParams, type PaymentListResponsesCursorPage, type PaymentListFeesResponsesCursorPage, } from "./payments.js";
|
|
29
|
+
export { PayoutMethods, type PayoutMethodListResponse, type PayoutMethodListParams, type PayoutMethodListResponsesCursorPage, } from "./payout-methods.js";
|
|
28
30
|
export { Plans, type PlanListResponse, type PlanDeleteResponse, type PlanCreateParams, type PlanUpdateParams, type PlanListParams, type PlanListResponsesCursorPage, } from "./plans.js";
|
|
29
31
|
export { Products, type ProductDeleteResponse, type ProductCreateParams, type ProductUpdateParams, type ProductListParams, } from "./products.js";
|
|
30
32
|
export { PromoCodes, type PromoCode, type PromoCodeStatus, type PromoDuration, type PromoCodeListResponse, type PromoCodeDeleteResponse, type PromoCodeCreateParams, type PromoCodeListParams, type PromoCodeListResponsesCursorPage, } from "./promo-codes.js";
|
|
@@ -37,5 +39,5 @@ export { SupportChannels, type SupportChannelListResponse, type SupportChannelCr
|
|
|
37
39
|
export { Transfers, type TransferListResponse, type TransferCreateParams, type TransferListParams, type TransferListResponsesCursorPage, } from "./transfers.js";
|
|
38
40
|
export { Users, type UserRetrieveResponse, type UserCheckAccessResponse, type UserCheckAccessParams, } from "./users.js";
|
|
39
41
|
export { Webhooks, type InvoiceCreatedWebhookEvent, type InvoicePaidWebhookEvent, type InvoicePastDueWebhookEvent, type InvoiceVoidedWebhookEvent, type MembershipActivatedWebhookEvent, type MembershipDeactivatedWebhookEvent, type EntryCreatedWebhookEvent, type EntryApprovedWebhookEvent, type EntryDeniedWebhookEvent, type EntryDeletedWebhookEvent, type SetupIntentRequiresActionWebhookEvent, type SetupIntentSucceededWebhookEvent, type SetupIntentCanceledWebhookEvent, type WithdrawalCreatedWebhookEvent, type WithdrawalUpdatedWebhookEvent, type CourseLessonInteractionCompletedWebhookEvent, type PaymentSucceededWebhookEvent, type PaymentFailedWebhookEvent, type PaymentPendingWebhookEvent, type DisputeCreatedWebhookEvent, type DisputeUpdatedWebhookEvent, type RefundCreatedWebhookEvent, type RefundUpdatedWebhookEvent, type UnwrapWebhookEvent, } from "./webhooks.js";
|
|
40
|
-
export { Withdrawals, type WithdrawalFeeTypes, type WithdrawalSpeeds, type WithdrawalStatus, type WithdrawalTypes, type WithdrawalRetrieveResponse, type WithdrawalListResponse, type WithdrawalListParams, type WithdrawalListResponsesCursorPage, } from "./withdrawals.js";
|
|
42
|
+
export { Withdrawals, type WithdrawalFeeTypes, type WithdrawalSpeeds, type WithdrawalStatus, type WithdrawalTypes, type WithdrawalCreateResponse, type WithdrawalRetrieveResponse, type WithdrawalListResponse, type WithdrawalCreateParams, type WithdrawalListParams, type WithdrawalListResponsesCursorPage, } from "./withdrawals.js";
|
|
41
43
|
//# sourceMappingURL=index.d.ts.map
|
package/resources/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":"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"}
|
package/resources/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.Withdrawals = exports.Webhooks = exports.Users = exports.Transfers = exports.SupportChannels = exports.Shipments = exports.SetupIntents = exports.Reviews = exports.Refunds = exports.Reactions = exports.PromoCodes = exports.Products = exports.Plans = exports.Payments = exports.PaymentMethods = exports.Notifications = exports.Messages = exports.Memberships = exports.Members = exports.LedgerAccounts = exports.Invoices = exports.Forums = exports.ForumPosts = exports.Experiences = exports.Entries = exports.Disputes = exports.Courses = exports.CourseStudents = exports.CourseLessons = exports.CourseLessonInteractions = exports.CourseChapters = exports.Companies = exports.CheckoutConfigurations = exports.ChatChannels = exports.AuthorizedUsers = exports.Apps = exports.AppBuilds = exports.AccountLinks = exports.AccessTokens = void 0;
|
|
4
|
+
exports.Withdrawals = exports.Webhooks = exports.Users = exports.Transfers = exports.SupportChannels = exports.Shipments = exports.SetupIntents = exports.Reviews = exports.Refunds = exports.Reactions = exports.PromoCodes = exports.Products = exports.Plans = exports.PayoutMethods = exports.Payments = exports.PaymentMethods = exports.Notifications = exports.Messages = exports.Memberships = exports.Members = exports.LedgerAccounts = exports.Invoices = exports.Forums = exports.ForumPosts = exports.FeeMarkups = exports.Experiences = exports.Entries = exports.Disputes = exports.Courses = exports.CourseStudents = exports.CourseLessons = exports.CourseLessonInteractions = exports.CourseChapters = exports.Companies = exports.CheckoutConfigurations = exports.ChatChannels = exports.AuthorizedUsers = exports.Apps = exports.AppBuilds = exports.AccountLinks = exports.AccessTokens = void 0;
|
|
5
5
|
const tslib_1 = require("../internal/tslib.js");
|
|
6
6
|
tslib_1.__exportStar(require("./shared.js"), exports);
|
|
7
7
|
var access_tokens_1 = require("./access-tokens.js");
|
|
@@ -36,6 +36,8 @@ var entries_1 = require("./entries.js");
|
|
|
36
36
|
Object.defineProperty(exports, "Entries", { enumerable: true, get: function () { return entries_1.Entries; } });
|
|
37
37
|
var experiences_1 = require("./experiences.js");
|
|
38
38
|
Object.defineProperty(exports, "Experiences", { enumerable: true, get: function () { return experiences_1.Experiences; } });
|
|
39
|
+
var fee_markups_1 = require("./fee-markups.js");
|
|
40
|
+
Object.defineProperty(exports, "FeeMarkups", { enumerable: true, get: function () { return fee_markups_1.FeeMarkups; } });
|
|
39
41
|
var forum_posts_1 = require("./forum-posts.js");
|
|
40
42
|
Object.defineProperty(exports, "ForumPosts", { enumerable: true, get: function () { return forum_posts_1.ForumPosts; } });
|
|
41
43
|
var forums_1 = require("./forums.js");
|
|
@@ -56,6 +58,8 @@ var payment_methods_1 = require("./payment-methods.js");
|
|
|
56
58
|
Object.defineProperty(exports, "PaymentMethods", { enumerable: true, get: function () { return payment_methods_1.PaymentMethods; } });
|
|
57
59
|
var payments_1 = require("./payments.js");
|
|
58
60
|
Object.defineProperty(exports, "Payments", { enumerable: true, get: function () { return payments_1.Payments; } });
|
|
61
|
+
var payout_methods_1 = require("./payout-methods.js");
|
|
62
|
+
Object.defineProperty(exports, "PayoutMethods", { enumerable: true, get: function () { return payout_methods_1.PayoutMethods; } });
|
|
59
63
|
var plans_1 = require("./plans.js");
|
|
60
64
|
Object.defineProperty(exports, "Plans", { enumerable: true, get: function () { return plans_1.Plans; } });
|
|
61
65
|
var products_1 = require("./products.js");
|
package/resources/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;AAEtF,sDAAyB;AACzB,oDAA6G;AAApG,6GAAA,YAAY,OAAA;AACrB,oDAA6G;AAApG,6GAAA,YAAY,OAAA;AACrB,8CAMsB;AALpB,uGAAA,SAAS,OAAA;AAMX,kCAQgB;AAPd,4FAAA,IAAI,OAAA;AAQN,0DAM4B;AAL1B,mHAAA,eAAe,OAAA;AAMjB,oDAMyB;AALvB,6GAAA,YAAY,OAAA;AAMd,wEAOmC;AANjC,iIAAA,sBAAsB,OAAA;AAOxB,4CAOqB;AANnB,sGAAA,SAAS,OAAA;AAOX,wDAS2B;AARzB,iHAAA,cAAc,OAAA;AAShB,8EAGsC;AAFpC,sIAAA,wBAAwB,OAAA;AAG1B,sDAiB0B;AAhBxB,+GAAA,aAAa,OAAA;AAiBf,wDAM2B;AALzB,iHAAA,cAAc,OAAA;AAMhB,wCAWmB;AAVjB,kGAAA,OAAO,OAAA;AAWT,0CAQoB;AAPlB,oGAAA,QAAQ,OAAA;AAQV,wCAMmB;AALjB,kGAAA,OAAO,OAAA;AAMT,gDAWuB;AAVrB,0GAAA,WAAW,OAAA;AAWb,gDAQuB;AAPrB,yGAAA,UAAU,OAAA;AAQZ,sCAMkB;AALhB,gGAAA,MAAM,OAAA;AAMR,0CAKoB;AAJlB,oGAAA,QAAQ,OAAA;AAKV,wDAAuF;AAA9E,iHAAA,cAAc,OAAA;AACvB,wCAMmB;AALjB,kGAAA,OAAO,OAAA;AAMT,gDAQuB;AAPrB,0GAAA,WAAW,OAAA;AAQb,0CAOoB;AANlB,oGAAA,QAAQ,OAAA;AAOV,oDAIyB;AAHvB,8GAAA,aAAa,OAAA;AAIf,wDAO2B;AANzB,iHAAA,cAAc,OAAA;AAOhB,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;AAEtF,sDAAyB;AACzB,oDAA6G;AAApG,6GAAA,YAAY,OAAA;AACrB,oDAA6G;AAApG,6GAAA,YAAY,OAAA;AACrB,8CAMsB;AALpB,uGAAA,SAAS,OAAA;AAMX,kCAQgB;AAPd,4FAAA,IAAI,OAAA;AAQN,0DAM4B;AAL1B,mHAAA,eAAe,OAAA;AAMjB,oDAMyB;AALvB,6GAAA,YAAY,OAAA;AAMd,wEAOmC;AANjC,iIAAA,sBAAsB,OAAA;AAOxB,4CAOqB;AANnB,sGAAA,SAAS,OAAA;AAOX,wDAS2B;AARzB,iHAAA,cAAc,OAAA;AAShB,8EAGsC;AAFpC,sIAAA,wBAAwB,OAAA;AAG1B,sDAiB0B;AAhBxB,+GAAA,aAAa,OAAA;AAiBf,wDAM2B;AALzB,iHAAA,cAAc,OAAA;AAMhB,wCAWmB;AAVjB,kGAAA,OAAO,OAAA;AAWT,0CAQoB;AAPlB,oGAAA,QAAQ,OAAA;AAQV,wCAMmB;AALjB,kGAAA,OAAO,OAAA;AAMT,gDAWuB;AAVrB,0GAAA,WAAW,OAAA;AAWb,gDASuB;AARrB,yGAAA,UAAU,OAAA;AASZ,gDAQuB;AAPrB,yGAAA,UAAU,OAAA;AAQZ,sCAMkB;AALhB,gGAAA,MAAM,OAAA;AAMR,0CAKoB;AAJlB,oGAAA,QAAQ,OAAA;AAKV,wDAAuF;AAA9E,iHAAA,cAAc,OAAA;AACvB,wCAMmB;AALjB,kGAAA,OAAO,OAAA;AAMT,gDAQuB;AAPrB,0GAAA,WAAW,OAAA;AAQb,0CAOoB;AANlB,oGAAA,QAAQ,OAAA;AAOV,oDAIyB;AAHvB,8GAAA,aAAa,OAAA;AAIf,wDAO2B;AANzB,iHAAA,cAAc,OAAA;AAOhB,0CAaoB;AAZlB,oGAAA,QAAQ,OAAA;AAaV,sDAK0B;AAJxB,+GAAA,aAAa,OAAA;AAKf,oCAQiB;AAPf,8FAAA,KAAK,OAAA;AAQP,0CAMoB;AALlB,oGAAA,QAAQ,OAAA;AAMV,gDAUuB;AATrB,yGAAA,UAAU,OAAA;AAUZ,4CAMqB;AALnB,sGAAA,SAAS,OAAA;AAMX,wCAUmB;AATjB,kGAAA,OAAO,OAAA;AAUT,wCAOmB;AANjB,kGAAA,OAAO,OAAA;AAOT,oDAOyB;AANvB,6GAAA,YAAY,OAAA;AAOd,4CAMqB;AALnB,sGAAA,SAAS,OAAA;AAMX,0DAM4B;AAL1B,mHAAA,eAAe,OAAA;AAMjB,4CAMqB;AALnB,sGAAA,SAAS,OAAA;AAMX,oCAKiB;AAJf,8FAAA,KAAK,OAAA;AAKP,0CA0BoB;AAzBlB,oGAAA,QAAQ,OAAA;AA0BV,gDAYuB;AAXrB,0GAAA,WAAW,OAAA"}
|