@oumla/sdk 1.2.2 → 1.2.4
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/README.md +2 -2
- package/dist/index.cjs +45 -45
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +45 -45
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1246,9 +1246,9 @@ declare namespace index {
|
|
|
1246
1246
|
}
|
|
1247
1247
|
|
|
1248
1248
|
declare const OumlaSdkApiEnvironment: {
|
|
1249
|
-
readonly
|
|
1249
|
+
readonly Mainnet: "https://sandbox.oumla.com";
|
|
1250
1250
|
};
|
|
1251
|
-
type OumlaSdkApiEnvironment = typeof OumlaSdkApiEnvironment.
|
|
1251
|
+
type OumlaSdkApiEnvironment = typeof OumlaSdkApiEnvironment.Mainnet;
|
|
1252
1252
|
|
|
1253
1253
|
declare namespace Profiles {
|
|
1254
1254
|
interface Options {
|
package/dist/index.js
CHANGED
|
@@ -973,7 +973,7 @@ function mergeOnlyDefinedHeaders(...headersArray) {
|
|
|
973
973
|
|
|
974
974
|
// environments.ts
|
|
975
975
|
var OumlaSdkApiEnvironment = {
|
|
976
|
-
|
|
976
|
+
Mainnet: "https://sandbox.oumla.com"
|
|
977
977
|
};
|
|
978
978
|
|
|
979
979
|
// api/resources/profiles/client/Client.ts
|
|
@@ -1016,7 +1016,7 @@ var Profiles = class {
|
|
|
1016
1016
|
);
|
|
1017
1017
|
const _response = await fetcher({
|
|
1018
1018
|
url: url_exports.join(
|
|
1019
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
1019
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
1020
1020
|
"api/v1/profiles"
|
|
1021
1021
|
),
|
|
1022
1022
|
method: "GET",
|
|
@@ -1081,7 +1081,7 @@ var Profiles = class {
|
|
|
1081
1081
|
);
|
|
1082
1082
|
const _response = await fetcher({
|
|
1083
1083
|
url: url_exports.join(
|
|
1084
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
1084
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
1085
1085
|
"api/v1/profiles"
|
|
1086
1086
|
),
|
|
1087
1087
|
method: "POST",
|
|
@@ -1177,7 +1177,7 @@ var Wallets = class {
|
|
|
1177
1177
|
);
|
|
1178
1178
|
const _response = await fetcher({
|
|
1179
1179
|
url: url_exports.join(
|
|
1180
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
1180
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
1181
1181
|
"api/v1/wallets/organization"
|
|
1182
1182
|
),
|
|
1183
1183
|
method: "GET",
|
|
@@ -1251,7 +1251,7 @@ var Wallets = class {
|
|
|
1251
1251
|
);
|
|
1252
1252
|
const _response = await fetcher({
|
|
1253
1253
|
url: url_exports.join(
|
|
1254
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
1254
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
1255
1255
|
`api/v1/wallets/profile/${encodeURIComponent(reference)}`
|
|
1256
1256
|
),
|
|
1257
1257
|
method: "GET",
|
|
@@ -1316,7 +1316,7 @@ var Wallets = class {
|
|
|
1316
1316
|
);
|
|
1317
1317
|
const _response = await fetcher({
|
|
1318
1318
|
url: url_exports.join(
|
|
1319
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
1319
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
1320
1320
|
"api/v1/wallets/generate"
|
|
1321
1321
|
),
|
|
1322
1322
|
method: "POST",
|
|
@@ -1406,7 +1406,7 @@ var Addresses = class {
|
|
|
1406
1406
|
);
|
|
1407
1407
|
const _response = await fetcher({
|
|
1408
1408
|
url: url_exports.join(
|
|
1409
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
1409
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
1410
1410
|
"api/v1/addresses/organization"
|
|
1411
1411
|
),
|
|
1412
1412
|
method: "GET",
|
|
@@ -1480,7 +1480,7 @@ var Addresses = class {
|
|
|
1480
1480
|
);
|
|
1481
1481
|
const _response = await fetcher({
|
|
1482
1482
|
url: url_exports.join(
|
|
1483
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
1483
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
1484
1484
|
`api/v1/addresses/${encodeURIComponent(reference)}`
|
|
1485
1485
|
),
|
|
1486
1486
|
method: "GET",
|
|
@@ -1546,7 +1546,7 @@ var Addresses = class {
|
|
|
1546
1546
|
);
|
|
1547
1547
|
const _response = await fetcher({
|
|
1548
1548
|
url: url_exports.join(
|
|
1549
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
1549
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
1550
1550
|
"api/v1/addresses/generate"
|
|
1551
1551
|
),
|
|
1552
1552
|
method: "POST",
|
|
@@ -1615,7 +1615,7 @@ var Addresses = class {
|
|
|
1615
1615
|
);
|
|
1616
1616
|
const _response = await fetcher({
|
|
1617
1617
|
url: url_exports.join(
|
|
1618
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
1618
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
1619
1619
|
"api/v2/addresses/generate"
|
|
1620
1620
|
),
|
|
1621
1621
|
method: "POST",
|
|
@@ -1706,7 +1706,7 @@ var Transactions = class {
|
|
|
1706
1706
|
);
|
|
1707
1707
|
const _response = await fetcher({
|
|
1708
1708
|
url: url_exports.join(
|
|
1709
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
1709
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
1710
1710
|
`api/v1/transactions/address/${encodeURIComponent(address)}`
|
|
1711
1711
|
),
|
|
1712
1712
|
method: "GET",
|
|
@@ -1782,7 +1782,7 @@ var Transactions = class {
|
|
|
1782
1782
|
);
|
|
1783
1783
|
const _response = await fetcher({
|
|
1784
1784
|
url: url_exports.join(
|
|
1785
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
1785
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
1786
1786
|
`api/v1/transactions/wallet/${encodeURIComponent(miniWalletId)}`
|
|
1787
1787
|
),
|
|
1788
1788
|
method: "GET",
|
|
@@ -1855,7 +1855,7 @@ var Transactions = class {
|
|
|
1855
1855
|
);
|
|
1856
1856
|
const _response = await fetcher({
|
|
1857
1857
|
url: url_exports.join(
|
|
1858
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
1858
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
1859
1859
|
"api/v1/transactions/organization"
|
|
1860
1860
|
),
|
|
1861
1861
|
method: "GET",
|
|
@@ -1929,7 +1929,7 @@ var Transactions = class {
|
|
|
1929
1929
|
);
|
|
1930
1930
|
const _response = await fetcher({
|
|
1931
1931
|
url: url_exports.join(
|
|
1932
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
1932
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
1933
1933
|
`api/v1/transactions/profile/${encodeURIComponent(reference)}`
|
|
1934
1934
|
),
|
|
1935
1935
|
method: "GET",
|
|
@@ -2011,7 +2011,7 @@ var Withdrawals = class {
|
|
|
2011
2011
|
);
|
|
2012
2012
|
const _response = await fetcher({
|
|
2013
2013
|
url: url_exports.join(
|
|
2014
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
2014
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
2015
2015
|
"api/v1/withdraw"
|
|
2016
2016
|
),
|
|
2017
2017
|
method: "POST",
|
|
@@ -2099,7 +2099,7 @@ var ContractTemplates = class {
|
|
|
2099
2099
|
);
|
|
2100
2100
|
const _response = await fetcher({
|
|
2101
2101
|
url: url_exports.join(
|
|
2102
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
2102
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
2103
2103
|
"api/v1/contract-templates"
|
|
2104
2104
|
),
|
|
2105
2105
|
method: "GET",
|
|
@@ -2168,7 +2168,7 @@ var ContractTemplates = class {
|
|
|
2168
2168
|
);
|
|
2169
2169
|
const _response = await fetcher({
|
|
2170
2170
|
url: url_exports.join(
|
|
2171
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
2171
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
2172
2172
|
"api/v1/contract-templates"
|
|
2173
2173
|
),
|
|
2174
2174
|
method: "POST",
|
|
@@ -2233,7 +2233,7 @@ var ContractTemplates = class {
|
|
|
2233
2233
|
);
|
|
2234
2234
|
const _response = await fetcher({
|
|
2235
2235
|
url: url_exports.join(
|
|
2236
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
2236
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
2237
2237
|
`api/v1/contract-templates/${encodeURIComponent(templateId)}`
|
|
2238
2238
|
),
|
|
2239
2239
|
method: "GET",
|
|
@@ -2295,7 +2295,7 @@ var ContractTemplates = class {
|
|
|
2295
2295
|
);
|
|
2296
2296
|
const _response = await fetcher({
|
|
2297
2297
|
url: url_exports.join(
|
|
2298
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
2298
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
2299
2299
|
`api/v1/contract-templates/${encodeURIComponent(templateId)}`
|
|
2300
2300
|
),
|
|
2301
2301
|
method: "DELETE",
|
|
@@ -2357,7 +2357,7 @@ var ContractTemplates = class {
|
|
|
2357
2357
|
);
|
|
2358
2358
|
const _response = await fetcher({
|
|
2359
2359
|
url: url_exports.join(
|
|
2360
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
2360
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
2361
2361
|
`api/v1/contract-templates/${encodeURIComponent(templateId)}/constructorInfo`
|
|
2362
2362
|
),
|
|
2363
2363
|
method: "GET",
|
|
@@ -2427,7 +2427,7 @@ var ContractTemplates = class {
|
|
|
2427
2427
|
);
|
|
2428
2428
|
const _response = await fetcher({
|
|
2429
2429
|
url: url_exports.join(
|
|
2430
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
2430
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
2431
2431
|
`api/v1/contract-templates/${encodeURIComponent(templateId)}/function`
|
|
2432
2432
|
),
|
|
2433
2433
|
method: "GET",
|
|
@@ -2494,7 +2494,7 @@ var ContractTemplates = class {
|
|
|
2494
2494
|
);
|
|
2495
2495
|
const _response = await fetcher({
|
|
2496
2496
|
url: url_exports.join(
|
|
2497
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
2497
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
2498
2498
|
`api/v1/contract-templates/${encodeURIComponent(templateId)}/deploy`
|
|
2499
2499
|
),
|
|
2500
2500
|
method: "POST",
|
|
@@ -2596,7 +2596,7 @@ var DeployedContracts = class {
|
|
|
2596
2596
|
);
|
|
2597
2597
|
const _response = await fetcher({
|
|
2598
2598
|
url: url_exports.join(
|
|
2599
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
2599
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
2600
2600
|
"api/v1/deployed-contracts"
|
|
2601
2601
|
),
|
|
2602
2602
|
method: "GET",
|
|
@@ -2658,7 +2658,7 @@ var DeployedContracts = class {
|
|
|
2658
2658
|
);
|
|
2659
2659
|
const _response = await fetcher({
|
|
2660
2660
|
url: url_exports.join(
|
|
2661
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
2661
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
2662
2662
|
`api/v1/deployed-contracts/${encodeURIComponent(contractId)}`
|
|
2663
2663
|
),
|
|
2664
2664
|
method: "GET",
|
|
@@ -2723,7 +2723,7 @@ var DeployedContracts = class {
|
|
|
2723
2723
|
);
|
|
2724
2724
|
const _response = await fetcher({
|
|
2725
2725
|
url: url_exports.join(
|
|
2726
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
2726
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
2727
2727
|
`api/v1/deployed-contracts/${encodeURIComponent(network)}/${encodeURIComponent(contractAddress)}`
|
|
2728
2728
|
),
|
|
2729
2729
|
method: "GET",
|
|
@@ -2788,7 +2788,7 @@ var DeployedContracts = class {
|
|
|
2788
2788
|
);
|
|
2789
2789
|
const _response = await fetcher({
|
|
2790
2790
|
url: url_exports.join(
|
|
2791
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
2791
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
2792
2792
|
"api/v1/deployed-contracts/fetch-abi"
|
|
2793
2793
|
),
|
|
2794
2794
|
method: "POST",
|
|
@@ -2860,7 +2860,7 @@ var DeployedContracts = class {
|
|
|
2860
2860
|
);
|
|
2861
2861
|
const _response = await fetcher({
|
|
2862
2862
|
url: url_exports.join(
|
|
2863
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
2863
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
2864
2864
|
"api/v1/deployed-contracts/add-abi"
|
|
2865
2865
|
),
|
|
2866
2866
|
method: "POST",
|
|
@@ -2942,7 +2942,7 @@ var ContractInteractions = class {
|
|
|
2942
2942
|
);
|
|
2943
2943
|
const _response = await fetcher({
|
|
2944
2944
|
url: url_exports.join(
|
|
2945
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
2945
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
2946
2946
|
`api/v1/contract-interactions/network/${encodeURIComponent(network)}/contract-address/${encodeURIComponent(contractAddress)}/functions`
|
|
2947
2947
|
),
|
|
2948
2948
|
method: "GET",
|
|
@@ -3015,7 +3015,7 @@ var ContractInteractions = class {
|
|
|
3015
3015
|
);
|
|
3016
3016
|
const _response = await fetcher({
|
|
3017
3017
|
url: url_exports.join(
|
|
3018
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
3018
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
3019
3019
|
`api/v1/contract-interactions/network/${encodeURIComponent(network)}/contract-address/${encodeURIComponent(contractAddress)}/functions/read`
|
|
3020
3020
|
),
|
|
3021
3021
|
method: "POST",
|
|
@@ -3093,7 +3093,7 @@ var ContractInteractions = class {
|
|
|
3093
3093
|
);
|
|
3094
3094
|
const _response = await fetcher({
|
|
3095
3095
|
url: url_exports.join(
|
|
3096
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
3096
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
3097
3097
|
`api/v1/contract-interactions/network/${encodeURIComponent(network)}/contract-address/${encodeURIComponent(contractAddress)}/functions/write`
|
|
3098
3098
|
),
|
|
3099
3099
|
method: "POST",
|
|
@@ -3159,7 +3159,7 @@ var ContractInteractions = class {
|
|
|
3159
3159
|
);
|
|
3160
3160
|
const _response = await fetcher({
|
|
3161
3161
|
url: url_exports.join(
|
|
3162
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
3162
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
3163
3163
|
`api/v1/contract-interactions/network/${encodeURIComponent(network)}/tx/${encodeURIComponent(txId)}`
|
|
3164
3164
|
),
|
|
3165
3165
|
method: "GET",
|
|
@@ -3246,7 +3246,7 @@ var Tokenization = class {
|
|
|
3246
3246
|
);
|
|
3247
3247
|
const _response = await fetcher({
|
|
3248
3248
|
url: url_exports.join(
|
|
3249
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
3249
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
3250
3250
|
"api/v1/tokenization/tokens"
|
|
3251
3251
|
),
|
|
3252
3252
|
method: "GET",
|
|
@@ -3319,7 +3319,7 @@ var Tokenization = class {
|
|
|
3319
3319
|
);
|
|
3320
3320
|
const _response = await fetcher({
|
|
3321
3321
|
url: url_exports.join(
|
|
3322
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
3322
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
3323
3323
|
"api/v1/tokenization/tokens"
|
|
3324
3324
|
),
|
|
3325
3325
|
method: "POST",
|
|
@@ -3386,7 +3386,7 @@ var Tokenization = class {
|
|
|
3386
3386
|
);
|
|
3387
3387
|
const _response = await fetcher({
|
|
3388
3388
|
url: url_exports.join(
|
|
3389
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
3389
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
3390
3390
|
"api/v1/tokenization/tokens/link"
|
|
3391
3391
|
),
|
|
3392
3392
|
method: "POST",
|
|
@@ -3462,7 +3462,7 @@ var Tokenization = class {
|
|
|
3462
3462
|
);
|
|
3463
3463
|
const _response = await fetcher({
|
|
3464
3464
|
url: url_exports.join(
|
|
3465
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
3465
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
3466
3466
|
"api/v1/tokenization/collections"
|
|
3467
3467
|
),
|
|
3468
3468
|
method: "GET",
|
|
@@ -3535,7 +3535,7 @@ var Tokenization = class {
|
|
|
3535
3535
|
);
|
|
3536
3536
|
const _response = await fetcher({
|
|
3537
3537
|
url: url_exports.join(
|
|
3538
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
3538
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
3539
3539
|
"api/v1/tokenization/collections"
|
|
3540
3540
|
),
|
|
3541
3541
|
method: "POST",
|
|
@@ -3600,7 +3600,7 @@ var Tokenization = class {
|
|
|
3600
3600
|
);
|
|
3601
3601
|
const _response = await fetcher({
|
|
3602
3602
|
url: url_exports.join(
|
|
3603
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
3603
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
3604
3604
|
`api/v1/tokenization/collections/${encodeURIComponent(id)}`
|
|
3605
3605
|
),
|
|
3606
3606
|
method: "GET",
|
|
@@ -3662,7 +3662,7 @@ var Tokenization = class {
|
|
|
3662
3662
|
);
|
|
3663
3663
|
const _response = await fetcher({
|
|
3664
3664
|
url: url_exports.join(
|
|
3665
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
3665
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
3666
3666
|
`api/v1/tokenization/collections/${encodeURIComponent(id)}`
|
|
3667
3667
|
),
|
|
3668
3668
|
method: "DELETE",
|
|
@@ -3725,7 +3725,7 @@ var Tokenization = class {
|
|
|
3725
3725
|
);
|
|
3726
3726
|
const _response = await fetcher({
|
|
3727
3727
|
url: url_exports.join(
|
|
3728
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
3728
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
3729
3729
|
`api/v1/tokenization/collections/${encodeURIComponent(id)}/tokens/${encodeURIComponent(tokenId)}`
|
|
3730
3730
|
),
|
|
3731
3731
|
method: "GET",
|
|
@@ -3793,7 +3793,7 @@ var Tokenization = class {
|
|
|
3793
3793
|
);
|
|
3794
3794
|
const _response = await fetcher({
|
|
3795
3795
|
url: url_exports.join(
|
|
3796
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
3796
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
3797
3797
|
`api/v1/tokenization/collections/${encodeURIComponent(id)}/tokens/mint`
|
|
3798
3798
|
),
|
|
3799
3799
|
method: "POST",
|
|
@@ -3863,7 +3863,7 @@ var Tokenization = class {
|
|
|
3863
3863
|
);
|
|
3864
3864
|
const _response = await fetcher({
|
|
3865
3865
|
url: url_exports.join(
|
|
3866
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
3866
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
3867
3867
|
`api/v1/tokenization/collections/${encodeURIComponent(id)}/tokens/burn`
|
|
3868
3868
|
),
|
|
3869
3869
|
method: "POST",
|
|
@@ -3949,7 +3949,7 @@ var Tokenization = class {
|
|
|
3949
3949
|
);
|
|
3950
3950
|
const _response = await fetcher({
|
|
3951
3951
|
url: url_exports.join(
|
|
3952
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
3952
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
3953
3953
|
"api/v1/tokenization/collection/tokens"
|
|
3954
3954
|
),
|
|
3955
3955
|
method: "GET",
|
|
@@ -4019,7 +4019,7 @@ var Tokenization = class {
|
|
|
4019
4019
|
);
|
|
4020
4020
|
const _response = await fetcher({
|
|
4021
4021
|
url: url_exports.join(
|
|
4022
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
4022
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
4023
4023
|
`api/v1/tokenization/tokens/${encodeURIComponent(id)}`
|
|
4024
4024
|
),
|
|
4025
4025
|
method: "DELETE",
|
|
@@ -4097,7 +4097,7 @@ var Temporal = class {
|
|
|
4097
4097
|
);
|
|
4098
4098
|
const _response = await fetcher({
|
|
4099
4099
|
url: url_exports.join(
|
|
4100
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
4100
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
4101
4101
|
`api/v1/temporal/workflows/${encodeURIComponent(workflowId)}/status`
|
|
4102
4102
|
),
|
|
4103
4103
|
method: "GET",
|
|
@@ -4210,7 +4210,7 @@ var Assets = class {
|
|
|
4210
4210
|
);
|
|
4211
4211
|
const _response = await fetcher({
|
|
4212
4212
|
url: url_exports.join(
|
|
4213
|
-
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.
|
|
4213
|
+
await Supplier.get(this._options.baseUrl) ?? await Supplier.get(this._options.environment) ?? OumlaSdkApiEnvironment.Mainnet,
|
|
4214
4214
|
"api/v1/assets"
|
|
4215
4215
|
),
|
|
4216
4216
|
method: "GET",
|