@dynamic-labs/sdk-api-core 0.0.961 → 0.0.964
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/package.json +1 -1
- package/src/apis/SDKApi.cjs +613 -0
- package/src/apis/SDKApi.d.ts +258 -1
- package/src/apis/SDKApi.js +614 -1
- package/src/apis/WaasApi.cjs +4 -0
- package/src/apis/WaasApi.js +4 -0
- package/src/index.cjs +80 -0
- package/src/index.js +14 -1
- package/src/models/EmbeddedWalletChainEnum.cjs +1 -0
- package/src/models/EmbeddedWalletChainEnum.d.ts +2 -1
- package/src/models/EmbeddedWalletChainEnum.js +1 -0
- package/src/models/ExportAleoViewKeyRequest.cjs +43 -0
- package/src/models/ExportAleoViewKeyRequest.d.ts +27 -0
- package/src/models/ExportAleoViewKeyRequest.js +37 -0
- package/src/models/InlineObject1.cjs +46 -0
- package/src/models/InlineObject1.d.ts +47 -0
- package/src/models/InlineObject1.js +40 -0
- package/src/models/InlineObject2.cjs +56 -0
- package/src/models/InlineObject2.d.ts +47 -0
- package/src/models/InlineObject2.js +50 -0
- package/src/models/InlineObject3.cjs +54 -0
- package/src/models/InlineObject3.d.ts +43 -0
- package/src/models/InlineObject3.js +48 -0
- package/src/models/InlineObject4.cjs +54 -0
- package/src/models/InlineObject4.d.ts +41 -0
- package/src/models/InlineObject4.js +48 -0
- package/src/models/InlineResponse2001.cjs +34 -0
- package/src/models/InlineResponse2001.d.ts +28 -0
- package/src/models/InlineResponse2001.js +28 -0
- package/src/models/InlineResponse2001AllowedPrograms.cjs +35 -0
- package/src/models/InlineResponse2001AllowedPrograms.d.ts +33 -0
- package/src/models/InlineResponse2001AllowedPrograms.js +29 -0
- package/src/models/InlineResponse2002.cjs +43 -0
- package/src/models/InlineResponse2002.d.ts +27 -0
- package/src/models/InlineResponse2002.js +37 -0
- package/src/models/InlineResponse2003.cjs +43 -0
- package/src/models/InlineResponse2003.d.ts +27 -0
- package/src/models/InlineResponse2003.js +37 -0
- package/src/models/InlineResponse2004.cjs +45 -0
- package/src/models/InlineResponse2004.d.ts +33 -0
- package/src/models/InlineResponse2004.js +39 -0
- package/src/models/InlineResponse2005.cjs +43 -0
- package/src/models/InlineResponse2005.d.ts +27 -0
- package/src/models/InlineResponse2005.js +37 -0
- package/src/models/InlineResponse2006.cjs +43 -0
- package/src/models/InlineResponse2006.d.ts +29 -0
- package/src/models/InlineResponse2006.js +37 -0
- package/src/models/SignAleoRequestWithWaasRequest.cjs +43 -0
- package/src/models/SignAleoRequestWithWaasRequest.d.ts +29 -0
- package/src/models/SignAleoRequestWithWaasRequest.js +37 -0
- package/src/models/WaasChainEnum.cjs +1 -0
- package/src/models/WaasChainEnum.d.ts +2 -1
- package/src/models/WaasChainEnum.js +1 -0
- package/src/models/index.d.ts +13 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Dashboard API
|
|
5
|
+
* Dashboard API documentation
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
function InlineResponse2003FromJSON(json) {
|
|
15
|
+
return InlineResponse2003FromJSONTyped(json);
|
|
16
|
+
}
|
|
17
|
+
function InlineResponse2003FromJSONTyped(json, ignoreDiscriminator) {
|
|
18
|
+
if ((json === undefined) || (json === null)) {
|
|
19
|
+
return json;
|
|
20
|
+
}
|
|
21
|
+
return {
|
|
22
|
+
'feeAuthorization': json['feeAuthorization'],
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
function InlineResponse2003ToJSON(value) {
|
|
26
|
+
if (value === undefined) {
|
|
27
|
+
return undefined;
|
|
28
|
+
}
|
|
29
|
+
if (value === null) {
|
|
30
|
+
return null;
|
|
31
|
+
}
|
|
32
|
+
return {
|
|
33
|
+
'feeAuthorization': value.feeAuthorization,
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export { InlineResponse2003FromJSON, InlineResponse2003FromJSONTyped, InlineResponse2003ToJSON };
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
/* tslint:disable */
|
|
6
|
+
/* eslint-disable */
|
|
7
|
+
/**
|
|
8
|
+
* Dashboard API
|
|
9
|
+
* Dashboard API documentation
|
|
10
|
+
*
|
|
11
|
+
* The version of the OpenAPI document: 1.0.0
|
|
12
|
+
*
|
|
13
|
+
*
|
|
14
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
15
|
+
* https://openapi-generator.tech
|
|
16
|
+
* Do not edit the class manually.
|
|
17
|
+
*/
|
|
18
|
+
function InlineResponse2004FromJSON(json) {
|
|
19
|
+
return InlineResponse2004FromJSONTyped(json);
|
|
20
|
+
}
|
|
21
|
+
function InlineResponse2004FromJSONTyped(json, ignoreDiscriminator) {
|
|
22
|
+
if ((json === undefined) || (json === null)) {
|
|
23
|
+
return json;
|
|
24
|
+
}
|
|
25
|
+
return {
|
|
26
|
+
'publicKey': json['public_key'],
|
|
27
|
+
'keyId': json['key_id'],
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
function InlineResponse2004ToJSON(value) {
|
|
31
|
+
if (value === undefined) {
|
|
32
|
+
return undefined;
|
|
33
|
+
}
|
|
34
|
+
if (value === null) {
|
|
35
|
+
return null;
|
|
36
|
+
}
|
|
37
|
+
return {
|
|
38
|
+
'public_key': value.publicKey,
|
|
39
|
+
'key_id': value.keyId,
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
exports.InlineResponse2004FromJSON = InlineResponse2004FromJSON;
|
|
44
|
+
exports.InlineResponse2004FromJSONTyped = InlineResponse2004FromJSONTyped;
|
|
45
|
+
exports.InlineResponse2004ToJSON = InlineResponse2004ToJSON;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Dashboard API
|
|
3
|
+
* Dashboard API documentation
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface InlineResponse2004
|
|
16
|
+
*/
|
|
17
|
+
export interface InlineResponse2004 {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof InlineResponse2004
|
|
22
|
+
*/
|
|
23
|
+
publicKey: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof InlineResponse2004
|
|
28
|
+
*/
|
|
29
|
+
keyId: string;
|
|
30
|
+
}
|
|
31
|
+
export declare function InlineResponse2004FromJSON(json: any): InlineResponse2004;
|
|
32
|
+
export declare function InlineResponse2004FromJSONTyped(json: any, ignoreDiscriminator: boolean): InlineResponse2004;
|
|
33
|
+
export declare function InlineResponse2004ToJSON(value?: InlineResponse2004 | null): any;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Dashboard API
|
|
5
|
+
* Dashboard API documentation
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
function InlineResponse2004FromJSON(json) {
|
|
15
|
+
return InlineResponse2004FromJSONTyped(json);
|
|
16
|
+
}
|
|
17
|
+
function InlineResponse2004FromJSONTyped(json, ignoreDiscriminator) {
|
|
18
|
+
if ((json === undefined) || (json === null)) {
|
|
19
|
+
return json;
|
|
20
|
+
}
|
|
21
|
+
return {
|
|
22
|
+
'publicKey': json['public_key'],
|
|
23
|
+
'keyId': json['key_id'],
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
function InlineResponse2004ToJSON(value) {
|
|
27
|
+
if (value === undefined) {
|
|
28
|
+
return undefined;
|
|
29
|
+
}
|
|
30
|
+
if (value === null) {
|
|
31
|
+
return null;
|
|
32
|
+
}
|
|
33
|
+
return {
|
|
34
|
+
'public_key': value.publicKey,
|
|
35
|
+
'key_id': value.keyId,
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export { InlineResponse2004FromJSON, InlineResponse2004FromJSONTyped, InlineResponse2004ToJSON };
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
/* tslint:disable */
|
|
6
|
+
/* eslint-disable */
|
|
7
|
+
/**
|
|
8
|
+
* Dashboard API
|
|
9
|
+
* Dashboard API documentation
|
|
10
|
+
*
|
|
11
|
+
* The version of the OpenAPI document: 1.0.0
|
|
12
|
+
*
|
|
13
|
+
*
|
|
14
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
15
|
+
* https://openapi-generator.tech
|
|
16
|
+
* Do not edit the class manually.
|
|
17
|
+
*/
|
|
18
|
+
function InlineResponse2005FromJSON(json) {
|
|
19
|
+
return InlineResponse2005FromJSONTyped(json);
|
|
20
|
+
}
|
|
21
|
+
function InlineResponse2005FromJSONTyped(json, ignoreDiscriminator) {
|
|
22
|
+
if ((json === undefined) || (json === null)) {
|
|
23
|
+
return json;
|
|
24
|
+
}
|
|
25
|
+
return {
|
|
26
|
+
'uuid': json['uuid'],
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
function InlineResponse2005ToJSON(value) {
|
|
30
|
+
if (value === undefined) {
|
|
31
|
+
return undefined;
|
|
32
|
+
}
|
|
33
|
+
if (value === null) {
|
|
34
|
+
return null;
|
|
35
|
+
}
|
|
36
|
+
return {
|
|
37
|
+
'uuid': value.uuid,
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
exports.InlineResponse2005FromJSON = InlineResponse2005FromJSON;
|
|
42
|
+
exports.InlineResponse2005FromJSONTyped = InlineResponse2005FromJSONTyped;
|
|
43
|
+
exports.InlineResponse2005ToJSON = InlineResponse2005ToJSON;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Dashboard API
|
|
3
|
+
* Dashboard API documentation
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface InlineResponse2005
|
|
16
|
+
*/
|
|
17
|
+
export interface InlineResponse2005 {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof InlineResponse2005
|
|
22
|
+
*/
|
|
23
|
+
uuid: string;
|
|
24
|
+
}
|
|
25
|
+
export declare function InlineResponse2005FromJSON(json: any): InlineResponse2005;
|
|
26
|
+
export declare function InlineResponse2005FromJSONTyped(json: any, ignoreDiscriminator: boolean): InlineResponse2005;
|
|
27
|
+
export declare function InlineResponse2005ToJSON(value?: InlineResponse2005 | null): any;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Dashboard API
|
|
5
|
+
* Dashboard API documentation
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
function InlineResponse2005FromJSON(json) {
|
|
15
|
+
return InlineResponse2005FromJSONTyped(json);
|
|
16
|
+
}
|
|
17
|
+
function InlineResponse2005FromJSONTyped(json, ignoreDiscriminator) {
|
|
18
|
+
if ((json === undefined) || (json === null)) {
|
|
19
|
+
return json;
|
|
20
|
+
}
|
|
21
|
+
return {
|
|
22
|
+
'uuid': json['uuid'],
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
function InlineResponse2005ToJSON(value) {
|
|
26
|
+
if (value === undefined) {
|
|
27
|
+
return undefined;
|
|
28
|
+
}
|
|
29
|
+
if (value === null) {
|
|
30
|
+
return null;
|
|
31
|
+
}
|
|
32
|
+
return {
|
|
33
|
+
'uuid': value.uuid,
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export { InlineResponse2005FromJSON, InlineResponse2005FromJSONTyped, InlineResponse2005ToJSON };
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
/* tslint:disable */
|
|
6
|
+
/* eslint-disable */
|
|
7
|
+
/**
|
|
8
|
+
* Dashboard API
|
|
9
|
+
* Dashboard API documentation
|
|
10
|
+
*
|
|
11
|
+
* The version of the OpenAPI document: 1.0.0
|
|
12
|
+
*
|
|
13
|
+
*
|
|
14
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
15
|
+
* https://openapi-generator.tech
|
|
16
|
+
* Do not edit the class manually.
|
|
17
|
+
*/
|
|
18
|
+
function InlineResponse2006FromJSON(json) {
|
|
19
|
+
return InlineResponse2006FromJSONTyped(json);
|
|
20
|
+
}
|
|
21
|
+
function InlineResponse2006FromJSONTyped(json, ignoreDiscriminator) {
|
|
22
|
+
if ((json === undefined) || (json === null)) {
|
|
23
|
+
return json;
|
|
24
|
+
}
|
|
25
|
+
return {
|
|
26
|
+
'records': json['records'],
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
function InlineResponse2006ToJSON(value) {
|
|
30
|
+
if (value === undefined) {
|
|
31
|
+
return undefined;
|
|
32
|
+
}
|
|
33
|
+
if (value === null) {
|
|
34
|
+
return null;
|
|
35
|
+
}
|
|
36
|
+
return {
|
|
37
|
+
'records': value.records,
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
exports.InlineResponse2006FromJSON = InlineResponse2006FromJSON;
|
|
42
|
+
exports.InlineResponse2006FromJSONTyped = InlineResponse2006FromJSONTyped;
|
|
43
|
+
exports.InlineResponse2006ToJSON = InlineResponse2006ToJSON;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Dashboard API
|
|
3
|
+
* Dashboard API documentation
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface InlineResponse2006
|
|
16
|
+
*/
|
|
17
|
+
export interface InlineResponse2006 {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {Array<{ [key: string]: object; }>}
|
|
21
|
+
* @memberof InlineResponse2006
|
|
22
|
+
*/
|
|
23
|
+
records: Array<{
|
|
24
|
+
[key: string]: object;
|
|
25
|
+
}>;
|
|
26
|
+
}
|
|
27
|
+
export declare function InlineResponse2006FromJSON(json: any): InlineResponse2006;
|
|
28
|
+
export declare function InlineResponse2006FromJSONTyped(json: any, ignoreDiscriminator: boolean): InlineResponse2006;
|
|
29
|
+
export declare function InlineResponse2006ToJSON(value?: InlineResponse2006 | null): any;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Dashboard API
|
|
5
|
+
* Dashboard API documentation
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
function InlineResponse2006FromJSON(json) {
|
|
15
|
+
return InlineResponse2006FromJSONTyped(json);
|
|
16
|
+
}
|
|
17
|
+
function InlineResponse2006FromJSONTyped(json, ignoreDiscriminator) {
|
|
18
|
+
if ((json === undefined) || (json === null)) {
|
|
19
|
+
return json;
|
|
20
|
+
}
|
|
21
|
+
return {
|
|
22
|
+
'records': json['records'],
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
function InlineResponse2006ToJSON(value) {
|
|
26
|
+
if (value === undefined) {
|
|
27
|
+
return undefined;
|
|
28
|
+
}
|
|
29
|
+
if (value === null) {
|
|
30
|
+
return null;
|
|
31
|
+
}
|
|
32
|
+
return {
|
|
33
|
+
'records': value.records,
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export { InlineResponse2006FromJSON, InlineResponse2006FromJSONTyped, InlineResponse2006ToJSON };
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
/* tslint:disable */
|
|
6
|
+
/* eslint-disable */
|
|
7
|
+
/**
|
|
8
|
+
* Dashboard API
|
|
9
|
+
* Dashboard API documentation
|
|
10
|
+
*
|
|
11
|
+
* The version of the OpenAPI document: 1.0.0
|
|
12
|
+
*
|
|
13
|
+
*
|
|
14
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
15
|
+
* https://openapi-generator.tech
|
|
16
|
+
* Do not edit the class manually.
|
|
17
|
+
*/
|
|
18
|
+
function SignAleoRequestWithWaasRequestFromJSON(json) {
|
|
19
|
+
return SignAleoRequestWithWaasRequestFromJSONTyped(json);
|
|
20
|
+
}
|
|
21
|
+
function SignAleoRequestWithWaasRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
22
|
+
if ((json === undefined) || (json === null)) {
|
|
23
|
+
return json;
|
|
24
|
+
}
|
|
25
|
+
return {
|
|
26
|
+
'payload': json['payload'],
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
function SignAleoRequestWithWaasRequestToJSON(value) {
|
|
30
|
+
if (value === undefined) {
|
|
31
|
+
return undefined;
|
|
32
|
+
}
|
|
33
|
+
if (value === null) {
|
|
34
|
+
return null;
|
|
35
|
+
}
|
|
36
|
+
return {
|
|
37
|
+
'payload': value.payload,
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
exports.SignAleoRequestWithWaasRequestFromJSON = SignAleoRequestWithWaasRequestFromJSON;
|
|
42
|
+
exports.SignAleoRequestWithWaasRequestFromJSONTyped = SignAleoRequestWithWaasRequestFromJSONTyped;
|
|
43
|
+
exports.SignAleoRequestWithWaasRequestToJSON = SignAleoRequestWithWaasRequestToJSON;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Dashboard API
|
|
3
|
+
* Dashboard API documentation
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface SignAleoRequestWithWaasRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface SignAleoRequestWithWaasRequest {
|
|
18
|
+
/**
|
|
19
|
+
* Aleo EdBls12377 sign request payload (function_id, is_root, program_checksum, inputs)
|
|
20
|
+
* @type {{ [key: string]: object; }}
|
|
21
|
+
* @memberof SignAleoRequestWithWaasRequest
|
|
22
|
+
*/
|
|
23
|
+
payload: {
|
|
24
|
+
[key: string]: object;
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
export declare function SignAleoRequestWithWaasRequestFromJSON(json: any): SignAleoRequestWithWaasRequest;
|
|
28
|
+
export declare function SignAleoRequestWithWaasRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SignAleoRequestWithWaasRequest;
|
|
29
|
+
export declare function SignAleoRequestWithWaasRequestToJSON(value?: SignAleoRequestWithWaasRequest | null): any;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Dashboard API
|
|
5
|
+
* Dashboard API documentation
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
function SignAleoRequestWithWaasRequestFromJSON(json) {
|
|
15
|
+
return SignAleoRequestWithWaasRequestFromJSONTyped(json);
|
|
16
|
+
}
|
|
17
|
+
function SignAleoRequestWithWaasRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
18
|
+
if ((json === undefined) || (json === null)) {
|
|
19
|
+
return json;
|
|
20
|
+
}
|
|
21
|
+
return {
|
|
22
|
+
'payload': json['payload'],
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
function SignAleoRequestWithWaasRequestToJSON(value) {
|
|
26
|
+
if (value === undefined) {
|
|
27
|
+
return undefined;
|
|
28
|
+
}
|
|
29
|
+
if (value === null) {
|
|
30
|
+
return null;
|
|
31
|
+
}
|
|
32
|
+
return {
|
|
33
|
+
'payload': value.payload,
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export { SignAleoRequestWithWaasRequestFromJSON, SignAleoRequestWithWaasRequestFromJSONTyped, SignAleoRequestWithWaasRequestToJSON };
|
|
@@ -30,6 +30,7 @@ exports.WaasChainEnum = void 0;
|
|
|
30
30
|
WaasChainEnum["Ton"] = "TON";
|
|
31
31
|
WaasChainEnum["Stellar"] = "STELLAR";
|
|
32
32
|
WaasChainEnum["Tempo"] = "TEMPO";
|
|
33
|
+
WaasChainEnum["Aleo"] = "ALEO";
|
|
33
34
|
})(exports.WaasChainEnum || (exports.WaasChainEnum = {}));
|
|
34
35
|
function WaasChainEnumFromJSON(json) {
|
|
35
36
|
return WaasChainEnumFromJSONTyped(json);
|
|
@@ -22,7 +22,8 @@ export declare enum WaasChainEnum {
|
|
|
22
22
|
Btc = "BTC",
|
|
23
23
|
Ton = "TON",
|
|
24
24
|
Stellar = "STELLAR",
|
|
25
|
-
Tempo = "TEMPO"
|
|
25
|
+
Tempo = "TEMPO",
|
|
26
|
+
Aleo = "ALEO"
|
|
26
27
|
}
|
|
27
28
|
export declare function WaasChainEnumFromJSON(json: any): WaasChainEnum;
|
|
28
29
|
export declare function WaasChainEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): WaasChainEnum;
|
|
@@ -26,6 +26,7 @@ var WaasChainEnum;
|
|
|
26
26
|
WaasChainEnum["Ton"] = "TON";
|
|
27
27
|
WaasChainEnum["Stellar"] = "STELLAR";
|
|
28
28
|
WaasChainEnum["Tempo"] = "TEMPO";
|
|
29
|
+
WaasChainEnum["Aleo"] = "ALEO";
|
|
29
30
|
})(WaasChainEnum || (WaasChainEnum = {}));
|
|
30
31
|
function WaasChainEnumFromJSON(json) {
|
|
31
32
|
return WaasChainEnumFromJSONTyped(json);
|
package/src/models/index.d.ts
CHANGED
|
@@ -132,6 +132,7 @@ export * from './ExchangeKeyEnum';
|
|
|
132
132
|
export * from './ExchangeOption';
|
|
133
133
|
export * from './ExchangeTransaction';
|
|
134
134
|
export * from './ExchangeTransferResponse';
|
|
135
|
+
export * from './ExportAleoViewKeyRequest';
|
|
135
136
|
export * from './ExportEmbeddedWalletResponse';
|
|
136
137
|
export * from './ExportWaasWalletPrivateKeyRequest';
|
|
137
138
|
export * from './ExternalAuth';
|
|
@@ -172,7 +173,18 @@ export * from './InitEmailAuthResponse';
|
|
|
172
173
|
export * from './InitPasskeyRecoveryRequest';
|
|
173
174
|
export * from './InitPasskeyRecoveryResponse';
|
|
174
175
|
export * from './InlineObject';
|
|
176
|
+
export * from './InlineObject1';
|
|
177
|
+
export * from './InlineObject2';
|
|
178
|
+
export * from './InlineObject3';
|
|
179
|
+
export * from './InlineObject4';
|
|
175
180
|
export * from './InlineResponse200';
|
|
181
|
+
export * from './InlineResponse2001';
|
|
182
|
+
export * from './InlineResponse2001AllowedPrograms';
|
|
183
|
+
export * from './InlineResponse2002';
|
|
184
|
+
export * from './InlineResponse2003';
|
|
185
|
+
export * from './InlineResponse2004';
|
|
186
|
+
export * from './InlineResponse2005';
|
|
187
|
+
export * from './InlineResponse2006';
|
|
176
188
|
export * from './IntegrationSetting';
|
|
177
189
|
export * from './InternalServerError';
|
|
178
190
|
export * from './JwksKey';
|
|
@@ -326,6 +338,7 @@ export * from './SdkViewsResponse';
|
|
|
326
338
|
export * from './SecurityNotifications';
|
|
327
339
|
export * from './SettlementConfigInput';
|
|
328
340
|
export * from './SettlementStrategyEnum';
|
|
341
|
+
export * from './SignAleoRequestWithWaasRequest';
|
|
329
342
|
export * from './SignInProviderEnum';
|
|
330
343
|
export * from './SignMessageAuthorizationSignature';
|
|
331
344
|
export * from './SignMessageBtcTransaction';
|