@internxt/sdk 1.9.4 → 1.9.5
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/auth/index.js +8 -8
- package/package.json +1 -1
package/dist/auth/index.js
CHANGED
|
@@ -86,11 +86,11 @@ var Auth = /** @class */ (function () {
|
|
|
86
86
|
keys: {
|
|
87
87
|
ecc: {
|
|
88
88
|
publicKey: registerDetails.keys.ecc.publicKey,
|
|
89
|
-
|
|
89
|
+
privateKey: registerDetails.keys.ecc.privateKeyEncrypted,
|
|
90
90
|
},
|
|
91
91
|
kyber: {
|
|
92
92
|
publicKey: registerDetails.keys.kyber.publicKey,
|
|
93
|
-
|
|
93
|
+
privateKey: registerDetails.keys.kyber.privateKeyEncrypted,
|
|
94
94
|
},
|
|
95
95
|
},
|
|
96
96
|
referral: registerDetails.referral,
|
|
@@ -120,11 +120,11 @@ var Auth = /** @class */ (function () {
|
|
|
120
120
|
keys: {
|
|
121
121
|
ecc: {
|
|
122
122
|
publicKey: registerDetails.keys.ecc.publicKey,
|
|
123
|
-
|
|
123
|
+
privateKey: registerDetails.keys.ecc.privateKeyEncrypted,
|
|
124
124
|
},
|
|
125
125
|
kyber: {
|
|
126
126
|
publicKey: registerDetails.keys.kyber.publicKey,
|
|
127
|
-
|
|
127
|
+
privateKey: registerDetails.keys.kyber.privateKeyEncrypted,
|
|
128
128
|
},
|
|
129
129
|
},
|
|
130
130
|
referral: registerDetails.referral,
|
|
@@ -184,11 +184,11 @@ var Auth = /** @class */ (function () {
|
|
|
184
184
|
keys: {
|
|
185
185
|
ecc: {
|
|
186
186
|
publicKey: keys.ecc.publicKey,
|
|
187
|
-
|
|
187
|
+
privateKey: keys.ecc.privateKeyEncrypted,
|
|
188
188
|
},
|
|
189
189
|
kyber: {
|
|
190
190
|
publicKey: keys.kyber.publicKey,
|
|
191
|
-
|
|
191
|
+
privateKey: keys.kyber.privateKeyEncrypted,
|
|
192
192
|
},
|
|
193
193
|
},
|
|
194
194
|
}, this.basicHeaders())
|
|
@@ -217,11 +217,11 @@ var Auth = /** @class */ (function () {
|
|
|
217
217
|
revocationKey: keys.revocationCertificate,
|
|
218
218
|
ecc: {
|
|
219
219
|
publicKey: keys.ecc.publicKey,
|
|
220
|
-
|
|
220
|
+
privateKey: keys.ecc.privateKeyEncrypted,
|
|
221
221
|
},
|
|
222
222
|
kyber: {
|
|
223
223
|
publicKey: keys.kyber.publicKey,
|
|
224
|
-
|
|
224
|
+
privateKey: keys.kyber.privateKeyEncrypted,
|
|
225
225
|
},
|
|
226
226
|
}, this.headersWithToken(token));
|
|
227
227
|
};
|