@polar-sh/sdk 0.4.6 → 0.5.0
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.cjs +335 -1
- package/dist/index.d.cts +862 -89
- package/dist/index.d.ts +862 -89
- package/dist/index.js +333 -1
- package/package.json +1 -1
- package/dist/index.d.mts +0 -11773
- package/dist/index.mjs +0 -6717
package/dist/index.d.cts
CHANGED
|
@@ -1284,11 +1284,17 @@ interface ArticleCreate {
|
|
|
1284
1284
|
*/
|
|
1285
1285
|
slug?: string;
|
|
1286
1286
|
/**
|
|
1287
|
-
*
|
|
1287
|
+
* Body in string format. Either one of body or body_base64 is required.
|
|
1288
1288
|
* @type {string}
|
|
1289
1289
|
* @memberof ArticleCreate
|
|
1290
1290
|
*/
|
|
1291
|
-
body
|
|
1291
|
+
body?: string;
|
|
1292
|
+
/**
|
|
1293
|
+
* Body in base64-encoded format. Can be helpful to bypass Web Application Firewalls (WAF). Either one of body or body_base64 is required.
|
|
1294
|
+
* @type {string}
|
|
1295
|
+
* @memberof ArticleCreate
|
|
1296
|
+
*/
|
|
1297
|
+
body_base64?: string;
|
|
1292
1298
|
/**
|
|
1293
1299
|
*
|
|
1294
1300
|
* @type {string}
|
|
@@ -1464,11 +1470,17 @@ interface ArticleUpdate {
|
|
|
1464
1470
|
*/
|
|
1465
1471
|
title?: string;
|
|
1466
1472
|
/**
|
|
1467
|
-
*
|
|
1473
|
+
* Body in string format. body and body_base64 are mutually exclusive.
|
|
1468
1474
|
* @type {string}
|
|
1469
1475
|
* @memberof ArticleUpdate
|
|
1470
1476
|
*/
|
|
1471
1477
|
body?: string;
|
|
1478
|
+
/**
|
|
1479
|
+
* Body in base64-encoded format. Can be helpful to bypass Web Application Firewalls (WAF). body and body_base64 are mutually exclusive.
|
|
1480
|
+
* @type {string}
|
|
1481
|
+
* @memberof ArticleUpdate
|
|
1482
|
+
*/
|
|
1483
|
+
body_base64?: string;
|
|
1472
1484
|
/**
|
|
1473
1485
|
*
|
|
1474
1486
|
* @type {string}
|
|
@@ -2168,6 +2180,12 @@ interface CustomDomainExchangeRequest {
|
|
|
2168
2180
|
* @memberof CustomDomainExchangeRequest
|
|
2169
2181
|
*/
|
|
2170
2182
|
token: string;
|
|
2183
|
+
/**
|
|
2184
|
+
*
|
|
2185
|
+
* @type {string}
|
|
2186
|
+
* @memberof CustomDomainExchangeRequest
|
|
2187
|
+
*/
|
|
2188
|
+
secret: string;
|
|
2171
2189
|
}
|
|
2172
2190
|
/**
|
|
2173
2191
|
*
|
|
@@ -2337,6 +2355,19 @@ interface Entry {
|
|
|
2337
2355
|
*/
|
|
2338
2356
|
pledges?: Array<Pledge>;
|
|
2339
2357
|
}
|
|
2358
|
+
/**
|
|
2359
|
+
*
|
|
2360
|
+
* @export
|
|
2361
|
+
* @interface ExistingSubscriptionTierPrice
|
|
2362
|
+
*/
|
|
2363
|
+
interface ExistingSubscriptionTierPrice {
|
|
2364
|
+
/**
|
|
2365
|
+
*
|
|
2366
|
+
* @type {string}
|
|
2367
|
+
* @memberof ExistingSubscriptionTierPrice
|
|
2368
|
+
*/
|
|
2369
|
+
id: string;
|
|
2370
|
+
}
|
|
2340
2371
|
/**
|
|
2341
2372
|
*
|
|
2342
2373
|
* @export
|
|
@@ -2473,6 +2504,75 @@ interface Funding {
|
|
|
2473
2504
|
*/
|
|
2474
2505
|
pledges_sum?: CurrencyAmount;
|
|
2475
2506
|
}
|
|
2507
|
+
/**
|
|
2508
|
+
*
|
|
2509
|
+
* @export
|
|
2510
|
+
* @interface GitHubInvitesBenefitOrganization
|
|
2511
|
+
*/
|
|
2512
|
+
interface GitHubInvitesBenefitOrganization {
|
|
2513
|
+
/**
|
|
2514
|
+
*
|
|
2515
|
+
* @type {string}
|
|
2516
|
+
* @memberof GitHubInvitesBenefitOrganization
|
|
2517
|
+
*/
|
|
2518
|
+
name: string;
|
|
2519
|
+
/**
|
|
2520
|
+
*
|
|
2521
|
+
* @type {boolean}
|
|
2522
|
+
* @memberof GitHubInvitesBenefitOrganization
|
|
2523
|
+
*/
|
|
2524
|
+
is_personal: boolean;
|
|
2525
|
+
/**
|
|
2526
|
+
*
|
|
2527
|
+
* @type {string}
|
|
2528
|
+
* @memberof GitHubInvitesBenefitOrganization
|
|
2529
|
+
*/
|
|
2530
|
+
plan_name: string;
|
|
2531
|
+
/**
|
|
2532
|
+
*
|
|
2533
|
+
* @type {boolean}
|
|
2534
|
+
* @memberof GitHubInvitesBenefitOrganization
|
|
2535
|
+
*/
|
|
2536
|
+
is_free: boolean;
|
|
2537
|
+
}
|
|
2538
|
+
/**
|
|
2539
|
+
*
|
|
2540
|
+
* @export
|
|
2541
|
+
* @interface GitHubInvitesBenefitRepositories
|
|
2542
|
+
*/
|
|
2543
|
+
interface GitHubInvitesBenefitRepositories {
|
|
2544
|
+
/**
|
|
2545
|
+
*
|
|
2546
|
+
* @type {Array<GitHubInvitesBenefitRepository>}
|
|
2547
|
+
* @memberof GitHubInvitesBenefitRepositories
|
|
2548
|
+
*/
|
|
2549
|
+
repositories: Array<GitHubInvitesBenefitRepository>;
|
|
2550
|
+
/**
|
|
2551
|
+
*
|
|
2552
|
+
* @type {Array<GitHubInvitesBenefitOrganization>}
|
|
2553
|
+
* @memberof GitHubInvitesBenefitRepositories
|
|
2554
|
+
*/
|
|
2555
|
+
organizations: Array<GitHubInvitesBenefitOrganization>;
|
|
2556
|
+
}
|
|
2557
|
+
/**
|
|
2558
|
+
*
|
|
2559
|
+
* @export
|
|
2560
|
+
* @interface GitHubInvitesBenefitRepository
|
|
2561
|
+
*/
|
|
2562
|
+
interface GitHubInvitesBenefitRepository {
|
|
2563
|
+
/**
|
|
2564
|
+
*
|
|
2565
|
+
* @type {string}
|
|
2566
|
+
* @memberof GitHubInvitesBenefitRepository
|
|
2567
|
+
*/
|
|
2568
|
+
repository_owner: string;
|
|
2569
|
+
/**
|
|
2570
|
+
*
|
|
2571
|
+
* @type {string}
|
|
2572
|
+
* @memberof GitHubInvitesBenefitRepository
|
|
2573
|
+
*/
|
|
2574
|
+
repository_name: string;
|
|
2575
|
+
}
|
|
2476
2576
|
/**
|
|
2477
2577
|
*
|
|
2478
2578
|
* @export
|
|
@@ -3627,6 +3727,12 @@ interface MaintainerNewPaidSubscriptionNotificationPayload {
|
|
|
3627
3727
|
* @memberof MaintainerNewPaidSubscriptionNotificationPayload
|
|
3628
3728
|
*/
|
|
3629
3729
|
tier_price_amount: number;
|
|
3730
|
+
/**
|
|
3731
|
+
*
|
|
3732
|
+
* @type {string}
|
|
3733
|
+
* @memberof MaintainerNewPaidSubscriptionNotificationPayload
|
|
3734
|
+
*/
|
|
3735
|
+
tier_price_recurring_interval: string;
|
|
3630
3736
|
/**
|
|
3631
3737
|
*
|
|
3632
3738
|
* @type {string}
|
|
@@ -4325,6 +4431,7 @@ interface OAuthAccountRead {
|
|
|
4325
4431
|
*/
|
|
4326
4432
|
declare const OAuthPlatform: {
|
|
4327
4433
|
readonly GITHUB: "github";
|
|
4434
|
+
readonly GITHUB_REPOSITORY_BENEFIT: "github_repository_benefit";
|
|
4328
4435
|
readonly DISCORD: "discord";
|
|
4329
4436
|
};
|
|
4330
4437
|
type OAuthPlatform = typeof OAuthPlatform[keyof typeof OAuthPlatform];
|
|
@@ -4442,6 +4549,12 @@ interface Organization {
|
|
|
4442
4549
|
* @memberof Organization
|
|
4443
4550
|
*/
|
|
4444
4551
|
custom_domain?: string;
|
|
4552
|
+
/**
|
|
4553
|
+
*
|
|
4554
|
+
* @type {OrganizationProfileSettings}
|
|
4555
|
+
* @memberof Organization
|
|
4556
|
+
*/
|
|
4557
|
+
profile_settings: OrganizationProfileSettings;
|
|
4445
4558
|
/**
|
|
4446
4559
|
* Where to send emails about payments for pledegs that this organization/team has made. Only visible for members of the organization
|
|
4447
4560
|
* @type {string}
|
|
@@ -4598,6 +4711,74 @@ interface OrganizationMember {
|
|
|
4598
4711
|
*/
|
|
4599
4712
|
is_admin: boolean;
|
|
4600
4713
|
}
|
|
4714
|
+
/**
|
|
4715
|
+
*
|
|
4716
|
+
* @export
|
|
4717
|
+
* @interface OrganizationProfileSettings
|
|
4718
|
+
*/
|
|
4719
|
+
interface OrganizationProfileSettings {
|
|
4720
|
+
/**
|
|
4721
|
+
* A description of the organization
|
|
4722
|
+
* @type {string}
|
|
4723
|
+
* @memberof OrganizationProfileSettings
|
|
4724
|
+
*/
|
|
4725
|
+
description?: string;
|
|
4726
|
+
/**
|
|
4727
|
+
* A list of featured projects
|
|
4728
|
+
* @type {Array<string>}
|
|
4729
|
+
* @memberof OrganizationProfileSettings
|
|
4730
|
+
*/
|
|
4731
|
+
featured_projects?: Array<string>;
|
|
4732
|
+
/**
|
|
4733
|
+
* A list of featured organizations
|
|
4734
|
+
* @type {Array<string>}
|
|
4735
|
+
* @memberof OrganizationProfileSettings
|
|
4736
|
+
*/
|
|
4737
|
+
featured_organizations?: Array<string>;
|
|
4738
|
+
/**
|
|
4739
|
+
* A list of links associated with the organization
|
|
4740
|
+
* @type {Array<string>}
|
|
4741
|
+
* @memberof OrganizationProfileSettings
|
|
4742
|
+
*/
|
|
4743
|
+
links?: Array<string>;
|
|
4744
|
+
}
|
|
4745
|
+
/**
|
|
4746
|
+
*
|
|
4747
|
+
* @export
|
|
4748
|
+
* @interface OrganizationProfileSettingsUpdate
|
|
4749
|
+
*/
|
|
4750
|
+
interface OrganizationProfileSettingsUpdate {
|
|
4751
|
+
/**
|
|
4752
|
+
*
|
|
4753
|
+
* @type {boolean}
|
|
4754
|
+
* @memberof OrganizationProfileSettingsUpdate
|
|
4755
|
+
*/
|
|
4756
|
+
set_description?: boolean;
|
|
4757
|
+
/**
|
|
4758
|
+
*
|
|
4759
|
+
* @type {string}
|
|
4760
|
+
* @memberof OrganizationProfileSettingsUpdate
|
|
4761
|
+
*/
|
|
4762
|
+
description?: string;
|
|
4763
|
+
/**
|
|
4764
|
+
*
|
|
4765
|
+
* @type {Array<string>}
|
|
4766
|
+
* @memberof OrganizationProfileSettingsUpdate
|
|
4767
|
+
*/
|
|
4768
|
+
featured_projects?: Array<string>;
|
|
4769
|
+
/**
|
|
4770
|
+
*
|
|
4771
|
+
* @type {Array<string>}
|
|
4772
|
+
* @memberof OrganizationProfileSettingsUpdate
|
|
4773
|
+
*/
|
|
4774
|
+
featured_organizations?: Array<string>;
|
|
4775
|
+
/**
|
|
4776
|
+
*
|
|
4777
|
+
* @type {Array<string>}
|
|
4778
|
+
* @memberof OrganizationProfileSettingsUpdate
|
|
4779
|
+
*/
|
|
4780
|
+
links?: Array<string>;
|
|
4781
|
+
}
|
|
4601
4782
|
/**
|
|
4602
4783
|
*
|
|
4603
4784
|
* @export
|
|
@@ -4696,6 +4877,12 @@ interface OrganizationUpdate {
|
|
|
4696
4877
|
* @memberof OrganizationUpdate
|
|
4697
4878
|
*/
|
|
4698
4879
|
per_user_monthly_spending_limit?: number;
|
|
4880
|
+
/**
|
|
4881
|
+
*
|
|
4882
|
+
* @type {OrganizationProfileSettingsUpdate}
|
|
4883
|
+
* @memberof OrganizationUpdate
|
|
4884
|
+
*/
|
|
4885
|
+
profile_settings?: OrganizationProfileSettingsUpdate;
|
|
4699
4886
|
}
|
|
4700
4887
|
/**
|
|
4701
4888
|
*
|
|
@@ -4801,6 +4988,50 @@ declare const PaymentProcessor: {
|
|
|
4801
4988
|
readonly OPEN_COLLECTIVE: "open_collective";
|
|
4802
4989
|
};
|
|
4803
4990
|
type PaymentProcessor = typeof PaymentProcessor[keyof typeof PaymentProcessor];
|
|
4991
|
+
/**
|
|
4992
|
+
*
|
|
4993
|
+
* @export
|
|
4994
|
+
* @interface PayoutCreate
|
|
4995
|
+
*/
|
|
4996
|
+
interface PayoutCreate {
|
|
4997
|
+
/**
|
|
4998
|
+
*
|
|
4999
|
+
* @type {string}
|
|
5000
|
+
* @memberof PayoutCreate
|
|
5001
|
+
*/
|
|
5002
|
+
account_id: string;
|
|
5003
|
+
}
|
|
5004
|
+
/**
|
|
5005
|
+
*
|
|
5006
|
+
* @export
|
|
5007
|
+
* @interface PayoutEstimate
|
|
5008
|
+
*/
|
|
5009
|
+
interface PayoutEstimate {
|
|
5010
|
+
/**
|
|
5011
|
+
*
|
|
5012
|
+
* @type {string}
|
|
5013
|
+
* @memberof PayoutEstimate
|
|
5014
|
+
*/
|
|
5015
|
+
account_id: string;
|
|
5016
|
+
/**
|
|
5017
|
+
*
|
|
5018
|
+
* @type {number}
|
|
5019
|
+
* @memberof PayoutEstimate
|
|
5020
|
+
*/
|
|
5021
|
+
gross_amount: number;
|
|
5022
|
+
/**
|
|
5023
|
+
*
|
|
5024
|
+
* @type {number}
|
|
5025
|
+
* @memberof PayoutEstimate
|
|
5026
|
+
*/
|
|
5027
|
+
fees_amount: number;
|
|
5028
|
+
/**
|
|
5029
|
+
*
|
|
5030
|
+
* @type {number}
|
|
5031
|
+
* @memberof PayoutEstimate
|
|
5032
|
+
*/
|
|
5033
|
+
net_amount: number;
|
|
5034
|
+
}
|
|
4804
5035
|
/**
|
|
4805
5036
|
*
|
|
4806
5037
|
* @export
|
|
@@ -4838,6 +5069,20 @@ interface PersonalAccessToken {
|
|
|
4838
5069
|
*/
|
|
4839
5070
|
comment: string;
|
|
4840
5071
|
}
|
|
5072
|
+
/**
|
|
5073
|
+
* Type of fees applied by Polar, and billed to the users.
|
|
5074
|
+
* @export
|
|
5075
|
+
*/
|
|
5076
|
+
declare const PlatformFeeType: {
|
|
5077
|
+
readonly PLATFORM: "platform";
|
|
5078
|
+
readonly PAYMENT: "payment";
|
|
5079
|
+
readonly SUBSCRIPTION: "subscription";
|
|
5080
|
+
readonly INVOICE: "invoice";
|
|
5081
|
+
readonly CROSS_BORDER_TRANSFER: "cross_border_transfer";
|
|
5082
|
+
readonly PAYOUT: "payout";
|
|
5083
|
+
readonly ACCOUNT: "account";
|
|
5084
|
+
};
|
|
5085
|
+
type PlatformFeeType = typeof PlatformFeeType[keyof typeof PlatformFeeType];
|
|
4841
5086
|
/**
|
|
4842
5087
|
*
|
|
4843
5088
|
* @export
|
|
@@ -5312,6 +5557,11 @@ interface PostIssueComment {
|
|
|
5312
5557
|
*/
|
|
5313
5558
|
append_badge?: boolean;
|
|
5314
5559
|
}
|
|
5560
|
+
/**
|
|
5561
|
+
* @type PricesInner
|
|
5562
|
+
* @export
|
|
5563
|
+
*/
|
|
5564
|
+
type PricesInner = ExistingSubscriptionTierPrice | SubscriptionTierPriceCreate;
|
|
5315
5565
|
/**
|
|
5316
5566
|
*
|
|
5317
5567
|
* @export
|
|
@@ -5561,6 +5811,12 @@ interface Repository {
|
|
|
5561
5811
|
* @memberof Repository
|
|
5562
5812
|
*/
|
|
5563
5813
|
homepage?: string;
|
|
5814
|
+
/**
|
|
5815
|
+
*
|
|
5816
|
+
* @type {RepositoryProfileSettings}
|
|
5817
|
+
* @memberof Repository
|
|
5818
|
+
*/
|
|
5819
|
+
profile_settings: RepositoryProfileSettings;
|
|
5564
5820
|
/**
|
|
5565
5821
|
*
|
|
5566
5822
|
* @type {Organization}
|
|
@@ -5672,6 +5928,105 @@ interface RepositoryBadgeSettingsUpdate {
|
|
|
5672
5928
|
*/
|
|
5673
5929
|
retroactive: boolean;
|
|
5674
5930
|
}
|
|
5931
|
+
/**
|
|
5932
|
+
*
|
|
5933
|
+
* @export
|
|
5934
|
+
* @interface RepositoryProfileSettings
|
|
5935
|
+
*/
|
|
5936
|
+
interface RepositoryProfileSettings {
|
|
5937
|
+
/**
|
|
5938
|
+
* A description of the repository
|
|
5939
|
+
* @type {string}
|
|
5940
|
+
* @memberof RepositoryProfileSettings
|
|
5941
|
+
*/
|
|
5942
|
+
description?: string;
|
|
5943
|
+
/**
|
|
5944
|
+
* A URL to a cover image
|
|
5945
|
+
* @type {string}
|
|
5946
|
+
* @memberof RepositoryProfileSettings
|
|
5947
|
+
*/
|
|
5948
|
+
cover_image_url?: string;
|
|
5949
|
+
/**
|
|
5950
|
+
* A list of featured organizations
|
|
5951
|
+
* @type {Array<string>}
|
|
5952
|
+
* @memberof RepositoryProfileSettings
|
|
5953
|
+
*/
|
|
5954
|
+
featured_organizations?: Array<string>;
|
|
5955
|
+
/**
|
|
5956
|
+
* A list of highlighted subscription tiers
|
|
5957
|
+
* @type {Array<string>}
|
|
5958
|
+
* @memberof RepositoryProfileSettings
|
|
5959
|
+
*/
|
|
5960
|
+
highlighted_subscription_tiers?: Array<string>;
|
|
5961
|
+
/**
|
|
5962
|
+
* A list of links related to the repository
|
|
5963
|
+
* @type {Array<string>}
|
|
5964
|
+
* @memberof RepositoryProfileSettings
|
|
5965
|
+
*/
|
|
5966
|
+
links?: Array<string>;
|
|
5967
|
+
}
|
|
5968
|
+
/**
|
|
5969
|
+
*
|
|
5970
|
+
* @export
|
|
5971
|
+
* @interface RepositoryProfileSettingsUpdate
|
|
5972
|
+
*/
|
|
5973
|
+
interface RepositoryProfileSettingsUpdate {
|
|
5974
|
+
/**
|
|
5975
|
+
*
|
|
5976
|
+
* @type {boolean}
|
|
5977
|
+
* @memberof RepositoryProfileSettingsUpdate
|
|
5978
|
+
*/
|
|
5979
|
+
set_description?: boolean;
|
|
5980
|
+
/**
|
|
5981
|
+
*
|
|
5982
|
+
* @type {string}
|
|
5983
|
+
* @memberof RepositoryProfileSettingsUpdate
|
|
5984
|
+
*/
|
|
5985
|
+
description?: string;
|
|
5986
|
+
/**
|
|
5987
|
+
*
|
|
5988
|
+
* @type {boolean}
|
|
5989
|
+
* @memberof RepositoryProfileSettingsUpdate
|
|
5990
|
+
*/
|
|
5991
|
+
set_cover_image_url?: boolean;
|
|
5992
|
+
/**
|
|
5993
|
+
*
|
|
5994
|
+
* @type {string}
|
|
5995
|
+
* @memberof RepositoryProfileSettingsUpdate
|
|
5996
|
+
*/
|
|
5997
|
+
cover_image_url?: string;
|
|
5998
|
+
/**
|
|
5999
|
+
*
|
|
6000
|
+
* @type {Array<string>}
|
|
6001
|
+
* @memberof RepositoryProfileSettingsUpdate
|
|
6002
|
+
*/
|
|
6003
|
+
featured_organizations?: Array<string>;
|
|
6004
|
+
/**
|
|
6005
|
+
*
|
|
6006
|
+
* @type {Array<string>}
|
|
6007
|
+
* @memberof RepositoryProfileSettingsUpdate
|
|
6008
|
+
*/
|
|
6009
|
+
highlighted_subscription_tiers?: Array<string>;
|
|
6010
|
+
/**
|
|
6011
|
+
*
|
|
6012
|
+
* @type {Array<string>}
|
|
6013
|
+
* @memberof RepositoryProfileSettingsUpdate
|
|
6014
|
+
*/
|
|
6015
|
+
links?: Array<string>;
|
|
6016
|
+
}
|
|
6017
|
+
/**
|
|
6018
|
+
*
|
|
6019
|
+
* @export
|
|
6020
|
+
* @interface RepositoryUpdate
|
|
6021
|
+
*/
|
|
6022
|
+
interface RepositoryUpdate {
|
|
6023
|
+
/**
|
|
6024
|
+
*
|
|
6025
|
+
* @type {RepositoryProfileSettingsUpdate}
|
|
6026
|
+
* @memberof RepositoryUpdate
|
|
6027
|
+
*/
|
|
6028
|
+
profile_settings?: RepositoryProfileSettingsUpdate;
|
|
6029
|
+
}
|
|
5675
6030
|
/**
|
|
5676
6031
|
* @type ResponseSubscriptionsCreateSubscriptionBenefit
|
|
5677
6032
|
* @export
|
|
@@ -5918,6 +6273,12 @@ interface SubscribeSession {
|
|
|
5918
6273
|
* @memberof SubscribeSession
|
|
5919
6274
|
*/
|
|
5920
6275
|
subscription_tier: SubscriptionTier;
|
|
6276
|
+
/**
|
|
6277
|
+
*
|
|
6278
|
+
* @type {SubscriptionTierPrice}
|
|
6279
|
+
* @memberof SubscribeSession
|
|
6280
|
+
*/
|
|
6281
|
+
price: SubscriptionTierPrice;
|
|
5921
6282
|
/**
|
|
5922
6283
|
*
|
|
5923
6284
|
* @type {string}
|
|
@@ -5943,6 +6304,12 @@ interface SubscribeSessionCreate {
|
|
|
5943
6304
|
* @memberof SubscribeSessionCreate
|
|
5944
6305
|
*/
|
|
5945
6306
|
tier_id: string;
|
|
6307
|
+
/**
|
|
6308
|
+
* ID of the Subscription Tier Price to subscribe to.
|
|
6309
|
+
* @type {string}
|
|
6310
|
+
* @memberof SubscribeSessionCreate
|
|
6311
|
+
*/
|
|
6312
|
+
price_id: string;
|
|
5946
6313
|
/**
|
|
5947
6314
|
* URL where the backer will be redirected after a successful subscription. You can add the `session_id={CHECKOUT_SESSION_ID}` query parameter to retrieve the subscribe session id.
|
|
5948
6315
|
* @type {string}
|
|
@@ -6027,31 +6394,25 @@ interface Subscription {
|
|
|
6027
6394
|
* @type {string}
|
|
6028
6395
|
* @memberof Subscription
|
|
6029
6396
|
*/
|
|
6030
|
-
|
|
6397
|
+
user_id: string;
|
|
6031
6398
|
/**
|
|
6032
6399
|
*
|
|
6033
|
-
* @type {
|
|
6400
|
+
* @type {string}
|
|
6034
6401
|
* @memberof Subscription
|
|
6035
6402
|
*/
|
|
6036
|
-
|
|
6037
|
-
/**
|
|
6038
|
-
*
|
|
6039
|
-
* @type {string}
|
|
6040
|
-
* @memberof Subscription
|
|
6041
|
-
*/
|
|
6042
|
-
user_id: string;
|
|
6403
|
+
organization_id?: string;
|
|
6043
6404
|
/**
|
|
6044
6405
|
*
|
|
6045
6406
|
* @type {string}
|
|
6046
6407
|
* @memberof Subscription
|
|
6047
6408
|
*/
|
|
6048
|
-
|
|
6409
|
+
subscription_tier_id: string;
|
|
6049
6410
|
/**
|
|
6050
6411
|
*
|
|
6051
6412
|
* @type {string}
|
|
6052
6413
|
* @memberof Subscription
|
|
6053
6414
|
*/
|
|
6054
|
-
|
|
6415
|
+
price_id?: string;
|
|
6055
6416
|
/**
|
|
6056
6417
|
*
|
|
6057
6418
|
* @type {SubscriptionUser}
|
|
@@ -6070,6 +6431,12 @@ interface Subscription {
|
|
|
6070
6431
|
* @memberof Subscription
|
|
6071
6432
|
*/
|
|
6072
6433
|
subscription_tier: SubscriptionTier;
|
|
6434
|
+
/**
|
|
6435
|
+
*
|
|
6436
|
+
* @type {SubscriptionTierPrice}
|
|
6437
|
+
* @memberof Subscription
|
|
6438
|
+
*/
|
|
6439
|
+
price?: SubscriptionTierPrice;
|
|
6073
6440
|
}
|
|
6074
6441
|
/**
|
|
6075
6442
|
*
|
|
@@ -7261,7 +7628,19 @@ interface SubscriptionBenefitGitHubRepositoryCreateProperties {
|
|
|
7261
7628
|
* @type {string}
|
|
7262
7629
|
* @memberof SubscriptionBenefitGitHubRepositoryCreateProperties
|
|
7263
7630
|
*/
|
|
7264
|
-
repository_id
|
|
7631
|
+
repository_id?: string;
|
|
7632
|
+
/**
|
|
7633
|
+
*
|
|
7634
|
+
* @type {string}
|
|
7635
|
+
* @memberof SubscriptionBenefitGitHubRepositoryCreateProperties
|
|
7636
|
+
*/
|
|
7637
|
+
repository_owner?: string;
|
|
7638
|
+
/**
|
|
7639
|
+
*
|
|
7640
|
+
* @type {string}
|
|
7641
|
+
* @memberof SubscriptionBenefitGitHubRepositoryCreateProperties
|
|
7642
|
+
*/
|
|
7643
|
+
repository_name?: string;
|
|
7265
7644
|
/**
|
|
7266
7645
|
*
|
|
7267
7646
|
* @type {string}
|
|
@@ -7291,7 +7670,7 @@ interface SubscriptionBenefitGitHubRepositoryProperties {
|
|
|
7291
7670
|
* @type {string}
|
|
7292
7671
|
* @memberof SubscriptionBenefitGitHubRepositoryProperties
|
|
7293
7672
|
*/
|
|
7294
|
-
repository_id
|
|
7673
|
+
repository_id?: string;
|
|
7295
7674
|
/**
|
|
7296
7675
|
*
|
|
7297
7676
|
* @type {string}
|
|
@@ -7402,12 +7781,6 @@ type SubscriptionBenefitGitHubRepositorySubscriberTypeEnum = typeof Subscription
|
|
|
7402
7781
|
* @interface SubscriptionBenefitGitHubRepositorySubscriberProperties
|
|
7403
7782
|
*/
|
|
7404
7783
|
interface SubscriptionBenefitGitHubRepositorySubscriberProperties {
|
|
7405
|
-
/**
|
|
7406
|
-
*
|
|
7407
|
-
* @type {string}
|
|
7408
|
-
* @memberof SubscriptionBenefitGitHubRepositorySubscriberProperties
|
|
7409
|
-
*/
|
|
7410
|
-
repository_id: string;
|
|
7411
7784
|
/**
|
|
7412
7785
|
*
|
|
7413
7786
|
* @type {string}
|
|
@@ -7711,31 +8084,25 @@ interface SubscriptionSubscriber {
|
|
|
7711
8084
|
* @type {string}
|
|
7712
8085
|
* @memberof SubscriptionSubscriber
|
|
7713
8086
|
*/
|
|
7714
|
-
|
|
7715
|
-
/**
|
|
7716
|
-
*
|
|
7717
|
-
* @type {number}
|
|
7718
|
-
* @memberof SubscriptionSubscriber
|
|
7719
|
-
*/
|
|
7720
|
-
price_amount: number;
|
|
8087
|
+
user_id: string;
|
|
7721
8088
|
/**
|
|
7722
8089
|
*
|
|
7723
8090
|
* @type {string}
|
|
7724
8091
|
* @memberof SubscriptionSubscriber
|
|
7725
8092
|
*/
|
|
7726
|
-
|
|
8093
|
+
organization_id?: string;
|
|
7727
8094
|
/**
|
|
7728
8095
|
*
|
|
7729
8096
|
* @type {string}
|
|
7730
8097
|
* @memberof SubscriptionSubscriber
|
|
7731
8098
|
*/
|
|
7732
|
-
|
|
8099
|
+
subscription_tier_id: string;
|
|
7733
8100
|
/**
|
|
7734
8101
|
*
|
|
7735
8102
|
* @type {string}
|
|
7736
8103
|
* @memberof SubscriptionSubscriber
|
|
7737
8104
|
*/
|
|
7738
|
-
|
|
8105
|
+
price_id?: string;
|
|
7739
8106
|
/**
|
|
7740
8107
|
*
|
|
7741
8108
|
* @type {SubscriptionTierSubscriber}
|
|
@@ -7748,6 +8115,12 @@ interface SubscriptionSubscriber {
|
|
|
7748
8115
|
* @memberof SubscriptionSubscriber
|
|
7749
8116
|
*/
|
|
7750
8117
|
organization?: SubscriptionOrganization;
|
|
8118
|
+
/**
|
|
8119
|
+
*
|
|
8120
|
+
* @type {SubscriptionTierPrice}
|
|
8121
|
+
* @memberof SubscriptionSubscriber
|
|
8122
|
+
*/
|
|
8123
|
+
price?: SubscriptionTierPrice;
|
|
7751
8124
|
}
|
|
7752
8125
|
/**
|
|
7753
8126
|
*
|
|
@@ -7773,6 +8146,12 @@ interface SubscriptionSummary {
|
|
|
7773
8146
|
* @memberof SubscriptionSummary
|
|
7774
8147
|
*/
|
|
7775
8148
|
subscription_tier: SubscriptionTier;
|
|
8149
|
+
/**
|
|
8150
|
+
*
|
|
8151
|
+
* @type {SubscriptionTierPrice}
|
|
8152
|
+
* @memberof SubscriptionSummary
|
|
8153
|
+
*/
|
|
8154
|
+
price?: SubscriptionTierPrice;
|
|
7776
8155
|
}
|
|
7777
8156
|
/**
|
|
7778
8157
|
*
|
|
@@ -7822,18 +8201,6 @@ interface SubscriptionTier {
|
|
|
7822
8201
|
* @memberof SubscriptionTier
|
|
7823
8202
|
*/
|
|
7824
8203
|
is_highlighted: boolean;
|
|
7825
|
-
/**
|
|
7826
|
-
*
|
|
7827
|
-
* @type {number}
|
|
7828
|
-
* @memberof SubscriptionTier
|
|
7829
|
-
*/
|
|
7830
|
-
price_amount: number;
|
|
7831
|
-
/**
|
|
7832
|
-
*
|
|
7833
|
-
* @type {string}
|
|
7834
|
-
* @memberof SubscriptionTier
|
|
7835
|
-
*/
|
|
7836
|
-
price_currency: string;
|
|
7837
8204
|
/**
|
|
7838
8205
|
*
|
|
7839
8206
|
* @type {boolean}
|
|
@@ -7852,6 +8219,12 @@ interface SubscriptionTier {
|
|
|
7852
8219
|
* @memberof SubscriptionTier
|
|
7853
8220
|
*/
|
|
7854
8221
|
repository_id?: string;
|
|
8222
|
+
/**
|
|
8223
|
+
*
|
|
8224
|
+
* @type {Array<SubscriptionTierPrice>}
|
|
8225
|
+
* @memberof SubscriptionTier
|
|
8226
|
+
*/
|
|
8227
|
+
prices: Array<SubscriptionTierPrice>;
|
|
7855
8228
|
/**
|
|
7856
8229
|
*
|
|
7857
8230
|
* @type {Array<BenefitsInner>}
|
|
@@ -7904,16 +8277,10 @@ interface SubscriptionTierCreate {
|
|
|
7904
8277
|
is_highlighted?: boolean;
|
|
7905
8278
|
/**
|
|
7906
8279
|
*
|
|
7907
|
-
* @type {
|
|
7908
|
-
* @memberof SubscriptionTierCreate
|
|
7909
|
-
*/
|
|
7910
|
-
price_amount: number;
|
|
7911
|
-
/**
|
|
7912
|
-
*
|
|
7913
|
-
* @type {string}
|
|
8280
|
+
* @type {Array<SubscriptionTierPriceCreate>}
|
|
7914
8281
|
* @memberof SubscriptionTierCreate
|
|
7915
8282
|
*/
|
|
7916
|
-
|
|
8283
|
+
prices: Array<SubscriptionTierPriceCreate>;
|
|
7917
8284
|
/**
|
|
7918
8285
|
*
|
|
7919
8286
|
* @type {string}
|
|
@@ -7935,6 +8302,89 @@ declare const SubscriptionTierCreateTypeEnum: {
|
|
|
7935
8302
|
readonly BUSINESS: "business";
|
|
7936
8303
|
};
|
|
7937
8304
|
type SubscriptionTierCreateTypeEnum = typeof SubscriptionTierCreateTypeEnum[keyof typeof SubscriptionTierCreateTypeEnum];
|
|
8305
|
+
/**
|
|
8306
|
+
*
|
|
8307
|
+
* @export
|
|
8308
|
+
* @interface SubscriptionTierPrice
|
|
8309
|
+
*/
|
|
8310
|
+
interface SubscriptionTierPrice {
|
|
8311
|
+
/**
|
|
8312
|
+
*
|
|
8313
|
+
* @type {string}
|
|
8314
|
+
* @memberof SubscriptionTierPrice
|
|
8315
|
+
*/
|
|
8316
|
+
created_at: string;
|
|
8317
|
+
/**
|
|
8318
|
+
*
|
|
8319
|
+
* @type {string}
|
|
8320
|
+
* @memberof SubscriptionTierPrice
|
|
8321
|
+
*/
|
|
8322
|
+
modified_at?: string;
|
|
8323
|
+
/**
|
|
8324
|
+
*
|
|
8325
|
+
* @type {string}
|
|
8326
|
+
* @memberof SubscriptionTierPrice
|
|
8327
|
+
*/
|
|
8328
|
+
id: string;
|
|
8329
|
+
/**
|
|
8330
|
+
*
|
|
8331
|
+
* @type {SubscriptionTierPriceRecurringInterval}
|
|
8332
|
+
* @memberof SubscriptionTierPrice
|
|
8333
|
+
*/
|
|
8334
|
+
recurring_interval: SubscriptionTierPriceRecurringInterval;
|
|
8335
|
+
/**
|
|
8336
|
+
*
|
|
8337
|
+
* @type {number}
|
|
8338
|
+
* @memberof SubscriptionTierPrice
|
|
8339
|
+
*/
|
|
8340
|
+
price_amount: number;
|
|
8341
|
+
/**
|
|
8342
|
+
*
|
|
8343
|
+
* @type {string}
|
|
8344
|
+
* @memberof SubscriptionTierPrice
|
|
8345
|
+
*/
|
|
8346
|
+
price_currency: string;
|
|
8347
|
+
/**
|
|
8348
|
+
*
|
|
8349
|
+
* @type {boolean}
|
|
8350
|
+
* @memberof SubscriptionTierPrice
|
|
8351
|
+
*/
|
|
8352
|
+
is_archived: boolean;
|
|
8353
|
+
}
|
|
8354
|
+
/**
|
|
8355
|
+
*
|
|
8356
|
+
* @export
|
|
8357
|
+
* @interface SubscriptionTierPriceCreate
|
|
8358
|
+
*/
|
|
8359
|
+
interface SubscriptionTierPriceCreate {
|
|
8360
|
+
/**
|
|
8361
|
+
*
|
|
8362
|
+
* @type {SubscriptionTierPriceRecurringInterval}
|
|
8363
|
+
* @memberof SubscriptionTierPriceCreate
|
|
8364
|
+
*/
|
|
8365
|
+
recurring_interval: SubscriptionTierPriceRecurringInterval;
|
|
8366
|
+
/**
|
|
8367
|
+
*
|
|
8368
|
+
* @type {number}
|
|
8369
|
+
* @memberof SubscriptionTierPriceCreate
|
|
8370
|
+
*/
|
|
8371
|
+
price_amount: number;
|
|
8372
|
+
/**
|
|
8373
|
+
*
|
|
8374
|
+
* @type {string}
|
|
8375
|
+
* @memberof SubscriptionTierPriceCreate
|
|
8376
|
+
*/
|
|
8377
|
+
price_currency?: string;
|
|
8378
|
+
}
|
|
8379
|
+
/**
|
|
8380
|
+
*
|
|
8381
|
+
* @export
|
|
8382
|
+
*/
|
|
8383
|
+
declare const SubscriptionTierPriceRecurringInterval: {
|
|
8384
|
+
readonly MONTH: "month";
|
|
8385
|
+
readonly YEAR: "year";
|
|
8386
|
+
};
|
|
8387
|
+
type SubscriptionTierPriceRecurringInterval = typeof SubscriptionTierPriceRecurringInterval[keyof typeof SubscriptionTierPriceRecurringInterval];
|
|
7938
8388
|
/**
|
|
7939
8389
|
*
|
|
7940
8390
|
* @export
|
|
@@ -7983,18 +8433,6 @@ interface SubscriptionTierSubscriber {
|
|
|
7983
8433
|
* @memberof SubscriptionTierSubscriber
|
|
7984
8434
|
*/
|
|
7985
8435
|
is_highlighted: boolean;
|
|
7986
|
-
/**
|
|
7987
|
-
*
|
|
7988
|
-
* @type {number}
|
|
7989
|
-
* @memberof SubscriptionTierSubscriber
|
|
7990
|
-
*/
|
|
7991
|
-
price_amount: number;
|
|
7992
|
-
/**
|
|
7993
|
-
*
|
|
7994
|
-
* @type {string}
|
|
7995
|
-
* @memberof SubscriptionTierSubscriber
|
|
7996
|
-
*/
|
|
7997
|
-
price_currency: string;
|
|
7998
8436
|
/**
|
|
7999
8437
|
*
|
|
8000
8438
|
* @type {boolean}
|
|
@@ -8013,6 +8451,12 @@ interface SubscriptionTierSubscriber {
|
|
|
8013
8451
|
* @memberof SubscriptionTierSubscriber
|
|
8014
8452
|
*/
|
|
8015
8453
|
repository_id?: string;
|
|
8454
|
+
/**
|
|
8455
|
+
*
|
|
8456
|
+
* @type {Array<SubscriptionTierPrice>}
|
|
8457
|
+
* @memberof SubscriptionTierSubscriber
|
|
8458
|
+
*/
|
|
8459
|
+
prices: Array<SubscriptionTierPrice>;
|
|
8016
8460
|
/**
|
|
8017
8461
|
*
|
|
8018
8462
|
* @type {Array<BenefitsInner1>}
|
|
@@ -8056,16 +8500,10 @@ interface SubscriptionTierUpdate {
|
|
|
8056
8500
|
is_highlighted?: boolean;
|
|
8057
8501
|
/**
|
|
8058
8502
|
*
|
|
8059
|
-
* @type {
|
|
8060
|
-
* @memberof SubscriptionTierUpdate
|
|
8061
|
-
*/
|
|
8062
|
-
price_amount?: number;
|
|
8063
|
-
/**
|
|
8064
|
-
*
|
|
8065
|
-
* @type {string}
|
|
8503
|
+
* @type {Array<PricesInner>}
|
|
8066
8504
|
* @memberof SubscriptionTierUpdate
|
|
8067
8505
|
*/
|
|
8068
|
-
|
|
8506
|
+
prices?: Array<PricesInner>;
|
|
8069
8507
|
}
|
|
8070
8508
|
/**
|
|
8071
8509
|
*
|
|
@@ -8079,6 +8517,12 @@ interface SubscriptionUpgrade {
|
|
|
8079
8517
|
* @memberof SubscriptionUpgrade
|
|
8080
8518
|
*/
|
|
8081
8519
|
subscription_tier_id: string;
|
|
8520
|
+
/**
|
|
8521
|
+
*
|
|
8522
|
+
* @type {string}
|
|
8523
|
+
* @memberof SubscriptionUpgrade
|
|
8524
|
+
*/
|
|
8525
|
+
price_id: string;
|
|
8082
8526
|
}
|
|
8083
8527
|
/**
|
|
8084
8528
|
*
|
|
@@ -8166,13 +8610,7 @@ interface SubscriptionsStatisticsPeriod {
|
|
|
8166
8610
|
* @type {number}
|
|
8167
8611
|
* @memberof SubscriptionsStatisticsPeriod
|
|
8168
8612
|
*/
|
|
8169
|
-
|
|
8170
|
-
/**
|
|
8171
|
-
*
|
|
8172
|
-
* @type {number}
|
|
8173
|
-
* @memberof SubscriptionsStatisticsPeriod
|
|
8174
|
-
*/
|
|
8175
|
-
cumulative: number;
|
|
8613
|
+
earnings: number;
|
|
8176
8614
|
}
|
|
8177
8615
|
/**
|
|
8178
8616
|
*
|
|
@@ -8447,7 +8885,7 @@ interface Transaction {
|
|
|
8447
8885
|
* @type {PaymentProcessor}
|
|
8448
8886
|
* @memberof Transaction
|
|
8449
8887
|
*/
|
|
8450
|
-
processor
|
|
8888
|
+
processor?: PaymentProcessor;
|
|
8451
8889
|
/**
|
|
8452
8890
|
*
|
|
8453
8891
|
* @type {string}
|
|
@@ -8472,6 +8910,12 @@ interface Transaction {
|
|
|
8472
8910
|
* @memberof Transaction
|
|
8473
8911
|
*/
|
|
8474
8912
|
account_amount: number;
|
|
8913
|
+
/**
|
|
8914
|
+
*
|
|
8915
|
+
* @type {PlatformFeeType}
|
|
8916
|
+
* @memberof Transaction
|
|
8917
|
+
*/
|
|
8918
|
+
platform_fee_type?: PlatformFeeType;
|
|
8475
8919
|
/**
|
|
8476
8920
|
*
|
|
8477
8921
|
* @type {string}
|
|
@@ -8490,12 +8934,24 @@ interface Transaction {
|
|
|
8490
8934
|
* @memberof Transaction
|
|
8491
8935
|
*/
|
|
8492
8936
|
subscription_id?: string;
|
|
8937
|
+
/**
|
|
8938
|
+
*
|
|
8939
|
+
* @type {string}
|
|
8940
|
+
* @memberof Transaction
|
|
8941
|
+
*/
|
|
8942
|
+
subscription_tier_price_id?: string;
|
|
8493
8943
|
/**
|
|
8494
8944
|
*
|
|
8495
8945
|
* @type {string}
|
|
8496
8946
|
* @memberof Transaction
|
|
8497
8947
|
*/
|
|
8498
8948
|
payout_transaction_id?: string;
|
|
8949
|
+
/**
|
|
8950
|
+
*
|
|
8951
|
+
* @type {string}
|
|
8952
|
+
* @memberof Transaction
|
|
8953
|
+
*/
|
|
8954
|
+
incurred_by_transaction_id?: string;
|
|
8499
8955
|
/**
|
|
8500
8956
|
*
|
|
8501
8957
|
* @type {TransactionPledge}
|
|
@@ -8514,6 +8970,36 @@ interface Transaction {
|
|
|
8514
8970
|
* @memberof Transaction
|
|
8515
8971
|
*/
|
|
8516
8972
|
subscription?: TransactionSubscription;
|
|
8973
|
+
/**
|
|
8974
|
+
*
|
|
8975
|
+
* @type {TransactionSubscriptionPrice}
|
|
8976
|
+
* @memberof Transaction
|
|
8977
|
+
*/
|
|
8978
|
+
subscription_tier_price?: TransactionSubscriptionPrice;
|
|
8979
|
+
/**
|
|
8980
|
+
*
|
|
8981
|
+
* @type {Array<TransactionEmbedded>}
|
|
8982
|
+
* @memberof Transaction
|
|
8983
|
+
*/
|
|
8984
|
+
account_incurred_transactions: Array<TransactionEmbedded>;
|
|
8985
|
+
/**
|
|
8986
|
+
*
|
|
8987
|
+
* @type {number}
|
|
8988
|
+
* @memberof Transaction
|
|
8989
|
+
*/
|
|
8990
|
+
incurred_amount: number;
|
|
8991
|
+
/**
|
|
8992
|
+
*
|
|
8993
|
+
* @type {number}
|
|
8994
|
+
* @memberof Transaction
|
|
8995
|
+
*/
|
|
8996
|
+
gross_amount: number;
|
|
8997
|
+
/**
|
|
8998
|
+
*
|
|
8999
|
+
* @type {number}
|
|
9000
|
+
* @memberof Transaction
|
|
9001
|
+
*/
|
|
9002
|
+
net_amount: number;
|
|
8517
9003
|
}
|
|
8518
9004
|
/**
|
|
8519
9005
|
*
|
|
@@ -8550,7 +9036,7 @@ interface TransactionDetails {
|
|
|
8550
9036
|
* @type {PaymentProcessor}
|
|
8551
9037
|
* @memberof TransactionDetails
|
|
8552
9038
|
*/
|
|
8553
|
-
processor
|
|
9039
|
+
processor?: PaymentProcessor;
|
|
8554
9040
|
/**
|
|
8555
9041
|
*
|
|
8556
9042
|
* @type {string}
|
|
@@ -8575,6 +9061,12 @@ interface TransactionDetails {
|
|
|
8575
9061
|
* @memberof TransactionDetails
|
|
8576
9062
|
*/
|
|
8577
9063
|
account_amount: number;
|
|
9064
|
+
/**
|
|
9065
|
+
*
|
|
9066
|
+
* @type {PlatformFeeType}
|
|
9067
|
+
* @memberof TransactionDetails
|
|
9068
|
+
*/
|
|
9069
|
+
platform_fee_type?: PlatformFeeType;
|
|
8578
9070
|
/**
|
|
8579
9071
|
*
|
|
8580
9072
|
* @type {string}
|
|
@@ -8593,12 +9085,24 @@ interface TransactionDetails {
|
|
|
8593
9085
|
* @memberof TransactionDetails
|
|
8594
9086
|
*/
|
|
8595
9087
|
subscription_id?: string;
|
|
9088
|
+
/**
|
|
9089
|
+
*
|
|
9090
|
+
* @type {string}
|
|
9091
|
+
* @memberof TransactionDetails
|
|
9092
|
+
*/
|
|
9093
|
+
subscription_tier_price_id?: string;
|
|
8596
9094
|
/**
|
|
8597
9095
|
*
|
|
8598
9096
|
* @type {string}
|
|
8599
9097
|
* @memberof TransactionDetails
|
|
8600
9098
|
*/
|
|
8601
9099
|
payout_transaction_id?: string;
|
|
9100
|
+
/**
|
|
9101
|
+
*
|
|
9102
|
+
* @type {string}
|
|
9103
|
+
* @memberof TransactionDetails
|
|
9104
|
+
*/
|
|
9105
|
+
incurred_by_transaction_id?: string;
|
|
8602
9106
|
/**
|
|
8603
9107
|
*
|
|
8604
9108
|
* @type {TransactionPledge}
|
|
@@ -8617,6 +9121,36 @@ interface TransactionDetails {
|
|
|
8617
9121
|
* @memberof TransactionDetails
|
|
8618
9122
|
*/
|
|
8619
9123
|
subscription?: TransactionSubscription;
|
|
9124
|
+
/**
|
|
9125
|
+
*
|
|
9126
|
+
* @type {TransactionSubscriptionPrice}
|
|
9127
|
+
* @memberof TransactionDetails
|
|
9128
|
+
*/
|
|
9129
|
+
subscription_tier_price?: TransactionSubscriptionPrice;
|
|
9130
|
+
/**
|
|
9131
|
+
*
|
|
9132
|
+
* @type {Array<TransactionEmbedded>}
|
|
9133
|
+
* @memberof TransactionDetails
|
|
9134
|
+
*/
|
|
9135
|
+
account_incurred_transactions: Array<TransactionEmbedded>;
|
|
9136
|
+
/**
|
|
9137
|
+
*
|
|
9138
|
+
* @type {number}
|
|
9139
|
+
* @memberof TransactionDetails
|
|
9140
|
+
*/
|
|
9141
|
+
incurred_amount: number;
|
|
9142
|
+
/**
|
|
9143
|
+
*
|
|
9144
|
+
* @type {number}
|
|
9145
|
+
* @memberof TransactionDetails
|
|
9146
|
+
*/
|
|
9147
|
+
gross_amount: number;
|
|
9148
|
+
/**
|
|
9149
|
+
*
|
|
9150
|
+
* @type {number}
|
|
9151
|
+
* @memberof TransactionDetails
|
|
9152
|
+
*/
|
|
9153
|
+
net_amount: number;
|
|
8620
9154
|
/**
|
|
8621
9155
|
*
|
|
8622
9156
|
* @type {Array<Transaction>}
|
|
@@ -8624,6 +9158,109 @@ interface TransactionDetails {
|
|
|
8624
9158
|
*/
|
|
8625
9159
|
paid_transactions: Array<Transaction>;
|
|
8626
9160
|
}
|
|
9161
|
+
/**
|
|
9162
|
+
*
|
|
9163
|
+
* @export
|
|
9164
|
+
* @interface TransactionEmbedded
|
|
9165
|
+
*/
|
|
9166
|
+
interface TransactionEmbedded {
|
|
9167
|
+
/**
|
|
9168
|
+
*
|
|
9169
|
+
* @type {string}
|
|
9170
|
+
* @memberof TransactionEmbedded
|
|
9171
|
+
*/
|
|
9172
|
+
created_at: string;
|
|
9173
|
+
/**
|
|
9174
|
+
*
|
|
9175
|
+
* @type {string}
|
|
9176
|
+
* @memberof TransactionEmbedded
|
|
9177
|
+
*/
|
|
9178
|
+
modified_at?: string;
|
|
9179
|
+
/**
|
|
9180
|
+
*
|
|
9181
|
+
* @type {string}
|
|
9182
|
+
* @memberof TransactionEmbedded
|
|
9183
|
+
*/
|
|
9184
|
+
id: string;
|
|
9185
|
+
/**
|
|
9186
|
+
*
|
|
9187
|
+
* @type {TransactionType}
|
|
9188
|
+
* @memberof TransactionEmbedded
|
|
9189
|
+
*/
|
|
9190
|
+
type: TransactionType;
|
|
9191
|
+
/**
|
|
9192
|
+
*
|
|
9193
|
+
* @type {PaymentProcessor}
|
|
9194
|
+
* @memberof TransactionEmbedded
|
|
9195
|
+
*/
|
|
9196
|
+
processor?: PaymentProcessor;
|
|
9197
|
+
/**
|
|
9198
|
+
*
|
|
9199
|
+
* @type {string}
|
|
9200
|
+
* @memberof TransactionEmbedded
|
|
9201
|
+
*/
|
|
9202
|
+
currency: string;
|
|
9203
|
+
/**
|
|
9204
|
+
*
|
|
9205
|
+
* @type {number}
|
|
9206
|
+
* @memberof TransactionEmbedded
|
|
9207
|
+
*/
|
|
9208
|
+
amount: number;
|
|
9209
|
+
/**
|
|
9210
|
+
*
|
|
9211
|
+
* @type {string}
|
|
9212
|
+
* @memberof TransactionEmbedded
|
|
9213
|
+
*/
|
|
9214
|
+
account_currency: string;
|
|
9215
|
+
/**
|
|
9216
|
+
*
|
|
9217
|
+
* @type {number}
|
|
9218
|
+
* @memberof TransactionEmbedded
|
|
9219
|
+
*/
|
|
9220
|
+
account_amount: number;
|
|
9221
|
+
/**
|
|
9222
|
+
*
|
|
9223
|
+
* @type {PlatformFeeType}
|
|
9224
|
+
* @memberof TransactionEmbedded
|
|
9225
|
+
*/
|
|
9226
|
+
platform_fee_type?: PlatformFeeType;
|
|
9227
|
+
/**
|
|
9228
|
+
*
|
|
9229
|
+
* @type {string}
|
|
9230
|
+
* @memberof TransactionEmbedded
|
|
9231
|
+
*/
|
|
9232
|
+
pledge_id?: string;
|
|
9233
|
+
/**
|
|
9234
|
+
*
|
|
9235
|
+
* @type {string}
|
|
9236
|
+
* @memberof TransactionEmbedded
|
|
9237
|
+
*/
|
|
9238
|
+
issue_reward_id?: string;
|
|
9239
|
+
/**
|
|
9240
|
+
*
|
|
9241
|
+
* @type {string}
|
|
9242
|
+
* @memberof TransactionEmbedded
|
|
9243
|
+
*/
|
|
9244
|
+
subscription_id?: string;
|
|
9245
|
+
/**
|
|
9246
|
+
*
|
|
9247
|
+
* @type {string}
|
|
9248
|
+
* @memberof TransactionEmbedded
|
|
9249
|
+
*/
|
|
9250
|
+
subscription_tier_price_id?: string;
|
|
9251
|
+
/**
|
|
9252
|
+
*
|
|
9253
|
+
* @type {string}
|
|
9254
|
+
* @memberof TransactionEmbedded
|
|
9255
|
+
*/
|
|
9256
|
+
payout_transaction_id?: string;
|
|
9257
|
+
/**
|
|
9258
|
+
*
|
|
9259
|
+
* @type {string}
|
|
9260
|
+
* @memberof TransactionEmbedded
|
|
9261
|
+
*/
|
|
9262
|
+
incurred_by_transaction_id?: string;
|
|
9263
|
+
}
|
|
8627
9264
|
/**
|
|
8628
9265
|
*
|
|
8629
9266
|
* @export
|
|
@@ -8889,22 +9526,59 @@ interface TransactionSubscription {
|
|
|
8889
9526
|
status: SubscriptionStatus;
|
|
8890
9527
|
/**
|
|
8891
9528
|
*
|
|
8892
|
-
* @type {
|
|
9529
|
+
* @type {TransactionSubscriptionTier}
|
|
8893
9530
|
* @memberof TransactionSubscription
|
|
8894
9531
|
*/
|
|
8895
|
-
|
|
9532
|
+
subscription_tier: TransactionSubscriptionTier;
|
|
9533
|
+
}
|
|
9534
|
+
/**
|
|
9535
|
+
*
|
|
9536
|
+
* @export
|
|
9537
|
+
* @interface TransactionSubscriptionPrice
|
|
9538
|
+
*/
|
|
9539
|
+
interface TransactionSubscriptionPrice {
|
|
9540
|
+
/**
|
|
9541
|
+
*
|
|
9542
|
+
* @type {string}
|
|
9543
|
+
* @memberof TransactionSubscriptionPrice
|
|
9544
|
+
*/
|
|
9545
|
+
created_at: string;
|
|
9546
|
+
/**
|
|
9547
|
+
*
|
|
9548
|
+
* @type {string}
|
|
9549
|
+
* @memberof TransactionSubscriptionPrice
|
|
9550
|
+
*/
|
|
9551
|
+
modified_at?: string;
|
|
9552
|
+
/**
|
|
9553
|
+
*
|
|
9554
|
+
* @type {string}
|
|
9555
|
+
* @memberof TransactionSubscriptionPrice
|
|
9556
|
+
*/
|
|
9557
|
+
id: string;
|
|
9558
|
+
/**
|
|
9559
|
+
*
|
|
9560
|
+
* @type {SubscriptionTierPriceRecurringInterval}
|
|
9561
|
+
* @memberof TransactionSubscriptionPrice
|
|
9562
|
+
*/
|
|
9563
|
+
recurring_interval: SubscriptionTierPriceRecurringInterval;
|
|
8896
9564
|
/**
|
|
8897
9565
|
*
|
|
8898
9566
|
* @type {number}
|
|
8899
|
-
* @memberof
|
|
9567
|
+
* @memberof TransactionSubscriptionPrice
|
|
8900
9568
|
*/
|
|
8901
9569
|
price_amount: number;
|
|
8902
9570
|
/**
|
|
8903
9571
|
*
|
|
8904
|
-
* @type {
|
|
8905
|
-
* @memberof
|
|
9572
|
+
* @type {string}
|
|
9573
|
+
* @memberof TransactionSubscriptionPrice
|
|
8906
9574
|
*/
|
|
8907
|
-
|
|
9575
|
+
price_currency: string;
|
|
9576
|
+
/**
|
|
9577
|
+
*
|
|
9578
|
+
* @type {boolean}
|
|
9579
|
+
* @memberof TransactionSubscriptionPrice
|
|
9580
|
+
*/
|
|
9581
|
+
is_archived: boolean;
|
|
8908
9582
|
}
|
|
8909
9583
|
/**
|
|
8910
9584
|
*
|
|
@@ -8976,7 +9650,7 @@ declare const TransactionType: {
|
|
|
8976
9650
|
readonly PROCESSOR_FEE: "processor_fee";
|
|
8977
9651
|
readonly REFUND: "refund";
|
|
8978
9652
|
readonly DISPUTE: "dispute";
|
|
8979
|
-
readonly
|
|
9653
|
+
readonly BALANCE: "balance";
|
|
8980
9654
|
readonly PAYOUT: "payout";
|
|
8981
9655
|
};
|
|
8982
9656
|
type TransactionType = typeof TransactionType[keyof typeof TransactionType];
|
|
@@ -10169,6 +10843,15 @@ interface IntegrationsApiIntegrationsGithubCallbackRequest {
|
|
|
10169
10843
|
state?: string;
|
|
10170
10844
|
error?: string;
|
|
10171
10845
|
}
|
|
10846
|
+
interface IntegrationsApiIntegrationsGithubRepositoryBenefitUserAuthorizeRequest {
|
|
10847
|
+
returnTo?: string;
|
|
10848
|
+
}
|
|
10849
|
+
interface IntegrationsApiIntegrationsGithubRepositoryBenefitUserCallbackRequest {
|
|
10850
|
+
code?: string;
|
|
10851
|
+
codeVerifier?: string;
|
|
10852
|
+
state?: string;
|
|
10853
|
+
error?: string;
|
|
10854
|
+
}
|
|
10172
10855
|
interface IntegrationsApiLookupUserOperationRequest {
|
|
10173
10856
|
lookupUserRequest: LookupUserRequest;
|
|
10174
10857
|
}
|
|
@@ -10266,6 +10949,48 @@ declare class IntegrationsApi extends BaseAPI {
|
|
|
10266
10949
|
* Integrations.Github.Callback
|
|
10267
10950
|
*/
|
|
10268
10951
|
integrationsGithubCallback(requestParameters?: IntegrationsApiIntegrationsGithubCallbackRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<any>;
|
|
10952
|
+
/**
|
|
10953
|
+
* Integrations.Github Repository Benefit.Installation Callback
|
|
10954
|
+
*/
|
|
10955
|
+
integrationsGithubRepositoryBenefitInstallationCallbackRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<any>>;
|
|
10956
|
+
/**
|
|
10957
|
+
* Integrations.Github Repository Benefit.Installation Callback
|
|
10958
|
+
*/
|
|
10959
|
+
integrationsGithubRepositoryBenefitInstallationCallback(initOverrides?: RequestInit | InitOverrideFunction): Promise<any>;
|
|
10960
|
+
/**
|
|
10961
|
+
* Integrations.Github Repository Benefit.Installation Install
|
|
10962
|
+
*/
|
|
10963
|
+
integrationsGithubRepositoryBenefitInstallationInstallRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<any>>;
|
|
10964
|
+
/**
|
|
10965
|
+
* Integrations.Github Repository Benefit.Installation Install
|
|
10966
|
+
*/
|
|
10967
|
+
integrationsGithubRepositoryBenefitInstallationInstall(initOverrides?: RequestInit | InitOverrideFunction): Promise<any>;
|
|
10968
|
+
/**
|
|
10969
|
+
* Integrations.Github Repository Benefit.User Authorize
|
|
10970
|
+
*/
|
|
10971
|
+
integrationsGithubRepositoryBenefitUserAuthorizeRaw(requestParameters: IntegrationsApiIntegrationsGithubRepositoryBenefitUserAuthorizeRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<any>>;
|
|
10972
|
+
/**
|
|
10973
|
+
* Integrations.Github Repository Benefit.User Authorize
|
|
10974
|
+
*/
|
|
10975
|
+
integrationsGithubRepositoryBenefitUserAuthorize(requestParameters?: IntegrationsApiIntegrationsGithubRepositoryBenefitUserAuthorizeRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<any>;
|
|
10976
|
+
/**
|
|
10977
|
+
* Integrations.Github Repository Benefit.User Callback
|
|
10978
|
+
*/
|
|
10979
|
+
integrationsGithubRepositoryBenefitUserCallbackRaw(requestParameters: IntegrationsApiIntegrationsGithubRepositoryBenefitUserCallbackRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<any>>;
|
|
10980
|
+
/**
|
|
10981
|
+
* Integrations.Github Repository Benefit.User Callback
|
|
10982
|
+
*/
|
|
10983
|
+
integrationsGithubRepositoryBenefitUserCallback(requestParameters?: IntegrationsApiIntegrationsGithubRepositoryBenefitUserCallbackRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<any>;
|
|
10984
|
+
/**
|
|
10985
|
+
* Lists available repositories for this user
|
|
10986
|
+
* Integrations.Github Repository Benefit.User Repositories
|
|
10987
|
+
*/
|
|
10988
|
+
integrationsGithubRepositoryBenefitUserRepositoriesRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GitHubInvitesBenefitRepositories>>;
|
|
10989
|
+
/**
|
|
10990
|
+
* Lists available repositories for this user
|
|
10991
|
+
* Integrations.Github Repository Benefit.User Repositories
|
|
10992
|
+
*/
|
|
10993
|
+
integrationsGithubRepositoryBenefitUserRepositories(initOverrides?: RequestInit | InitOverrideFunction): Promise<GitHubInvitesBenefitRepositories>;
|
|
10269
10994
|
/**
|
|
10270
10995
|
* Lookup User
|
|
10271
10996
|
*/
|
|
@@ -11011,6 +11736,10 @@ interface RepositoriesApiSearchRequest {
|
|
|
11011
11736
|
organizationName: string;
|
|
11012
11737
|
repositoryName?: string;
|
|
11013
11738
|
}
|
|
11739
|
+
interface RepositoriesApiUpdateRequest {
|
|
11740
|
+
id: string;
|
|
11741
|
+
repositoryUpdate: RepositoryUpdate;
|
|
11742
|
+
}
|
|
11014
11743
|
/**
|
|
11015
11744
|
*
|
|
11016
11745
|
*/
|
|
@@ -11055,6 +11784,16 @@ declare class RepositoriesApi extends BaseAPI {
|
|
|
11055
11784
|
* Search repositories (Public API)
|
|
11056
11785
|
*/
|
|
11057
11786
|
search(requestParameters: RepositoriesApiSearchRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ListResourceRepository>;
|
|
11787
|
+
/**
|
|
11788
|
+
* Update repository
|
|
11789
|
+
* Update a repository (Public API)
|
|
11790
|
+
*/
|
|
11791
|
+
updateRaw(requestParameters: RepositoriesApiUpdateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<Repository>>;
|
|
11792
|
+
/**
|
|
11793
|
+
* Update repository
|
|
11794
|
+
* Update a repository (Public API)
|
|
11795
|
+
*/
|
|
11796
|
+
update(requestParameters: RepositoriesApiUpdateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<Repository>;
|
|
11058
11797
|
}
|
|
11059
11798
|
|
|
11060
11799
|
/**
|
|
@@ -11565,6 +12304,15 @@ type StatisticsIntervalEnum = typeof StatisticsIntervalEnum[keyof typeof Statist
|
|
|
11565
12304
|
* Do not edit the class manually.
|
|
11566
12305
|
*/
|
|
11567
12306
|
|
|
12307
|
+
interface TransactionsApiCreatePayoutRequest {
|
|
12308
|
+
payoutCreate: PayoutCreate;
|
|
12309
|
+
}
|
|
12310
|
+
interface TransactionsApiGetPayoutCsvRequest {
|
|
12311
|
+
id: string;
|
|
12312
|
+
}
|
|
12313
|
+
interface TransactionsApiGetPayoutEstimateRequest {
|
|
12314
|
+
accountId: string;
|
|
12315
|
+
}
|
|
11568
12316
|
interface TransactionsApiGetSummaryRequest {
|
|
11569
12317
|
accountId: string;
|
|
11570
12318
|
}
|
|
@@ -11576,6 +12324,7 @@ interface TransactionsApiSearchTransactionsRequest {
|
|
|
11576
12324
|
accountId?: string;
|
|
11577
12325
|
paymentUserId?: string;
|
|
11578
12326
|
paymentOrganizationId?: string;
|
|
12327
|
+
excludePlatformFees?: boolean;
|
|
11579
12328
|
page?: number;
|
|
11580
12329
|
limit?: number;
|
|
11581
12330
|
sorting?: Array<string>;
|
|
@@ -11584,6 +12333,30 @@ interface TransactionsApiSearchTransactionsRequest {
|
|
|
11584
12333
|
*
|
|
11585
12334
|
*/
|
|
11586
12335
|
declare class TransactionsApi extends BaseAPI {
|
|
12336
|
+
/**
|
|
12337
|
+
* Create Payout
|
|
12338
|
+
*/
|
|
12339
|
+
createPayoutRaw(requestParameters: TransactionsApiCreatePayoutRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<Transaction>>;
|
|
12340
|
+
/**
|
|
12341
|
+
* Create Payout
|
|
12342
|
+
*/
|
|
12343
|
+
createPayout(requestParameters: TransactionsApiCreatePayoutRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<Transaction>;
|
|
12344
|
+
/**
|
|
12345
|
+
* Get Payout Csv
|
|
12346
|
+
*/
|
|
12347
|
+
getPayoutCsvRaw(requestParameters: TransactionsApiGetPayoutCsvRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<any>>;
|
|
12348
|
+
/**
|
|
12349
|
+
* Get Payout Csv
|
|
12350
|
+
*/
|
|
12351
|
+
getPayoutCsv(requestParameters: TransactionsApiGetPayoutCsvRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<any>;
|
|
12352
|
+
/**
|
|
12353
|
+
* Get Payout Estimate
|
|
12354
|
+
*/
|
|
12355
|
+
getPayoutEstimateRaw(requestParameters: TransactionsApiGetPayoutEstimateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<PayoutEstimate>>;
|
|
12356
|
+
/**
|
|
12357
|
+
* Get Payout Estimate
|
|
12358
|
+
*/
|
|
12359
|
+
getPayoutEstimate(requestParameters: TransactionsApiGetPayoutEstimateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<PayoutEstimate>;
|
|
11587
12360
|
/**
|
|
11588
12361
|
* Get Summary
|
|
11589
12362
|
*/
|
|
@@ -11770,4 +12543,4 @@ declare class WebhookNotificationsApi extends BaseAPI {
|
|
|
11770
12543
|
update(requestParameters: WebhookNotificationsApiUpdateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<WebhookIntegration>;
|
|
11771
12544
|
}
|
|
11772
12545
|
|
|
11773
|
-
export { Account, AccountCreate, AccountLink, AccountType, AccountsApi, AccountsApiCreateRequest, AccountsApiDashboardLinkRequest, AccountsApiGetRequest, AccountsApiOnboardingLinkRequest, AccountsApiSearchRequest, AdvertisementCampaign, AdvertisementCampaignPublic, AdvertisementDisplay, AdvertisementsApi, AdvertisementsApiCreateCampaignRequest, AdvertisementsApiDeleteCampaignRequest, AdvertisementsApiEditCampaignRequest, AdvertisementsApiGetCampaignRequest, AdvertisementsApiSearchCampaignsRequest, AdvertisementsApiSearchDisplayRequest, AdvertisementsApiTrackViewRequest, ApiResponse, AppPermissionsType, AppPermissionsTypeActionsEnum, AppPermissionsTypeAdministrationEnum, AppPermissionsTypeChecksEnum, AppPermissionsTypeCodespacesEnum, AppPermissionsTypeContentsEnum, AppPermissionsTypeDependabotSecretsEnum, AppPermissionsTypeDeploymentsEnum, AppPermissionsTypeEmailAddressesEnum, AppPermissionsTypeEnvironmentsEnum, AppPermissionsTypeFollowersEnum, AppPermissionsTypeGitSshKeysEnum, AppPermissionsTypeGpgKeysEnum, AppPermissionsTypeInteractionLimitsEnum, AppPermissionsTypeIssuesEnum, AppPermissionsTypeMembersEnum, AppPermissionsTypeMetadataEnum, AppPermissionsTypeOrganizationAdministrationEnum, AppPermissionsTypeOrganizationAnnouncementBannersEnum, AppPermissionsTypeOrganizationCopilotSeatManagementEnum, AppPermissionsTypeOrganizationCustomOrgRolesEnum, AppPermissionsTypeOrganizationCustomPropertiesEnum, AppPermissionsTypeOrganizationCustomRolesEnum, AppPermissionsTypeOrganizationEventsEnum, AppPermissionsTypeOrganizationHooksEnum, AppPermissionsTypeOrganizationPackagesEnum, AppPermissionsTypeOrganizationPersonalAccessTokenRequestsEnum, AppPermissionsTypeOrganizationPersonalAccessTokensEnum, AppPermissionsTypeOrganizationPlanEnum, AppPermissionsTypeOrganizationProjectsEnum, AppPermissionsTypeOrganizationSecretsEnum, AppPermissionsTypeOrganizationSelfHostedRunnersEnum, AppPermissionsTypeOrganizationUserBlockingEnum, AppPermissionsTypePackagesEnum, AppPermissionsTypePagesEnum, AppPermissionsTypeProfileEnum, AppPermissionsTypePullRequestsEnum, AppPermissionsTypeRepositoryCustomPropertiesEnum, AppPermissionsTypeRepositoryHooksEnum, AppPermissionsTypeRepositoryProjectsEnum, AppPermissionsTypeSecretScanningAlertsEnum, AppPermissionsTypeSecretsEnum, AppPermissionsTypeSecurityEventsEnum, AppPermissionsTypeSingleFileEnum, AppPermissionsTypeStarringEnum, AppPermissionsTypeStatusesEnum, AppPermissionsTypeTeamDiscussionsEnum, AppPermissionsTypeVulnerabilityAlertsEnum, AppPermissionsTypeWorkflowsEnum, Article, ArticleCreate, ArticleCreateBylineEnum, ArticleCreateVisibilityEnum, ArticleDeleteResponse, ArticlePreview, ArticlePreviewResponse, ArticleReceiversResponse, ArticleSentResponse, ArticleUnsubscribeResponse, ArticleUpdate, ArticleUpdateBylineEnum, ArticleUpdateVisibilityEnum, ArticleViewedResponse, ArticleVisibilityEnum, ArticlesApi, ArticlesApiCreateRequest, ArticlesApiDeleteRequest, ArticlesApiEmailUnsubscribeRequest, ArticlesApiGetRequest, ArticlesApiListRequest, ArticlesApiLookupRequest, ArticlesApiReceiversRequest, ArticlesApiSearchRequest, ArticlesApiSendPreviewRequest, ArticlesApiSendRequest, ArticlesApiUpdateRequest, ArticlesApiViewedRequest, Assignee, AuthApi, AuthApiCustomDomainExchangeOperationRequest, AuthApiCustomDomainForwardRequest, AuthApiLogoutRequest, Author, BASE_PATH, BackofficeApi, BackofficeApiIssueRequest, BackofficeApiManageBadgeRequest, BackofficeApiPledgeCreateInvoiceRequest, BackofficeApiPledgeMarkDisputedRequest, BackofficeApiPledgeRewardTransferRequest, BackofficeApiRewardsRequest, BackofficeApiUpdateBadgeContentsRequest, BackofficeBadge, BackofficeBadgeActionEnum, BackofficeBadgeResponse, BackofficeBadgeResponseActionEnum, BackofficePledge, BackofficeReward, BaseAPI, BenefitsInner, BenefitsInner1, BlobApiResponse, Byline, COLLECTION_FORMATS, Configuration, ConfigurationParameters, ConfirmIssue, ConfirmIssueSplit, Consume, CreateAdvertisementCampaign, CreatePersonalAccessToken, CreatePersonalAccessTokenResponse, CreatePersonalAccessTokenScopesEnum, CreatePledgeFromPaymentIntent, CreatePledgePayLater, CreditBalance, CurrencyAmount, CustomDomainExchangeRequest, CustomDomainExchangeResponse, CustomDomainForwardResponse, DashboardApi, DashboardApiGetDashboardRequest, DashboardApiGetPersonalDashboardRequest, DefaultConfig, DiscordGuild, DiscordGuildRole, EditAdvertisementCampaign, Entry, ErrorContext, ExtensionApi, ExtensionApiListIssuesForExtensionRequest, ExternalGitHubCommitReference, ExternalGitHubPullRequestReference, FetchAPI, FetchError, FetchParams, FreeSubscriptionCreate, Funding, FundingApi, FundingApiLookupRequest, FundingApiSearchRequest, GithubUser, HTTPBody, HTTPHeaders, HTTPMethod, HTTPQuery, HTTPRequestInit, HTTPValidationError, HealthApi, Id, InitOverrideFunction, InstallationCreate, InstallationCreatePlatformEnum, IntegrationsApi, IntegrationsApiCheckOrganizationPermissionsRequest, IntegrationsApiDiscordGuildLookupRequest, IntegrationsApiGetOrganizationBillingPlanRequest, IntegrationsApiInstallRequest, IntegrationsApiIntegrationsDiscordBotAuthorizeRequest, IntegrationsApiIntegrationsDiscordBotCallbackRequest, IntegrationsApiIntegrationsDiscordUserAuthorizeRequest, IntegrationsApiIntegrationsDiscordUserCallbackRequest, IntegrationsApiIntegrationsGithubAuthorizeRequest, IntegrationsApiIntegrationsGithubCallbackRequest, IntegrationsApiLookupUserOperationRequest, IntegrationsApiRedirectToOrganizationInstallationRequest, IntegrationsApiStripeConnectRefreshRequest, IntegrationsApiSynchronizeMembersRequest, Issue, IssueExtensionRead, IssueFunding, IssueListResponse, IssueListType, IssueReferenceRead, IssueReferenceType, IssueSortBy, IssueStateEnum, IssueStatus, IssueUpdateBadgeMessage, IssuesApi, IssuesApiAddIssueCommentRequest, IssuesApiAddPolarBadgeRequest, IssuesApiBadgeWithMessageRequest, IssuesApiConfirmRequest, IssuesApiGetBodyRequest, IssuesApiGetRequest, IssuesApiLookupRequest, IssuesApiRemovePolarBadgeRequest, IssuesApiSearchRequest, IssuesApiUpdateRequest, ItemsInner, JSONApiResponse, Json, Label, ListFundingSortBy, ListResourceAccount, ListResourceAdvertisementCampaign, ListResourceAdvertisementDisplay, ListResourceArticle, ListResourceBackofficeReward, ListResourceIssue, ListResourceIssueFunding, ListResourceOrganization, ListResourceOrganizationMember, ListResourcePaymentMethod, ListResourcePersonalAccessToken, ListResourcePledge, ListResourcePullRequest, ListResourceRepository, ListResourceReward, ListResourceSubscription, ListResourceSubscriptionSubscriber, ListResourceSubscriptionSummary, ListResourceSubscriptionTier, ListResourceTrafficReferrer, ListResourceTransaction, ListResourceUnionSubscriptionBenefitArticlesSubscriptionBenefitAdsSubscriptionBenefitCustomSubscriptionBenefitDiscordSubscriptionBenefitGitHubRepository, ListResourceWebhookIntegration, LocationInner, LoginResponse, LogoutResponse, LookupUserRequest, MagicLinkApi, MagicLinkApiMagicLinkAuthenticateRequest, MagicLinkApiMagicLinkRequestRequest, MagicLinkRequest, MaintainerAccountReviewedNotification, MaintainerAccountReviewedNotificationPayload, MaintainerAccountReviewedNotificationTypeEnum, MaintainerAccountUnderReviewNotification, MaintainerAccountUnderReviewNotificationPayload, MaintainerAccountUnderReviewNotificationTypeEnum, MaintainerCreateAccountNotification, MaintainerCreateAccountNotificationPayload, MaintainerCreateAccountNotificationTypeEnum, MaintainerNewPaidSubscriptionNotification, MaintainerNewPaidSubscriptionNotificationPayload, MaintainerNewPaidSubscriptionNotificationTypeEnum, MaintainerPledgeConfirmationPendingNotification, MaintainerPledgeConfirmationPendingNotificationPayload, MaintainerPledgeConfirmationPendingNotificationTypeEnum, MaintainerPledgeCreatedNotification, MaintainerPledgeCreatedNotificationPayload, MaintainerPledgeCreatedNotificationTypeEnum, MaintainerPledgePaidNotification, MaintainerPledgePaidNotificationPayload, MaintainerPledgePaidNotificationTypeEnum, MaintainerPledgePendingNotification, MaintainerPledgePendingNotificationPayload, MaintainerPledgePendingNotificationTypeEnum, MaintainerPledgedIssueConfirmationPendingNotification, MaintainerPledgedIssueConfirmationPendingNotificationPayload, MaintainerPledgedIssueConfirmationPendingNotificationTypeEnum, MaintainerPledgedIssuePendingNotification, MaintainerPledgedIssuePendingNotificationPayload, MaintainerPledgedIssuePendingNotificationTypeEnum, Middleware, ModelPropertyNaming, NotificationsApi, NotificationsApiMarkReadRequest, NotificationsInner, NotificationsList, NotificationsMarkRead, OAuthAccountRead, OAuthPlatform, Organization, OrganizationBadgeSettingsRead, OrganizationBadgeSettingsUpdate, OrganizationBillingPlan, OrganizationCheckPermissionsInput, OrganizationMember, OrganizationSetAccount, OrganizationStripePortalSession, OrganizationUpdate, OrganizationsApi, OrganizationsApiCreateStripeCustomerPortalRequest, OrganizationsApiGetBadgeSettingsRequest, OrganizationsApiGetCreditsRequest, OrganizationsApiGetRequest, OrganizationsApiListMembersRequest, OrganizationsApiListRequest, OrganizationsApiLookupRequest, OrganizationsApiSearchRequest, OrganizationsApiSetAccountRequest, OrganizationsApiUpdateBadgeSettingsRequest, OrganizationsApiUpdateRequest, Pagination, PaginationResponse, PaymentMethod, PaymentMethodTypeEnum, PaymentMethodsApi, PaymentMethodsApiDetachRequest, PaymentProcessor, PersonalAccessToken, PersonalAccessTokenApi, PersonalAccessTokenApiCreateRequest, PersonalAccessTokenApiDeleteRequest, Platforms, Pledge, PledgePledgesSummary, PledgeRewardTransfer, PledgeSpending, PledgeState, PledgeStripePaymentIntentCreate, PledgeStripePaymentIntentCreateSetupFutureUsageEnum, PledgeStripePaymentIntentMutationResponse, PledgeStripePaymentIntentUpdate, PledgeStripePaymentIntentUpdateSetupFutureUsageEnum, PledgeType, Pledger, PledgerPledgePendingNotification, PledgerPledgePendingNotificationPayload, PledgerPledgePendingNotificationTypeEnum, PledgesApi, PledgesApiCreateInvoiceRequest, PledgesApiCreatePayOnCompletionRequest, PledgesApiCreatePaymentIntentRequest, PledgesApiCreateRequest, PledgesApiDisputePledgeRequest, PledgesApiGetRequest, PledgesApiSearchRequest, PledgesApiSpendingRequest, PledgesApiSummaryRequest, PledgesApiUpdatePaymentIntentRequest, PledgesSummary, PledgesTypeSummaries, PolarAPI, PostIssueComment, PullRequest, PullRequestReference, PullRequestsApi, PullRequestsApiSearchRequest, Reactions, RepositoriesApi, RepositoriesApiGetRequest, RepositoriesApiLookupRequest, RepositoriesApiSearchRequest, Repository, RepositoryBadgeSettingsRead, RepositoryBadgeSettingsUpdate, RequestContext, RequestOpts, RequiredError, ResponseContext, ResponseError, ResponseSubscriptionsCreateSubscriptionBenefit, ResponseSubscriptionsLookupSubscriptionBenefit, ResponseSubscriptionsUpdateSubscriptionBenefit, ResponseTransformer, Reward, RewardPaidNotification, RewardPaidNotificationPayload, RewardPaidNotificationTypeEnum, RewardState, RewardsApi, RewardsApiSearchRequest, RewardsApiSummaryRequest, RewardsSummary, RewardsSummaryReceiver, StatisticsIntervalEnum, Status, StreamApi, StreamApiUserOrgRepoStreamRequest, StreamApiUserOrgStreamRequest, SubscribeSession, SubscribeSessionCreate, Subscription, SubscriptionBenefitAds, SubscriptionBenefitAdsCreate, SubscriptionBenefitAdsCreateTypeEnum, SubscriptionBenefitAdsProperties, SubscriptionBenefitAdsSubscriber, SubscriptionBenefitAdsSubscriberTypeEnum, SubscriptionBenefitAdsTypeEnum, SubscriptionBenefitAdsUpdate, SubscriptionBenefitAdsUpdateTypeEnum, SubscriptionBenefitArticles, SubscriptionBenefitArticlesProperties, SubscriptionBenefitArticlesSubscriber, SubscriptionBenefitArticlesSubscriberProperties, SubscriptionBenefitArticlesSubscriberTypeEnum, SubscriptionBenefitArticlesTypeEnum, SubscriptionBenefitArticlesUpdate, SubscriptionBenefitArticlesUpdateTypeEnum, SubscriptionBenefitBase, SubscriptionBenefitCreate, SubscriptionBenefitCustom, SubscriptionBenefitCustomCreate, SubscriptionBenefitCustomCreateTypeEnum, SubscriptionBenefitCustomProperties, SubscriptionBenefitCustomSubscriber, SubscriptionBenefitCustomSubscriberProperties, SubscriptionBenefitCustomSubscriberTypeEnum, SubscriptionBenefitCustomTypeEnum, SubscriptionBenefitCustomUpdate, SubscriptionBenefitCustomUpdateTypeEnum, SubscriptionBenefitDiscord, SubscriptionBenefitDiscordCreate, SubscriptionBenefitDiscordCreateProperties, SubscriptionBenefitDiscordCreateTypeEnum, SubscriptionBenefitDiscordProperties, SubscriptionBenefitDiscordSubscriber, SubscriptionBenefitDiscordSubscriberProperties, SubscriptionBenefitDiscordSubscriberTypeEnum, SubscriptionBenefitDiscordTypeEnum, SubscriptionBenefitDiscordUpdate, SubscriptionBenefitDiscordUpdateTypeEnum, SubscriptionBenefitGitHubRepository, SubscriptionBenefitGitHubRepositoryCreate, SubscriptionBenefitGitHubRepositoryCreateProperties, SubscriptionBenefitGitHubRepositoryCreatePropertiesPermissionEnum, SubscriptionBenefitGitHubRepositoryCreateTypeEnum, SubscriptionBenefitGitHubRepositoryProperties, SubscriptionBenefitGitHubRepositoryPropertiesPermissionEnum, SubscriptionBenefitGitHubRepositorySubscriber, SubscriptionBenefitGitHubRepositorySubscriberProperties, SubscriptionBenefitGitHubRepositorySubscriberTypeEnum, SubscriptionBenefitGitHubRepositoryTypeEnum, SubscriptionBenefitGitHubRepositoryUpdate, SubscriptionBenefitGitHubRepositoryUpdateTypeEnum, SubscriptionBenefitPreconditionErrorNotification, SubscriptionBenefitPreconditionErrorNotificationPayload, SubscriptionBenefitPreconditionErrorNotificationTypeEnum, SubscriptionBenefitType, SubscriptionBenefitUpdate, SubscriptionCreateEmail, SubscriptionOrganization, SubscriptionPublicUser, SubscriptionStatus, SubscriptionSubscriber, SubscriptionSummary, SubscriptionTier, SubscriptionTierBenefitsUpdate, SubscriptionTierCreate, SubscriptionTierCreateTypeEnum, SubscriptionTierSubscriber, SubscriptionTierType, SubscriptionTierUpdate, SubscriptionUpgrade, SubscriptionUser, SubscriptionsApi, SubscriptionsApiArchiveSubscriptionTierRequest, SubscriptionsApiCancelSubscriptionRequest, SubscriptionsApiCreateEmailSubscriptionRequest, SubscriptionsApiCreateFreeSubscriptionRequest, SubscriptionsApiCreateSubscribeSessionRequest, SubscriptionsApiCreateSubscriptionBenefitRequest, SubscriptionsApiCreateSubscriptionTierRequest, SubscriptionsApiDeleteSubscriptionBenefitRequest, SubscriptionsApiGetSubscribeSessionRequest, SubscriptionsApiGetSubscriptionsStatisticsRequest, SubscriptionsApiLookupSubscriptionBenefitRequest, SubscriptionsApiLookupSubscriptionTierRequest, SubscriptionsApiSearchSubscribedSubscriptionsRequest, SubscriptionsApiSearchSubscriptionBenefitsRequest, SubscriptionsApiSearchSubscriptionTiersRequest, SubscriptionsApiSearchSubscriptionsRequest, SubscriptionsApiSearchSubscriptionsSummaryRequest, SubscriptionsApiSubscriptionsExportRequest, SubscriptionsApiSubscriptionsImportRequest, SubscriptionsApiUpdateSubscriptionBenefitRequest, SubscriptionsApiUpdateSubscriptionTierBenefitsRequest, SubscriptionsApiUpdateSubscriptionTierRequest, SubscriptionsApiUpgradeSubscriptionRequest, SubscriptionsImported, SubscriptionsStatistics, SubscriptionsStatisticsPeriod, SummaryPledge, SynchronizeMembersResponse, TeamAdminMemberPledgedNotification, TeamAdminMemberPledgedNotificationPayload, TeamAdminMemberPledgedNotificationTypeEnum, TextApiResponse, TrackPageView, TrackPageViewResponse, TrafficApi, TrafficApiReferrersRequest, TrafficApiStatisticsRequest, TrafficApiTrackPageViewRequest, TrafficReferrer, TrafficStatistics, TrafficStatisticsPeriod, Transaction, TransactionDetails, TransactionIssue, TransactionIssueReward, TransactionOrganization, TransactionPledge, TransactionRepository, TransactionSubscription, TransactionSubscriptionTier, TransactionType, TransactionsApi, TransactionsApiGetSummaryRequest, TransactionsApiLookupTransactionRequest, TransactionsApiSearchTransactionsRequest, TransactionsBalance, TransactionsSummary, UpdateIssue, User, UserBase, UserRead, UserScopes, UserSetAccount, UserSignupType, UserStripePortalSession, UserUpdateSettings, UsersApi, UsersApiSetAccountRequest, UsersApiUpdatePreferencesRequest, ValidationError, Visibility, VoidApiResponse, WebhookIntegration, WebhookIntegrationCreate, WebhookIntegrationCreateIntegrationEnum, WebhookIntegrationIntegrationEnum, WebhookIntegrationUpdate, WebhookNotificationsApi, WebhookNotificationsApiCreateRequest, WebhookNotificationsApiDeleteRequest, WebhookNotificationsApiSearchRequest, WebhookNotificationsApiUpdateRequest, WebhookResponse, canConsumeForm, querystring };
|
|
12546
|
+
export { type Account, type AccountCreate, type AccountLink, AccountType, AccountsApi, type AccountsApiCreateRequest, type AccountsApiDashboardLinkRequest, type AccountsApiGetRequest, type AccountsApiOnboardingLinkRequest, type AccountsApiSearchRequest, type AdvertisementCampaign, type AdvertisementCampaignPublic, type AdvertisementDisplay, AdvertisementsApi, type AdvertisementsApiCreateCampaignRequest, type AdvertisementsApiDeleteCampaignRequest, type AdvertisementsApiEditCampaignRequest, type AdvertisementsApiGetCampaignRequest, type AdvertisementsApiSearchCampaignsRequest, type AdvertisementsApiSearchDisplayRequest, type AdvertisementsApiTrackViewRequest, type ApiResponse, type AppPermissionsType, AppPermissionsTypeActionsEnum, AppPermissionsTypeAdministrationEnum, AppPermissionsTypeChecksEnum, AppPermissionsTypeCodespacesEnum, AppPermissionsTypeContentsEnum, AppPermissionsTypeDependabotSecretsEnum, AppPermissionsTypeDeploymentsEnum, AppPermissionsTypeEmailAddressesEnum, AppPermissionsTypeEnvironmentsEnum, AppPermissionsTypeFollowersEnum, AppPermissionsTypeGitSshKeysEnum, AppPermissionsTypeGpgKeysEnum, AppPermissionsTypeInteractionLimitsEnum, AppPermissionsTypeIssuesEnum, AppPermissionsTypeMembersEnum, AppPermissionsTypeMetadataEnum, AppPermissionsTypeOrganizationAdministrationEnum, AppPermissionsTypeOrganizationAnnouncementBannersEnum, AppPermissionsTypeOrganizationCopilotSeatManagementEnum, AppPermissionsTypeOrganizationCustomOrgRolesEnum, AppPermissionsTypeOrganizationCustomPropertiesEnum, AppPermissionsTypeOrganizationCustomRolesEnum, AppPermissionsTypeOrganizationEventsEnum, AppPermissionsTypeOrganizationHooksEnum, AppPermissionsTypeOrganizationPackagesEnum, AppPermissionsTypeOrganizationPersonalAccessTokenRequestsEnum, AppPermissionsTypeOrganizationPersonalAccessTokensEnum, AppPermissionsTypeOrganizationPlanEnum, AppPermissionsTypeOrganizationProjectsEnum, AppPermissionsTypeOrganizationSecretsEnum, AppPermissionsTypeOrganizationSelfHostedRunnersEnum, AppPermissionsTypeOrganizationUserBlockingEnum, AppPermissionsTypePackagesEnum, AppPermissionsTypePagesEnum, AppPermissionsTypeProfileEnum, AppPermissionsTypePullRequestsEnum, AppPermissionsTypeRepositoryCustomPropertiesEnum, AppPermissionsTypeRepositoryHooksEnum, AppPermissionsTypeRepositoryProjectsEnum, AppPermissionsTypeSecretScanningAlertsEnum, AppPermissionsTypeSecretsEnum, AppPermissionsTypeSecurityEventsEnum, AppPermissionsTypeSingleFileEnum, AppPermissionsTypeStarringEnum, AppPermissionsTypeStatusesEnum, AppPermissionsTypeTeamDiscussionsEnum, AppPermissionsTypeVulnerabilityAlertsEnum, AppPermissionsTypeWorkflowsEnum, type Article, type ArticleCreate, ArticleCreateBylineEnum, ArticleCreateVisibilityEnum, type ArticleDeleteResponse, type ArticlePreview, type ArticlePreviewResponse, type ArticleReceiversResponse, type ArticleSentResponse, type ArticleUnsubscribeResponse, type ArticleUpdate, ArticleUpdateBylineEnum, ArticleUpdateVisibilityEnum, type ArticleViewedResponse, ArticleVisibilityEnum, ArticlesApi, type ArticlesApiCreateRequest, type ArticlesApiDeleteRequest, type ArticlesApiEmailUnsubscribeRequest, type ArticlesApiGetRequest, type ArticlesApiListRequest, type ArticlesApiLookupRequest, type ArticlesApiReceiversRequest, type ArticlesApiSearchRequest, type ArticlesApiSendPreviewRequest, type ArticlesApiSendRequest, type ArticlesApiUpdateRequest, type ArticlesApiViewedRequest, type Assignee, AuthApi, type AuthApiCustomDomainExchangeOperationRequest, type AuthApiCustomDomainForwardRequest, type AuthApiLogoutRequest, type Author, BASE_PATH, BackofficeApi, type BackofficeApiIssueRequest, type BackofficeApiManageBadgeRequest, type BackofficeApiPledgeCreateInvoiceRequest, type BackofficeApiPledgeMarkDisputedRequest, type BackofficeApiPledgeRewardTransferRequest, type BackofficeApiRewardsRequest, type BackofficeApiUpdateBadgeContentsRequest, type BackofficeBadge, BackofficeBadgeActionEnum, type BackofficeBadgeResponse, BackofficeBadgeResponseActionEnum, type BackofficePledge, type BackofficeReward, BaseAPI, type BenefitsInner, type BenefitsInner1, BlobApiResponse, type Byline, COLLECTION_FORMATS, Configuration, type ConfigurationParameters, type ConfirmIssue, type ConfirmIssueSplit, type Consume, type CreateAdvertisementCampaign, type CreatePersonalAccessToken, type CreatePersonalAccessTokenResponse, CreatePersonalAccessTokenScopesEnum, type CreatePledgeFromPaymentIntent, type CreatePledgePayLater, type CreditBalance, type CurrencyAmount, type CustomDomainExchangeRequest, type CustomDomainExchangeResponse, type CustomDomainForwardResponse, DashboardApi, type DashboardApiGetDashboardRequest, type DashboardApiGetPersonalDashboardRequest, DefaultConfig, type DiscordGuild, type DiscordGuildRole, type EditAdvertisementCampaign, type Entry, type ErrorContext, type ExistingSubscriptionTierPrice, ExtensionApi, type ExtensionApiListIssuesForExtensionRequest, type ExternalGitHubCommitReference, type ExternalGitHubPullRequestReference, type FetchAPI, FetchError, type FetchParams, type FreeSubscriptionCreate, type Funding, FundingApi, type FundingApiLookupRequest, type FundingApiSearchRequest, type GitHubInvitesBenefitOrganization, type GitHubInvitesBenefitRepositories, type GitHubInvitesBenefitRepository, type GithubUser, type HTTPBody, type HTTPHeaders, type HTTPMethod, type HTTPQuery, type HTTPRequestInit, type HTTPValidationError, HealthApi, type Id, type InitOverrideFunction, type InstallationCreate, InstallationCreatePlatformEnum, IntegrationsApi, type IntegrationsApiCheckOrganizationPermissionsRequest, type IntegrationsApiDiscordGuildLookupRequest, type IntegrationsApiGetOrganizationBillingPlanRequest, type IntegrationsApiInstallRequest, type IntegrationsApiIntegrationsDiscordBotAuthorizeRequest, type IntegrationsApiIntegrationsDiscordBotCallbackRequest, type IntegrationsApiIntegrationsDiscordUserAuthorizeRequest, type IntegrationsApiIntegrationsDiscordUserCallbackRequest, type IntegrationsApiIntegrationsGithubAuthorizeRequest, type IntegrationsApiIntegrationsGithubCallbackRequest, type IntegrationsApiIntegrationsGithubRepositoryBenefitUserAuthorizeRequest, type IntegrationsApiIntegrationsGithubRepositoryBenefitUserCallbackRequest, type IntegrationsApiLookupUserOperationRequest, type IntegrationsApiRedirectToOrganizationInstallationRequest, type IntegrationsApiStripeConnectRefreshRequest, type IntegrationsApiSynchronizeMembersRequest, type Issue, type IssueExtensionRead, type IssueFunding, type IssueListResponse, IssueListType, type IssueReferenceRead, IssueReferenceType, IssueSortBy, IssueStateEnum, IssueStatus, type IssueUpdateBadgeMessage, IssuesApi, type IssuesApiAddIssueCommentRequest, type IssuesApiAddPolarBadgeRequest, type IssuesApiBadgeWithMessageRequest, type IssuesApiConfirmRequest, type IssuesApiGetBodyRequest, type IssuesApiGetRequest, type IssuesApiLookupRequest, type IssuesApiRemovePolarBadgeRequest, type IssuesApiSearchRequest, type IssuesApiUpdateRequest, type ItemsInner, JSONApiResponse, type Json, type Label, ListFundingSortBy, type ListResourceAccount, type ListResourceAdvertisementCampaign, type ListResourceAdvertisementDisplay, type ListResourceArticle, type ListResourceBackofficeReward, type ListResourceIssue, type ListResourceIssueFunding, type ListResourceOrganization, type ListResourceOrganizationMember, type ListResourcePaymentMethod, type ListResourcePersonalAccessToken, type ListResourcePledge, type ListResourcePullRequest, type ListResourceRepository, type ListResourceReward, type ListResourceSubscription, type ListResourceSubscriptionSubscriber, type ListResourceSubscriptionSummary, type ListResourceSubscriptionTier, type ListResourceTrafficReferrer, type ListResourceTransaction, type ListResourceUnionSubscriptionBenefitArticlesSubscriptionBenefitAdsSubscriptionBenefitCustomSubscriptionBenefitDiscordSubscriptionBenefitGitHubRepository, type ListResourceWebhookIntegration, type LocationInner, type LoginResponse, type LogoutResponse, type LookupUserRequest, MagicLinkApi, type MagicLinkApiMagicLinkAuthenticateRequest, type MagicLinkApiMagicLinkRequestRequest, type MagicLinkRequest, type MaintainerAccountReviewedNotification, type MaintainerAccountReviewedNotificationPayload, MaintainerAccountReviewedNotificationTypeEnum, type MaintainerAccountUnderReviewNotification, type MaintainerAccountUnderReviewNotificationPayload, MaintainerAccountUnderReviewNotificationTypeEnum, type MaintainerCreateAccountNotification, type MaintainerCreateAccountNotificationPayload, MaintainerCreateAccountNotificationTypeEnum, type MaintainerNewPaidSubscriptionNotification, type MaintainerNewPaidSubscriptionNotificationPayload, MaintainerNewPaidSubscriptionNotificationTypeEnum, type MaintainerPledgeConfirmationPendingNotification, type MaintainerPledgeConfirmationPendingNotificationPayload, MaintainerPledgeConfirmationPendingNotificationTypeEnum, type MaintainerPledgeCreatedNotification, type MaintainerPledgeCreatedNotificationPayload, MaintainerPledgeCreatedNotificationTypeEnum, type MaintainerPledgePaidNotification, type MaintainerPledgePaidNotificationPayload, MaintainerPledgePaidNotificationTypeEnum, type MaintainerPledgePendingNotification, type MaintainerPledgePendingNotificationPayload, MaintainerPledgePendingNotificationTypeEnum, type MaintainerPledgedIssueConfirmationPendingNotification, type MaintainerPledgedIssueConfirmationPendingNotificationPayload, MaintainerPledgedIssueConfirmationPendingNotificationTypeEnum, type MaintainerPledgedIssuePendingNotification, type MaintainerPledgedIssuePendingNotificationPayload, MaintainerPledgedIssuePendingNotificationTypeEnum, type Middleware, type ModelPropertyNaming, NotificationsApi, type NotificationsApiMarkReadRequest, type NotificationsInner, type NotificationsList, type NotificationsMarkRead, type OAuthAccountRead, OAuthPlatform, type Organization, type OrganizationBadgeSettingsRead, type OrganizationBadgeSettingsUpdate, type OrganizationBillingPlan, type OrganizationCheckPermissionsInput, type OrganizationMember, type OrganizationProfileSettings, type OrganizationProfileSettingsUpdate, type OrganizationSetAccount, type OrganizationStripePortalSession, type OrganizationUpdate, OrganizationsApi, type OrganizationsApiCreateStripeCustomerPortalRequest, type OrganizationsApiGetBadgeSettingsRequest, type OrganizationsApiGetCreditsRequest, type OrganizationsApiGetRequest, type OrganizationsApiListMembersRequest, type OrganizationsApiListRequest, type OrganizationsApiLookupRequest, type OrganizationsApiSearchRequest, type OrganizationsApiSetAccountRequest, type OrganizationsApiUpdateBadgeSettingsRequest, type OrganizationsApiUpdateRequest, type Pagination, type PaginationResponse, type PaymentMethod, PaymentMethodTypeEnum, PaymentMethodsApi, type PaymentMethodsApiDetachRequest, PaymentProcessor, type PayoutCreate, type PayoutEstimate, type PersonalAccessToken, PersonalAccessTokenApi, type PersonalAccessTokenApiCreateRequest, type PersonalAccessTokenApiDeleteRequest, PlatformFeeType, Platforms, type Pledge, type PledgePledgesSummary, type PledgeRewardTransfer, type PledgeSpending, PledgeState, type PledgeStripePaymentIntentCreate, PledgeStripePaymentIntentCreateSetupFutureUsageEnum, type PledgeStripePaymentIntentMutationResponse, type PledgeStripePaymentIntentUpdate, PledgeStripePaymentIntentUpdateSetupFutureUsageEnum, PledgeType, type Pledger, type PledgerPledgePendingNotification, type PledgerPledgePendingNotificationPayload, PledgerPledgePendingNotificationTypeEnum, PledgesApi, type PledgesApiCreateInvoiceRequest, type PledgesApiCreatePayOnCompletionRequest, type PledgesApiCreatePaymentIntentRequest, type PledgesApiCreateRequest, type PledgesApiDisputePledgeRequest, type PledgesApiGetRequest, type PledgesApiSearchRequest, type PledgesApiSpendingRequest, type PledgesApiSummaryRequest, type PledgesApiUpdatePaymentIntentRequest, type PledgesSummary, type PledgesTypeSummaries, PolarAPI, type PostIssueComment, type PricesInner, type PullRequest, type PullRequestReference, PullRequestsApi, type PullRequestsApiSearchRequest, type Reactions, RepositoriesApi, type RepositoriesApiGetRequest, type RepositoriesApiLookupRequest, type RepositoriesApiSearchRequest, type RepositoriesApiUpdateRequest, type Repository, type RepositoryBadgeSettingsRead, type RepositoryBadgeSettingsUpdate, type RepositoryProfileSettings, type RepositoryProfileSettingsUpdate, type RepositoryUpdate, type RequestContext, type RequestOpts, RequiredError, type ResponseContext, ResponseError, type ResponseSubscriptionsCreateSubscriptionBenefit, type ResponseSubscriptionsLookupSubscriptionBenefit, type ResponseSubscriptionsUpdateSubscriptionBenefit, type ResponseTransformer, type Reward, type RewardPaidNotification, type RewardPaidNotificationPayload, RewardPaidNotificationTypeEnum, RewardState, RewardsApi, type RewardsApiSearchRequest, type RewardsApiSummaryRequest, type RewardsSummary, type RewardsSummaryReceiver, StatisticsIntervalEnum, Status, StreamApi, type StreamApiUserOrgRepoStreamRequest, type StreamApiUserOrgStreamRequest, type SubscribeSession, type SubscribeSessionCreate, type Subscription, type SubscriptionBenefitAds, type SubscriptionBenefitAdsCreate, SubscriptionBenefitAdsCreateTypeEnum, type SubscriptionBenefitAdsProperties, type SubscriptionBenefitAdsSubscriber, SubscriptionBenefitAdsSubscriberTypeEnum, SubscriptionBenefitAdsTypeEnum, type SubscriptionBenefitAdsUpdate, SubscriptionBenefitAdsUpdateTypeEnum, type SubscriptionBenefitArticles, type SubscriptionBenefitArticlesProperties, type SubscriptionBenefitArticlesSubscriber, type SubscriptionBenefitArticlesSubscriberProperties, SubscriptionBenefitArticlesSubscriberTypeEnum, SubscriptionBenefitArticlesTypeEnum, type SubscriptionBenefitArticlesUpdate, SubscriptionBenefitArticlesUpdateTypeEnum, type SubscriptionBenefitBase, type SubscriptionBenefitCreate, type SubscriptionBenefitCustom, type SubscriptionBenefitCustomCreate, SubscriptionBenefitCustomCreateTypeEnum, type SubscriptionBenefitCustomProperties, type SubscriptionBenefitCustomSubscriber, type SubscriptionBenefitCustomSubscriberProperties, SubscriptionBenefitCustomSubscriberTypeEnum, SubscriptionBenefitCustomTypeEnum, type SubscriptionBenefitCustomUpdate, SubscriptionBenefitCustomUpdateTypeEnum, type SubscriptionBenefitDiscord, type SubscriptionBenefitDiscordCreate, type SubscriptionBenefitDiscordCreateProperties, SubscriptionBenefitDiscordCreateTypeEnum, type SubscriptionBenefitDiscordProperties, type SubscriptionBenefitDiscordSubscriber, type SubscriptionBenefitDiscordSubscriberProperties, SubscriptionBenefitDiscordSubscriberTypeEnum, SubscriptionBenefitDiscordTypeEnum, type SubscriptionBenefitDiscordUpdate, SubscriptionBenefitDiscordUpdateTypeEnum, type SubscriptionBenefitGitHubRepository, type SubscriptionBenefitGitHubRepositoryCreate, type SubscriptionBenefitGitHubRepositoryCreateProperties, SubscriptionBenefitGitHubRepositoryCreatePropertiesPermissionEnum, SubscriptionBenefitGitHubRepositoryCreateTypeEnum, type SubscriptionBenefitGitHubRepositoryProperties, SubscriptionBenefitGitHubRepositoryPropertiesPermissionEnum, type SubscriptionBenefitGitHubRepositorySubscriber, type SubscriptionBenefitGitHubRepositorySubscriberProperties, SubscriptionBenefitGitHubRepositorySubscriberTypeEnum, SubscriptionBenefitGitHubRepositoryTypeEnum, type SubscriptionBenefitGitHubRepositoryUpdate, SubscriptionBenefitGitHubRepositoryUpdateTypeEnum, type SubscriptionBenefitPreconditionErrorNotification, type SubscriptionBenefitPreconditionErrorNotificationPayload, SubscriptionBenefitPreconditionErrorNotificationTypeEnum, SubscriptionBenefitType, type SubscriptionBenefitUpdate, type SubscriptionCreateEmail, type SubscriptionOrganization, type SubscriptionPublicUser, SubscriptionStatus, type SubscriptionSubscriber, type SubscriptionSummary, type SubscriptionTier, type SubscriptionTierBenefitsUpdate, type SubscriptionTierCreate, SubscriptionTierCreateTypeEnum, type SubscriptionTierPrice, type SubscriptionTierPriceCreate, SubscriptionTierPriceRecurringInterval, type SubscriptionTierSubscriber, SubscriptionTierType, type SubscriptionTierUpdate, type SubscriptionUpgrade, type SubscriptionUser, SubscriptionsApi, type SubscriptionsApiArchiveSubscriptionTierRequest, type SubscriptionsApiCancelSubscriptionRequest, type SubscriptionsApiCreateEmailSubscriptionRequest, type SubscriptionsApiCreateFreeSubscriptionRequest, type SubscriptionsApiCreateSubscribeSessionRequest, type SubscriptionsApiCreateSubscriptionBenefitRequest, type SubscriptionsApiCreateSubscriptionTierRequest, type SubscriptionsApiDeleteSubscriptionBenefitRequest, type SubscriptionsApiGetSubscribeSessionRequest, type SubscriptionsApiGetSubscriptionsStatisticsRequest, type SubscriptionsApiLookupSubscriptionBenefitRequest, type SubscriptionsApiLookupSubscriptionTierRequest, type SubscriptionsApiSearchSubscribedSubscriptionsRequest, type SubscriptionsApiSearchSubscriptionBenefitsRequest, type SubscriptionsApiSearchSubscriptionTiersRequest, type SubscriptionsApiSearchSubscriptionsRequest, type SubscriptionsApiSearchSubscriptionsSummaryRequest, type SubscriptionsApiSubscriptionsExportRequest, type SubscriptionsApiSubscriptionsImportRequest, type SubscriptionsApiUpdateSubscriptionBenefitRequest, type SubscriptionsApiUpdateSubscriptionTierBenefitsRequest, type SubscriptionsApiUpdateSubscriptionTierRequest, type SubscriptionsApiUpgradeSubscriptionRequest, type SubscriptionsImported, type SubscriptionsStatistics, type SubscriptionsStatisticsPeriod, type SummaryPledge, type SynchronizeMembersResponse, type TeamAdminMemberPledgedNotification, type TeamAdminMemberPledgedNotificationPayload, TeamAdminMemberPledgedNotificationTypeEnum, TextApiResponse, type TrackPageView, type TrackPageViewResponse, TrafficApi, type TrafficApiReferrersRequest, type TrafficApiStatisticsRequest, type TrafficApiTrackPageViewRequest, type TrafficReferrer, type TrafficStatistics, type TrafficStatisticsPeriod, type Transaction, type TransactionDetails, type TransactionEmbedded, type TransactionIssue, type TransactionIssueReward, type TransactionOrganization, type TransactionPledge, type TransactionRepository, type TransactionSubscription, type TransactionSubscriptionPrice, type TransactionSubscriptionTier, TransactionType, TransactionsApi, type TransactionsApiCreatePayoutRequest, type TransactionsApiGetPayoutCsvRequest, type TransactionsApiGetPayoutEstimateRequest, type TransactionsApiGetSummaryRequest, type TransactionsApiLookupTransactionRequest, type TransactionsApiSearchTransactionsRequest, type TransactionsBalance, type TransactionsSummary, type UpdateIssue, type User, type UserBase, type UserRead, type UserScopes, type UserSetAccount, UserSignupType, type UserStripePortalSession, type UserUpdateSettings, UsersApi, type UsersApiSetAccountRequest, type UsersApiUpdatePreferencesRequest, type ValidationError, Visibility, VoidApiResponse, type WebhookIntegration, type WebhookIntegrationCreate, WebhookIntegrationCreateIntegrationEnum, WebhookIntegrationIntegrationEnum, type WebhookIntegrationUpdate, WebhookNotificationsApi, type WebhookNotificationsApiCreateRequest, type WebhookNotificationsApiDeleteRequest, type WebhookNotificationsApiSearchRequest, type WebhookNotificationsApiUpdateRequest, type WebhookResponse, canConsumeForm, querystring };
|