@hirosystems/token-metadata-api-client 1.2.0 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/api.d.ts DELETED
@@ -1,803 +0,0 @@
1
- /**
2
- * Token Metadata API
3
- * Service that indexes metadata for every SIP-009, SIP-010, and SIP-013 Token in the Stacks blockchain and exposes it via REST API endpoints.
4
- *
5
- * OpenAPI spec version: v0.4.0
6
- *
7
- *
8
- * NOTE: This file is auto generated by the swagger code generator program.
9
- * https://github.com/swagger-api/swagger-codegen.git
10
- * Do not edit the file manually.
11
- */
12
- /// <reference path="../custom.d.ts" />
13
- import { Configuration } from "./configuration";
14
- /**
15
- *
16
- * @export
17
- */
18
- export declare const COLLECTION_FORMATS: {
19
- csv: string;
20
- ssv: string;
21
- tsv: string;
22
- pipes: string;
23
- };
24
- /**
25
- *
26
- * @export
27
- * @interface FetchAPI
28
- */
29
- export interface FetchAPI {
30
- (url: string, init?: any): Promise<Response>;
31
- }
32
- /**
33
- *
34
- * @export
35
- * @interface FetchArgs
36
- */
37
- export interface FetchArgs {
38
- url: string;
39
- options: any;
40
- }
41
- /**
42
- *
43
- * @export
44
- * @class BaseAPI
45
- */
46
- export declare class BaseAPI {
47
- protected basePath: string;
48
- protected fetch: FetchAPI;
49
- protected configuration: Configuration;
50
- constructor(configuration?: Configuration, basePath?: string, fetch?: FetchAPI);
51
- }
52
- /**
53
- *
54
- * @export
55
- * @class RequiredError
56
- * @extends {Error}
57
- */
58
- export declare class RequiredError extends Error {
59
- field: string;
60
- name: "RequiredError";
61
- constructor(field: string, msg?: string);
62
- }
63
- /**
64
- *
65
- * @export
66
- * @interface ApiJobCount
67
- */
68
- export interface ApiJobCount {
69
- /**
70
- *
71
- * @type {number}
72
- * @memberof ApiJobCount
73
- */
74
- pending?: number;
75
- /**
76
- *
77
- * @type {number}
78
- * @memberof ApiJobCount
79
- */
80
- queued?: number;
81
- /**
82
- *
83
- * @type {number}
84
- * @memberof ApiJobCount
85
- */
86
- done?: number;
87
- /**
88
- *
89
- * @type {number}
90
- * @memberof ApiJobCount
91
- */
92
- failed?: number;
93
- }
94
- /**
95
- *
96
- * @export
97
- * @interface ApiStatusResponse
98
- */
99
- export interface ApiStatusResponse {
100
- /**
101
- *
102
- * @type {string}
103
- * @memberof ApiStatusResponse
104
- */
105
- server_version: string;
106
- /**
107
- *
108
- * @type {string}
109
- * @memberof ApiStatusResponse
110
- */
111
- status: string;
112
- /**
113
- *
114
- * @type {ApiTokenCount}
115
- * @memberof ApiStatusResponse
116
- */
117
- tokens?: ApiTokenCount;
118
- /**
119
- *
120
- * @type {ApiTokenContractCount}
121
- * @memberof ApiStatusResponse
122
- */
123
- token_contracts?: ApiTokenContractCount;
124
- /**
125
- *
126
- * @type {ApiJobCount}
127
- * @memberof ApiStatusResponse
128
- */
129
- job_queue?: ApiJobCount;
130
- }
131
- /**
132
- *
133
- * @export
134
- * @interface ApiTokenContractCount
135
- */
136
- export interface ApiTokenContractCount {
137
- /**
138
- *
139
- * @type {number}
140
- * @memberof ApiTokenContractCount
141
- */
142
- sip_009?: number;
143
- /**
144
- *
145
- * @type {number}
146
- * @memberof ApiTokenContractCount
147
- */
148
- sip_010?: number;
149
- /**
150
- *
151
- * @type {number}
152
- * @memberof ApiTokenContractCount
153
- */
154
- sip_013?: number;
155
- }
156
- /**
157
- *
158
- * @export
159
- * @interface ApiTokenCount
160
- */
161
- export interface ApiTokenCount {
162
- /**
163
- *
164
- * @type {number}
165
- * @memberof ApiTokenCount
166
- */
167
- ft?: number;
168
- /**
169
- *
170
- * @type {number}
171
- * @memberof ApiTokenCount
172
- */
173
- nft?: number;
174
- /**
175
- *
176
- * @type {number}
177
- * @memberof ApiTokenCount
178
- */
179
- sft?: number;
180
- }
181
- /**
182
- *
183
- * @export
184
- * @interface ErrorResponse
185
- */
186
- export interface ErrorResponse {
187
- }
188
- /**
189
- *
190
- * @export
191
- * @interface FtBasicMetadataResponse
192
- */
193
- export interface FtBasicMetadataResponse {
194
- /**
195
- *
196
- * @type {string}
197
- * @memberof FtBasicMetadataResponse
198
- */
199
- name?: string;
200
- /**
201
- *
202
- * @type {string}
203
- * @memberof FtBasicMetadataResponse
204
- */
205
- symbol?: string;
206
- /**
207
- *
208
- * @type {number}
209
- * @memberof FtBasicMetadataResponse
210
- */
211
- decimals?: number;
212
- /**
213
- *
214
- * @type {string}
215
- * @memberof FtBasicMetadataResponse
216
- */
217
- total_supply?: string;
218
- /**
219
- *
220
- * @type {string}
221
- * @memberof FtBasicMetadataResponse
222
- */
223
- token_uri?: string;
224
- /**
225
- *
226
- * @type {string}
227
- * @memberof FtBasicMetadataResponse
228
- */
229
- description?: string;
230
- /**
231
- *
232
- * @type {string}
233
- * @memberof FtBasicMetadataResponse
234
- */
235
- image_uri?: string;
236
- /**
237
- *
238
- * @type {string}
239
- * @memberof FtBasicMetadataResponse
240
- */
241
- image_canonical_uri?: string;
242
- /**
243
- *
244
- * @type {string}
245
- * @memberof FtBasicMetadataResponse
246
- */
247
- tx_id: string;
248
- /**
249
- *
250
- * @type {string}
251
- * @memberof FtBasicMetadataResponse
252
- */
253
- sender_address: string;
254
- /**
255
- *
256
- * @type {string}
257
- * @memberof FtBasicMetadataResponse
258
- */
259
- contract_principal: string;
260
- }
261
- /**
262
- *
263
- * @export
264
- * @interface FtMetadataResponse
265
- */
266
- export interface FtMetadataResponse {
267
- /**
268
- *
269
- * @type {string}
270
- * @memberof FtMetadataResponse
271
- */
272
- name?: string;
273
- /**
274
- *
275
- * @type {string}
276
- * @memberof FtMetadataResponse
277
- */
278
- symbol?: string;
279
- /**
280
- *
281
- * @type {number}
282
- * @memberof FtMetadataResponse
283
- */
284
- decimals?: number;
285
- /**
286
- *
287
- * @type {string}
288
- * @memberof FtMetadataResponse
289
- */
290
- total_supply?: string;
291
- /**
292
- *
293
- * @type {string}
294
- * @memberof FtMetadataResponse
295
- */
296
- token_uri?: string;
297
- /**
298
- *
299
- * @type {string}
300
- * @memberof FtMetadataResponse
301
- */
302
- description?: string;
303
- /**
304
- *
305
- * @type {string}
306
- * @memberof FtMetadataResponse
307
- */
308
- image_uri?: string;
309
- /**
310
- *
311
- * @type {string}
312
- * @memberof FtMetadataResponse
313
- */
314
- image_canonical_uri?: string;
315
- /**
316
- *
317
- * @type {string}
318
- * @memberof FtMetadataResponse
319
- */
320
- tx_id: string;
321
- /**
322
- *
323
- * @type {string}
324
- * @memberof FtMetadataResponse
325
- */
326
- sender_address: string;
327
- /**
328
- *
329
- * @type {Metadata}
330
- * @memberof FtMetadataResponse
331
- */
332
- metadata?: Metadata;
333
- }
334
- /**
335
- *
336
- * @export
337
- * @interface Metadata
338
- */
339
- export interface Metadata {
340
- /**
341
- *
342
- * @type {number}
343
- * @memberof Metadata
344
- */
345
- sip: number;
346
- /**
347
- *
348
- * @type {string}
349
- * @memberof Metadata
350
- */
351
- name?: string;
352
- /**
353
- *
354
- * @type {string}
355
- * @memberof Metadata
356
- */
357
- description?: string;
358
- /**
359
- *
360
- * @type {string}
361
- * @memberof Metadata
362
- */
363
- image?: string;
364
- /**
365
- *
366
- * @type {string}
367
- * @memberof Metadata
368
- */
369
- cached_image?: string;
370
- /**
371
- *
372
- * @type {Array<MetadataAttribute>}
373
- * @memberof Metadata
374
- */
375
- attributes?: Array<MetadataAttribute>;
376
- /**
377
- *
378
- * @type {{ [key: string]: any; }}
379
- * @memberof Metadata
380
- */
381
- properties?: {
382
- [key: string]: any;
383
- };
384
- /**
385
- *
386
- * @type {MetadataLocalization}
387
- * @memberof Metadata
388
- */
389
- localization?: MetadataLocalization;
390
- }
391
- /**
392
- *
393
- * @export
394
- * @interface MetadataAttribute
395
- */
396
- export interface MetadataAttribute {
397
- /**
398
- *
399
- * @type {string}
400
- * @memberof MetadataAttribute
401
- */
402
- trait_type: string;
403
- /**
404
- *
405
- * @type {string}
406
- * @memberof MetadataAttribute
407
- */
408
- display_type?: string;
409
- /**
410
- *
411
- * @type {any}
412
- * @memberof MetadataAttribute
413
- */
414
- value: any;
415
- }
416
- /**
417
- *
418
- * @export
419
- * @interface MetadataLocalization
420
- */
421
- export interface MetadataLocalization {
422
- /**
423
- *
424
- * @type {string}
425
- * @memberof MetadataLocalization
426
- */
427
- uri: string;
428
- /**
429
- *
430
- * @type {string}
431
- * @memberof MetadataLocalization
432
- */
433
- _default: string;
434
- /**
435
- *
436
- * @type {Array<string>}
437
- * @memberof MetadataLocalization
438
- */
439
- locales: Array<string>;
440
- }
441
- /**
442
- *
443
- * @export
444
- * @interface NftMetadataResponse
445
- */
446
- export interface NftMetadataResponse {
447
- /**
448
- *
449
- * @type {string}
450
- * @memberof NftMetadataResponse
451
- */
452
- token_uri?: string;
453
- /**
454
- *
455
- * @type {Metadata}
456
- * @memberof NftMetadataResponse
457
- */
458
- metadata?: Metadata;
459
- }
460
- /**
461
- *
462
- * @export
463
- * @interface NotFoundErrorResponse
464
- */
465
- export interface NotFoundErrorResponse {
466
- }
467
- /**
468
- *
469
- * @export
470
- * @interface Order
471
- */
472
- export declare enum Order {
473
- asc = "asc",
474
- desc = "desc"
475
- }
476
- /**
477
- *
478
- * @export
479
- * @interface OrderBy
480
- */
481
- export declare enum OrderBy {
482
- name = "name",
483
- symbol = "symbol"
484
- }
485
- /**
486
- *
487
- * @export
488
- * @interface PaginatedFtBasicMetadataResponse
489
- */
490
- export interface PaginatedFtBasicMetadataResponse {
491
- /**
492
- *
493
- * @type {number}
494
- * @memberof PaginatedFtBasicMetadataResponse
495
- */
496
- limit: number;
497
- /**
498
- *
499
- * @type {number}
500
- * @memberof PaginatedFtBasicMetadataResponse
501
- */
502
- offset: number;
503
- /**
504
- *
505
- * @type {number}
506
- * @memberof PaginatedFtBasicMetadataResponse
507
- */
508
- total: number;
509
- /**
510
- *
511
- * @type {Array<FtBasicMetadataResponse>}
512
- * @memberof PaginatedFtBasicMetadataResponse
513
- */
514
- results: Array<FtBasicMetadataResponse>;
515
- }
516
- /**
517
- *
518
- * @export
519
- * @interface SftMetadataResponse
520
- */
521
- export interface SftMetadataResponse {
522
- /**
523
- *
524
- * @type {string}
525
- * @memberof SftMetadataResponse
526
- */
527
- token_uri?: string;
528
- /**
529
- *
530
- * @type {number}
531
- * @memberof SftMetadataResponse
532
- */
533
- decimals?: number;
534
- /**
535
- *
536
- * @type {string}
537
- * @memberof SftMetadataResponse
538
- */
539
- total_supply?: string;
540
- /**
541
- *
542
- * @type {Metadata}
543
- * @memberof SftMetadataResponse
544
- */
545
- metadata?: Metadata;
546
- }
547
- /**
548
- * StatusApi - fetch parameter creator
549
- * @export
550
- */
551
- export declare const StatusApiFetchParamCreator: (configuration?: Configuration) => {
552
- /**
553
- * Displays the status of the API and its current workload
554
- * @summary API Status
555
- * @param {*} [options] Override http request option.
556
- * @throws {RequiredError}
557
- */
558
- getApiStatus(options?: any): FetchArgs;
559
- };
560
- /**
561
- * StatusApi - functional programming interface
562
- * @export
563
- */
564
- export declare const StatusApiFp: (configuration?: Configuration) => {
565
- /**
566
- * Displays the status of the API and its current workload
567
- * @summary API Status
568
- * @param {*} [options] Override http request option.
569
- * @throws {RequiredError}
570
- */
571
- getApiStatus(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<ApiStatusResponse>;
572
- };
573
- /**
574
- * StatusApi - factory interface
575
- * @export
576
- */
577
- export declare const StatusApiFactory: (configuration?: Configuration, fetch?: FetchAPI, basePath?: string) => {
578
- /**
579
- * Displays the status of the API and its current workload
580
- * @summary API Status
581
- * @param {*} [options] Override http request option.
582
- * @throws {RequiredError}
583
- */
584
- getApiStatus(options?: any): Promise<ApiStatusResponse>;
585
- };
586
- /**
587
- * StatusApi - object-oriented interface
588
- * @export
589
- * @class StatusApi
590
- * @extends {BaseAPI}
591
- */
592
- export declare class StatusApi extends BaseAPI {
593
- /**
594
- * Displays the status of the API and its current workload
595
- * @summary API Status
596
- * @param {*} [options] Override http request option.
597
- * @throws {RequiredError}
598
- * @memberof StatusApi
599
- */
600
- getApiStatus(options?: any): Promise<ApiStatusResponse>;
601
- }
602
- /**
603
- * TokensApi - fetch parameter creator
604
- * @export
605
- */
606
- export declare const TokensApiFetchParamCreator: (configuration?: Configuration) => {
607
- /**
608
- * Retrieves metadata for a SIP-010 Fungible Token
609
- * @summary Fungible Token Metadata
610
- * @param {string} principal Principal for the contract which owns the SIP-010 token
611
- * @param {string} [locale] Metadata localization to retrieve
612
- * @param {*} [options] Override http request option.
613
- * @throws {RequiredError}
614
- */
615
- getFtMetadata(principal: string, locale?: string, options?: any): FetchArgs;
616
- /**
617
- * Retrieves a list of Fungible Tokens
618
- * @summary Fungible Tokens
619
- * @param {string} [name]
620
- * @param {string} [symbol]
621
- * @param {string} [address] Stacks Address
622
- * @param {number} [offset] Result offset
623
- * @param {number} [limit] Results per page
624
- * @param {OrderBy} [order_by] Parameter to order results by
625
- * @param {Order} [order] Results order
626
- * @param {*} [options] Override http request option.
627
- * @throws {RequiredError}
628
- */
629
- getFungibleTokens(name?: string, symbol?: string, address?: string, offset?: number, limit?: number, order_by?: OrderBy, order?: Order, options?: any): FetchArgs;
630
- /**
631
- * Retrieves metadata for a SIP-009 Non-Fungible Token
632
- * @summary Non-Fungible Token Metadata
633
- * @param {string} principal SIP-009 compliant smart contract principal
634
- * @param {number} token_id Token ID to retrieve
635
- * @param {string} [locale] Metadata localization to retrieve
636
- * @param {*} [options] Override http request option.
637
- * @throws {RequiredError}
638
- */
639
- getNftMetadata(principal: string, token_id: number, locale?: string, options?: any): FetchArgs;
640
- /**
641
- * Retrieves metadata for a SIP-013 Semi-Fungible Token
642
- * @summary Semi-Fungible Token Metadata
643
- * @param {string} principal SIP-013 compliant smart contract principal
644
- * @param {number} token_id Token ID to retrieve
645
- * @param {string} [locale] Metadata localization to retrieve
646
- * @param {*} [options] Override http request option.
647
- * @throws {RequiredError}
648
- */
649
- getSftMetadata(principal: string, token_id: number, locale?: string, options?: any): FetchArgs;
650
- };
651
- /**
652
- * TokensApi - functional programming interface
653
- * @export
654
- */
655
- export declare const TokensApiFp: (configuration?: Configuration) => {
656
- /**
657
- * Retrieves metadata for a SIP-010 Fungible Token
658
- * @summary Fungible Token Metadata
659
- * @param {string} principal Principal for the contract which owns the SIP-010 token
660
- * @param {string} [locale] Metadata localization to retrieve
661
- * @param {*} [options] Override http request option.
662
- * @throws {RequiredError}
663
- */
664
- getFtMetadata(principal: string, locale?: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<FtMetadataResponse>;
665
- /**
666
- * Retrieves a list of Fungible Tokens
667
- * @summary Fungible Tokens
668
- * @param {string} [name]
669
- * @param {string} [symbol]
670
- * @param {string} [address] Stacks Address
671
- * @param {number} [offset] Result offset
672
- * @param {number} [limit] Results per page
673
- * @param {OrderBy} [order_by] Parameter to order results by
674
- * @param {Order} [order] Results order
675
- * @param {*} [options] Override http request option.
676
- * @throws {RequiredError}
677
- */
678
- getFungibleTokens(name?: string, symbol?: string, address?: string, offset?: number, limit?: number, order_by?: OrderBy, order?: Order, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<PaginatedFtBasicMetadataResponse>;
679
- /**
680
- * Retrieves metadata for a SIP-009 Non-Fungible Token
681
- * @summary Non-Fungible Token Metadata
682
- * @param {string} principal SIP-009 compliant smart contract principal
683
- * @param {number} token_id Token ID to retrieve
684
- * @param {string} [locale] Metadata localization to retrieve
685
- * @param {*} [options] Override http request option.
686
- * @throws {RequiredError}
687
- */
688
- getNftMetadata(principal: string, token_id: number, locale?: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<NftMetadataResponse>;
689
- /**
690
- * Retrieves metadata for a SIP-013 Semi-Fungible Token
691
- * @summary Semi-Fungible Token Metadata
692
- * @param {string} principal SIP-013 compliant smart contract principal
693
- * @param {number} token_id Token ID to retrieve
694
- * @param {string} [locale] Metadata localization to retrieve
695
- * @param {*} [options] Override http request option.
696
- * @throws {RequiredError}
697
- */
698
- getSftMetadata(principal: string, token_id: number, locale?: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<SftMetadataResponse>;
699
- };
700
- /**
701
- * TokensApi - factory interface
702
- * @export
703
- */
704
- export declare const TokensApiFactory: (configuration?: Configuration, fetch?: FetchAPI, basePath?: string) => {
705
- /**
706
- * Retrieves metadata for a SIP-010 Fungible Token
707
- * @summary Fungible Token Metadata
708
- * @param {string} principal Principal for the contract which owns the SIP-010 token
709
- * @param {string} [locale] Metadata localization to retrieve
710
- * @param {*} [options] Override http request option.
711
- * @throws {RequiredError}
712
- */
713
- getFtMetadata(principal: string, locale?: string, options?: any): Promise<FtMetadataResponse>;
714
- /**
715
- * Retrieves a list of Fungible Tokens
716
- * @summary Fungible Tokens
717
- * @param {string} [name]
718
- * @param {string} [symbol]
719
- * @param {string} [address] Stacks Address
720
- * @param {number} [offset] Result offset
721
- * @param {number} [limit] Results per page
722
- * @param {OrderBy} [order_by] Parameter to order results by
723
- * @param {Order} [order] Results order
724
- * @param {*} [options] Override http request option.
725
- * @throws {RequiredError}
726
- */
727
- getFungibleTokens(name?: string, symbol?: string, address?: string, offset?: number, limit?: number, order_by?: OrderBy, order?: Order, options?: any): Promise<PaginatedFtBasicMetadataResponse>;
728
- /**
729
- * Retrieves metadata for a SIP-009 Non-Fungible Token
730
- * @summary Non-Fungible Token Metadata
731
- * @param {string} principal SIP-009 compliant smart contract principal
732
- * @param {number} token_id Token ID to retrieve
733
- * @param {string} [locale] Metadata localization to retrieve
734
- * @param {*} [options] Override http request option.
735
- * @throws {RequiredError}
736
- */
737
- getNftMetadata(principal: string, token_id: number, locale?: string, options?: any): Promise<NftMetadataResponse>;
738
- /**
739
- * Retrieves metadata for a SIP-013 Semi-Fungible Token
740
- * @summary Semi-Fungible Token Metadata
741
- * @param {string} principal SIP-013 compliant smart contract principal
742
- * @param {number} token_id Token ID to retrieve
743
- * @param {string} [locale] Metadata localization to retrieve
744
- * @param {*} [options] Override http request option.
745
- * @throws {RequiredError}
746
- */
747
- getSftMetadata(principal: string, token_id: number, locale?: string, options?: any): Promise<SftMetadataResponse>;
748
- };
749
- /**
750
- * TokensApi - object-oriented interface
751
- * @export
752
- * @class TokensApi
753
- * @extends {BaseAPI}
754
- */
755
- export declare class TokensApi extends BaseAPI {
756
- /**
757
- * Retrieves metadata for a SIP-010 Fungible Token
758
- * @summary Fungible Token Metadata
759
- * @param {string} principal Principal for the contract which owns the SIP-010 token
760
- * @param {string} [locale] Metadata localization to retrieve
761
- * @param {*} [options] Override http request option.
762
- * @throws {RequiredError}
763
- * @memberof TokensApi
764
- */
765
- getFtMetadata(principal: string, locale?: string, options?: any): Promise<FtMetadataResponse>;
766
- /**
767
- * Retrieves a list of Fungible Tokens
768
- * @summary Fungible Tokens
769
- * @param {string} [name]
770
- * @param {string} [symbol]
771
- * @param {string} [address] Stacks Address
772
- * @param {number} [offset] Result offset
773
- * @param {number} [limit] Results per page
774
- * @param {OrderBy} [order_by] Parameter to order results by
775
- * @param {Order} [order] Results order
776
- * @param {*} [options] Override http request option.
777
- * @throws {RequiredError}
778
- * @memberof TokensApi
779
- */
780
- getFungibleTokens(name?: string, symbol?: string, address?: string, offset?: number, limit?: number, order_by?: OrderBy, order?: Order, options?: any): Promise<PaginatedFtBasicMetadataResponse>;
781
- /**
782
- * Retrieves metadata for a SIP-009 Non-Fungible Token
783
- * @summary Non-Fungible Token Metadata
784
- * @param {string} principal SIP-009 compliant smart contract principal
785
- * @param {number} token_id Token ID to retrieve
786
- * @param {string} [locale] Metadata localization to retrieve
787
- * @param {*} [options] Override http request option.
788
- * @throws {RequiredError}
789
- * @memberof TokensApi
790
- */
791
- getNftMetadata(principal: string, token_id: number, locale?: string, options?: any): Promise<NftMetadataResponse>;
792
- /**
793
- * Retrieves metadata for a SIP-013 Semi-Fungible Token
794
- * @summary Semi-Fungible Token Metadata
795
- * @param {string} principal SIP-013 compliant smart contract principal
796
- * @param {number} token_id Token ID to retrieve
797
- * @param {string} [locale] Metadata localization to retrieve
798
- * @param {*} [options] Override http request option.
799
- * @throws {RequiredError}
800
- * @memberof TokensApi
801
- */
802
- getSftMetadata(principal: string, token_id: number, locale?: string, options?: any): Promise<SftMetadataResponse>;
803
- }