@reserve-protocol/sdk 0.1.4 → 0.1.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.
Files changed (2) hide show
  1. package/dist/index.d.mts +6 -6
  2. package/package.json +2 -2
package/dist/index.d.mts CHANGED
@@ -35681,8 +35681,8 @@ declare const indexDtfBasketTokenSchema: z.ZodObject<{
35681
35681
  priceError: z.ZodOptional<z.ZodNumber>;
35682
35682
  priceVolatility: z.ZodOptional<z.ZodEnum<{
35683
35683
  low: "low";
35684
- high: "high";
35685
35684
  medium: "medium";
35685
+ high: "high";
35686
35686
  degen: "degen";
35687
35687
  }>>;
35688
35688
  maxAuctionSizeUsd: z.ZodOptional<z.ZodNumber>;
@@ -35696,8 +35696,8 @@ declare const indexDtfBasketSharesSchema: z.ZodObject<{
35696
35696
  priceError: z.ZodOptional<z.ZodNumber>;
35697
35697
  priceVolatility: z.ZodOptional<z.ZodEnum<{
35698
35698
  low: "low";
35699
- high: "high";
35700
35699
  medium: "medium";
35700
+ high: "high";
35701
35701
  degen: "degen";
35702
35702
  }>>;
35703
35703
  maxAuctionSizeUsd: z.ZodOptional<z.ZodNumber>;
@@ -35713,8 +35713,8 @@ declare const indexDtfBasketUnitsSchema: z.ZodObject<{
35713
35713
  priceError: z.ZodOptional<z.ZodNumber>;
35714
35714
  priceVolatility: z.ZodOptional<z.ZodEnum<{
35715
35715
  low: "low";
35716
- high: "high";
35717
35716
  medium: "medium";
35717
+ high: "high";
35718
35718
  degen: "degen";
35719
35719
  }>>;
35720
35720
  maxAuctionSizeUsd: z.ZodOptional<z.ZodNumber>;
@@ -35730,8 +35730,8 @@ declare const indexDtfBasketSchema: z.ZodUnion<readonly [z.ZodObject<{
35730
35730
  priceError: z.ZodOptional<z.ZodNumber>;
35731
35731
  priceVolatility: z.ZodOptional<z.ZodEnum<{
35732
35732
  low: "low";
35733
- high: "high";
35734
35733
  medium: "medium";
35734
+ high: "high";
35735
35735
  degen: "degen";
35736
35736
  }>>;
35737
35737
  maxAuctionSizeUsd: z.ZodOptional<z.ZodNumber>;
@@ -35746,8 +35746,8 @@ declare const indexDtfBasketSchema: z.ZodUnion<readonly [z.ZodObject<{
35746
35746
  priceError: z.ZodOptional<z.ZodNumber>;
35747
35747
  priceVolatility: z.ZodOptional<z.ZodEnum<{
35748
35748
  low: "low";
35749
- high: "high";
35750
35749
  medium: "medium";
35750
+ high: "high";
35751
35751
  degen: "degen";
35752
35752
  }>>;
35753
35753
  maxAuctionSizeUsd: z.ZodOptional<z.ZodNumber>;
@@ -85675,7 +85675,7 @@ declare function createIndexDtfNamespace(client: DtfClient): {
85675
85675
  getPrices: (params: Parameters<typeof getPrices>[1]) => Promise<readonly IndexDtfBatchPrice[]>;
85676
85676
  getPriceHistory: (params: GetIndexDtfPriceHistoryParams) => Promise<readonly IndexDtfPricePoint[]>;
85677
85677
  getStatus: (params: Parameters<typeof getIndexDtfStatus>[1]) => Promise<DtfStatus>;
85678
- getStatuses: (params?: Parameters<typeof getIndexDtfStatuses>[1]) => Promise<readonly Pick<IndexDtfDiscoveryItem, "chainId" | "address" | "status">[]>;
85678
+ getStatuses: (params?: Parameters<typeof getIndexDtfStatuses>[1]) => Promise<readonly Pick<IndexDtfDiscoveryItem, "address" | "chainId" | "status">[]>;
85679
85679
  getExposure: (params: Parameters<typeof getIndexDtfExposure>[1]) => Promise<readonly IndexDtfExposureGroup[]>;
85680
85680
  getHolders: (params: Parameters<typeof getIndexDtfHolders>[1]) => Promise<IndexDtfHolders>;
85681
85681
  getTransactions: (params: Parameters<typeof getIndexDtfTransactions>[1]) => Promise<readonly IndexDtfTransaction[]>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reserve-protocol/sdk",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Core TypeScript SDK for DTF interface integrations.",
5
5
  "keywords": [
6
6
  "dtf",
@@ -40,7 +40,7 @@
40
40
  "graphql-request": "^7.4.0",
41
41
  "viem": "^2.48.8",
42
42
  "zod": "^4.4.2",
43
- "@reserve-protocol/dtf-catalog": "0.0.1"
43
+ "@reserve-protocol/dtf-catalog": "0.0.2"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@graphql-codegen/cli": "^6.3.1",