@northstake/northstakeapi 1.0.20 → 1.0.22
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 +1 -0
- package/.openapi-generator/VERSION +1 -1
- package/api.ts +1 -0
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/model/exitProposal.d.ts +27 -0
- package/dist/model/exitProposal.js +38 -0
- package/dist/model/models.d.ts +1 -0
- package/dist/model/models.js +3 -0
- package/dist/model/rFQDocumentBase.d.ts +1 -0
- package/dist/model/rFQDocumentBase.js +5 -0
- package/dist/model/rFQDocumentBuyer.d.ts +1 -0
- package/dist/model/rFQDocumentBuyer.js +5 -0
- package/dist/model/rFQDocumentSeller.d.ts +1 -0
- package/dist/model/rFQDocumentSeller.js +5 -0
- package/dist/model/settlementSteps.d.ts +2 -0
- package/dist/model/settlementSteps.js +5 -0
- package/dist/model/webhookPayloadRFQWithdrawalClaimableDetails.d.ts +1 -0
- package/dist/model/webhookPayloadRFQWithdrawalClaimableDetails.js +5 -0
- package/model/exitProposal.ts +43 -0
- package/model/models.ts +5 -0
- package/model/rFQDocumentBase.ts +6 -0
- package/model/rFQDocumentBuyer.ts +6 -0
- package/model/rFQDocumentSeller.ts +6 -0
- package/model/settlementSteps.ts +7 -0
- package/model/webhookPayloadRFQWithdrawalClaimableDetails.ts +6 -0
- package/package.json +3 -3
package/.openapi-generator/FILES
CHANGED
|
@@ -43,6 +43,7 @@ model/ethereumValidatorKeyKeystoreCryptoKdf.ts
|
|
|
43
43
|
model/ethereumValidatorKeyKeystoreCryptoKdfParams.ts
|
|
44
44
|
model/exitEstimateBase.ts
|
|
45
45
|
model/exitEstimateSeller.ts
|
|
46
|
+
model/exitProposal.ts
|
|
46
47
|
model/getTransactionsResponse.ts
|
|
47
48
|
model/managedUser.ts
|
|
48
49
|
model/managedUserDetails.ts
|
|
@@ -1 +1 @@
|
|
|
1
|
-
7.
|
|
1
|
+
7.9.0-SNAPSHOT
|
package/api.ts
CHANGED
|
@@ -40,6 +40,7 @@ export * from './model/./ethereumValidatorKeyKeystoreCryptoKdf';
|
|
|
40
40
|
export * from './model/./ethereumValidatorKeyKeystoreCryptoKdfParams';
|
|
41
41
|
export * from './model/./exitEstimateBase';
|
|
42
42
|
export * from './model/./exitEstimateSeller';
|
|
43
|
+
export * from './model/./exitProposal';
|
|
43
44
|
export * from './model/./getTransactionsResponse';
|
|
44
45
|
export * from './model/./managedUser';
|
|
45
46
|
export * from './model/./managedUserDetails';
|
package/dist/api.d.ts
CHANGED
|
@@ -38,6 +38,7 @@ export * from './model/./ethereumValidatorKeyKeystoreCryptoKdf';
|
|
|
38
38
|
export * from './model/./ethereumValidatorKeyKeystoreCryptoKdfParams';
|
|
39
39
|
export * from './model/./exitEstimateBase';
|
|
40
40
|
export * from './model/./exitEstimateSeller';
|
|
41
|
+
export * from './model/./exitProposal';
|
|
41
42
|
export * from './model/./getTransactionsResponse';
|
|
42
43
|
export * from './model/./managedUser';
|
|
43
44
|
export * from './model/./managedUserDetails';
|
package/dist/api.js
CHANGED
|
@@ -57,6 +57,7 @@ __exportStar(require("./model/./ethereumValidatorKeyKeystoreCryptoKdf"), exports
|
|
|
57
57
|
__exportStar(require("./model/./ethereumValidatorKeyKeystoreCryptoKdfParams"), exports);
|
|
58
58
|
__exportStar(require("./model/./exitEstimateBase"), exports);
|
|
59
59
|
__exportStar(require("./model/./exitEstimateSeller"), exports);
|
|
60
|
+
__exportStar(require("./model/./exitProposal"), exports);
|
|
60
61
|
__exportStar(require("./model/./getTransactionsResponse"), exports);
|
|
61
62
|
__exportStar(require("./model/./managedUser"), exports);
|
|
62
63
|
__exportStar(require("./model/./managedUserDetails"), exports);
|
|
@@ -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 ExitProposal {
|
|
13
|
+
'timestamp': string;
|
|
14
|
+
'transaction_hash': string;
|
|
15
|
+
'proposal_id': string;
|
|
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.ExitProposal = void 0;
|
|
15
|
+
class ExitProposal {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return ExitProposal.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ExitProposal = ExitProposal;
|
|
21
|
+
ExitProposal.discriminator = undefined;
|
|
22
|
+
ExitProposal.attributeTypeMap = [
|
|
23
|
+
{
|
|
24
|
+
"name": "timestamp",
|
|
25
|
+
"baseName": "timestamp",
|
|
26
|
+
"type": "string"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "transaction_hash",
|
|
30
|
+
"baseName": "transaction_hash",
|
|
31
|
+
"type": "string"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "proposal_id",
|
|
35
|
+
"baseName": "proposal_id",
|
|
36
|
+
"type": "string"
|
|
37
|
+
}
|
|
38
|
+
];
|
package/dist/model/models.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ export * from './ethereumValidatorKeyKeystoreCryptoKdf';
|
|
|
22
22
|
export * from './ethereumValidatorKeyKeystoreCryptoKdfParams';
|
|
23
23
|
export * from './exitEstimateBase';
|
|
24
24
|
export * from './exitEstimateSeller';
|
|
25
|
+
export * from './exitProposal';
|
|
25
26
|
export * from './getTransactionsResponse';
|
|
26
27
|
export * from './managedUser';
|
|
27
28
|
export * from './managedUserDetails';
|
package/dist/model/models.js
CHANGED
|
@@ -51,6 +51,7 @@ __exportStar(require("./ethereumValidatorKeyKeystoreCryptoKdf"), exports);
|
|
|
51
51
|
__exportStar(require("./ethereumValidatorKeyKeystoreCryptoKdfParams"), exports);
|
|
52
52
|
__exportStar(require("./exitEstimateBase"), exports);
|
|
53
53
|
__exportStar(require("./exitEstimateSeller"), exports);
|
|
54
|
+
__exportStar(require("./exitProposal"), exports);
|
|
54
55
|
__exportStar(require("./getTransactionsResponse"), exports);
|
|
55
56
|
__exportStar(require("./managedUser"), exports);
|
|
56
57
|
__exportStar(require("./managedUserDetails"), exports);
|
|
@@ -140,6 +141,7 @@ const ethereumValidatorKeyKeystoreCryptoKdf_1 = require("./ethereumValidatorKeyK
|
|
|
140
141
|
const ethereumValidatorKeyKeystoreCryptoKdfParams_1 = require("./ethereumValidatorKeyKeystoreCryptoKdfParams");
|
|
141
142
|
const exitEstimateBase_1 = require("./exitEstimateBase");
|
|
142
143
|
const exitEstimateSeller_1 = require("./exitEstimateSeller");
|
|
144
|
+
const exitProposal_1 = require("./exitProposal");
|
|
143
145
|
const getTransactionsResponse_1 = require("./getTransactionsResponse");
|
|
144
146
|
const managedUser_1 = require("./managedUser");
|
|
145
147
|
const managedUserDetails_1 = require("./managedUserDetails");
|
|
@@ -236,6 +238,7 @@ let typeMap = {
|
|
|
236
238
|
"EthereumValidatorKeyKeystoreCryptoKdfParams": ethereumValidatorKeyKeystoreCryptoKdfParams_1.EthereumValidatorKeyKeystoreCryptoKdfParams,
|
|
237
239
|
"ExitEstimateBase": exitEstimateBase_1.ExitEstimateBase,
|
|
238
240
|
"ExitEstimateSeller": exitEstimateSeller_1.ExitEstimateSeller,
|
|
241
|
+
"ExitProposal": exitProposal_1.ExitProposal,
|
|
239
242
|
"GetTransactionsResponse": getTransactionsResponse_1.GetTransactionsResponse,
|
|
240
243
|
"ManagedUser": managedUser_1.ManagedUser,
|
|
241
244
|
"ManagedUserDetails": managedUserDetails_1.ManagedUserDetails,
|
|
@@ -20,6 +20,7 @@ export declare class RFQDocumentBase {
|
|
|
20
20
|
'estimated_all_validators_exited_at': Date;
|
|
21
21
|
'unique_escrow_vault'?: RFQDocumentBaseUniqueEscrowVault;
|
|
22
22
|
'settlement_steps'?: SettlementSteps;
|
|
23
|
+
'smart_contract'?: string;
|
|
23
24
|
static discriminator: string | undefined;
|
|
24
25
|
static attributeTypeMap: Array<{
|
|
25
26
|
name: string;
|
|
@@ -22,6 +22,7 @@ export declare class RFQDocumentBuyer {
|
|
|
22
22
|
'estimated_all_validators_exited_at': Date;
|
|
23
23
|
'unique_escrow_vault'?: RFQDocumentBaseUniqueEscrowVault;
|
|
24
24
|
'settlement_steps'?: SettlementSteps;
|
|
25
|
+
'smart_contract'?: string;
|
|
25
26
|
'validators': Array<RFQDocumentBuyerAllOfValidators>;
|
|
26
27
|
'quote'?: Quote;
|
|
27
28
|
static discriminator: string | undefined;
|
|
@@ -55,6 +55,11 @@ RFQDocumentBuyer.attributeTypeMap = [
|
|
|
55
55
|
"baseName": "settlement_steps",
|
|
56
56
|
"type": "SettlementSteps"
|
|
57
57
|
},
|
|
58
|
+
{
|
|
59
|
+
"name": "smart_contract",
|
|
60
|
+
"baseName": "smart_contract",
|
|
61
|
+
"type": "string"
|
|
62
|
+
},
|
|
58
63
|
{
|
|
59
64
|
"name": "validators",
|
|
60
65
|
"baseName": "validators",
|
|
@@ -22,6 +22,7 @@ export declare class RFQDocumentSeller {
|
|
|
22
22
|
'estimated_all_validators_exited_at': Date;
|
|
23
23
|
'unique_escrow_vault'?: RFQDocumentBaseUniqueEscrowVault;
|
|
24
24
|
'settlement_steps'?: SettlementSteps;
|
|
25
|
+
'smart_contract'?: string;
|
|
25
26
|
'validators': Array<RFQDocumentSellerAllOfValidators>;
|
|
26
27
|
'estimated_exit_transaction_deadline': Date;
|
|
27
28
|
'best_quote'?: Quote;
|
|
@@ -55,6 +55,11 @@ RFQDocumentSeller.attributeTypeMap = [
|
|
|
55
55
|
"baseName": "settlement_steps",
|
|
56
56
|
"type": "SettlementSteps"
|
|
57
57
|
},
|
|
58
|
+
{
|
|
59
|
+
"name": "smart_contract",
|
|
60
|
+
"baseName": "smart_contract",
|
|
61
|
+
"type": "string"
|
|
62
|
+
},
|
|
58
63
|
{
|
|
59
64
|
"name": "validators",
|
|
60
65
|
"baseName": "validators",
|
|
@@ -12,12 +12,14 @@
|
|
|
12
12
|
import { AcceptedQuote } from './acceptedQuote';
|
|
13
13
|
import { EscrowPayment } from './escrowPayment';
|
|
14
14
|
import { EscrowReleased } from './escrowReleased';
|
|
15
|
+
import { ExitProposal } from './exitProposal';
|
|
15
16
|
import { WithdrawalRecipientSettlement } from './withdrawalRecipientSettlement';
|
|
16
17
|
export declare class SettlementSteps {
|
|
17
18
|
'accepted_quote'?: AcceptedQuote;
|
|
18
19
|
'escrow_payment'?: EscrowPayment;
|
|
19
20
|
'withdrawal_recipient_settlement'?: WithdrawalRecipientSettlement;
|
|
20
21
|
'escrow_released'?: EscrowReleased;
|
|
22
|
+
'exit_proposal'?: ExitProposal;
|
|
21
23
|
static discriminator: string | undefined;
|
|
22
24
|
static attributeTypeMap: Array<{
|
|
23
25
|
name: string;
|
|
@@ -20,6 +20,11 @@ class WebhookPayloadRFQWithdrawalClaimableDetails {
|
|
|
20
20
|
exports.WebhookPayloadRFQWithdrawalClaimableDetails = WebhookPayloadRFQWithdrawalClaimableDetails;
|
|
21
21
|
WebhookPayloadRFQWithdrawalClaimableDetails.discriminator = undefined;
|
|
22
22
|
WebhookPayloadRFQWithdrawalClaimableDetails.attributeTypeMap = [
|
|
23
|
+
{
|
|
24
|
+
"name": "smart_contract",
|
|
25
|
+
"baseName": "smart_contract",
|
|
26
|
+
"type": "string"
|
|
27
|
+
},
|
|
23
28
|
{
|
|
24
29
|
"name": "validator_index",
|
|
25
30
|
"baseName": "validator_index",
|
|
@@ -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
|
+
|
|
13
|
+
|
|
14
|
+
export class ExitProposal {
|
|
15
|
+
'timestamp': string;
|
|
16
|
+
'transaction_hash': string;
|
|
17
|
+
'proposal_id': string;
|
|
18
|
+
|
|
19
|
+
static discriminator: string | undefined = undefined;
|
|
20
|
+
|
|
21
|
+
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
|
|
22
|
+
{
|
|
23
|
+
"name": "timestamp",
|
|
24
|
+
"baseName": "timestamp",
|
|
25
|
+
"type": "string"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "transaction_hash",
|
|
29
|
+
"baseName": "transaction_hash",
|
|
30
|
+
"type": "string"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "proposal_id",
|
|
34
|
+
"baseName": "proposal_id",
|
|
35
|
+
"type": "string"
|
|
36
|
+
} ];
|
|
37
|
+
|
|
38
|
+
static getAttributeTypeMap() {
|
|
39
|
+
return ExitProposal.attributeTypeMap;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
|
package/model/models.ts
CHANGED
|
@@ -25,6 +25,7 @@ export * from './ethereumValidatorKeyKeystoreCryptoKdf';
|
|
|
25
25
|
export * from './ethereumValidatorKeyKeystoreCryptoKdfParams';
|
|
26
26
|
export * from './exitEstimateBase';
|
|
27
27
|
export * from './exitEstimateSeller';
|
|
28
|
+
export * from './exitProposal';
|
|
28
29
|
export * from './getTransactionsResponse';
|
|
29
30
|
export * from './managedUser';
|
|
30
31
|
export * from './managedUserDetails';
|
|
@@ -175,6 +176,9 @@ import { ExitEstimateBase } from './exitEstimateBase';
|
|
|
175
176
|
import { ExitEstimateSeller } from './exitEstimateSeller';
|
|
176
177
|
|
|
177
178
|
|
|
179
|
+
import { ExitProposal } from './exitProposal';
|
|
180
|
+
|
|
181
|
+
|
|
178
182
|
import { GetTransactionsResponse } from './getTransactionsResponse';
|
|
179
183
|
|
|
180
184
|
|
|
@@ -417,6 +421,7 @@ let typeMap: {[index: string]: any} = {
|
|
|
417
421
|
"EthereumValidatorKeyKeystoreCryptoKdfParams": EthereumValidatorKeyKeystoreCryptoKdfParams,
|
|
418
422
|
"ExitEstimateBase": ExitEstimateBase,
|
|
419
423
|
"ExitEstimateSeller": ExitEstimateSeller,
|
|
424
|
+
"ExitProposal": ExitProposal,
|
|
420
425
|
"GetTransactionsResponse": GetTransactionsResponse,
|
|
421
426
|
"ManagedUser": ManagedUser,
|
|
422
427
|
"ManagedUserDetails": ManagedUserDetails,
|
package/model/rFQDocumentBase.ts
CHANGED
|
@@ -22,6 +22,7 @@ export class RFQDocumentBase {
|
|
|
22
22
|
'estimated_all_validators_exited_at': Date;
|
|
23
23
|
'unique_escrow_vault'?: RFQDocumentBaseUniqueEscrowVault;
|
|
24
24
|
'settlement_steps'?: SettlementSteps;
|
|
25
|
+
'smart_contract'?: string;
|
|
25
26
|
|
|
26
27
|
static discriminator: string | undefined = undefined;
|
|
27
28
|
|
|
@@ -60,6 +61,11 @@ export class RFQDocumentBase {
|
|
|
60
61
|
"name": "settlement_steps",
|
|
61
62
|
"baseName": "settlement_steps",
|
|
62
63
|
"type": "SettlementSteps"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "smart_contract",
|
|
67
|
+
"baseName": "smart_contract",
|
|
68
|
+
"type": "string"
|
|
63
69
|
} ];
|
|
64
70
|
|
|
65
71
|
static getAttributeTypeMap() {
|
|
@@ -24,6 +24,7 @@ export class RFQDocumentBuyer {
|
|
|
24
24
|
'estimated_all_validators_exited_at': Date;
|
|
25
25
|
'unique_escrow_vault'?: RFQDocumentBaseUniqueEscrowVault;
|
|
26
26
|
'settlement_steps'?: SettlementSteps;
|
|
27
|
+
'smart_contract'?: string;
|
|
27
28
|
'validators': Array<RFQDocumentBuyerAllOfValidators>;
|
|
28
29
|
'quote'?: Quote;
|
|
29
30
|
|
|
@@ -65,6 +66,11 @@ export class RFQDocumentBuyer {
|
|
|
65
66
|
"baseName": "settlement_steps",
|
|
66
67
|
"type": "SettlementSteps"
|
|
67
68
|
},
|
|
69
|
+
{
|
|
70
|
+
"name": "smart_contract",
|
|
71
|
+
"baseName": "smart_contract",
|
|
72
|
+
"type": "string"
|
|
73
|
+
},
|
|
68
74
|
{
|
|
69
75
|
"name": "validators",
|
|
70
76
|
"baseName": "validators",
|
|
@@ -24,6 +24,7 @@ export class RFQDocumentSeller {
|
|
|
24
24
|
'estimated_all_validators_exited_at': Date;
|
|
25
25
|
'unique_escrow_vault'?: RFQDocumentBaseUniqueEscrowVault;
|
|
26
26
|
'settlement_steps'?: SettlementSteps;
|
|
27
|
+
'smart_contract'?: string;
|
|
27
28
|
'validators': Array<RFQDocumentSellerAllOfValidators>;
|
|
28
29
|
'estimated_exit_transaction_deadline': Date;
|
|
29
30
|
'best_quote'?: Quote;
|
|
@@ -66,6 +67,11 @@ export class RFQDocumentSeller {
|
|
|
66
67
|
"baseName": "settlement_steps",
|
|
67
68
|
"type": "SettlementSteps"
|
|
68
69
|
},
|
|
70
|
+
{
|
|
71
|
+
"name": "smart_contract",
|
|
72
|
+
"baseName": "smart_contract",
|
|
73
|
+
"type": "string"
|
|
74
|
+
},
|
|
69
75
|
{
|
|
70
76
|
"name": "validators",
|
|
71
77
|
"baseName": "validators",
|
package/model/settlementSteps.ts
CHANGED
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
import { AcceptedQuote } from './acceptedQuote';
|
|
14
14
|
import { EscrowPayment } from './escrowPayment';
|
|
15
15
|
import { EscrowReleased } from './escrowReleased';
|
|
16
|
+
import { ExitProposal } from './exitProposal';
|
|
16
17
|
import { WithdrawalRecipientSettlement } from './withdrawalRecipientSettlement';
|
|
17
18
|
|
|
18
19
|
export class SettlementSteps {
|
|
@@ -20,6 +21,7 @@ export class SettlementSteps {
|
|
|
20
21
|
'escrow_payment'?: EscrowPayment;
|
|
21
22
|
'withdrawal_recipient_settlement'?: WithdrawalRecipientSettlement;
|
|
22
23
|
'escrow_released'?: EscrowReleased;
|
|
24
|
+
'exit_proposal'?: ExitProposal;
|
|
23
25
|
|
|
24
26
|
static discriminator: string | undefined = undefined;
|
|
25
27
|
|
|
@@ -43,6 +45,11 @@ export class SettlementSteps {
|
|
|
43
45
|
"name": "escrow_released",
|
|
44
46
|
"baseName": "escrow_released",
|
|
45
47
|
"type": "EscrowReleased"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "exit_proposal",
|
|
51
|
+
"baseName": "exit_proposal",
|
|
52
|
+
"type": "ExitProposal"
|
|
46
53
|
} ];
|
|
47
54
|
|
|
48
55
|
static getAttributeTypeMap() {
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
export class WebhookPayloadRFQWithdrawalClaimableDetails {
|
|
15
|
+
'smart_contract'?: string;
|
|
15
16
|
'validator_index'?: number;
|
|
16
17
|
'amount'?: number;
|
|
17
18
|
'timestamp'?: Date;
|
|
@@ -21,6 +22,11 @@ export class WebhookPayloadRFQWithdrawalClaimableDetails {
|
|
|
21
22
|
static discriminator: string | undefined = undefined;
|
|
22
23
|
|
|
23
24
|
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
|
|
25
|
+
{
|
|
26
|
+
"name": "smart_contract",
|
|
27
|
+
"baseName": "smart_contract",
|
|
28
|
+
"type": "string"
|
|
29
|
+
},
|
|
24
30
|
{
|
|
25
31
|
"name": "validator_index",
|
|
26
32
|
"baseName": "validator_index",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@northstake/northstakeapi",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.22",
|
|
4
4
|
"description": "Northstake SDK",
|
|
5
5
|
"main": "dist/api.js",
|
|
6
6
|
"types": "dist/api.d.ts",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"author": "Northstake build process <buildadmin@northstake.dk>",
|
|
22
22
|
"license": "ISC",
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@types/node": "^22.
|
|
25
|
-
"typescript": "^5.
|
|
24
|
+
"@types/node": "^22.5.4",
|
|
25
|
+
"typescript": "^5.6.2"
|
|
26
26
|
}
|
|
27
27
|
}
|