@silvana-one/api 0.1.1 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/node/client/client.gen.d.ts +12 -0
- package/dist/node/client/client.gen.js +6 -0
- package/dist/node/client/client.gen.js.map +1 -0
- package/dist/node/client/sdk.gen.d.ts +53 -26
- package/dist/node/client/sdk.gen.js +322 -48
- package/dist/node/client/sdk.gen.js.map +1 -1
- package/dist/node/client/types.gen.d.ts +1815 -621
- package/dist/node/config.js +1 -1
- package/dist/node/config.js.map +1 -1
- package/dist/node/index.cjs +318 -50
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/tsconfig.web.tsbuildinfo +1 -1
- package/dist/web/client/client.gen.d.ts +12 -0
- package/dist/web/client/client.gen.js +6 -0
- package/dist/web/client/client.gen.js.map +1 -0
- package/dist/web/client/sdk.gen.d.ts +53 -26
- package/dist/web/client/sdk.gen.js +322 -48
- package/dist/web/client/sdk.gen.js.map +1 -1
- package/dist/web/client/types.gen.d.ts +1815 -621
- package/dist/web/config.js +1 -1
- package/dist/web/config.js.map +1 -1
- package/package.json +4 -5
- package/src/client/client.gen.ts +18 -0
- package/src/client/sdk.gen.ts +362 -72
- package/src/client/types.gen.ts +1829 -584
- package/src/config.ts +1 -1
|
@@ -1,6 +1,27 @@
|
|
|
1
1
|
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
-
import {
|
|
3
|
-
|
|
2
|
+
import { client as _heyApiClient } from './client.gen.js';
|
|
3
|
+
/**
|
|
4
|
+
* Deploy a new NFT Collection contract.
|
|
5
|
+
* The `launch` endpoint is used to deploy a new NFT Collection on the Mina blockchain.
|
|
6
|
+
* It allows users to create a new NFT Collection with customizable parameters.
|
|
7
|
+
*
|
|
8
|
+
*/
|
|
9
|
+
export const launchNftCollection = (options) => {
|
|
10
|
+
return (options.client ?? _heyApiClient).post({
|
|
11
|
+
security: [
|
|
12
|
+
{
|
|
13
|
+
name: 'x-api-key',
|
|
14
|
+
type: 'apiKey'
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
url: '/nft/launch',
|
|
18
|
+
...options,
|
|
19
|
+
headers: {
|
|
20
|
+
'Content-Type': 'application/json',
|
|
21
|
+
...options?.headers
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
};
|
|
4
25
|
/**
|
|
5
26
|
* Deploy a new fungible token contract.
|
|
6
27
|
* The `launch` endpoint is used to deploy a new fungible token on the Mina blockchain.
|
|
@@ -9,9 +30,19 @@ export const client = createClient(createConfig());
|
|
|
9
30
|
*
|
|
10
31
|
*/
|
|
11
32
|
export const launchToken = (options) => {
|
|
12
|
-
return (options
|
|
33
|
+
return (options.client ?? _heyApiClient).post({
|
|
34
|
+
security: [
|
|
35
|
+
{
|
|
36
|
+
name: 'x-api-key',
|
|
37
|
+
type: 'apiKey'
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
url: '/token/launch',
|
|
13
41
|
...options,
|
|
14
|
-
|
|
42
|
+
headers: {
|
|
43
|
+
'Content-Type': 'application/json',
|
|
44
|
+
...options?.headers
|
|
45
|
+
}
|
|
15
46
|
});
|
|
16
47
|
};
|
|
17
48
|
/**
|
|
@@ -19,9 +50,19 @@ export const launchToken = (options) => {
|
|
|
19
50
|
* Retrieves detailed information about a contract.
|
|
20
51
|
*/
|
|
21
52
|
export const getContractInfo = (options) => {
|
|
22
|
-
return (options
|
|
53
|
+
return (options.client ?? _heyApiClient).post({
|
|
54
|
+
security: [
|
|
55
|
+
{
|
|
56
|
+
name: 'x-api-key',
|
|
57
|
+
type: 'apiKey'
|
|
58
|
+
}
|
|
59
|
+
],
|
|
60
|
+
url: '/info/contract',
|
|
23
61
|
...options,
|
|
24
|
-
|
|
62
|
+
headers: {
|
|
63
|
+
'Content-Type': 'application/json',
|
|
64
|
+
...options?.headers
|
|
65
|
+
}
|
|
25
66
|
});
|
|
26
67
|
};
|
|
27
68
|
/**
|
|
@@ -29,9 +70,19 @@ export const getContractInfo = (options) => {
|
|
|
29
70
|
* Retrieves detailed information about a Mina NFT V2.
|
|
30
71
|
*/
|
|
31
72
|
export const getNftV2Info = (options) => {
|
|
32
|
-
return (options
|
|
73
|
+
return (options.client ?? _heyApiClient).post({
|
|
74
|
+
security: [
|
|
75
|
+
{
|
|
76
|
+
name: 'x-api-key',
|
|
77
|
+
type: 'apiKey'
|
|
78
|
+
}
|
|
79
|
+
],
|
|
80
|
+
url: '/info/nft-v2',
|
|
33
81
|
...options,
|
|
34
|
-
|
|
82
|
+
headers: {
|
|
83
|
+
'Content-Type': 'application/json',
|
|
84
|
+
...options?.headers
|
|
85
|
+
}
|
|
35
86
|
});
|
|
36
87
|
};
|
|
37
88
|
/**
|
|
@@ -39,9 +90,19 @@ export const getNftV2Info = (options) => {
|
|
|
39
90
|
* Requests funds from the faucet for testing purposes.
|
|
40
91
|
*/
|
|
41
92
|
export const faucet = (options) => {
|
|
42
|
-
return (options
|
|
93
|
+
return (options.client ?? _heyApiClient).post({
|
|
94
|
+
security: [
|
|
95
|
+
{
|
|
96
|
+
name: 'x-api-key',
|
|
97
|
+
type: 'apiKey'
|
|
98
|
+
}
|
|
99
|
+
],
|
|
100
|
+
url: '/faucet',
|
|
43
101
|
...options,
|
|
44
|
-
|
|
102
|
+
headers: {
|
|
103
|
+
'Content-Type': 'application/json',
|
|
104
|
+
...options?.headers
|
|
105
|
+
}
|
|
45
106
|
});
|
|
46
107
|
};
|
|
47
108
|
/**
|
|
@@ -50,9 +111,19 @@ export const faucet = (options) => {
|
|
|
50
111
|
*
|
|
51
112
|
*/
|
|
52
113
|
export const getTokenInfo = (options) => {
|
|
53
|
-
return (options
|
|
114
|
+
return (options.client ?? _heyApiClient).post({
|
|
115
|
+
security: [
|
|
116
|
+
{
|
|
117
|
+
name: 'x-api-key',
|
|
118
|
+
type: 'apiKey'
|
|
119
|
+
}
|
|
120
|
+
],
|
|
121
|
+
url: '/info/token',
|
|
54
122
|
...options,
|
|
55
|
-
|
|
123
|
+
headers: {
|
|
124
|
+
'Content-Type': 'application/json',
|
|
125
|
+
...options?.headers
|
|
126
|
+
}
|
|
56
127
|
});
|
|
57
128
|
};
|
|
58
129
|
/**
|
|
@@ -61,9 +132,19 @@ export const getTokenInfo = (options) => {
|
|
|
61
132
|
*
|
|
62
133
|
*/
|
|
63
134
|
export const getTokenBalance = (options) => {
|
|
64
|
-
return (options
|
|
135
|
+
return (options.client ?? _heyApiClient).post({
|
|
136
|
+
security: [
|
|
137
|
+
{
|
|
138
|
+
name: 'x-api-key',
|
|
139
|
+
type: 'apiKey'
|
|
140
|
+
}
|
|
141
|
+
],
|
|
142
|
+
url: '/info/balance',
|
|
65
143
|
...options,
|
|
66
|
-
|
|
144
|
+
headers: {
|
|
145
|
+
'Content-Type': 'application/json',
|
|
146
|
+
...options?.headers
|
|
147
|
+
}
|
|
67
148
|
});
|
|
68
149
|
};
|
|
69
150
|
/**
|
|
@@ -73,9 +154,19 @@ export const getTokenBalance = (options) => {
|
|
|
73
154
|
*
|
|
74
155
|
*/
|
|
75
156
|
export const prove = (options) => {
|
|
76
|
-
return (options
|
|
157
|
+
return (options.client ?? _heyApiClient).post({
|
|
158
|
+
security: [
|
|
159
|
+
{
|
|
160
|
+
name: 'x-api-key',
|
|
161
|
+
type: 'apiKey'
|
|
162
|
+
}
|
|
163
|
+
],
|
|
164
|
+
url: '/transaction/prove',
|
|
77
165
|
...options,
|
|
78
|
-
|
|
166
|
+
headers: {
|
|
167
|
+
'Content-Type': 'application/json',
|
|
168
|
+
...options?.headers
|
|
169
|
+
}
|
|
79
170
|
});
|
|
80
171
|
};
|
|
81
172
|
/**
|
|
@@ -85,9 +176,19 @@ export const prove = (options) => {
|
|
|
85
176
|
*
|
|
86
177
|
*/
|
|
87
178
|
export const getProof = (options) => {
|
|
88
|
-
return (options
|
|
179
|
+
return (options.client ?? _heyApiClient).post({
|
|
180
|
+
security: [
|
|
181
|
+
{
|
|
182
|
+
name: 'x-api-key',
|
|
183
|
+
type: 'apiKey'
|
|
184
|
+
}
|
|
185
|
+
],
|
|
186
|
+
url: '/transaction/proof',
|
|
89
187
|
...options,
|
|
90
|
-
|
|
188
|
+
headers: {
|
|
189
|
+
'Content-Type': 'application/json',
|
|
190
|
+
...options?.headers
|
|
191
|
+
}
|
|
91
192
|
});
|
|
92
193
|
};
|
|
93
194
|
/**
|
|
@@ -96,9 +197,19 @@ export const getProof = (options) => {
|
|
|
96
197
|
*
|
|
97
198
|
*/
|
|
98
199
|
export const txStatus = (options) => {
|
|
99
|
-
return (options
|
|
200
|
+
return (options.client ?? _heyApiClient).post({
|
|
201
|
+
security: [
|
|
202
|
+
{
|
|
203
|
+
name: 'x-api-key',
|
|
204
|
+
type: 'apiKey'
|
|
205
|
+
}
|
|
206
|
+
],
|
|
207
|
+
url: '/transaction/status',
|
|
100
208
|
...options,
|
|
101
|
-
|
|
209
|
+
headers: {
|
|
210
|
+
'Content-Type': 'application/json',
|
|
211
|
+
...options?.headers
|
|
212
|
+
}
|
|
102
213
|
});
|
|
103
214
|
};
|
|
104
215
|
/**
|
|
@@ -109,9 +220,42 @@ export const txStatus = (options) => {
|
|
|
109
220
|
*
|
|
110
221
|
*/
|
|
111
222
|
export const mintTokens = (options) => {
|
|
112
|
-
return (options
|
|
223
|
+
return (options.client ?? _heyApiClient).post({
|
|
224
|
+
security: [
|
|
225
|
+
{
|
|
226
|
+
name: 'x-api-key',
|
|
227
|
+
type: 'apiKey'
|
|
228
|
+
}
|
|
229
|
+
],
|
|
230
|
+
url: '/token/mint',
|
|
231
|
+
...options,
|
|
232
|
+
headers: {
|
|
233
|
+
'Content-Type': 'application/json',
|
|
234
|
+
...options?.headers
|
|
235
|
+
}
|
|
236
|
+
});
|
|
237
|
+
};
|
|
238
|
+
/**
|
|
239
|
+
* Mint new NFT to a specified address.
|
|
240
|
+
* The `mint` endpoint allows authorized users to mint new NFT on the Mina blockchain.
|
|
241
|
+
* This transaction creates new NFT.
|
|
242
|
+
* The sender must have the authority to mint NFTs, typically the admin of the NFT contract.
|
|
243
|
+
*
|
|
244
|
+
*/
|
|
245
|
+
export const mintNft = (options) => {
|
|
246
|
+
return (options.client ?? _heyApiClient).post({
|
|
247
|
+
security: [
|
|
248
|
+
{
|
|
249
|
+
name: 'x-api-key',
|
|
250
|
+
type: 'apiKey'
|
|
251
|
+
}
|
|
252
|
+
],
|
|
253
|
+
url: '/nft/mint',
|
|
113
254
|
...options,
|
|
114
|
-
|
|
255
|
+
headers: {
|
|
256
|
+
'Content-Type': 'application/json',
|
|
257
|
+
...options?.headers
|
|
258
|
+
}
|
|
115
259
|
});
|
|
116
260
|
};
|
|
117
261
|
/**
|
|
@@ -121,9 +265,19 @@ export const mintTokens = (options) => {
|
|
|
121
265
|
*
|
|
122
266
|
*/
|
|
123
267
|
export const transferTokens = (options) => {
|
|
124
|
-
return (options
|
|
268
|
+
return (options.client ?? _heyApiClient).post({
|
|
269
|
+
security: [
|
|
270
|
+
{
|
|
271
|
+
name: 'x-api-key',
|
|
272
|
+
type: 'apiKey'
|
|
273
|
+
}
|
|
274
|
+
],
|
|
275
|
+
url: '/token/transfer',
|
|
125
276
|
...options,
|
|
126
|
-
|
|
277
|
+
headers: {
|
|
278
|
+
'Content-Type': 'application/json',
|
|
279
|
+
...options?.headers
|
|
280
|
+
}
|
|
127
281
|
});
|
|
128
282
|
};
|
|
129
283
|
/**
|
|
@@ -133,9 +287,19 @@ export const transferTokens = (options) => {
|
|
|
133
287
|
*
|
|
134
288
|
*/
|
|
135
289
|
export const airdropTokens = (options) => {
|
|
136
|
-
return (options
|
|
290
|
+
return (options.client ?? _heyApiClient).post({
|
|
291
|
+
security: [
|
|
292
|
+
{
|
|
293
|
+
name: 'x-api-key',
|
|
294
|
+
type: 'apiKey'
|
|
295
|
+
}
|
|
296
|
+
],
|
|
297
|
+
url: '/token/airdrop',
|
|
137
298
|
...options,
|
|
138
|
-
|
|
299
|
+
headers: {
|
|
300
|
+
'Content-Type': 'application/json',
|
|
301
|
+
...options?.headers
|
|
302
|
+
}
|
|
139
303
|
});
|
|
140
304
|
};
|
|
141
305
|
/**
|
|
@@ -145,9 +309,19 @@ export const airdropTokens = (options) => {
|
|
|
145
309
|
*
|
|
146
310
|
*/
|
|
147
311
|
export const redeemTokens = (options) => {
|
|
148
|
-
return (options
|
|
312
|
+
return (options.client ?? _heyApiClient).post({
|
|
313
|
+
security: [
|
|
314
|
+
{
|
|
315
|
+
name: 'x-api-key',
|
|
316
|
+
type: 'apiKey'
|
|
317
|
+
}
|
|
318
|
+
],
|
|
319
|
+
url: '/token/redeem',
|
|
149
320
|
...options,
|
|
150
|
-
|
|
321
|
+
headers: {
|
|
322
|
+
'Content-Type': 'application/json',
|
|
323
|
+
...options?.headers
|
|
324
|
+
}
|
|
151
325
|
});
|
|
152
326
|
};
|
|
153
327
|
/**
|
|
@@ -157,9 +331,19 @@ export const redeemTokens = (options) => {
|
|
|
157
331
|
*
|
|
158
332
|
*/
|
|
159
333
|
export const burnTokens = (options) => {
|
|
160
|
-
return (options
|
|
334
|
+
return (options.client ?? _heyApiClient).post({
|
|
335
|
+
security: [
|
|
336
|
+
{
|
|
337
|
+
name: 'x-api-key',
|
|
338
|
+
type: 'apiKey'
|
|
339
|
+
}
|
|
340
|
+
],
|
|
341
|
+
url: '/token/burn',
|
|
161
342
|
...options,
|
|
162
|
-
|
|
343
|
+
headers: {
|
|
344
|
+
'Content-Type': 'application/json',
|
|
345
|
+
...options?.headers
|
|
346
|
+
}
|
|
163
347
|
});
|
|
164
348
|
};
|
|
165
349
|
/**
|
|
@@ -168,9 +352,19 @@ export const burnTokens = (options) => {
|
|
|
168
352
|
*
|
|
169
353
|
*/
|
|
170
354
|
export const tokenBid = (options) => {
|
|
171
|
-
return (options
|
|
355
|
+
return (options.client ?? _heyApiClient).post({
|
|
356
|
+
security: [
|
|
357
|
+
{
|
|
358
|
+
name: 'x-api-key',
|
|
359
|
+
type: 'apiKey'
|
|
360
|
+
}
|
|
361
|
+
],
|
|
362
|
+
url: '/token/bid/create',
|
|
172
363
|
...options,
|
|
173
|
-
|
|
364
|
+
headers: {
|
|
365
|
+
'Content-Type': 'application/json',
|
|
366
|
+
...options?.headers
|
|
367
|
+
}
|
|
174
368
|
});
|
|
175
369
|
};
|
|
176
370
|
/**
|
|
@@ -179,9 +373,19 @@ export const tokenBid = (options) => {
|
|
|
179
373
|
*
|
|
180
374
|
*/
|
|
181
375
|
export const tokenOffer = (options) => {
|
|
182
|
-
return (options
|
|
376
|
+
return (options.client ?? _heyApiClient).post({
|
|
377
|
+
security: [
|
|
378
|
+
{
|
|
379
|
+
name: 'x-api-key',
|
|
380
|
+
type: 'apiKey'
|
|
381
|
+
}
|
|
382
|
+
],
|
|
383
|
+
url: '/token/offer/create',
|
|
183
384
|
...options,
|
|
184
|
-
|
|
385
|
+
headers: {
|
|
386
|
+
'Content-Type': 'application/json',
|
|
387
|
+
...options?.headers
|
|
388
|
+
}
|
|
185
389
|
});
|
|
186
390
|
};
|
|
187
391
|
/**
|
|
@@ -191,9 +395,19 @@ export const tokenOffer = (options) => {
|
|
|
191
395
|
*
|
|
192
396
|
*/
|
|
193
397
|
export const buyTokens = (options) => {
|
|
194
|
-
return (options
|
|
398
|
+
return (options.client ?? _heyApiClient).post({
|
|
399
|
+
security: [
|
|
400
|
+
{
|
|
401
|
+
name: 'x-api-key',
|
|
402
|
+
type: 'apiKey'
|
|
403
|
+
}
|
|
404
|
+
],
|
|
405
|
+
url: '/token/offer/buy',
|
|
195
406
|
...options,
|
|
196
|
-
|
|
407
|
+
headers: {
|
|
408
|
+
'Content-Type': 'application/json',
|
|
409
|
+
...options?.headers
|
|
410
|
+
}
|
|
197
411
|
});
|
|
198
412
|
};
|
|
199
413
|
/**
|
|
@@ -202,9 +416,19 @@ export const buyTokens = (options) => {
|
|
|
202
416
|
*
|
|
203
417
|
*/
|
|
204
418
|
export const sellTokens = (options) => {
|
|
205
|
-
return (options
|
|
419
|
+
return (options.client ?? _heyApiClient).post({
|
|
420
|
+
security: [
|
|
421
|
+
{
|
|
422
|
+
name: 'x-api-key',
|
|
423
|
+
type: 'apiKey'
|
|
424
|
+
}
|
|
425
|
+
],
|
|
426
|
+
url: '/token/bid/sell',
|
|
206
427
|
...options,
|
|
207
|
-
|
|
428
|
+
headers: {
|
|
429
|
+
'Content-Type': 'application/json',
|
|
430
|
+
...options?.headers
|
|
431
|
+
}
|
|
208
432
|
});
|
|
209
433
|
};
|
|
210
434
|
/**
|
|
@@ -214,9 +438,19 @@ export const sellTokens = (options) => {
|
|
|
214
438
|
*
|
|
215
439
|
*/
|
|
216
440
|
export const withdrawTokenBid = (options) => {
|
|
217
|
-
return (options
|
|
441
|
+
return (options.client ?? _heyApiClient).post({
|
|
442
|
+
security: [
|
|
443
|
+
{
|
|
444
|
+
name: 'x-api-key',
|
|
445
|
+
type: 'apiKey'
|
|
446
|
+
}
|
|
447
|
+
],
|
|
448
|
+
url: '/token/bid/withdraw',
|
|
218
449
|
...options,
|
|
219
|
-
|
|
450
|
+
headers: {
|
|
451
|
+
'Content-Type': 'application/json',
|
|
452
|
+
...options?.headers
|
|
453
|
+
}
|
|
220
454
|
});
|
|
221
455
|
};
|
|
222
456
|
/**
|
|
@@ -226,9 +460,19 @@ export const withdrawTokenBid = (options) => {
|
|
|
226
460
|
*
|
|
227
461
|
*/
|
|
228
462
|
export const withdrawTokenOffer = (options) => {
|
|
229
|
-
return (options
|
|
463
|
+
return (options.client ?? _heyApiClient).post({
|
|
464
|
+
security: [
|
|
465
|
+
{
|
|
466
|
+
name: 'x-api-key',
|
|
467
|
+
type: 'apiKey'
|
|
468
|
+
}
|
|
469
|
+
],
|
|
470
|
+
url: '/token/offer/withdraw',
|
|
230
471
|
...options,
|
|
231
|
-
|
|
472
|
+
headers: {
|
|
473
|
+
'Content-Type': 'application/json',
|
|
474
|
+
...options?.headers
|
|
475
|
+
}
|
|
232
476
|
});
|
|
233
477
|
};
|
|
234
478
|
/**
|
|
@@ -238,9 +482,19 @@ export const withdrawTokenOffer = (options) => {
|
|
|
238
482
|
*
|
|
239
483
|
*/
|
|
240
484
|
export const updateTokenBidWhitelist = (options) => {
|
|
241
|
-
return (options
|
|
485
|
+
return (options.client ?? _heyApiClient).post({
|
|
486
|
+
security: [
|
|
487
|
+
{
|
|
488
|
+
name: 'x-api-key',
|
|
489
|
+
type: 'apiKey'
|
|
490
|
+
}
|
|
491
|
+
],
|
|
492
|
+
url: '/token/bid/whitelist',
|
|
242
493
|
...options,
|
|
243
|
-
|
|
494
|
+
headers: {
|
|
495
|
+
'Content-Type': 'application/json',
|
|
496
|
+
...options?.headers
|
|
497
|
+
}
|
|
244
498
|
});
|
|
245
499
|
};
|
|
246
500
|
/**
|
|
@@ -250,9 +504,19 @@ export const updateTokenBidWhitelist = (options) => {
|
|
|
250
504
|
*
|
|
251
505
|
*/
|
|
252
506
|
export const updateTokenOfferWhitelist = (options) => {
|
|
253
|
-
return (options
|
|
507
|
+
return (options.client ?? _heyApiClient).post({
|
|
508
|
+
security: [
|
|
509
|
+
{
|
|
510
|
+
name: 'x-api-key',
|
|
511
|
+
type: 'apiKey'
|
|
512
|
+
}
|
|
513
|
+
],
|
|
514
|
+
url: '/token/offer/whitelist',
|
|
254
515
|
...options,
|
|
255
|
-
|
|
516
|
+
headers: {
|
|
517
|
+
'Content-Type': 'application/json',
|
|
518
|
+
...options?.headers
|
|
519
|
+
}
|
|
256
520
|
});
|
|
257
521
|
};
|
|
258
522
|
/**
|
|
@@ -261,9 +525,19 @@ export const updateTokenOfferWhitelist = (options) => {
|
|
|
261
525
|
*
|
|
262
526
|
*/
|
|
263
527
|
export const updateTokenAdminWhitelist = (options) => {
|
|
264
|
-
return (options
|
|
528
|
+
return (options.client ?? _heyApiClient).post({
|
|
529
|
+
security: [
|
|
530
|
+
{
|
|
531
|
+
name: 'x-api-key',
|
|
532
|
+
type: 'apiKey'
|
|
533
|
+
}
|
|
534
|
+
],
|
|
535
|
+
url: '/token/admin/whitelist',
|
|
265
536
|
...options,
|
|
266
|
-
|
|
537
|
+
headers: {
|
|
538
|
+
'Content-Type': 'application/json',
|
|
539
|
+
...options?.headers
|
|
540
|
+
}
|
|
267
541
|
});
|
|
268
542
|
};
|
|
269
543
|
//# sourceMappingURL=sdk.gen.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sdk.gen.js","sourceRoot":"","sources":["../../../src/client/sdk.gen.ts"],"names":[],"mappings":"AAAA,qDAAqD;
|
|
1
|
+
{"version":3,"file":"sdk.gen.js","sourceRoot":"","sources":["../../../src/client/sdk.gen.ts"],"names":[],"mappings":"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"}
|