@uniswap/client-data-api 0.0.148 → 0.0.149
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.
|
@@ -323,8 +323,8 @@ export declare enum LaunchesOrderBy {
|
|
|
323
323
|
}
|
|
324
324
|
/**
|
|
325
325
|
* Launch-recency window for ListLaunches. UNSPECIFIED applies no window (all
|
|
326
|
-
* launches); LAST_24H
|
|
327
|
-
* trailing 24 hours.
|
|
326
|
+
* launches); LAST_24H / LAST_1H keep only launches whose launched_at is within
|
|
327
|
+
* the trailing 24 hours / 1 hour respectively.
|
|
328
328
|
*
|
|
329
329
|
* @generated from enum data.v2.LaunchWindow
|
|
330
330
|
*/
|
|
@@ -336,7 +336,11 @@ export declare enum LaunchWindow {
|
|
|
336
336
|
/**
|
|
337
337
|
* @generated from enum value: LAUNCH_WINDOW_LAST_24H = 1;
|
|
338
338
|
*/
|
|
339
|
-
LAST_24H = 1
|
|
339
|
+
LAST_24H = 1,
|
|
340
|
+
/**
|
|
341
|
+
* @generated from enum value: LAUNCH_WINDOW_LAST_1H = 2;
|
|
342
|
+
*/
|
|
343
|
+
LAST_1H = 2
|
|
340
344
|
}
|
|
341
345
|
/**
|
|
342
346
|
* The trade's direction from the trader's perspective: BUY = the trader
|
|
@@ -1313,7 +1317,7 @@ export declare class Launchpad extends Message<Launchpad> {
|
|
|
1313
1317
|
static equals(a: Launchpad | PlainMessage<Launchpad> | undefined, b: Launchpad | PlainMessage<Launchpad> | undefined): boolean;
|
|
1314
1318
|
}
|
|
1315
1319
|
/**
|
|
1316
|
-
* Optional filters for ListLaunches. When window is
|
|
1320
|
+
* Optional filters for ListLaunches. When a window is set and sort_by is
|
|
1317
1321
|
* UNSPECIFIED the server sorts by 24h volume (VOLUME_1D).
|
|
1318
1322
|
*
|
|
1319
1323
|
* @generated from message data.v2.LaunchListFilter
|
package/dist/data/v2/types_pb.js
CHANGED
|
@@ -419,8 +419,8 @@ proto3.util.setEnumType(LaunchesOrderBy, "data.v2.LaunchesOrderBy", [
|
|
|
419
419
|
]);
|
|
420
420
|
/**
|
|
421
421
|
* Launch-recency window for ListLaunches. UNSPECIFIED applies no window (all
|
|
422
|
-
* launches); LAST_24H
|
|
423
|
-
* trailing 24 hours.
|
|
422
|
+
* launches); LAST_24H / LAST_1H keep only launches whose launched_at is within
|
|
423
|
+
* the trailing 24 hours / 1 hour respectively.
|
|
424
424
|
*
|
|
425
425
|
* @generated from enum data.v2.LaunchWindow
|
|
426
426
|
*/
|
|
@@ -434,11 +434,16 @@ export var LaunchWindow;
|
|
|
434
434
|
* @generated from enum value: LAUNCH_WINDOW_LAST_24H = 1;
|
|
435
435
|
*/
|
|
436
436
|
LaunchWindow[LaunchWindow["LAST_24H"] = 1] = "LAST_24H";
|
|
437
|
+
/**
|
|
438
|
+
* @generated from enum value: LAUNCH_WINDOW_LAST_1H = 2;
|
|
439
|
+
*/
|
|
440
|
+
LaunchWindow[LaunchWindow["LAST_1H"] = 2] = "LAST_1H";
|
|
437
441
|
})(LaunchWindow || (LaunchWindow = {}));
|
|
438
442
|
// Retrieve enum metadata with: proto3.getEnumType(LaunchWindow)
|
|
439
443
|
proto3.util.setEnumType(LaunchWindow, "data.v2.LaunchWindow", [
|
|
440
444
|
{ no: 0, name: "LAUNCH_WINDOW_UNSPECIFIED" },
|
|
441
445
|
{ no: 1, name: "LAUNCH_WINDOW_LAST_24H" },
|
|
446
|
+
{ no: 2, name: "LAUNCH_WINDOW_LAST_1H" },
|
|
442
447
|
]);
|
|
443
448
|
/**
|
|
444
449
|
* The trade's direction from the trader's perspective: BUY = the trader
|
|
@@ -1525,7 +1530,7 @@ Launchpad.fields = proto3.util.newFieldList(() => [
|
|
|
1525
1530
|
{ no: 4, name: "protocol", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1526
1531
|
]);
|
|
1527
1532
|
/**
|
|
1528
|
-
* Optional filters for ListLaunches. When window is
|
|
1533
|
+
* Optional filters for ListLaunches. When a window is set and sort_by is
|
|
1529
1534
|
* UNSPECIFIED the server sorts by 24h volume (VOLUME_1D).
|
|
1530
1535
|
*
|
|
1531
1536
|
* @generated from message data.v2.LaunchListFilter
|