@djangocfg/api 1.0.2 → 1.0.3
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 +1572 -2035
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +299 -144
- package/dist/index.d.ts +299 -144
- package/dist/index.mjs +1570 -1744
- 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/Payment.schema.ts +1 -0
- package/src/cfg/generated/_utils/schemas/PaymentCreate.schema.ts +0 -1
- package/src/cfg/generated/_utils/schemas/PaymentCreateRequest.schema.ts +0 -1
- 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 +46 -12
- package/src/cfg/generated/enums.ts +34 -22
- package/src/cfg/generated/index.ts +2 -3
- package/src/cfg/generated/schema.ts +90 -74
- package/src/index.ts +20 -1
package/dist/index.d.ts
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
|
|
@@ -590,13 +597,6 @@ declare enum PaymentCreateCurrencyCode {
|
|
|
590
597
|
ADA = "ADA",
|
|
591
598
|
DOT = "DOT"
|
|
592
599
|
}
|
|
593
|
-
/**
|
|
594
|
-
* Payment provider
|
|
595
|
-
* * `nowpayments` - NowPayments
|
|
596
|
-
*/
|
|
597
|
-
declare enum PaymentCreateProvider {
|
|
598
|
-
NOWPAYMENTS = "nowpayments"
|
|
599
|
-
}
|
|
600
600
|
/**
|
|
601
601
|
* Cryptocurrency to receive
|
|
602
602
|
* * `BTC` - Bitcoin
|
|
@@ -618,13 +618,6 @@ declare enum PaymentCreateRequestCurrencyCode {
|
|
|
618
618
|
ADA = "ADA",
|
|
619
619
|
DOT = "DOT"
|
|
620
620
|
}
|
|
621
|
-
/**
|
|
622
|
-
* Payment provider
|
|
623
|
-
* * `nowpayments` - NowPayments
|
|
624
|
-
*/
|
|
625
|
-
declare enum PaymentCreateRequestProvider {
|
|
626
|
-
NOWPAYMENTS = "nowpayments"
|
|
627
|
-
}
|
|
628
621
|
/**
|
|
629
622
|
* Payment provider
|
|
630
623
|
* * `nowpayments` - NowPayments
|
|
@@ -782,6 +775,24 @@ declare enum SubscriptionRequestTier {
|
|
|
782
775
|
PRO = "pro",
|
|
783
776
|
ENTERPRISE = "enterprise"
|
|
784
777
|
}
|
|
778
|
+
/**
|
|
779
|
+
* Provider to get supported currencies from
|
|
780
|
+
* * `nowpayments` - NowPayments
|
|
781
|
+
*/
|
|
782
|
+
declare enum SupportedCurrenciesProvider {
|
|
783
|
+
NOWPAYMENTS = "nowpayments"
|
|
784
|
+
}
|
|
785
|
+
/**
|
|
786
|
+
* Filter by currency type
|
|
787
|
+
* * `all` - All
|
|
788
|
+
* * `crypto` - Cryptocurrency
|
|
789
|
+
* * `fiat` - Fiat Currency
|
|
790
|
+
*/
|
|
791
|
+
declare enum SupportedCurrenciesCurrencyType {
|
|
792
|
+
ALL = "all",
|
|
793
|
+
CRYPTO = "crypto",
|
|
794
|
+
FIAT = "fiat"
|
|
795
|
+
}
|
|
785
796
|
/**
|
|
786
797
|
* * `open` - Open
|
|
787
798
|
* * `waiting_for_user` - Waiting for User
|
|
@@ -900,6 +911,8 @@ type enums_CurrencyCurrencyType = CurrencyCurrencyType;
|
|
|
900
911
|
declare const enums_CurrencyCurrencyType: typeof CurrencyCurrencyType;
|
|
901
912
|
type enums_CurrencyListCurrencyType = CurrencyListCurrencyType;
|
|
902
913
|
declare const enums_CurrencyListCurrencyType: typeof CurrencyListCurrencyType;
|
|
914
|
+
type enums_CurrencyRatesProvider = CurrencyRatesProvider;
|
|
915
|
+
declare const enums_CurrencyRatesProvider: typeof CurrencyRatesProvider;
|
|
903
916
|
type enums_DocumentArchiveArchiveType = DocumentArchiveArchiveType;
|
|
904
917
|
declare const enums_DocumentArchiveArchiveType: typeof DocumentArchiveArchiveType;
|
|
905
918
|
type enums_DocumentArchiveDetailArchiveType = DocumentArchiveDetailArchiveType;
|
|
@@ -942,12 +955,8 @@ type enums_PatchedTicketRequestStatus = PatchedTicketRequestStatus;
|
|
|
942
955
|
declare const enums_PatchedTicketRequestStatus: typeof PatchedTicketRequestStatus;
|
|
943
956
|
type enums_PaymentCreateCurrencyCode = PaymentCreateCurrencyCode;
|
|
944
957
|
declare const enums_PaymentCreateCurrencyCode: typeof PaymentCreateCurrencyCode;
|
|
945
|
-
type enums_PaymentCreateProvider = PaymentCreateProvider;
|
|
946
|
-
declare const enums_PaymentCreateProvider: typeof PaymentCreateProvider;
|
|
947
958
|
type enums_PaymentCreateRequestCurrencyCode = PaymentCreateRequestCurrencyCode;
|
|
948
959
|
declare const enums_PaymentCreateRequestCurrencyCode: typeof PaymentCreateRequestCurrencyCode;
|
|
949
|
-
type enums_PaymentCreateRequestProvider = PaymentCreateRequestProvider;
|
|
950
|
-
declare const enums_PaymentCreateRequestProvider: typeof PaymentCreateRequestProvider;
|
|
951
960
|
type enums_PaymentListProvider = PaymentListProvider;
|
|
952
961
|
declare const enums_PaymentListProvider: typeof PaymentListProvider;
|
|
953
962
|
type enums_PaymentListStatus = PaymentListStatus;
|
|
@@ -974,6 +983,10 @@ type enums_SubscriptionStatus = SubscriptionStatus;
|
|
|
974
983
|
declare const enums_SubscriptionStatus: typeof SubscriptionStatus;
|
|
975
984
|
type enums_SubscriptionTier = SubscriptionTier;
|
|
976
985
|
declare const enums_SubscriptionTier: typeof SubscriptionTier;
|
|
986
|
+
type enums_SupportedCurrenciesCurrencyType = SupportedCurrenciesCurrencyType;
|
|
987
|
+
declare const enums_SupportedCurrenciesCurrencyType: typeof SupportedCurrenciesCurrencyType;
|
|
988
|
+
type enums_SupportedCurrenciesProvider = SupportedCurrenciesProvider;
|
|
989
|
+
declare const enums_SupportedCurrenciesProvider: typeof SupportedCurrenciesProvider;
|
|
977
990
|
type enums_TicketRequestStatus = TicketRequestStatus;
|
|
978
991
|
declare const enums_TicketRequestStatus: typeof TicketRequestStatus;
|
|
979
992
|
type enums_TicketStatus = TicketStatus;
|
|
@@ -989,7 +1002,7 @@ declare const enums_WorkerActionAction: typeof WorkerActionAction;
|
|
|
989
1002
|
type enums_WorkerActionRequestAction = WorkerActionRequestAction;
|
|
990
1003
|
declare const enums_WorkerActionRequestAction: typeof WorkerActionRequestAction;
|
|
991
1004
|
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, enums_PaymentCreateCurrencyCode as PaymentCreateCurrencyCode,
|
|
1005
|
+
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_PaymentCreateCurrencyCode as PaymentCreateCurrencyCode, enums_PaymentCreateRequestCurrencyCode as PaymentCreateRequestCurrencyCode, 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
1006
|
}
|
|
994
1007
|
|
|
995
1008
|
/**
|
|
@@ -4051,7 +4064,7 @@ interface APIKeyValidationResponse$1 {
|
|
|
4051
4064
|
success: boolean;
|
|
4052
4065
|
/** Whether the API key is valid */
|
|
4053
4066
|
valid: boolean;
|
|
4054
|
-
api_key: Record<string, any
|
|
4067
|
+
api_key: Record<string, any> | null;
|
|
4055
4068
|
/** Validation message */
|
|
4056
4069
|
message: string;
|
|
4057
4070
|
/** Error message if validation failed */
|
|
@@ -4159,6 +4172,40 @@ interface Currency$1 {
|
|
|
4159
4172
|
/** When this record was last updated */
|
|
4160
4173
|
updated_at: string;
|
|
4161
4174
|
}
|
|
4175
|
+
/**
|
|
4176
|
+
* Currency rates serializer for getting exchange rates. Fetches current
|
|
4177
|
+
* exchange rates through CurrencyService.
|
|
4178
|
+
*
|
|
4179
|
+
* Response model (includes read-only fields).
|
|
4180
|
+
*/
|
|
4181
|
+
interface CurrencyRates$1 {
|
|
4182
|
+
/** Base currency for rates (default: USD) */
|
|
4183
|
+
base_currency?: string;
|
|
4184
|
+
/** Specific currencies to get rates for (optional) */
|
|
4185
|
+
currencies?: Array<string>;
|
|
4186
|
+
/** Provider for exchange rates
|
|
4187
|
+
|
|
4188
|
+
* `nowpayments` - NowPayments */
|
|
4189
|
+
provider?: CurrencyRatesProvider;
|
|
4190
|
+
}
|
|
4191
|
+
/**
|
|
4192
|
+
* Supported currencies serializer for provider capabilities. Gets supported
|
|
4193
|
+
* currencies from providers through CurrencyService.
|
|
4194
|
+
*
|
|
4195
|
+
* Response model (includes read-only fields).
|
|
4196
|
+
*/
|
|
4197
|
+
interface SupportedCurrencies$1 {
|
|
4198
|
+
/** Provider to get supported currencies from
|
|
4199
|
+
|
|
4200
|
+
* `nowpayments` - NowPayments */
|
|
4201
|
+
provider?: SupportedCurrenciesProvider;
|
|
4202
|
+
/** Filter by currency type
|
|
4203
|
+
|
|
4204
|
+
* `all` - All
|
|
4205
|
+
* `crypto` - Cryptocurrency
|
|
4206
|
+
* `fiat` - Fiat Currency */
|
|
4207
|
+
currency_type?: SupportedCurrenciesCurrencyType;
|
|
4208
|
+
}
|
|
4162
4209
|
/**
|
|
4163
4210
|
*
|
|
4164
4211
|
* Response model (includes read-only fields).
|
|
@@ -4212,6 +4259,8 @@ interface Payment$1 {
|
|
|
4212
4259
|
user: string;
|
|
4213
4260
|
/** Payment amount in USD (float for performance) */
|
|
4214
4261
|
amount_usd: number;
|
|
4262
|
+
/** Calculate crypto amount from USD amount and currency rate. */
|
|
4263
|
+
amount_crypto: number;
|
|
4215
4264
|
/** Payment currency */
|
|
4216
4265
|
currency: number;
|
|
4217
4266
|
/** Blockchain network (for crypto payments) */
|
|
@@ -4299,7 +4348,7 @@ interface PaginatedNetworkList$1 {
|
|
|
4299
4348
|
*/
|
|
4300
4349
|
interface Network$1 {
|
|
4301
4350
|
id: number;
|
|
4302
|
-
currency: Record<string, any
|
|
4351
|
+
currency: Record<string, any> | null;
|
|
4303
4352
|
/** Network name (e.g., Ethereum, Bitcoin, Polygon) */
|
|
4304
4353
|
name: string;
|
|
4305
4354
|
/** Network code (e.g., ETH, BTC, MATIC) */
|
|
@@ -4379,7 +4428,7 @@ interface PaymentsChartResponse$1 {
|
|
|
4379
4428
|
*/
|
|
4380
4429
|
interface PaymentsMetrics$1 {
|
|
4381
4430
|
balance: Record<string, any>;
|
|
4382
|
-
subscription: Record<string, any
|
|
4431
|
+
subscription: Record<string, any> | null;
|
|
4383
4432
|
api_keys: Record<string, any>;
|
|
4384
4433
|
payments: Record<string, any>;
|
|
4385
4434
|
}
|
|
@@ -4544,10 +4593,6 @@ interface PaymentCreateRequest$1 {
|
|
|
4544
4593
|
* `ADA` - Cardano
|
|
4545
4594
|
* `DOT` - Polkadot */
|
|
4546
4595
|
currency_code: PaymentCreateRequestCurrencyCode;
|
|
4547
|
-
/** Payment provider
|
|
4548
|
-
|
|
4549
|
-
* `nowpayments` - NowPayments */
|
|
4550
|
-
provider?: PaymentCreateRequestProvider;
|
|
4551
4596
|
/** Success callback URL */
|
|
4552
4597
|
callback_url?: string;
|
|
4553
4598
|
/** Cancellation URL */
|
|
@@ -4577,10 +4622,6 @@ interface PaymentCreate$1 {
|
|
|
4577
4622
|
* `ADA` - Cardano
|
|
4578
4623
|
* `DOT` - Polkadot */
|
|
4579
4624
|
currency_code: PaymentCreateCurrencyCode;
|
|
4580
|
-
/** Payment provider
|
|
4581
|
-
|
|
4582
|
-
* `nowpayments` - NowPayments */
|
|
4583
|
-
provider?: PaymentCreateProvider;
|
|
4584
4625
|
/** Success callback URL */
|
|
4585
4626
|
callback_url?: string;
|
|
4586
4627
|
/** Cancellation URL */
|
|
@@ -4697,7 +4738,7 @@ interface PaginatedProviderCurrencyList$1 {
|
|
|
4697
4738
|
interface ProviderCurrency$1 {
|
|
4698
4739
|
id: number;
|
|
4699
4740
|
currency: Record<string, any>;
|
|
4700
|
-
network: Record<string, any
|
|
4741
|
+
network: Record<string, any> | null;
|
|
4701
4742
|
/** Payment provider name (e.g., nowpayments) */
|
|
4702
4743
|
provider: string;
|
|
4703
4744
|
/** Currency code as used by the provider */
|
|
@@ -5097,6 +5138,10 @@ interface CurrencyList$1 {
|
|
|
5097
5138
|
type_display: string;
|
|
5098
5139
|
/** Whether this currency is available for payments */
|
|
5099
5140
|
is_active: boolean;
|
|
5141
|
+
/** Current USD exchange rate (1 unit = X USD) */
|
|
5142
|
+
usd_rate: number;
|
|
5143
|
+
/** When USD rate was last updated */
|
|
5144
|
+
usd_rate_updated_at: string | null;
|
|
5100
5145
|
}
|
|
5101
5146
|
/**
|
|
5102
5147
|
* Chart series data for payments visualization
|
|
@@ -5326,7 +5371,7 @@ interface ChartDataPoint$1 {
|
|
|
5326
5371
|
}
|
|
5327
5372
|
|
|
5328
5373
|
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 };
|
|
5374
|
+
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
5375
|
}
|
|
5331
5376
|
|
|
5332
5377
|
/**
|
|
@@ -5481,28 +5526,33 @@ declare class CfgPayments {
|
|
|
5481
5526
|
user?: number;
|
|
5482
5527
|
}): Promise<PaginatedAPIKeyListList$1>;
|
|
5483
5528
|
/**
|
|
5484
|
-
*
|
|
5485
|
-
*
|
|
5529
|
+
* API Key ViewSet: /api/api-keys/ User-specific access to API keys with
|
|
5530
|
+
* filtering and stats. - Regular users: can only see/manage their own API
|
|
5531
|
+
* keys - Staff/Admin: can see/manage all API keys
|
|
5486
5532
|
*/
|
|
5487
5533
|
apiKeysCreate(data: APIKeyCreateRequest$1): Promise<APIKeyCreate$1>;
|
|
5488
5534
|
/**
|
|
5489
|
-
*
|
|
5490
|
-
*
|
|
5535
|
+
* API Key ViewSet: /api/api-keys/ User-specific access to API keys with
|
|
5536
|
+
* filtering and stats. - Regular users: can only see/manage their own API
|
|
5537
|
+
* keys - Staff/Admin: can see/manage all API keys
|
|
5491
5538
|
*/
|
|
5492
5539
|
apiKeysRetrieve(id: string): Promise<APIKeyDetail$1>;
|
|
5493
5540
|
/**
|
|
5494
|
-
*
|
|
5495
|
-
*
|
|
5541
|
+
* API Key ViewSet: /api/api-keys/ User-specific access to API keys with
|
|
5542
|
+
* filtering and stats. - Regular users: can only see/manage their own API
|
|
5543
|
+
* keys - Staff/Admin: can see/manage all API keys
|
|
5496
5544
|
*/
|
|
5497
5545
|
apiKeysUpdate(id: string, data: APIKeyUpdateRequest$1): Promise<APIKeyUpdate$1>;
|
|
5498
5546
|
/**
|
|
5499
|
-
*
|
|
5500
|
-
*
|
|
5547
|
+
* API Key ViewSet: /api/api-keys/ User-specific access to API keys with
|
|
5548
|
+
* filtering and stats. - Regular users: can only see/manage their own API
|
|
5549
|
+
* keys - Staff/Admin: can see/manage all API keys
|
|
5501
5550
|
*/
|
|
5502
5551
|
apiKeysPartialUpdate(id: string, data?: PatchedAPIKeyUpdateRequest$1): Promise<APIKeyUpdate$1>;
|
|
5503
5552
|
/**
|
|
5504
|
-
*
|
|
5505
|
-
*
|
|
5553
|
+
* API Key ViewSet: /api/api-keys/ User-specific access to API keys with
|
|
5554
|
+
* filtering and stats. - Regular users: can only see/manage their own API
|
|
5555
|
+
* keys - Staff/Admin: can see/manage all API keys
|
|
5506
5556
|
*/
|
|
5507
5557
|
apiKeysDestroy(id: string): Promise<void>;
|
|
5508
5558
|
/**
|
|
@@ -5623,11 +5673,10 @@ declare class CfgPayments {
|
|
|
5623
5673
|
* status and basic metrics.
|
|
5624
5674
|
*/
|
|
5625
5675
|
currenciesHealthRetrieve(): Promise<Currency$1>;
|
|
5626
|
-
|
|
5627
|
-
|
|
5628
|
-
|
|
5629
|
-
|
|
5630
|
-
}): Promise<Currency$1>;
|
|
5676
|
+
/**
|
|
5677
|
+
* Get current exchange rates.
|
|
5678
|
+
*/
|
|
5679
|
+
currenciesRatesRetrieve(): Promise<CurrencyRates$1>;
|
|
5631
5680
|
/**
|
|
5632
5681
|
* Get only stablecoins. GET /api/currencies/stable/
|
|
5633
5682
|
*/
|
|
@@ -5637,11 +5686,10 @@ declare class CfgPayments {
|
|
|
5637
5686
|
* breakdowns.
|
|
5638
5687
|
*/
|
|
5639
5688
|
currenciesStatsRetrieve(): Promise<Currency$1>;
|
|
5640
|
-
|
|
5641
|
-
|
|
5642
|
-
|
|
5643
|
-
|
|
5644
|
-
}): Promise<Currency$1>;
|
|
5689
|
+
/**
|
|
5690
|
+
* Get supported currencies from providers.
|
|
5691
|
+
*/
|
|
5692
|
+
currenciesSupportedRetrieve(): Promise<SupportedCurrencies$1>;
|
|
5645
5693
|
endpointGroupsList(is_enabled?: boolean, ordering?: string, page?: number, page_size?: number, search?: string): Promise<PaginatedEndpointGroupList$1>;
|
|
5646
5694
|
endpointGroupsList(params?: {
|
|
5647
5695
|
is_enabled?: boolean;
|
|
@@ -8964,10 +9012,50 @@ declare const OPENAPI_SCHEMA: {
|
|
|
8964
9012
|
readOnly: boolean;
|
|
8965
9013
|
type: string;
|
|
8966
9014
|
};
|
|
9015
|
+
usd_rate: {
|
|
9016
|
+
description: string;
|
|
9017
|
+
format: string;
|
|
9018
|
+
readOnly: boolean;
|
|
9019
|
+
type: string;
|
|
9020
|
+
};
|
|
9021
|
+
usd_rate_updated_at: {
|
|
9022
|
+
description: string;
|
|
9023
|
+
format: string;
|
|
9024
|
+
nullable: boolean;
|
|
9025
|
+
readOnly: boolean;
|
|
9026
|
+
type: string;
|
|
9027
|
+
};
|
|
8967
9028
|
};
|
|
8968
9029
|
required: string[];
|
|
8969
9030
|
type: string;
|
|
8970
9031
|
};
|
|
9032
|
+
CurrencyRates: {
|
|
9033
|
+
description: string;
|
|
9034
|
+
properties: {
|
|
9035
|
+
base_currency: {
|
|
9036
|
+
default: string;
|
|
9037
|
+
description: string;
|
|
9038
|
+
maxLength: number;
|
|
9039
|
+
type: string;
|
|
9040
|
+
};
|
|
9041
|
+
currencies: {
|
|
9042
|
+
description: string;
|
|
9043
|
+
items: {
|
|
9044
|
+
maxLength: number;
|
|
9045
|
+
type: string;
|
|
9046
|
+
};
|
|
9047
|
+
type: string;
|
|
9048
|
+
};
|
|
9049
|
+
provider: {
|
|
9050
|
+
default: string;
|
|
9051
|
+
description: string;
|
|
9052
|
+
enum: string[];
|
|
9053
|
+
type: string;
|
|
9054
|
+
"x-spec-enum-id": string;
|
|
9055
|
+
};
|
|
9056
|
+
};
|
|
9057
|
+
type: string;
|
|
9058
|
+
};
|
|
8971
9059
|
Document: {
|
|
8972
9060
|
description: string;
|
|
8973
9061
|
properties: {
|
|
@@ -10129,6 +10217,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10129
10217
|
allOf: {
|
|
10130
10218
|
$ref: string;
|
|
10131
10219
|
}[];
|
|
10220
|
+
nullable: boolean;
|
|
10132
10221
|
readOnly: boolean;
|
|
10133
10222
|
};
|
|
10134
10223
|
id: {
|
|
@@ -12741,6 +12830,12 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12741
12830
|
Payment: {
|
|
12742
12831
|
description: string;
|
|
12743
12832
|
properties: {
|
|
12833
|
+
amount_crypto: {
|
|
12834
|
+
description: string;
|
|
12835
|
+
format: string;
|
|
12836
|
+
readOnly: boolean;
|
|
12837
|
+
type: string;
|
|
12838
|
+
};
|
|
12744
12839
|
amount_display: {
|
|
12745
12840
|
description: string;
|
|
12746
12841
|
readOnly: boolean;
|
|
@@ -12940,13 +13035,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12940
13035
|
metadata: {
|
|
12941
13036
|
description: string;
|
|
12942
13037
|
};
|
|
12943
|
-
provider: {
|
|
12944
|
-
default: string;
|
|
12945
|
-
description: string;
|
|
12946
|
-
enum: string[];
|
|
12947
|
-
type: string;
|
|
12948
|
-
"x-spec-enum-id": string;
|
|
12949
|
-
};
|
|
12950
13038
|
};
|
|
12951
13039
|
required: string[];
|
|
12952
13040
|
type: string;
|
|
@@ -12985,13 +13073,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12985
13073
|
metadata: {
|
|
12986
13074
|
description: string;
|
|
12987
13075
|
};
|
|
12988
|
-
provider: {
|
|
12989
|
-
default: string;
|
|
12990
|
-
description: string;
|
|
12991
|
-
enum: string[];
|
|
12992
|
-
type: string;
|
|
12993
|
-
"x-spec-enum-id": string;
|
|
12994
|
-
};
|
|
12995
13076
|
};
|
|
12996
13077
|
required: string[];
|
|
12997
13078
|
type: string;
|
|
@@ -13340,6 +13421,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13340
13421
|
allOf: {
|
|
13341
13422
|
$ref: string;
|
|
13342
13423
|
}[];
|
|
13424
|
+
nullable: boolean;
|
|
13343
13425
|
readOnly: boolean;
|
|
13344
13426
|
};
|
|
13345
13427
|
provider: {
|
|
@@ -14125,6 +14207,26 @@ declare const OPENAPI_SCHEMA: {
|
|
|
14125
14207
|
required: string[];
|
|
14126
14208
|
type: string;
|
|
14127
14209
|
};
|
|
14210
|
+
SupportedCurrencies: {
|
|
14211
|
+
description: string;
|
|
14212
|
+
properties: {
|
|
14213
|
+
currency_type: {
|
|
14214
|
+
default: string;
|
|
14215
|
+
description: string;
|
|
14216
|
+
enum: string[];
|
|
14217
|
+
type: string;
|
|
14218
|
+
"x-spec-enum-id": string;
|
|
14219
|
+
};
|
|
14220
|
+
provider: {
|
|
14221
|
+
default: string;
|
|
14222
|
+
description: string;
|
|
14223
|
+
enum: string[];
|
|
14224
|
+
type: string;
|
|
14225
|
+
"x-spec-enum-id": string;
|
|
14226
|
+
};
|
|
14227
|
+
};
|
|
14228
|
+
type: string;
|
|
14229
|
+
};
|
|
14128
14230
|
SupportedProviders: {
|
|
14129
14231
|
description: string;
|
|
14130
14232
|
properties: {
|
|
@@ -21642,15 +21744,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
21642
21744
|
get: {
|
|
21643
21745
|
description: string;
|
|
21644
21746
|
operationId: string;
|
|
21645
|
-
parameters: {
|
|
21646
|
-
description: string;
|
|
21647
|
-
in: string;
|
|
21648
|
-
name: string;
|
|
21649
|
-
required: boolean;
|
|
21650
|
-
schema: {
|
|
21651
|
-
type: string;
|
|
21652
|
-
};
|
|
21653
|
-
}[];
|
|
21654
21747
|
responses: {
|
|
21655
21748
|
"200": {
|
|
21656
21749
|
content: {
|
|
@@ -21670,7 +21763,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
21670
21763
|
cookieAuth: any[];
|
|
21671
21764
|
jwtAuth?: undefined;
|
|
21672
21765
|
})[];
|
|
21673
|
-
summary: string;
|
|
21674
21766
|
tags: string[];
|
|
21675
21767
|
"x-async-capable": boolean;
|
|
21676
21768
|
};
|
|
@@ -21733,23 +21825,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
21733
21825
|
get: {
|
|
21734
21826
|
description: string;
|
|
21735
21827
|
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
21828
|
responses: {
|
|
21754
21829
|
"200": {
|
|
21755
21830
|
content: {
|
|
@@ -21769,7 +21844,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
21769
21844
|
cookieAuth: any[];
|
|
21770
21845
|
jwtAuth?: undefined;
|
|
21771
21846
|
})[];
|
|
21772
|
-
summary: string;
|
|
21773
21847
|
tags: string[];
|
|
21774
21848
|
"x-async-capable": boolean;
|
|
21775
21849
|
};
|
|
@@ -27801,7 +27875,7 @@ Defines the structure of API key validation response for OpenAPI schema.
|
|
|
27801
27875
|
declare const APIKeyValidationResponseSchema: z.ZodObject<{
|
|
27802
27876
|
success: z.ZodBoolean;
|
|
27803
27877
|
valid: z.ZodBoolean;
|
|
27804
|
-
api_key: z.ZodObject<{
|
|
27878
|
+
api_key: z.ZodNullable<z.ZodObject<{
|
|
27805
27879
|
id: z.ZodUUID;
|
|
27806
27880
|
user: z.ZodString;
|
|
27807
27881
|
name: z.ZodString;
|
|
@@ -27815,7 +27889,7 @@ declare const APIKeyValidationResponseSchema: z.ZodObject<{
|
|
|
27815
27889
|
expires_at: z.ZodNullable<z.ZodISODateTime>;
|
|
27816
27890
|
created_at: z.ZodISODateTime;
|
|
27817
27891
|
updated_at: z.ZodISODateTime;
|
|
27818
|
-
}, z.core.$strip
|
|
27892
|
+
}, z.core.$strip>>;
|
|
27819
27893
|
message: z.ZodString;
|
|
27820
27894
|
error: z.ZodOptional<z.ZodString>;
|
|
27821
27895
|
error_code: z.ZodOptional<z.ZodString>;
|
|
@@ -28848,12 +28922,38 @@ declare const CurrencyListSchema: z.ZodObject<{
|
|
|
28848
28922
|
currency_type: z.ZodEnum<typeof CurrencyListCurrencyType>;
|
|
28849
28923
|
type_display: z.ZodString;
|
|
28850
28924
|
is_active: z.ZodBoolean;
|
|
28925
|
+
usd_rate: z.ZodNumber;
|
|
28926
|
+
usd_rate_updated_at: z.ZodNullable<z.ZodISODateTime>;
|
|
28851
28927
|
}, z.core.$strip>;
|
|
28852
28928
|
/**
|
|
28853
28929
|
* Infer TypeScript type from Zod schema
|
|
28854
28930
|
*/
|
|
28855
28931
|
type CurrencyList = z.infer<typeof CurrencyListSchema>;
|
|
28856
28932
|
|
|
28933
|
+
/**
|
|
28934
|
+
* Zod schema for CurrencyRates
|
|
28935
|
+
*
|
|
28936
|
+
* This schema provides runtime validation and type inference.
|
|
28937
|
+
* * Currency rates serializer for getting exchange rates.
|
|
28938
|
+
|
|
28939
|
+
Fetches current exchange rates through CurrencyService.
|
|
28940
|
+
* */
|
|
28941
|
+
|
|
28942
|
+
/**
|
|
28943
|
+
* Currency rates serializer for getting exchange rates.
|
|
28944
|
+
|
|
28945
|
+
Fetches current exchange rates through CurrencyService.
|
|
28946
|
+
*/
|
|
28947
|
+
declare const CurrencyRatesSchema: z.ZodObject<{
|
|
28948
|
+
base_currency: z.ZodOptional<z.ZodString>;
|
|
28949
|
+
currencies: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
28950
|
+
provider: z.ZodOptional<z.ZodEnum<typeof CurrencyRatesProvider>>;
|
|
28951
|
+
}, z.core.$strip>;
|
|
28952
|
+
/**
|
|
28953
|
+
* Infer TypeScript type from Zod schema
|
|
28954
|
+
*/
|
|
28955
|
+
type CurrencyRates = z.infer<typeof CurrencyRatesSchema>;
|
|
28956
|
+
|
|
28857
28957
|
/**
|
|
28858
28958
|
* Zod schema for Document
|
|
28859
28959
|
*
|
|
@@ -29531,7 +29631,7 @@ Used for network information and selection.
|
|
|
29531
29631
|
*/
|
|
29532
29632
|
declare const NetworkSchema: z.ZodObject<{
|
|
29533
29633
|
id: z.ZodInt;
|
|
29534
|
-
currency: z.ZodObject<{
|
|
29634
|
+
currency: z.ZodNullable<z.ZodObject<{
|
|
29535
29635
|
id: z.ZodInt;
|
|
29536
29636
|
code: z.ZodString;
|
|
29537
29637
|
name: z.ZodString;
|
|
@@ -29539,7 +29639,9 @@ declare const NetworkSchema: z.ZodObject<{
|
|
|
29539
29639
|
currency_type: z.ZodEnum<typeof CurrencyListCurrencyType>;
|
|
29540
29640
|
type_display: z.ZodString;
|
|
29541
29641
|
is_active: z.ZodBoolean;
|
|
29542
|
-
|
|
29642
|
+
usd_rate: z.ZodNumber;
|
|
29643
|
+
usd_rate_updated_at: z.ZodNullable<z.ZodISODateTime>;
|
|
29644
|
+
}, z.core.$strip>>;
|
|
29543
29645
|
name: z.ZodString;
|
|
29544
29646
|
code: z.ZodString;
|
|
29545
29647
|
is_active: z.ZodBoolean;
|
|
@@ -30091,6 +30193,8 @@ declare const PaginatedCurrencyListListSchema: z.ZodObject<{
|
|
|
30091
30193
|
currency_type: z.ZodEnum<typeof CurrencyListCurrencyType>;
|
|
30092
30194
|
type_display: z.ZodString;
|
|
30093
30195
|
is_active: z.ZodBoolean;
|
|
30196
|
+
usd_rate: z.ZodNumber;
|
|
30197
|
+
usd_rate_updated_at: z.ZodNullable<z.ZodISODateTime>;
|
|
30094
30198
|
}, z.core.$strip>>;
|
|
30095
30199
|
}, z.core.$strip>;
|
|
30096
30200
|
/**
|
|
@@ -30306,7 +30410,7 @@ declare const PaginatedNetworkListSchema: z.ZodObject<{
|
|
|
30306
30410
|
previous_page: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
30307
30411
|
results: z.ZodArray<z.ZodObject<{
|
|
30308
30412
|
id: z.ZodInt;
|
|
30309
|
-
currency: z.ZodObject<{
|
|
30413
|
+
currency: z.ZodNullable<z.ZodObject<{
|
|
30310
30414
|
id: z.ZodInt;
|
|
30311
30415
|
code: z.ZodString;
|
|
30312
30416
|
name: z.ZodString;
|
|
@@ -30314,7 +30418,9 @@ declare const PaginatedNetworkListSchema: z.ZodObject<{
|
|
|
30314
30418
|
currency_type: z.ZodEnum<typeof CurrencyListCurrencyType>;
|
|
30315
30419
|
type_display: z.ZodString;
|
|
30316
30420
|
is_active: z.ZodBoolean;
|
|
30317
|
-
|
|
30421
|
+
usd_rate: z.ZodNumber;
|
|
30422
|
+
usd_rate_updated_at: z.ZodNullable<z.ZodISODateTime>;
|
|
30423
|
+
}, z.core.$strip>>;
|
|
30318
30424
|
name: z.ZodString;
|
|
30319
30425
|
code: z.ZodString;
|
|
30320
30426
|
is_active: z.ZodBoolean;
|
|
@@ -30466,10 +30572,12 @@ declare const PaginatedProviderCurrencyListSchema: z.ZodObject<{
|
|
|
30466
30572
|
currency_type: z.ZodEnum<typeof CurrencyListCurrencyType>;
|
|
30467
30573
|
type_display: z.ZodString;
|
|
30468
30574
|
is_active: z.ZodBoolean;
|
|
30575
|
+
usd_rate: z.ZodNumber;
|
|
30576
|
+
usd_rate_updated_at: z.ZodNullable<z.ZodISODateTime>;
|
|
30469
30577
|
}, z.core.$strip>;
|
|
30470
|
-
network: z.ZodObject<{
|
|
30578
|
+
network: z.ZodNullable<z.ZodObject<{
|
|
30471
30579
|
id: z.ZodInt;
|
|
30472
|
-
currency: z.ZodObject<{
|
|
30580
|
+
currency: z.ZodNullable<z.ZodObject<{
|
|
30473
30581
|
id: z.ZodInt;
|
|
30474
30582
|
code: z.ZodString;
|
|
30475
30583
|
name: z.ZodString;
|
|
@@ -30477,13 +30585,15 @@ declare const PaginatedProviderCurrencyListSchema: z.ZodObject<{
|
|
|
30477
30585
|
currency_type: z.ZodEnum<typeof CurrencyListCurrencyType>;
|
|
30478
30586
|
type_display: z.ZodString;
|
|
30479
30587
|
is_active: z.ZodBoolean;
|
|
30480
|
-
|
|
30588
|
+
usd_rate: z.ZodNumber;
|
|
30589
|
+
usd_rate_updated_at: z.ZodNullable<z.ZodISODateTime>;
|
|
30590
|
+
}, z.core.$strip>>;
|
|
30481
30591
|
name: z.ZodString;
|
|
30482
30592
|
code: z.ZodString;
|
|
30483
30593
|
is_active: z.ZodBoolean;
|
|
30484
30594
|
created_at: z.ZodISODateTime;
|
|
30485
30595
|
updated_at: z.ZodISODateTime;
|
|
30486
|
-
}, z.core.$strip
|
|
30596
|
+
}, z.core.$strip>>;
|
|
30487
30597
|
provider: z.ZodString;
|
|
30488
30598
|
provider_currency_code: z.ZodString;
|
|
30489
30599
|
provider_min_amount_usd: z.ZodNumber;
|
|
@@ -31220,6 +31330,7 @@ declare const PaymentSchema: z.ZodObject<{
|
|
|
31220
31330
|
id: z.ZodUUID;
|
|
31221
31331
|
user: z.ZodString;
|
|
31222
31332
|
amount_usd: z.ZodNumber;
|
|
31333
|
+
amount_crypto: z.ZodNumber;
|
|
31223
31334
|
currency: z.ZodInt;
|
|
31224
31335
|
network: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
31225
31336
|
provider: z.ZodOptional<z.ZodEnum<typeof PaymentProvider>>;
|
|
@@ -31299,7 +31410,6 @@ Validates input and delegates to PaymentService.
|
|
|
31299
31410
|
declare const PaymentCreateSchema: z.ZodObject<{
|
|
31300
31411
|
amount_usd: z.ZodNumber;
|
|
31301
31412
|
currency_code: z.ZodEnum<typeof PaymentCreateCurrencyCode>;
|
|
31302
|
-
provider: z.ZodOptional<z.ZodEnum<typeof PaymentCreateProvider>>;
|
|
31303
31413
|
callback_url: z.ZodOptional<z.ZodURL>;
|
|
31304
31414
|
cancel_url: z.ZodOptional<z.ZodURL>;
|
|
31305
31415
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -31327,7 +31437,6 @@ Validates input and delegates to PaymentService.
|
|
|
31327
31437
|
declare const PaymentCreateRequestSchema: z.ZodObject<{
|
|
31328
31438
|
amount_usd: z.ZodNumber;
|
|
31329
31439
|
currency_code: z.ZodEnum<typeof PaymentCreateRequestCurrencyCode>;
|
|
31330
|
-
provider: z.ZodOptional<z.ZodEnum<typeof PaymentCreateRequestProvider>>;
|
|
31331
31440
|
callback_url: z.ZodOptional<z.ZodURL>;
|
|
31332
31441
|
cancel_url: z.ZodOptional<z.ZodURL>;
|
|
31333
31442
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -31478,7 +31587,7 @@ declare const PaymentsDashboardOverviewSchema: z.ZodObject<{
|
|
|
31478
31587
|
has_transactions: z.ZodBoolean;
|
|
31479
31588
|
is_empty: z.ZodBoolean;
|
|
31480
31589
|
}, z.core.$strip>;
|
|
31481
|
-
subscription: z.ZodObject<{
|
|
31590
|
+
subscription: z.ZodNullable<z.ZodObject<{
|
|
31482
31591
|
tier: z.ZodString;
|
|
31483
31592
|
tier_display: z.ZodString;
|
|
31484
31593
|
status: z.ZodString;
|
|
@@ -31498,7 +31607,7 @@ declare const PaymentsDashboardOverviewSchema: z.ZodObject<{
|
|
|
31498
31607
|
last_request_at: z.ZodNullable<z.ZodISODateTime>;
|
|
31499
31608
|
endpoint_groups_count: z.ZodInt;
|
|
31500
31609
|
endpoint_groups: z.ZodArray<z.ZodString>;
|
|
31501
|
-
}, z.core.$strip
|
|
31610
|
+
}, z.core.$strip>>;
|
|
31502
31611
|
api_keys: z.ZodObject<{
|
|
31503
31612
|
total_keys: z.ZodInt;
|
|
31504
31613
|
active_keys: z.ZodInt;
|
|
@@ -31594,7 +31703,7 @@ declare const PaymentsMetricsSchema: z.ZodObject<{
|
|
|
31594
31703
|
has_transactions: z.ZodBoolean;
|
|
31595
31704
|
is_empty: z.ZodBoolean;
|
|
31596
31705
|
}, z.core.$strip>;
|
|
31597
|
-
subscription: z.ZodObject<{
|
|
31706
|
+
subscription: z.ZodNullable<z.ZodObject<{
|
|
31598
31707
|
tier: z.ZodString;
|
|
31599
31708
|
tier_display: z.ZodString;
|
|
31600
31709
|
status: z.ZodString;
|
|
@@ -31614,7 +31723,7 @@ declare const PaymentsMetricsSchema: z.ZodObject<{
|
|
|
31614
31723
|
last_request_at: z.ZodNullable<z.ZodISODateTime>;
|
|
31615
31724
|
endpoint_groups_count: z.ZodInt;
|
|
31616
31725
|
endpoint_groups: z.ZodArray<z.ZodString>;
|
|
31617
|
-
}, z.core.$strip
|
|
31726
|
+
}, z.core.$strip>>;
|
|
31618
31727
|
api_keys: z.ZodObject<{
|
|
31619
31728
|
total_keys: z.ZodInt;
|
|
31620
31729
|
active_keys: z.ZodInt;
|
|
@@ -31684,10 +31793,12 @@ declare const ProviderCurrencySchema: z.ZodObject<{
|
|
|
31684
31793
|
currency_type: z.ZodEnum<typeof CurrencyListCurrencyType>;
|
|
31685
31794
|
type_display: z.ZodString;
|
|
31686
31795
|
is_active: z.ZodBoolean;
|
|
31796
|
+
usd_rate: z.ZodNumber;
|
|
31797
|
+
usd_rate_updated_at: z.ZodNullable<z.ZodISODateTime>;
|
|
31687
31798
|
}, z.core.$strip>;
|
|
31688
|
-
network: z.ZodObject<{
|
|
31799
|
+
network: z.ZodNullable<z.ZodObject<{
|
|
31689
31800
|
id: z.ZodInt;
|
|
31690
|
-
currency: z.ZodObject<{
|
|
31801
|
+
currency: z.ZodNullable<z.ZodObject<{
|
|
31691
31802
|
id: z.ZodInt;
|
|
31692
31803
|
code: z.ZodString;
|
|
31693
31804
|
name: z.ZodString;
|
|
@@ -31695,13 +31806,15 @@ declare const ProviderCurrencySchema: z.ZodObject<{
|
|
|
31695
31806
|
currency_type: z.ZodEnum<typeof CurrencyListCurrencyType>;
|
|
31696
31807
|
type_display: z.ZodString;
|
|
31697
31808
|
is_active: z.ZodBoolean;
|
|
31698
|
-
|
|
31809
|
+
usd_rate: z.ZodNumber;
|
|
31810
|
+
usd_rate_updated_at: z.ZodNullable<z.ZodISODateTime>;
|
|
31811
|
+
}, z.core.$strip>>;
|
|
31699
31812
|
name: z.ZodString;
|
|
31700
31813
|
code: z.ZodString;
|
|
31701
31814
|
is_active: z.ZodBoolean;
|
|
31702
31815
|
created_at: z.ZodISODateTime;
|
|
31703
31816
|
updated_at: z.ZodISODateTime;
|
|
31704
|
-
}, z.core.$strip
|
|
31817
|
+
}, z.core.$strip>>;
|
|
31705
31818
|
provider: z.ZodString;
|
|
31706
31819
|
provider_currency_code: z.ZodString;
|
|
31707
31820
|
provider_min_amount_usd: z.ZodNumber;
|
|
@@ -32247,6 +32360,29 @@ declare const SuccessResponseSchema: z.ZodObject<{
|
|
|
32247
32360
|
*/
|
|
32248
32361
|
type SuccessResponse = z.infer<typeof SuccessResponseSchema>;
|
|
32249
32362
|
|
|
32363
|
+
/**
|
|
32364
|
+
* Zod schema for SupportedCurrencies
|
|
32365
|
+
*
|
|
32366
|
+
* This schema provides runtime validation and type inference.
|
|
32367
|
+
* * Supported currencies serializer for provider capabilities.
|
|
32368
|
+
|
|
32369
|
+
Gets supported currencies from providers through CurrencyService.
|
|
32370
|
+
* */
|
|
32371
|
+
|
|
32372
|
+
/**
|
|
32373
|
+
* Supported currencies serializer for provider capabilities.
|
|
32374
|
+
|
|
32375
|
+
Gets supported currencies from providers through CurrencyService.
|
|
32376
|
+
*/
|
|
32377
|
+
declare const SupportedCurrenciesSchema: z.ZodObject<{
|
|
32378
|
+
provider: z.ZodOptional<z.ZodEnum<typeof SupportedCurrenciesProvider>>;
|
|
32379
|
+
currency_type: z.ZodOptional<z.ZodEnum<typeof SupportedCurrenciesCurrencyType>>;
|
|
32380
|
+
}, z.core.$strip>;
|
|
32381
|
+
/**
|
|
32382
|
+
* Infer TypeScript type from Zod schema
|
|
32383
|
+
*/
|
|
32384
|
+
type SupportedCurrencies = z.infer<typeof SupportedCurrenciesSchema>;
|
|
32385
|
+
|
|
32250
32386
|
/**
|
|
32251
32387
|
* Zod schema for SupportedProviders
|
|
32252
32388
|
*
|
|
@@ -33047,6 +33183,8 @@ type index$2_CurrencyAnalyticsItem = CurrencyAnalyticsItem;
|
|
|
33047
33183
|
declare const index$2_CurrencyAnalyticsItemSchema: typeof CurrencyAnalyticsItemSchema;
|
|
33048
33184
|
type index$2_CurrencyList = CurrencyList;
|
|
33049
33185
|
declare const index$2_CurrencyListSchema: typeof CurrencyListSchema;
|
|
33186
|
+
type index$2_CurrencyRates = CurrencyRates;
|
|
33187
|
+
declare const index$2_CurrencyRatesSchema: typeof CurrencyRatesSchema;
|
|
33050
33188
|
declare const index$2_CurrencySchema: typeof CurrencySchema;
|
|
33051
33189
|
type index$2_Document = Document;
|
|
33052
33190
|
type index$2_DocumentArchive = DocumentArchive;
|
|
@@ -33282,6 +33420,8 @@ declare const index$2_SubscriptionRequestSchema: typeof SubscriptionRequestSchem
|
|
|
33282
33420
|
declare const index$2_SubscriptionSchema: typeof SubscriptionSchema;
|
|
33283
33421
|
type index$2_SuccessResponse = SuccessResponse;
|
|
33284
33422
|
declare const index$2_SuccessResponseSchema: typeof SuccessResponseSchema;
|
|
33423
|
+
type index$2_SupportedCurrencies = SupportedCurrencies;
|
|
33424
|
+
declare const index$2_SupportedCurrenciesSchema: typeof SupportedCurrenciesSchema;
|
|
33285
33425
|
type index$2_SupportedProviders = SupportedProviders;
|
|
33286
33426
|
declare const index$2_SupportedProvidersSchema: typeof SupportedProvidersSchema;
|
|
33287
33427
|
type index$2_Tariff = Tariff;
|
|
@@ -33341,7 +33481,7 @@ type index$2_WorkerActionRequest = WorkerActionRequest;
|
|
|
33341
33481
|
declare const index$2_WorkerActionRequestSchema: typeof WorkerActionRequestSchema;
|
|
33342
33482
|
declare const index$2_WorkerActionSchema: typeof WorkerActionSchema;
|
|
33343
33483
|
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 };
|
|
33484
|
+
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
33485
|
}
|
|
33346
33486
|
|
|
33347
33487
|
/**
|
|
@@ -35018,15 +35158,12 @@ declare function getPaymentsCurrenciesFiatRetrieve(client?: any): Promise<Curren
|
|
|
35018
35158
|
*/
|
|
35019
35159
|
declare function getPaymentsCurrenciesHealthRetrieve(client?: any): Promise<Currency>;
|
|
35020
35160
|
/**
|
|
35021
|
-
*
|
|
35161
|
+
* API operation
|
|
35022
35162
|
*
|
|
35023
35163
|
* @method GET
|
|
35024
35164
|
* @path /cfg/payments/currencies/rates/
|
|
35025
35165
|
*/
|
|
35026
|
-
declare function getPaymentsCurrenciesRatesRetrieve(
|
|
35027
|
-
base_currency: string;
|
|
35028
|
-
currencies: string;
|
|
35029
|
-
}, client?: any): Promise<Currency>;
|
|
35166
|
+
declare function getPaymentsCurrenciesRatesRetrieve(client?: any): Promise<CurrencyRates>;
|
|
35030
35167
|
/**
|
|
35031
35168
|
* API operation
|
|
35032
35169
|
*
|
|
@@ -35042,15 +35179,12 @@ declare function getPaymentsCurrenciesStableRetrieve(client?: any): Promise<Curr
|
|
|
35042
35179
|
*/
|
|
35043
35180
|
declare function getPaymentsCurrenciesStatsRetrieve(client?: any): Promise<Currency>;
|
|
35044
35181
|
/**
|
|
35045
|
-
*
|
|
35182
|
+
* API operation
|
|
35046
35183
|
*
|
|
35047
35184
|
* @method GET
|
|
35048
35185
|
* @path /cfg/payments/currencies/supported/
|
|
35049
35186
|
*/
|
|
35050
|
-
declare function getPaymentsCurrenciesSupportedRetrieve(
|
|
35051
|
-
currency_type?: string;
|
|
35052
|
-
provider?: string;
|
|
35053
|
-
}, client?: any): Promise<Currency>;
|
|
35187
|
+
declare function getPaymentsCurrenciesSupportedRetrieve(client?: any): Promise<SupportedCurrencies>;
|
|
35054
35188
|
/**
|
|
35055
35189
|
* API operation
|
|
35056
35190
|
*
|
|
@@ -38013,15 +38147,12 @@ declare function usePaymentsCurrenciesFiatRetrieve(client?: API): ReturnType<typ
|
|
|
38013
38147
|
*/
|
|
38014
38148
|
declare function usePaymentsCurrenciesHealthRetrieve(client?: API): ReturnType<typeof useSWR<Currency>>;
|
|
38015
38149
|
/**
|
|
38016
|
-
*
|
|
38150
|
+
* API operation
|
|
38017
38151
|
*
|
|
38018
38152
|
* @method GET
|
|
38019
38153
|
* @path /cfg/payments/currencies/rates/
|
|
38020
38154
|
*/
|
|
38021
|
-
declare function usePaymentsCurrenciesRatesRetrieve(
|
|
38022
|
-
base_currency: string;
|
|
38023
|
-
currencies: string;
|
|
38024
|
-
}, client?: API): ReturnType<typeof useSWR<Currency>>;
|
|
38155
|
+
declare function usePaymentsCurrenciesRatesRetrieve(client?: API): ReturnType<typeof useSWR<CurrencyRates>>;
|
|
38025
38156
|
/**
|
|
38026
38157
|
* API operation
|
|
38027
38158
|
*
|
|
@@ -38037,15 +38168,12 @@ declare function usePaymentsCurrenciesStableRetrieve(client?: API): ReturnType<t
|
|
|
38037
38168
|
*/
|
|
38038
38169
|
declare function usePaymentsCurrenciesStatsRetrieve(client?: API): ReturnType<typeof useSWR<Currency>>;
|
|
38039
38170
|
/**
|
|
38040
|
-
*
|
|
38171
|
+
* API operation
|
|
38041
38172
|
*
|
|
38042
38173
|
* @method GET
|
|
38043
38174
|
* @path /cfg/payments/currencies/supported/
|
|
38044
38175
|
*/
|
|
38045
|
-
declare function usePaymentsCurrenciesSupportedRetrieve(
|
|
38046
|
-
currency_type?: string;
|
|
38047
|
-
provider?: string;
|
|
38048
|
-
}, client?: API): ReturnType<typeof useSWR<Currency>>;
|
|
38176
|
+
declare function usePaymentsCurrenciesSupportedRetrieve(client?: API): ReturnType<typeof useSWR<SupportedCurrencies>>;
|
|
38049
38177
|
/**
|
|
38050
38178
|
* API operation
|
|
38051
38179
|
*
|
|
@@ -40539,8 +40667,6 @@ interface CurrenciesContextValue {
|
|
|
40539
40667
|
isLoadingCurrencies: boolean;
|
|
40540
40668
|
currenciesError: Error | undefined;
|
|
40541
40669
|
refreshCurrencies: () => Promise<void>;
|
|
40542
|
-
getCurrency: (id: number) => Promise<Currency | undefined>;
|
|
40543
|
-
getCurrencyRates: (baseCurrency: string, currencies: string) => Promise<Currency | undefined>;
|
|
40544
40670
|
}
|
|
40545
40671
|
declare function CurrenciesProvider({ children }: {
|
|
40546
40672
|
children: ReactNode;
|
|
@@ -40570,6 +40696,16 @@ interface OverviewContextValue {
|
|
|
40570
40696
|
chartData: PaymentsChartResponse | undefined;
|
|
40571
40697
|
recentPayments: PaginatedRecentPaymentList | undefined;
|
|
40572
40698
|
recentTransactions: PaginatedRecentTransactionList | undefined;
|
|
40699
|
+
balances: PaginatedUserBalanceList | undefined;
|
|
40700
|
+
isLoadingBalances: boolean;
|
|
40701
|
+
balancesError: Error | undefined;
|
|
40702
|
+
refreshBalances: () => Promise<void>;
|
|
40703
|
+
balanceSummary: UserBalance | undefined;
|
|
40704
|
+
isLoadingSummary: boolean;
|
|
40705
|
+
summaryError: Error | undefined;
|
|
40706
|
+
refreshSummary: () => Promise<void>;
|
|
40707
|
+
retrieveBalance: (id: number) => Promise<UserBalance | undefined>;
|
|
40708
|
+
createPayment: (data: PaymentCreateRequest) => Promise<PaymentCreate>;
|
|
40573
40709
|
isLoadingOverview: boolean;
|
|
40574
40710
|
overviewError: Error | undefined;
|
|
40575
40711
|
refreshOverview: () => Promise<void>;
|
|
@@ -40579,6 +40715,25 @@ declare function OverviewProvider({ children }: {
|
|
|
40579
40715
|
}): react_jsx_runtime.JSX.Element;
|
|
40580
40716
|
declare function useOverviewContext(): OverviewContextValue;
|
|
40581
40717
|
|
|
40718
|
+
interface RootPaymentsContextValue {
|
|
40719
|
+
currencies: PaginatedCurrencyListList | undefined;
|
|
40720
|
+
isLoadingCurrencies: boolean;
|
|
40721
|
+
currenciesError: Error | undefined;
|
|
40722
|
+
refreshCurrencies: () => Promise<void>;
|
|
40723
|
+
providerCurrencies: PaginatedProviderCurrencyList | undefined;
|
|
40724
|
+
isLoadingProviderCurrencies: boolean;
|
|
40725
|
+
providerCurrenciesError: Error | undefined;
|
|
40726
|
+
refreshProviderCurrencies: () => Promise<void>;
|
|
40727
|
+
networks: PaginatedNetworkList | undefined;
|
|
40728
|
+
isLoadingNetworks: boolean;
|
|
40729
|
+
networksError: Error | undefined;
|
|
40730
|
+
refreshNetworks: () => Promise<void>;
|
|
40731
|
+
}
|
|
40732
|
+
declare function RootPaymentsProvider({ children }: {
|
|
40733
|
+
children: ReactNode;
|
|
40734
|
+
}): react_jsx_runtime.JSX.Element;
|
|
40735
|
+
declare function useRootPaymentsContext(): RootPaymentsContextValue;
|
|
40736
|
+
|
|
40582
40737
|
interface KnowbaseChatContextValue {
|
|
40583
40738
|
chats: PaginatedChatResponseList$1 | undefined;
|
|
40584
40739
|
isLoadingChats: boolean;
|
|
@@ -40644,4 +40799,4 @@ declare function KnowbaseSessionsProvider({ children }: {
|
|
|
40644
40799
|
}): react_jsx_runtime.JSX.Element;
|
|
40645
40800
|
declare function useKnowbaseSessionsContext(): KnowbaseSessionsContextValue;
|
|
40646
40801
|
|
|
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 };
|
|
40802
|
+
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, api as default, getAPIInstance, isAPIConfigured, reconfigureAPI, resetAPI, shouldRetry, useAccountsContext, useApiKeysContext, useBalancesContext, useCurrenciesContext, useKnowbaseChatContext, useKnowbaseDocumentsContext, useKnowbaseSessionsContext, useLeadsContext, useNewsletterContext, useOverviewContext, usePaymentsContext, useRootPaymentsContext, useSupportContext, withRetry };
|