@nightlylabs/dex-sdk 0.0.90 → 0.0.92

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/index.cjs CHANGED
@@ -1166,22 +1166,22 @@ var Client = class _Client {
1166
1166
  return response;
1167
1167
  };
1168
1168
  this.getUserPerpFills = async (request) => {
1169
- if (request.timestampEndMs && request.timestampStartMs && request.timestampEndMs > request.timestampStartMs) {
1170
- throw new Error("timestampEndMs must be lower than timestampStartMs");
1169
+ if (request.olderTimestampMs && request.newerTimestampMs && request.olderTimestampMs > request.newerTimestampMs) {
1170
+ throw new Error("olderTimestampMs must be lower than newerTimestampMs");
1171
1171
  }
1172
1172
  const response = await this.sendGetJson("/v1/get_user_perp_fills" /* GetUserPerpFills */, request);
1173
1173
  return response;
1174
1174
  };
1175
1175
  this.getUserPerpOrders = async (request) => {
1176
- if (request.timestampEndMs && request.timestampStartMs && request.timestampEndMs > request.timestampStartMs) {
1177
- throw new Error("timestampEndMs must be lower than timestampStartMs");
1176
+ if (request.olderTimestampMs && request.newerTimestampMs && request.olderTimestampMs > request.newerTimestampMs) {
1177
+ throw new Error("olderTimestampMs must be lower than newerTimestampMs");
1178
1178
  }
1179
1179
  const response = await this.sendGetJson("/v1/get_user_perp_orders" /* GetUserPerpOrders */, request);
1180
1180
  return response;
1181
1181
  };
1182
1182
  this.getUserFundingHistory = async (request) => {
1183
- if (request.timestampEndMs && request.timestampStartMs && request.timestampEndMs > request.timestampStartMs) {
1184
- throw new Error("timestampEndMs must be lower than timestampStartMs");
1183
+ if (request.olderTimestampMs && request.newerTimestampMs && request.olderTimestampMs > request.newerTimestampMs) {
1184
+ throw new Error("olderTimestampMs must be lower than newerTimestampMs");
1185
1185
  }
1186
1186
  const response = await this.sendGetJson("/v1/get_user_funding_history" /* GetUserFundingHistory */, request);
1187
1187
  return response;
@@ -1195,15 +1195,15 @@ var Client = class _Client {
1195
1195
  return response;
1196
1196
  };
1197
1197
  this.getUserPortfolioValueHistory = async (request) => {
1198
- if (request.timestampEndMs && request.timestampStartMs && request.timestampEndMs > request.timestampStartMs) {
1199
- throw new Error("timestampEndMs must be lower than timestampStartMs");
1198
+ if (request.olderTimestampMs && request.newerTimestampMs && request.olderTimestampMs > request.newerTimestampMs) {
1199
+ throw new Error("olderTimestampMs must be lower than newerTimestampMs");
1200
1200
  }
1201
1201
  const response = await this.sendGetJson("/v1/get_user_portfolio_value" /* GetUserPortfolioValue */, request);
1202
1202
  return response;
1203
1203
  };
1204
1204
  this.getUserTradeStatsHistory = async (request) => {
1205
- if (request.timestampEndMs && request.timestampStartMs && request.timestampEndMs > request.timestampStartMs) {
1206
- throw new Error("timestampEndMs must be lower than timestampStartMs");
1205
+ if (request.olderTimestampMs && request.newerTimestampMs && request.olderTimestampMs > request.newerTimestampMs) {
1206
+ throw new Error("olderTimestampMs must be lower than newerTimestampMs");
1207
1207
  }
1208
1208
  const response = await this.sendGetJson("/v1/get_user_trade_stats" /* GetUserTradeStats */, request);
1209
1209
  return response;
@@ -1213,8 +1213,8 @@ var Client = class _Client {
1213
1213
  return response;
1214
1214
  };
1215
1215
  this.getUserReferralStatsHistory = async (request) => {
1216
- if (request.timestampEndMs && request.timestampStartMs && request.timestampEndMs > request.timestampStartMs) {
1217
- throw new Error("timestampEndMs must be lower than timestampStartMs");
1216
+ if (request.olderTimestampMs && request.newerTimestampMs && request.olderTimestampMs > request.newerTimestampMs) {
1217
+ throw new Error("olderTimestampMs must be lower than newerTimestampMs");
1218
1218
  }
1219
1219
  const response = await this.sendGetJson("/v1/get_user_referral_stats" /* GetUserReferralStats */, request);
1220
1220
  return response;
@@ -1224,22 +1224,22 @@ var Client = class _Client {
1224
1224
  return response;
1225
1225
  };
1226
1226
  this.getUserClaimedKickbackHistory = async (request) => {
1227
- if (request.timestampEndMs && request.timestampStartMs && request.timestampEndMs > request.timestampStartMs) {
1228
- throw new Error("timestampEndMs must be lower than timestampStartMs");
1227
+ if (request.olderTimestampMs && request.newerTimestampMs && request.olderTimestampMs > request.newerTimestampMs) {
1228
+ throw new Error("olderTimestampMs must be lower than newerTimestampMs");
1229
1229
  }
1230
1230
  const response = await this.sendGetJson("/v1/get_user_claimed_kickback" /* GetUserClaimedKickback */, request);
1231
1231
  return response;
1232
1232
  };
1233
1233
  this.getUserClaimedReferralKickbackHistory = async (request) => {
1234
- if (request.timestampEndMs && request.timestampStartMs && request.timestampEndMs > request.timestampStartMs) {
1235
- throw new Error("timestampEndMs must be lower than timestampStartMs");
1234
+ if (request.olderTimestampMs && request.newerTimestampMs && request.olderTimestampMs > request.newerTimestampMs) {
1235
+ throw new Error("olderTimestampMs must be lower than newerTimestampMs");
1236
1236
  }
1237
1237
  const response = await this.sendGetJson("/v1/get_user_claimed_referral" /* GetUserClaimedReferral */, request);
1238
1238
  return response;
1239
1239
  };
1240
1240
  this.getUserTransfersHistory = async (request) => {
1241
- if (request.timestampEndMs && request.timestampStartMs && request.timestampEndMs > request.timestampStartMs) {
1242
- throw new Error("timestampEndMs must be lower than timestampStartMs");
1241
+ if (request.olderTimestampMs && request.newerTimestampMs && request.olderTimestampMs > request.newerTimestampMs) {
1242
+ throw new Error("olderTimestampMs must be lower than newerTimestampMs");
1243
1243
  }
1244
1244
  const response = await this.sendGetJson("/v1/get_user_transfers" /* GetUserTransfers */, request);
1245
1245
  return response;
@@ -1254,7 +1254,7 @@ var Client = class _Client {
1254
1254
  this._surf = (0, import_surf.createSurfClient)(this._aptos);
1255
1255
  this._apiKey = apiKey || generateApiKey();
1256
1256
  this._subscriptions = /* @__PURE__ */ new Map();
1257
- this._serverUrl = url || "https://api.dev.nightly.exchange";
1257
+ this._serverUrl = url || "https://api.dev.neony.exchange";
1258
1258
  this._sequenceNumberManager = new AccountSequenceNumber(this._aptos, this._apiKey);
1259
1259
  if (enableWs) {
1260
1260
  this.connectWebSocket();
package/dist/index.d.cts CHANGED
@@ -196,8 +196,8 @@ declare enum ChartInterval {
196
196
  interface GetChartCandlesInRangeRequest {
197
197
  marketName: string;
198
198
  interval: ChartInterval;
199
- timestampStartMs?: string;
200
- timestampEndMs?: string;
199
+ olderTimestampMs?: string;
200
+ newerTimestampMs?: string;
201
201
  paginationCursor?: PaginationCursor;
202
202
  }
203
203
  interface GetChartCandlesInRangeResponse {
@@ -235,8 +235,8 @@ interface GetPerpOrderBookDataResponse {
235
235
  }
236
236
  interface GetPerpRecentTradesRequest {
237
237
  marketName: string;
238
- timestampStartMs?: string;
239
- timestampEndMs?: string;
238
+ olderTimestampMs?: string;
239
+ newerTimestampMs?: string;
240
240
  paginationCursor?: PaginationCursor;
241
241
  }
242
242
  declare enum OrderSide {
@@ -256,8 +256,8 @@ interface GetPerpRecentTradesResponse {
256
256
  interface GetPerpUserFillsRequest {
257
257
  userId: string;
258
258
  marketName?: string;
259
- timestampStartMs?: string;
260
- timestampEndMs?: string;
259
+ olderTimestampMs?: string;
260
+ newerTimestampMs?: string;
261
261
  paginationCursor?: PaginationCursor;
262
262
  }
263
263
  declare enum TradeRole {
@@ -287,8 +287,8 @@ interface GetPerpUserFillsResponse {
287
287
  interface GetPerpUserOrdersRequest {
288
288
  userId: string;
289
289
  marketName?: string;
290
- timestampStartMs?: string;
291
- timestampEndMs?: string;
290
+ olderTimestampMs?: string;
291
+ newerTimestampMs?: string;
292
292
  paginationCursor?: PaginationCursor;
293
293
  }
294
294
  declare enum OrderStatus {
@@ -371,8 +371,8 @@ interface GetUserAggregatedStatsResponse {
371
371
  }
372
372
  interface GetUserClaimedKickbackHistoryRequest {
373
373
  userId: string;
374
- timestampStartMs?: string;
375
- timestampEndMs?: string;
374
+ olderTimestampMs?: string;
375
+ newerTimestampMs?: string;
376
376
  paginationCursor?: PaginationCursor;
377
377
  }
378
378
  interface GetUserClaimedKickbackHistoryResponse {
@@ -381,8 +381,8 @@ interface GetUserClaimedKickbackHistoryResponse {
381
381
  }
382
382
  interface GetUserClaimedReferralKickbackHistoryRequest {
383
383
  userId: string;
384
- timestampStartMs?: string;
385
- timestampEndMs?: string;
384
+ olderTimestampMs?: string;
385
+ newerTimestampMs?: string;
386
386
  paginationCursor?: PaginationCursor;
387
387
  }
388
388
  interface GetUserClaimedReferralKickbackHistoryResponse {
@@ -452,8 +452,8 @@ interface GetUserDepositsResponse {
452
452
  interface GetUserFundingHistoryRequest {
453
453
  userId: string;
454
454
  marketName?: string;
455
- timestampStartMs?: string;
456
- timestampEndMs?: string;
455
+ olderTimestampMs?: string;
456
+ newerTimestampMs?: string;
457
457
  paginationCursor?: PaginationCursor;
458
458
  }
459
459
  interface HistoricalFunding {
@@ -471,8 +471,8 @@ interface GetUserFundingHistoryResponse {
471
471
  }
472
472
  interface GetUserPortfolioValueRequest {
473
473
  userId: string;
474
- timestampStartMs?: string;
475
- timestampEndMs?: string;
474
+ olderTimestampMs?: string;
475
+ newerTimestampMs?: string;
476
476
  paginationCursor?: PaginationCursor;
477
477
  }
478
478
  interface UserPortfolioValue {
@@ -486,8 +486,8 @@ interface GetUserPortfolioValueResponse {
486
486
  }
487
487
  interface GetUserReferralStatsHistoryRequest {
488
488
  userId: string;
489
- timestampStartMs?: string;
490
- timestampEndMs?: string;
489
+ olderTimestampMs?: string;
490
+ newerTimestampMs?: string;
491
491
  paginationCursor?: PaginationCursor;
492
492
  }
493
493
  interface HistoricalReferralStats {
@@ -502,8 +502,8 @@ interface GetUserReferralStatsHistoryResponse {
502
502
  }
503
503
  interface GetUserTradeStatsHistoryRequest {
504
504
  userId: string;
505
- timestampStartMs?: string;
506
- timestampEndMs?: string;
505
+ olderTimestampMs?: string;
506
+ newerTimestampMs?: string;
507
507
  paginationCursor?: PaginationCursor;
508
508
  }
509
509
  interface HistoricalTradeStats {
@@ -528,8 +528,8 @@ interface GetUserTradeStatsHistoryResponse {
528
528
  }
529
529
  interface GetUserTransferHistoryRequest {
530
530
  userId: string;
531
- timestampStartMs?: string;
532
- timestampEndMs?: string;
531
+ olderTimestampMs?: string;
532
+ newerTimestampMs?: string;
533
533
  paginationCursor?: PaginationCursor;
534
534
  }
535
535
  interface HistoricalUserTransfer {
package/dist/index.d.ts CHANGED
@@ -196,8 +196,8 @@ declare enum ChartInterval {
196
196
  interface GetChartCandlesInRangeRequest {
197
197
  marketName: string;
198
198
  interval: ChartInterval;
199
- timestampStartMs?: string;
200
- timestampEndMs?: string;
199
+ olderTimestampMs?: string;
200
+ newerTimestampMs?: string;
201
201
  paginationCursor?: PaginationCursor;
202
202
  }
203
203
  interface GetChartCandlesInRangeResponse {
@@ -235,8 +235,8 @@ interface GetPerpOrderBookDataResponse {
235
235
  }
236
236
  interface GetPerpRecentTradesRequest {
237
237
  marketName: string;
238
- timestampStartMs?: string;
239
- timestampEndMs?: string;
238
+ olderTimestampMs?: string;
239
+ newerTimestampMs?: string;
240
240
  paginationCursor?: PaginationCursor;
241
241
  }
242
242
  declare enum OrderSide {
@@ -256,8 +256,8 @@ interface GetPerpRecentTradesResponse {
256
256
  interface GetPerpUserFillsRequest {
257
257
  userId: string;
258
258
  marketName?: string;
259
- timestampStartMs?: string;
260
- timestampEndMs?: string;
259
+ olderTimestampMs?: string;
260
+ newerTimestampMs?: string;
261
261
  paginationCursor?: PaginationCursor;
262
262
  }
263
263
  declare enum TradeRole {
@@ -287,8 +287,8 @@ interface GetPerpUserFillsResponse {
287
287
  interface GetPerpUserOrdersRequest {
288
288
  userId: string;
289
289
  marketName?: string;
290
- timestampStartMs?: string;
291
- timestampEndMs?: string;
290
+ olderTimestampMs?: string;
291
+ newerTimestampMs?: string;
292
292
  paginationCursor?: PaginationCursor;
293
293
  }
294
294
  declare enum OrderStatus {
@@ -371,8 +371,8 @@ interface GetUserAggregatedStatsResponse {
371
371
  }
372
372
  interface GetUserClaimedKickbackHistoryRequest {
373
373
  userId: string;
374
- timestampStartMs?: string;
375
- timestampEndMs?: string;
374
+ olderTimestampMs?: string;
375
+ newerTimestampMs?: string;
376
376
  paginationCursor?: PaginationCursor;
377
377
  }
378
378
  interface GetUserClaimedKickbackHistoryResponse {
@@ -381,8 +381,8 @@ interface GetUserClaimedKickbackHistoryResponse {
381
381
  }
382
382
  interface GetUserClaimedReferralKickbackHistoryRequest {
383
383
  userId: string;
384
- timestampStartMs?: string;
385
- timestampEndMs?: string;
384
+ olderTimestampMs?: string;
385
+ newerTimestampMs?: string;
386
386
  paginationCursor?: PaginationCursor;
387
387
  }
388
388
  interface GetUserClaimedReferralKickbackHistoryResponse {
@@ -452,8 +452,8 @@ interface GetUserDepositsResponse {
452
452
  interface GetUserFundingHistoryRequest {
453
453
  userId: string;
454
454
  marketName?: string;
455
- timestampStartMs?: string;
456
- timestampEndMs?: string;
455
+ olderTimestampMs?: string;
456
+ newerTimestampMs?: string;
457
457
  paginationCursor?: PaginationCursor;
458
458
  }
459
459
  interface HistoricalFunding {
@@ -471,8 +471,8 @@ interface GetUserFundingHistoryResponse {
471
471
  }
472
472
  interface GetUserPortfolioValueRequest {
473
473
  userId: string;
474
- timestampStartMs?: string;
475
- timestampEndMs?: string;
474
+ olderTimestampMs?: string;
475
+ newerTimestampMs?: string;
476
476
  paginationCursor?: PaginationCursor;
477
477
  }
478
478
  interface UserPortfolioValue {
@@ -486,8 +486,8 @@ interface GetUserPortfolioValueResponse {
486
486
  }
487
487
  interface GetUserReferralStatsHistoryRequest {
488
488
  userId: string;
489
- timestampStartMs?: string;
490
- timestampEndMs?: string;
489
+ olderTimestampMs?: string;
490
+ newerTimestampMs?: string;
491
491
  paginationCursor?: PaginationCursor;
492
492
  }
493
493
  interface HistoricalReferralStats {
@@ -502,8 +502,8 @@ interface GetUserReferralStatsHistoryResponse {
502
502
  }
503
503
  interface GetUserTradeStatsHistoryRequest {
504
504
  userId: string;
505
- timestampStartMs?: string;
506
- timestampEndMs?: string;
505
+ olderTimestampMs?: string;
506
+ newerTimestampMs?: string;
507
507
  paginationCursor?: PaginationCursor;
508
508
  }
509
509
  interface HistoricalTradeStats {
@@ -528,8 +528,8 @@ interface GetUserTradeStatsHistoryResponse {
528
528
  }
529
529
  interface GetUserTransferHistoryRequest {
530
530
  userId: string;
531
- timestampStartMs?: string;
532
- timestampEndMs?: string;
531
+ olderTimestampMs?: string;
532
+ newerTimestampMs?: string;
533
533
  paginationCursor?: PaginationCursor;
534
534
  }
535
535
  interface HistoricalUserTransfer {
package/dist/index.js CHANGED
@@ -1116,22 +1116,22 @@ var Client = class _Client {
1116
1116
  return response;
1117
1117
  };
1118
1118
  this.getUserPerpFills = async (request) => {
1119
- if (request.timestampEndMs && request.timestampStartMs && request.timestampEndMs > request.timestampStartMs) {
1120
- throw new Error("timestampEndMs must be lower than timestampStartMs");
1119
+ if (request.olderTimestampMs && request.newerTimestampMs && request.olderTimestampMs > request.newerTimestampMs) {
1120
+ throw new Error("olderTimestampMs must be lower than newerTimestampMs");
1121
1121
  }
1122
1122
  const response = await this.sendGetJson("/v1/get_user_perp_fills" /* GetUserPerpFills */, request);
1123
1123
  return response;
1124
1124
  };
1125
1125
  this.getUserPerpOrders = async (request) => {
1126
- if (request.timestampEndMs && request.timestampStartMs && request.timestampEndMs > request.timestampStartMs) {
1127
- throw new Error("timestampEndMs must be lower than timestampStartMs");
1126
+ if (request.olderTimestampMs && request.newerTimestampMs && request.olderTimestampMs > request.newerTimestampMs) {
1127
+ throw new Error("olderTimestampMs must be lower than newerTimestampMs");
1128
1128
  }
1129
1129
  const response = await this.sendGetJson("/v1/get_user_perp_orders" /* GetUserPerpOrders */, request);
1130
1130
  return response;
1131
1131
  };
1132
1132
  this.getUserFundingHistory = async (request) => {
1133
- if (request.timestampEndMs && request.timestampStartMs && request.timestampEndMs > request.timestampStartMs) {
1134
- throw new Error("timestampEndMs must be lower than timestampStartMs");
1133
+ if (request.olderTimestampMs && request.newerTimestampMs && request.olderTimestampMs > request.newerTimestampMs) {
1134
+ throw new Error("olderTimestampMs must be lower than newerTimestampMs");
1135
1135
  }
1136
1136
  const response = await this.sendGetJson("/v1/get_user_funding_history" /* GetUserFundingHistory */, request);
1137
1137
  return response;
@@ -1145,15 +1145,15 @@ var Client = class _Client {
1145
1145
  return response;
1146
1146
  };
1147
1147
  this.getUserPortfolioValueHistory = async (request) => {
1148
- if (request.timestampEndMs && request.timestampStartMs && request.timestampEndMs > request.timestampStartMs) {
1149
- throw new Error("timestampEndMs must be lower than timestampStartMs");
1148
+ if (request.olderTimestampMs && request.newerTimestampMs && request.olderTimestampMs > request.newerTimestampMs) {
1149
+ throw new Error("olderTimestampMs must be lower than newerTimestampMs");
1150
1150
  }
1151
1151
  const response = await this.sendGetJson("/v1/get_user_portfolio_value" /* GetUserPortfolioValue */, request);
1152
1152
  return response;
1153
1153
  };
1154
1154
  this.getUserTradeStatsHistory = async (request) => {
1155
- if (request.timestampEndMs && request.timestampStartMs && request.timestampEndMs > request.timestampStartMs) {
1156
- throw new Error("timestampEndMs must be lower than timestampStartMs");
1155
+ if (request.olderTimestampMs && request.newerTimestampMs && request.olderTimestampMs > request.newerTimestampMs) {
1156
+ throw new Error("olderTimestampMs must be lower than newerTimestampMs");
1157
1157
  }
1158
1158
  const response = await this.sendGetJson("/v1/get_user_trade_stats" /* GetUserTradeStats */, request);
1159
1159
  return response;
@@ -1163,8 +1163,8 @@ var Client = class _Client {
1163
1163
  return response;
1164
1164
  };
1165
1165
  this.getUserReferralStatsHistory = async (request) => {
1166
- if (request.timestampEndMs && request.timestampStartMs && request.timestampEndMs > request.timestampStartMs) {
1167
- throw new Error("timestampEndMs must be lower than timestampStartMs");
1166
+ if (request.olderTimestampMs && request.newerTimestampMs && request.olderTimestampMs > request.newerTimestampMs) {
1167
+ throw new Error("olderTimestampMs must be lower than newerTimestampMs");
1168
1168
  }
1169
1169
  const response = await this.sendGetJson("/v1/get_user_referral_stats" /* GetUserReferralStats */, request);
1170
1170
  return response;
@@ -1174,22 +1174,22 @@ var Client = class _Client {
1174
1174
  return response;
1175
1175
  };
1176
1176
  this.getUserClaimedKickbackHistory = async (request) => {
1177
- if (request.timestampEndMs && request.timestampStartMs && request.timestampEndMs > request.timestampStartMs) {
1178
- throw new Error("timestampEndMs must be lower than timestampStartMs");
1177
+ if (request.olderTimestampMs && request.newerTimestampMs && request.olderTimestampMs > request.newerTimestampMs) {
1178
+ throw new Error("olderTimestampMs must be lower than newerTimestampMs");
1179
1179
  }
1180
1180
  const response = await this.sendGetJson("/v1/get_user_claimed_kickback" /* GetUserClaimedKickback */, request);
1181
1181
  return response;
1182
1182
  };
1183
1183
  this.getUserClaimedReferralKickbackHistory = async (request) => {
1184
- if (request.timestampEndMs && request.timestampStartMs && request.timestampEndMs > request.timestampStartMs) {
1185
- throw new Error("timestampEndMs must be lower than timestampStartMs");
1184
+ if (request.olderTimestampMs && request.newerTimestampMs && request.olderTimestampMs > request.newerTimestampMs) {
1185
+ throw new Error("olderTimestampMs must be lower than newerTimestampMs");
1186
1186
  }
1187
1187
  const response = await this.sendGetJson("/v1/get_user_claimed_referral" /* GetUserClaimedReferral */, request);
1188
1188
  return response;
1189
1189
  };
1190
1190
  this.getUserTransfersHistory = async (request) => {
1191
- if (request.timestampEndMs && request.timestampStartMs && request.timestampEndMs > request.timestampStartMs) {
1192
- throw new Error("timestampEndMs must be lower than timestampStartMs");
1191
+ if (request.olderTimestampMs && request.newerTimestampMs && request.olderTimestampMs > request.newerTimestampMs) {
1192
+ throw new Error("olderTimestampMs must be lower than newerTimestampMs");
1193
1193
  }
1194
1194
  const response = await this.sendGetJson("/v1/get_user_transfers" /* GetUserTransfers */, request);
1195
1195
  return response;
@@ -1204,7 +1204,7 @@ var Client = class _Client {
1204
1204
  this._surf = createSurfClient(this._aptos);
1205
1205
  this._apiKey = apiKey || generateApiKey();
1206
1206
  this._subscriptions = /* @__PURE__ */ new Map();
1207
- this._serverUrl = url || "https://api.dev.nightly.exchange";
1207
+ this._serverUrl = url || "https://api.dev.neony.exchange";
1208
1208
  this._sequenceNumberManager = new AccountSequenceNumber(this._aptos, this._apiKey);
1209
1209
  if (enableWs) {
1210
1210
  this.connectWebSocket();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nightlylabs/dex-sdk",
3
- "version": "0.0.90",
3
+ "version": "0.0.92",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {