@crypticdot/defituna-api 1.10.4 → 1.10.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/index.d.mts CHANGED
@@ -40,6 +40,7 @@ declare const LimitOrderStateSchema: z.ZodEnum<{
40
40
  }>;
41
41
  declare const LimitOrder$1: z.ZodObject<{
42
42
  address: z.ZodString;
43
+ orderMint: z.ZodString;
43
44
  mintA: z.ZodObject<{
44
45
  mint: z.ZodString;
45
46
  symbol: z.ZodString;
@@ -1177,6 +1178,7 @@ declare const StateSnapshot$1: z$1.ZodObject<{
1177
1178
  }, z$1.core.$strip>>>;
1178
1179
  fusionLimitOrders: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
1179
1180
  address: z$1.ZodString;
1181
+ orderMint: z$1.ZodString;
1180
1182
  mintA: z$1.ZodObject<{
1181
1183
  mint: z$1.ZodString;
1182
1184
  symbol: z$1.ZodString;
@@ -2670,6 +2672,7 @@ declare const StateSnapshotNotification: z.ZodObject<{
2670
2672
  }, z.core.$strip>>>;
2671
2673
  fusionLimitOrders: z.ZodOptional<z.ZodArray<z.ZodObject<{
2672
2674
  address: z.ZodString;
2675
+ orderMint: z.ZodString;
2673
2676
  mintA: z.ZodObject<{
2674
2677
  mint: z.ZodString;
2675
2678
  symbol: z.ZodString;
@@ -2938,6 +2941,7 @@ declare const StateSnapshotNotification: z.ZodObject<{
2938
2941
  }, z.core.$strip>>>;
2939
2942
  fusionLimitOrders: z.ZodOptional<z.ZodArray<z.ZodObject<{
2940
2943
  address: z.ZodString;
2944
+ orderMint: z.ZodString;
2941
2945
  mintA: z.ZodObject<{
2942
2946
  mint: z.ZodString;
2943
2947
  symbol: z.ZodString;
package/dist/index.d.ts CHANGED
@@ -40,6 +40,7 @@ declare const LimitOrderStateSchema: z.ZodEnum<{
40
40
  }>;
41
41
  declare const LimitOrder$1: z.ZodObject<{
42
42
  address: z.ZodString;
43
+ orderMint: z.ZodString;
43
44
  mintA: z.ZodObject<{
44
45
  mint: z.ZodString;
45
46
  symbol: z.ZodString;
@@ -1177,6 +1178,7 @@ declare const StateSnapshot$1: z$1.ZodObject<{
1177
1178
  }, z$1.core.$strip>>>;
1178
1179
  fusionLimitOrders: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
1179
1180
  address: z$1.ZodString;
1181
+ orderMint: z$1.ZodString;
1180
1182
  mintA: z$1.ZodObject<{
1181
1183
  mint: z$1.ZodString;
1182
1184
  symbol: z$1.ZodString;
@@ -2670,6 +2672,7 @@ declare const StateSnapshotNotification: z.ZodObject<{
2670
2672
  }, z.core.$strip>>>;
2671
2673
  fusionLimitOrders: z.ZodOptional<z.ZodArray<z.ZodObject<{
2672
2674
  address: z.ZodString;
2675
+ orderMint: z.ZodString;
2673
2676
  mintA: z.ZodObject<{
2674
2677
  mint: z.ZodString;
2675
2678
  symbol: z.ZodString;
@@ -2938,6 +2941,7 @@ declare const StateSnapshotNotification: z.ZodObject<{
2938
2941
  }, z.core.$strip>>>;
2939
2942
  fusionLimitOrders: z.ZodOptional<z.ZodArray<z.ZodObject<{
2940
2943
  address: z.ZodString;
2944
+ orderMint: z.ZodString;
2941
2945
  mintA: z.ZodObject<{
2942
2946
  mint: z.ZodString;
2943
2947
  symbol: z.ZodString;
package/dist/index.js CHANGED
@@ -222,6 +222,7 @@ var LimitOrderState = {
222
222
  var LimitOrderStateSchema = import_zod4.z.enum([LimitOrderState.OPEN, ...Object.values(LimitOrderState)]);
223
223
  var LimitOrder = import_zod4.z.object({
224
224
  address: import_zod4.z.string(),
225
+ orderMint: import_zod4.z.string(),
225
226
  mintA: Mint,
226
227
  mintB: Mint,
227
228
  pool: TunaPositionPoolSchema,
package/dist/index.mjs CHANGED
@@ -185,6 +185,7 @@ var LimitOrderState = {
185
185
  var LimitOrderStateSchema = z4.enum([LimitOrderState.OPEN, ...Object.values(LimitOrderState)]);
186
186
  var LimitOrder = z4.object({
187
187
  address: z4.string(),
188
+ orderMint: z4.string(),
188
189
  mintA: Mint,
189
190
  mintB: Mint,
190
191
  pool: TunaPositionPoolSchema,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crypticdot/defituna-api",
3
- "version": "1.10.4",
3
+ "version": "1.10.5",
4
4
  "private": false,
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",