@djangocfg/api 1.0.2 → 1.0.4
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 +1544 -1490
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +314 -256
- package/dist/index.d.ts +314 -256
- package/dist/index.mjs +1542 -1490
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/cfg/contexts/payments/ApiKeysContext.tsx +2 -2
- package/src/cfg/contexts/payments/CurrenciesContext.tsx +0 -26
- package/src/cfg/contexts/payments/OverviewContext.tsx +79 -0
- package/src/cfg/contexts/payments/RootPaymentsContext.tsx +137 -0
- package/src/cfg/contexts/payments/index.ts +13 -0
- package/src/cfg/generated/_utils/fetchers/cfg__payments.ts +12 -10
- package/src/cfg/generated/_utils/hooks/cfg__payments.ts +12 -10
- package/src/cfg/generated/_utils/schemas/APIKeyValidationResponse.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/AdminPaymentDetail.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/AdminPaymentList.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/CurrencyList.schema.ts +2 -0
- package/src/cfg/generated/_utils/schemas/CurrencyRates.schema.ts +26 -0
- package/src/cfg/generated/_utils/schemas/DocumentCreateRequest.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/Network.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/PatchedPaymentRequest.schema.ts +0 -2
- package/src/cfg/generated/_utils/schemas/Payment.schema.ts +3 -2
- package/src/cfg/generated/_utils/schemas/PaymentCreate.schema.ts +1 -3
- package/src/cfg/generated/_utils/schemas/PaymentCreateRequest.schema.ts +1 -3
- package/src/cfg/generated/_utils/schemas/PaymentRequest.schema.ts +0 -2
- package/src/cfg/generated/_utils/schemas/PaymentsMetrics.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/ProviderCurrency.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/SupportedCurrencies.schema.ts +25 -0
- package/src/cfg/generated/_utils/schemas/index.ts +2 -0
- package/src/cfg/generated/cfg__payments/client.ts +24 -44
- package/src/cfg/generated/cfg__payments/models.ts +52 -46
- package/src/cfg/generated/enums.ts +34 -66
- package/src/cfg/generated/schema.ts +103 -124
- package/src/index.ts +20 -1
package/dist/index.d.cts
CHANGED
|
@@ -270,6 +270,13 @@ declare enum CurrencyListCurrencyType {
|
|
|
270
270
|
FIAT = "fiat",
|
|
271
271
|
CRYPTO = "crypto"
|
|
272
272
|
}
|
|
273
|
+
/**
|
|
274
|
+
* Provider for exchange rates
|
|
275
|
+
* * `nowpayments` - NowPayments
|
|
276
|
+
*/
|
|
277
|
+
declare enum CurrencyRatesProvider {
|
|
278
|
+
NOWPAYMENTS = "nowpayments"
|
|
279
|
+
}
|
|
273
280
|
/**
|
|
274
281
|
* Archive format
|
|
275
282
|
* * `zip` - ZIP
|
|
@@ -280,8 +287,8 @@ declare enum CurrencyListCurrencyType {
|
|
|
280
287
|
declare enum DocumentArchiveArchiveType {
|
|
281
288
|
ZIP = "zip",
|
|
282
289
|
TAR = "tar",
|
|
283
|
-
|
|
284
|
-
|
|
290
|
+
TAR_DOT_GZ = "tar.gz",
|
|
291
|
+
TAR_DOT_BZ2 = "tar.bz2"
|
|
285
292
|
}
|
|
286
293
|
/**
|
|
287
294
|
* * `pending` - Pending
|
|
@@ -307,8 +314,8 @@ declare enum DocumentArchiveProcessingStatus {
|
|
|
307
314
|
declare enum DocumentArchiveDetailArchiveType {
|
|
308
315
|
ZIP = "zip",
|
|
309
316
|
TAR = "tar",
|
|
310
|
-
|
|
311
|
-
|
|
317
|
+
TAR_DOT_GZ = "tar.gz",
|
|
318
|
+
TAR_DOT_BZ2 = "tar.bz2"
|
|
312
319
|
}
|
|
313
320
|
/**
|
|
314
321
|
* * `pending` - Pending
|
|
@@ -334,8 +341,8 @@ declare enum DocumentArchiveDetailProcessingStatus {
|
|
|
334
341
|
declare enum DocumentArchiveListArchiveType {
|
|
335
342
|
ZIP = "zip",
|
|
336
343
|
TAR = "tar",
|
|
337
|
-
|
|
338
|
-
|
|
344
|
+
TAR_DOT_GZ = "tar.gz",
|
|
345
|
+
TAR_DOT_BZ2 = "tar.bz2"
|
|
339
346
|
}
|
|
340
347
|
/**
|
|
341
348
|
* * `pending` - Pending
|
|
@@ -569,62 +576,6 @@ declare enum PaymentStatus {
|
|
|
569
576
|
CANCELLED = "cancelled",
|
|
570
577
|
REFUNDED = "refunded"
|
|
571
578
|
}
|
|
572
|
-
/**
|
|
573
|
-
* Cryptocurrency to receive
|
|
574
|
-
* * `BTC` - Bitcoin
|
|
575
|
-
* * `ETH` - Ethereum
|
|
576
|
-
* * `LTC` - Litecoin
|
|
577
|
-
* * `XMR` - Monero
|
|
578
|
-
* * `USDT` - Tether
|
|
579
|
-
* * `USDC` - USD Coin
|
|
580
|
-
* * `ADA` - Cardano
|
|
581
|
-
* * `DOT` - Polkadot
|
|
582
|
-
*/
|
|
583
|
-
declare enum PaymentCreateCurrencyCode {
|
|
584
|
-
BTC = "BTC",
|
|
585
|
-
ETH = "ETH",
|
|
586
|
-
LTC = "LTC",
|
|
587
|
-
XMR = "XMR",
|
|
588
|
-
USDT = "USDT",
|
|
589
|
-
USDC = "USDC",
|
|
590
|
-
ADA = "ADA",
|
|
591
|
-
DOT = "DOT"
|
|
592
|
-
}
|
|
593
|
-
/**
|
|
594
|
-
* Payment provider
|
|
595
|
-
* * `nowpayments` - NowPayments
|
|
596
|
-
*/
|
|
597
|
-
declare enum PaymentCreateProvider {
|
|
598
|
-
NOWPAYMENTS = "nowpayments"
|
|
599
|
-
}
|
|
600
|
-
/**
|
|
601
|
-
* Cryptocurrency to receive
|
|
602
|
-
* * `BTC` - Bitcoin
|
|
603
|
-
* * `ETH` - Ethereum
|
|
604
|
-
* * `LTC` - Litecoin
|
|
605
|
-
* * `XMR` - Monero
|
|
606
|
-
* * `USDT` - Tether
|
|
607
|
-
* * `USDC` - USD Coin
|
|
608
|
-
* * `ADA` - Cardano
|
|
609
|
-
* * `DOT` - Polkadot
|
|
610
|
-
*/
|
|
611
|
-
declare enum PaymentCreateRequestCurrencyCode {
|
|
612
|
-
BTC = "BTC",
|
|
613
|
-
ETH = "ETH",
|
|
614
|
-
LTC = "LTC",
|
|
615
|
-
XMR = "XMR",
|
|
616
|
-
USDT = "USDT",
|
|
617
|
-
USDC = "USDC",
|
|
618
|
-
ADA = "ADA",
|
|
619
|
-
DOT = "DOT"
|
|
620
|
-
}
|
|
621
|
-
/**
|
|
622
|
-
* Payment provider
|
|
623
|
-
* * `nowpayments` - NowPayments
|
|
624
|
-
*/
|
|
625
|
-
declare enum PaymentCreateRequestProvider {
|
|
626
|
-
NOWPAYMENTS = "nowpayments"
|
|
627
|
-
}
|
|
628
579
|
/**
|
|
629
580
|
* Payment provider
|
|
630
581
|
* * `nowpayments` - NowPayments
|
|
@@ -782,6 +733,24 @@ declare enum SubscriptionRequestTier {
|
|
|
782
733
|
PRO = "pro",
|
|
783
734
|
ENTERPRISE = "enterprise"
|
|
784
735
|
}
|
|
736
|
+
/**
|
|
737
|
+
* Provider to get supported currencies from
|
|
738
|
+
* * `nowpayments` - NowPayments
|
|
739
|
+
*/
|
|
740
|
+
declare enum SupportedCurrenciesProvider {
|
|
741
|
+
NOWPAYMENTS = "nowpayments"
|
|
742
|
+
}
|
|
743
|
+
/**
|
|
744
|
+
* Filter by currency type
|
|
745
|
+
* * `all` - All
|
|
746
|
+
* * `crypto` - Cryptocurrency
|
|
747
|
+
* * `fiat` - Fiat Currency
|
|
748
|
+
*/
|
|
749
|
+
declare enum SupportedCurrenciesCurrencyType {
|
|
750
|
+
ALL = "all",
|
|
751
|
+
CRYPTO = "crypto",
|
|
752
|
+
FIAT = "fiat"
|
|
753
|
+
}
|
|
785
754
|
/**
|
|
786
755
|
* * `open` - Open
|
|
787
756
|
* * `waiting_for_user` - Waiting for User
|
|
@@ -900,6 +869,8 @@ type enums_CurrencyCurrencyType = CurrencyCurrencyType;
|
|
|
900
869
|
declare const enums_CurrencyCurrencyType: typeof CurrencyCurrencyType;
|
|
901
870
|
type enums_CurrencyListCurrencyType = CurrencyListCurrencyType;
|
|
902
871
|
declare const enums_CurrencyListCurrencyType: typeof CurrencyListCurrencyType;
|
|
872
|
+
type enums_CurrencyRatesProvider = CurrencyRatesProvider;
|
|
873
|
+
declare const enums_CurrencyRatesProvider: typeof CurrencyRatesProvider;
|
|
903
874
|
type enums_DocumentArchiveArchiveType = DocumentArchiveArchiveType;
|
|
904
875
|
declare const enums_DocumentArchiveArchiveType: typeof DocumentArchiveArchiveType;
|
|
905
876
|
type enums_DocumentArchiveDetailArchiveType = DocumentArchiveDetailArchiveType;
|
|
@@ -940,14 +911,6 @@ type enums_PatchedSubscriptionRequestTier = PatchedSubscriptionRequestTier;
|
|
|
940
911
|
declare const enums_PatchedSubscriptionRequestTier: typeof PatchedSubscriptionRequestTier;
|
|
941
912
|
type enums_PatchedTicketRequestStatus = PatchedTicketRequestStatus;
|
|
942
913
|
declare const enums_PatchedTicketRequestStatus: typeof PatchedTicketRequestStatus;
|
|
943
|
-
type enums_PaymentCreateCurrencyCode = PaymentCreateCurrencyCode;
|
|
944
|
-
declare const enums_PaymentCreateCurrencyCode: typeof PaymentCreateCurrencyCode;
|
|
945
|
-
type enums_PaymentCreateProvider = PaymentCreateProvider;
|
|
946
|
-
declare const enums_PaymentCreateProvider: typeof PaymentCreateProvider;
|
|
947
|
-
type enums_PaymentCreateRequestCurrencyCode = PaymentCreateRequestCurrencyCode;
|
|
948
|
-
declare const enums_PaymentCreateRequestCurrencyCode: typeof PaymentCreateRequestCurrencyCode;
|
|
949
|
-
type enums_PaymentCreateRequestProvider = PaymentCreateRequestProvider;
|
|
950
|
-
declare const enums_PaymentCreateRequestProvider: typeof PaymentCreateRequestProvider;
|
|
951
914
|
type enums_PaymentListProvider = PaymentListProvider;
|
|
952
915
|
declare const enums_PaymentListProvider: typeof PaymentListProvider;
|
|
953
916
|
type enums_PaymentListStatus = PaymentListStatus;
|
|
@@ -974,6 +937,10 @@ type enums_SubscriptionStatus = SubscriptionStatus;
|
|
|
974
937
|
declare const enums_SubscriptionStatus: typeof SubscriptionStatus;
|
|
975
938
|
type enums_SubscriptionTier = SubscriptionTier;
|
|
976
939
|
declare const enums_SubscriptionTier: typeof SubscriptionTier;
|
|
940
|
+
type enums_SupportedCurrenciesCurrencyType = SupportedCurrenciesCurrencyType;
|
|
941
|
+
declare const enums_SupportedCurrenciesCurrencyType: typeof SupportedCurrenciesCurrencyType;
|
|
942
|
+
type enums_SupportedCurrenciesProvider = SupportedCurrenciesProvider;
|
|
943
|
+
declare const enums_SupportedCurrenciesProvider: typeof SupportedCurrenciesProvider;
|
|
977
944
|
type enums_TicketRequestStatus = TicketRequestStatus;
|
|
978
945
|
declare const enums_TicketRequestStatus: typeof TicketRequestStatus;
|
|
979
946
|
type enums_TicketStatus = TicketStatus;
|
|
@@ -989,7 +956,7 @@ declare const enums_WorkerActionAction: typeof WorkerActionAction;
|
|
|
989
956
|
type enums_WorkerActionRequestAction = WorkerActionRequestAction;
|
|
990
957
|
declare const enums_WorkerActionRequestAction: typeof WorkerActionRequestAction;
|
|
991
958
|
declare namespace enums {
|
|
992
|
-
export { enums_AdminPaymentUpdateRequestStatus as AdminPaymentUpdateRequestStatus, enums_AdminPaymentUpdateStatus as AdminPaymentUpdateStatus, enums_ArchiveItemChunkChunkType as ArchiveItemChunkChunkType, enums_ArchiveItemChunkDetailChunkType as ArchiveItemChunkDetailChunkType, enums_ArchiveItemChunkRequestChunkType as ArchiveItemChunkRequestChunkType, enums_ArchiveItemContentType as ArchiveItemContentType, enums_ArchiveItemDetailContentType as ArchiveItemDetailContentType, enums_ArchiveSearchRequestRequestChunkTypesItems as ArchiveSearchRequestRequestChunkTypesItems, enums_ArchiveSearchRequestRequestContentTypesItems as ArchiveSearchRequestRequestContentTypesItems, enums_ChatMessageRole as ChatMessageRole, enums_CurrencyCurrencyType as CurrencyCurrencyType, enums_CurrencyListCurrencyType as CurrencyListCurrencyType, enums_DocumentArchiveArchiveType as DocumentArchiveArchiveType, enums_DocumentArchiveDetailArchiveType as DocumentArchiveDetailArchiveType, enums_DocumentArchiveDetailProcessingStatus as DocumentArchiveDetailProcessingStatus, enums_DocumentArchiveListArchiveType as DocumentArchiveListArchiveType, enums_DocumentArchiveListProcessingStatus as DocumentArchiveListProcessingStatus, enums_DocumentArchiveProcessingStatus as DocumentArchiveProcessingStatus, enums_EmailLogStatus as EmailLogStatus, enums_LeadSubmissionContactType as LeadSubmissionContactType, enums_LeadSubmissionRequestContactType as LeadSubmissionRequestContactType, enums_NewsletterCampaignStatus as NewsletterCampaignStatus, enums_OTPRequestRequestChannel as OTPRequestRequestChannel, enums_OTPVerifyRequestChannel as OTPVerifyRequestChannel, enums_PatchedAdminPaymentUpdateRequestStatus as PatchedAdminPaymentUpdateRequestStatus, enums_PatchedArchiveItemChunkRequestChunkType as PatchedArchiveItemChunkRequestChunkType, enums_PatchedLeadSubmissionRequestContactType as PatchedLeadSubmissionRequestContactType, enums_PatchedPaymentRequestProvider as PatchedPaymentRequestProvider, enums_PatchedPaymentRequestStatus as PatchedPaymentRequestStatus, enums_PatchedSubscriptionRequestStatus as PatchedSubscriptionRequestStatus, enums_PatchedSubscriptionRequestTier as PatchedSubscriptionRequestTier, enums_PatchedTicketRequestStatus as PatchedTicketRequestStatus,
|
|
959
|
+
export { enums_AdminPaymentUpdateRequestStatus as AdminPaymentUpdateRequestStatus, enums_AdminPaymentUpdateStatus as AdminPaymentUpdateStatus, enums_ArchiveItemChunkChunkType as ArchiveItemChunkChunkType, enums_ArchiveItemChunkDetailChunkType as ArchiveItemChunkDetailChunkType, enums_ArchiveItemChunkRequestChunkType as ArchiveItemChunkRequestChunkType, enums_ArchiveItemContentType as ArchiveItemContentType, enums_ArchiveItemDetailContentType as ArchiveItemDetailContentType, enums_ArchiveSearchRequestRequestChunkTypesItems as ArchiveSearchRequestRequestChunkTypesItems, enums_ArchiveSearchRequestRequestContentTypesItems as ArchiveSearchRequestRequestContentTypesItems, enums_ChatMessageRole as ChatMessageRole, enums_CurrencyCurrencyType as CurrencyCurrencyType, enums_CurrencyListCurrencyType as CurrencyListCurrencyType, enums_CurrencyRatesProvider as CurrencyRatesProvider, enums_DocumentArchiveArchiveType as DocumentArchiveArchiveType, enums_DocumentArchiveDetailArchiveType as DocumentArchiveDetailArchiveType, enums_DocumentArchiveDetailProcessingStatus as DocumentArchiveDetailProcessingStatus, enums_DocumentArchiveListArchiveType as DocumentArchiveListArchiveType, enums_DocumentArchiveListProcessingStatus as DocumentArchiveListProcessingStatus, enums_DocumentArchiveProcessingStatus as DocumentArchiveProcessingStatus, enums_EmailLogStatus as EmailLogStatus, enums_LeadSubmissionContactType as LeadSubmissionContactType, enums_LeadSubmissionRequestContactType as LeadSubmissionRequestContactType, enums_NewsletterCampaignStatus as NewsletterCampaignStatus, enums_OTPRequestRequestChannel as OTPRequestRequestChannel, enums_OTPVerifyRequestChannel as OTPVerifyRequestChannel, enums_PatchedAdminPaymentUpdateRequestStatus as PatchedAdminPaymentUpdateRequestStatus, enums_PatchedArchiveItemChunkRequestChunkType as PatchedArchiveItemChunkRequestChunkType, enums_PatchedLeadSubmissionRequestContactType as PatchedLeadSubmissionRequestContactType, enums_PatchedPaymentRequestProvider as PatchedPaymentRequestProvider, enums_PatchedPaymentRequestStatus as PatchedPaymentRequestStatus, enums_PatchedSubscriptionRequestStatus as PatchedSubscriptionRequestStatus, enums_PatchedSubscriptionRequestTier as PatchedSubscriptionRequestTier, enums_PatchedTicketRequestStatus as PatchedTicketRequestStatus, enums_PaymentListProvider as PaymentListProvider, enums_PaymentListStatus as PaymentListStatus, enums_PaymentProvider as PaymentProvider, enums_PaymentRequestProvider as PaymentRequestProvider, enums_PaymentRequestStatus as PaymentRequestStatus, enums_PaymentStatus as PaymentStatus, enums_QueueActionAction as QueueActionAction, enums_QueueActionRequestAction as QueueActionRequestAction, enums_SubscriptionListStatus as SubscriptionListStatus, enums_SubscriptionRequestStatus as SubscriptionRequestStatus, enums_SubscriptionRequestTier as SubscriptionRequestTier, enums_SubscriptionStatus as SubscriptionStatus, enums_SubscriptionTier as SubscriptionTier, enums_SupportedCurrenciesCurrencyType as SupportedCurrenciesCurrencyType, enums_SupportedCurrenciesProvider as SupportedCurrenciesProvider, enums_TicketRequestStatus as TicketRequestStatus, enums_TicketStatus as TicketStatus, enums_TransactionTransactionType as TransactionTransactionType, enums_WebhookEventRequestStatus as WebhookEventRequestStatus, enums_WebhookEventStatus as WebhookEventStatus, enums_WorkerActionAction as WorkerActionAction, enums_WorkerActionRequestAction as WorkerActionRequestAction };
|
|
993
960
|
}
|
|
994
961
|
|
|
995
962
|
/**
|
|
@@ -4051,7 +4018,7 @@ interface APIKeyValidationResponse$1 {
|
|
|
4051
4018
|
success: boolean;
|
|
4052
4019
|
/** Whether the API key is valid */
|
|
4053
4020
|
valid: boolean;
|
|
4054
|
-
api_key: Record<string, any
|
|
4021
|
+
api_key: Record<string, any> | null;
|
|
4055
4022
|
/** Validation message */
|
|
4056
4023
|
message: string;
|
|
4057
4024
|
/** Error message if validation failed */
|
|
@@ -4159,6 +4126,40 @@ interface Currency$1 {
|
|
|
4159
4126
|
/** When this record was last updated */
|
|
4160
4127
|
updated_at: string;
|
|
4161
4128
|
}
|
|
4129
|
+
/**
|
|
4130
|
+
* Currency rates serializer for getting exchange rates. Fetches current
|
|
4131
|
+
* exchange rates through CurrencyService.
|
|
4132
|
+
*
|
|
4133
|
+
* Response model (includes read-only fields).
|
|
4134
|
+
*/
|
|
4135
|
+
interface CurrencyRates$1 {
|
|
4136
|
+
/** Base currency for rates (default: USD) */
|
|
4137
|
+
base_currency?: string;
|
|
4138
|
+
/** Specific currencies to get rates for (optional) */
|
|
4139
|
+
currencies?: Array<string>;
|
|
4140
|
+
/** Provider for exchange rates
|
|
4141
|
+
|
|
4142
|
+
* `nowpayments` - NowPayments */
|
|
4143
|
+
provider?: CurrencyRatesProvider;
|
|
4144
|
+
}
|
|
4145
|
+
/**
|
|
4146
|
+
* Supported currencies serializer for provider capabilities. Gets supported
|
|
4147
|
+
* currencies from providers through CurrencyService.
|
|
4148
|
+
*
|
|
4149
|
+
* Response model (includes read-only fields).
|
|
4150
|
+
*/
|
|
4151
|
+
interface SupportedCurrencies$1 {
|
|
4152
|
+
/** Provider to get supported currencies from
|
|
4153
|
+
|
|
4154
|
+
* `nowpayments` - NowPayments */
|
|
4155
|
+
provider?: SupportedCurrenciesProvider;
|
|
4156
|
+
/** Filter by currency type
|
|
4157
|
+
|
|
4158
|
+
* `all` - All
|
|
4159
|
+
* `crypto` - Cryptocurrency
|
|
4160
|
+
* `fiat` - Fiat Currency */
|
|
4161
|
+
currency_type?: SupportedCurrenciesCurrencyType;
|
|
4162
|
+
}
|
|
4162
4163
|
/**
|
|
4163
4164
|
*
|
|
4164
4165
|
* Response model (includes read-only fields).
|
|
@@ -4212,10 +4213,10 @@ interface Payment$1 {
|
|
|
4212
4213
|
user: string;
|
|
4213
4214
|
/** Payment amount in USD (float for performance) */
|
|
4214
4215
|
amount_usd: number;
|
|
4215
|
-
/**
|
|
4216
|
-
|
|
4217
|
-
|
|
4218
|
-
network
|
|
4216
|
+
/** Calculate crypto amount from USD amount and currency rate. */
|
|
4217
|
+
amount_crypto: number;
|
|
4218
|
+
currency: string;
|
|
4219
|
+
network: string | null;
|
|
4219
4220
|
/** Payment provider
|
|
4220
4221
|
|
|
4221
4222
|
* `nowpayments` - NowPayments */
|
|
@@ -4299,7 +4300,7 @@ interface PaginatedNetworkList$1 {
|
|
|
4299
4300
|
*/
|
|
4300
4301
|
interface Network$1 {
|
|
4301
4302
|
id: number;
|
|
4302
|
-
currency: Record<string, any
|
|
4303
|
+
currency: Record<string, any> | null;
|
|
4303
4304
|
/** Network name (e.g., Ethereum, Bitcoin, Polygon) */
|
|
4304
4305
|
name: string;
|
|
4305
4306
|
/** Network code (e.g., ETH, BTC, MATIC) */
|
|
@@ -4379,7 +4380,7 @@ interface PaymentsChartResponse$1 {
|
|
|
4379
4380
|
*/
|
|
4380
4381
|
interface PaymentsMetrics$1 {
|
|
4381
4382
|
balance: Record<string, any>;
|
|
4382
|
-
subscription: Record<string, any
|
|
4383
|
+
subscription: Record<string, any> | null;
|
|
4383
4384
|
api_keys: Record<string, any>;
|
|
4384
4385
|
payments: Record<string, any>;
|
|
4385
4386
|
}
|
|
@@ -4533,21 +4534,8 @@ interface PaginatedPaymentListList$1 {
|
|
|
4533
4534
|
interface PaymentCreateRequest$1 {
|
|
4534
4535
|
/** Amount in USD (1.00 - 50,000.00) */
|
|
4535
4536
|
amount_usd: number;
|
|
4536
|
-
/** Cryptocurrency
|
|
4537
|
-
|
|
4538
|
-
* `BTC` - Bitcoin
|
|
4539
|
-
* `ETH` - Ethereum
|
|
4540
|
-
* `LTC` - Litecoin
|
|
4541
|
-
* `XMR` - Monero
|
|
4542
|
-
* `USDT` - Tether
|
|
4543
|
-
* `USDC` - USD Coin
|
|
4544
|
-
* `ADA` - Cardano
|
|
4545
|
-
* `DOT` - Polkadot */
|
|
4546
|
-
currency_code: PaymentCreateRequestCurrencyCode;
|
|
4547
|
-
/** Payment provider
|
|
4548
|
-
|
|
4549
|
-
* `nowpayments` - NowPayments */
|
|
4550
|
-
provider?: PaymentCreateRequestProvider;
|
|
4537
|
+
/** Cryptocurrency code (validated against active currencies) */
|
|
4538
|
+
currency_code: string;
|
|
4551
4539
|
/** Success callback URL */
|
|
4552
4540
|
callback_url?: string;
|
|
4553
4541
|
/** Cancellation URL */
|
|
@@ -4566,21 +4554,8 @@ interface PaymentCreateRequest$1 {
|
|
|
4566
4554
|
interface PaymentCreate$1 {
|
|
4567
4555
|
/** Amount in USD (1.00 - 50,000.00) */
|
|
4568
4556
|
amount_usd: number;
|
|
4569
|
-
/** Cryptocurrency
|
|
4570
|
-
|
|
4571
|
-
* `BTC` - Bitcoin
|
|
4572
|
-
* `ETH` - Ethereum
|
|
4573
|
-
* `LTC` - Litecoin
|
|
4574
|
-
* `XMR` - Monero
|
|
4575
|
-
* `USDT` - Tether
|
|
4576
|
-
* `USDC` - USD Coin
|
|
4577
|
-
* `ADA` - Cardano
|
|
4578
|
-
* `DOT` - Polkadot */
|
|
4579
|
-
currency_code: PaymentCreateCurrencyCode;
|
|
4580
|
-
/** Payment provider
|
|
4581
|
-
|
|
4582
|
-
* `nowpayments` - NowPayments */
|
|
4583
|
-
provider?: PaymentCreateProvider;
|
|
4557
|
+
/** Cryptocurrency code (validated against active currencies) */
|
|
4558
|
+
currency_code: string;
|
|
4584
4559
|
/** Success callback URL */
|
|
4585
4560
|
callback_url?: string;
|
|
4586
4561
|
/** Cancellation URL */
|
|
@@ -4599,10 +4574,6 @@ interface PaymentCreate$1 {
|
|
|
4599
4574
|
interface PaymentRequest$1 {
|
|
4600
4575
|
/** Payment amount in USD (float for performance) */
|
|
4601
4576
|
amount_usd: number;
|
|
4602
|
-
/** Payment currency */
|
|
4603
|
-
currency: number;
|
|
4604
|
-
/** Blockchain network (for crypto payments) */
|
|
4605
|
-
network?: number | null;
|
|
4606
4577
|
/** Payment provider
|
|
4607
4578
|
|
|
4608
4579
|
* `nowpayments` - NowPayments */
|
|
@@ -4636,10 +4607,6 @@ interface PaymentRequest$1 {
|
|
|
4636
4607
|
interface PatchedPaymentRequest$1 {
|
|
4637
4608
|
/** Payment amount in USD (float for performance) */
|
|
4638
4609
|
amount_usd?: number;
|
|
4639
|
-
/** Payment currency */
|
|
4640
|
-
currency?: number;
|
|
4641
|
-
/** Blockchain network (for crypto payments) */
|
|
4642
|
-
network?: number | null;
|
|
4643
4610
|
/** Payment provider
|
|
4644
4611
|
|
|
4645
4612
|
* `nowpayments` - NowPayments */
|
|
@@ -4697,7 +4664,7 @@ interface PaginatedProviderCurrencyList$1 {
|
|
|
4697
4664
|
interface ProviderCurrency$1 {
|
|
4698
4665
|
id: number;
|
|
4699
4666
|
currency: Record<string, any>;
|
|
4700
|
-
network: Record<string, any
|
|
4667
|
+
network: Record<string, any> | null;
|
|
4701
4668
|
/** Payment provider name (e.g., nowpayments) */
|
|
4702
4669
|
provider: string;
|
|
4703
4670
|
/** Currency code as used by the provider */
|
|
@@ -5097,6 +5064,10 @@ interface CurrencyList$1 {
|
|
|
5097
5064
|
type_display: string;
|
|
5098
5065
|
/** Whether this currency is available for payments */
|
|
5099
5066
|
is_active: boolean;
|
|
5067
|
+
/** Current USD exchange rate (1 unit = X USD) */
|
|
5068
|
+
usd_rate: number;
|
|
5069
|
+
/** When USD rate was last updated */
|
|
5070
|
+
usd_rate_updated_at: string | null;
|
|
5100
5071
|
}
|
|
5101
5072
|
/**
|
|
5102
5073
|
* Chart series data for payments visualization
|
|
@@ -5326,7 +5297,7 @@ interface ChartDataPoint$1 {
|
|
|
5326
5297
|
}
|
|
5327
5298
|
|
|
5328
5299
|
declare namespace models$2 {
|
|
5329
|
-
export type { APIKeyCreate$1 as APIKeyCreate, APIKeyCreateRequest$1 as APIKeyCreateRequest, APIKeyDetail$1 as APIKeyDetail, APIKeyList$1 as APIKeyList, APIKeyUpdate$1 as APIKeyUpdate, APIKeyUpdateRequest$1 as APIKeyUpdateRequest, APIKeyValidationRequest$1 as APIKeyValidationRequest, APIKeyValidationResponse$1 as APIKeyValidationResponse, APIKeysOverview$1 as APIKeysOverview, AdminPaymentCreate$1 as AdminPaymentCreate, AdminPaymentCreateRequest$1 as AdminPaymentCreateRequest, AdminPaymentDetail$1 as AdminPaymentDetail, AdminPaymentList$1 as AdminPaymentList, AdminPaymentStats$1 as AdminPaymentStats, AdminPaymentUpdate$1 as AdminPaymentUpdate, AdminPaymentUpdateRequest$1 as AdminPaymentUpdateRequest, AdminUser$1 as AdminUser, BalanceOverview$1 as BalanceOverview, ChartDataPoint$1 as ChartDataPoint, ChartSeries$1 as ChartSeries, Currency$1 as Currency, CurrencyAnalyticsItem$1 as CurrencyAnalyticsItem, CurrencyList$1 as CurrencyList, EndpointGroup$1 as EndpointGroup, Network$1 as Network, PaginatedAPIKeyListList$1 as PaginatedAPIKeyListList, PaginatedAdminPaymentListList$1 as PaginatedAdminPaymentListList, PaginatedAdminPaymentStatsList$1 as PaginatedAdminPaymentStatsList, PaginatedAdminUserList$1 as PaginatedAdminUserList, PaginatedCurrencyListList$1 as PaginatedCurrencyListList, PaginatedEndpointGroupList$1 as PaginatedEndpointGroupList, PaginatedNetworkList$1 as PaginatedNetworkList, PaginatedPaymentListList$1 as PaginatedPaymentListList, PaginatedProviderCurrencyList$1 as PaginatedProviderCurrencyList, PaginatedRecentPaymentList$1 as PaginatedRecentPaymentList, PaginatedRecentTransactionList$1 as PaginatedRecentTransactionList, PaginatedSubscriptionListList$1 as PaginatedSubscriptionListList, PaginatedTariffList$1 as PaginatedTariffList, PaginatedTransactionList$1 as PaginatedTransactionList, PaginatedUserBalanceList$1 as PaginatedUserBalanceList, PaginatedWebhookEventListList$1 as PaginatedWebhookEventListList, PaginatedWebhookStatsList$1 as PaginatedWebhookStatsList, PatchedAPIKeyUpdateRequest$1 as PatchedAPIKeyUpdateRequest, PatchedAdminPaymentUpdateRequest$1 as PatchedAdminPaymentUpdateRequest, PatchedPaymentRequest$1 as PatchedPaymentRequest, PatchedSubscriptionRequest$1 as PatchedSubscriptionRequest, Payment$1 as Payment, PaymentAnalyticsResponse$1 as PaymentAnalyticsResponse, PaymentCreate$1 as PaymentCreate, PaymentCreateRequest$1 as PaymentCreateRequest, PaymentList$1 as PaymentList, PaymentOverview$1 as PaymentOverview, PaymentRequest$1 as PaymentRequest, PaymentsChartResponse$1 as PaymentsChartResponse, PaymentsDashboardOverview$1 as PaymentsDashboardOverview, PaymentsMetrics$1 as PaymentsMetrics, ProviderAnalyticsItem$1 as ProviderAnalyticsItem, ProviderCurrency$1 as ProviderCurrency, RecentPayment$1 as RecentPayment, RecentTransaction$1 as RecentTransaction, Subscription$1 as Subscription, SubscriptionCreate$1 as SubscriptionCreate, SubscriptionCreateRequest$1 as SubscriptionCreateRequest, SubscriptionList$1 as SubscriptionList, SubscriptionOverview$1 as SubscriptionOverview, SubscriptionRequest$1 as SubscriptionRequest, Tariff$1 as Tariff, Transaction$1 as Transaction, UserBalance$1 as UserBalance, WebhookEvent$1 as WebhookEvent, WebhookEventList$1 as WebhookEventList, WebhookEventListRequest$1 as WebhookEventListRequest, WebhookEventRequest$1 as WebhookEventRequest, WebhookStats$1 as WebhookStats, WebhookStatsRequest$1 as WebhookStatsRequest };
|
|
5300
|
+
export type { APIKeyCreate$1 as APIKeyCreate, APIKeyCreateRequest$1 as APIKeyCreateRequest, APIKeyDetail$1 as APIKeyDetail, APIKeyList$1 as APIKeyList, APIKeyUpdate$1 as APIKeyUpdate, APIKeyUpdateRequest$1 as APIKeyUpdateRequest, APIKeyValidationRequest$1 as APIKeyValidationRequest, APIKeyValidationResponse$1 as APIKeyValidationResponse, APIKeysOverview$1 as APIKeysOverview, AdminPaymentCreate$1 as AdminPaymentCreate, AdminPaymentCreateRequest$1 as AdminPaymentCreateRequest, AdminPaymentDetail$1 as AdminPaymentDetail, AdminPaymentList$1 as AdminPaymentList, AdminPaymentStats$1 as AdminPaymentStats, AdminPaymentUpdate$1 as AdminPaymentUpdate, AdminPaymentUpdateRequest$1 as AdminPaymentUpdateRequest, AdminUser$1 as AdminUser, BalanceOverview$1 as BalanceOverview, ChartDataPoint$1 as ChartDataPoint, ChartSeries$1 as ChartSeries, Currency$1 as Currency, CurrencyAnalyticsItem$1 as CurrencyAnalyticsItem, CurrencyList$1 as CurrencyList, CurrencyRates$1 as CurrencyRates, EndpointGroup$1 as EndpointGroup, Network$1 as Network, PaginatedAPIKeyListList$1 as PaginatedAPIKeyListList, PaginatedAdminPaymentListList$1 as PaginatedAdminPaymentListList, PaginatedAdminPaymentStatsList$1 as PaginatedAdminPaymentStatsList, PaginatedAdminUserList$1 as PaginatedAdminUserList, PaginatedCurrencyListList$1 as PaginatedCurrencyListList, PaginatedEndpointGroupList$1 as PaginatedEndpointGroupList, PaginatedNetworkList$1 as PaginatedNetworkList, PaginatedPaymentListList$1 as PaginatedPaymentListList, PaginatedProviderCurrencyList$1 as PaginatedProviderCurrencyList, PaginatedRecentPaymentList$1 as PaginatedRecentPaymentList, PaginatedRecentTransactionList$1 as PaginatedRecentTransactionList, PaginatedSubscriptionListList$1 as PaginatedSubscriptionListList, PaginatedTariffList$1 as PaginatedTariffList, PaginatedTransactionList$1 as PaginatedTransactionList, PaginatedUserBalanceList$1 as PaginatedUserBalanceList, PaginatedWebhookEventListList$1 as PaginatedWebhookEventListList, PaginatedWebhookStatsList$1 as PaginatedWebhookStatsList, PatchedAPIKeyUpdateRequest$1 as PatchedAPIKeyUpdateRequest, PatchedAdminPaymentUpdateRequest$1 as PatchedAdminPaymentUpdateRequest, PatchedPaymentRequest$1 as PatchedPaymentRequest, PatchedSubscriptionRequest$1 as PatchedSubscriptionRequest, Payment$1 as Payment, PaymentAnalyticsResponse$1 as PaymentAnalyticsResponse, PaymentCreate$1 as PaymentCreate, PaymentCreateRequest$1 as PaymentCreateRequest, PaymentList$1 as PaymentList, PaymentOverview$1 as PaymentOverview, PaymentRequest$1 as PaymentRequest, PaymentsChartResponse$1 as PaymentsChartResponse, PaymentsDashboardOverview$1 as PaymentsDashboardOverview, PaymentsMetrics$1 as PaymentsMetrics, ProviderAnalyticsItem$1 as ProviderAnalyticsItem, ProviderCurrency$1 as ProviderCurrency, RecentPayment$1 as RecentPayment, RecentTransaction$1 as RecentTransaction, Subscription$1 as Subscription, SubscriptionCreate$1 as SubscriptionCreate, SubscriptionCreateRequest$1 as SubscriptionCreateRequest, SubscriptionList$1 as SubscriptionList, SubscriptionOverview$1 as SubscriptionOverview, SubscriptionRequest$1 as SubscriptionRequest, SupportedCurrencies$1 as SupportedCurrencies, Tariff$1 as Tariff, Transaction$1 as Transaction, UserBalance$1 as UserBalance, WebhookEvent$1 as WebhookEvent, WebhookEventList$1 as WebhookEventList, WebhookEventListRequest$1 as WebhookEventListRequest, WebhookEventRequest$1 as WebhookEventRequest, WebhookStats$1 as WebhookStats, WebhookStatsRequest$1 as WebhookStatsRequest };
|
|
5330
5301
|
}
|
|
5331
5302
|
|
|
5332
5303
|
/**
|
|
@@ -5481,28 +5452,33 @@ declare class CfgPayments {
|
|
|
5481
5452
|
user?: number;
|
|
5482
5453
|
}): Promise<PaginatedAPIKeyListList$1>;
|
|
5483
5454
|
/**
|
|
5484
|
-
*
|
|
5485
|
-
*
|
|
5455
|
+
* API Key ViewSet: /api/api-keys/ User-specific access to API keys with
|
|
5456
|
+
* filtering and stats. - Regular users: can only see/manage their own API
|
|
5457
|
+
* keys - Staff/Admin: can see/manage all API keys
|
|
5486
5458
|
*/
|
|
5487
5459
|
apiKeysCreate(data: APIKeyCreateRequest$1): Promise<APIKeyCreate$1>;
|
|
5488
5460
|
/**
|
|
5489
|
-
*
|
|
5490
|
-
*
|
|
5461
|
+
* API Key ViewSet: /api/api-keys/ User-specific access to API keys with
|
|
5462
|
+
* filtering and stats. - Regular users: can only see/manage their own API
|
|
5463
|
+
* keys - Staff/Admin: can see/manage all API keys
|
|
5491
5464
|
*/
|
|
5492
5465
|
apiKeysRetrieve(id: string): Promise<APIKeyDetail$1>;
|
|
5493
5466
|
/**
|
|
5494
|
-
*
|
|
5495
|
-
*
|
|
5467
|
+
* API Key ViewSet: /api/api-keys/ User-specific access to API keys with
|
|
5468
|
+
* filtering and stats. - Regular users: can only see/manage their own API
|
|
5469
|
+
* keys - Staff/Admin: can see/manage all API keys
|
|
5496
5470
|
*/
|
|
5497
5471
|
apiKeysUpdate(id: string, data: APIKeyUpdateRequest$1): Promise<APIKeyUpdate$1>;
|
|
5498
5472
|
/**
|
|
5499
|
-
*
|
|
5500
|
-
*
|
|
5473
|
+
* API Key ViewSet: /api/api-keys/ User-specific access to API keys with
|
|
5474
|
+
* filtering and stats. - Regular users: can only see/manage their own API
|
|
5475
|
+
* keys - Staff/Admin: can see/manage all API keys
|
|
5501
5476
|
*/
|
|
5502
5477
|
apiKeysPartialUpdate(id: string, data?: PatchedAPIKeyUpdateRequest$1): Promise<APIKeyUpdate$1>;
|
|
5503
5478
|
/**
|
|
5504
|
-
*
|
|
5505
|
-
*
|
|
5479
|
+
* API Key ViewSet: /api/api-keys/ User-specific access to API keys with
|
|
5480
|
+
* filtering and stats. - Regular users: can only see/manage their own API
|
|
5481
|
+
* keys - Staff/Admin: can see/manage all API keys
|
|
5506
5482
|
*/
|
|
5507
5483
|
apiKeysDestroy(id: string): Promise<void>;
|
|
5508
5484
|
/**
|
|
@@ -5623,11 +5599,10 @@ declare class CfgPayments {
|
|
|
5623
5599
|
* status and basic metrics.
|
|
5624
5600
|
*/
|
|
5625
5601
|
currenciesHealthRetrieve(): Promise<Currency$1>;
|
|
5626
|
-
|
|
5627
|
-
|
|
5628
|
-
|
|
5629
|
-
|
|
5630
|
-
}): Promise<Currency$1>;
|
|
5602
|
+
/**
|
|
5603
|
+
* Get current exchange rates.
|
|
5604
|
+
*/
|
|
5605
|
+
currenciesRatesRetrieve(): Promise<CurrencyRates$1>;
|
|
5631
5606
|
/**
|
|
5632
5607
|
* Get only stablecoins. GET /api/currencies/stable/
|
|
5633
5608
|
*/
|
|
@@ -5637,11 +5612,10 @@ declare class CfgPayments {
|
|
|
5637
5612
|
* breakdowns.
|
|
5638
5613
|
*/
|
|
5639
5614
|
currenciesStatsRetrieve(): Promise<Currency$1>;
|
|
5640
|
-
|
|
5641
|
-
|
|
5642
|
-
|
|
5643
|
-
|
|
5644
|
-
}): Promise<Currency$1>;
|
|
5615
|
+
/**
|
|
5616
|
+
* Get supported currencies from providers.
|
|
5617
|
+
*/
|
|
5618
|
+
currenciesSupportedRetrieve(): Promise<SupportedCurrencies$1>;
|
|
5645
5619
|
endpointGroupsList(is_enabled?: boolean, ordering?: string, page?: number, page_size?: number, search?: string): Promise<PaginatedEndpointGroupList$1>;
|
|
5646
5620
|
endpointGroupsList(params?: {
|
|
5647
5621
|
is_enabled?: boolean;
|
|
@@ -8964,10 +8938,50 @@ declare const OPENAPI_SCHEMA: {
|
|
|
8964
8938
|
readOnly: boolean;
|
|
8965
8939
|
type: string;
|
|
8966
8940
|
};
|
|
8941
|
+
usd_rate: {
|
|
8942
|
+
description: string;
|
|
8943
|
+
format: string;
|
|
8944
|
+
readOnly: boolean;
|
|
8945
|
+
type: string;
|
|
8946
|
+
};
|
|
8947
|
+
usd_rate_updated_at: {
|
|
8948
|
+
description: string;
|
|
8949
|
+
format: string;
|
|
8950
|
+
nullable: boolean;
|
|
8951
|
+
readOnly: boolean;
|
|
8952
|
+
type: string;
|
|
8953
|
+
};
|
|
8967
8954
|
};
|
|
8968
8955
|
required: string[];
|
|
8969
8956
|
type: string;
|
|
8970
8957
|
};
|
|
8958
|
+
CurrencyRates: {
|
|
8959
|
+
description: string;
|
|
8960
|
+
properties: {
|
|
8961
|
+
base_currency: {
|
|
8962
|
+
default: string;
|
|
8963
|
+
description: string;
|
|
8964
|
+
maxLength: number;
|
|
8965
|
+
type: string;
|
|
8966
|
+
};
|
|
8967
|
+
currencies: {
|
|
8968
|
+
description: string;
|
|
8969
|
+
items: {
|
|
8970
|
+
maxLength: number;
|
|
8971
|
+
type: string;
|
|
8972
|
+
};
|
|
8973
|
+
type: string;
|
|
8974
|
+
};
|
|
8975
|
+
provider: {
|
|
8976
|
+
default: string;
|
|
8977
|
+
description: string;
|
|
8978
|
+
enum: string[];
|
|
8979
|
+
type: string;
|
|
8980
|
+
"x-spec-enum-id": string;
|
|
8981
|
+
};
|
|
8982
|
+
};
|
|
8983
|
+
type: string;
|
|
8984
|
+
};
|
|
8971
8985
|
Document: {
|
|
8972
8986
|
description: string;
|
|
8973
8987
|
properties: {
|
|
@@ -10129,6 +10143,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10129
10143
|
allOf: {
|
|
10130
10144
|
$ref: string;
|
|
10131
10145
|
}[];
|
|
10146
|
+
nullable: boolean;
|
|
10132
10147
|
readOnly: boolean;
|
|
10133
10148
|
};
|
|
10134
10149
|
id: {
|
|
@@ -12627,10 +12642,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12627
12642
|
nullable: boolean;
|
|
12628
12643
|
type: string;
|
|
12629
12644
|
};
|
|
12630
|
-
currency: {
|
|
12631
|
-
description: string;
|
|
12632
|
-
type: string;
|
|
12633
|
-
};
|
|
12634
12645
|
description: {
|
|
12635
12646
|
description: string;
|
|
12636
12647
|
type: string;
|
|
@@ -12641,11 +12652,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12641
12652
|
nullable: boolean;
|
|
12642
12653
|
type: string;
|
|
12643
12654
|
};
|
|
12644
|
-
network: {
|
|
12645
|
-
description: string;
|
|
12646
|
-
nullable: boolean;
|
|
12647
|
-
type: string;
|
|
12648
|
-
};
|
|
12649
12655
|
provider: {
|
|
12650
12656
|
description: string;
|
|
12651
12657
|
enum: string[];
|
|
@@ -12741,6 +12747,12 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12741
12747
|
Payment: {
|
|
12742
12748
|
description: string;
|
|
12743
12749
|
properties: {
|
|
12750
|
+
amount_crypto: {
|
|
12751
|
+
description: string;
|
|
12752
|
+
format: string;
|
|
12753
|
+
readOnly: boolean;
|
|
12754
|
+
type: string;
|
|
12755
|
+
};
|
|
12744
12756
|
amount_display: {
|
|
12745
12757
|
description: string;
|
|
12746
12758
|
readOnly: boolean;
|
|
@@ -12786,7 +12798,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12786
12798
|
type: string;
|
|
12787
12799
|
};
|
|
12788
12800
|
currency: {
|
|
12789
|
-
|
|
12801
|
+
readOnly: boolean;
|
|
12790
12802
|
type: string;
|
|
12791
12803
|
};
|
|
12792
12804
|
description: {
|
|
@@ -12826,8 +12838,8 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12826
12838
|
type: string;
|
|
12827
12839
|
};
|
|
12828
12840
|
network: {
|
|
12829
|
-
description: string;
|
|
12830
12841
|
nullable: boolean;
|
|
12842
|
+
readOnly: boolean;
|
|
12831
12843
|
type: string;
|
|
12832
12844
|
};
|
|
12833
12845
|
pay_address: {
|
|
@@ -12928,9 +12940,8 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12928
12940
|
};
|
|
12929
12941
|
currency_code: {
|
|
12930
12942
|
description: string;
|
|
12931
|
-
|
|
12943
|
+
maxLength: number;
|
|
12932
12944
|
type: string;
|
|
12933
|
-
"x-spec-enum-id": string;
|
|
12934
12945
|
};
|
|
12935
12946
|
description: {
|
|
12936
12947
|
description: string;
|
|
@@ -12940,13 +12951,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12940
12951
|
metadata: {
|
|
12941
12952
|
description: string;
|
|
12942
12953
|
};
|
|
12943
|
-
provider: {
|
|
12944
|
-
default: string;
|
|
12945
|
-
description: string;
|
|
12946
|
-
enum: string[];
|
|
12947
|
-
type: string;
|
|
12948
|
-
"x-spec-enum-id": string;
|
|
12949
|
-
};
|
|
12950
12954
|
};
|
|
12951
12955
|
required: string[];
|
|
12952
12956
|
type: string;
|
|
@@ -12973,9 +12977,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12973
12977
|
};
|
|
12974
12978
|
currency_code: {
|
|
12975
12979
|
description: string;
|
|
12976
|
-
|
|
12980
|
+
maxLength: number;
|
|
12981
|
+
minLength: number;
|
|
12977
12982
|
type: string;
|
|
12978
|
-
"x-spec-enum-id": string;
|
|
12979
12983
|
};
|
|
12980
12984
|
description: {
|
|
12981
12985
|
description: string;
|
|
@@ -12985,13 +12989,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12985
12989
|
metadata: {
|
|
12986
12990
|
description: string;
|
|
12987
12991
|
};
|
|
12988
|
-
provider: {
|
|
12989
|
-
default: string;
|
|
12990
|
-
description: string;
|
|
12991
|
-
enum: string[];
|
|
12992
|
-
type: string;
|
|
12993
|
-
"x-spec-enum-id": string;
|
|
12994
|
-
};
|
|
12995
12992
|
};
|
|
12996
12993
|
required: string[];
|
|
12997
12994
|
type: string;
|
|
@@ -13147,10 +13144,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13147
13144
|
nullable: boolean;
|
|
13148
13145
|
type: string;
|
|
13149
13146
|
};
|
|
13150
|
-
currency: {
|
|
13151
|
-
description: string;
|
|
13152
|
-
type: string;
|
|
13153
|
-
};
|
|
13154
13147
|
description: {
|
|
13155
13148
|
description: string;
|
|
13156
13149
|
type: string;
|
|
@@ -13161,11 +13154,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13161
13154
|
nullable: boolean;
|
|
13162
13155
|
type: string;
|
|
13163
13156
|
};
|
|
13164
|
-
network: {
|
|
13165
|
-
description: string;
|
|
13166
|
-
nullable: boolean;
|
|
13167
|
-
type: string;
|
|
13168
|
-
};
|
|
13169
13157
|
provider: {
|
|
13170
13158
|
description: string;
|
|
13171
13159
|
enum: string[];
|
|
@@ -13340,6 +13328,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13340
13328
|
allOf: {
|
|
13341
13329
|
$ref: string;
|
|
13342
13330
|
}[];
|
|
13331
|
+
nullable: boolean;
|
|
13343
13332
|
readOnly: boolean;
|
|
13344
13333
|
};
|
|
13345
13334
|
provider: {
|
|
@@ -14125,6 +14114,26 @@ declare const OPENAPI_SCHEMA: {
|
|
|
14125
14114
|
required: string[];
|
|
14126
14115
|
type: string;
|
|
14127
14116
|
};
|
|
14117
|
+
SupportedCurrencies: {
|
|
14118
|
+
description: string;
|
|
14119
|
+
properties: {
|
|
14120
|
+
currency_type: {
|
|
14121
|
+
default: string;
|
|
14122
|
+
description: string;
|
|
14123
|
+
enum: string[];
|
|
14124
|
+
type: string;
|
|
14125
|
+
"x-spec-enum-id": string;
|
|
14126
|
+
};
|
|
14127
|
+
provider: {
|
|
14128
|
+
default: string;
|
|
14129
|
+
description: string;
|
|
14130
|
+
enum: string[];
|
|
14131
|
+
type: string;
|
|
14132
|
+
"x-spec-enum-id": string;
|
|
14133
|
+
};
|
|
14134
|
+
};
|
|
14135
|
+
type: string;
|
|
14136
|
+
};
|
|
14128
14137
|
SupportedProviders: {
|
|
14129
14138
|
description: string;
|
|
14130
14139
|
properties: {
|
|
@@ -21642,15 +21651,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
21642
21651
|
get: {
|
|
21643
21652
|
description: string;
|
|
21644
21653
|
operationId: string;
|
|
21645
|
-
parameters: {
|
|
21646
|
-
description: string;
|
|
21647
|
-
in: string;
|
|
21648
|
-
name: string;
|
|
21649
|
-
required: boolean;
|
|
21650
|
-
schema: {
|
|
21651
|
-
type: string;
|
|
21652
|
-
};
|
|
21653
|
-
}[];
|
|
21654
21654
|
responses: {
|
|
21655
21655
|
"200": {
|
|
21656
21656
|
content: {
|
|
@@ -21670,7 +21670,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
21670
21670
|
cookieAuth: any[];
|
|
21671
21671
|
jwtAuth?: undefined;
|
|
21672
21672
|
})[];
|
|
21673
|
-
summary: string;
|
|
21674
21673
|
tags: string[];
|
|
21675
21674
|
"x-async-capable": boolean;
|
|
21676
21675
|
};
|
|
@@ -21733,23 +21732,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
21733
21732
|
get: {
|
|
21734
21733
|
description: string;
|
|
21735
21734
|
operationId: string;
|
|
21736
|
-
parameters: ({
|
|
21737
|
-
description: string;
|
|
21738
|
-
in: string;
|
|
21739
|
-
name: string;
|
|
21740
|
-
schema: {
|
|
21741
|
-
enum: string[];
|
|
21742
|
-
type: string;
|
|
21743
|
-
};
|
|
21744
|
-
} | {
|
|
21745
|
-
description: string;
|
|
21746
|
-
in: string;
|
|
21747
|
-
name: string;
|
|
21748
|
-
schema: {
|
|
21749
|
-
type: string;
|
|
21750
|
-
enum?: undefined;
|
|
21751
|
-
};
|
|
21752
|
-
})[];
|
|
21753
21735
|
responses: {
|
|
21754
21736
|
"200": {
|
|
21755
21737
|
content: {
|
|
@@ -21769,7 +21751,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
21769
21751
|
cookieAuth: any[];
|
|
21770
21752
|
jwtAuth?: undefined;
|
|
21771
21753
|
})[];
|
|
21772
|
-
summary: string;
|
|
21773
21754
|
tags: string[];
|
|
21774
21755
|
"x-async-capable": boolean;
|
|
21775
21756
|
};
|
|
@@ -27801,7 +27782,7 @@ Defines the structure of API key validation response for OpenAPI schema.
|
|
|
27801
27782
|
declare const APIKeyValidationResponseSchema: z.ZodObject<{
|
|
27802
27783
|
success: z.ZodBoolean;
|
|
27803
27784
|
valid: z.ZodBoolean;
|
|
27804
|
-
api_key: z.ZodObject<{
|
|
27785
|
+
api_key: z.ZodNullable<z.ZodObject<{
|
|
27805
27786
|
id: z.ZodUUID;
|
|
27806
27787
|
user: z.ZodString;
|
|
27807
27788
|
name: z.ZodString;
|
|
@@ -27815,7 +27796,7 @@ declare const APIKeyValidationResponseSchema: z.ZodObject<{
|
|
|
27815
27796
|
expires_at: z.ZodNullable<z.ZodISODateTime>;
|
|
27816
27797
|
created_at: z.ZodISODateTime;
|
|
27817
27798
|
updated_at: z.ZodISODateTime;
|
|
27818
|
-
}, z.core.$strip
|
|
27799
|
+
}, z.core.$strip>>;
|
|
27819
27800
|
message: z.ZodString;
|
|
27820
27801
|
error: z.ZodOptional<z.ZodString>;
|
|
27821
27802
|
error_code: z.ZodOptional<z.ZodString>;
|
|
@@ -28848,12 +28829,38 @@ declare const CurrencyListSchema: z.ZodObject<{
|
|
|
28848
28829
|
currency_type: z.ZodEnum<typeof CurrencyListCurrencyType>;
|
|
28849
28830
|
type_display: z.ZodString;
|
|
28850
28831
|
is_active: z.ZodBoolean;
|
|
28832
|
+
usd_rate: z.ZodNumber;
|
|
28833
|
+
usd_rate_updated_at: z.ZodNullable<z.ZodISODateTime>;
|
|
28851
28834
|
}, z.core.$strip>;
|
|
28852
28835
|
/**
|
|
28853
28836
|
* Infer TypeScript type from Zod schema
|
|
28854
28837
|
*/
|
|
28855
28838
|
type CurrencyList = z.infer<typeof CurrencyListSchema>;
|
|
28856
28839
|
|
|
28840
|
+
/**
|
|
28841
|
+
* Zod schema for CurrencyRates
|
|
28842
|
+
*
|
|
28843
|
+
* This schema provides runtime validation and type inference.
|
|
28844
|
+
* * Currency rates serializer for getting exchange rates.
|
|
28845
|
+
|
|
28846
|
+
Fetches current exchange rates through CurrencyService.
|
|
28847
|
+
* */
|
|
28848
|
+
|
|
28849
|
+
/**
|
|
28850
|
+
* Currency rates serializer for getting exchange rates.
|
|
28851
|
+
|
|
28852
|
+
Fetches current exchange rates through CurrencyService.
|
|
28853
|
+
*/
|
|
28854
|
+
declare const CurrencyRatesSchema: z.ZodObject<{
|
|
28855
|
+
base_currency: z.ZodOptional<z.ZodString>;
|
|
28856
|
+
currencies: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
28857
|
+
provider: z.ZodOptional<z.ZodEnum<typeof CurrencyRatesProvider>>;
|
|
28858
|
+
}, z.core.$strip>;
|
|
28859
|
+
/**
|
|
28860
|
+
* Infer TypeScript type from Zod schema
|
|
28861
|
+
*/
|
|
28862
|
+
type CurrencyRates = z.infer<typeof CurrencyRatesSchema>;
|
|
28863
|
+
|
|
28857
28864
|
/**
|
|
28858
28865
|
* Zod schema for Document
|
|
28859
28866
|
*
|
|
@@ -29531,7 +29538,7 @@ Used for network information and selection.
|
|
|
29531
29538
|
*/
|
|
29532
29539
|
declare const NetworkSchema: z.ZodObject<{
|
|
29533
29540
|
id: z.ZodInt;
|
|
29534
|
-
currency: z.ZodObject<{
|
|
29541
|
+
currency: z.ZodNullable<z.ZodObject<{
|
|
29535
29542
|
id: z.ZodInt;
|
|
29536
29543
|
code: z.ZodString;
|
|
29537
29544
|
name: z.ZodString;
|
|
@@ -29539,7 +29546,9 @@ declare const NetworkSchema: z.ZodObject<{
|
|
|
29539
29546
|
currency_type: z.ZodEnum<typeof CurrencyListCurrencyType>;
|
|
29540
29547
|
type_display: z.ZodString;
|
|
29541
29548
|
is_active: z.ZodBoolean;
|
|
29542
|
-
|
|
29549
|
+
usd_rate: z.ZodNumber;
|
|
29550
|
+
usd_rate_updated_at: z.ZodNullable<z.ZodISODateTime>;
|
|
29551
|
+
}, z.core.$strip>>;
|
|
29543
29552
|
name: z.ZodString;
|
|
29544
29553
|
code: z.ZodString;
|
|
29545
29554
|
is_active: z.ZodBoolean;
|
|
@@ -30091,6 +30100,8 @@ declare const PaginatedCurrencyListListSchema: z.ZodObject<{
|
|
|
30091
30100
|
currency_type: z.ZodEnum<typeof CurrencyListCurrencyType>;
|
|
30092
30101
|
type_display: z.ZodString;
|
|
30093
30102
|
is_active: z.ZodBoolean;
|
|
30103
|
+
usd_rate: z.ZodNumber;
|
|
30104
|
+
usd_rate_updated_at: z.ZodNullable<z.ZodISODateTime>;
|
|
30094
30105
|
}, z.core.$strip>>;
|
|
30095
30106
|
}, z.core.$strip>;
|
|
30096
30107
|
/**
|
|
@@ -30306,7 +30317,7 @@ declare const PaginatedNetworkListSchema: z.ZodObject<{
|
|
|
30306
30317
|
previous_page: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
30307
30318
|
results: z.ZodArray<z.ZodObject<{
|
|
30308
30319
|
id: z.ZodInt;
|
|
30309
|
-
currency: z.ZodObject<{
|
|
30320
|
+
currency: z.ZodNullable<z.ZodObject<{
|
|
30310
30321
|
id: z.ZodInt;
|
|
30311
30322
|
code: z.ZodString;
|
|
30312
30323
|
name: z.ZodString;
|
|
@@ -30314,7 +30325,9 @@ declare const PaginatedNetworkListSchema: z.ZodObject<{
|
|
|
30314
30325
|
currency_type: z.ZodEnum<typeof CurrencyListCurrencyType>;
|
|
30315
30326
|
type_display: z.ZodString;
|
|
30316
30327
|
is_active: z.ZodBoolean;
|
|
30317
|
-
|
|
30328
|
+
usd_rate: z.ZodNumber;
|
|
30329
|
+
usd_rate_updated_at: z.ZodNullable<z.ZodISODateTime>;
|
|
30330
|
+
}, z.core.$strip>>;
|
|
30318
30331
|
name: z.ZodString;
|
|
30319
30332
|
code: z.ZodString;
|
|
30320
30333
|
is_active: z.ZodBoolean;
|
|
@@ -30466,10 +30479,12 @@ declare const PaginatedProviderCurrencyListSchema: z.ZodObject<{
|
|
|
30466
30479
|
currency_type: z.ZodEnum<typeof CurrencyListCurrencyType>;
|
|
30467
30480
|
type_display: z.ZodString;
|
|
30468
30481
|
is_active: z.ZodBoolean;
|
|
30482
|
+
usd_rate: z.ZodNumber;
|
|
30483
|
+
usd_rate_updated_at: z.ZodNullable<z.ZodISODateTime>;
|
|
30469
30484
|
}, z.core.$strip>;
|
|
30470
|
-
network: z.ZodObject<{
|
|
30485
|
+
network: z.ZodNullable<z.ZodObject<{
|
|
30471
30486
|
id: z.ZodInt;
|
|
30472
|
-
currency: z.ZodObject<{
|
|
30487
|
+
currency: z.ZodNullable<z.ZodObject<{
|
|
30473
30488
|
id: z.ZodInt;
|
|
30474
30489
|
code: z.ZodString;
|
|
30475
30490
|
name: z.ZodString;
|
|
@@ -30477,13 +30492,15 @@ declare const PaginatedProviderCurrencyListSchema: z.ZodObject<{
|
|
|
30477
30492
|
currency_type: z.ZodEnum<typeof CurrencyListCurrencyType>;
|
|
30478
30493
|
type_display: z.ZodString;
|
|
30479
30494
|
is_active: z.ZodBoolean;
|
|
30480
|
-
|
|
30495
|
+
usd_rate: z.ZodNumber;
|
|
30496
|
+
usd_rate_updated_at: z.ZodNullable<z.ZodISODateTime>;
|
|
30497
|
+
}, z.core.$strip>>;
|
|
30481
30498
|
name: z.ZodString;
|
|
30482
30499
|
code: z.ZodString;
|
|
30483
30500
|
is_active: z.ZodBoolean;
|
|
30484
30501
|
created_at: z.ZodISODateTime;
|
|
30485
30502
|
updated_at: z.ZodISODateTime;
|
|
30486
|
-
}, z.core.$strip
|
|
30503
|
+
}, z.core.$strip>>;
|
|
30487
30504
|
provider: z.ZodString;
|
|
30488
30505
|
provider_currency_code: z.ZodString;
|
|
30489
30506
|
provider_min_amount_usd: z.ZodNumber;
|
|
@@ -31108,8 +31125,6 @@ Used for detail views and updates.
|
|
|
31108
31125
|
*/
|
|
31109
31126
|
declare const PatchedPaymentRequestSchema: z.ZodObject<{
|
|
31110
31127
|
amount_usd: z.ZodOptional<z.ZodNumber>;
|
|
31111
|
-
currency: z.ZodOptional<z.ZodInt>;
|
|
31112
|
-
network: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
31113
31128
|
provider: z.ZodOptional<z.ZodEnum<typeof PatchedPaymentRequestProvider>>;
|
|
31114
31129
|
status: z.ZodOptional<z.ZodEnum<typeof PatchedPaymentRequestStatus>>;
|
|
31115
31130
|
callback_url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
|
|
@@ -31220,8 +31235,9 @@ declare const PaymentSchema: z.ZodObject<{
|
|
|
31220
31235
|
id: z.ZodUUID;
|
|
31221
31236
|
user: z.ZodString;
|
|
31222
31237
|
amount_usd: z.ZodNumber;
|
|
31223
|
-
|
|
31224
|
-
|
|
31238
|
+
amount_crypto: z.ZodNumber;
|
|
31239
|
+
currency: z.ZodString;
|
|
31240
|
+
network: z.ZodNullable<z.ZodString>;
|
|
31225
31241
|
provider: z.ZodOptional<z.ZodEnum<typeof PaymentProvider>>;
|
|
31226
31242
|
status: z.ZodOptional<z.ZodEnum<typeof PaymentStatus>>;
|
|
31227
31243
|
status_display: z.ZodString;
|
|
@@ -31298,8 +31314,7 @@ Validates input and delegates to PaymentService.
|
|
|
31298
31314
|
*/
|
|
31299
31315
|
declare const PaymentCreateSchema: z.ZodObject<{
|
|
31300
31316
|
amount_usd: z.ZodNumber;
|
|
31301
|
-
currency_code: z.
|
|
31302
|
-
provider: z.ZodOptional<z.ZodEnum<typeof PaymentCreateProvider>>;
|
|
31317
|
+
currency_code: z.ZodString;
|
|
31303
31318
|
callback_url: z.ZodOptional<z.ZodURL>;
|
|
31304
31319
|
cancel_url: z.ZodOptional<z.ZodURL>;
|
|
31305
31320
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -31326,8 +31341,7 @@ Validates input and delegates to PaymentService.
|
|
|
31326
31341
|
*/
|
|
31327
31342
|
declare const PaymentCreateRequestSchema: z.ZodObject<{
|
|
31328
31343
|
amount_usd: z.ZodNumber;
|
|
31329
|
-
currency_code: z.
|
|
31330
|
-
provider: z.ZodOptional<z.ZodEnum<typeof PaymentCreateRequestProvider>>;
|
|
31344
|
+
currency_code: z.ZodString;
|
|
31331
31345
|
callback_url: z.ZodOptional<z.ZodURL>;
|
|
31332
31346
|
cancel_url: z.ZodOptional<z.ZodURL>;
|
|
31333
31347
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -31414,8 +31428,6 @@ Used for detail views and updates.
|
|
|
31414
31428
|
*/
|
|
31415
31429
|
declare const PaymentRequestSchema: z.ZodObject<{
|
|
31416
31430
|
amount_usd: z.ZodNumber;
|
|
31417
|
-
currency: z.ZodInt;
|
|
31418
|
-
network: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
31419
31431
|
provider: z.ZodOptional<z.ZodEnum<typeof PaymentRequestProvider>>;
|
|
31420
31432
|
status: z.ZodOptional<z.ZodEnum<typeof PaymentRequestStatus>>;
|
|
31421
31433
|
callback_url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
|
|
@@ -31478,7 +31490,7 @@ declare const PaymentsDashboardOverviewSchema: z.ZodObject<{
|
|
|
31478
31490
|
has_transactions: z.ZodBoolean;
|
|
31479
31491
|
is_empty: z.ZodBoolean;
|
|
31480
31492
|
}, z.core.$strip>;
|
|
31481
|
-
subscription: z.ZodObject<{
|
|
31493
|
+
subscription: z.ZodNullable<z.ZodObject<{
|
|
31482
31494
|
tier: z.ZodString;
|
|
31483
31495
|
tier_display: z.ZodString;
|
|
31484
31496
|
status: z.ZodString;
|
|
@@ -31498,7 +31510,7 @@ declare const PaymentsDashboardOverviewSchema: z.ZodObject<{
|
|
|
31498
31510
|
last_request_at: z.ZodNullable<z.ZodISODateTime>;
|
|
31499
31511
|
endpoint_groups_count: z.ZodInt;
|
|
31500
31512
|
endpoint_groups: z.ZodArray<z.ZodString>;
|
|
31501
|
-
}, z.core.$strip
|
|
31513
|
+
}, z.core.$strip>>;
|
|
31502
31514
|
api_keys: z.ZodObject<{
|
|
31503
31515
|
total_keys: z.ZodInt;
|
|
31504
31516
|
active_keys: z.ZodInt;
|
|
@@ -31594,7 +31606,7 @@ declare const PaymentsMetricsSchema: z.ZodObject<{
|
|
|
31594
31606
|
has_transactions: z.ZodBoolean;
|
|
31595
31607
|
is_empty: z.ZodBoolean;
|
|
31596
31608
|
}, z.core.$strip>;
|
|
31597
|
-
subscription: z.ZodObject<{
|
|
31609
|
+
subscription: z.ZodNullable<z.ZodObject<{
|
|
31598
31610
|
tier: z.ZodString;
|
|
31599
31611
|
tier_display: z.ZodString;
|
|
31600
31612
|
status: z.ZodString;
|
|
@@ -31614,7 +31626,7 @@ declare const PaymentsMetricsSchema: z.ZodObject<{
|
|
|
31614
31626
|
last_request_at: z.ZodNullable<z.ZodISODateTime>;
|
|
31615
31627
|
endpoint_groups_count: z.ZodInt;
|
|
31616
31628
|
endpoint_groups: z.ZodArray<z.ZodString>;
|
|
31617
|
-
}, z.core.$strip
|
|
31629
|
+
}, z.core.$strip>>;
|
|
31618
31630
|
api_keys: z.ZodObject<{
|
|
31619
31631
|
total_keys: z.ZodInt;
|
|
31620
31632
|
active_keys: z.ZodInt;
|
|
@@ -31684,10 +31696,12 @@ declare const ProviderCurrencySchema: z.ZodObject<{
|
|
|
31684
31696
|
currency_type: z.ZodEnum<typeof CurrencyListCurrencyType>;
|
|
31685
31697
|
type_display: z.ZodString;
|
|
31686
31698
|
is_active: z.ZodBoolean;
|
|
31699
|
+
usd_rate: z.ZodNumber;
|
|
31700
|
+
usd_rate_updated_at: z.ZodNullable<z.ZodISODateTime>;
|
|
31687
31701
|
}, z.core.$strip>;
|
|
31688
|
-
network: z.ZodObject<{
|
|
31702
|
+
network: z.ZodNullable<z.ZodObject<{
|
|
31689
31703
|
id: z.ZodInt;
|
|
31690
|
-
currency: z.ZodObject<{
|
|
31704
|
+
currency: z.ZodNullable<z.ZodObject<{
|
|
31691
31705
|
id: z.ZodInt;
|
|
31692
31706
|
code: z.ZodString;
|
|
31693
31707
|
name: z.ZodString;
|
|
@@ -31695,13 +31709,15 @@ declare const ProviderCurrencySchema: z.ZodObject<{
|
|
|
31695
31709
|
currency_type: z.ZodEnum<typeof CurrencyListCurrencyType>;
|
|
31696
31710
|
type_display: z.ZodString;
|
|
31697
31711
|
is_active: z.ZodBoolean;
|
|
31698
|
-
|
|
31712
|
+
usd_rate: z.ZodNumber;
|
|
31713
|
+
usd_rate_updated_at: z.ZodNullable<z.ZodISODateTime>;
|
|
31714
|
+
}, z.core.$strip>>;
|
|
31699
31715
|
name: z.ZodString;
|
|
31700
31716
|
code: z.ZodString;
|
|
31701
31717
|
is_active: z.ZodBoolean;
|
|
31702
31718
|
created_at: z.ZodISODateTime;
|
|
31703
31719
|
updated_at: z.ZodISODateTime;
|
|
31704
|
-
}, z.core.$strip
|
|
31720
|
+
}, z.core.$strip>>;
|
|
31705
31721
|
provider: z.ZodString;
|
|
31706
31722
|
provider_currency_code: z.ZodString;
|
|
31707
31723
|
provider_min_amount_usd: z.ZodNumber;
|
|
@@ -32247,6 +32263,29 @@ declare const SuccessResponseSchema: z.ZodObject<{
|
|
|
32247
32263
|
*/
|
|
32248
32264
|
type SuccessResponse = z.infer<typeof SuccessResponseSchema>;
|
|
32249
32265
|
|
|
32266
|
+
/**
|
|
32267
|
+
* Zod schema for SupportedCurrencies
|
|
32268
|
+
*
|
|
32269
|
+
* This schema provides runtime validation and type inference.
|
|
32270
|
+
* * Supported currencies serializer for provider capabilities.
|
|
32271
|
+
|
|
32272
|
+
Gets supported currencies from providers through CurrencyService.
|
|
32273
|
+
* */
|
|
32274
|
+
|
|
32275
|
+
/**
|
|
32276
|
+
* Supported currencies serializer for provider capabilities.
|
|
32277
|
+
|
|
32278
|
+
Gets supported currencies from providers through CurrencyService.
|
|
32279
|
+
*/
|
|
32280
|
+
declare const SupportedCurrenciesSchema: z.ZodObject<{
|
|
32281
|
+
provider: z.ZodOptional<z.ZodEnum<typeof SupportedCurrenciesProvider>>;
|
|
32282
|
+
currency_type: z.ZodOptional<z.ZodEnum<typeof SupportedCurrenciesCurrencyType>>;
|
|
32283
|
+
}, z.core.$strip>;
|
|
32284
|
+
/**
|
|
32285
|
+
* Infer TypeScript type from Zod schema
|
|
32286
|
+
*/
|
|
32287
|
+
type SupportedCurrencies = z.infer<typeof SupportedCurrenciesSchema>;
|
|
32288
|
+
|
|
32250
32289
|
/**
|
|
32251
32290
|
* Zod schema for SupportedProviders
|
|
32252
32291
|
*
|
|
@@ -33047,6 +33086,8 @@ type index$2_CurrencyAnalyticsItem = CurrencyAnalyticsItem;
|
|
|
33047
33086
|
declare const index$2_CurrencyAnalyticsItemSchema: typeof CurrencyAnalyticsItemSchema;
|
|
33048
33087
|
type index$2_CurrencyList = CurrencyList;
|
|
33049
33088
|
declare const index$2_CurrencyListSchema: typeof CurrencyListSchema;
|
|
33089
|
+
type index$2_CurrencyRates = CurrencyRates;
|
|
33090
|
+
declare const index$2_CurrencyRatesSchema: typeof CurrencyRatesSchema;
|
|
33050
33091
|
declare const index$2_CurrencySchema: typeof CurrencySchema;
|
|
33051
33092
|
type index$2_Document = Document;
|
|
33052
33093
|
type index$2_DocumentArchive = DocumentArchive;
|
|
@@ -33282,6 +33323,8 @@ declare const index$2_SubscriptionRequestSchema: typeof SubscriptionRequestSchem
|
|
|
33282
33323
|
declare const index$2_SubscriptionSchema: typeof SubscriptionSchema;
|
|
33283
33324
|
type index$2_SuccessResponse = SuccessResponse;
|
|
33284
33325
|
declare const index$2_SuccessResponseSchema: typeof SuccessResponseSchema;
|
|
33326
|
+
type index$2_SupportedCurrencies = SupportedCurrencies;
|
|
33327
|
+
declare const index$2_SupportedCurrenciesSchema: typeof SupportedCurrenciesSchema;
|
|
33285
33328
|
type index$2_SupportedProviders = SupportedProviders;
|
|
33286
33329
|
declare const index$2_SupportedProvidersSchema: typeof SupportedProvidersSchema;
|
|
33287
33330
|
type index$2_Tariff = Tariff;
|
|
@@ -33341,7 +33384,7 @@ type index$2_WorkerActionRequest = WorkerActionRequest;
|
|
|
33341
33384
|
declare const index$2_WorkerActionRequestSchema: typeof WorkerActionRequestSchema;
|
|
33342
33385
|
declare const index$2_WorkerActionSchema: typeof WorkerActionSchema;
|
|
33343
33386
|
declare namespace index$2 {
|
|
33344
|
-
export { type index$2_APIKeyCreate as APIKeyCreate, type index$2_APIKeyCreateRequest as APIKeyCreateRequest, index$2_APIKeyCreateRequestSchema as APIKeyCreateRequestSchema, index$2_APIKeyCreateSchema as APIKeyCreateSchema, type index$2_APIKeyDetail as APIKeyDetail, index$2_APIKeyDetailSchema as APIKeyDetailSchema, type index$2_APIKeyList as APIKeyList, index$2_APIKeyListSchema as APIKeyListSchema, type index$2_APIKeyUpdate as APIKeyUpdate, type index$2_APIKeyUpdateRequest as APIKeyUpdateRequest, index$2_APIKeyUpdateRequestSchema as APIKeyUpdateRequestSchema, index$2_APIKeyUpdateSchema as APIKeyUpdateSchema, type index$2_APIKeyValidationRequest as APIKeyValidationRequest, index$2_APIKeyValidationRequestSchema as APIKeyValidationRequestSchema, type index$2_APIKeyValidationResponse as APIKeyValidationResponse, index$2_APIKeyValidationResponseSchema as APIKeyValidationResponseSchema, type index$2_APIKeysOverview as APIKeysOverview, index$2_APIKeysOverviewSchema as APIKeysOverviewSchema, type index$2_APIResponse as APIResponse, type index$2_APIResponseRequest as APIResponseRequest, index$2_APIResponseRequestSchema as APIResponseRequestSchema, index$2_APIResponseSchema as APIResponseSchema, type index$2_AdminPaymentCreate as AdminPaymentCreate, type index$2_AdminPaymentCreateRequest as AdminPaymentCreateRequest, index$2_AdminPaymentCreateRequestSchema as AdminPaymentCreateRequestSchema, index$2_AdminPaymentCreateSchema as AdminPaymentCreateSchema, type index$2_AdminPaymentDetail as AdminPaymentDetail, index$2_AdminPaymentDetailSchema as AdminPaymentDetailSchema, type index$2_AdminPaymentList as AdminPaymentList, index$2_AdminPaymentListSchema as AdminPaymentListSchema, type index$2_AdminPaymentStats as AdminPaymentStats, index$2_AdminPaymentStatsSchema as AdminPaymentStatsSchema, type index$2_AdminPaymentUpdate as AdminPaymentUpdate, type index$2_AdminPaymentUpdateRequest as AdminPaymentUpdateRequest, index$2_AdminPaymentUpdateRequestSchema as AdminPaymentUpdateRequestSchema, index$2_AdminPaymentUpdateSchema as AdminPaymentUpdateSchema, type index$2_AdminUser as AdminUser, index$2_AdminUserSchema as AdminUserSchema, type index$2_ArchiveItem as ArchiveItem, type index$2_ArchiveItemChunk as ArchiveItemChunk, type index$2_ArchiveItemChunkDetail as ArchiveItemChunkDetail, index$2_ArchiveItemChunkDetailSchema as ArchiveItemChunkDetailSchema, type index$2_ArchiveItemChunkRequest as ArchiveItemChunkRequest, index$2_ArchiveItemChunkRequestSchema as ArchiveItemChunkRequestSchema, index$2_ArchiveItemChunkSchema as ArchiveItemChunkSchema, type index$2_ArchiveItemDetail as ArchiveItemDetail, index$2_ArchiveItemDetailSchema as ArchiveItemDetailSchema, type index$2_ArchiveItemRequest as ArchiveItemRequest, index$2_ArchiveItemRequestSchema as ArchiveItemRequestSchema, index$2_ArchiveItemSchema as ArchiveItemSchema, type index$2_ArchiveProcessingResult as ArchiveProcessingResult, index$2_ArchiveProcessingResultSchema as ArchiveProcessingResultSchema, type index$2_ArchiveSearchRequestRequest as ArchiveSearchRequestRequest, index$2_ArchiveSearchRequestRequestSchema as ArchiveSearchRequestRequestSchema, type index$2_ArchiveSearchResult as ArchiveSearchResult, index$2_ArchiveSearchResultSchema as ArchiveSearchResultSchema, type index$2_ArchiveStatistics as ArchiveStatistics, index$2_ArchiveStatisticsSchema as ArchiveStatisticsSchema, type index$2_BalanceOverview as BalanceOverview, index$2_BalanceOverviewSchema as BalanceOverviewSchema, type index$2_BulkEmailRequest as BulkEmailRequest, index$2_BulkEmailRequestSchema as BulkEmailRequestSchema, type index$2_BulkEmailResponse as BulkEmailResponse, index$2_BulkEmailResponseSchema as BulkEmailResponseSchema, type index$2_ChartDataPoint as ChartDataPoint, index$2_ChartDataPointSchema as ChartDataPointSchema, type index$2_ChartSeries as ChartSeries, index$2_ChartSeriesSchema as ChartSeriesSchema, type index$2_ChatHistory as ChatHistory, index$2_ChatHistorySchema as ChatHistorySchema, type index$2_ChatMessage as ChatMessage, index$2_ChatMessageSchema as ChatMessageSchema, type index$2_ChatQueryRequest as ChatQueryRequest, index$2_ChatQueryRequestSchema as ChatQueryRequestSchema, type index$2_ChatResponse as ChatResponse, type index$2_ChatResponseRequest as ChatResponseRequest, index$2_ChatResponseRequestSchema as ChatResponseRequestSchema, index$2_ChatResponseSchema as ChatResponseSchema, type index$2_ChatSession as ChatSession, type index$2_ChatSessionCreateRequest as ChatSessionCreateRequest, index$2_ChatSessionCreateRequestSchema as ChatSessionCreateRequestSchema, type index$2_ChatSessionRequest as ChatSessionRequest, index$2_ChatSessionRequestSchema as ChatSessionRequestSchema, index$2_ChatSessionSchema as ChatSessionSchema, type index$2_ChatSource as ChatSource, type index$2_ChatSourceRequest as ChatSourceRequest, index$2_ChatSourceRequestSchema as ChatSourceRequestSchema, index$2_ChatSourceSchema as ChatSourceSchema, type index$2_ChunkRevectorizationRequestRequest as ChunkRevectorizationRequestRequest, index$2_ChunkRevectorizationRequestRequestSchema as ChunkRevectorizationRequestRequestSchema, type index$2_Currency as Currency, type index$2_CurrencyAnalyticsItem as CurrencyAnalyticsItem, index$2_CurrencyAnalyticsItemSchema as CurrencyAnalyticsItemSchema, type index$2_CurrencyList as CurrencyList, index$2_CurrencyListSchema as CurrencyListSchema, index$2_CurrencySchema as CurrencySchema, type index$2_Document as Document, type index$2_DocumentArchive as DocumentArchive, type index$2_DocumentArchiveDetail as DocumentArchiveDetail, index$2_DocumentArchiveDetailSchema as DocumentArchiveDetailSchema, type index$2_DocumentArchiveList as DocumentArchiveList, index$2_DocumentArchiveListSchema as DocumentArchiveListSchema, type index$2_DocumentArchiveRequest as DocumentArchiveRequest, index$2_DocumentArchiveRequestSchema as DocumentArchiveRequestSchema, index$2_DocumentArchiveSchema as DocumentArchiveSchema, type index$2_DocumentCategory as DocumentCategory, type index$2_DocumentCategoryRequest as DocumentCategoryRequest, index$2_DocumentCategoryRequestSchema as DocumentCategoryRequestSchema, index$2_DocumentCategorySchema as DocumentCategorySchema, type index$2_DocumentCreateRequest as DocumentCreateRequest, index$2_DocumentCreateRequestSchema as DocumentCreateRequestSchema, type index$2_DocumentProcessingStatus as DocumentProcessingStatus, index$2_DocumentProcessingStatusSchema as DocumentProcessingStatusSchema, type index$2_DocumentRequest as DocumentRequest, index$2_DocumentRequestSchema as DocumentRequestSchema, index$2_DocumentSchema as DocumentSchema, type index$2_DocumentStats as DocumentStats, index$2_DocumentStatsSchema as DocumentStatsSchema, type index$2_EmailLog as EmailLog, index$2_EmailLogSchema as EmailLogSchema, type index$2_Endpoint as Endpoint, type index$2_EndpointGroup as EndpointGroup, index$2_EndpointGroupSchema as EndpointGroupSchema, index$2_EndpointSchema as EndpointSchema, type index$2_EndpointsStatus as EndpointsStatus, index$2_EndpointsStatusSchema as EndpointsStatusSchema, type index$2_ErrorResponse as ErrorResponse, index$2_ErrorResponseSchema as ErrorResponseSchema, type index$2_HealthCheck as HealthCheck, index$2_HealthCheckSchema as HealthCheckSchema, type index$2_LeadSubmission as LeadSubmission, type index$2_LeadSubmissionError as LeadSubmissionError, index$2_LeadSubmissionErrorSchema as LeadSubmissionErrorSchema, type index$2_LeadSubmissionRequest as LeadSubmissionRequest, index$2_LeadSubmissionRequestSchema as LeadSubmissionRequestSchema, type index$2_LeadSubmissionResponse as LeadSubmissionResponse, index$2_LeadSubmissionResponseSchema as LeadSubmissionResponseSchema, index$2_LeadSubmissionSchema as LeadSubmissionSchema, type index$2_Message as Message, type index$2_MessageCreate as MessageCreate, type index$2_MessageCreateRequest as MessageCreateRequest, index$2_MessageCreateRequestSchema as MessageCreateRequestSchema, index$2_MessageCreateSchema as MessageCreateSchema, type index$2_MessageRequest as MessageRequest, index$2_MessageRequestSchema as MessageRequestSchema, index$2_MessageSchema as MessageSchema, type index$2_Network as Network, index$2_NetworkSchema as NetworkSchema, type index$2_Newsletter as Newsletter, type index$2_NewsletterCampaign as NewsletterCampaign, type index$2_NewsletterCampaignRequest as NewsletterCampaignRequest, index$2_NewsletterCampaignRequestSchema as NewsletterCampaignRequestSchema, index$2_NewsletterCampaignSchema as NewsletterCampaignSchema, index$2_NewsletterSchema as NewsletterSchema, type index$2_NewsletterSubscription as NewsletterSubscription, index$2_NewsletterSubscriptionSchema as NewsletterSubscriptionSchema, type index$2_OTPErrorResponse as OTPErrorResponse, index$2_OTPErrorResponseSchema as OTPErrorResponseSchema, type index$2_OTPRequestRequest as OTPRequestRequest, index$2_OTPRequestRequestSchema as OTPRequestRequestSchema, type index$2_OTPRequestResponse as OTPRequestResponse, index$2_OTPRequestResponseSchema as OTPRequestResponseSchema, type index$2_OTPVerifyRequest as OTPVerifyRequest, index$2_OTPVerifyRequestSchema as OTPVerifyRequestSchema, type index$2_OTPVerifyResponse as OTPVerifyResponse, index$2_OTPVerifyResponseSchema as OTPVerifyResponseSchema, type index$2_PaginatedAPIKeyListList as PaginatedAPIKeyListList, index$2_PaginatedAPIKeyListListSchema as PaginatedAPIKeyListListSchema, type index$2_PaginatedAdminPaymentListList as PaginatedAdminPaymentListList, index$2_PaginatedAdminPaymentListListSchema as PaginatedAdminPaymentListListSchema, type index$2_PaginatedAdminPaymentStatsList as PaginatedAdminPaymentStatsList, index$2_PaginatedAdminPaymentStatsListSchema as PaginatedAdminPaymentStatsListSchema, type index$2_PaginatedAdminUserList as PaginatedAdminUserList, index$2_PaginatedAdminUserListSchema as PaginatedAdminUserListSchema, type index$2_PaginatedArchiveItemChunkList as PaginatedArchiveItemChunkList, index$2_PaginatedArchiveItemChunkListSchema as PaginatedArchiveItemChunkListSchema, type index$2_PaginatedArchiveItemList as PaginatedArchiveItemList, index$2_PaginatedArchiveItemListSchema as PaginatedArchiveItemListSchema, type index$2_PaginatedArchiveSearchResultList as PaginatedArchiveSearchResultList, index$2_PaginatedArchiveSearchResultListSchema as PaginatedArchiveSearchResultListSchema, type index$2_PaginatedChatResponseList as PaginatedChatResponseList, index$2_PaginatedChatResponseListSchema as PaginatedChatResponseListSchema, type index$2_PaginatedChatSessionList as PaginatedChatSessionList, index$2_PaginatedChatSessionListSchema as PaginatedChatSessionListSchema, type index$2_PaginatedCurrencyListList as PaginatedCurrencyListList, index$2_PaginatedCurrencyListListSchema as PaginatedCurrencyListListSchema, type index$2_PaginatedDocumentArchiveListList as PaginatedDocumentArchiveListList, index$2_PaginatedDocumentArchiveListListSchema as PaginatedDocumentArchiveListListSchema, type index$2_PaginatedDocumentList as PaginatedDocumentList, index$2_PaginatedDocumentListSchema as PaginatedDocumentListSchema, type index$2_PaginatedEmailLogList as PaginatedEmailLogList, index$2_PaginatedEmailLogListSchema as PaginatedEmailLogListSchema, type index$2_PaginatedEndpointGroupList as PaginatedEndpointGroupList, index$2_PaginatedEndpointGroupListSchema as PaginatedEndpointGroupListSchema, type index$2_PaginatedLeadSubmissionList as PaginatedLeadSubmissionList, index$2_PaginatedLeadSubmissionListSchema as PaginatedLeadSubmissionListSchema, type index$2_PaginatedMessageList as PaginatedMessageList, index$2_PaginatedMessageListSchema as PaginatedMessageListSchema, type index$2_PaginatedNetworkList as PaginatedNetworkList, index$2_PaginatedNetworkListSchema as PaginatedNetworkListSchema, type index$2_PaginatedNewsletterCampaignList as PaginatedNewsletterCampaignList, index$2_PaginatedNewsletterCampaignListSchema as PaginatedNewsletterCampaignListSchema, type index$2_PaginatedNewsletterList as PaginatedNewsletterList, index$2_PaginatedNewsletterListSchema as PaginatedNewsletterListSchema, type index$2_PaginatedNewsletterSubscriptionList as PaginatedNewsletterSubscriptionList, index$2_PaginatedNewsletterSubscriptionListSchema as PaginatedNewsletterSubscriptionListSchema, type index$2_PaginatedPaymentListList as PaginatedPaymentListList, index$2_PaginatedPaymentListListSchema as PaginatedPaymentListListSchema, type index$2_PaginatedProviderCurrencyList as PaginatedProviderCurrencyList, index$2_PaginatedProviderCurrencyListSchema as PaginatedProviderCurrencyListSchema, type index$2_PaginatedPublicCategoryList as PaginatedPublicCategoryList, index$2_PaginatedPublicCategoryListSchema as PaginatedPublicCategoryListSchema, type index$2_PaginatedPublicDocumentListList as PaginatedPublicDocumentListList, index$2_PaginatedPublicDocumentListListSchema as PaginatedPublicDocumentListListSchema, type index$2_PaginatedRecentPaymentList as PaginatedRecentPaymentList, index$2_PaginatedRecentPaymentListSchema as PaginatedRecentPaymentListSchema, type index$2_PaginatedRecentTransactionList as PaginatedRecentTransactionList, index$2_PaginatedRecentTransactionListSchema as PaginatedRecentTransactionListSchema, type index$2_PaginatedSubscriptionListList as PaginatedSubscriptionListList, index$2_PaginatedSubscriptionListListSchema as PaginatedSubscriptionListListSchema, type index$2_PaginatedTariffList as PaginatedTariffList, index$2_PaginatedTariffListSchema as PaginatedTariffListSchema, type index$2_PaginatedTicketList as PaginatedTicketList, index$2_PaginatedTicketListSchema as PaginatedTicketListSchema, type index$2_PaginatedTransactionList as PaginatedTransactionList, index$2_PaginatedTransactionListSchema as PaginatedTransactionListSchema, type index$2_PaginatedUserBalanceList as PaginatedUserBalanceList, index$2_PaginatedUserBalanceListSchema as PaginatedUserBalanceListSchema, type index$2_PaginatedWebhookEventListList as PaginatedWebhookEventListList, index$2_PaginatedWebhookEventListListSchema as PaginatedWebhookEventListListSchema, type index$2_PaginatedWebhookStatsList as PaginatedWebhookStatsList, index$2_PaginatedWebhookStatsListSchema as PaginatedWebhookStatsListSchema, type index$2_PatchedAPIKeyUpdateRequest as PatchedAPIKeyUpdateRequest, index$2_PatchedAPIKeyUpdateRequestSchema as PatchedAPIKeyUpdateRequestSchema, type index$2_PatchedAdminPaymentUpdateRequest as PatchedAdminPaymentUpdateRequest, index$2_PatchedAdminPaymentUpdateRequestSchema as PatchedAdminPaymentUpdateRequestSchema, type index$2_PatchedArchiveItemChunkRequest as PatchedArchiveItemChunkRequest, index$2_PatchedArchiveItemChunkRequestSchema as PatchedArchiveItemChunkRequestSchema, type index$2_PatchedArchiveItemRequest as PatchedArchiveItemRequest, index$2_PatchedArchiveItemRequestSchema as PatchedArchiveItemRequestSchema, type index$2_PatchedChatResponseRequest as PatchedChatResponseRequest, index$2_PatchedChatResponseRequestSchema as PatchedChatResponseRequestSchema, type index$2_PatchedChatSessionRequest as PatchedChatSessionRequest, index$2_PatchedChatSessionRequestSchema as PatchedChatSessionRequestSchema, type index$2_PatchedDocumentArchiveRequest as PatchedDocumentArchiveRequest, index$2_PatchedDocumentArchiveRequestSchema as PatchedDocumentArchiveRequestSchema, type index$2_PatchedDocumentRequest as PatchedDocumentRequest, index$2_PatchedDocumentRequestSchema as PatchedDocumentRequestSchema, type index$2_PatchedLeadSubmissionRequest as PatchedLeadSubmissionRequest, index$2_PatchedLeadSubmissionRequestSchema as PatchedLeadSubmissionRequestSchema, type index$2_PatchedMessageRequest as PatchedMessageRequest, index$2_PatchedMessageRequestSchema as PatchedMessageRequestSchema, type index$2_PatchedNewsletterCampaignRequest as PatchedNewsletterCampaignRequest, index$2_PatchedNewsletterCampaignRequestSchema as PatchedNewsletterCampaignRequestSchema, type index$2_PatchedPaymentRequest as PatchedPaymentRequest, index$2_PatchedPaymentRequestSchema as PatchedPaymentRequestSchema, type index$2_PatchedSubscriptionRequest as PatchedSubscriptionRequest, index$2_PatchedSubscriptionRequestSchema as PatchedSubscriptionRequestSchema, type index$2_PatchedTicketRequest as PatchedTicketRequest, index$2_PatchedTicketRequestSchema as PatchedTicketRequestSchema, type index$2_PatchedUnsubscribeRequest as PatchedUnsubscribeRequest, index$2_PatchedUnsubscribeRequestSchema as PatchedUnsubscribeRequestSchema, type index$2_PatchedUserProfileUpdateRequest as PatchedUserProfileUpdateRequest, index$2_PatchedUserProfileUpdateRequestSchema as PatchedUserProfileUpdateRequestSchema, type index$2_Payment as Payment, type index$2_PaymentAnalyticsResponse as PaymentAnalyticsResponse, index$2_PaymentAnalyticsResponseSchema as PaymentAnalyticsResponseSchema, type index$2_PaymentCreate as PaymentCreate, type index$2_PaymentCreateRequest as PaymentCreateRequest, index$2_PaymentCreateRequestSchema as PaymentCreateRequestSchema, index$2_PaymentCreateSchema as PaymentCreateSchema, type index$2_PaymentList as PaymentList, index$2_PaymentListSchema as PaymentListSchema, type index$2_PaymentOverview as PaymentOverview, index$2_PaymentOverviewSchema as PaymentOverviewSchema, type index$2_PaymentRequest as PaymentRequest, index$2_PaymentRequestSchema as PaymentRequestSchema, index$2_PaymentSchema as PaymentSchema, type index$2_PaymentsChartResponse as PaymentsChartResponse, index$2_PaymentsChartResponseSchema as PaymentsChartResponseSchema, type index$2_PaymentsDashboardOverview as PaymentsDashboardOverview, index$2_PaymentsDashboardOverviewSchema as PaymentsDashboardOverviewSchema, type index$2_PaymentsMetrics as PaymentsMetrics, index$2_PaymentsMetricsSchema as PaymentsMetricsSchema, type index$2_ProviderAnalyticsItem as ProviderAnalyticsItem, index$2_ProviderAnalyticsItemSchema as ProviderAnalyticsItemSchema, type index$2_ProviderCurrency as ProviderCurrency, index$2_ProviderCurrencySchema as ProviderCurrencySchema, type index$2_PublicCategory as PublicCategory, index$2_PublicCategorySchema as PublicCategorySchema, type index$2_PublicDocument as PublicDocument, type index$2_PublicDocumentList as PublicDocumentList, index$2_PublicDocumentListSchema as PublicDocumentListSchema, index$2_PublicDocumentSchema as PublicDocumentSchema, type index$2_QueueAction as QueueAction, type index$2_QueueActionRequest as QueueActionRequest, index$2_QueueActionRequestSchema as QueueActionRequestSchema, index$2_QueueActionSchema as QueueActionSchema, type index$2_QueueStatus as QueueStatus, index$2_QueueStatusSchema as QueueStatusSchema, type index$2_QuickHealth as QuickHealth, index$2_QuickHealthSchema as QuickHealthSchema, type index$2_RecentPayment as RecentPayment, index$2_RecentPaymentSchema as RecentPaymentSchema, type index$2_RecentTransaction as RecentTransaction, index$2_RecentTransactionSchema as RecentTransactionSchema, type index$2_SendCampaignRequest as SendCampaignRequest, index$2_SendCampaignRequestSchema as SendCampaignRequestSchema, type index$2_SendCampaignResponse as SendCampaignResponse, index$2_SendCampaignResponseSchema as SendCampaignResponseSchema, type index$2_Sender as Sender, index$2_SenderSchema as SenderSchema, type index$2_SubscribeRequest as SubscribeRequest, index$2_SubscribeRequestSchema as SubscribeRequestSchema, type index$2_SubscribeResponse as SubscribeResponse, index$2_SubscribeResponseSchema as SubscribeResponseSchema, type index$2_Subscription as Subscription, type index$2_SubscriptionCreate as SubscriptionCreate, type index$2_SubscriptionCreateRequest as SubscriptionCreateRequest, index$2_SubscriptionCreateRequestSchema as SubscriptionCreateRequestSchema, index$2_SubscriptionCreateSchema as SubscriptionCreateSchema, type index$2_SubscriptionList as SubscriptionList, index$2_SubscriptionListSchema as SubscriptionListSchema, type index$2_SubscriptionOverview as SubscriptionOverview, index$2_SubscriptionOverviewSchema as SubscriptionOverviewSchema, type index$2_SubscriptionRequest as SubscriptionRequest, index$2_SubscriptionRequestSchema as SubscriptionRequestSchema, index$2_SubscriptionSchema as SubscriptionSchema, type index$2_SuccessResponse as SuccessResponse, index$2_SuccessResponseSchema as SuccessResponseSchema, type index$2_SupportedProviders as SupportedProviders, index$2_SupportedProvidersSchema as SupportedProvidersSchema, type index$2_Tariff as Tariff, index$2_TariffSchema as TariffSchema, type index$2_TaskStatistics as TaskStatistics, index$2_TaskStatisticsSchema as TaskStatisticsSchema, type index$2_TestEmailRequest as TestEmailRequest, index$2_TestEmailRequestSchema as TestEmailRequestSchema, type index$2_Ticket as Ticket, type index$2_TicketRequest as TicketRequest, index$2_TicketRequestSchema as TicketRequestSchema, index$2_TicketSchema as TicketSchema, type index$2_TokenRefresh as TokenRefresh, type index$2_TokenRefreshRequest as TokenRefreshRequest, index$2_TokenRefreshRequestSchema as TokenRefreshRequestSchema, index$2_TokenRefreshSchema as TokenRefreshSchema, type index$2_Transaction as Transaction, index$2_TransactionSchema as TransactionSchema, type index$2_Unsubscribe as Unsubscribe, type index$2_UnsubscribeRequest as UnsubscribeRequest, index$2_UnsubscribeRequestSchema as UnsubscribeRequestSchema, index$2_UnsubscribeSchema as UnsubscribeSchema, type index$2_User as User, type index$2_UserBalance as UserBalance, index$2_UserBalanceSchema as UserBalanceSchema, type index$2_UserProfileUpdateRequest as UserProfileUpdateRequest, index$2_UserProfileUpdateRequestSchema as UserProfileUpdateRequestSchema, index$2_UserSchema as UserSchema, type index$2_VectorizationResult as VectorizationResult, index$2_VectorizationResultSchema as VectorizationResultSchema, type index$2_VectorizationStatistics as VectorizationStatistics, index$2_VectorizationStatisticsSchema as VectorizationStatisticsSchema, type index$2_WebhookEvent as WebhookEvent, type index$2_WebhookEventList as WebhookEventList, type index$2_WebhookEventListRequest as WebhookEventListRequest, index$2_WebhookEventListRequestSchema as WebhookEventListRequestSchema, index$2_WebhookEventListSchema as WebhookEventListSchema, type index$2_WebhookEventRequest as WebhookEventRequest, index$2_WebhookEventRequestSchema as WebhookEventRequestSchema, index$2_WebhookEventSchema as WebhookEventSchema, type index$2_WebhookHealth as WebhookHealth, index$2_WebhookHealthSchema as WebhookHealthSchema, type index$2_WebhookProviderStats as WebhookProviderStats, type index$2_WebhookProviderStatsRequest as WebhookProviderStatsRequest, index$2_WebhookProviderStatsRequestSchema as WebhookProviderStatsRequestSchema, index$2_WebhookProviderStatsSchema as WebhookProviderStatsSchema, type index$2_WebhookResponse as WebhookResponse, type index$2_WebhookResponseRequest as WebhookResponseRequest, index$2_WebhookResponseRequestSchema as WebhookResponseRequestSchema, index$2_WebhookResponseSchema as WebhookResponseSchema, type index$2_WebhookStats as WebhookStats, type index$2_WebhookStatsRequest as WebhookStatsRequest, index$2_WebhookStatsRequestSchema as WebhookStatsRequestSchema, index$2_WebhookStatsSchema as WebhookStatsSchema, type index$2_WorkerAction as WorkerAction, type index$2_WorkerActionRequest as WorkerActionRequest, index$2_WorkerActionRequestSchema as WorkerActionRequestSchema, index$2_WorkerActionSchema as WorkerActionSchema };
|
|
33387
|
+
export { type index$2_APIKeyCreate as APIKeyCreate, type index$2_APIKeyCreateRequest as APIKeyCreateRequest, index$2_APIKeyCreateRequestSchema as APIKeyCreateRequestSchema, index$2_APIKeyCreateSchema as APIKeyCreateSchema, type index$2_APIKeyDetail as APIKeyDetail, index$2_APIKeyDetailSchema as APIKeyDetailSchema, type index$2_APIKeyList as APIKeyList, index$2_APIKeyListSchema as APIKeyListSchema, type index$2_APIKeyUpdate as APIKeyUpdate, type index$2_APIKeyUpdateRequest as APIKeyUpdateRequest, index$2_APIKeyUpdateRequestSchema as APIKeyUpdateRequestSchema, index$2_APIKeyUpdateSchema as APIKeyUpdateSchema, type index$2_APIKeyValidationRequest as APIKeyValidationRequest, index$2_APIKeyValidationRequestSchema as APIKeyValidationRequestSchema, type index$2_APIKeyValidationResponse as APIKeyValidationResponse, index$2_APIKeyValidationResponseSchema as APIKeyValidationResponseSchema, type index$2_APIKeysOverview as APIKeysOverview, index$2_APIKeysOverviewSchema as APIKeysOverviewSchema, type index$2_APIResponse as APIResponse, type index$2_APIResponseRequest as APIResponseRequest, index$2_APIResponseRequestSchema as APIResponseRequestSchema, index$2_APIResponseSchema as APIResponseSchema, type index$2_AdminPaymentCreate as AdminPaymentCreate, type index$2_AdminPaymentCreateRequest as AdminPaymentCreateRequest, index$2_AdminPaymentCreateRequestSchema as AdminPaymentCreateRequestSchema, index$2_AdminPaymentCreateSchema as AdminPaymentCreateSchema, type index$2_AdminPaymentDetail as AdminPaymentDetail, index$2_AdminPaymentDetailSchema as AdminPaymentDetailSchema, type index$2_AdminPaymentList as AdminPaymentList, index$2_AdminPaymentListSchema as AdminPaymentListSchema, type index$2_AdminPaymentStats as AdminPaymentStats, index$2_AdminPaymentStatsSchema as AdminPaymentStatsSchema, type index$2_AdminPaymentUpdate as AdminPaymentUpdate, type index$2_AdminPaymentUpdateRequest as AdminPaymentUpdateRequest, index$2_AdminPaymentUpdateRequestSchema as AdminPaymentUpdateRequestSchema, index$2_AdminPaymentUpdateSchema as AdminPaymentUpdateSchema, type index$2_AdminUser as AdminUser, index$2_AdminUserSchema as AdminUserSchema, type index$2_ArchiveItem as ArchiveItem, type index$2_ArchiveItemChunk as ArchiveItemChunk, type index$2_ArchiveItemChunkDetail as ArchiveItemChunkDetail, index$2_ArchiveItemChunkDetailSchema as ArchiveItemChunkDetailSchema, type index$2_ArchiveItemChunkRequest as ArchiveItemChunkRequest, index$2_ArchiveItemChunkRequestSchema as ArchiveItemChunkRequestSchema, index$2_ArchiveItemChunkSchema as ArchiveItemChunkSchema, type index$2_ArchiveItemDetail as ArchiveItemDetail, index$2_ArchiveItemDetailSchema as ArchiveItemDetailSchema, type index$2_ArchiveItemRequest as ArchiveItemRequest, index$2_ArchiveItemRequestSchema as ArchiveItemRequestSchema, index$2_ArchiveItemSchema as ArchiveItemSchema, type index$2_ArchiveProcessingResult as ArchiveProcessingResult, index$2_ArchiveProcessingResultSchema as ArchiveProcessingResultSchema, type index$2_ArchiveSearchRequestRequest as ArchiveSearchRequestRequest, index$2_ArchiveSearchRequestRequestSchema as ArchiveSearchRequestRequestSchema, type index$2_ArchiveSearchResult as ArchiveSearchResult, index$2_ArchiveSearchResultSchema as ArchiveSearchResultSchema, type index$2_ArchiveStatistics as ArchiveStatistics, index$2_ArchiveStatisticsSchema as ArchiveStatisticsSchema, type index$2_BalanceOverview as BalanceOverview, index$2_BalanceOverviewSchema as BalanceOverviewSchema, type index$2_BulkEmailRequest as BulkEmailRequest, index$2_BulkEmailRequestSchema as BulkEmailRequestSchema, type index$2_BulkEmailResponse as BulkEmailResponse, index$2_BulkEmailResponseSchema as BulkEmailResponseSchema, type index$2_ChartDataPoint as ChartDataPoint, index$2_ChartDataPointSchema as ChartDataPointSchema, type index$2_ChartSeries as ChartSeries, index$2_ChartSeriesSchema as ChartSeriesSchema, type index$2_ChatHistory as ChatHistory, index$2_ChatHistorySchema as ChatHistorySchema, type index$2_ChatMessage as ChatMessage, index$2_ChatMessageSchema as ChatMessageSchema, type index$2_ChatQueryRequest as ChatQueryRequest, index$2_ChatQueryRequestSchema as ChatQueryRequestSchema, type index$2_ChatResponse as ChatResponse, type index$2_ChatResponseRequest as ChatResponseRequest, index$2_ChatResponseRequestSchema as ChatResponseRequestSchema, index$2_ChatResponseSchema as ChatResponseSchema, type index$2_ChatSession as ChatSession, type index$2_ChatSessionCreateRequest as ChatSessionCreateRequest, index$2_ChatSessionCreateRequestSchema as ChatSessionCreateRequestSchema, type index$2_ChatSessionRequest as ChatSessionRequest, index$2_ChatSessionRequestSchema as ChatSessionRequestSchema, index$2_ChatSessionSchema as ChatSessionSchema, type index$2_ChatSource as ChatSource, type index$2_ChatSourceRequest as ChatSourceRequest, index$2_ChatSourceRequestSchema as ChatSourceRequestSchema, index$2_ChatSourceSchema as ChatSourceSchema, type index$2_ChunkRevectorizationRequestRequest as ChunkRevectorizationRequestRequest, index$2_ChunkRevectorizationRequestRequestSchema as ChunkRevectorizationRequestRequestSchema, type index$2_Currency as Currency, type index$2_CurrencyAnalyticsItem as CurrencyAnalyticsItem, index$2_CurrencyAnalyticsItemSchema as CurrencyAnalyticsItemSchema, type index$2_CurrencyList as CurrencyList, index$2_CurrencyListSchema as CurrencyListSchema, type index$2_CurrencyRates as CurrencyRates, index$2_CurrencyRatesSchema as CurrencyRatesSchema, index$2_CurrencySchema as CurrencySchema, type index$2_Document as Document, type index$2_DocumentArchive as DocumentArchive, type index$2_DocumentArchiveDetail as DocumentArchiveDetail, index$2_DocumentArchiveDetailSchema as DocumentArchiveDetailSchema, type index$2_DocumentArchiveList as DocumentArchiveList, index$2_DocumentArchiveListSchema as DocumentArchiveListSchema, type index$2_DocumentArchiveRequest as DocumentArchiveRequest, index$2_DocumentArchiveRequestSchema as DocumentArchiveRequestSchema, index$2_DocumentArchiveSchema as DocumentArchiveSchema, type index$2_DocumentCategory as DocumentCategory, type index$2_DocumentCategoryRequest as DocumentCategoryRequest, index$2_DocumentCategoryRequestSchema as DocumentCategoryRequestSchema, index$2_DocumentCategorySchema as DocumentCategorySchema, type index$2_DocumentCreateRequest as DocumentCreateRequest, index$2_DocumentCreateRequestSchema as DocumentCreateRequestSchema, type index$2_DocumentProcessingStatus as DocumentProcessingStatus, index$2_DocumentProcessingStatusSchema as DocumentProcessingStatusSchema, type index$2_DocumentRequest as DocumentRequest, index$2_DocumentRequestSchema as DocumentRequestSchema, index$2_DocumentSchema as DocumentSchema, type index$2_DocumentStats as DocumentStats, index$2_DocumentStatsSchema as DocumentStatsSchema, type index$2_EmailLog as EmailLog, index$2_EmailLogSchema as EmailLogSchema, type index$2_Endpoint as Endpoint, type index$2_EndpointGroup as EndpointGroup, index$2_EndpointGroupSchema as EndpointGroupSchema, index$2_EndpointSchema as EndpointSchema, type index$2_EndpointsStatus as EndpointsStatus, index$2_EndpointsStatusSchema as EndpointsStatusSchema, type index$2_ErrorResponse as ErrorResponse, index$2_ErrorResponseSchema as ErrorResponseSchema, type index$2_HealthCheck as HealthCheck, index$2_HealthCheckSchema as HealthCheckSchema, type index$2_LeadSubmission as LeadSubmission, type index$2_LeadSubmissionError as LeadSubmissionError, index$2_LeadSubmissionErrorSchema as LeadSubmissionErrorSchema, type index$2_LeadSubmissionRequest as LeadSubmissionRequest, index$2_LeadSubmissionRequestSchema as LeadSubmissionRequestSchema, type index$2_LeadSubmissionResponse as LeadSubmissionResponse, index$2_LeadSubmissionResponseSchema as LeadSubmissionResponseSchema, index$2_LeadSubmissionSchema as LeadSubmissionSchema, type index$2_Message as Message, type index$2_MessageCreate as MessageCreate, type index$2_MessageCreateRequest as MessageCreateRequest, index$2_MessageCreateRequestSchema as MessageCreateRequestSchema, index$2_MessageCreateSchema as MessageCreateSchema, type index$2_MessageRequest as MessageRequest, index$2_MessageRequestSchema as MessageRequestSchema, index$2_MessageSchema as MessageSchema, type index$2_Network as Network, index$2_NetworkSchema as NetworkSchema, type index$2_Newsletter as Newsletter, type index$2_NewsletterCampaign as NewsletterCampaign, type index$2_NewsletterCampaignRequest as NewsletterCampaignRequest, index$2_NewsletterCampaignRequestSchema as NewsletterCampaignRequestSchema, index$2_NewsletterCampaignSchema as NewsletterCampaignSchema, index$2_NewsletterSchema as NewsletterSchema, type index$2_NewsletterSubscription as NewsletterSubscription, index$2_NewsletterSubscriptionSchema as NewsletterSubscriptionSchema, type index$2_OTPErrorResponse as OTPErrorResponse, index$2_OTPErrorResponseSchema as OTPErrorResponseSchema, type index$2_OTPRequestRequest as OTPRequestRequest, index$2_OTPRequestRequestSchema as OTPRequestRequestSchema, type index$2_OTPRequestResponse as OTPRequestResponse, index$2_OTPRequestResponseSchema as OTPRequestResponseSchema, type index$2_OTPVerifyRequest as OTPVerifyRequest, index$2_OTPVerifyRequestSchema as OTPVerifyRequestSchema, type index$2_OTPVerifyResponse as OTPVerifyResponse, index$2_OTPVerifyResponseSchema as OTPVerifyResponseSchema, type index$2_PaginatedAPIKeyListList as PaginatedAPIKeyListList, index$2_PaginatedAPIKeyListListSchema as PaginatedAPIKeyListListSchema, type index$2_PaginatedAdminPaymentListList as PaginatedAdminPaymentListList, index$2_PaginatedAdminPaymentListListSchema as PaginatedAdminPaymentListListSchema, type index$2_PaginatedAdminPaymentStatsList as PaginatedAdminPaymentStatsList, index$2_PaginatedAdminPaymentStatsListSchema as PaginatedAdminPaymentStatsListSchema, type index$2_PaginatedAdminUserList as PaginatedAdminUserList, index$2_PaginatedAdminUserListSchema as PaginatedAdminUserListSchema, type index$2_PaginatedArchiveItemChunkList as PaginatedArchiveItemChunkList, index$2_PaginatedArchiveItemChunkListSchema as PaginatedArchiveItemChunkListSchema, type index$2_PaginatedArchiveItemList as PaginatedArchiveItemList, index$2_PaginatedArchiveItemListSchema as PaginatedArchiveItemListSchema, type index$2_PaginatedArchiveSearchResultList as PaginatedArchiveSearchResultList, index$2_PaginatedArchiveSearchResultListSchema as PaginatedArchiveSearchResultListSchema, type index$2_PaginatedChatResponseList as PaginatedChatResponseList, index$2_PaginatedChatResponseListSchema as PaginatedChatResponseListSchema, type index$2_PaginatedChatSessionList as PaginatedChatSessionList, index$2_PaginatedChatSessionListSchema as PaginatedChatSessionListSchema, type index$2_PaginatedCurrencyListList as PaginatedCurrencyListList, index$2_PaginatedCurrencyListListSchema as PaginatedCurrencyListListSchema, type index$2_PaginatedDocumentArchiveListList as PaginatedDocumentArchiveListList, index$2_PaginatedDocumentArchiveListListSchema as PaginatedDocumentArchiveListListSchema, type index$2_PaginatedDocumentList as PaginatedDocumentList, index$2_PaginatedDocumentListSchema as PaginatedDocumentListSchema, type index$2_PaginatedEmailLogList as PaginatedEmailLogList, index$2_PaginatedEmailLogListSchema as PaginatedEmailLogListSchema, type index$2_PaginatedEndpointGroupList as PaginatedEndpointGroupList, index$2_PaginatedEndpointGroupListSchema as PaginatedEndpointGroupListSchema, type index$2_PaginatedLeadSubmissionList as PaginatedLeadSubmissionList, index$2_PaginatedLeadSubmissionListSchema as PaginatedLeadSubmissionListSchema, type index$2_PaginatedMessageList as PaginatedMessageList, index$2_PaginatedMessageListSchema as PaginatedMessageListSchema, type index$2_PaginatedNetworkList as PaginatedNetworkList, index$2_PaginatedNetworkListSchema as PaginatedNetworkListSchema, type index$2_PaginatedNewsletterCampaignList as PaginatedNewsletterCampaignList, index$2_PaginatedNewsletterCampaignListSchema as PaginatedNewsletterCampaignListSchema, type index$2_PaginatedNewsletterList as PaginatedNewsletterList, index$2_PaginatedNewsletterListSchema as PaginatedNewsletterListSchema, type index$2_PaginatedNewsletterSubscriptionList as PaginatedNewsletterSubscriptionList, index$2_PaginatedNewsletterSubscriptionListSchema as PaginatedNewsletterSubscriptionListSchema, type index$2_PaginatedPaymentListList as PaginatedPaymentListList, index$2_PaginatedPaymentListListSchema as PaginatedPaymentListListSchema, type index$2_PaginatedProviderCurrencyList as PaginatedProviderCurrencyList, index$2_PaginatedProviderCurrencyListSchema as PaginatedProviderCurrencyListSchema, type index$2_PaginatedPublicCategoryList as PaginatedPublicCategoryList, index$2_PaginatedPublicCategoryListSchema as PaginatedPublicCategoryListSchema, type index$2_PaginatedPublicDocumentListList as PaginatedPublicDocumentListList, index$2_PaginatedPublicDocumentListListSchema as PaginatedPublicDocumentListListSchema, type index$2_PaginatedRecentPaymentList as PaginatedRecentPaymentList, index$2_PaginatedRecentPaymentListSchema as PaginatedRecentPaymentListSchema, type index$2_PaginatedRecentTransactionList as PaginatedRecentTransactionList, index$2_PaginatedRecentTransactionListSchema as PaginatedRecentTransactionListSchema, type index$2_PaginatedSubscriptionListList as PaginatedSubscriptionListList, index$2_PaginatedSubscriptionListListSchema as PaginatedSubscriptionListListSchema, type index$2_PaginatedTariffList as PaginatedTariffList, index$2_PaginatedTariffListSchema as PaginatedTariffListSchema, type index$2_PaginatedTicketList as PaginatedTicketList, index$2_PaginatedTicketListSchema as PaginatedTicketListSchema, type index$2_PaginatedTransactionList as PaginatedTransactionList, index$2_PaginatedTransactionListSchema as PaginatedTransactionListSchema, type index$2_PaginatedUserBalanceList as PaginatedUserBalanceList, index$2_PaginatedUserBalanceListSchema as PaginatedUserBalanceListSchema, type index$2_PaginatedWebhookEventListList as PaginatedWebhookEventListList, index$2_PaginatedWebhookEventListListSchema as PaginatedWebhookEventListListSchema, type index$2_PaginatedWebhookStatsList as PaginatedWebhookStatsList, index$2_PaginatedWebhookStatsListSchema as PaginatedWebhookStatsListSchema, type index$2_PatchedAPIKeyUpdateRequest as PatchedAPIKeyUpdateRequest, index$2_PatchedAPIKeyUpdateRequestSchema as PatchedAPIKeyUpdateRequestSchema, type index$2_PatchedAdminPaymentUpdateRequest as PatchedAdminPaymentUpdateRequest, index$2_PatchedAdminPaymentUpdateRequestSchema as PatchedAdminPaymentUpdateRequestSchema, type index$2_PatchedArchiveItemChunkRequest as PatchedArchiveItemChunkRequest, index$2_PatchedArchiveItemChunkRequestSchema as PatchedArchiveItemChunkRequestSchema, type index$2_PatchedArchiveItemRequest as PatchedArchiveItemRequest, index$2_PatchedArchiveItemRequestSchema as PatchedArchiveItemRequestSchema, type index$2_PatchedChatResponseRequest as PatchedChatResponseRequest, index$2_PatchedChatResponseRequestSchema as PatchedChatResponseRequestSchema, type index$2_PatchedChatSessionRequest as PatchedChatSessionRequest, index$2_PatchedChatSessionRequestSchema as PatchedChatSessionRequestSchema, type index$2_PatchedDocumentArchiveRequest as PatchedDocumentArchiveRequest, index$2_PatchedDocumentArchiveRequestSchema as PatchedDocumentArchiveRequestSchema, type index$2_PatchedDocumentRequest as PatchedDocumentRequest, index$2_PatchedDocumentRequestSchema as PatchedDocumentRequestSchema, type index$2_PatchedLeadSubmissionRequest as PatchedLeadSubmissionRequest, index$2_PatchedLeadSubmissionRequestSchema as PatchedLeadSubmissionRequestSchema, type index$2_PatchedMessageRequest as PatchedMessageRequest, index$2_PatchedMessageRequestSchema as PatchedMessageRequestSchema, type index$2_PatchedNewsletterCampaignRequest as PatchedNewsletterCampaignRequest, index$2_PatchedNewsletterCampaignRequestSchema as PatchedNewsletterCampaignRequestSchema, type index$2_PatchedPaymentRequest as PatchedPaymentRequest, index$2_PatchedPaymentRequestSchema as PatchedPaymentRequestSchema, type index$2_PatchedSubscriptionRequest as PatchedSubscriptionRequest, index$2_PatchedSubscriptionRequestSchema as PatchedSubscriptionRequestSchema, type index$2_PatchedTicketRequest as PatchedTicketRequest, index$2_PatchedTicketRequestSchema as PatchedTicketRequestSchema, type index$2_PatchedUnsubscribeRequest as PatchedUnsubscribeRequest, index$2_PatchedUnsubscribeRequestSchema as PatchedUnsubscribeRequestSchema, type index$2_PatchedUserProfileUpdateRequest as PatchedUserProfileUpdateRequest, index$2_PatchedUserProfileUpdateRequestSchema as PatchedUserProfileUpdateRequestSchema, type index$2_Payment as Payment, type index$2_PaymentAnalyticsResponse as PaymentAnalyticsResponse, index$2_PaymentAnalyticsResponseSchema as PaymentAnalyticsResponseSchema, type index$2_PaymentCreate as PaymentCreate, type index$2_PaymentCreateRequest as PaymentCreateRequest, index$2_PaymentCreateRequestSchema as PaymentCreateRequestSchema, index$2_PaymentCreateSchema as PaymentCreateSchema, type index$2_PaymentList as PaymentList, index$2_PaymentListSchema as PaymentListSchema, type index$2_PaymentOverview as PaymentOverview, index$2_PaymentOverviewSchema as PaymentOverviewSchema, type index$2_PaymentRequest as PaymentRequest, index$2_PaymentRequestSchema as PaymentRequestSchema, index$2_PaymentSchema as PaymentSchema, type index$2_PaymentsChartResponse as PaymentsChartResponse, index$2_PaymentsChartResponseSchema as PaymentsChartResponseSchema, type index$2_PaymentsDashboardOverview as PaymentsDashboardOverview, index$2_PaymentsDashboardOverviewSchema as PaymentsDashboardOverviewSchema, type index$2_PaymentsMetrics as PaymentsMetrics, index$2_PaymentsMetricsSchema as PaymentsMetricsSchema, type index$2_ProviderAnalyticsItem as ProviderAnalyticsItem, index$2_ProviderAnalyticsItemSchema as ProviderAnalyticsItemSchema, type index$2_ProviderCurrency as ProviderCurrency, index$2_ProviderCurrencySchema as ProviderCurrencySchema, type index$2_PublicCategory as PublicCategory, index$2_PublicCategorySchema as PublicCategorySchema, type index$2_PublicDocument as PublicDocument, type index$2_PublicDocumentList as PublicDocumentList, index$2_PublicDocumentListSchema as PublicDocumentListSchema, index$2_PublicDocumentSchema as PublicDocumentSchema, type index$2_QueueAction as QueueAction, type index$2_QueueActionRequest as QueueActionRequest, index$2_QueueActionRequestSchema as QueueActionRequestSchema, index$2_QueueActionSchema as QueueActionSchema, type index$2_QueueStatus as QueueStatus, index$2_QueueStatusSchema as QueueStatusSchema, type index$2_QuickHealth as QuickHealth, index$2_QuickHealthSchema as QuickHealthSchema, type index$2_RecentPayment as RecentPayment, index$2_RecentPaymentSchema as RecentPaymentSchema, type index$2_RecentTransaction as RecentTransaction, index$2_RecentTransactionSchema as RecentTransactionSchema, type index$2_SendCampaignRequest as SendCampaignRequest, index$2_SendCampaignRequestSchema as SendCampaignRequestSchema, type index$2_SendCampaignResponse as SendCampaignResponse, index$2_SendCampaignResponseSchema as SendCampaignResponseSchema, type index$2_Sender as Sender, index$2_SenderSchema as SenderSchema, type index$2_SubscribeRequest as SubscribeRequest, index$2_SubscribeRequestSchema as SubscribeRequestSchema, type index$2_SubscribeResponse as SubscribeResponse, index$2_SubscribeResponseSchema as SubscribeResponseSchema, type index$2_Subscription as Subscription, type index$2_SubscriptionCreate as SubscriptionCreate, type index$2_SubscriptionCreateRequest as SubscriptionCreateRequest, index$2_SubscriptionCreateRequestSchema as SubscriptionCreateRequestSchema, index$2_SubscriptionCreateSchema as SubscriptionCreateSchema, type index$2_SubscriptionList as SubscriptionList, index$2_SubscriptionListSchema as SubscriptionListSchema, type index$2_SubscriptionOverview as SubscriptionOverview, index$2_SubscriptionOverviewSchema as SubscriptionOverviewSchema, type index$2_SubscriptionRequest as SubscriptionRequest, index$2_SubscriptionRequestSchema as SubscriptionRequestSchema, index$2_SubscriptionSchema as SubscriptionSchema, type index$2_SuccessResponse as SuccessResponse, index$2_SuccessResponseSchema as SuccessResponseSchema, type index$2_SupportedCurrencies as SupportedCurrencies, index$2_SupportedCurrenciesSchema as SupportedCurrenciesSchema, type index$2_SupportedProviders as SupportedProviders, index$2_SupportedProvidersSchema as SupportedProvidersSchema, type index$2_Tariff as Tariff, index$2_TariffSchema as TariffSchema, type index$2_TaskStatistics as TaskStatistics, index$2_TaskStatisticsSchema as TaskStatisticsSchema, type index$2_TestEmailRequest as TestEmailRequest, index$2_TestEmailRequestSchema as TestEmailRequestSchema, type index$2_Ticket as Ticket, type index$2_TicketRequest as TicketRequest, index$2_TicketRequestSchema as TicketRequestSchema, index$2_TicketSchema as TicketSchema, type index$2_TokenRefresh as TokenRefresh, type index$2_TokenRefreshRequest as TokenRefreshRequest, index$2_TokenRefreshRequestSchema as TokenRefreshRequestSchema, index$2_TokenRefreshSchema as TokenRefreshSchema, type index$2_Transaction as Transaction, index$2_TransactionSchema as TransactionSchema, type index$2_Unsubscribe as Unsubscribe, type index$2_UnsubscribeRequest as UnsubscribeRequest, index$2_UnsubscribeRequestSchema as UnsubscribeRequestSchema, index$2_UnsubscribeSchema as UnsubscribeSchema, type index$2_User as User, type index$2_UserBalance as UserBalance, index$2_UserBalanceSchema as UserBalanceSchema, type index$2_UserProfileUpdateRequest as UserProfileUpdateRequest, index$2_UserProfileUpdateRequestSchema as UserProfileUpdateRequestSchema, index$2_UserSchema as UserSchema, type index$2_VectorizationResult as VectorizationResult, index$2_VectorizationResultSchema as VectorizationResultSchema, type index$2_VectorizationStatistics as VectorizationStatistics, index$2_VectorizationStatisticsSchema as VectorizationStatisticsSchema, type index$2_WebhookEvent as WebhookEvent, type index$2_WebhookEventList as WebhookEventList, type index$2_WebhookEventListRequest as WebhookEventListRequest, index$2_WebhookEventListRequestSchema as WebhookEventListRequestSchema, index$2_WebhookEventListSchema as WebhookEventListSchema, type index$2_WebhookEventRequest as WebhookEventRequest, index$2_WebhookEventRequestSchema as WebhookEventRequestSchema, index$2_WebhookEventSchema as WebhookEventSchema, type index$2_WebhookHealth as WebhookHealth, index$2_WebhookHealthSchema as WebhookHealthSchema, type index$2_WebhookProviderStats as WebhookProviderStats, type index$2_WebhookProviderStatsRequest as WebhookProviderStatsRequest, index$2_WebhookProviderStatsRequestSchema as WebhookProviderStatsRequestSchema, index$2_WebhookProviderStatsSchema as WebhookProviderStatsSchema, type index$2_WebhookResponse as WebhookResponse, type index$2_WebhookResponseRequest as WebhookResponseRequest, index$2_WebhookResponseRequestSchema as WebhookResponseRequestSchema, index$2_WebhookResponseSchema as WebhookResponseSchema, type index$2_WebhookStats as WebhookStats, type index$2_WebhookStatsRequest as WebhookStatsRequest, index$2_WebhookStatsRequestSchema as WebhookStatsRequestSchema, index$2_WebhookStatsSchema as WebhookStatsSchema, type index$2_WorkerAction as WorkerAction, type index$2_WorkerActionRequest as WorkerActionRequest, index$2_WorkerActionRequestSchema as WorkerActionRequestSchema, index$2_WorkerActionSchema as WorkerActionSchema };
|
|
33345
33388
|
}
|
|
33346
33389
|
|
|
33347
33390
|
/**
|
|
@@ -35018,15 +35061,12 @@ declare function getPaymentsCurrenciesFiatRetrieve(client?: any): Promise<Curren
|
|
|
35018
35061
|
*/
|
|
35019
35062
|
declare function getPaymentsCurrenciesHealthRetrieve(client?: any): Promise<Currency>;
|
|
35020
35063
|
/**
|
|
35021
|
-
*
|
|
35064
|
+
* API operation
|
|
35022
35065
|
*
|
|
35023
35066
|
* @method GET
|
|
35024
35067
|
* @path /cfg/payments/currencies/rates/
|
|
35025
35068
|
*/
|
|
35026
|
-
declare function getPaymentsCurrenciesRatesRetrieve(
|
|
35027
|
-
base_currency: string;
|
|
35028
|
-
currencies: string;
|
|
35029
|
-
}, client?: any): Promise<Currency>;
|
|
35069
|
+
declare function getPaymentsCurrenciesRatesRetrieve(client?: any): Promise<CurrencyRates>;
|
|
35030
35070
|
/**
|
|
35031
35071
|
* API operation
|
|
35032
35072
|
*
|
|
@@ -35042,15 +35082,12 @@ declare function getPaymentsCurrenciesStableRetrieve(client?: any): Promise<Curr
|
|
|
35042
35082
|
*/
|
|
35043
35083
|
declare function getPaymentsCurrenciesStatsRetrieve(client?: any): Promise<Currency>;
|
|
35044
35084
|
/**
|
|
35045
|
-
*
|
|
35085
|
+
* API operation
|
|
35046
35086
|
*
|
|
35047
35087
|
* @method GET
|
|
35048
35088
|
* @path /cfg/payments/currencies/supported/
|
|
35049
35089
|
*/
|
|
35050
|
-
declare function getPaymentsCurrenciesSupportedRetrieve(
|
|
35051
|
-
currency_type?: string;
|
|
35052
|
-
provider?: string;
|
|
35053
|
-
}, client?: any): Promise<Currency>;
|
|
35090
|
+
declare function getPaymentsCurrenciesSupportedRetrieve(client?: any): Promise<SupportedCurrencies>;
|
|
35054
35091
|
/**
|
|
35055
35092
|
* API operation
|
|
35056
35093
|
*
|
|
@@ -38013,15 +38050,12 @@ declare function usePaymentsCurrenciesFiatRetrieve(client?: API): ReturnType<typ
|
|
|
38013
38050
|
*/
|
|
38014
38051
|
declare function usePaymentsCurrenciesHealthRetrieve(client?: API): ReturnType<typeof useSWR<Currency>>;
|
|
38015
38052
|
/**
|
|
38016
|
-
*
|
|
38053
|
+
* API operation
|
|
38017
38054
|
*
|
|
38018
38055
|
* @method GET
|
|
38019
38056
|
* @path /cfg/payments/currencies/rates/
|
|
38020
38057
|
*/
|
|
38021
|
-
declare function usePaymentsCurrenciesRatesRetrieve(
|
|
38022
|
-
base_currency: string;
|
|
38023
|
-
currencies: string;
|
|
38024
|
-
}, client?: API): ReturnType<typeof useSWR<Currency>>;
|
|
38058
|
+
declare function usePaymentsCurrenciesRatesRetrieve(client?: API): ReturnType<typeof useSWR<CurrencyRates>>;
|
|
38025
38059
|
/**
|
|
38026
38060
|
* API operation
|
|
38027
38061
|
*
|
|
@@ -38037,15 +38071,12 @@ declare function usePaymentsCurrenciesStableRetrieve(client?: API): ReturnType<t
|
|
|
38037
38071
|
*/
|
|
38038
38072
|
declare function usePaymentsCurrenciesStatsRetrieve(client?: API): ReturnType<typeof useSWR<Currency>>;
|
|
38039
38073
|
/**
|
|
38040
|
-
*
|
|
38074
|
+
* API operation
|
|
38041
38075
|
*
|
|
38042
38076
|
* @method GET
|
|
38043
38077
|
* @path /cfg/payments/currencies/supported/
|
|
38044
38078
|
*/
|
|
38045
|
-
declare function usePaymentsCurrenciesSupportedRetrieve(
|
|
38046
|
-
currency_type?: string;
|
|
38047
|
-
provider?: string;
|
|
38048
|
-
}, client?: API): ReturnType<typeof useSWR<Currency>>;
|
|
38079
|
+
declare function usePaymentsCurrenciesSupportedRetrieve(client?: API): ReturnType<typeof useSWR<SupportedCurrencies>>;
|
|
38049
38080
|
/**
|
|
38050
38081
|
* API operation
|
|
38051
38082
|
*
|
|
@@ -40539,8 +40570,6 @@ interface CurrenciesContextValue {
|
|
|
40539
40570
|
isLoadingCurrencies: boolean;
|
|
40540
40571
|
currenciesError: Error | undefined;
|
|
40541
40572
|
refreshCurrencies: () => Promise<void>;
|
|
40542
|
-
getCurrency: (id: number) => Promise<Currency | undefined>;
|
|
40543
|
-
getCurrencyRates: (baseCurrency: string, currencies: string) => Promise<Currency | undefined>;
|
|
40544
40573
|
}
|
|
40545
40574
|
declare function CurrenciesProvider({ children }: {
|
|
40546
40575
|
children: ReactNode;
|
|
@@ -40570,6 +40599,16 @@ interface OverviewContextValue {
|
|
|
40570
40599
|
chartData: PaymentsChartResponse | undefined;
|
|
40571
40600
|
recentPayments: PaginatedRecentPaymentList | undefined;
|
|
40572
40601
|
recentTransactions: PaginatedRecentTransactionList | undefined;
|
|
40602
|
+
balances: PaginatedUserBalanceList | undefined;
|
|
40603
|
+
isLoadingBalances: boolean;
|
|
40604
|
+
balancesError: Error | undefined;
|
|
40605
|
+
refreshBalances: () => Promise<void>;
|
|
40606
|
+
balanceSummary: UserBalance | undefined;
|
|
40607
|
+
isLoadingSummary: boolean;
|
|
40608
|
+
summaryError: Error | undefined;
|
|
40609
|
+
refreshSummary: () => Promise<void>;
|
|
40610
|
+
retrieveBalance: (id: number) => Promise<UserBalance | undefined>;
|
|
40611
|
+
createPayment: (data: PaymentCreateRequest) => Promise<PaymentCreate>;
|
|
40573
40612
|
isLoadingOverview: boolean;
|
|
40574
40613
|
overviewError: Error | undefined;
|
|
40575
40614
|
refreshOverview: () => Promise<void>;
|
|
@@ -40579,6 +40618,25 @@ declare function OverviewProvider({ children }: {
|
|
|
40579
40618
|
}): react_jsx_runtime.JSX.Element;
|
|
40580
40619
|
declare function useOverviewContext(): OverviewContextValue;
|
|
40581
40620
|
|
|
40621
|
+
interface RootPaymentsContextValue {
|
|
40622
|
+
currencies: PaginatedCurrencyListList | undefined;
|
|
40623
|
+
isLoadingCurrencies: boolean;
|
|
40624
|
+
currenciesError: Error | undefined;
|
|
40625
|
+
refreshCurrencies: () => Promise<void>;
|
|
40626
|
+
providerCurrencies: PaginatedProviderCurrencyList | undefined;
|
|
40627
|
+
isLoadingProviderCurrencies: boolean;
|
|
40628
|
+
providerCurrenciesError: Error | undefined;
|
|
40629
|
+
refreshProviderCurrencies: () => Promise<void>;
|
|
40630
|
+
networks: PaginatedNetworkList | undefined;
|
|
40631
|
+
isLoadingNetworks: boolean;
|
|
40632
|
+
networksError: Error | undefined;
|
|
40633
|
+
refreshNetworks: () => Promise<void>;
|
|
40634
|
+
}
|
|
40635
|
+
declare function RootPaymentsProvider({ children }: {
|
|
40636
|
+
children: ReactNode;
|
|
40637
|
+
}): react_jsx_runtime.JSX.Element;
|
|
40638
|
+
declare function useRootPaymentsContext(): RootPaymentsContextValue;
|
|
40639
|
+
|
|
40582
40640
|
interface KnowbaseChatContextValue {
|
|
40583
40641
|
chats: PaginatedChatResponseList$1 | undefined;
|
|
40584
40642
|
isLoadingChats: boolean;
|
|
@@ -40644,4 +40702,4 @@ declare function KnowbaseSessionsProvider({ children }: {
|
|
|
40644
40702
|
}): react_jsx_runtime.JSX.Element;
|
|
40645
40703
|
declare function useKnowbaseSessionsContext(): KnowbaseSessionsContextValue;
|
|
40646
40704
|
|
|
40647
|
-
export { API, APIClient, APIError, type APIKeyCreateRequest, type APIKeyDetail, type APIKeysOverview, APILogger, type APIOptions, type AccountsContextValue, AccountsProvider, type ApiKeysContextValue, ApiKeysProvider, ApiKeysService, type ArchiveProcessingResult$1 as ArchiveProcessingResult, type ArchiveStatistics$1 as ArchiveStatistics, AuthService, type BalanceOverview, type BalancesContextValue, BalancesProvider, BaseClient, BulkEmailService, CampaignsService, models$8 as CfgAccountsTypes, models$i as CfgAuthTypes, models$h as CfgBulkEmailTypes, models$g as CfgCampaignsTypes, models$7 as CfgEndpointsTypes, models$6 as CfgHealthTypes, models$5 as CfgKnowbaseTypes, models$f as CfgLeadSubmissionTypes, models$4 as CfgLeadsTypes, models$e as CfgLogsTypes, models$3 as CfgNewsletterTypes, models$d as CfgNewslettersTypes, models$2 as CfgPaymentsTypes, models$c as CfgSubscriptionsTypes, models$1 as CfgSupportTypes, models as CfgTasksTypes, models$b as CfgTestingTypes, models$a as CfgUserProfileTypes, models$9 as CfgWebhooksTypes, type ChatHistory$1 as ChatHistory, type ChatMessage$1 as ChatMessage, type ChatQueryRequest$1 as ChatQueryRequest, type ChatResponse$1 as ChatResponse, type ChatResponseRequest$1 as ChatResponseRequest, type ChatSession$1 as ChatSession, type ChatSessionCreateRequest$1 as ChatSessionCreateRequest, type ChatSessionRequest$1 as ChatSessionRequest, type ChatSource$1 as ChatSource, CookieStorageAdapter, type CurrenciesContextValue, CurrenciesProvider, type Currency, DEFAULT_RETRY_CONFIG, type Document$1 as Document, type DocumentArchive$1 as DocumentArchive, type DocumentArchiveDetail$1 as DocumentArchiveDetail, type DocumentCreateRequest$1 as DocumentCreateRequest, type DocumentProcessingStatus$1 as DocumentProcessingStatus, type DocumentRequest$1 as DocumentRequest, type DocumentStats$1 as DocumentStats, enums as Enums, type ErrorLog, type FailedAttemptInfo, FetchAdapter, index$1 as Fetchers, index as Hooks, type HttpClientAdapter, type HttpRequest, type HttpResponse, type KnowbaseChatContextValue, KnowbaseChatProvider, type KnowbaseDocumentsContextValue, KnowbaseDocumentsProvider, type KnowbaseSessionsContextValue, KnowbaseSessionsProvider, type LeadsContextValue, LeadsProvider, LeadsService, LocalStorageAdapter, type LoggerConfig, MemoryStorageAdapter, type Message, type MessageCreateRequest, type MessageRequest, NetworkError, type NewsletterContextValue, NewsletterProvider, NewsletterService, NewslettersListService, OPENAPI_SCHEMA, type OverviewContextValue, OverviewProvider, type PaginatedAPIKeyListList, type PaginatedCurrencyListList, type PaginatedPaymentListList, type PaginatedRecentPaymentList, type PaginatedRecentTransactionList, type PaginatedUserBalanceList, type PatchedChatResponseRequest$1 as PatchedChatResponseRequest, type PatchedChatSessionRequest$1 as PatchedChatSessionRequest, type PatchedDocumentArchiveRequest$1 as PatchedDocumentArchiveRequest, type PatchedDocumentRequest$1 as PatchedDocumentRequest, type PatchedMessageRequest, type PatchedTicketRequest, type PatchedUserProfileUpdateRequest, PatchedUserProfileUpdateRequestSchema, type Payment, type PaymentCreate, type PaymentCreateRequest, PaymentDashboardService, type PaymentRequest, type PaymentsChartResponse, type PaymentsContextValue, type PaymentsDashboardOverview, type PaymentsMetrics, PaymentsProvider, PaymentsService, REFRESH_TOKEN_KEY, type RequestLog, type ResponseLog, type RetryConfig, index$2 as Schemas, type StorageAdapter, type SubscriptionOverview, SubscriptionsService, type SupportContextValue, SupportProvider, SupportService, TOKEN_KEY, TasksService, type Ticket, type TicketRequest, type UserBalance, WebhooksService, api, clearAPITokens, configureAPI, createAccountsOtpRequestCreate, createAccountsOtpVerifyCreate, createAccountsProfileAvatarCreate, createAccountsTokenRefreshCreate, createKnowbaseAdminChatCreate, createKnowbaseAdminChatQueryCreate, createKnowbaseAdminDocumentsCreate, createKnowbaseAdminDocumentsReprocessCreate, createKnowbaseAdminSessionsActivateCreate, createKnowbaseAdminSessionsArchiveCreate, createKnowbaseAdminSessionsCreate, createKnowbaseSystemArchivesCreate, createKnowbaseSystemArchivesRevectorizeCreate, createKnowbaseSystemArchivesSearchCreate, createKnowbaseSystemChunksCreate, createKnowbaseSystemChunksVectorizeCreate, createKnowbaseSystemItemsCreate, createLeadsCreate, createLeadsSubmitCreate, createNewsletterBulkCreate, createNewsletterCampaignsCreate, createNewsletterCampaignsSendCreate, createNewsletterSubscribeCreate, createNewsletterTestCreate, createNewsletterUnsubscribeCreate, createPaymentsAdminApiPaymentsCancelCreate, createPaymentsAdminApiPaymentsCreate, createPaymentsAdminApiPaymentsRefreshStatusCreate, createPaymentsAdminApiPaymentsRefundCreate, createPaymentsAdminApiWebhookTestTestCreate, createPaymentsAdminApiWebhooksEventsClearAllCreate, createPaymentsAdminApiWebhooksEventsRetryCreate, createPaymentsAdminApiWebhooksEventsRetryFailedCreate, createPaymentsApiKeysCreate, createPaymentsApiKeysCreateCreate, createPaymentsApiKeysPerformActionCreate, createPaymentsApiKeysValidateCreate, createPaymentsApiKeysValidateKeyCreate, createPaymentsCurrenciesConvertCreate, createPaymentsCurrenciesCreate, createPaymentsPaymentCancelCreate, createPaymentsPaymentCheckStatusCreate, createPaymentsPaymentCreate, createPaymentsPaymentCreateCreate, createPaymentsSubscriptionsCreate, createPaymentsSubscriptionsIncrementUsageCreate, createPaymentsSubscriptionsUpdateStatusCreate, createPaymentsUsersApiKeysCreate, createPaymentsUsersApiKeysPerformActionCreate, createPaymentsUsersCancelCreate, createPaymentsUsersCheckStatusCreate, createPaymentsUsersCreate, createPaymentsUsersPaymentCancelCreate, createPaymentsUsersPaymentCheckStatusCreate, createPaymentsUsersPaymentCreate, createPaymentsUsersSubscriptionsCreate, createPaymentsUsersSubscriptionsIncrementUsageCreate, createPaymentsUsersSubscriptionsUpdateStatusCreate, createPaymentsWebhooksCreate, createSupportTicketsCreate, createSupportTicketsMessagesCreate, createTasksApiClearCreate, createTasksApiClearQueuesCreate, createTasksApiPurgeFailedCreate, createTasksApiQueuesManageCreate, createTasksApiSimulateCreate, createTasksApiWorkersManageCreate, api as default, deleteKnowbaseAdminChatDestroy, deleteKnowbaseAdminDocumentsDestroy, deleteKnowbaseAdminSessionsDestroy, deleteKnowbaseSystemArchivesDestroy, deleteKnowbaseSystemChunksDestroy, deleteKnowbaseSystemItemsDestroy, deleteLeadsDestroy, deleteNewsletterCampaignsDestroy, deletePaymentsAdminApiPaymentsDestroy, deletePaymentsApiKeysDestroy, deletePaymentsPaymentDestroy, deletePaymentsSubscriptionsDestroy, deletePaymentsUsersApiKeysDestroy, deletePaymentsUsersDestroy, deletePaymentsUsersPaymentDestroy, deletePaymentsUsersSubscriptionsDestroy, deleteSupportTicketsDestroy, deleteSupportTicketsMessagesDestroy, getAPIInstance, getAccountsProfileRetrieve, getEndpointsDrfRetrieve, getHealthDrfQuickRetrieve, getHealthDrfRetrieve, getKnowbaseAdminChatHistoryRetrieve, getKnowbaseAdminChatList, getKnowbaseAdminChatRetrieve, getKnowbaseAdminDocumentsList, getKnowbaseAdminDocumentsRetrieve, getKnowbaseAdminDocumentsStatsRetrieve, getKnowbaseAdminDocumentsStatusRetrieve, getKnowbaseAdminSessionsList, getKnowbaseAdminSessionsRetrieve, getKnowbaseCategoriesList, getKnowbaseCategoriesRetrieve, getKnowbaseDocumentsList, getKnowbaseDocumentsRetrieve, getKnowbaseSystemArchivesFileTreeRetrieve, getKnowbaseSystemArchivesItemsList, getKnowbaseSystemArchivesList, getKnowbaseSystemArchivesRetrieve, getKnowbaseSystemArchivesStatisticsRetrieve, getKnowbaseSystemArchivesVectorizationStatsRetrieve, getKnowbaseSystemChunksContextRetrieve, getKnowbaseSystemChunksList, getKnowbaseSystemChunksRetrieve, getKnowbaseSystemItemsChunksList, getKnowbaseSystemItemsContentRetrieve, getKnowbaseSystemItemsList, getKnowbaseSystemItemsRetrieve, getLeadsList, getLeadsRetrieve, getNewsletterCampaignsList, getNewsletterCampaignsRetrieve, getNewsletterLogsList, getNewsletterNewslettersList, getNewsletterNewslettersRetrieve, getNewsletterSubscriptionsList, getPaymentsAdminApiPaymentsList, getPaymentsAdminApiPaymentsRetrieve, getPaymentsAdminApiPaymentsStatsRetrieve, getPaymentsAdminApiStatsList, getPaymentsAdminApiStatsPaymentsRetrieve, getPaymentsAdminApiStatsRetrieve, getPaymentsAdminApiStatsSystemRetrieve, getPaymentsAdminApiStatsWebhooksRetrieve, getPaymentsAdminApiUsersList, getPaymentsAdminApiUsersRetrieve, getPaymentsAdminApiWebhooksEventsList, getPaymentsAdminApiWebhooksEventsRetrieve, getPaymentsAdminApiWebhooksList, getPaymentsAdminApiWebhooksRetrieve, getPaymentsAdminApiWebhooksStatsRetrieve, getPaymentsApiKeysAnalyticsRetrieve, getPaymentsApiKeysByUserRetrieve, getPaymentsApiKeysExpiringSoonRetrieve, getPaymentsApiKeysHealthRetrieve, getPaymentsApiKeysList, getPaymentsApiKeysRetrieve, getPaymentsApiKeysStatsRetrieve, getPaymentsBalancesAnalyticsRetrieve, getPaymentsBalancesHealthRetrieve, getPaymentsBalancesList, getPaymentsBalancesRetrieve, getPaymentsBalancesStatsRetrieve, getPaymentsBalancesSummaryRetrieve, getPaymentsCurrenciesCryptoRetrieve, getPaymentsCurrenciesFiatRetrieve, getPaymentsCurrenciesHealthRetrieve, getPaymentsCurrenciesList, getPaymentsCurrenciesNetworksRetrieve, getPaymentsCurrenciesProvidersRetrieve, getPaymentsCurrenciesRatesRetrieve, getPaymentsCurrenciesRetrieve, getPaymentsCurrenciesStableRetrieve, getPaymentsCurrenciesStatsRetrieve, getPaymentsCurrenciesSupportedRetrieve, getPaymentsEndpointGroupsAvailableRetrieve, getPaymentsEndpointGroupsHealthRetrieve, getPaymentsEndpointGroupsList, getPaymentsEndpointGroupsRetrieve, getPaymentsEndpointGroupsStatsRetrieve, getPaymentsHealthRetrieve, getPaymentsNetworksByCurrencyRetrieve, getPaymentsNetworksHealthRetrieve, getPaymentsNetworksList, getPaymentsNetworksRetrieve, getPaymentsNetworksStatsRetrieve, getPaymentsOverviewDashboardApiKeysOverviewRetrieve, getPaymentsOverviewDashboardBalanceOverviewRetrieve, getPaymentsOverviewDashboardChartDataRetrieve, getPaymentsOverviewDashboardMetricsRetrieve, getPaymentsOverviewDashboardOverviewRetrieve, getPaymentsOverviewDashboardPaymentAnalyticsRetrieve, getPaymentsOverviewDashboardRecentPaymentsList, getPaymentsOverviewDashboardRecentTransactionsList, getPaymentsOverviewDashboardSubscriptionOverviewRetrieve, getPaymentsPaymentAnalyticsRetrieve, getPaymentsPaymentByProviderRetrieve, getPaymentsPaymentHealthRetrieve, getPaymentsPaymentList, getPaymentsPaymentRetrieve, getPaymentsPaymentStatsRetrieve, getPaymentsPaymentStatusRetrieve, getPaymentsProviderCurrenciesByProviderRetrieve, getPaymentsProviderCurrenciesHealthRetrieve, getPaymentsProviderCurrenciesLimitsRetrieve, getPaymentsProviderCurrenciesList, getPaymentsProviderCurrenciesRetrieve, getPaymentsProviderCurrenciesStatsRetrieve, getPaymentsSubscriptionsAnalyticsRetrieve, getPaymentsSubscriptionsByStatusRetrieve, getPaymentsSubscriptionsByTierRetrieve, getPaymentsSubscriptionsHealthRetrieve, getPaymentsSubscriptionsList, getPaymentsSubscriptionsRetrieve, getPaymentsSubscriptionsStatsRetrieve, getPaymentsTariffsEndpointGroupsRetrieve, getPaymentsTariffsFreeRetrieve, getPaymentsTariffsHealthRetrieve, getPaymentsTariffsList, getPaymentsTariffsPaidRetrieve, getPaymentsTariffsRetrieve, getPaymentsTariffsStatsRetrieve, getPaymentsTransactionsByTypeRetrieve, getPaymentsTransactionsHealthRetrieve, getPaymentsTransactionsList, getPaymentsTransactionsRecentRetrieve, getPaymentsTransactionsRetrieve, getPaymentsTransactionsStatsRetrieve, getPaymentsUsersApiKeysActiveRetrieve, getPaymentsUsersApiKeysHealthRetrieve, getPaymentsUsersApiKeysList, getPaymentsUsersApiKeysRetrieve, getPaymentsUsersApiKeysStatsRetrieve, getPaymentsUsersApiKeysSummaryRetrieve, getPaymentsUsersHealthRetrieve, getPaymentsUsersList, getPaymentsUsersPaymentHealthRetrieve, getPaymentsUsersPaymentList, getPaymentsUsersPaymentRetrieve, getPaymentsUsersPaymentStatsRetrieve, getPaymentsUsersPaymentSummaryRetrieve, getPaymentsUsersRetrieve, getPaymentsUsersStatsRetrieve, getPaymentsUsersSubscriptionsActiveRetrieve, getPaymentsUsersSubscriptionsHealthRetrieve, getPaymentsUsersSubscriptionsList, getPaymentsUsersSubscriptionsRetrieve, getPaymentsUsersSubscriptionsStatsRetrieve, getPaymentsUsersSubscriptionsSummaryRetrieve, getPaymentsUsersSummaryRetrieve, getPaymentsWebhooksHealthRetrieve, getPaymentsWebhooksProvidersRetrieve, getPaymentsWebhooksRetrieve, getPaymentsWebhooksStatsRetrieve, getSupportTicketsList, getSupportTicketsMessagesList, getSupportTicketsMessagesRetrieve, getSupportTicketsRetrieve, getTasksApiQueuesStatusRetrieve, getTasksApiTasksListRetrieve, getTasksApiTasksStatsRetrieve, getTasksApiWorkersListRetrieve, isAPIConfigured, partialUpdateAccountsProfilePartialPartialUpdate, partialUpdateAccountsProfilePartialUpdate, partialUpdateAccountsProfileUpdatePartialUpdate, partialUpdateKnowbaseAdminChatPartialUpdate, partialUpdateKnowbaseAdminDocumentsPartialUpdate, partialUpdateKnowbaseAdminSessionsPartialUpdate, partialUpdateKnowbaseSystemArchivesPartialUpdate, partialUpdateKnowbaseSystemChunksPartialUpdate, partialUpdateKnowbaseSystemItemsPartialUpdate, partialUpdateLeadsPartialUpdate, partialUpdateNewsletterCampaignsPartialUpdate, partialUpdateNewsletterUnsubscribePartialUpdate, partialUpdatePaymentsAdminApiPaymentsPartialUpdate, partialUpdatePaymentsApiKeysPartialUpdate, partialUpdatePaymentsPaymentPartialUpdate, partialUpdatePaymentsSubscriptionsPartialUpdate, partialUpdatePaymentsUsersApiKeysPartialUpdate, partialUpdatePaymentsUsersPartialUpdate, partialUpdatePaymentsUsersPaymentPartialUpdate, partialUpdatePaymentsUsersSubscriptionsPartialUpdate, partialUpdateSupportTicketsMessagesPartialUpdate, partialUpdateSupportTicketsPartialUpdate, reconfigureAPI, resetAPI, shouldRetry, updateAccountsProfileUpdateUpdate, updateKnowbaseAdminChatUpdate, updateKnowbaseAdminDocumentsUpdate, updateKnowbaseAdminSessionsUpdate, updateKnowbaseSystemArchivesUpdate, updateKnowbaseSystemChunksUpdate, updateKnowbaseSystemItemsUpdate, updateLeadsUpdate, updateNewsletterCampaignsUpdate, updateNewsletterUnsubscribeUpdate, updatePaymentsAdminApiPaymentsUpdate, updatePaymentsApiKeysUpdate, updatePaymentsPaymentUpdate, updatePaymentsSubscriptionsUpdate, updatePaymentsUsersApiKeysUpdate, updatePaymentsUsersPaymentUpdate, updatePaymentsUsersSubscriptionsUpdate, updatePaymentsUsersUpdate, updateSupportTicketsMessagesUpdate, updateSupportTicketsUpdate, useAccountsContext, useApiKeysContext, useBalancesContext, useCurrenciesContext, useKnowbaseChatContext, useKnowbaseDocumentsContext, useKnowbaseSessionsContext, useLeadsContext, useNewsletterContext, useOverviewContext, usePaymentsContext, useSupportContext, withRetry };
|
|
40705
|
+
export { API, APIClient, APIError, type APIKeyCreate, type APIKeyCreateRequest, type APIKeyDetail, type APIKeyList, type APIKeysOverview, APILogger, type APIOptions, type AccountsContextValue, AccountsProvider, type ApiKeysContextValue, ApiKeysProvider, ApiKeysService, type ArchiveProcessingResult$1 as ArchiveProcessingResult, type ArchiveStatistics$1 as ArchiveStatistics, AuthService, type BalanceOverview, type BalancesContextValue, BalancesProvider, BaseClient, BulkEmailService, CampaignsService, models$8 as CfgAccountsTypes, models$i as CfgAuthTypes, models$h as CfgBulkEmailTypes, models$g as CfgCampaignsTypes, models$7 as CfgEndpointsTypes, models$6 as CfgHealthTypes, models$5 as CfgKnowbaseTypes, models$f as CfgLeadSubmissionTypes, models$4 as CfgLeadsTypes, models$e as CfgLogsTypes, models$3 as CfgNewsletterTypes, models$d as CfgNewslettersTypes, models$2 as CfgPaymentsTypes, models$c as CfgSubscriptionsTypes, models$1 as CfgSupportTypes, models as CfgTasksTypes, models$b as CfgTestingTypes, models$a as CfgUserProfileTypes, models$9 as CfgWebhooksTypes, type ChatHistory$1 as ChatHistory, type ChatMessage$1 as ChatMessage, type ChatQueryRequest$1 as ChatQueryRequest, type ChatResponse$1 as ChatResponse, type ChatResponseRequest$1 as ChatResponseRequest, type ChatSession$1 as ChatSession, type ChatSessionCreateRequest$1 as ChatSessionCreateRequest, type ChatSessionRequest$1 as ChatSessionRequest, type ChatSource$1 as ChatSource, CookieStorageAdapter, type CurrenciesContextValue, CurrenciesProvider, type Currency, DEFAULT_RETRY_CONFIG, type Document$1 as Document, type DocumentArchive$1 as DocumentArchive, type DocumentArchiveDetail$1 as DocumentArchiveDetail, type DocumentCreateRequest$1 as DocumentCreateRequest, type DocumentProcessingStatus$1 as DocumentProcessingStatus, type DocumentRequest$1 as DocumentRequest, type DocumentStats$1 as DocumentStats, enums as Enums, type ErrorLog, type FailedAttemptInfo, FetchAdapter, index$1 as Fetchers, index as Hooks, type HttpClientAdapter, type HttpRequest, type HttpResponse, type KnowbaseChatContextValue, KnowbaseChatProvider, type KnowbaseDocumentsContextValue, KnowbaseDocumentsProvider, type KnowbaseSessionsContextValue, KnowbaseSessionsProvider, type LeadsContextValue, LeadsProvider, LeadsService, LocalStorageAdapter, type LoggerConfig, MemoryStorageAdapter, type Message, type MessageCreateRequest, type MessageRequest, type Network, NetworkError, type NewsletterContextValue, NewsletterProvider, NewsletterService, NewslettersListService, OPENAPI_SCHEMA, type OTPRequestResponse, type OTPVerifyResponse, type OverviewContextValue, OverviewProvider, type PaginatedAPIKeyListList, type PaginatedCurrencyListList, type PaginatedNetworkList, type PaginatedPaymentListList, type PaginatedProviderCurrencyList, type PaginatedRecentPaymentList, type PaginatedRecentTransactionList, type PaginatedUserBalanceList, type PatchedChatResponseRequest$1 as PatchedChatResponseRequest, type PatchedChatSessionRequest$1 as PatchedChatSessionRequest, type PatchedDocumentArchiveRequest$1 as PatchedDocumentArchiveRequest, type PatchedDocumentRequest$1 as PatchedDocumentRequest, type PatchedMessageRequest, type PatchedTicketRequest, type PatchedUserProfileUpdateRequest, PatchedUserProfileUpdateRequestSchema, type Payment, type PaymentCreate, type PaymentCreateRequest, PaymentDashboardService, type PaymentRequest, type PaymentsChartResponse, type PaymentsContextValue, type PaymentsDashboardOverview, type PaymentsMetrics, PaymentsProvider, PaymentsService, type ProviderCurrency, REFRESH_TOKEN_KEY, type RequestLog, type ResponseLog, type RetryConfig, type RootPaymentsContextValue, RootPaymentsProvider, index$2 as Schemas, type StorageAdapter, type SubscriptionOverview, SubscriptionsService, type SupportContextValue, SupportProvider, SupportService, TOKEN_KEY, TasksService, type Ticket, type TicketRequest, type User, type UserBalance, WebhooksService, api, clearAPITokens, configureAPI, createAccountsOtpRequestCreate, createAccountsOtpVerifyCreate, createAccountsProfileAvatarCreate, createAccountsTokenRefreshCreate, createKnowbaseAdminChatCreate, createKnowbaseAdminChatQueryCreate, createKnowbaseAdminDocumentsCreate, createKnowbaseAdminDocumentsReprocessCreate, createKnowbaseAdminSessionsActivateCreate, createKnowbaseAdminSessionsArchiveCreate, createKnowbaseAdminSessionsCreate, createKnowbaseSystemArchivesCreate, createKnowbaseSystemArchivesRevectorizeCreate, createKnowbaseSystemArchivesSearchCreate, createKnowbaseSystemChunksCreate, createKnowbaseSystemChunksVectorizeCreate, createKnowbaseSystemItemsCreate, createLeadsCreate, createLeadsSubmitCreate, createNewsletterBulkCreate, createNewsletterCampaignsCreate, createNewsletterCampaignsSendCreate, createNewsletterSubscribeCreate, createNewsletterTestCreate, createNewsletterUnsubscribeCreate, createPaymentsAdminApiPaymentsCancelCreate, createPaymentsAdminApiPaymentsCreate, createPaymentsAdminApiPaymentsRefreshStatusCreate, createPaymentsAdminApiPaymentsRefundCreate, createPaymentsAdminApiWebhookTestTestCreate, createPaymentsAdminApiWebhooksEventsClearAllCreate, createPaymentsAdminApiWebhooksEventsRetryCreate, createPaymentsAdminApiWebhooksEventsRetryFailedCreate, createPaymentsApiKeysCreate, createPaymentsApiKeysCreateCreate, createPaymentsApiKeysPerformActionCreate, createPaymentsApiKeysValidateCreate, createPaymentsApiKeysValidateKeyCreate, createPaymentsCurrenciesConvertCreate, createPaymentsCurrenciesCreate, createPaymentsPaymentCancelCreate, createPaymentsPaymentCheckStatusCreate, createPaymentsPaymentCreate, createPaymentsPaymentCreateCreate, createPaymentsSubscriptionsCreate, createPaymentsSubscriptionsIncrementUsageCreate, createPaymentsSubscriptionsUpdateStatusCreate, createPaymentsUsersApiKeysCreate, createPaymentsUsersApiKeysPerformActionCreate, createPaymentsUsersCancelCreate, createPaymentsUsersCheckStatusCreate, createPaymentsUsersCreate, createPaymentsUsersPaymentCancelCreate, createPaymentsUsersPaymentCheckStatusCreate, createPaymentsUsersPaymentCreate, createPaymentsUsersSubscriptionsCreate, createPaymentsUsersSubscriptionsIncrementUsageCreate, createPaymentsUsersSubscriptionsUpdateStatusCreate, createPaymentsWebhooksCreate, createSupportTicketsCreate, createSupportTicketsMessagesCreate, createTasksApiClearCreate, createTasksApiClearQueuesCreate, createTasksApiPurgeFailedCreate, createTasksApiQueuesManageCreate, createTasksApiSimulateCreate, createTasksApiWorkersManageCreate, api as default, deleteKnowbaseAdminChatDestroy, deleteKnowbaseAdminDocumentsDestroy, deleteKnowbaseAdminSessionsDestroy, deleteKnowbaseSystemArchivesDestroy, deleteKnowbaseSystemChunksDestroy, deleteKnowbaseSystemItemsDestroy, deleteLeadsDestroy, deleteNewsletterCampaignsDestroy, deletePaymentsAdminApiPaymentsDestroy, deletePaymentsApiKeysDestroy, deletePaymentsPaymentDestroy, deletePaymentsSubscriptionsDestroy, deletePaymentsUsersApiKeysDestroy, deletePaymentsUsersDestroy, deletePaymentsUsersPaymentDestroy, deletePaymentsUsersSubscriptionsDestroy, deleteSupportTicketsDestroy, deleteSupportTicketsMessagesDestroy, getAPIInstance, getAccountsProfileRetrieve, getEndpointsDrfRetrieve, getHealthDrfQuickRetrieve, getHealthDrfRetrieve, getKnowbaseAdminChatHistoryRetrieve, getKnowbaseAdminChatList, getKnowbaseAdminChatRetrieve, getKnowbaseAdminDocumentsList, getKnowbaseAdminDocumentsRetrieve, getKnowbaseAdminDocumentsStatsRetrieve, getKnowbaseAdminDocumentsStatusRetrieve, getKnowbaseAdminSessionsList, getKnowbaseAdminSessionsRetrieve, getKnowbaseCategoriesList, getKnowbaseCategoriesRetrieve, getKnowbaseDocumentsList, getKnowbaseDocumentsRetrieve, getKnowbaseSystemArchivesFileTreeRetrieve, getKnowbaseSystemArchivesItemsList, getKnowbaseSystemArchivesList, getKnowbaseSystemArchivesRetrieve, getKnowbaseSystemArchivesStatisticsRetrieve, getKnowbaseSystemArchivesVectorizationStatsRetrieve, getKnowbaseSystemChunksContextRetrieve, getKnowbaseSystemChunksList, getKnowbaseSystemChunksRetrieve, getKnowbaseSystemItemsChunksList, getKnowbaseSystemItemsContentRetrieve, getKnowbaseSystemItemsList, getKnowbaseSystemItemsRetrieve, getLeadsList, getLeadsRetrieve, getNewsletterCampaignsList, getNewsletterCampaignsRetrieve, getNewsletterLogsList, getNewsletterNewslettersList, getNewsletterNewslettersRetrieve, getNewsletterSubscriptionsList, getPaymentsAdminApiPaymentsList, getPaymentsAdminApiPaymentsRetrieve, getPaymentsAdminApiPaymentsStatsRetrieve, getPaymentsAdminApiStatsList, getPaymentsAdminApiStatsPaymentsRetrieve, getPaymentsAdminApiStatsRetrieve, getPaymentsAdminApiStatsSystemRetrieve, getPaymentsAdminApiStatsWebhooksRetrieve, getPaymentsAdminApiUsersList, getPaymentsAdminApiUsersRetrieve, getPaymentsAdminApiWebhooksEventsList, getPaymentsAdminApiWebhooksEventsRetrieve, getPaymentsAdminApiWebhooksList, getPaymentsAdminApiWebhooksRetrieve, getPaymentsAdminApiWebhooksStatsRetrieve, getPaymentsApiKeysAnalyticsRetrieve, getPaymentsApiKeysByUserRetrieve, getPaymentsApiKeysExpiringSoonRetrieve, getPaymentsApiKeysHealthRetrieve, getPaymentsApiKeysList, getPaymentsApiKeysRetrieve, getPaymentsApiKeysStatsRetrieve, getPaymentsBalancesAnalyticsRetrieve, getPaymentsBalancesHealthRetrieve, getPaymentsBalancesList, getPaymentsBalancesRetrieve, getPaymentsBalancesStatsRetrieve, getPaymentsBalancesSummaryRetrieve, getPaymentsCurrenciesCryptoRetrieve, getPaymentsCurrenciesFiatRetrieve, getPaymentsCurrenciesHealthRetrieve, getPaymentsCurrenciesList, getPaymentsCurrenciesNetworksRetrieve, getPaymentsCurrenciesProvidersRetrieve, getPaymentsCurrenciesRatesRetrieve, getPaymentsCurrenciesRetrieve, getPaymentsCurrenciesStableRetrieve, getPaymentsCurrenciesStatsRetrieve, getPaymentsCurrenciesSupportedRetrieve, getPaymentsEndpointGroupsAvailableRetrieve, getPaymentsEndpointGroupsHealthRetrieve, getPaymentsEndpointGroupsList, getPaymentsEndpointGroupsRetrieve, getPaymentsEndpointGroupsStatsRetrieve, getPaymentsHealthRetrieve, getPaymentsNetworksByCurrencyRetrieve, getPaymentsNetworksHealthRetrieve, getPaymentsNetworksList, getPaymentsNetworksRetrieve, getPaymentsNetworksStatsRetrieve, getPaymentsOverviewDashboardApiKeysOverviewRetrieve, getPaymentsOverviewDashboardBalanceOverviewRetrieve, getPaymentsOverviewDashboardChartDataRetrieve, getPaymentsOverviewDashboardMetricsRetrieve, getPaymentsOverviewDashboardOverviewRetrieve, getPaymentsOverviewDashboardPaymentAnalyticsRetrieve, getPaymentsOverviewDashboardRecentPaymentsList, getPaymentsOverviewDashboardRecentTransactionsList, getPaymentsOverviewDashboardSubscriptionOverviewRetrieve, getPaymentsPaymentAnalyticsRetrieve, getPaymentsPaymentByProviderRetrieve, getPaymentsPaymentHealthRetrieve, getPaymentsPaymentList, getPaymentsPaymentRetrieve, getPaymentsPaymentStatsRetrieve, getPaymentsPaymentStatusRetrieve, getPaymentsProviderCurrenciesByProviderRetrieve, getPaymentsProviderCurrenciesHealthRetrieve, getPaymentsProviderCurrenciesLimitsRetrieve, getPaymentsProviderCurrenciesList, getPaymentsProviderCurrenciesRetrieve, getPaymentsProviderCurrenciesStatsRetrieve, getPaymentsSubscriptionsAnalyticsRetrieve, getPaymentsSubscriptionsByStatusRetrieve, getPaymentsSubscriptionsByTierRetrieve, getPaymentsSubscriptionsHealthRetrieve, getPaymentsSubscriptionsList, getPaymentsSubscriptionsRetrieve, getPaymentsSubscriptionsStatsRetrieve, getPaymentsTariffsEndpointGroupsRetrieve, getPaymentsTariffsFreeRetrieve, getPaymentsTariffsHealthRetrieve, getPaymentsTariffsList, getPaymentsTariffsPaidRetrieve, getPaymentsTariffsRetrieve, getPaymentsTariffsStatsRetrieve, getPaymentsTransactionsByTypeRetrieve, getPaymentsTransactionsHealthRetrieve, getPaymentsTransactionsList, getPaymentsTransactionsRecentRetrieve, getPaymentsTransactionsRetrieve, getPaymentsTransactionsStatsRetrieve, getPaymentsUsersApiKeysActiveRetrieve, getPaymentsUsersApiKeysHealthRetrieve, getPaymentsUsersApiKeysList, getPaymentsUsersApiKeysRetrieve, getPaymentsUsersApiKeysStatsRetrieve, getPaymentsUsersApiKeysSummaryRetrieve, getPaymentsUsersHealthRetrieve, getPaymentsUsersList, getPaymentsUsersPaymentHealthRetrieve, getPaymentsUsersPaymentList, getPaymentsUsersPaymentRetrieve, getPaymentsUsersPaymentStatsRetrieve, getPaymentsUsersPaymentSummaryRetrieve, getPaymentsUsersRetrieve, getPaymentsUsersStatsRetrieve, getPaymentsUsersSubscriptionsActiveRetrieve, getPaymentsUsersSubscriptionsHealthRetrieve, getPaymentsUsersSubscriptionsList, getPaymentsUsersSubscriptionsRetrieve, getPaymentsUsersSubscriptionsStatsRetrieve, getPaymentsUsersSubscriptionsSummaryRetrieve, getPaymentsUsersSummaryRetrieve, getPaymentsWebhooksHealthRetrieve, getPaymentsWebhooksProvidersRetrieve, getPaymentsWebhooksRetrieve, getPaymentsWebhooksStatsRetrieve, getSupportTicketsList, getSupportTicketsMessagesList, getSupportTicketsMessagesRetrieve, getSupportTicketsRetrieve, getTasksApiQueuesStatusRetrieve, getTasksApiTasksListRetrieve, getTasksApiTasksStatsRetrieve, getTasksApiWorkersListRetrieve, isAPIConfigured, partialUpdateAccountsProfilePartialPartialUpdate, partialUpdateAccountsProfilePartialUpdate, partialUpdateAccountsProfileUpdatePartialUpdate, partialUpdateKnowbaseAdminChatPartialUpdate, partialUpdateKnowbaseAdminDocumentsPartialUpdate, partialUpdateKnowbaseAdminSessionsPartialUpdate, partialUpdateKnowbaseSystemArchivesPartialUpdate, partialUpdateKnowbaseSystemChunksPartialUpdate, partialUpdateKnowbaseSystemItemsPartialUpdate, partialUpdateLeadsPartialUpdate, partialUpdateNewsletterCampaignsPartialUpdate, partialUpdateNewsletterUnsubscribePartialUpdate, partialUpdatePaymentsAdminApiPaymentsPartialUpdate, partialUpdatePaymentsApiKeysPartialUpdate, partialUpdatePaymentsPaymentPartialUpdate, partialUpdatePaymentsSubscriptionsPartialUpdate, partialUpdatePaymentsUsersApiKeysPartialUpdate, partialUpdatePaymentsUsersPartialUpdate, partialUpdatePaymentsUsersPaymentPartialUpdate, partialUpdatePaymentsUsersSubscriptionsPartialUpdate, partialUpdateSupportTicketsMessagesPartialUpdate, partialUpdateSupportTicketsPartialUpdate, reconfigureAPI, resetAPI, shouldRetry, updateAccountsProfileUpdateUpdate, updateKnowbaseAdminChatUpdate, updateKnowbaseAdminDocumentsUpdate, updateKnowbaseAdminSessionsUpdate, updateKnowbaseSystemArchivesUpdate, updateKnowbaseSystemChunksUpdate, updateKnowbaseSystemItemsUpdate, updateLeadsUpdate, updateNewsletterCampaignsUpdate, updateNewsletterUnsubscribeUpdate, updatePaymentsAdminApiPaymentsUpdate, updatePaymentsApiKeysUpdate, updatePaymentsPaymentUpdate, updatePaymentsSubscriptionsUpdate, updatePaymentsUsersApiKeysUpdate, updatePaymentsUsersPaymentUpdate, updatePaymentsUsersSubscriptionsUpdate, updatePaymentsUsersUpdate, updateSupportTicketsMessagesUpdate, updateSupportTicketsUpdate, useAccountsContext, useApiKeysContext, useBalancesContext, useCurrenciesContext, useKnowbaseChatContext, useKnowbaseDocumentsContext, useKnowbaseSessionsContext, useLeadsContext, useNewsletterContext, useOverviewContext, usePaymentsContext, useRootPaymentsContext, useSupportContext, withRetry };
|