@circle-fin/user-controlled-wallets 10.0.0 → 10.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1614 @@
1
+ import * as axios from 'axios';
2
+ import { AxiosRequestConfig, AxiosInstance, AxiosPromise } from 'axios';
3
+
4
+ /**
5
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6
+ * https://openapi-generator.tech
7
+ * Do not edit the class manually.
8
+ */
9
+ interface ConfigurationParameters {
10
+ apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
11
+ username?: string;
12
+ password?: string;
13
+ accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
14
+ basePath?: string;
15
+ serverIndex?: number;
16
+ baseOptions?: any;
17
+ formDataCtor?: new () => any;
18
+ }
19
+ declare class Configuration {
20
+ /**
21
+ * parameter for apiKey security
22
+ * @param name security name
23
+ * @memberof Configuration
24
+ */
25
+ apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
26
+ /**
27
+ * parameter for basic security
28
+ *
29
+ * @type {string}
30
+ * @memberof Configuration
31
+ */
32
+ username?: string;
33
+ /**
34
+ * parameter for basic security
35
+ *
36
+ * @type {string}
37
+ * @memberof Configuration
38
+ */
39
+ password?: string;
40
+ /**
41
+ * parameter for oauth2 security
42
+ * @param name security name
43
+ * @param scopes oauth2 scope
44
+ * @memberof Configuration
45
+ */
46
+ accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
47
+ /**
48
+ * override base path
49
+ *
50
+ * @type {string}
51
+ * @memberof Configuration
52
+ */
53
+ basePath?: string;
54
+ /**
55
+ * override server index
56
+ *
57
+ * @type {number}
58
+ * @memberof Configuration
59
+ */
60
+ serverIndex?: number;
61
+ /**
62
+ * base options for axios calls
63
+ *
64
+ * @type {any}
65
+ * @memberof Configuration
66
+ */
67
+ baseOptions?: any;
68
+ /**
69
+ * The FormData constructor that will be used to create multipart form data
70
+ * requests. You can inject this here so that execution environments that
71
+ * do not support the FormData class can still run the generated client.
72
+ *
73
+ * @type {new () => FormData}
74
+ */
75
+ formDataCtor?: new () => any;
76
+ constructor(param?: ConfigurationParameters);
77
+ /**
78
+ * Check if the given MIME is a JSON MIME.
79
+ * JSON MIME examples:
80
+ * application/json
81
+ * application/json; charset=UTF8
82
+ * APPLICATION/JSON
83
+ * application/vnd.company+json
84
+ * @param mime - MIME (Multipurpose Internet Mail Extensions)
85
+ * @return True if the given MIME is JSON, false otherwise.
86
+ */
87
+ isJsonMime(mime: string): boolean;
88
+ }
89
+
90
+ /**
91
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
92
+ * https://openapi-generator.tech
93
+ * Do not edit the class manually.
94
+ */
95
+
96
+ /**
97
+ *
98
+ * @export
99
+ * @interface RequestArgs
100
+ */
101
+ interface RequestArgs {
102
+ url: string;
103
+ options: AxiosRequestConfig;
104
+ }
105
+ /**
106
+ *
107
+ * @export
108
+ * @class BaseAPI
109
+ */
110
+ declare class BaseAPI {
111
+ protected basePath: string;
112
+ protected axios: AxiosInstance;
113
+ protected configuration: Configuration | undefined;
114
+ constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance);
115
+ }
116
+
117
+ /**
118
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
119
+ * https://openapi-generator.tech
120
+ * Do not edit the class manually.
121
+ */
122
+ /**
123
+ *
124
+ * @export
125
+ * @interface BadRequestResponse
126
+ */
127
+ interface BadRequestResponse {
128
+ /**
129
+ * Code that corresponds to the error.
130
+ * @type {number}
131
+ * @memberof BadRequestResponse
132
+ */
133
+ 'code': number;
134
+ /**
135
+ * Message that describes the error.
136
+ * @type {string}
137
+ * @memberof BadRequestResponse
138
+ */
139
+ 'message': string;
140
+ }
141
+
142
+ /**
143
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
144
+ * https://openapi-generator.tech
145
+ * Do not edit the class manually.
146
+ */
147
+ /**
148
+ * The blockchain network that the resource is to be created on or is currently on.
149
+ * @export
150
+ * @enum {string}
151
+ */
152
+ declare const Blockchain: {
153
+ readonly Eth: "ETH";
154
+ readonly EthSepolia: "ETH-SEPOLIA";
155
+ readonly Avax: "AVAX";
156
+ readonly AvaxFuji: "AVAX-FUJI";
157
+ readonly Matic: "MATIC";
158
+ readonly MaticAmoy: "MATIC-AMOY";
159
+ readonly Sol: "SOL";
160
+ readonly SolDevnet: "SOL-DEVNET";
161
+ readonly Arb: "ARB";
162
+ readonly ArbSepolia: "ARB-SEPOLIA";
163
+ readonly Near: "NEAR";
164
+ readonly NearTestnet: "NEAR-TESTNET";
165
+ readonly Evm: "EVM";
166
+ readonly EvmTestnet: "EVM-TESTNET";
167
+ readonly Uni: "UNI";
168
+ readonly UniSepolia: "UNI-SEPOLIA";
169
+ readonly Base: "BASE";
170
+ readonly BaseSepolia: "BASE-SEPOLIA";
171
+ readonly Op: "OP";
172
+ readonly OpSepolia: "OP-SEPOLIA";
173
+ readonly Aptos: "APTOS";
174
+ readonly AptosTestnet: "APTOS-TESTNET";
175
+ readonly ArcTestnet: "ARC-TESTNET";
176
+ readonly Monad: "MONAD";
177
+ readonly MonadTestnet: "MONAD-TESTNET";
178
+ };
179
+ type Blockchain = typeof Blockchain[keyof typeof Blockchain];
180
+
181
+ /**
182
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
183
+ * https://openapi-generator.tech
184
+ * Do not edit the class manually.
185
+ */
186
+ /**
187
+ *
188
+ * @export
189
+ * @interface CreateMonitoredTokensRequest
190
+ */
191
+ interface CreateMonitoredTokensRequest {
192
+ /**
193
+ * The list of tokens to add to the monitored tokens list. When fetching wallet balances, only these tokens will be shown by default.
194
+ * @type {Array<string>}
195
+ * @memberof CreateMonitoredTokensRequest
196
+ */
197
+ 'tokenIds': Array<string>;
198
+ }
199
+
200
+ /**
201
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
202
+ * https://openapi-generator.tech
203
+ * Do not edit the class manually.
204
+ */
205
+ /**
206
+ *
207
+ * @export
208
+ * @enum {string}
209
+ */
210
+ declare const NotificationType: {
211
+ readonly Star: "*";
212
+ readonly Transactions: "transactions.*";
213
+ readonly TransactionsInbound: "transactions.inbound";
214
+ readonly TransactionsOutbound: "transactions.outbound";
215
+ readonly Challenges: "challenges.*";
216
+ readonly ChallengesAccelerateTransaction: "challenges.accelerateTransaction";
217
+ readonly ChallengesCancelTransaction: "challenges.cancelTransaction";
218
+ readonly ChallengesChangePin: "challenges.changePin";
219
+ readonly ChallengesContractExecution: "challenges.contractExecution";
220
+ readonly ChallengesCreateTransaction: "challenges.createTransaction";
221
+ readonly ChallengesCreateWallet: "challenges.createWallet";
222
+ readonly ChallengesInitialize: "challenges.initialize";
223
+ readonly ChallengesRestorePin: "challenges.restorePin";
224
+ readonly ChallengesSetPin: "challenges.setPin";
225
+ readonly ChallengesSetSecurityQuestions: "challenges.setSecurityQuestions";
226
+ readonly Contracts: "contracts.*";
227
+ readonly ContractsEventLog: "contracts.eventLog";
228
+ readonly ModularWallet: "modularWallet.*";
229
+ readonly ModularWalletUserOperation: "modularWallet.userOperation";
230
+ readonly ModularWalletInboundTransfer: "modularWallet.inboundTransfer";
231
+ readonly ModularWalletOutboundTransfer: "modularWallet.outboundTransfer";
232
+ readonly TravelRule: "travelRule.*";
233
+ readonly TravelRuleStatusUpdate: "travelRule.statusUpdate";
234
+ readonly TravelRuleDeny: "travelRule.deny";
235
+ readonly TravelRuleApprove: "travelRule.approve";
236
+ readonly RampSession: "rampSession.*";
237
+ readonly RampSessionCompleted: "rampSession.completed";
238
+ readonly RampSessionDepositReceived: "rampSession.depositReceived";
239
+ readonly RampSessionExpired: "rampSession.expired";
240
+ readonly RampSessionFailed: "rampSession.failed";
241
+ readonly RampSessionKycApproved: "rampSession.kycApproved";
242
+ readonly RampSessionKycRejected: "rampSession.kycRejected";
243
+ readonly RampSessionKycSubmitted: "rampSession.kycSubmitted";
244
+ };
245
+ type NotificationType = typeof NotificationType[keyof typeof NotificationType];
246
+
247
+ /**
248
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
249
+ * https://openapi-generator.tech
250
+ * Do not edit the class manually.
251
+ */
252
+
253
+ /**
254
+ * Required parameters to create a new subscription.
255
+ * @export
256
+ * @interface CreateSubscriptionRequest
257
+ */
258
+ interface CreateSubscriptionRequest {
259
+ /**
260
+ * URL of the endpoint to subscribe to notifications. Must be publicly accessible, use HTTPS, and respond with a 2XX status to a POST request.
261
+ * @type {string}
262
+ * @memberof CreateSubscriptionRequest
263
+ */
264
+ 'endpoint': string;
265
+ /**
266
+ * The notification types to subscribe to. If not provided, the webhook will be unrestricted, and a notification is sent for every notification type. If the wildcard (`*`) or any combination of the wildcard and a set of notification types is provided, the webhook will also be unrestricted. If a set of notification types are provided, the webhook will be restricted. The restricted status of the webhook is returned in the response object. Each category of notification types also has a wildcard, which will restrict to all notification types from that category.
267
+ * @type {Array<NotificationType>}
268
+ * @memberof CreateSubscriptionRequest
269
+ */
270
+ 'notificationTypes'?: Array<NotificationType>;
271
+ }
272
+
273
+ /**
274
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
275
+ * https://openapi-generator.tech
276
+ * Do not edit the class manually.
277
+ */
278
+ /**
279
+ *
280
+ * @export
281
+ * @interface DeleteMonitoredTokensRequest
282
+ */
283
+ interface DeleteMonitoredTokensRequest {
284
+ /**
285
+ * Token ids to be removed from the monitored tokens list. Once removed, these tokens will no longer be shown by default when fetching wallet balances.
286
+ * @type {Array<string>}
287
+ * @memberof DeleteMonitoredTokensRequest
288
+ */
289
+ 'tokenIds': Array<string>;
290
+ }
291
+
292
+ /**
293
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
294
+ * https://openapi-generator.tech
295
+ * Do not edit the class manually.
296
+ */
297
+ /**
298
+ *
299
+ * @export
300
+ * @interface EntityConfigData
301
+ */
302
+ interface EntityConfigData {
303
+ /**
304
+ * System-generated unique identifier of the resource.
305
+ * @type {string}
306
+ * @memberof EntityConfigData
307
+ */
308
+ 'appId'?: string;
309
+ }
310
+
311
+ /**
312
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
313
+ * https://openapi-generator.tech
314
+ * Do not edit the class manually.
315
+ */
316
+
317
+ /**
318
+ *
319
+ * @export
320
+ * @interface EntityConfig
321
+ */
322
+ interface EntityConfig {
323
+ /**
324
+ *
325
+ * @type {EntityConfigData}
326
+ * @memberof EntityConfig
327
+ */
328
+ 'data'?: EntityConfigData;
329
+ }
330
+
331
+ /**
332
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
333
+ * https://openapi-generator.tech
334
+ * Do not edit the class manually.
335
+ */
336
+ /**
337
+ * The testnet blockchain network the resource will be created on or is currently on.
338
+ * @export
339
+ * @enum {string}
340
+ */
341
+ declare const TestnetBlockchain: {
342
+ readonly EthSepolia: "ETH-SEPOLIA";
343
+ readonly AvaxFuji: "AVAX-FUJI";
344
+ readonly MaticAmoy: "MATIC-AMOY";
345
+ readonly SolDevnet: "SOL-DEVNET";
346
+ readonly ArbSepolia: "ARB-SEPOLIA";
347
+ readonly UniSepolia: "UNI-SEPOLIA";
348
+ readonly BaseSepolia: "BASE-SEPOLIA";
349
+ readonly OpSepolia: "OP-SEPOLIA";
350
+ readonly AptosTestnet: "APTOS-TESTNET";
351
+ readonly ArcTestnet: "ARC-TESTNET";
352
+ readonly MonadTestnet: "MONAD-TESTNET";
353
+ };
354
+ type TestnetBlockchain = typeof TestnetBlockchain[keyof typeof TestnetBlockchain];
355
+
356
+ /**
357
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
358
+ * https://openapi-generator.tech
359
+ * Do not edit the class manually.
360
+ */
361
+
362
+ /**
363
+ *
364
+ * @export
365
+ * @interface FaucetRequest
366
+ */
367
+ interface FaucetRequest {
368
+ /**
369
+ * Blockchain generated unique identifier, associated with wallet (account), smart contract or other blockchain objects.
370
+ * @type {string}
371
+ * @memberof FaucetRequest
372
+ */
373
+ 'address': string;
374
+ /**
375
+ *
376
+ * @type {TestnetBlockchain}
377
+ * @memberof FaucetRequest
378
+ */
379
+ 'blockchain': TestnetBlockchain;
380
+ /**
381
+ * Request native testnet tokens.
382
+ * @type {boolean}
383
+ * @memberof FaucetRequest
384
+ */
385
+ 'native'?: boolean;
386
+ /**
387
+ * Request USDC testnet tokens.
388
+ * @type {boolean}
389
+ * @memberof FaucetRequest
390
+ */
391
+ 'usdc'?: boolean;
392
+ /**
393
+ * Request EURC testnet tokens.
394
+ * @type {boolean}
395
+ * @memberof FaucetRequest
396
+ */
397
+ 'eurc'?: boolean;
398
+ }
399
+
400
+ /**
401
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
402
+ * https://openapi-generator.tech
403
+ * Do not edit the class manually.
404
+ */
405
+ /**
406
+ *
407
+ * @export
408
+ * @interface ModelError
409
+ */
410
+ interface ModelError {
411
+ /**
412
+ * Code that corresponds to the error.
413
+ * @type {number}
414
+ * @memberof ModelError
415
+ */
416
+ 'code': number;
417
+ /**
418
+ * Message that describes the error.
419
+ * @type {string}
420
+ * @memberof ModelError
421
+ */
422
+ 'message': string;
423
+ }
424
+
425
+ /**
426
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
427
+ * https://openapi-generator.tech
428
+ * Do not edit the class manually.
429
+ */
430
+ /**
431
+ *
432
+ * @export
433
+ * @enum {string}
434
+ */
435
+ declare const TokenStandard: {
436
+ readonly Erc20: "ERC20";
437
+ readonly Erc721: "ERC721";
438
+ readonly Erc1155: "ERC1155";
439
+ readonly Fungible: "Fungible";
440
+ readonly FungibleAsset: "FungibleAsset";
441
+ readonly NonFungible: "NonFungible";
442
+ readonly NonFungibleEdition: "NonFungibleEdition";
443
+ readonly ProgrammableNonFungible: "ProgrammableNonFungible";
444
+ readonly ProgrammableNonFungibleEdition: "ProgrammableNonFungibleEdition";
445
+ };
446
+ type TokenStandard = typeof TokenStandard[keyof typeof TokenStandard];
447
+
448
+ /**
449
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
450
+ * https://openapi-generator.tech
451
+ * Do not edit the class manually.
452
+ */
453
+
454
+ /**
455
+ *
456
+ * @export
457
+ * @interface Token
458
+ */
459
+ interface Token {
460
+ /**
461
+ * System-generated unique identifier of the resource.
462
+ * @type {string}
463
+ * @memberof Token
464
+ */
465
+ 'id': string;
466
+ /**
467
+ * Blockchain name of the specified token.
468
+ * @type {string}
469
+ * @memberof Token
470
+ */
471
+ 'name'?: string;
472
+ /**
473
+ *
474
+ * @type {TokenStandard}
475
+ * @memberof Token
476
+ */
477
+ 'standard'?: TokenStandard;
478
+ /**
479
+ *
480
+ * @type {Blockchain}
481
+ * @memberof Token
482
+ */
483
+ 'blockchain': Blockchain;
484
+ /**
485
+ * Number of decimal places shown in the token amount.
486
+ * @type {number}
487
+ * @memberof Token
488
+ */
489
+ 'decimals'?: number;
490
+ /**
491
+ * Defines if the token is a native token of the specified blockchain. If TRUE, the token is a native token.
492
+ * @type {boolean}
493
+ * @memberof Token
494
+ */
495
+ 'isNative': boolean;
496
+ /**
497
+ * Blockchain symbol of the specified token.
498
+ * @type {string}
499
+ * @memberof Token
500
+ */
501
+ 'symbol'?: string;
502
+ /**
503
+ * Blockchain generated unique identifier, associated with wallet (account), smart contract or other blockchain objects.
504
+ * @type {string}
505
+ * @memberof Token
506
+ */
507
+ 'tokenAddress'?: string;
508
+ /**
509
+ * Date and time the resource was last updated, in ISO-8601 UTC format.
510
+ * @type {string}
511
+ * @memberof Token
512
+ */
513
+ 'updateDate': string;
514
+ /**
515
+ * Date and time the resource was created, in ISO-8601 UTC format.
516
+ * @type {string}
517
+ * @memberof Token
518
+ */
519
+ 'createDate': string;
520
+ }
521
+
522
+ /**
523
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
524
+ * https://openapi-generator.tech
525
+ * Do not edit the class manually.
526
+ */
527
+ /**
528
+ *
529
+ * @export
530
+ * @enum {string}
531
+ */
532
+ declare const TokenMonitorScope: {
533
+ readonly Selected: "SELECTED";
534
+ readonly MonitorAll: "MONITOR_ALL";
535
+ };
536
+ type TokenMonitorScope = typeof TokenMonitorScope[keyof typeof TokenMonitorScope];
537
+
538
+ /**
539
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
540
+ * https://openapi-generator.tech
541
+ * Do not edit the class manually.
542
+ */
543
+
544
+ /**
545
+ *
546
+ * @export
547
+ * @interface MonitoredTokensData
548
+ */
549
+ interface MonitoredTokensData {
550
+ /**
551
+ *
552
+ * @type {TokenMonitorScope}
553
+ * @memberof MonitoredTokensData
554
+ */
555
+ 'scope'?: TokenMonitorScope;
556
+ /**
557
+ * The list of tokens that have been added to the monitored tokens list. When fetching wallet balances, only these tokens will be shown by default.
558
+ * @type {Array<Token>}
559
+ * @memberof MonitoredTokensData
560
+ */
561
+ 'tokens'?: Array<Token>;
562
+ }
563
+
564
+ /**
565
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
566
+ * https://openapi-generator.tech
567
+ * Do not edit the class manually.
568
+ */
569
+
570
+ /**
571
+ *
572
+ * @export
573
+ * @interface MonitoredTokens
574
+ */
575
+ interface MonitoredTokens {
576
+ /**
577
+ *
578
+ * @type {MonitoredTokensData}
579
+ * @memberof MonitoredTokens
580
+ */
581
+ 'data'?: MonitoredTokensData;
582
+ }
583
+
584
+ /**
585
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
586
+ * https://openapi-generator.tech
587
+ * Do not edit the class manually.
588
+ */
589
+ /**
590
+ *
591
+ * @export
592
+ * @interface NotAuthorizedResponse
593
+ */
594
+ interface NotAuthorizedResponse {
595
+ /**
596
+ * Code that corresponds to the error.
597
+ * @type {number}
598
+ * @memberof NotAuthorizedResponse
599
+ */
600
+ 'code': number;
601
+ /**
602
+ * Message that describes the error.
603
+ * @type {string}
604
+ * @memberof NotAuthorizedResponse
605
+ */
606
+ 'message': string;
607
+ }
608
+
609
+ /**
610
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
611
+ * https://openapi-generator.tech
612
+ * Do not edit the class manually.
613
+ */
614
+ /**
615
+ *
616
+ * @export
617
+ * @interface NotFoundResponse
618
+ */
619
+ interface NotFoundResponse {
620
+ /**
621
+ * Code that corresponds to the error.
622
+ * @type {number}
623
+ * @memberof NotFoundResponse
624
+ */
625
+ 'code': number;
626
+ /**
627
+ * Message that describes the error.
628
+ * @type {string}
629
+ * @memberof NotFoundResponse
630
+ */
631
+ 'message': string;
632
+ }
633
+
634
+ /**
635
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
636
+ * https://openapi-generator.tech
637
+ * Do not edit the class manually.
638
+ */
639
+ /**
640
+ *
641
+ * @export
642
+ * @interface NotificationSignaturePublicKeyData
643
+ */
644
+ interface NotificationSignaturePublicKeyData {
645
+ /**
646
+ *
647
+ * @type {string}
648
+ * @memberof NotificationSignaturePublicKeyData
649
+ */
650
+ 'id': string;
651
+ /**
652
+ *
653
+ * @type {string}
654
+ * @memberof NotificationSignaturePublicKeyData
655
+ */
656
+ 'algorithm': string;
657
+ /**
658
+ *
659
+ * @type {string}
660
+ * @memberof NotificationSignaturePublicKeyData
661
+ */
662
+ 'publicKey': string;
663
+ /**
664
+ *
665
+ * @type {string}
666
+ * @memberof NotificationSignaturePublicKeyData
667
+ */
668
+ 'createDate': string;
669
+ }
670
+
671
+ /**
672
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
673
+ * https://openapi-generator.tech
674
+ * Do not edit the class manually.
675
+ */
676
+
677
+ /**
678
+ *
679
+ * @export
680
+ * @interface NotificationSignaturePublicKey
681
+ */
682
+ interface NotificationSignaturePublicKey {
683
+ /**
684
+ *
685
+ * @type {NotificationSignaturePublicKeyData}
686
+ * @memberof NotificationSignaturePublicKey
687
+ */
688
+ 'data'?: NotificationSignaturePublicKeyData;
689
+ }
690
+
691
+ /**
692
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
693
+ * https://openapi-generator.tech
694
+ * Do not edit the class manually.
695
+ */
696
+ /**
697
+ *
698
+ * @export
699
+ * @interface Ping
700
+ */
701
+ interface Ping {
702
+ /**
703
+ * Response to a ping.
704
+ * @type {string}
705
+ * @memberof Ping
706
+ */
707
+ 'message': string;
708
+ }
709
+
710
+ /**
711
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
712
+ * https://openapi-generator.tech
713
+ * Do not edit the class manually.
714
+ */
715
+ /**
716
+ *
717
+ * @export
718
+ * @interface PublicKeyData
719
+ */
720
+ interface PublicKeyData {
721
+ /**
722
+ *
723
+ * @type {string}
724
+ * @memberof PublicKeyData
725
+ */
726
+ 'publicKey'?: string;
727
+ }
728
+
729
+ /**
730
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
731
+ * https://openapi-generator.tech
732
+ * Do not edit the class manually.
733
+ */
734
+
735
+ /**
736
+ *
737
+ * @export
738
+ * @interface PublicKey
739
+ */
740
+ interface PublicKey {
741
+ /**
742
+ *
743
+ * @type {PublicKeyData}
744
+ * @memberof PublicKey
745
+ */
746
+ 'data'?: PublicKeyData;
747
+ }
748
+
749
+ /**
750
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
751
+ * https://openapi-generator.tech
752
+ * Do not edit the class manually.
753
+ */
754
+
755
+ /**
756
+ * Contains information about a webhook notification subscription.
757
+ * @export
758
+ * @interface Subscription
759
+ */
760
+ interface Subscription {
761
+ /**
762
+ * System-generated unique identifier of the resource.
763
+ * @type {string}
764
+ * @memberof Subscription
765
+ */
766
+ 'id': string;
767
+ /**
768
+ * Name of the webhook notification subscription.
769
+ * @type {string}
770
+ * @memberof Subscription
771
+ */
772
+ 'name': string;
773
+ /**
774
+ * URL of the endpoint subscribing to notifications. Must be enabled to receive notifications.
775
+ * @type {string}
776
+ * @memberof Subscription
777
+ */
778
+ 'endpoint': string;
779
+ /**
780
+ * Whether the subscription is enabled. `true` indicates the subscription is enabled.
781
+ * @type {boolean}
782
+ * @memberof Subscription
783
+ */
784
+ 'enabled': boolean;
785
+ /**
786
+ * Date and time the resource was created, in ISO-8601 UTC format.
787
+ * @type {string}
788
+ * @memberof Subscription
789
+ */
790
+ 'createDate': string;
791
+ /**
792
+ * Date and time the resource was last updated, in ISO-8601 UTC format.
793
+ * @type {string}
794
+ * @memberof Subscription
795
+ */
796
+ 'updateDate': string;
797
+ /**
798
+ * The notification types on which a notification will be sent.
799
+ * @type {Array<NotificationType>}
800
+ * @memberof Subscription
801
+ */
802
+ 'notificationTypes'?: Array<NotificationType>;
803
+ /**
804
+ * Whether the webhook is restricted to specific notification types. An unrestricted webhook will notify on all notification types. A restricted webhook will only notify on the notification types in the `notificationTypes` field.
805
+ * @type {boolean}
806
+ * @memberof Subscription
807
+ */
808
+ 'restricted'?: boolean;
809
+ }
810
+
811
+ /**
812
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
813
+ * https://openapi-generator.tech
814
+ * Do not edit the class manually.
815
+ */
816
+
817
+ /**
818
+ *
819
+ * @export
820
+ * @interface SubscriptionResponse
821
+ */
822
+ interface SubscriptionResponse {
823
+ /**
824
+ *
825
+ * @type {Subscription}
826
+ * @memberof SubscriptionResponse
827
+ */
828
+ 'data'?: Subscription;
829
+ }
830
+
831
+ /**
832
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
833
+ * https://openapi-generator.tech
834
+ * Do not edit the class manually.
835
+ */
836
+
837
+ /**
838
+ *
839
+ * @export
840
+ * @interface Subscriptions
841
+ */
842
+ interface Subscriptions {
843
+ /**
844
+ *
845
+ * @type {Array<Subscription>}
846
+ * @memberof Subscriptions
847
+ */
848
+ 'data'?: Array<Subscription>;
849
+ }
850
+
851
+ /**
852
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
853
+ * https://openapi-generator.tech
854
+ * Do not edit the class manually.
855
+ */
856
+ /**
857
+ *
858
+ * @export
859
+ * @interface UpdateMonitoredTokensRequest
860
+ */
861
+ interface UpdateMonitoredTokensRequest {
862
+ /**
863
+ * The list of tokens that will be added to the monitored tokens list. When fetching wallet balances, these tokens will be shown by default.
864
+ * @type {Array<string>}
865
+ * @memberof UpdateMonitoredTokensRequest
866
+ */
867
+ 'tokenIds'?: Array<string>;
868
+ }
869
+
870
+ /**
871
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
872
+ * https://openapi-generator.tech
873
+ * Do not edit the class manually.
874
+ */
875
+
876
+ /**
877
+ *
878
+ * @export
879
+ * @interface UpdateMonitoredTokensScopeRequest
880
+ */
881
+ interface UpdateMonitoredTokensScopeRequest {
882
+ /**
883
+ *
884
+ * @type {TokenMonitorScope}
885
+ * @memberof UpdateMonitoredTokensScopeRequest
886
+ */
887
+ 'scope': TokenMonitorScope;
888
+ }
889
+
890
+ /**
891
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
892
+ * https://openapi-generator.tech
893
+ * Do not edit the class manually.
894
+ */
895
+ /**
896
+ *
897
+ * @export
898
+ * @interface UpdateSubscriptionRequest
899
+ */
900
+ interface UpdateSubscriptionRequest {
901
+ /**
902
+ * Name of the subscription.
903
+ * @type {string}
904
+ * @memberof UpdateSubscriptionRequest
905
+ */
906
+ 'name': string;
907
+ /**
908
+ * Whether the subscription is enabled. `true` indicates the subscription is active.
909
+ * @type {boolean}
910
+ * @memberof UpdateSubscriptionRequest
911
+ */
912
+ 'enabled': boolean;
913
+ }
914
+
915
+ /**
916
+ * DeveloperAccountApi - axios parameter creator
917
+ * @export
918
+ */
919
+ declare const DeveloperAccountApiAxiosParamCreator: (configuration?: Configuration) => {
920
+ /**
921
+ * Get the app ID associated to the entity.
922
+ * @summary Get configuration for entity
923
+ * @param {*} [options] Override http request option.
924
+ * @throws {RequiredError}
925
+ */
926
+ getEntityConfig: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
927
+ /**
928
+ * Get the public key associated with the entity.
929
+ * @summary Get public key for entity
930
+ * @param {*} [options] Override http request option.
931
+ * @throws {RequiredError}
932
+ */
933
+ getPublicKey: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
934
+ };
935
+ /**
936
+ * DeveloperAccountApi - functional programming interface
937
+ * @export
938
+ */
939
+ declare const DeveloperAccountApiFp: (configuration?: Configuration) => {
940
+ /**
941
+ * Get the app ID associated to the entity.
942
+ * @summary Get configuration for entity
943
+ * @param {*} [options] Override http request option.
944
+ * @throws {RequiredError}
945
+ */
946
+ getEntityConfig(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntityConfig>>;
947
+ /**
948
+ * Get the public key associated with the entity.
949
+ * @summary Get public key for entity
950
+ * @param {*} [options] Override http request option.
951
+ * @throws {RequiredError}
952
+ */
953
+ getPublicKey(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PublicKey>>;
954
+ };
955
+ /**
956
+ * DeveloperAccountApi - factory interface
957
+ * @export
958
+ */
959
+ declare const DeveloperAccountApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
960
+ /**
961
+ * Get the app ID associated to the entity.
962
+ * @summary Get configuration for entity
963
+ * @param {*} [options] Override http request option.
964
+ * @throws {RequiredError}
965
+ */
966
+ getEntityConfig(options?: any): AxiosPromise<EntityConfig>;
967
+ /**
968
+ * Get the public key associated with the entity.
969
+ * @summary Get public key for entity
970
+ * @param {*} [options] Override http request option.
971
+ * @throws {RequiredError}
972
+ */
973
+ getPublicKey(options?: any): AxiosPromise<PublicKey>;
974
+ };
975
+ /**
976
+ * DeveloperAccountApi - object-oriented interface
977
+ * @export
978
+ * @class DeveloperAccountApi
979
+ * @extends {BaseAPI}
980
+ */
981
+ declare class DeveloperAccountApi extends BaseAPI {
982
+ /**
983
+ * Get the app ID associated to the entity.
984
+ * @summary Get configuration for entity
985
+ * @param {*} [options] Override http request option.
986
+ * @throws {RequiredError}
987
+ * @memberof DeveloperAccountApi
988
+ */
989
+ getEntityConfig(options?: AxiosRequestConfig): Promise<axios.AxiosResponse<EntityConfig, any, {}>>;
990
+ /**
991
+ * Get the public key associated with the entity.
992
+ * @summary Get public key for entity
993
+ * @param {*} [options] Override http request option.
994
+ * @throws {RequiredError}
995
+ * @memberof DeveloperAccountApi
996
+ */
997
+ getPublicKey(options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PublicKey, any, {}>>;
998
+ }
999
+
1000
+ /**
1001
+ * FaucetApi - axios parameter creator
1002
+ * @export
1003
+ */
1004
+ declare const FaucetApiAxiosParamCreator: (configuration?: Configuration) => {
1005
+ /**
1006
+ * Request testnet tokens for your wallet.
1007
+ * @summary Request testnet tokens
1008
+ * @param {string} [xRequestId] Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
1009
+ * @param {FaucetRequest} [faucetRequest]
1010
+ * @param {*} [options] Override http request option.
1011
+ * @throws {RequiredError}
1012
+ */
1013
+ requestTestnetTokens: (xRequestId?: string, faucetRequest?: FaucetRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1014
+ };
1015
+ /**
1016
+ * FaucetApi - functional programming interface
1017
+ * @export
1018
+ */
1019
+ declare const FaucetApiFp: (configuration?: Configuration) => {
1020
+ /**
1021
+ * Request testnet tokens for your wallet.
1022
+ * @summary Request testnet tokens
1023
+ * @param {string} [xRequestId] Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
1024
+ * @param {FaucetRequest} [faucetRequest]
1025
+ * @param {*} [options] Override http request option.
1026
+ * @throws {RequiredError}
1027
+ */
1028
+ requestTestnetTokens(xRequestId?: string, faucetRequest?: FaucetRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1029
+ };
1030
+ /**
1031
+ * FaucetApi - factory interface
1032
+ * @export
1033
+ */
1034
+ declare const FaucetApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1035
+ /**
1036
+ * Request testnet tokens for your wallet.
1037
+ * @summary Request testnet tokens
1038
+ * @param {string} [xRequestId] Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
1039
+ * @param {FaucetRequest} [faucetRequest]
1040
+ * @param {*} [options] Override http request option.
1041
+ * @throws {RequiredError}
1042
+ */
1043
+ requestTestnetTokens(xRequestId?: string, faucetRequest?: FaucetRequest, options?: any): AxiosPromise<void>;
1044
+ };
1045
+ /**
1046
+ * FaucetApi - object-oriented interface
1047
+ * @export
1048
+ * @class FaucetApi
1049
+ * @extends {BaseAPI}
1050
+ */
1051
+ declare class FaucetApi extends BaseAPI {
1052
+ /**
1053
+ * Request testnet tokens for your wallet.
1054
+ * @summary Request testnet tokens
1055
+ * @param {string} [xRequestId] Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
1056
+ * @param {FaucetRequest} [faucetRequest]
1057
+ * @param {*} [options] Override http request option.
1058
+ * @throws {RequiredError}
1059
+ * @memberof FaucetApi
1060
+ */
1061
+ requestTestnetTokens(xRequestId?: string, faucetRequest?: FaucetRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any, {}>>;
1062
+ }
1063
+
1064
+ /**
1065
+ * HealthApi - axios parameter creator
1066
+ * @export
1067
+ */
1068
+ declare const HealthApiAxiosParamCreator: (configuration?: Configuration) => {
1069
+ /**
1070
+ * Checks that the service is running.
1071
+ * @summary Ping
1072
+ * @param {*} [options] Override http request option.
1073
+ * @throws {RequiredError}
1074
+ */
1075
+ ping: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
1076
+ };
1077
+ /**
1078
+ * HealthApi - functional programming interface
1079
+ * @export
1080
+ */
1081
+ declare const HealthApiFp: (configuration?: Configuration) => {
1082
+ /**
1083
+ * Checks that the service is running.
1084
+ * @summary Ping
1085
+ * @param {*} [options] Override http request option.
1086
+ * @throws {RequiredError}
1087
+ */
1088
+ ping(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Ping>>;
1089
+ };
1090
+ /**
1091
+ * HealthApi - factory interface
1092
+ * @export
1093
+ */
1094
+ declare const HealthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1095
+ /**
1096
+ * Checks that the service is running.
1097
+ * @summary Ping
1098
+ * @param {*} [options] Override http request option.
1099
+ * @throws {RequiredError}
1100
+ */
1101
+ ping(options?: any): AxiosPromise<Ping>;
1102
+ };
1103
+ /**
1104
+ * HealthApi - object-oriented interface
1105
+ * @export
1106
+ * @class HealthApi
1107
+ * @extends {BaseAPI}
1108
+ */
1109
+ declare class HealthApi extends BaseAPI {
1110
+ /**
1111
+ * Checks that the service is running.
1112
+ * @summary Ping
1113
+ * @param {*} [options] Override http request option.
1114
+ * @throws {RequiredError}
1115
+ * @memberof HealthApi
1116
+ */
1117
+ ping(options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Ping, any, {}>>;
1118
+ }
1119
+
1120
+ /**
1121
+ * MonitorTokensApi - axios parameter creator
1122
+ * @export
1123
+ */
1124
+ declare const MonitorTokensApiAxiosParamCreator: (configuration?: Configuration) => {
1125
+ /**
1126
+ * Add a new token to the monitored token list.
1127
+ * @summary Set monitored tokens
1128
+ * @param {CreateMonitoredTokensRequest} createMonitoredTokensRequest Request body
1129
+ * @param {*} [options] Override http request option.
1130
+ * @throws {RequiredError}
1131
+ */
1132
+ createMonitoredTokens: (createMonitoredTokensRequest: CreateMonitoredTokensRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1133
+ /**
1134
+ * Delete tokens from the monitored token list.
1135
+ * @summary Delete monitored tokens
1136
+ * @param {DeleteMonitoredTokensRequest} deleteMonitoredTokensRequest Request body
1137
+ * @param {*} [options] Override http request option.
1138
+ * @throws {RequiredError}
1139
+ */
1140
+ deleteMonitoredTokens: (deleteMonitoredTokensRequest: DeleteMonitoredTokensRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1141
+ /**
1142
+ * Get monitored tokens
1143
+ * @summary Retrieve existing monitored tokens.
1144
+ * @param {Blockchain} [blockchain] Filter by blockchain.
1145
+ * @param {string} [tokenAddress] Filter by token address.
1146
+ * @param {string} [symbol] Filter by token symbol.
1147
+ * @param {string} [from] Queries items created since the specified date-time (inclusive) in ISO 8601 format.
1148
+ * @param {string} [to] Queries items created before the specified date-time (inclusive) in ISO 8601 format.
1149
+ * @param {string} [pageBefore] A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter.
1150
+ * @param {string} [pageAfter] A collection ID value used for pagination. It marks the exclusive begin of a page. When provided, the collection resource will return the next n items after the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageBefore.
1151
+ * @param {number} [pageSize] Limits the number of items to be returned. Some collections have a strict upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used. If avoided, the collection will determine the page size itself.
1152
+ * @param {*} [options] Override http request option.
1153
+ * @throws {RequiredError}
1154
+ */
1155
+ listMonitoredTokens: (blockchain?: Blockchain, tokenAddress?: string, symbol?: string, from?: string, to?: string, pageBefore?: string, pageAfter?: string, pageSize?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1156
+ /**
1157
+ * Upsert the monitored token list.
1158
+ * @summary Update monitored tokens
1159
+ * @param {UpdateMonitoredTokensRequest} updateMonitoredTokensRequest Request body
1160
+ * @param {*} [options] Override http request option.
1161
+ * @throws {RequiredError}
1162
+ */
1163
+ updateMonitoredTokens: (updateMonitoredTokensRequest: UpdateMonitoredTokensRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1164
+ /**
1165
+ * Select between monitoring all tokens or selected tokens added to the monitored tokens list.
1166
+ * @summary Update monitored tokens scope
1167
+ * @param {UpdateMonitoredTokensScopeRequest} updateMonitoredTokensScopeRequest Request body
1168
+ * @param {*} [options] Override http request option.
1169
+ * @throws {RequiredError}
1170
+ */
1171
+ updateMonitoredTokensScope: (updateMonitoredTokensScopeRequest: UpdateMonitoredTokensScopeRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1172
+ };
1173
+ /**
1174
+ * MonitorTokensApi - functional programming interface
1175
+ * @export
1176
+ */
1177
+ declare const MonitorTokensApiFp: (configuration?: Configuration) => {
1178
+ /**
1179
+ * Add a new token to the monitored token list.
1180
+ * @summary Set monitored tokens
1181
+ * @param {CreateMonitoredTokensRequest} createMonitoredTokensRequest Request body
1182
+ * @param {*} [options] Override http request option.
1183
+ * @throws {RequiredError}
1184
+ */
1185
+ createMonitoredTokens(createMonitoredTokensRequest: CreateMonitoredTokensRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MonitoredTokens>>;
1186
+ /**
1187
+ * Delete tokens from the monitored token list.
1188
+ * @summary Delete monitored tokens
1189
+ * @param {DeleteMonitoredTokensRequest} deleteMonitoredTokensRequest Request body
1190
+ * @param {*} [options] Override http request option.
1191
+ * @throws {RequiredError}
1192
+ */
1193
+ deleteMonitoredTokens(deleteMonitoredTokensRequest: DeleteMonitoredTokensRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1194
+ /**
1195
+ * Get monitored tokens
1196
+ * @summary Retrieve existing monitored tokens.
1197
+ * @param {Blockchain} [blockchain] Filter by blockchain.
1198
+ * @param {string} [tokenAddress] Filter by token address.
1199
+ * @param {string} [symbol] Filter by token symbol.
1200
+ * @param {string} [from] Queries items created since the specified date-time (inclusive) in ISO 8601 format.
1201
+ * @param {string} [to] Queries items created before the specified date-time (inclusive) in ISO 8601 format.
1202
+ * @param {string} [pageBefore] A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter.
1203
+ * @param {string} [pageAfter] A collection ID value used for pagination. It marks the exclusive begin of a page. When provided, the collection resource will return the next n items after the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageBefore.
1204
+ * @param {number} [pageSize] Limits the number of items to be returned. Some collections have a strict upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used. If avoided, the collection will determine the page size itself.
1205
+ * @param {*} [options] Override http request option.
1206
+ * @throws {RequiredError}
1207
+ */
1208
+ listMonitoredTokens(blockchain?: Blockchain, tokenAddress?: string, symbol?: string, from?: string, to?: string, pageBefore?: string, pageAfter?: string, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MonitoredTokens>>;
1209
+ /**
1210
+ * Upsert the monitored token list.
1211
+ * @summary Update monitored tokens
1212
+ * @param {UpdateMonitoredTokensRequest} updateMonitoredTokensRequest Request body
1213
+ * @param {*} [options] Override http request option.
1214
+ * @throws {RequiredError}
1215
+ */
1216
+ updateMonitoredTokens(updateMonitoredTokensRequest: UpdateMonitoredTokensRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MonitoredTokens>>;
1217
+ /**
1218
+ * Select between monitoring all tokens or selected tokens added to the monitored tokens list.
1219
+ * @summary Update monitored tokens scope
1220
+ * @param {UpdateMonitoredTokensScopeRequest} updateMonitoredTokensScopeRequest Request body
1221
+ * @param {*} [options] Override http request option.
1222
+ * @throws {RequiredError}
1223
+ */
1224
+ updateMonitoredTokensScope(updateMonitoredTokensScopeRequest: UpdateMonitoredTokensScopeRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1225
+ };
1226
+ /**
1227
+ * MonitorTokensApi - factory interface
1228
+ * @export
1229
+ */
1230
+ declare const MonitorTokensApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1231
+ /**
1232
+ * Add a new token to the monitored token list.
1233
+ * @summary Set monitored tokens
1234
+ * @param {CreateMonitoredTokensRequest} createMonitoredTokensRequest Request body
1235
+ * @param {*} [options] Override http request option.
1236
+ * @throws {RequiredError}
1237
+ */
1238
+ createMonitoredTokens(createMonitoredTokensRequest: CreateMonitoredTokensRequest, options?: any): AxiosPromise<MonitoredTokens>;
1239
+ /**
1240
+ * Delete tokens from the monitored token list.
1241
+ * @summary Delete monitored tokens
1242
+ * @param {DeleteMonitoredTokensRequest} deleteMonitoredTokensRequest Request body
1243
+ * @param {*} [options] Override http request option.
1244
+ * @throws {RequiredError}
1245
+ */
1246
+ deleteMonitoredTokens(deleteMonitoredTokensRequest: DeleteMonitoredTokensRequest, options?: any): AxiosPromise<void>;
1247
+ /**
1248
+ * Get monitored tokens
1249
+ * @summary Retrieve existing monitored tokens.
1250
+ * @param {Blockchain} [blockchain] Filter by blockchain.
1251
+ * @param {string} [tokenAddress] Filter by token address.
1252
+ * @param {string} [symbol] Filter by token symbol.
1253
+ * @param {string} [from] Queries items created since the specified date-time (inclusive) in ISO 8601 format.
1254
+ * @param {string} [to] Queries items created before the specified date-time (inclusive) in ISO 8601 format.
1255
+ * @param {string} [pageBefore] A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter.
1256
+ * @param {string} [pageAfter] A collection ID value used for pagination. It marks the exclusive begin of a page. When provided, the collection resource will return the next n items after the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageBefore.
1257
+ * @param {number} [pageSize] Limits the number of items to be returned. Some collections have a strict upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used. If avoided, the collection will determine the page size itself.
1258
+ * @param {*} [options] Override http request option.
1259
+ * @throws {RequiredError}
1260
+ */
1261
+ listMonitoredTokens(blockchain?: Blockchain, tokenAddress?: string, symbol?: string, from?: string, to?: string, pageBefore?: string, pageAfter?: string, pageSize?: number, options?: any): AxiosPromise<MonitoredTokens>;
1262
+ /**
1263
+ * Upsert the monitored token list.
1264
+ * @summary Update monitored tokens
1265
+ * @param {UpdateMonitoredTokensRequest} updateMonitoredTokensRequest Request body
1266
+ * @param {*} [options] Override http request option.
1267
+ * @throws {RequiredError}
1268
+ */
1269
+ updateMonitoredTokens(updateMonitoredTokensRequest: UpdateMonitoredTokensRequest, options?: any): AxiosPromise<MonitoredTokens>;
1270
+ /**
1271
+ * Select between monitoring all tokens or selected tokens added to the monitored tokens list.
1272
+ * @summary Update monitored tokens scope
1273
+ * @param {UpdateMonitoredTokensScopeRequest} updateMonitoredTokensScopeRequest Request body
1274
+ * @param {*} [options] Override http request option.
1275
+ * @throws {RequiredError}
1276
+ */
1277
+ updateMonitoredTokensScope(updateMonitoredTokensScopeRequest: UpdateMonitoredTokensScopeRequest, options?: any): AxiosPromise<void>;
1278
+ };
1279
+ /**
1280
+ * MonitorTokensApi - object-oriented interface
1281
+ * @export
1282
+ * @class MonitorTokensApi
1283
+ * @extends {BaseAPI}
1284
+ */
1285
+ declare class MonitorTokensApi extends BaseAPI {
1286
+ /**
1287
+ * Add a new token to the monitored token list.
1288
+ * @summary Set monitored tokens
1289
+ * @param {CreateMonitoredTokensRequest} createMonitoredTokensRequest Request body
1290
+ * @param {*} [options] Override http request option.
1291
+ * @throws {RequiredError}
1292
+ * @memberof MonitorTokensApi
1293
+ */
1294
+ createMonitoredTokens(createMonitoredTokensRequest: CreateMonitoredTokensRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<MonitoredTokens, any, {}>>;
1295
+ /**
1296
+ * Delete tokens from the monitored token list.
1297
+ * @summary Delete monitored tokens
1298
+ * @param {DeleteMonitoredTokensRequest} deleteMonitoredTokensRequest Request body
1299
+ * @param {*} [options] Override http request option.
1300
+ * @throws {RequiredError}
1301
+ * @memberof MonitorTokensApi
1302
+ */
1303
+ deleteMonitoredTokens(deleteMonitoredTokensRequest: DeleteMonitoredTokensRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any, {}>>;
1304
+ /**
1305
+ * Get monitored tokens
1306
+ * @summary Retrieve existing monitored tokens.
1307
+ * @param {Blockchain} [blockchain] Filter by blockchain.
1308
+ * @param {string} [tokenAddress] Filter by token address.
1309
+ * @param {string} [symbol] Filter by token symbol.
1310
+ * @param {string} [from] Queries items created since the specified date-time (inclusive) in ISO 8601 format.
1311
+ * @param {string} [to] Queries items created before the specified date-time (inclusive) in ISO 8601 format.
1312
+ * @param {string} [pageBefore] A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter.
1313
+ * @param {string} [pageAfter] A collection ID value used for pagination. It marks the exclusive begin of a page. When provided, the collection resource will return the next n items after the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageBefore.
1314
+ * @param {number} [pageSize] Limits the number of items to be returned. Some collections have a strict upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used. If avoided, the collection will determine the page size itself.
1315
+ * @param {*} [options] Override http request option.
1316
+ * @throws {RequiredError}
1317
+ * @memberof MonitorTokensApi
1318
+ */
1319
+ listMonitoredTokens(blockchain?: Blockchain, tokenAddress?: string, symbol?: string, from?: string, to?: string, pageBefore?: string, pageAfter?: string, pageSize?: number, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<MonitoredTokens, any, {}>>;
1320
+ /**
1321
+ * Upsert the monitored token list.
1322
+ * @summary Update monitored tokens
1323
+ * @param {UpdateMonitoredTokensRequest} updateMonitoredTokensRequest Request body
1324
+ * @param {*} [options] Override http request option.
1325
+ * @throws {RequiredError}
1326
+ * @memberof MonitorTokensApi
1327
+ */
1328
+ updateMonitoredTokens(updateMonitoredTokensRequest: UpdateMonitoredTokensRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<MonitoredTokens, any, {}>>;
1329
+ /**
1330
+ * Select between monitoring all tokens or selected tokens added to the monitored tokens list.
1331
+ * @summary Update monitored tokens scope
1332
+ * @param {UpdateMonitoredTokensScopeRequest} updateMonitoredTokensScopeRequest Request body
1333
+ * @param {*} [options] Override http request option.
1334
+ * @throws {RequiredError}
1335
+ * @memberof MonitorTokensApi
1336
+ */
1337
+ updateMonitoredTokensScope(updateMonitoredTokensScopeRequest: UpdateMonitoredTokensScopeRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any, {}>>;
1338
+ }
1339
+
1340
+ /**
1341
+ * WebhookSubscriptionsApi - axios parameter creator
1342
+ * @export
1343
+ */
1344
+ declare const WebhookSubscriptionsApiAxiosParamCreator: (configuration?: Configuration) => {
1345
+ /**
1346
+ * Create a notification subscription by configuring an endpoint to receive notifications. For details, see the [Notification Flows](https://developers.circle.com/wallets/webhook-notification-flows) guide.
1347
+ * @summary Create a notification subscription
1348
+ * @param {CreateSubscriptionRequest} createSubscriptionRequest Schema for the request payload to create a new subscription.
1349
+ * @param {string} [xRequestId] Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
1350
+ * @param {*} [options] Override http request option.
1351
+ * @throws {RequiredError}
1352
+ */
1353
+ createSubscription: (createSubscriptionRequest: CreateSubscriptionRequest, xRequestId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1354
+ /**
1355
+ * Delete an existing subscription.
1356
+ * @summary Delete a notification subscription
1357
+ * @param {string} id The universally unique identifier of the resource.
1358
+ * @param {string} [xRequestId] Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
1359
+ * @param {*} [options] Override http request option.
1360
+ * @throws {RequiredError}
1361
+ */
1362
+ deleteSubscription: (id: string, xRequestId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1363
+ /**
1364
+ * Get the public key and algorithm used to digitally sign webhook notifications. Verifying the digital signature ensures the notification came from Circle. In the headers of each webhook, you can find 1. `X-Circle-Signature`: a header containing the digital signature generated by Circle. 2. `X-Circle-Key-Id`: a header containing the UUID. This is will be used as the `ID` as URL parameter to retrieve the relevant public key.
1365
+ * @summary Get a notification signature public key
1366
+ * @param {string} id The universally unique identifier of the resource.
1367
+ * @param {string} [xRequestId] Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
1368
+ * @param {*} [options] Override http request option.
1369
+ * @throws {RequiredError}
1370
+ */
1371
+ getNotificationSignature: (id: string, xRequestId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1372
+ /**
1373
+ * Retrieve an existing notification subscription.
1374
+ * @summary Retrieve a notification subscription
1375
+ * @param {string} id The universally unique identifier of the resource.
1376
+ * @param {string} [xRequestId] Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
1377
+ * @param {*} [options] Override http request option.
1378
+ * @throws {RequiredError}
1379
+ */
1380
+ getSubscription: (id: string, xRequestId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1381
+ /**
1382
+ * Retrieve an array of existing notification subscriptions.
1383
+ * @summary Get all notification subscriptions
1384
+ * @param {*} [options] Override http request option.
1385
+ * @throws {RequiredError}
1386
+ */
1387
+ getSubscriptions: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
1388
+ /**
1389
+ * Update subscription endpoint to receive notifications.
1390
+ * @summary Update a notification subscription
1391
+ * @param {string} id The universally unique identifier of the resource.
1392
+ * @param {UpdateSubscriptionRequest} updateSubscriptionRequest Schema for the request payload to update a new subscription.
1393
+ * @param {string} [xRequestId] Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
1394
+ * @param {*} [options] Override http request option.
1395
+ * @throws {RequiredError}
1396
+ */
1397
+ updateSubscription: (id: string, updateSubscriptionRequest: UpdateSubscriptionRequest, xRequestId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1398
+ };
1399
+ /**
1400
+ * WebhookSubscriptionsApi - functional programming interface
1401
+ * @export
1402
+ */
1403
+ declare const WebhookSubscriptionsApiFp: (configuration?: Configuration) => {
1404
+ /**
1405
+ * Create a notification subscription by configuring an endpoint to receive notifications. For details, see the [Notification Flows](https://developers.circle.com/wallets/webhook-notification-flows) guide.
1406
+ * @summary Create a notification subscription
1407
+ * @param {CreateSubscriptionRequest} createSubscriptionRequest Schema for the request payload to create a new subscription.
1408
+ * @param {string} [xRequestId] Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
1409
+ * @param {*} [options] Override http request option.
1410
+ * @throws {RequiredError}
1411
+ */
1412
+ createSubscription(createSubscriptionRequest: CreateSubscriptionRequest, xRequestId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SubscriptionResponse>>;
1413
+ /**
1414
+ * Delete an existing subscription.
1415
+ * @summary Delete a notification subscription
1416
+ * @param {string} id The universally unique identifier of the resource.
1417
+ * @param {string} [xRequestId] Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
1418
+ * @param {*} [options] Override http request option.
1419
+ * @throws {RequiredError}
1420
+ */
1421
+ deleteSubscription(id: string, xRequestId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1422
+ /**
1423
+ * Get the public key and algorithm used to digitally sign webhook notifications. Verifying the digital signature ensures the notification came from Circle. In the headers of each webhook, you can find 1. `X-Circle-Signature`: a header containing the digital signature generated by Circle. 2. `X-Circle-Key-Id`: a header containing the UUID. This is will be used as the `ID` as URL parameter to retrieve the relevant public key.
1424
+ * @summary Get a notification signature public key
1425
+ * @param {string} id The universally unique identifier of the resource.
1426
+ * @param {string} [xRequestId] Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
1427
+ * @param {*} [options] Override http request option.
1428
+ * @throws {RequiredError}
1429
+ */
1430
+ getNotificationSignature(id: string, xRequestId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NotificationSignaturePublicKey>>;
1431
+ /**
1432
+ * Retrieve an existing notification subscription.
1433
+ * @summary Retrieve a notification subscription
1434
+ * @param {string} id The universally unique identifier of the resource.
1435
+ * @param {string} [xRequestId] Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
1436
+ * @param {*} [options] Override http request option.
1437
+ * @throws {RequiredError}
1438
+ */
1439
+ getSubscription(id: string, xRequestId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SubscriptionResponse>>;
1440
+ /**
1441
+ * Retrieve an array of existing notification subscriptions.
1442
+ * @summary Get all notification subscriptions
1443
+ * @param {*} [options] Override http request option.
1444
+ * @throws {RequiredError}
1445
+ */
1446
+ getSubscriptions(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Subscriptions>>;
1447
+ /**
1448
+ * Update subscription endpoint to receive notifications.
1449
+ * @summary Update a notification subscription
1450
+ * @param {string} id The universally unique identifier of the resource.
1451
+ * @param {UpdateSubscriptionRequest} updateSubscriptionRequest Schema for the request payload to update a new subscription.
1452
+ * @param {string} [xRequestId] Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
1453
+ * @param {*} [options] Override http request option.
1454
+ * @throws {RequiredError}
1455
+ */
1456
+ updateSubscription(id: string, updateSubscriptionRequest: UpdateSubscriptionRequest, xRequestId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SubscriptionResponse>>;
1457
+ };
1458
+ /**
1459
+ * WebhookSubscriptionsApi - factory interface
1460
+ * @export
1461
+ */
1462
+ declare const WebhookSubscriptionsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1463
+ /**
1464
+ * Create a notification subscription by configuring an endpoint to receive notifications. For details, see the [Notification Flows](https://developers.circle.com/wallets/webhook-notification-flows) guide.
1465
+ * @summary Create a notification subscription
1466
+ * @param {CreateSubscriptionRequest} createSubscriptionRequest Schema for the request payload to create a new subscription.
1467
+ * @param {string} [xRequestId] Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
1468
+ * @param {*} [options] Override http request option.
1469
+ * @throws {RequiredError}
1470
+ */
1471
+ createSubscription(createSubscriptionRequest: CreateSubscriptionRequest, xRequestId?: string, options?: any): AxiosPromise<SubscriptionResponse>;
1472
+ /**
1473
+ * Delete an existing subscription.
1474
+ * @summary Delete a notification subscription
1475
+ * @param {string} id The universally unique identifier of the resource.
1476
+ * @param {string} [xRequestId] Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
1477
+ * @param {*} [options] Override http request option.
1478
+ * @throws {RequiredError}
1479
+ */
1480
+ deleteSubscription(id: string, xRequestId?: string, options?: any): AxiosPromise<void>;
1481
+ /**
1482
+ * Get the public key and algorithm used to digitally sign webhook notifications. Verifying the digital signature ensures the notification came from Circle. In the headers of each webhook, you can find 1. `X-Circle-Signature`: a header containing the digital signature generated by Circle. 2. `X-Circle-Key-Id`: a header containing the UUID. This is will be used as the `ID` as URL parameter to retrieve the relevant public key.
1483
+ * @summary Get a notification signature public key
1484
+ * @param {string} id The universally unique identifier of the resource.
1485
+ * @param {string} [xRequestId] Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
1486
+ * @param {*} [options] Override http request option.
1487
+ * @throws {RequiredError}
1488
+ */
1489
+ getNotificationSignature(id: string, xRequestId?: string, options?: any): AxiosPromise<NotificationSignaturePublicKey>;
1490
+ /**
1491
+ * Retrieve an existing notification subscription.
1492
+ * @summary Retrieve a notification subscription
1493
+ * @param {string} id The universally unique identifier of the resource.
1494
+ * @param {string} [xRequestId] Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
1495
+ * @param {*} [options] Override http request option.
1496
+ * @throws {RequiredError}
1497
+ */
1498
+ getSubscription(id: string, xRequestId?: string, options?: any): AxiosPromise<SubscriptionResponse>;
1499
+ /**
1500
+ * Retrieve an array of existing notification subscriptions.
1501
+ * @summary Get all notification subscriptions
1502
+ * @param {*} [options] Override http request option.
1503
+ * @throws {RequiredError}
1504
+ */
1505
+ getSubscriptions(options?: any): AxiosPromise<Subscriptions>;
1506
+ /**
1507
+ * Update subscription endpoint to receive notifications.
1508
+ * @summary Update a notification subscription
1509
+ * @param {string} id The universally unique identifier of the resource.
1510
+ * @param {UpdateSubscriptionRequest} updateSubscriptionRequest Schema for the request payload to update a new subscription.
1511
+ * @param {string} [xRequestId] Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
1512
+ * @param {*} [options] Override http request option.
1513
+ * @throws {RequiredError}
1514
+ */
1515
+ updateSubscription(id: string, updateSubscriptionRequest: UpdateSubscriptionRequest, xRequestId?: string, options?: any): AxiosPromise<SubscriptionResponse>;
1516
+ };
1517
+ /**
1518
+ * WebhookSubscriptionsApi - object-oriented interface
1519
+ * @export
1520
+ * @class WebhookSubscriptionsApi
1521
+ * @extends {BaseAPI}
1522
+ */
1523
+ declare class WebhookSubscriptionsApi extends BaseAPI {
1524
+ /**
1525
+ * Create a notification subscription by configuring an endpoint to receive notifications. For details, see the [Notification Flows](https://developers.circle.com/wallets/webhook-notification-flows) guide.
1526
+ * @summary Create a notification subscription
1527
+ * @param {CreateSubscriptionRequest} createSubscriptionRequest Schema for the request payload to create a new subscription.
1528
+ * @param {string} [xRequestId] Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
1529
+ * @param {*} [options] Override http request option.
1530
+ * @throws {RequiredError}
1531
+ * @memberof WebhookSubscriptionsApi
1532
+ */
1533
+ createSubscription(createSubscriptionRequest: CreateSubscriptionRequest, xRequestId?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SubscriptionResponse, any, {}>>;
1534
+ /**
1535
+ * Delete an existing subscription.
1536
+ * @summary Delete a notification subscription
1537
+ * @param {string} id The universally unique identifier of the resource.
1538
+ * @param {string} [xRequestId] Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
1539
+ * @param {*} [options] Override http request option.
1540
+ * @throws {RequiredError}
1541
+ * @memberof WebhookSubscriptionsApi
1542
+ */
1543
+ deleteSubscription(id: string, xRequestId?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any, {}>>;
1544
+ /**
1545
+ * Get the public key and algorithm used to digitally sign webhook notifications. Verifying the digital signature ensures the notification came from Circle. In the headers of each webhook, you can find 1. `X-Circle-Signature`: a header containing the digital signature generated by Circle. 2. `X-Circle-Key-Id`: a header containing the UUID. This is will be used as the `ID` as URL parameter to retrieve the relevant public key.
1546
+ * @summary Get a notification signature public key
1547
+ * @param {string} id The universally unique identifier of the resource.
1548
+ * @param {string} [xRequestId] Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
1549
+ * @param {*} [options] Override http request option.
1550
+ * @throws {RequiredError}
1551
+ * @memberof WebhookSubscriptionsApi
1552
+ */
1553
+ getNotificationSignature(id: string, xRequestId?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<NotificationSignaturePublicKey, any, {}>>;
1554
+ /**
1555
+ * Retrieve an existing notification subscription.
1556
+ * @summary Retrieve a notification subscription
1557
+ * @param {string} id The universally unique identifier of the resource.
1558
+ * @param {string} [xRequestId] Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
1559
+ * @param {*} [options] Override http request option.
1560
+ * @throws {RequiredError}
1561
+ * @memberof WebhookSubscriptionsApi
1562
+ */
1563
+ getSubscription(id: string, xRequestId?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SubscriptionResponse, any, {}>>;
1564
+ /**
1565
+ * Retrieve an array of existing notification subscriptions.
1566
+ * @summary Get all notification subscriptions
1567
+ * @param {*} [options] Override http request option.
1568
+ * @throws {RequiredError}
1569
+ * @memberof WebhookSubscriptionsApi
1570
+ */
1571
+ getSubscriptions(options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Subscriptions, any, {}>>;
1572
+ /**
1573
+ * Update subscription endpoint to receive notifications.
1574
+ * @summary Update a notification subscription
1575
+ * @param {string} id The universally unique identifier of the resource.
1576
+ * @param {UpdateSubscriptionRequest} updateSubscriptionRequest Schema for the request payload to update a new subscription.
1577
+ * @param {string} [xRequestId] Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
1578
+ * @param {*} [options] Override http request option.
1579
+ * @throws {RequiredError}
1580
+ * @memberof WebhookSubscriptionsApi
1581
+ */
1582
+ updateSubscription(id: string, updateSubscriptionRequest: UpdateSubscriptionRequest, xRequestId?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SubscriptionResponse, any, {}>>;
1583
+ }
1584
+
1585
+ /**
1586
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1587
+ * https://openapi-generator.tech
1588
+ * Do not edit the class manually.
1589
+ */
1590
+
1591
+ interface ClientConfig {
1592
+ /**
1593
+ * ApiKey that will be used to authenticate the request
1594
+ */
1595
+ apiKey: string;
1596
+ /**
1597
+ * Version of the client. Will be added to the user agent.
1598
+ */
1599
+ version: string;
1600
+ /**
1601
+ * Customized user agent. Will be added to the user agent.
1602
+ */
1603
+ userAgent?: string;
1604
+ }
1605
+ declare class ConfigurationsClient {
1606
+ DeveloperAccount: ReturnType<typeof DeveloperAccountApiFactory>;
1607
+ Faucet: ReturnType<typeof FaucetApiFactory>;
1608
+ Health: ReturnType<typeof HealthApiFactory>;
1609
+ MonitorTokens: ReturnType<typeof MonitorTokensApiFactory>;
1610
+ WebhookSubscriptions: ReturnType<typeof WebhookSubscriptionsApiFactory>;
1611
+ constructor(baseUrl: string, config: ClientConfig, headers?: Record<string, string>);
1612
+ }
1613
+
1614
+ export { type BadRequestResponse, Blockchain, ConfigurationsClient, type CreateMonitoredTokensRequest, type CreateSubscriptionRequest, type DeleteMonitoredTokensRequest, DeveloperAccountApi, DeveloperAccountApiAxiosParamCreator, DeveloperAccountApiFactory, DeveloperAccountApiFp, type EntityConfig, type EntityConfigData, FaucetApi, FaucetApiAxiosParamCreator, FaucetApiFactory, FaucetApiFp, type FaucetRequest, HealthApi, HealthApiAxiosParamCreator, HealthApiFactory, HealthApiFp, type ModelError, MonitorTokensApi, MonitorTokensApiAxiosParamCreator, MonitorTokensApiFactory, MonitorTokensApiFp, type MonitoredTokens, type MonitoredTokensData, type NotAuthorizedResponse, type NotFoundResponse, type NotificationSignaturePublicKey, type NotificationSignaturePublicKeyData, NotificationType, type Ping, type PublicKey, type PublicKeyData, type Subscription, type SubscriptionResponse, type Subscriptions, TestnetBlockchain, type Token, TokenMonitorScope, TokenStandard, type UpdateMonitoredTokensRequest, type UpdateMonitoredTokensScopeRequest, type UpdateSubscriptionRequest, WebhookSubscriptionsApi, WebhookSubscriptionsApiAxiosParamCreator, WebhookSubscriptionsApiFactory, WebhookSubscriptionsApiFp };