@northstake/northstakeapi 1.0.21 → 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/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/webhookPayloadRFQWithdrawalClaimableDetails.d.ts +1 -0
- package/dist/model/webhookPayloadRFQWithdrawalClaimableDetails.js +5 -0
- package/model/rFQDocumentBase.ts +6 -0
- package/model/rFQDocumentBuyer.ts +6 -0
- package/model/rFQDocumentSeller.ts +6 -0
- package/model/webhookPayloadRFQWithdrawalClaimableDetails.ts +6 -0
- package/package.json +1 -1
|
@@ -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",
|
|
@@ -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",
|
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",
|
|
@@ -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",
|