@northstake/northstakeapi 1.0.22 → 1.0.24
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/.openapi-generator/FILES +12 -0
- package/.openapi-generator/VERSION +1 -1
- package/api/accountApiKeysApi.ts +346 -0
- package/api/apis.ts +5 -1
- package/api/managedUsersValidatorsApi.ts +116 -0
- package/api/validatorMarketplaceFacilitatorApi.ts +360 -0
- package/api/validatorsApi.ts +109 -0
- package/api.ts +18 -0
- package/dist/api/accountApiKeysApi.d.ts +77 -0
- package/dist/api/accountApiKeysApi.js +266 -0
- package/dist/api/apis.d.ts +5 -1
- package/dist/api/apis.js +5 -1
- package/dist/api/managedUsersValidatorsApi.d.ts +27 -0
- package/dist/api/managedUsersValidatorsApi.js +87 -0
- package/dist/api/validatorMarketplaceFacilitatorApi.d.ts +80 -0
- package/dist/api/validatorMarketplaceFacilitatorApi.js +280 -0
- package/dist/api/validatorsApi.d.ts +25 -0
- package/dist/api/validatorsApi.js +81 -0
- package/dist/api.d.ts +14 -0
- package/dist/api.js +16 -0
- package/dist/model/apiKey.d.ts +54 -0
- package/dist/model/apiKey.js +53 -0
- package/dist/model/generateApiKeyRequest.d.ts +43 -0
- package/dist/model/generateApiKeyRequest.js +43 -0
- package/dist/model/getMarketplaceMetadata200Response.d.ts +36 -0
- package/dist/model/getMarketplaceMetadata200Response.js +38 -0
- package/dist/model/getWithdrawalsResponse.d.ts +38 -0
- package/dist/model/getWithdrawalsResponse.js +43 -0
- package/dist/model/listAllRFQsForFacilitator200Response.d.ts +38 -0
- package/dist/model/listAllRFQsForFacilitator200Response.js +43 -0
- package/dist/model/models.d.ts +10 -0
- package/dist/model/models.js +32 -0
- package/dist/model/rFQBidFacilitator.d.ts +27 -0
- package/dist/model/rFQBidFacilitator.js +38 -0
- package/dist/model/rFQDocumentFacilitator.d.ts +38 -0
- package/dist/model/rFQDocumentFacilitator.js +53 -0
- package/dist/model/rFQDocumentFacilitatorStatusFilter.d.ts +12 -0
- package/dist/model/rFQDocumentFacilitatorStatusFilter.js +13 -0
- package/dist/model/rFQDocumentFacilitatorValidatorsInner.d.ts +27 -0
- package/dist/model/rFQDocumentFacilitatorValidatorsInner.js +38 -0
- package/dist/model/rFQDocumentSeller.d.ts +1 -0
- package/dist/model/rFQDocumentSeller.js +5 -0
- package/dist/model/validatorWithdrawal.d.ts +39 -0
- package/dist/model/validatorWithdrawal.js +68 -0
- package/model/apiKey.ts +88 -0
- package/model/generateApiKeyRequest.ts +66 -0
- package/model/getMarketplaceMetadata200Response.ts +52 -0
- package/model/getWithdrawalsResponse.ts +59 -0
- package/model/listAllRFQsForFacilitator200Response.ts +59 -0
- package/model/models.ts +53 -0
- package/model/rFQBidFacilitator.ts +43 -0
- package/model/rFQDocumentFacilitator.ts +74 -0
- package/model/rFQDocumentFacilitatorStatusFilter.ts +18 -0
- package/model/rFQDocumentFacilitatorValidatorsInner.ts +43 -0
- package/model/rFQDocumentSeller.ts +6 -0
- package/model/validatorWithdrawal.ts +86 -0
- package/package.json +3 -3
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Northstake
|
|
3
|
+
* Northstake api
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.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
|
+
export declare class GenerateApiKeyRequest {
|
|
13
|
+
/**
|
|
14
|
+
* A descriptive name for the API key.
|
|
15
|
+
*/
|
|
16
|
+
'keyName': string;
|
|
17
|
+
/**
|
|
18
|
+
* The public part of an RSA private keypair in PEM format.
|
|
19
|
+
*/
|
|
20
|
+
'publicKey': string;
|
|
21
|
+
'whitelistedIPs'?: Array<string>;
|
|
22
|
+
/**
|
|
23
|
+
* The rights associated with the API key.
|
|
24
|
+
*/
|
|
25
|
+
'keyRights'?: GenerateApiKeyRequest;
|
|
26
|
+
static discriminator: string | undefined;
|
|
27
|
+
static attributeTypeMap: Array<{
|
|
28
|
+
name: string;
|
|
29
|
+
baseName: string;
|
|
30
|
+
type: string;
|
|
31
|
+
}>;
|
|
32
|
+
static getAttributeTypeMap(): {
|
|
33
|
+
name: string;
|
|
34
|
+
baseName: string;
|
|
35
|
+
type: string;
|
|
36
|
+
}[];
|
|
37
|
+
}
|
|
38
|
+
export declare namespace GenerateApiKeyRequest {
|
|
39
|
+
/**
|
|
40
|
+
* The rights associated with the API key.
|
|
41
|
+
*/
|
|
42
|
+
type keyRightsEnum = 'user' | 'reader';
|
|
43
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Northstake
|
|
4
|
+
* Northstake api
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.GenerateApiKeyRequest = void 0;
|
|
15
|
+
class GenerateApiKeyRequest {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return GenerateApiKeyRequest.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.GenerateApiKeyRequest = GenerateApiKeyRequest;
|
|
21
|
+
GenerateApiKeyRequest.discriminator = undefined;
|
|
22
|
+
GenerateApiKeyRequest.attributeTypeMap = [
|
|
23
|
+
{
|
|
24
|
+
"name": "keyName",
|
|
25
|
+
"baseName": "keyName",
|
|
26
|
+
"type": "string"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "publicKey",
|
|
30
|
+
"baseName": "publicKey",
|
|
31
|
+
"type": "string"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "whitelistedIPs",
|
|
35
|
+
"baseName": "whitelistedIPs",
|
|
36
|
+
"type": "Array<string>"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "keyRights",
|
|
40
|
+
"baseName": "keyRights",
|
|
41
|
+
"type": "Array<GenerateApiKeyRequest.KeyRightsEnum>"
|
|
42
|
+
}
|
|
43
|
+
];
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Northstake
|
|
3
|
+
* Northstake api
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.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
|
+
export declare class GetMarketplaceMetadata200Response {
|
|
13
|
+
/**
|
|
14
|
+
* Total number of RFQs in the marketplace
|
|
15
|
+
*/
|
|
16
|
+
'totalRFQs'?: number;
|
|
17
|
+
/**
|
|
18
|
+
* Number of active RFQs
|
|
19
|
+
*/
|
|
20
|
+
'activeRFQs'?: number;
|
|
21
|
+
/**
|
|
22
|
+
* Number of expired RFQs
|
|
23
|
+
*/
|
|
24
|
+
'expiredRFQs'?: number;
|
|
25
|
+
static discriminator: string | undefined;
|
|
26
|
+
static attributeTypeMap: Array<{
|
|
27
|
+
name: string;
|
|
28
|
+
baseName: string;
|
|
29
|
+
type: string;
|
|
30
|
+
}>;
|
|
31
|
+
static getAttributeTypeMap(): {
|
|
32
|
+
name: string;
|
|
33
|
+
baseName: string;
|
|
34
|
+
type: string;
|
|
35
|
+
}[];
|
|
36
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Northstake
|
|
4
|
+
* Northstake api
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.GetMarketplaceMetadata200Response = void 0;
|
|
15
|
+
class GetMarketplaceMetadata200Response {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return GetMarketplaceMetadata200Response.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.GetMarketplaceMetadata200Response = GetMarketplaceMetadata200Response;
|
|
21
|
+
GetMarketplaceMetadata200Response.discriminator = undefined;
|
|
22
|
+
GetMarketplaceMetadata200Response.attributeTypeMap = [
|
|
23
|
+
{
|
|
24
|
+
"name": "totalRFQs",
|
|
25
|
+
"baseName": "totalRFQs",
|
|
26
|
+
"type": "number"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "activeRFQs",
|
|
30
|
+
"baseName": "activeRFQs",
|
|
31
|
+
"type": "number"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "expiredRFQs",
|
|
35
|
+
"baseName": "expiredRFQs",
|
|
36
|
+
"type": "number"
|
|
37
|
+
}
|
|
38
|
+
];
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Northstake
|
|
3
|
+
* Northstake api
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.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
|
+
import { ValidatorWithdrawal } from './validatorWithdrawal';
|
|
13
|
+
export declare class GetWithdrawalsResponse {
|
|
14
|
+
'withdrawals': Array<ValidatorWithdrawal>;
|
|
15
|
+
/**
|
|
16
|
+
* Total number of pages
|
|
17
|
+
*/
|
|
18
|
+
'pages': number;
|
|
19
|
+
/**
|
|
20
|
+
* Total number of withdrawals
|
|
21
|
+
*/
|
|
22
|
+
'total': number;
|
|
23
|
+
/**
|
|
24
|
+
* Current page number
|
|
25
|
+
*/
|
|
26
|
+
'currentPage': number;
|
|
27
|
+
static discriminator: string | undefined;
|
|
28
|
+
static attributeTypeMap: Array<{
|
|
29
|
+
name: string;
|
|
30
|
+
baseName: string;
|
|
31
|
+
type: string;
|
|
32
|
+
}>;
|
|
33
|
+
static getAttributeTypeMap(): {
|
|
34
|
+
name: string;
|
|
35
|
+
baseName: string;
|
|
36
|
+
type: string;
|
|
37
|
+
}[];
|
|
38
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Northstake
|
|
4
|
+
* Northstake api
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.GetWithdrawalsResponse = void 0;
|
|
15
|
+
class GetWithdrawalsResponse {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return GetWithdrawalsResponse.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.GetWithdrawalsResponse = GetWithdrawalsResponse;
|
|
21
|
+
GetWithdrawalsResponse.discriminator = undefined;
|
|
22
|
+
GetWithdrawalsResponse.attributeTypeMap = [
|
|
23
|
+
{
|
|
24
|
+
"name": "withdrawals",
|
|
25
|
+
"baseName": "withdrawals",
|
|
26
|
+
"type": "Array<ValidatorWithdrawal>"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "pages",
|
|
30
|
+
"baseName": "pages",
|
|
31
|
+
"type": "number"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "total",
|
|
35
|
+
"baseName": "total",
|
|
36
|
+
"type": "number"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "currentPage",
|
|
40
|
+
"baseName": "currentPage",
|
|
41
|
+
"type": "number"
|
|
42
|
+
}
|
|
43
|
+
];
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Northstake
|
|
3
|
+
* Northstake api
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.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
|
+
import { RFQDocumentFacilitator } from './rFQDocumentFacilitator';
|
|
13
|
+
export declare class ListAllRFQsForFacilitator200Response {
|
|
14
|
+
'rfqs'?: Array<RFQDocumentFacilitator>;
|
|
15
|
+
/**
|
|
16
|
+
* Total number of RFQs
|
|
17
|
+
*/
|
|
18
|
+
'total'?: number;
|
|
19
|
+
/**
|
|
20
|
+
* Total number of pages
|
|
21
|
+
*/
|
|
22
|
+
'pages'?: number;
|
|
23
|
+
/**
|
|
24
|
+
* Current page number
|
|
25
|
+
*/
|
|
26
|
+
'currentPage'?: number;
|
|
27
|
+
static discriminator: string | undefined;
|
|
28
|
+
static attributeTypeMap: Array<{
|
|
29
|
+
name: string;
|
|
30
|
+
baseName: string;
|
|
31
|
+
type: string;
|
|
32
|
+
}>;
|
|
33
|
+
static getAttributeTypeMap(): {
|
|
34
|
+
name: string;
|
|
35
|
+
baseName: string;
|
|
36
|
+
type: string;
|
|
37
|
+
}[];
|
|
38
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Northstake
|
|
4
|
+
* Northstake api
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.ListAllRFQsForFacilitator200Response = void 0;
|
|
15
|
+
class ListAllRFQsForFacilitator200Response {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return ListAllRFQsForFacilitator200Response.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ListAllRFQsForFacilitator200Response = ListAllRFQsForFacilitator200Response;
|
|
21
|
+
ListAllRFQsForFacilitator200Response.discriminator = undefined;
|
|
22
|
+
ListAllRFQsForFacilitator200Response.attributeTypeMap = [
|
|
23
|
+
{
|
|
24
|
+
"name": "rfqs",
|
|
25
|
+
"baseName": "rfqs",
|
|
26
|
+
"type": "Array<RFQDocumentFacilitator>"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "total",
|
|
30
|
+
"baseName": "total",
|
|
31
|
+
"type": "number"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "pages",
|
|
35
|
+
"baseName": "pages",
|
|
36
|
+
"type": "number"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "currentPage",
|
|
40
|
+
"baseName": "currentPage",
|
|
41
|
+
"type": "number"
|
|
42
|
+
}
|
|
43
|
+
];
|
package/dist/model/models.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export * from './accountEntity';
|
|
|
4
4
|
export * from './addLinkedWalletForUserRequest';
|
|
5
5
|
export * from './addLinkedWalletRequest';
|
|
6
6
|
export * from './allManagedUsersResponse';
|
|
7
|
+
export * from './apiKey';
|
|
7
8
|
export * from './asset';
|
|
8
9
|
export * from './createManagedUserRequest';
|
|
9
10
|
export * from './createRFQRequest';
|
|
@@ -23,7 +24,11 @@ export * from './ethereumValidatorKeyKeystoreCryptoKdfParams';
|
|
|
23
24
|
export * from './exitEstimateBase';
|
|
24
25
|
export * from './exitEstimateSeller';
|
|
25
26
|
export * from './exitProposal';
|
|
27
|
+
export * from './generateApiKeyRequest';
|
|
28
|
+
export * from './getMarketplaceMetadata200Response';
|
|
26
29
|
export * from './getTransactionsResponse';
|
|
30
|
+
export * from './getWithdrawalsResponse';
|
|
31
|
+
export * from './listAllRFQsForFacilitator200Response';
|
|
27
32
|
export * from './managedUser';
|
|
28
33
|
export * from './managedUserDetails';
|
|
29
34
|
export * from './order';
|
|
@@ -34,12 +39,16 @@ export * from './orderUpdatePayload';
|
|
|
34
39
|
export * from './portfolioEntity';
|
|
35
40
|
export * from './provideEscrowHashForRFQDocumentRequest';
|
|
36
41
|
export * from './quote';
|
|
42
|
+
export * from './rFQBidFacilitator';
|
|
37
43
|
export * from './rFQBids';
|
|
38
44
|
export * from './rFQDocumentBase';
|
|
39
45
|
export * from './rFQDocumentBaseUniqueEscrowVault';
|
|
40
46
|
export * from './rFQDocumentBuyer';
|
|
41
47
|
export * from './rFQDocumentBuyerAllOfValidators';
|
|
42
48
|
export * from './rFQDocumentBuyerStatusFilter';
|
|
49
|
+
export * from './rFQDocumentFacilitator';
|
|
50
|
+
export * from './rFQDocumentFacilitatorStatusFilter';
|
|
51
|
+
export * from './rFQDocumentFacilitatorValidatorsInner';
|
|
43
52
|
export * from './rFQDocumentSeller';
|
|
44
53
|
export * from './rFQDocumentSellerAllOfValidators';
|
|
45
54
|
export * from './rFQDocumentSellerStatusFilter';
|
|
@@ -63,6 +72,7 @@ export * from './unstakeStepType';
|
|
|
63
72
|
export * from './validatorInfo';
|
|
64
73
|
export * from './validatorKeyHolder';
|
|
65
74
|
export * from './validatorType';
|
|
75
|
+
export * from './validatorWithdrawal';
|
|
66
76
|
export * from './wallet';
|
|
67
77
|
export * from './webHookLookupAnswer';
|
|
68
78
|
export * from './webhookPayload';
|
package/dist/model/models.js
CHANGED
|
@@ -33,6 +33,7 @@ __exportStar(require("./accountEntity"), exports);
|
|
|
33
33
|
__exportStar(require("./addLinkedWalletForUserRequest"), exports);
|
|
34
34
|
__exportStar(require("./addLinkedWalletRequest"), exports);
|
|
35
35
|
__exportStar(require("./allManagedUsersResponse"), exports);
|
|
36
|
+
__exportStar(require("./apiKey"), exports);
|
|
36
37
|
__exportStar(require("./asset"), exports);
|
|
37
38
|
__exportStar(require("./createManagedUserRequest"), exports);
|
|
38
39
|
__exportStar(require("./createRFQRequest"), exports);
|
|
@@ -52,7 +53,11 @@ __exportStar(require("./ethereumValidatorKeyKeystoreCryptoKdfParams"), exports);
|
|
|
52
53
|
__exportStar(require("./exitEstimateBase"), exports);
|
|
53
54
|
__exportStar(require("./exitEstimateSeller"), exports);
|
|
54
55
|
__exportStar(require("./exitProposal"), exports);
|
|
56
|
+
__exportStar(require("./generateApiKeyRequest"), exports);
|
|
57
|
+
__exportStar(require("./getMarketplaceMetadata200Response"), exports);
|
|
55
58
|
__exportStar(require("./getTransactionsResponse"), exports);
|
|
59
|
+
__exportStar(require("./getWithdrawalsResponse"), exports);
|
|
60
|
+
__exportStar(require("./listAllRFQsForFacilitator200Response"), exports);
|
|
56
61
|
__exportStar(require("./managedUser"), exports);
|
|
57
62
|
__exportStar(require("./managedUserDetails"), exports);
|
|
58
63
|
__exportStar(require("./order"), exports);
|
|
@@ -63,12 +68,16 @@ __exportStar(require("./orderUpdatePayload"), exports);
|
|
|
63
68
|
__exportStar(require("./portfolioEntity"), exports);
|
|
64
69
|
__exportStar(require("./provideEscrowHashForRFQDocumentRequest"), exports);
|
|
65
70
|
__exportStar(require("./quote"), exports);
|
|
71
|
+
__exportStar(require("./rFQBidFacilitator"), exports);
|
|
66
72
|
__exportStar(require("./rFQBids"), exports);
|
|
67
73
|
__exportStar(require("./rFQDocumentBase"), exports);
|
|
68
74
|
__exportStar(require("./rFQDocumentBaseUniqueEscrowVault"), exports);
|
|
69
75
|
__exportStar(require("./rFQDocumentBuyer"), exports);
|
|
70
76
|
__exportStar(require("./rFQDocumentBuyerAllOfValidators"), exports);
|
|
71
77
|
__exportStar(require("./rFQDocumentBuyerStatusFilter"), exports);
|
|
78
|
+
__exportStar(require("./rFQDocumentFacilitator"), exports);
|
|
79
|
+
__exportStar(require("./rFQDocumentFacilitatorStatusFilter"), exports);
|
|
80
|
+
__exportStar(require("./rFQDocumentFacilitatorValidatorsInner"), exports);
|
|
72
81
|
__exportStar(require("./rFQDocumentSeller"), exports);
|
|
73
82
|
__exportStar(require("./rFQDocumentSellerAllOfValidators"), exports);
|
|
74
83
|
__exportStar(require("./rFQDocumentSellerStatusFilter"), exports);
|
|
@@ -92,6 +101,7 @@ __exportStar(require("./unstakeStepType"), exports);
|
|
|
92
101
|
__exportStar(require("./validatorInfo"), exports);
|
|
93
102
|
__exportStar(require("./validatorKeyHolder"), exports);
|
|
94
103
|
__exportStar(require("./validatorType"), exports);
|
|
104
|
+
__exportStar(require("./validatorWithdrawal"), exports);
|
|
95
105
|
__exportStar(require("./wallet"), exports);
|
|
96
106
|
__exportStar(require("./webHookLookupAnswer"), exports);
|
|
97
107
|
__exportStar(require("./webhookPayload"), exports);
|
|
@@ -124,6 +134,7 @@ const accountEntity_1 = require("./accountEntity");
|
|
|
124
134
|
const addLinkedWalletForUserRequest_1 = require("./addLinkedWalletForUserRequest");
|
|
125
135
|
const addLinkedWalletRequest_1 = require("./addLinkedWalletRequest");
|
|
126
136
|
const allManagedUsersResponse_1 = require("./allManagedUsersResponse");
|
|
137
|
+
const apiKey_1 = require("./apiKey");
|
|
127
138
|
const createManagedUserRequest_1 = require("./createManagedUserRequest");
|
|
128
139
|
const createRFQRequest_1 = require("./createRFQRequest");
|
|
129
140
|
const depositAddress_1 = require("./depositAddress");
|
|
@@ -142,7 +153,11 @@ const ethereumValidatorKeyKeystoreCryptoKdfParams_1 = require("./ethereumValidat
|
|
|
142
153
|
const exitEstimateBase_1 = require("./exitEstimateBase");
|
|
143
154
|
const exitEstimateSeller_1 = require("./exitEstimateSeller");
|
|
144
155
|
const exitProposal_1 = require("./exitProposal");
|
|
156
|
+
const generateApiKeyRequest_1 = require("./generateApiKeyRequest");
|
|
157
|
+
const getMarketplaceMetadata200Response_1 = require("./getMarketplaceMetadata200Response");
|
|
145
158
|
const getTransactionsResponse_1 = require("./getTransactionsResponse");
|
|
159
|
+
const getWithdrawalsResponse_1 = require("./getWithdrawalsResponse");
|
|
160
|
+
const listAllRFQsForFacilitator200Response_1 = require("./listAllRFQsForFacilitator200Response");
|
|
146
161
|
const managedUser_1 = require("./managedUser");
|
|
147
162
|
const managedUserDetails_1 = require("./managedUserDetails");
|
|
148
163
|
const order_1 = require("./order");
|
|
@@ -152,11 +167,14 @@ const orderUpdatePayload_1 = require("./orderUpdatePayload");
|
|
|
152
167
|
const portfolioEntity_1 = require("./portfolioEntity");
|
|
153
168
|
const provideEscrowHashForRFQDocumentRequest_1 = require("./provideEscrowHashForRFQDocumentRequest");
|
|
154
169
|
const quote_1 = require("./quote");
|
|
170
|
+
const rFQBidFacilitator_1 = require("./rFQBidFacilitator");
|
|
155
171
|
const rFQBids_1 = require("./rFQBids");
|
|
156
172
|
const rFQDocumentBase_1 = require("./rFQDocumentBase");
|
|
157
173
|
const rFQDocumentBaseUniqueEscrowVault_1 = require("./rFQDocumentBaseUniqueEscrowVault");
|
|
158
174
|
const rFQDocumentBuyer_1 = require("./rFQDocumentBuyer");
|
|
159
175
|
const rFQDocumentBuyerAllOfValidators_1 = require("./rFQDocumentBuyerAllOfValidators");
|
|
176
|
+
const rFQDocumentFacilitator_1 = require("./rFQDocumentFacilitator");
|
|
177
|
+
const rFQDocumentFacilitatorValidatorsInner_1 = require("./rFQDocumentFacilitatorValidatorsInner");
|
|
160
178
|
const rFQDocumentSeller_1 = require("./rFQDocumentSeller");
|
|
161
179
|
const rFQDocumentSellerAllOfValidators_1 = require("./rFQDocumentSellerAllOfValidators");
|
|
162
180
|
const rFQDocumentUpdate_1 = require("./rFQDocumentUpdate");
|
|
@@ -172,6 +190,7 @@ const transactionsforUser_1 = require("./transactionsforUser");
|
|
|
172
190
|
const unstakeStep_1 = require("./unstakeStep");
|
|
173
191
|
const unstakeStepElement_1 = require("./unstakeStepElement");
|
|
174
192
|
const validatorInfo_1 = require("./validatorInfo");
|
|
193
|
+
const validatorWithdrawal_1 = require("./validatorWithdrawal");
|
|
175
194
|
const wallet_1 = require("./wallet");
|
|
176
195
|
const webHookLookupAnswer_1 = require("./webHookLookupAnswer");
|
|
177
196
|
const webhookPayload_1 = require("./webhookPayload");
|
|
@@ -210,10 +229,14 @@ let primitives = [
|
|
|
210
229
|
"any"
|
|
211
230
|
];
|
|
212
231
|
let enumsMap = {
|
|
232
|
+
"ApiKey.roles": apiKey_1.ApiKey,
|
|
233
|
+
"GenerateApiKeyRequest.keyRights": generateApiKeyRequest_1.GenerateApiKeyRequest,
|
|
213
234
|
"OrderDocument.type": orderDocument_1.OrderDocument,
|
|
214
235
|
"OrderDocument.status": orderDocument_1.OrderDocument,
|
|
236
|
+
"RFQDocumentFacilitator.status": rFQDocumentFacilitator_1.RFQDocumentFacilitator,
|
|
215
237
|
"ValidatorInfo.asset": validatorInfo_1.ValidatorInfo,
|
|
216
238
|
"ValidatorInfo.status": validatorInfo_1.ValidatorInfo,
|
|
239
|
+
"ValidatorWithdrawal.asset": validatorWithdrawal_1.ValidatorWithdrawal,
|
|
217
240
|
};
|
|
218
241
|
let typeMap = {
|
|
219
242
|
"AcceptedQuote": acceptedQuote_1.AcceptedQuote,
|
|
@@ -221,6 +244,7 @@ let typeMap = {
|
|
|
221
244
|
"AddLinkedWalletForUserRequest": addLinkedWalletForUserRequest_1.AddLinkedWalletForUserRequest,
|
|
222
245
|
"AddLinkedWalletRequest": addLinkedWalletRequest_1.AddLinkedWalletRequest,
|
|
223
246
|
"AllManagedUsersResponse": allManagedUsersResponse_1.AllManagedUsersResponse,
|
|
247
|
+
"ApiKey": apiKey_1.ApiKey,
|
|
224
248
|
"CreateManagedUserRequest": createManagedUserRequest_1.CreateManagedUserRequest,
|
|
225
249
|
"CreateRFQRequest": createRFQRequest_1.CreateRFQRequest,
|
|
226
250
|
"DepositAddress": depositAddress_1.DepositAddress,
|
|
@@ -239,7 +263,11 @@ let typeMap = {
|
|
|
239
263
|
"ExitEstimateBase": exitEstimateBase_1.ExitEstimateBase,
|
|
240
264
|
"ExitEstimateSeller": exitEstimateSeller_1.ExitEstimateSeller,
|
|
241
265
|
"ExitProposal": exitProposal_1.ExitProposal,
|
|
266
|
+
"GenerateApiKeyRequest": generateApiKeyRequest_1.GenerateApiKeyRequest,
|
|
267
|
+
"GetMarketplaceMetadata200Response": getMarketplaceMetadata200Response_1.GetMarketplaceMetadata200Response,
|
|
242
268
|
"GetTransactionsResponse": getTransactionsResponse_1.GetTransactionsResponse,
|
|
269
|
+
"GetWithdrawalsResponse": getWithdrawalsResponse_1.GetWithdrawalsResponse,
|
|
270
|
+
"ListAllRFQsForFacilitator200Response": listAllRFQsForFacilitator200Response_1.ListAllRFQsForFacilitator200Response,
|
|
243
271
|
"ManagedUser": managedUser_1.ManagedUser,
|
|
244
272
|
"ManagedUserDetails": managedUserDetails_1.ManagedUserDetails,
|
|
245
273
|
"Order": order_1.Order,
|
|
@@ -249,11 +277,14 @@ let typeMap = {
|
|
|
249
277
|
"PortfolioEntity": portfolioEntity_1.PortfolioEntity,
|
|
250
278
|
"ProvideEscrowHashForRFQDocumentRequest": provideEscrowHashForRFQDocumentRequest_1.ProvideEscrowHashForRFQDocumentRequest,
|
|
251
279
|
"Quote": quote_1.Quote,
|
|
280
|
+
"RFQBidFacilitator": rFQBidFacilitator_1.RFQBidFacilitator,
|
|
252
281
|
"RFQBids": rFQBids_1.RFQBids,
|
|
253
282
|
"RFQDocumentBase": rFQDocumentBase_1.RFQDocumentBase,
|
|
254
283
|
"RFQDocumentBaseUniqueEscrowVault": rFQDocumentBaseUniqueEscrowVault_1.RFQDocumentBaseUniqueEscrowVault,
|
|
255
284
|
"RFQDocumentBuyer": rFQDocumentBuyer_1.RFQDocumentBuyer,
|
|
256
285
|
"RFQDocumentBuyerAllOfValidators": rFQDocumentBuyerAllOfValidators_1.RFQDocumentBuyerAllOfValidators,
|
|
286
|
+
"RFQDocumentFacilitator": rFQDocumentFacilitator_1.RFQDocumentFacilitator,
|
|
287
|
+
"RFQDocumentFacilitatorValidatorsInner": rFQDocumentFacilitatorValidatorsInner_1.RFQDocumentFacilitatorValidatorsInner,
|
|
257
288
|
"RFQDocumentSeller": rFQDocumentSeller_1.RFQDocumentSeller,
|
|
258
289
|
"RFQDocumentSellerAllOfValidators": rFQDocumentSellerAllOfValidators_1.RFQDocumentSellerAllOfValidators,
|
|
259
290
|
"RFQDocumentUpdate": rFQDocumentUpdate_1.RFQDocumentUpdate,
|
|
@@ -269,6 +300,7 @@ let typeMap = {
|
|
|
269
300
|
"UnstakeStep": unstakeStep_1.UnstakeStep,
|
|
270
301
|
"UnstakeStepElement": unstakeStepElement_1.UnstakeStepElement,
|
|
271
302
|
"ValidatorInfo": validatorInfo_1.ValidatorInfo,
|
|
303
|
+
"ValidatorWithdrawal": validatorWithdrawal_1.ValidatorWithdrawal,
|
|
272
304
|
"Wallet": wallet_1.Wallet,
|
|
273
305
|
"WebHookLookupAnswer": webHookLookupAnswer_1.WebHookLookupAnswer,
|
|
274
306
|
"WebhookPayload": webhookPayload_1.WebhookPayload,
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Northstake
|
|
3
|
+
* Northstake api
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.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
|
+
export declare class RFQBidFacilitator {
|
|
13
|
+
'quote_id': string;
|
|
14
|
+
'quote': number;
|
|
15
|
+
'timestamp': Date;
|
|
16
|
+
static discriminator: string | undefined;
|
|
17
|
+
static attributeTypeMap: Array<{
|
|
18
|
+
name: string;
|
|
19
|
+
baseName: string;
|
|
20
|
+
type: string;
|
|
21
|
+
}>;
|
|
22
|
+
static getAttributeTypeMap(): {
|
|
23
|
+
name: string;
|
|
24
|
+
baseName: string;
|
|
25
|
+
type: string;
|
|
26
|
+
}[];
|
|
27
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Northstake
|
|
4
|
+
* Northstake api
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.RFQBidFacilitator = void 0;
|
|
15
|
+
class RFQBidFacilitator {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return RFQBidFacilitator.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.RFQBidFacilitator = RFQBidFacilitator;
|
|
21
|
+
RFQBidFacilitator.discriminator = undefined;
|
|
22
|
+
RFQBidFacilitator.attributeTypeMap = [
|
|
23
|
+
{
|
|
24
|
+
"name": "quote_id",
|
|
25
|
+
"baseName": "quote_id",
|
|
26
|
+
"type": "string"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "quote",
|
|
30
|
+
"baseName": "quote",
|
|
31
|
+
"type": "number"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "timestamp",
|
|
35
|
+
"baseName": "timestamp",
|
|
36
|
+
"type": "Date"
|
|
37
|
+
}
|
|
38
|
+
];
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Northstake
|
|
3
|
+
* Northstake api
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.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
|
+
import { Quote } from './quote';
|
|
13
|
+
import { RFQDocumentFacilitatorValidatorsInner } from './rFQDocumentFacilitatorValidatorsInner';
|
|
14
|
+
export declare class RFQDocumentFacilitator {
|
|
15
|
+
'id': string;
|
|
16
|
+
'status': RFQDocumentFacilitator;
|
|
17
|
+
'total_balance': number;
|
|
18
|
+
'payment_address': string;
|
|
19
|
+
'validators': Array<RFQDocumentFacilitatorValidatorsInner>;
|
|
20
|
+
'quotes'?: Array<Quote>;
|
|
21
|
+
static discriminator: string | undefined;
|
|
22
|
+
static attributeTypeMap: Array<{
|
|
23
|
+
name: string;
|
|
24
|
+
baseName: string;
|
|
25
|
+
type: string;
|
|
26
|
+
}>;
|
|
27
|
+
static getAttributeTypeMap(): {
|
|
28
|
+
name: string;
|
|
29
|
+
baseName: string;
|
|
30
|
+
type: string;
|
|
31
|
+
}[];
|
|
32
|
+
}
|
|
33
|
+
export declare namespace RFQDocumentFacilitator {
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
*/
|
|
37
|
+
type statusEnum = 'active' | 'expired' | 'rejected' | 'finished' | 'failed';
|
|
38
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Northstake
|
|
4
|
+
* Northstake api
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.RFQDocumentFacilitator = void 0;
|
|
15
|
+
class RFQDocumentFacilitator {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return RFQDocumentFacilitator.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.RFQDocumentFacilitator = RFQDocumentFacilitator;
|
|
21
|
+
RFQDocumentFacilitator.discriminator = undefined;
|
|
22
|
+
RFQDocumentFacilitator.attributeTypeMap = [
|
|
23
|
+
{
|
|
24
|
+
"name": "id",
|
|
25
|
+
"baseName": "id",
|
|
26
|
+
"type": "string"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "status",
|
|
30
|
+
"baseName": "status",
|
|
31
|
+
"type": "RFQDocumentFacilitator.StatusEnum"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "total_balance",
|
|
35
|
+
"baseName": "total_balance",
|
|
36
|
+
"type": "number"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "payment_address",
|
|
40
|
+
"baseName": "payment_address",
|
|
41
|
+
"type": "string"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "validators",
|
|
45
|
+
"baseName": "validators",
|
|
46
|
+
"type": "Array<RFQDocumentFacilitatorValidatorsInner>"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"name": "quotes",
|
|
50
|
+
"baseName": "quotes",
|
|
51
|
+
"type": "Array<Quote>"
|
|
52
|
+
}
|
|
53
|
+
];
|