-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.ts
15687 lines (14929 loc) · 512 KB
/
api.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* tslint:disable */
/* eslint-disable */
/**
* MultiBaas API
* MultiBaas\'s REST APIv0.
*
* The version of the OpenAPI document: 0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import type { Configuration } from './configuration';
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
import globalAxios from 'axios';
// Some imports not used depending on template conditions
// @ts-ignore
import {
DUMMY_BASE_URL,
assertParamExists,
setApiKeyToObject,
setBasicAuthToObject,
setBearerAuthToObject,
setOAuthToObject,
setSearchParams,
serializeDataIfNeeded,
toPathString,
createRequestFunction
} from './common';
import type { RequestArgs } from './base';
// @ts-ignore
import { BASE_PATH, COLLECTION_FORMATS, BaseAPI, RequiredError, operationServerMap } from './base';
/**
* An API key.
* @export
* @interface APIKey
*/
export interface APIKey {
/**
* An alias to easily identify and reference the entity in subsequent requests.
* @type {string}
* @memberof APIKey
*/
label: string;
/**
*
* @type {number}
* @memberof APIKey
*/
id: number;
/**
* The time the API key was created.
* @type {string}
* @memberof APIKey
*/
createdAt: string;
/**
* The time the API key was last used.
* @type {string}
* @memberof APIKey
*/
lastUsedAt?: string;
/**
* The ID of the user that created the API key.
* @type {number}
* @memberof APIKey
*/
createdBy: number;
/**
* The signature of the API key.
* @type {string}
* @memberof APIKey
*/
signature: string;
}
/**
* A freshly created API key with its secret.
* @export
* @interface APIKeyWithSecret
*/
export interface APIKeyWithSecret {
/**
* An alias to easily identify and reference the entity in subsequent requests.
* @type {string}
* @memberof APIKeyWithSecret
*/
label: string;
/**
*
* @type {number}
* @memberof APIKeyWithSecret
*/
id: number;
/**
* The time the API key was created.
* @type {string}
* @memberof APIKeyWithSecret
*/
createdAt: string;
/**
* The time the API key was last used.
* @type {string}
* @memberof APIKeyWithSecret
*/
lastUsedAt?: string;
/**
* The ID of the user that created the API key.
* @type {number}
* @memberof APIKeyWithSecret
*/
createdBy: number;
/**
* The signature of the API key.
* @type {string}
* @memberof APIKeyWithSecret
*/
signature: string;
/**
* The secret key of the API key.
* @type {string}
* @memberof APIKeyWithSecret
*/
key: string;
}
/**
*
* @export
* @interface AcceptInvite200Response
*/
export interface AcceptInvite200Response {
/**
* The status code.
* @type {number}
* @memberof AcceptInvite200Response
*/
status: number;
/**
* The human-readable status message.
* @type {string}
* @memberof AcceptInvite200Response
*/
message: string;
/**
*
* @type {User}
* @memberof AcceptInvite200Response
*/
result: User;
}
/**
*
* @export
* @interface AcceptInviteRequest
*/
export interface AcceptInviteRequest {
/**
* The user ID Token
* @type {string}
* @memberof AcceptInviteRequest
*/
idToken?: string;
}
/**
* Add key request data.
* @export
* @interface AddKey
*/
export interface AddKey {
/**
* The Application ID that will be accessing the Key Vault.
* @type {string}
* @memberof AddKey
*/
clientID: string;
/**
* The name of the key.
* @type {string}
* @memberof AddKey
*/
keyName: string;
/**
* The version of the key.
* @type {string}
* @memberof AddKey
*/
keyVersion: string;
/**
* The name given to the vault your key is stored in.
* @type {string}
* @memberof AddKey
*/
vaultName: string;
}
/**
* An address details.
* @export
* @interface Address
*/
export interface Address {
/**
* An alias to easily identify and reference the entity in subsequent requests.
* @type {string}
* @memberof Address
*/
label: string;
/**
* An ethereum address.
* @type {string}
* @memberof Address
*/
address: string;
/**
*
* @type {string}
* @memberof Address
*/
balance?: string;
/**
*
* @type {string}
* @memberof Address
*/
chain: string;
/**
*
* @type {Array<string>}
* @memberof Address
*/
modules: Array<string>;
/**
* The next transaction nonce for this address (obtained from the blockchain node).
* @type {number}
* @memberof Address
*/
nonce?: number;
/**
* The next transaction nonce for this address when using the nonce management feature.
* @type {number}
* @memberof Address
*/
localNonce?: number;
/**
*
* @type {string}
* @memberof Address
*/
codeAt?: string;
/**
*
* @type {Array<ContractMetadata>}
* @memberof Address
*/
contracts: Array<ContractMetadata>;
/**
*
* @type {Array<ContractLookup>}
* @memberof Address
*/
contractLookup?: Array<ContractLookup>;
}
/**
* An address and it\'s label.
* @export
* @interface AddressLabel
*/
export interface AddressLabel {
/**
* An alias to easily identify and reference the entity in subsequent requests.
* @type {string}
* @memberof AddressLabel
*/
label: string;
/**
* An ethereum address.
* @type {string}
* @memberof AddressLabel
*/
address: string;
}
/**
* An audit log entry.
* @export
* @interface AuditLog
*/
export interface AuditLog {
/**
* The ID of the user who performed the action.
* @type {number}
* @memberof AuditLog
*/
actionByID: number;
/**
* The ID of the user who was acted upon.
* @type {number}
* @memberof AuditLog
*/
actionOnID?: number;
/**
* The email of the user who performed the action.
* @type {string}
* @memberof AuditLog
*/
actionByUserEmail: string;
/**
* The email of the user who was acted upon.
* @type {string}
* @memberof AuditLog
*/
actionOnUserEmail?: string;
/**
* The type of action that was performed.
* @type {string}
* @memberof AuditLog
*/
type: string;
/**
* The time the action was performed.
* @type {string}
* @memberof AuditLog
*/
createdAt: string;
/**
* The data associated with the action.
* @type {object}
* @memberof AuditLog
*/
activityData: object;
}
/**
* An Azure account.
* @export
* @interface AzureAccount
*/
export interface AzureAccount {
/**
* An alias to easily identify and reference the entity in subsequent requests.
* @type {string}
* @memberof AzureAccount
*/
label: string;
/**
* The Application ID that will be accessing the Key Vault.
* @type {string}
* @memberof AzureAccount
*/
clientID: string;
/**
* The application’s secret key that you generate when you first register the application in Azure.
* @type {string}
* @memberof AzureAccount
*/
clientSecret: string;
/**
* Also known as Directory ID.
* @type {string}
* @memberof AzureAccount
*/
tenantID: string;
/**
* The ID linked to your subscription to Azure services.
* @type {string}
* @memberof AzureAccount
*/
subscriptionID: string;
/**
* The Resource Group Name for the resource being accessed.
* @type {string}
* @memberof AzureAccount
*/
baseGroupName: string;
/**
*
* @type {number}
* @memberof AzureAccount
*/
id: number;
}
/**
* An HSM Wallet
* @export
* @interface AzureHardwareWallet
*/
export interface AzureHardwareWallet {
/**
*
* @type {number}
* @memberof AzureHardwareWallet
*/
id: number;
/**
*
* @type {number}
* @memberof AzureHardwareWallet
*/
azureAccountID: number;
/**
* The name given to the vault your key is stored in.
* @type {string}
* @memberof AzureHardwareWallet
*/
vaultName: string;
/**
* The name of the key.
* @type {string}
* @memberof AzureHardwareWallet
*/
keyName: string;
/**
* The version of the key.
* @type {string}
* @memberof AzureHardwareWallet
*/
keyVersion: string;
/**
* An ethereum address.
* @type {string}
* @memberof AzureHardwareWallet
*/
publicAddress: string;
}
/**
* An HSM Wallet returned when a new key is created
* @export
* @interface AzureWallet
*/
export interface AzureWallet {
/**
* The name of the key.
* @type {string}
* @memberof AzureWallet
*/
keyName: string;
/**
* The version of the key.
* @type {string}
* @memberof AzureWallet
*/
keyVersion: string;
/**
* An ethereum address.
* @type {string}
* @memberof AzureWallet
*/
publicAddress: string;
}
/**
* An API key.
* @export
* @interface BaseAPIKey
*/
export interface BaseAPIKey {
/**
* An alias to easily identify and reference the entity in subsequent requests.
* @type {string}
* @memberof BaseAPIKey
*/
label: string;
}
/**
* An Azure account.
* @export
* @interface BaseAzureAccount
*/
export interface BaseAzureAccount {
/**
* An alias to easily identify and reference the entity in subsequent requests.
* @type {string}
* @memberof BaseAzureAccount
*/
label: string;
/**
* The Application ID that will be accessing the Key Vault.
* @type {string}
* @memberof BaseAzureAccount
*/
clientID: string;
/**
* The application’s secret key that you generate when you first register the application in Azure.
* @type {string}
* @memberof BaseAzureAccount
*/
clientSecret: string;
/**
* Also known as Directory ID.
* @type {string}
* @memberof BaseAzureAccount
*/
tenantID: string;
/**
* The ID linked to your subscription to Azure services.
* @type {string}
* @memberof BaseAzureAccount
*/
subscriptionID: string;
/**
* The Resource Group Name for the resource being accessed.
* @type {string}
* @memberof BaseAzureAccount
*/
baseGroupName: string;
}
/**
* A contract.
* @export
* @interface BaseContract
*/
export interface BaseContract {
/**
* An alias to easily identify and reference the entity in subsequent requests.
* @type {string}
* @memberof BaseContract
*/
label: string;
/**
* The name of the contract.
* @type {string}
* @memberof BaseContract
*/
contractName: string;
/**
* The contract version.
* @type {string}
* @memberof BaseContract
*/
version: string;
/**
* The smart-contract bytecode.
* @type {string}
* @memberof BaseContract
*/
bin?: string;
/**
* The contract raw ABI JSON string.
* @type {string}
* @memberof BaseContract
*/
rawAbi: string;
/**
* The user documentation JSON string.
* @type {string}
* @memberof BaseContract
*/
userDoc: string;
/**
* The developer documentation JSON string.
* @type {string}
* @memberof BaseContract
*/
developerDoc: string;
/**
* The contract metadata JSON string.
* @type {string}
* @memberof BaseContract
*/
metadata?: string;
/**
*
* @type {boolean}
* @memberof BaseContract
*/
isFavorite?: boolean;
}
/**
* Standard response.
* @export
* @interface BaseResponse
*/
export interface BaseResponse {
/**
* The status code.
* @type {number}
* @memberof BaseResponse
*/
status: number;
/**
* The human-readable status message.
* @type {string}
* @memberof BaseResponse
*/
message: string;
}
/**
* A transaction to be signed.
* @export
* @interface BaseTransactionToSign
*/
export interface BaseTransactionToSign {
/**
*
* @type {BaseTransactionToSignTx}
* @memberof BaseTransactionToSign
*/
tx: BaseTransactionToSignTx;
}
/**
* An Ethereum transaction.
* @export
* @interface BaseTransactionToSignTx
*/
export interface BaseTransactionToSignTx {
/**
* Sender account nonce of the transaction
* @type {number}
* @memberof BaseTransactionToSignTx
*/
nonce?: number;
/**
* Gas price of the transaction
* @type {string}
* @memberof BaseTransactionToSignTx
*/
gasPrice?: string;
/**
* Fee cap per gas of the transaction
* @type {string}
* @memberof BaseTransactionToSignTx
*/
gasFeeCap?: string;
/**
* GasTipCap per gas of the transaction
* @type {string}
* @memberof BaseTransactionToSignTx
*/
gasTipCap?: string;
/**
* Gas limit of the transaction
* @type {number}
* @memberof BaseTransactionToSignTx
*/
gas: number;
/**
* An ethereum address.
* @type {string}
* @memberof BaseTransactionToSignTx
*/
from: string;
/**
* An ethereum address.
* @type {string}
* @memberof BaseTransactionToSignTx
*/
to?: string | null;
/**
* Amount (in wei) to send with the transaction.
* @type {string}
* @memberof BaseTransactionToSignTx
*/
value: string;
/**
* A hex string.
* @type {string}
* @memberof BaseTransactionToSignTx
*/
data: string;
/**
* The keccak256 hash as a hex string of 256 bits.
* @type {string}
* @memberof BaseTransactionToSignTx
*/
hash?: string;
/**
* Transaction type
* @type {number}
* @memberof BaseTransactionToSignTx
*/
type: number;
}
/**
* A user.
* @export
* @interface BaseUser
*/
export interface BaseUser {
/**
* The user\'s email address.
* @type {string}
* @memberof BaseUser
*/
email: string;
/**
* The user\'s name.
* @type {string}
* @memberof BaseUser
*/
name: string;
}
/**
*
* @export
* @interface BaseWebhookEndpoint
*/
export interface BaseWebhookEndpoint {
/**
* The URL to send the webhook to.
* @type {string}
* @memberof BaseWebhookEndpoint
*/
url: string;
/**
* An alias to easily identify and reference the entity in subsequent requests.
* @type {string}
* @memberof BaseWebhookEndpoint
*/
label: string;
/**
* The events to subscribe to.
* @type {Array<WebhookEventsType>}
* @memberof BaseWebhookEndpoint
*/
subscriptions: Array<WebhookEventsType>;
}
/**
* A block in the Ethereum blockchain.
* @export
* @interface Block
*/
export interface Block {
/**
*
* @type {string}
* @memberof Block
*/
blockchain: string;
/**
* The keccak256 hash as a hex string of 256 bits.
* @type {string}
* @memberof Block
*/
hash: string;
/**
*
* @type {string}
* @memberof Block
*/
difficulty: string;
/**
*
* @type {number}
* @memberof Block
*/
gasLimit: number;
/**
*
* @type {string}
* @memberof Block
*/
number: string;
/**
*
* @type {number}
* @memberof Block
*/
timestamp: number;
/**
*
* @type {Array<Transaction>}
* @memberof Block
*/
transactions: Array<Transaction>;
/**
* The keccak256 hash as a hex string of 256 bits.
* @type {string}
* @memberof Block
*/
receiptsRoot: string;
/**
* The keccak256 hash as a hex string of 256 bits.
* @type {string}
* @memberof Block
*/
parentHash: string;
/**
* The keccak256 hash as a hex string of 256 bits.
* @type {string}
* @memberof Block
*/
sha3Uncles: string;
/**
* An ethereum address.
* @type {string}
* @memberof Block
*/
miner: string;
/**
* The keccak256 hash as a hex string of 256 bits.
* @type {string}
* @memberof Block
*/
stateRoot: string;
/**
* The keccak256 hash as a hex string of 256 bits.
* @type {string}
* @memberof Block
*/
transactionsRoot: string;
/**
* A hex string.
* @type {string}
* @memberof Block
*/
logsBloom: string;
/**
*
* @type {number}
* @memberof Block
*/
gasUsed: number;
/**
* A hex string.
* @type {string}
* @memberof Block
*/
nonce: string;
/**
* The keccak256 hash as a hex string of 256 bits.
* @type {string}
* @memberof Block
*/
mixHash: string;
/**
*
* @type {string}
* @memberof Block
*/
extraData: string;
/**
*
* @type {string}
* @memberof Block
*/
baseFeePerGas: string;
}
/**
* CORS Origin
* @export
* @interface CORSOrigin
*/
export interface CORSOrigin {
/**
*
* @type {number}
* @memberof CORSOrigin
*/
id?: number;
/**
* The CORS Origin
* @type {string}
* @memberof CORSOrigin
*/
origin?: string;
}
/**
*
* @export
* @interface CallContractFunction200Response
*/
export interface CallContractFunction200Response {
/**
* The status code.
* @type {number}
* @memberof CallContractFunction200Response
*/
status: number;
/**
* The human-readable status message.
* @type {string}
* @memberof CallContractFunction200Response
*/
message: string;
/**
*
* @type {CallContractFunction200ResponseAllOfResult}
* @memberof CallContractFunction200Response
*/
result: CallContractFunction200ResponseAllOfResult;
}
/**
* @type CallContractFunction200ResponseAllOfResult
* @export
*/
export type CallContractFunction200ResponseAllOfResult =
| ({ kind: 'MethodCallPreviewResponse' } & MethodCallPreviewResponse)
| ({ kind: 'MethodCallResponse' } & MethodCallResponse)
| ({ kind: 'TransactionToSignResponse' } & TransactionToSignResponse);
/**
* A blockchain chain name.
* @export
* @enum {string}
*/
export const ChainName = {
Ethereum: 'ethereum'
} as const;
export type ChainName = typeof ChainName[keyof typeof ChainName];
/**
* The status of the Chain
* @export
* @interface ChainStatus
*/
export interface ChainStatus {
/**
*
* @type {number}
* @memberof ChainStatus
*/
blockNumber: number;
/**
* The client version for this chain node.
* @type {string}
* @memberof ChainStatus
*/
version: string;
/**
*
* @type {number}
* @memberof ChainStatus
*/
chainID: number;
/**
*
* @type {number}
* @memberof ChainStatus
*/
networkID: number;
/**
* The current base fee (only available for chains that support EIP-1559).
* @type {string}
* @memberof ChainStatus
*/
baseFee?: string;
}
/**
* A returned contract.
* @export
* @interface Contract
*/
export interface Contract {
/**
* An alias to easily identify and reference the entity in subsequent requests.
* @type {string}
* @memberof Contract
*/
label: string;
/**
* The name of the contract.
* @type {string}
* @memberof Contract
*/
contractName: string;
/**
* The contract version.
* @type {string}
* @memberof Contract
*/
version: string;
/**
* The smart-contract bytecode.
* @type {string}
* @memberof Contract
*/
bin?: string;
/**
* The contract raw ABI JSON string.
* @type {string}
* @memberof Contract
*/
rawAbi: string;
/**
* The user documentation JSON string.
* @type {string}
* @memberof Contract
*/
userDoc: string;
/**
* The developer documentation JSON string.
* @type {string}
* @memberof Contract
*/
developerDoc: string;
/**
* The contract metadata JSON string.
* @type {string}
* @memberof Contract
*/
metadata?: string;
/**
*
* @type {boolean}
* @memberof Contract
*/
isFavorite?: boolean;
/**
*
* @type {ContractABI}