@keystrokehq/serpapi 0.0.1 → 0.0.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/LICENSE +21 -0
- package/dist/_official/index.d.mts +1 -1
- package/dist/index.d.mts +223 -223
- package/dist/{integration-DOZk0bd2.d.mts → integration-CX4Gm9Vn.d.mts} +1 -1
- package/package.json +21 -19
|
@@ -19,7 +19,7 @@ declare const serpApiOfficialIntegration: {
|
|
|
19
19
|
declare const serpApiBundle: _keystrokehq_integration_authoring_official0.OfficialIntegrationBundle<"serpapi", z.ZodObject<{
|
|
20
20
|
SERPAPI_API_KEY: z.ZodString;
|
|
21
21
|
}, z.core.$strip>>;
|
|
22
|
-
declare const serpApi: _keystrokehq_core0.CredentialSet<"serpapi", z.ZodObject<{
|
|
22
|
+
declare const serpApi: _keystrokehq_core0.CredentialSet<"keystroke:serpapi", z.ZodObject<{
|
|
23
23
|
SERPAPI_API_KEY: z.ZodString;
|
|
24
24
|
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
25
25
|
SERPAPI_API_KEY: z.ZodString;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keystrokehq/serpapi",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -19,28 +19,22 @@
|
|
|
19
19
|
"README.md",
|
|
20
20
|
"LICENSE"
|
|
21
21
|
],
|
|
22
|
-
"scripts": {
|
|
23
|
-
"build": "tsdown",
|
|
24
|
-
"typecheck": "tsgo --build",
|
|
25
|
-
"lint": "biome check .",
|
|
26
|
-
"lint:fix": "biome check --write .",
|
|
27
|
-
"test:unit": "vitest run --passWithNoTests --project unit",
|
|
28
|
-
"test:int": "vitest run --passWithNoTests --project int",
|
|
29
|
-
"prepublishOnly": "pnpm build"
|
|
30
|
-
},
|
|
31
22
|
"dependencies": {
|
|
23
|
+
"@keystrokehq/integration-authoring": "^0.0.5",
|
|
32
24
|
"serpapi": "^2.2.1",
|
|
33
|
-
"@keystrokehq/integration-authoring": "^0.0.1",
|
|
34
|
-
"@keystrokehq/core": "^0.0.5",
|
|
35
25
|
"zod": "^4.3.6"
|
|
36
26
|
},
|
|
27
|
+
"peerDependencies": {
|
|
28
|
+
"@keystrokehq/core": ">=0.0.7 <0.1.0"
|
|
29
|
+
},
|
|
37
30
|
"devDependencies": {
|
|
38
|
-
"@types/node": "
|
|
39
|
-
"tsdown": "
|
|
40
|
-
"typescript": "
|
|
41
|
-
"vitest": "
|
|
42
|
-
"@keystrokehq/
|
|
43
|
-
"@keystrokehq/
|
|
31
|
+
"@types/node": "^22.19.11",
|
|
32
|
+
"tsdown": "^0.20.3",
|
|
33
|
+
"typescript": "^5.9.3",
|
|
34
|
+
"vitest": "^4.0.18",
|
|
35
|
+
"@keystrokehq/core": "^0.0.7",
|
|
36
|
+
"@keystrokehq/test-utils": "0.0.0",
|
|
37
|
+
"@keystrokehq/typescript-config": "0.0.0"
|
|
44
38
|
},
|
|
45
39
|
"keywords": [
|
|
46
40
|
"serpapi",
|
|
@@ -59,5 +53,13 @@
|
|
|
59
53
|
"publishConfig": {
|
|
60
54
|
"access": "public",
|
|
61
55
|
"registry": "https://registry.npmjs.org/"
|
|
56
|
+
},
|
|
57
|
+
"scripts": {
|
|
58
|
+
"build": "tsdown",
|
|
59
|
+
"typecheck": "tsgo --build",
|
|
60
|
+
"lint": "biome check .",
|
|
61
|
+
"lint:fix": "biome check --write .",
|
|
62
|
+
"test:unit": "vitest run --passWithNoTests --project unit",
|
|
63
|
+
"test:int": "vitest run --passWithNoTests --project int"
|
|
62
64
|
}
|
|
63
|
-
}
|
|
65
|
+
}
|