@whop/sdk 0.0.21 → 0.0.22

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.
Files changed (66) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/client.d.mts +11 -2
  3. package/client.d.mts.map +1 -1
  4. package/client.d.ts +11 -2
  5. package/client.d.ts.map +1 -1
  6. package/client.js +9 -0
  7. package/client.js.map +1 -1
  8. package/client.mjs +9 -0
  9. package/client.mjs.map +1 -1
  10. package/package.json +1 -1
  11. package/resources/index.d.mts +4 -1
  12. package/resources/index.d.mts.map +1 -1
  13. package/resources/index.d.ts +4 -1
  14. package/resources/index.d.ts.map +1 -1
  15. package/resources/index.js +7 -1
  16. package/resources/index.js.map +1 -1
  17. package/resources/index.mjs +3 -0
  18. package/resources/index.mjs.map +1 -1
  19. package/resources/leads.d.mts +489 -0
  20. package/resources/leads.d.mts.map +1 -0
  21. package/resources/leads.d.ts +489 -0
  22. package/resources/leads.d.ts.map +1 -0
  23. package/resources/leads.js +94 -0
  24. package/resources/leads.js.map +1 -0
  25. package/resources/leads.mjs +90 -0
  26. package/resources/leads.mjs.map +1 -0
  27. package/resources/ledger-accounts.d.mts +25 -0
  28. package/resources/ledger-accounts.d.mts.map +1 -1
  29. package/resources/ledger-accounts.d.ts +25 -0
  30. package/resources/ledger-accounts.d.ts.map +1 -1
  31. package/resources/payout-methods.d.mts +69 -1
  32. package/resources/payout-methods.d.mts.map +1 -1
  33. package/resources/payout-methods.d.ts +69 -1
  34. package/resources/payout-methods.d.ts.map +1 -1
  35. package/resources/payout-methods.js +11 -0
  36. package/resources/payout-methods.js.map +1 -1
  37. package/resources/payout-methods.mjs +11 -0
  38. package/resources/payout-methods.mjs.map +1 -1
  39. package/resources/topups.d.mts +79 -0
  40. package/resources/topups.d.mts.map +1 -0
  41. package/resources/topups.d.ts +79 -0
  42. package/resources/topups.d.ts.map +1 -0
  43. package/resources/topups.js +29 -0
  44. package/resources/topups.js.map +1 -0
  45. package/resources/topups.mjs +25 -0
  46. package/resources/topups.mjs.map +1 -0
  47. package/resources/verifications.d.mts +38 -0
  48. package/resources/verifications.d.mts.map +1 -0
  49. package/resources/verifications.d.ts +38 -0
  50. package/resources/verifications.d.ts.map +1 -0
  51. package/resources/verifications.js +20 -0
  52. package/resources/verifications.js.map +1 -0
  53. package/resources/verifications.mjs +16 -0
  54. package/resources/verifications.mjs.map +1 -0
  55. package/src/client.ts +44 -0
  56. package/src/resources/index.ts +14 -0
  57. package/src/resources/leads.ts +583 -0
  58. package/src/resources/ledger-accounts.ts +63 -0
  59. package/src/resources/payout-methods.ts +83 -0
  60. package/src/resources/topups.ts +95 -0
  61. package/src/resources/verifications.ts +81 -0
  62. package/src/version.ts +1 -1
  63. package/version.d.mts +1 -1
  64. package/version.d.ts +1 -1
  65. package/version.js +1 -1
  66. package/version.mjs +1 -1
@@ -0,0 +1,489 @@
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 Leads extends APIResource {
6
+ /**
7
+ * Creates a new lead
8
+ *
9
+ * Required permissions:
10
+ *
11
+ * - `lead:manage`
12
+ * - `member:email:read`
13
+ * - `access_pass:basic:read`
14
+ * - `member:basic:read`
15
+ *
16
+ * @example
17
+ * ```ts
18
+ * const lead = await client.leads.create({
19
+ * company_id: 'biz_xxxxxxxxxxxxxx',
20
+ * });
21
+ * ```
22
+ */
23
+ create(body: LeadCreateParams, options?: RequestOptions): APIPromise<LeadCreateResponse>;
24
+ /**
25
+ * Retrieves a lead by ID
26
+ *
27
+ * Required permissions:
28
+ *
29
+ * - `lead:basic:read`
30
+ * - `member:email:read`
31
+ * - `access_pass:basic:read`
32
+ * - `member:basic:read`
33
+ *
34
+ * @example
35
+ * ```ts
36
+ * const lead = await client.leads.retrieve(
37
+ * 'lead_xxxxxxxxxxxxx',
38
+ * );
39
+ * ```
40
+ */
41
+ retrieve(id: string, options?: RequestOptions): APIPromise<LeadRetrieveResponse>;
42
+ /**
43
+ * Updates a lead
44
+ *
45
+ * Required permissions:
46
+ *
47
+ * - `lead:manage`
48
+ * - `member:email:read`
49
+ * - `access_pass:basic:read`
50
+ * - `member:basic:read`
51
+ *
52
+ * @example
53
+ * ```ts
54
+ * const lead = await client.leads.update(
55
+ * 'lead_xxxxxxxxxxxxx',
56
+ * );
57
+ * ```
58
+ */
59
+ update(id: string, body?: LeadUpdateParams | null | undefined, options?: RequestOptions): APIPromise<LeadUpdateResponse>;
60
+ /**
61
+ * Lists leads for a company
62
+ *
63
+ * Required permissions:
64
+ *
65
+ * - `lead:basic:read`
66
+ * - `member:email:read`
67
+ * - `access_pass:basic:read`
68
+ * - `member:basic:read`
69
+ *
70
+ * @example
71
+ * ```ts
72
+ * // Automatically fetches more pages as needed.
73
+ * for await (const leadListResponse of client.leads.list({
74
+ * company_id: 'biz_xxxxxxxxxxxxxx',
75
+ * })) {
76
+ * // ...
77
+ * }
78
+ * ```
79
+ */
80
+ list(query: LeadListParams, options?: RequestOptions): PagePromise<LeadListResponsesCursorPage, LeadListResponse>;
81
+ }
82
+ export type LeadListResponsesCursorPage = CursorPage<LeadListResponse>;
83
+ /**
84
+ * An object representing a lead (someone who is interested in a whop).
85
+ */
86
+ export interface LeadCreateResponse {
87
+ /**
88
+ * The ID of the lead.
89
+ */
90
+ id: string;
91
+ /**
92
+ * The timestamp of when the lead was created.
93
+ */
94
+ created_at: string;
95
+ /**
96
+ * The converted member, if any.
97
+ */
98
+ member: LeadCreateResponse.Member | null;
99
+ /**
100
+ * Custom metadata for the lead.
101
+ */
102
+ metadata: {
103
+ [key: string]: unknown;
104
+ } | null;
105
+ /**
106
+ * The access pass the lead is interested in, if available.
107
+ */
108
+ product: LeadCreateResponse.Product | null;
109
+ /**
110
+ * The referrer URL that brought this lead.
111
+ */
112
+ referrer: string | null;
113
+ /**
114
+ * The timestamp of when the lead was last updated.
115
+ */
116
+ updated_at: string;
117
+ /**
118
+ * The user who is the lead.
119
+ */
120
+ user: LeadCreateResponse.User;
121
+ }
122
+ export declare namespace LeadCreateResponse {
123
+ /**
124
+ * The converted member, if any.
125
+ */
126
+ interface Member {
127
+ /**
128
+ * The ID of the member
129
+ */
130
+ id: string;
131
+ }
132
+ /**
133
+ * The access pass the lead is interested in, if available.
134
+ */
135
+ interface Product {
136
+ /**
137
+ * The internal ID of the public product.
138
+ */
139
+ id: string;
140
+ /**
141
+ * The title of the product. Use for Whop 4.0.
142
+ */
143
+ title: string;
144
+ }
145
+ /**
146
+ * The user who is the lead.
147
+ */
148
+ interface User {
149
+ /**
150
+ * The internal ID of the user.
151
+ */
152
+ id: string;
153
+ /**
154
+ * The email of the user
155
+ */
156
+ email: string | null;
157
+ /**
158
+ * The name of the user from their Whop account.
159
+ */
160
+ name: string | null;
161
+ /**
162
+ * The username of the user from their Whop account.
163
+ */
164
+ username: string;
165
+ }
166
+ }
167
+ /**
168
+ * An object representing a lead (someone who is interested in a whop).
169
+ */
170
+ export interface LeadRetrieveResponse {
171
+ /**
172
+ * The ID of the lead.
173
+ */
174
+ id: string;
175
+ /**
176
+ * The timestamp of when the lead was created.
177
+ */
178
+ created_at: string;
179
+ /**
180
+ * The converted member, if any.
181
+ */
182
+ member: LeadRetrieveResponse.Member | null;
183
+ /**
184
+ * Custom metadata for the lead.
185
+ */
186
+ metadata: {
187
+ [key: string]: unknown;
188
+ } | null;
189
+ /**
190
+ * The access pass the lead is interested in, if available.
191
+ */
192
+ product: LeadRetrieveResponse.Product | null;
193
+ /**
194
+ * The referrer URL that brought this lead.
195
+ */
196
+ referrer: string | null;
197
+ /**
198
+ * The timestamp of when the lead was last updated.
199
+ */
200
+ updated_at: string;
201
+ /**
202
+ * The user who is the lead.
203
+ */
204
+ user: LeadRetrieveResponse.User;
205
+ }
206
+ export declare namespace LeadRetrieveResponse {
207
+ /**
208
+ * The converted member, if any.
209
+ */
210
+ interface Member {
211
+ /**
212
+ * The ID of the member
213
+ */
214
+ id: string;
215
+ }
216
+ /**
217
+ * The access pass the lead is interested in, if available.
218
+ */
219
+ interface Product {
220
+ /**
221
+ * The internal ID of the public product.
222
+ */
223
+ id: string;
224
+ /**
225
+ * The title of the product. Use for Whop 4.0.
226
+ */
227
+ title: string;
228
+ }
229
+ /**
230
+ * The user who is the lead.
231
+ */
232
+ interface User {
233
+ /**
234
+ * The internal ID of the user.
235
+ */
236
+ id: string;
237
+ /**
238
+ * The email of the user
239
+ */
240
+ email: string | null;
241
+ /**
242
+ * The name of the user from their Whop account.
243
+ */
244
+ name: string | null;
245
+ /**
246
+ * The username of the user from their Whop account.
247
+ */
248
+ username: string;
249
+ }
250
+ }
251
+ /**
252
+ * An object representing a lead (someone who is interested in a whop).
253
+ */
254
+ export interface LeadUpdateResponse {
255
+ /**
256
+ * The ID of the lead.
257
+ */
258
+ id: string;
259
+ /**
260
+ * The timestamp of when the lead was created.
261
+ */
262
+ created_at: string;
263
+ /**
264
+ * The converted member, if any.
265
+ */
266
+ member: LeadUpdateResponse.Member | null;
267
+ /**
268
+ * Custom metadata for the lead.
269
+ */
270
+ metadata: {
271
+ [key: string]: unknown;
272
+ } | null;
273
+ /**
274
+ * The access pass the lead is interested in, if available.
275
+ */
276
+ product: LeadUpdateResponse.Product | null;
277
+ /**
278
+ * The referrer URL that brought this lead.
279
+ */
280
+ referrer: string | null;
281
+ /**
282
+ * The timestamp of when the lead was last updated.
283
+ */
284
+ updated_at: string;
285
+ /**
286
+ * The user who is the lead.
287
+ */
288
+ user: LeadUpdateResponse.User;
289
+ }
290
+ export declare namespace LeadUpdateResponse {
291
+ /**
292
+ * The converted member, if any.
293
+ */
294
+ interface Member {
295
+ /**
296
+ * The ID of the member
297
+ */
298
+ id: string;
299
+ }
300
+ /**
301
+ * The access pass the lead is interested in, if available.
302
+ */
303
+ interface Product {
304
+ /**
305
+ * The internal ID of the public product.
306
+ */
307
+ id: string;
308
+ /**
309
+ * The title of the product. Use for Whop 4.0.
310
+ */
311
+ title: string;
312
+ }
313
+ /**
314
+ * The user who is the lead.
315
+ */
316
+ interface User {
317
+ /**
318
+ * The internal ID of the user.
319
+ */
320
+ id: string;
321
+ /**
322
+ * The email of the user
323
+ */
324
+ email: string | null;
325
+ /**
326
+ * The name of the user from their Whop account.
327
+ */
328
+ name: string | null;
329
+ /**
330
+ * The username of the user from their Whop account.
331
+ */
332
+ username: string;
333
+ }
334
+ }
335
+ /**
336
+ * An object representing a lead (someone who is interested in a whop).
337
+ */
338
+ export interface LeadListResponse {
339
+ /**
340
+ * The ID of the lead.
341
+ */
342
+ id: string;
343
+ /**
344
+ * The timestamp of when the lead was created.
345
+ */
346
+ created_at: string;
347
+ /**
348
+ * The converted member, if any.
349
+ */
350
+ member: LeadListResponse.Member | null;
351
+ /**
352
+ * Custom metadata for the lead.
353
+ */
354
+ metadata: {
355
+ [key: string]: unknown;
356
+ } | null;
357
+ /**
358
+ * The access pass the lead is interested in, if available.
359
+ */
360
+ product: LeadListResponse.Product | null;
361
+ /**
362
+ * The referrer URL that brought this lead.
363
+ */
364
+ referrer: string | null;
365
+ /**
366
+ * The timestamp of when the lead was last updated.
367
+ */
368
+ updated_at: string;
369
+ /**
370
+ * The user who is the lead.
371
+ */
372
+ user: LeadListResponse.User;
373
+ }
374
+ export declare namespace LeadListResponse {
375
+ /**
376
+ * The converted member, if any.
377
+ */
378
+ interface Member {
379
+ /**
380
+ * The ID of the member
381
+ */
382
+ id: string;
383
+ }
384
+ /**
385
+ * The access pass the lead is interested in, if available.
386
+ */
387
+ interface Product {
388
+ /**
389
+ * The internal ID of the public product.
390
+ */
391
+ id: string;
392
+ /**
393
+ * The title of the product. Use for Whop 4.0.
394
+ */
395
+ title: string;
396
+ }
397
+ /**
398
+ * The user who is the lead.
399
+ */
400
+ interface User {
401
+ /**
402
+ * The internal ID of the user.
403
+ */
404
+ id: string;
405
+ /**
406
+ * The email of the user
407
+ */
408
+ email: string | null;
409
+ /**
410
+ * The name of the user from their Whop account.
411
+ */
412
+ name: string | null;
413
+ /**
414
+ * The username of the user from their Whop account.
415
+ */
416
+ username: string;
417
+ }
418
+ }
419
+ export interface LeadCreateParams {
420
+ /**
421
+ * The ID of the company to create a lead for.
422
+ */
423
+ company_id: string;
424
+ /**
425
+ * Custom metadata for the lead.
426
+ */
427
+ metadata?: {
428
+ [key: string]: unknown;
429
+ } | null;
430
+ /**
431
+ * The ID of the product the lead is interested in.
432
+ */
433
+ product_id?: string | null;
434
+ /**
435
+ * The url referrer of the lead, if any.
436
+ */
437
+ referrer?: string | null;
438
+ /**
439
+ * The ID of the user to create a lead for. If the request is made by a user, that
440
+ * user will be used.
441
+ */
442
+ user_id?: string | null;
443
+ }
444
+ export interface LeadUpdateParams {
445
+ /**
446
+ * Custom metadata for the lead.
447
+ */
448
+ metadata?: {
449
+ [key: string]: unknown;
450
+ } | null;
451
+ /**
452
+ * The url referrer of the lead.
453
+ */
454
+ referrer?: string | null;
455
+ }
456
+ export interface LeadListParams extends CursorPageParams {
457
+ /**
458
+ * The ID of the company to list leads for
459
+ */
460
+ company_id: string;
461
+ /**
462
+ * Returns the elements in the list that come before the specified cursor.
463
+ */
464
+ before?: string | null;
465
+ /**
466
+ * The minimum creation date to filter by
467
+ */
468
+ created_after?: string | null;
469
+ /**
470
+ * The maximum creation date to filter by
471
+ */
472
+ created_before?: string | null;
473
+ /**
474
+ * Returns the first _n_ elements from the list.
475
+ */
476
+ first?: number | null;
477
+ /**
478
+ * Returns the last _n_ elements from the list.
479
+ */
480
+ last?: number | null;
481
+ /**
482
+ * The product IDs to filter the leads by
483
+ */
484
+ product_ids?: Array<string> | null;
485
+ }
486
+ export declare namespace Leads {
487
+ export { type LeadCreateResponse as LeadCreateResponse, type LeadRetrieveResponse as LeadRetrieveResponse, type LeadUpdateResponse as LeadUpdateResponse, type LeadListResponse as LeadListResponse, type LeadListResponsesCursorPage as LeadListResponsesCursorPage, type LeadCreateParams as LeadCreateParams, type LeadUpdateParams as LeadUpdateParams, type LeadListParams as LeadListParams, };
488
+ }
489
+ //# sourceMappingURL=leads.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"leads.d.mts","sourceRoot":"","sources":["../src/resources/leads.ts"],"names":[],"mappings":"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"}