@keystrokehq/nasdaq 0.1.0 → 0.1.2

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 (61) hide show
  1. package/dist/action.cjs.map +1 -1
  2. package/dist/action.mjs.map +1 -1
  3. package/dist/actions/get-analyst-ratings.cjs.map +1 -1
  4. package/dist/actions/get-analyst-ratings.d.cts +67 -3
  5. package/dist/actions/get-analyst-ratings.d.cts.map +1 -1
  6. package/dist/actions/get-analyst-ratings.d.mts +67 -3
  7. package/dist/actions/get-analyst-ratings.d.mts.map +1 -1
  8. package/dist/actions/get-analyst-ratings.mjs.map +1 -1
  9. package/dist/actions/get-datatable-metadata.cjs +5 -5
  10. package/dist/actions/get-datatable-metadata.cjs.map +1 -1
  11. package/dist/actions/get-datatable-metadata.d.cts +27 -3
  12. package/dist/actions/get-datatable-metadata.d.cts.map +1 -1
  13. package/dist/actions/get-datatable-metadata.d.mts +27 -3
  14. package/dist/actions/get-datatable-metadata.d.mts.map +1 -1
  15. package/dist/actions/get-datatable-metadata.mjs +5 -5
  16. package/dist/actions/get-datatable-metadata.mjs.map +1 -1
  17. package/dist/actions/get-datatable.cjs +1 -1
  18. package/dist/actions/get-datatable.cjs.map +1 -1
  19. package/dist/actions/get-datatable.d.cts +18 -3
  20. package/dist/actions/get-datatable.d.cts.map +1 -1
  21. package/dist/actions/get-datatable.d.mts +18 -3
  22. package/dist/actions/get-datatable.d.mts.map +1 -1
  23. package/dist/actions/get-datatable.mjs +1 -1
  24. package/dist/actions/get-datatable.mjs.map +1 -1
  25. package/dist/actions/get-dividend-history.cjs +2 -2
  26. package/dist/actions/get-dividend-history.cjs.map +1 -1
  27. package/dist/actions/get-dividend-history.d.cts +22 -3
  28. package/dist/actions/get-dividend-history.d.cts.map +1 -1
  29. package/dist/actions/get-dividend-history.d.mts +22 -3
  30. package/dist/actions/get-dividend-history.d.mts.map +1 -1
  31. package/dist/actions/get-dividend-history.mjs +2 -2
  32. package/dist/actions/get-dividend-history.mjs.map +1 -1
  33. package/dist/actions/get-real-time-quote.cjs.map +1 -1
  34. package/dist/actions/get-real-time-quote.d.cts +28 -3
  35. package/dist/actions/get-real-time-quote.d.cts.map +1 -1
  36. package/dist/actions/get-real-time-quote.d.mts +28 -3
  37. package/dist/actions/get-real-time-quote.d.mts.map +1 -1
  38. package/dist/actions/get-real-time-quote.mjs.map +1 -1
  39. package/dist/actions/get-table-row.cjs +2 -2
  40. package/dist/actions/get-table-row.cjs.map +1 -1
  41. package/dist/actions/get-table-row.d.cts +24 -3
  42. package/dist/actions/get-table-row.d.cts.map +1 -1
  43. package/dist/actions/get-table-row.d.mts +24 -3
  44. package/dist/actions/get-table-row.d.mts.map +1 -1
  45. package/dist/actions/get-table-row.mjs +2 -2
  46. package/dist/actions/get-table-row.mjs.map +1 -1
  47. package/dist/actions/get-tables-by-date.cjs +7 -7
  48. package/dist/actions/get-tables-by-date.cjs.map +1 -1
  49. package/dist/actions/get-tables-by-date.d.cts +18 -3
  50. package/dist/actions/get-tables-by-date.d.cts.map +1 -1
  51. package/dist/actions/get-tables-by-date.d.mts +18 -3
  52. package/dist/actions/get-tables-by-date.d.mts.map +1 -1
  53. package/dist/actions/get-tables-by-date.mjs +7 -7
  54. package/dist/actions/get-tables-by-date.mjs.map +1 -1
  55. package/dist/catalog.cjs +7 -1
  56. package/dist/catalog.cjs.map +1 -1
  57. package/dist/catalog.d.cts +8 -0
  58. package/dist/catalog.d.mts +8 -0
  59. package/dist/catalog.mjs +7 -1
  60. package/dist/catalog.mjs.map +1 -1
  61. package/package.json +2 -2
@@ -1,9 +1,24 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/get-tables-by-date.d.ts
4
- declare const NasdaqGetTablesByDateInput: z.ZodTypeAny;
5
- declare const NasdaqGetTablesByDateOutput: z.ZodTypeAny;
6
- declare const nasdaqGetTablesByDate: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const NasdaqGetTablesByDateInput: z.ZodObject<{
5
+ target_date: z.ZodString;
6
+ }, z.core.$strip>;
7
+ declare const NasdaqGetTablesByDateOutput: z.ZodObject<{
8
+ tables: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
9
+ id: z.ZodNullable<z.ZodNumber>;
10
+ name: z.ZodNullable<z.ZodString>;
11
+ premium: z.ZodNullable<z.ZodBoolean>;
12
+ updated_at: z.ZodNullable<z.ZodString>;
13
+ description: z.ZodNullable<z.ZodString>;
14
+ vendor_code: z.ZodNullable<z.ZodString>;
15
+ datatable_code: z.ZodNullable<z.ZodString>;
16
+ }, z.core.$strip>>>>;
17
+ message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18
+ }, z.core.$strip>;
19
+ declare const nasdaqGetTablesByDate: import("@keystrokehq/action").WorkflowActionDefinition<{
20
+ target_date: string;
21
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
22
  //#endregion
8
23
  export { nasdaqGetTablesByDate };
9
24
  //# sourceMappingURL=get-tables-by-date.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-tables-by-date.d.mts","names":[],"sources":["../../src/actions/get-tables-by-date.ts"],"mappings":";;;cAIa,0BAAA,EAA4B,CAAA,CAAE,UAEzC;AAAA,cAUW,2BAAA,EAA6B,CAAA,CAAE,UAG1C;AAAA,cAEW,qBAAA,gCAAqB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-tables-by-date.d.mts","names":[],"sources":["../../src/actions/get-tables-by-date.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;cAY1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;;;cAK3B,qBAAA,gCAAqB,wBAAA"}
@@ -3,13 +3,13 @@ import { z } from "zod";
3
3
  //#region src/actions/get-tables-by-date.ts
4
4
  const NasdaqGetTablesByDateInput = z.object({ target_date: z.string().describe("The target date to filter tables by, in YYYY-MM-DD format.") });
5
5
  const NasdaqGetTablesByDate_DatatableDetailSchema = z.object({
6
- id: z.number().int().describe("The unique ID of the datatable."),
7
- name: z.string().describe("The name of the datatable."),
8
- premium: z.boolean().describe("Indicates if the datatable is a premium offering."),
9
- updated_at: z.string().describe("The timestamp of when the datatable was last updated."),
10
- description: z.string().describe("A description of the datatable."),
11
- vendor_code: z.string().describe("The vendor code for the datatable."),
12
- datatable_code: z.string().describe("The code for the datatable.")
6
+ id: z.number().int().describe("The unique ID of the datatable.").nullable(),
7
+ name: z.string().describe("The name of the datatable.").nullable(),
8
+ premium: z.boolean().describe("Indicates if the datatable is a premium offering.").nullable(),
9
+ updated_at: z.string().describe("The timestamp of when the datatable was last updated.").nullable(),
10
+ description: z.string().describe("A description of the datatable.").nullable(),
11
+ vendor_code: z.string().describe("The vendor code for the datatable.").nullable(),
12
+ datatable_code: z.string().describe("The code for the datatable.").nullable()
13
13
  });
14
14
  const nasdaqGetTablesByDate = action("NASDAQ_GET_TABLES_BY_DATE", {
15
15
  slug: "nasdaq-get-tables-by-date",
@@ -1 +1 @@
1
- {"version":3,"file":"get-tables-by-date.mjs","names":[],"sources":["../../src/actions/get-tables-by-date.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const NasdaqGetTablesByDateInput: z.ZodTypeAny = z.object({\n target_date: z.string().describe(\"The target date to filter tables by, in YYYY-MM-DD format.\"),\n});\nconst NasdaqGetTablesByDate_DatatableDetailSchema: z.ZodTypeAny = z.object({\n id: z.number().int().describe(\"The unique ID of the datatable.\"),\n name: z.string().describe(\"The name of the datatable.\"),\n premium: z.boolean().describe(\"Indicates if the datatable is a premium offering.\"),\n updated_at: z.string().describe(\"The timestamp of when the datatable was last updated.\"),\n description: z.string().describe(\"A description of the datatable.\"),\n vendor_code: z.string().describe(\"The vendor code for the datatable.\"),\n datatable_code: z.string().describe(\"The code for the datatable.\"),\n});\nexport const NasdaqGetTablesByDateOutput: z.ZodTypeAny = z.object({\n tables: z.array(NasdaqGetTablesByDate_DatatableDetailSchema).describe(\"A list of tables updated on the specified date.\").nullable().optional(),\n message: z.string().describe(\"A message indicating the outcome, e.g., if no tables were found.\").nullable().optional(),\n});\n\nexport const nasdaqGetTablesByDate = action(\"NASDAQ_GET_TABLES_BY_DATE\", {\n slug: \"nasdaq-get-tables-by-date\",\n name: \"Get Datatables Updated on Specific Date\",\n description: \"Retrieves Nasdaq Data Link datatables (databases) that were last updated on a specific date. This action fetches all available datatables from Nasdaq Data Link's catalog and filters them by their last update timestamp to return only those updated on the target date. Useful for discovering recently updated data sources.\",\n input: NasdaqGetTablesByDateInput,\n output: NasdaqGetTablesByDateOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA2C,EAAE,OAAO,EAC/D,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D,EAC/F,CAAC;AACD,MAAM,8CAA4D,EAAE,OAAO;CACzE,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iCAAiC;CAC/D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B;CACtD,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,mDAAmD;CACjF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD;CACvF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC;CAClE,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC;CACrE,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B;AACnE,CAAC;AAMD,MAAa,wBAAwB,OAAO,6BAA6B;CACvE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAVuD,EAAE,OAAO;EAChE,QAAQ,EAAE,MAAM,2CAA2C,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC7I,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,kEAAkE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvH,CAOU;AACV,CAAC"}
1
+ {"version":3,"file":"get-tables-by-date.mjs","names":[],"sources":["../../src/actions/get-tables-by-date.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const NasdaqGetTablesByDateInput = z.object({\n target_date: z.string().describe(\"The target date to filter tables by, in YYYY-MM-DD format.\"),\n});\nconst NasdaqGetTablesByDate_DatatableDetailSchema = z.object({\n id: z.number().int().describe(\"The unique ID of the datatable.\").nullable(),\n name: z.string().describe(\"The name of the datatable.\").nullable(),\n premium: z.boolean().describe(\"Indicates if the datatable is a premium offering.\").nullable(),\n updated_at: z.string().describe(\"The timestamp of when the datatable was last updated.\").nullable(),\n description: z.string().describe(\"A description of the datatable.\").nullable(),\n vendor_code: z.string().describe(\"The vendor code for the datatable.\").nullable(),\n datatable_code: z.string().describe(\"The code for the datatable.\").nullable(),\n});\nexport const NasdaqGetTablesByDateOutput = z.object({\n tables: z.array(NasdaqGetTablesByDate_DatatableDetailSchema).describe(\"A list of tables updated on the specified date.\").nullable().optional(),\n message: z.string().describe(\"A message indicating the outcome, e.g., if no tables were found.\").nullable().optional(),\n});\n\nexport const nasdaqGetTablesByDate = action(\"NASDAQ_GET_TABLES_BY_DATE\", {\n slug: \"nasdaq-get-tables-by-date\",\n name: \"Get Datatables Updated on Specific Date\",\n description: \"Retrieves Nasdaq Data Link datatables (databases) that were last updated on a specific date. This action fetches all available datatables from Nasdaq Data Link's catalog and filters them by their last update timestamp to return only those updated on the target date. Useful for discovering recently updated data sources.\",\n input: NasdaqGetTablesByDateInput,\n output: NasdaqGetTablesByDateOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6B,EAAE,OAAO,EACjD,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D,EAC/F,CAAC;AACD,MAAM,8CAA8C,EAAE,OAAO;CAC3D,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;CAC1E,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;CACjE,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;CAC5F,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS;CAClG,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;CAC7E,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CAChF,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;AAC9E,CAAC;AAMD,MAAa,wBAAwB,OAAO,6BAA6B;CACvE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAVyC,EAAE,OAAO;EAClD,QAAQ,EAAE,MAAM,2CAA2C,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC7I,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,kEAAkE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvH,CAOU;AACV,CAAC"}
package/dist/catalog.cjs CHANGED
@@ -7,7 +7,13 @@ const nasdaqCatalog = {
7
7
  "category": "Analytics",
8
8
  "logo": "https://logos.composio.dev/api/nasdaq",
9
9
  "authKind": "keystroke",
10
- "oauthScopes": []
10
+ "oauthScopes": [],
11
+ "credentialFields": { "api_key": {
12
+ "label": "Nasdaq Data Link API Key",
13
+ "secret": true,
14
+ "description": "Your Nasdaq Data Link API key. You can find this key by logging into your Nasdaq Data Link account and going to your account settings."
15
+ } },
16
+ "credentialScheme": "API_KEY"
11
17
  };
12
18
  //#endregion
13
19
  exports.nasdaqCatalog = nasdaqCatalog;
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const nasdaqCatalog = {\n \"slug\": \"nasdaq\",\n \"name\": \"Nasdaq\",\n \"description\": \"Nasdaq Data Link is a cloud-based financial data platform providing access to curated premium and free datasets including equity prices, company fundamentals, earnings estimates, options data, forex rates, and economic indicators through REST and Streaming APIs, with integrations for Python, R, Excel, and SQL.\",\n \"category\": \"Analytics\",\n \"logo\": \"https://logos.composio.dev/api/nasdaq\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,gBAAgB;CAC3B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
1
+ {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const nasdaqCatalog = {\n \"slug\": \"nasdaq\",\n \"name\": \"Nasdaq\",\n \"description\": \"Nasdaq Data Link is a cloud-based financial data platform providing access to curated premium and free datasets including equity prices, company fundamentals, earnings estimates, options data, forex rates, and economic indicators through REST and Streaming APIs, with integrations for Python, R, Excel, and SQL.\",\n \"category\": \"Analytics\",\n \"logo\": \"https://logos.composio.dev/api/nasdaq\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"Nasdaq Data Link API Key\",\n \"secret\": true,\n \"description\": \"Your Nasdaq Data Link API key. You can find this key by logging into your Nasdaq Data Link account and going to your account settings.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,gBAAgB;CAC3B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
@@ -8,6 +8,14 @@ declare const nasdaqCatalog: {
8
8
  readonly logo: "https://logos.composio.dev/api/nasdaq";
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
+ readonly credentialFields: {
12
+ readonly api_key: {
13
+ readonly label: "Nasdaq Data Link API Key";
14
+ readonly secret: true;
15
+ readonly description: "Your Nasdaq Data Link API key. You can find this key by logging into your Nasdaq Data Link account and going to your account settings.";
16
+ };
17
+ };
18
+ readonly credentialScheme: "API_KEY";
11
19
  };
12
20
  //#endregion
13
21
  export { nasdaqCatalog };
@@ -8,6 +8,14 @@ declare const nasdaqCatalog: {
8
8
  readonly logo: "https://logos.composio.dev/api/nasdaq";
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
+ readonly credentialFields: {
12
+ readonly api_key: {
13
+ readonly label: "Nasdaq Data Link API Key";
14
+ readonly secret: true;
15
+ readonly description: "Your Nasdaq Data Link API key. You can find this key by logging into your Nasdaq Data Link account and going to your account settings.";
16
+ };
17
+ };
18
+ readonly credentialScheme: "API_KEY";
11
19
  };
12
20
  //#endregion
13
21
  export { nasdaqCatalog };
package/dist/catalog.mjs CHANGED
@@ -7,7 +7,13 @@ const nasdaqCatalog = {
7
7
  "category": "Analytics",
8
8
  "logo": "https://logos.composio.dev/api/nasdaq",
9
9
  "authKind": "keystroke",
10
- "oauthScopes": []
10
+ "oauthScopes": [],
11
+ "credentialFields": { "api_key": {
12
+ "label": "Nasdaq Data Link API Key",
13
+ "secret": true,
14
+ "description": "Your Nasdaq Data Link API key. You can find this key by logging into your Nasdaq Data Link account and going to your account settings."
15
+ } },
16
+ "credentialScheme": "API_KEY"
11
17
  };
12
18
  //#endregion
13
19
  export { nasdaqCatalog };
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const nasdaqCatalog = {\n \"slug\": \"nasdaq\",\n \"name\": \"Nasdaq\",\n \"description\": \"Nasdaq Data Link is a cloud-based financial data platform providing access to curated premium and free datasets including equity prices, company fundamentals, earnings estimates, options data, forex rates, and economic indicators through REST and Streaming APIs, with integrations for Python, R, Excel, and SQL.\",\n \"category\": \"Analytics\",\n \"logo\": \"https://logos.composio.dev/api/nasdaq\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,gBAAgB;CAC3B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
1
+ {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const nasdaqCatalog = {\n \"slug\": \"nasdaq\",\n \"name\": \"Nasdaq\",\n \"description\": \"Nasdaq Data Link is a cloud-based financial data platform providing access to curated premium and free datasets including equity prices, company fundamentals, earnings estimates, options data, forex rates, and economic indicators through REST and Streaming APIs, with integrations for Python, R, Excel, and SQL.\",\n \"category\": \"Analytics\",\n \"logo\": \"https://logos.composio.dev/api/nasdaq\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"Nasdaq Data Link API Key\",\n \"secret\": true,\n \"description\": \"Your Nasdaq Data Link API key. You can find this key by logging into your Nasdaq Data Link account and going to your account settings.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,gBAAgB;CAC3B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/nasdaq",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"
@@ -31,7 +31,7 @@
31
31
  }
32
32
  },
33
33
  "peerDependencies": {
34
- "@keystrokehq/keystroke": "^0.1.4",
34
+ "@keystrokehq/keystroke": ">=0.1.4",
35
35
  "zod": "^4.4.3"
36
36
  },
37
37
  "devDependencies": {