@keystrokehq/openweather_api 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 (53) hide show
  1. package/dist/actions/delete-weather-station.d.cts +13 -1
  2. package/dist/actions/delete-weather-station.d.mts +13 -1
  3. package/dist/actions/get-air-pollution-current.d.cts +13 -1
  4. package/dist/actions/get-air-pollution-current.d.mts +13 -1
  5. package/dist/actions/get-air-pollution-forecast.d.cts +13 -1
  6. package/dist/actions/get-air-pollution-forecast.d.mts +13 -1
  7. package/dist/actions/get-air-pollution-history.d.cts +13 -1
  8. package/dist/actions/get-air-pollution-history.d.mts +13 -1
  9. package/dist/actions/get-circle-city-weather.d.cts +13 -1
  10. package/dist/actions/get-circle-city-weather.d.mts +13 -1
  11. package/dist/actions/get-current-weather.d.cts +13 -1
  12. package/dist/actions/get-current-weather.d.mts +13 -1
  13. package/dist/actions/get-geocoding-by-zip.d.cts +13 -1
  14. package/dist/actions/get-geocoding-by-zip.d.mts +13 -1
  15. package/dist/actions/get-geocoding-direct.d.cts +13 -1
  16. package/dist/actions/get-geocoding-direct.d.mts +13 -1
  17. package/dist/actions/get-geocoding-reverse.d.cts +13 -1
  18. package/dist/actions/get-geocoding-reverse.d.mts +13 -1
  19. package/dist/actions/get-station-measurements.d.cts +15 -3
  20. package/dist/actions/get-station-measurements.d.mts +15 -3
  21. package/dist/actions/get-uv-index-forecast.d.cts +13 -1
  22. package/dist/actions/get-uv-index-forecast.d.mts +13 -1
  23. package/dist/actions/get-uv-index-history.d.cts +13 -1
  24. package/dist/actions/get-uv-index-history.d.mts +13 -1
  25. package/dist/actions/get-uv-index.d.cts +13 -1
  26. package/dist/actions/get-uv-index.d.mts +13 -1
  27. package/dist/actions/get-weather-map-tile.d.cts +15 -3
  28. package/dist/actions/get-weather-map-tile.d.mts +15 -3
  29. package/dist/actions/get-weather-station.d.cts +13 -1
  30. package/dist/actions/get-weather-station.d.mts +13 -1
  31. package/dist/actions/get-weather-stations.d.cts +13 -1
  32. package/dist/actions/get-weather-stations.d.cts.map +1 -1
  33. package/dist/actions/get-weather-stations.d.mts +13 -1
  34. package/dist/actions/get-weather-stations.d.mts.map +1 -1
  35. package/dist/actions/get-weather-triggers.d.cts +13 -1
  36. package/dist/actions/get-weather-triggers.d.mts +13 -1
  37. package/dist/actions/get5-day-forecast.d.cts +13 -1
  38. package/dist/actions/get5-day-forecast.d.mts +13 -1
  39. package/dist/actions/post-add-weather-station.d.cts +13 -1
  40. package/dist/actions/post-add-weather-station.d.mts +13 -1
  41. package/dist/actions/post-submit-station-measurements.d.cts +13 -1
  42. package/dist/actions/post-submit-station-measurements.d.mts +13 -1
  43. package/dist/actions/update-weather-station.d.cts +13 -1
  44. package/dist/actions/update-weather-station.d.mts +13 -1
  45. package/dist/app.cjs +5 -2
  46. package/dist/app.cjs.map +1 -1
  47. package/dist/app.d.cts +9 -1
  48. package/dist/app.d.cts.map +1 -1
  49. package/dist/app.d.mts +9 -1
  50. package/dist/app.d.mts.map +1 -1
  51. package/dist/app.mjs +3 -1
  52. package/dist/app.mjs.map +1 -1
  53. package/package.json +1 -1
@@ -9,7 +9,19 @@ declare const OpenweatherApiDeleteWeatherStationOutput: z.ZodObject<{
9
9
  }, z.core.$loose>;
10
10
  declare const openweatherApiDeleteWeatherStation: import("@keystrokehq/action").WorkflowActionDefinition<{
11
11
  station_id: string;
12
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
12
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
13
+ connectionId: z.ZodString;
14
+ entityId: z.ZodString;
15
+ instanceId: z.ZodString;
16
+ }, z.core.$strip>, z.ZodObject<{
17
+ generic_api_key: z.ZodString;
18
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
19
+ connectionId: z.ZodString;
20
+ entityId: z.ZodString;
21
+ instanceId: z.ZodString;
22
+ }, z.core.$strip>, z.ZodObject<{
23
+ generic_api_key: z.ZodString;
24
+ }, z.core.$strip>>]>;
13
25
  //#endregion
14
26
  export { openweatherApiDeleteWeatherStation };
15
27
  //# sourceMappingURL=delete-weather-station.d.cts.map
@@ -9,7 +9,19 @@ declare const OpenweatherApiDeleteWeatherStationOutput: z.ZodObject<{
9
9
  }, z.core.$loose>;
10
10
  declare const openweatherApiDeleteWeatherStation: import("@keystrokehq/action").WorkflowActionDefinition<{
11
11
  station_id: string;
12
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
12
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
13
+ connectionId: z.ZodString;
14
+ entityId: z.ZodString;
15
+ instanceId: z.ZodString;
16
+ }, z.core.$strip>, z.ZodObject<{
17
+ generic_api_key: z.ZodString;
18
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
19
+ connectionId: z.ZodString;
20
+ entityId: z.ZodString;
21
+ instanceId: z.ZodString;
22
+ }, z.core.$strip>, z.ZodObject<{
23
+ generic_api_key: z.ZodString;
24
+ }, z.core.$strip>>]>;
13
25
  //#endregion
14
26
  export { openweatherApiDeleteWeatherStation };
15
27
  //# sourceMappingURL=delete-weather-station.d.mts.map
@@ -30,7 +30,19 @@ declare const OpenweatherApiGetAirPollutionCurrentOutput: z.ZodObject<{
30
30
  declare const openweatherApiGetAirPollutionCurrent: import("@keystrokehq/action").WorkflowActionDefinition<{
31
31
  lat: number;
32
32
  lon: number;
33
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
33
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
34
+ connectionId: z.ZodString;
35
+ entityId: z.ZodString;
36
+ instanceId: z.ZodString;
37
+ }, z.core.$strip>, z.ZodObject<{
38
+ generic_api_key: z.ZodString;
39
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
40
+ connectionId: z.ZodString;
41
+ entityId: z.ZodString;
42
+ instanceId: z.ZodString;
43
+ }, z.core.$strip>, z.ZodObject<{
44
+ generic_api_key: z.ZodString;
45
+ }, z.core.$strip>>]>;
34
46
  //#endregion
35
47
  export { openweatherApiGetAirPollutionCurrent };
36
48
  //# sourceMappingURL=get-air-pollution-current.d.cts.map
@@ -30,7 +30,19 @@ declare const OpenweatherApiGetAirPollutionCurrentOutput: z.ZodObject<{
30
30
  declare const openweatherApiGetAirPollutionCurrent: import("@keystrokehq/action").WorkflowActionDefinition<{
31
31
  lat: number;
32
32
  lon: number;
33
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
33
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
34
+ connectionId: z.ZodString;
35
+ entityId: z.ZodString;
36
+ instanceId: z.ZodString;
37
+ }, z.core.$strip>, z.ZodObject<{
38
+ generic_api_key: z.ZodString;
39
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
40
+ connectionId: z.ZodString;
41
+ entityId: z.ZodString;
42
+ instanceId: z.ZodString;
43
+ }, z.core.$strip>, z.ZodObject<{
44
+ generic_api_key: z.ZodString;
45
+ }, z.core.$strip>>]>;
34
46
  //#endregion
35
47
  export { openweatherApiGetAirPollutionCurrent };
36
48
  //# sourceMappingURL=get-air-pollution-current.d.mts.map
@@ -30,7 +30,19 @@ declare const OpenweatherApiGetAirPollutionForecastOutput: z.ZodObject<{
30
30
  declare const openweatherApiGetAirPollutionForecast: import("@keystrokehq/action").WorkflowActionDefinition<{
31
31
  lat: number;
32
32
  lon: number;
33
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
33
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
34
+ connectionId: z.ZodString;
35
+ entityId: z.ZodString;
36
+ instanceId: z.ZodString;
37
+ }, z.core.$strip>, z.ZodObject<{
38
+ generic_api_key: z.ZodString;
39
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
40
+ connectionId: z.ZodString;
41
+ entityId: z.ZodString;
42
+ instanceId: z.ZodString;
43
+ }, z.core.$strip>, z.ZodObject<{
44
+ generic_api_key: z.ZodString;
45
+ }, z.core.$strip>>]>;
34
46
  //#endregion
35
47
  export { openweatherApiGetAirPollutionForecast };
36
48
  //# sourceMappingURL=get-air-pollution-forecast.d.cts.map
@@ -30,7 +30,19 @@ declare const OpenweatherApiGetAirPollutionForecastOutput: z.ZodObject<{
30
30
  declare const openweatherApiGetAirPollutionForecast: import("@keystrokehq/action").WorkflowActionDefinition<{
31
31
  lat: number;
32
32
  lon: number;
33
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
33
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
34
+ connectionId: z.ZodString;
35
+ entityId: z.ZodString;
36
+ instanceId: z.ZodString;
37
+ }, z.core.$strip>, z.ZodObject<{
38
+ generic_api_key: z.ZodString;
39
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
40
+ connectionId: z.ZodString;
41
+ entityId: z.ZodString;
42
+ instanceId: z.ZodString;
43
+ }, z.core.$strip>, z.ZodObject<{
44
+ generic_api_key: z.ZodString;
45
+ }, z.core.$strip>>]>;
34
46
  //#endregion
35
47
  export { openweatherApiGetAirPollutionForecast };
36
48
  //# sourceMappingURL=get-air-pollution-forecast.d.mts.map
@@ -31,7 +31,19 @@ declare const openweatherApiGetAirPollutionHistory: import("@keystrokehq/action"
31
31
  lat: number;
32
32
  lon: number;
33
33
  start: number;
34
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
34
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
35
+ connectionId: z.ZodString;
36
+ entityId: z.ZodString;
37
+ instanceId: z.ZodString;
38
+ }, z.core.$strip>, z.ZodObject<{
39
+ generic_api_key: z.ZodString;
40
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
41
+ connectionId: z.ZodString;
42
+ entityId: z.ZodString;
43
+ instanceId: z.ZodString;
44
+ }, z.core.$strip>, z.ZodObject<{
45
+ generic_api_key: z.ZodString;
46
+ }, z.core.$strip>>]>;
35
47
  //#endregion
36
48
  export { openweatherApiGetAirPollutionHistory };
37
49
  //# sourceMappingURL=get-air-pollution-history.d.cts.map
@@ -31,7 +31,19 @@ declare const openweatherApiGetAirPollutionHistory: import("@keystrokehq/action"
31
31
  lat: number;
32
32
  lon: number;
33
33
  start: number;
34
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
34
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
35
+ connectionId: z.ZodString;
36
+ entityId: z.ZodString;
37
+ instanceId: z.ZodString;
38
+ }, z.core.$strip>, z.ZodObject<{
39
+ generic_api_key: z.ZodString;
40
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
41
+ connectionId: z.ZodString;
42
+ entityId: z.ZodString;
43
+ instanceId: z.ZodString;
44
+ }, z.core.$strip>, z.ZodObject<{
45
+ generic_api_key: z.ZodString;
46
+ }, z.core.$strip>>]>;
35
47
  //#endregion
36
48
  export { openweatherApiGetAirPollutionHistory };
37
49
  //# sourceMappingURL=get-air-pollution-history.d.mts.map
@@ -75,7 +75,19 @@ declare const openweatherApiGetCircleCityWeather: import("@keystrokehq/action").
75
75
  lang?: string | undefined;
76
76
  mode?: "json" | "xml" | undefined;
77
77
  units?: "standard" | "metric" | "imperial" | undefined;
78
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
78
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
79
+ connectionId: z.ZodString;
80
+ entityId: z.ZodString;
81
+ instanceId: z.ZodString;
82
+ }, z.core.$strip>, z.ZodObject<{
83
+ generic_api_key: z.ZodString;
84
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
85
+ connectionId: z.ZodString;
86
+ entityId: z.ZodString;
87
+ instanceId: z.ZodString;
88
+ }, z.core.$strip>, z.ZodObject<{
89
+ generic_api_key: z.ZodString;
90
+ }, z.core.$strip>>]>;
79
91
  //#endregion
80
92
  export { openweatherApiGetCircleCityWeather };
81
93
  //# sourceMappingURL=get-circle-city-weather.d.cts.map
@@ -75,7 +75,19 @@ declare const openweatherApiGetCircleCityWeather: import("@keystrokehq/action").
75
75
  lang?: string | undefined;
76
76
  mode?: "json" | "xml" | undefined;
77
77
  units?: "standard" | "metric" | "imperial" | undefined;
78
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
78
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
79
+ connectionId: z.ZodString;
80
+ entityId: z.ZodString;
81
+ instanceId: z.ZodString;
82
+ }, z.core.$strip>, z.ZodObject<{
83
+ generic_api_key: z.ZodString;
84
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
85
+ connectionId: z.ZodString;
86
+ entityId: z.ZodString;
87
+ instanceId: z.ZodString;
88
+ }, z.core.$strip>, z.ZodObject<{
89
+ generic_api_key: z.ZodString;
90
+ }, z.core.$strip>>]>;
79
91
  //#endregion
80
92
  export { openweatherApiGetCircleCityWeather };
81
93
  //# sourceMappingURL=get-circle-city-weather.d.mts.map
@@ -74,7 +74,19 @@ declare const openweatherApiGetCurrentWeather: import("@keystrokehq/action").Wor
74
74
  zip?: string | undefined;
75
75
  lang?: string | undefined;
76
76
  units?: "standard" | "metric" | "imperial" | undefined;
77
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
77
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
78
+ connectionId: z.ZodString;
79
+ entityId: z.ZodString;
80
+ instanceId: z.ZodString;
81
+ }, z.core.$strip>, z.ZodObject<{
82
+ generic_api_key: z.ZodString;
83
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
84
+ connectionId: z.ZodString;
85
+ entityId: z.ZodString;
86
+ instanceId: z.ZodString;
87
+ }, z.core.$strip>, z.ZodObject<{
88
+ generic_api_key: z.ZodString;
89
+ }, z.core.$strip>>]>;
78
90
  //#endregion
79
91
  export { openweatherApiGetCurrentWeather };
80
92
  //# sourceMappingURL=get-current-weather.d.cts.map
@@ -74,7 +74,19 @@ declare const openweatherApiGetCurrentWeather: import("@keystrokehq/action").Wor
74
74
  zip?: string | undefined;
75
75
  lang?: string | undefined;
76
76
  units?: "standard" | "metric" | "imperial" | undefined;
77
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
77
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
78
+ connectionId: z.ZodString;
79
+ entityId: z.ZodString;
80
+ instanceId: z.ZodString;
81
+ }, z.core.$strip>, z.ZodObject<{
82
+ generic_api_key: z.ZodString;
83
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
84
+ connectionId: z.ZodString;
85
+ entityId: z.ZodString;
86
+ instanceId: z.ZodString;
87
+ }, z.core.$strip>, z.ZodObject<{
88
+ generic_api_key: z.ZodString;
89
+ }, z.core.$strip>>]>;
78
90
  //#endregion
79
91
  export { openweatherApiGetCurrentWeather };
80
92
  //# sourceMappingURL=get-current-weather.d.mts.map
@@ -13,7 +13,19 @@ declare const OpenweatherApiGetGeocodingByZipOutput: z.ZodObject<{
13
13
  }, z.core.$loose>;
14
14
  declare const openweatherApiGetGeocodingByZip: import("@keystrokehq/action").WorkflowActionDefinition<{
15
15
  zip: string;
16
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
16
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
17
+ connectionId: z.ZodString;
18
+ entityId: z.ZodString;
19
+ instanceId: z.ZodString;
20
+ }, z.core.$strip>, z.ZodObject<{
21
+ generic_api_key: z.ZodString;
22
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
23
+ connectionId: z.ZodString;
24
+ entityId: z.ZodString;
25
+ instanceId: z.ZodString;
26
+ }, z.core.$strip>, z.ZodObject<{
27
+ generic_api_key: z.ZodString;
28
+ }, z.core.$strip>>]>;
17
29
  //#endregion
18
30
  export { openweatherApiGetGeocodingByZip };
19
31
  //# sourceMappingURL=get-geocoding-by-zip.d.cts.map
@@ -13,7 +13,19 @@ declare const OpenweatherApiGetGeocodingByZipOutput: z.ZodObject<{
13
13
  }, z.core.$loose>;
14
14
  declare const openweatherApiGetGeocodingByZip: import("@keystrokehq/action").WorkflowActionDefinition<{
15
15
  zip: string;
16
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
16
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
17
+ connectionId: z.ZodString;
18
+ entityId: z.ZodString;
19
+ instanceId: z.ZodString;
20
+ }, z.core.$strip>, z.ZodObject<{
21
+ generic_api_key: z.ZodString;
22
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
23
+ connectionId: z.ZodString;
24
+ entityId: z.ZodString;
25
+ instanceId: z.ZodString;
26
+ }, z.core.$strip>, z.ZodObject<{
27
+ generic_api_key: z.ZodString;
28
+ }, z.core.$strip>>]>;
17
29
  //#endregion
18
30
  export { openweatherApiGetGeocodingByZip };
19
31
  //# sourceMappingURL=get-geocoding-by-zip.d.mts.map
@@ -9,7 +9,19 @@ declare const OpenweatherApiGetGeocodingDirectOutput: z.ZodUnknown;
9
9
  declare const openweatherApiGetGeocodingDirect: import("@keystrokehq/action").WorkflowActionDefinition<{
10
10
  q: string;
11
11
  limit?: number | undefined;
12
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
12
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
13
+ connectionId: z.ZodString;
14
+ entityId: z.ZodString;
15
+ instanceId: z.ZodString;
16
+ }, z.core.$strip>, z.ZodObject<{
17
+ generic_api_key: z.ZodString;
18
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
19
+ connectionId: z.ZodString;
20
+ entityId: z.ZodString;
21
+ instanceId: z.ZodString;
22
+ }, z.core.$strip>, z.ZodObject<{
23
+ generic_api_key: z.ZodString;
24
+ }, z.core.$strip>>]>;
13
25
  //#endregion
14
26
  export { openweatherApiGetGeocodingDirect };
15
27
  //# sourceMappingURL=get-geocoding-direct.d.cts.map
@@ -9,7 +9,19 @@ declare const OpenweatherApiGetGeocodingDirectOutput: z.ZodUnknown;
9
9
  declare const openweatherApiGetGeocodingDirect: import("@keystrokehq/action").WorkflowActionDefinition<{
10
10
  q: string;
11
11
  limit?: number | undefined;
12
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
12
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
13
+ connectionId: z.ZodString;
14
+ entityId: z.ZodString;
15
+ instanceId: z.ZodString;
16
+ }, z.core.$strip>, z.ZodObject<{
17
+ generic_api_key: z.ZodString;
18
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
19
+ connectionId: z.ZodString;
20
+ entityId: z.ZodString;
21
+ instanceId: z.ZodString;
22
+ }, z.core.$strip>, z.ZodObject<{
23
+ generic_api_key: z.ZodString;
24
+ }, z.core.$strip>>]>;
13
25
  //#endregion
14
26
  export { openweatherApiGetGeocodingDirect };
15
27
  //# sourceMappingURL=get-geocoding-direct.d.mts.map
@@ -11,7 +11,19 @@ declare const openweatherApiGetGeocodingReverse: import("@keystrokehq/action").W
11
11
  lat: number;
12
12
  lon: number;
13
13
  limit?: number | undefined;
14
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
14
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
15
+ connectionId: z.ZodString;
16
+ entityId: z.ZodString;
17
+ instanceId: z.ZodString;
18
+ }, z.core.$strip>, z.ZodObject<{
19
+ generic_api_key: z.ZodString;
20
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
21
+ connectionId: z.ZodString;
22
+ entityId: z.ZodString;
23
+ instanceId: z.ZodString;
24
+ }, z.core.$strip>, z.ZodObject<{
25
+ generic_api_key: z.ZodString;
26
+ }, z.core.$strip>>]>;
15
27
  //#endregion
16
28
  export { openweatherApiGetGeocodingReverse };
17
29
  //# sourceMappingURL=get-geocoding-reverse.d.cts.map
@@ -11,7 +11,19 @@ declare const openweatherApiGetGeocodingReverse: import("@keystrokehq/action").W
11
11
  lat: number;
12
12
  lon: number;
13
13
  limit?: number | undefined;
14
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
14
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
15
+ connectionId: z.ZodString;
16
+ entityId: z.ZodString;
17
+ instanceId: z.ZodString;
18
+ }, z.core.$strip>, z.ZodObject<{
19
+ generic_api_key: z.ZodString;
20
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
21
+ connectionId: z.ZodString;
22
+ entityId: z.ZodString;
23
+ instanceId: z.ZodString;
24
+ }, z.core.$strip>, z.ZodObject<{
25
+ generic_api_key: z.ZodString;
26
+ }, z.core.$strip>>]>;
15
27
  //#endregion
16
28
  export { openweatherApiGetGeocodingReverse };
17
29
  //# sourceMappingURL=get-geocoding-reverse.d.mts.map
@@ -5,9 +5,9 @@ declare const OpenweatherApiGetStationMeasurementsInput: z.ZodObject<{
5
5
  to: z.ZodNumber;
6
6
  from: z.ZodNumber;
7
7
  type: z.ZodEnum<{
8
- d: "d";
9
8
  m: "m";
10
9
  h: "h";
10
+ d: "d";
11
11
  }>;
12
12
  limit: z.ZodNumber;
13
13
  station_id: z.ZodString;
@@ -27,10 +27,22 @@ declare const OpenweatherApiGetStationMeasurementsOutput: z.ZodObject<{
27
27
  declare const openweatherApiGetStationMeasurements: import("@keystrokehq/action").WorkflowActionDefinition<{
28
28
  to: number;
29
29
  from: number;
30
- type: "d" | "m" | "h";
30
+ type: "m" | "h" | "d";
31
31
  limit: number;
32
32
  station_id: string;
33
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
33
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
34
+ connectionId: z.ZodString;
35
+ entityId: z.ZodString;
36
+ instanceId: z.ZodString;
37
+ }, z.core.$strip>, z.ZodObject<{
38
+ generic_api_key: z.ZodString;
39
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
40
+ connectionId: z.ZodString;
41
+ entityId: z.ZodString;
42
+ instanceId: z.ZodString;
43
+ }, z.core.$strip>, z.ZodObject<{
44
+ generic_api_key: z.ZodString;
45
+ }, z.core.$strip>>]>;
34
46
  //#endregion
35
47
  export { openweatherApiGetStationMeasurements };
36
48
  //# sourceMappingURL=get-station-measurements.d.cts.map
@@ -5,9 +5,9 @@ declare const OpenweatherApiGetStationMeasurementsInput: z.ZodObject<{
5
5
  to: z.ZodNumber;
6
6
  from: z.ZodNumber;
7
7
  type: z.ZodEnum<{
8
- d: "d";
9
8
  m: "m";
10
9
  h: "h";
10
+ d: "d";
11
11
  }>;
12
12
  limit: z.ZodNumber;
13
13
  station_id: z.ZodString;
@@ -27,10 +27,22 @@ declare const OpenweatherApiGetStationMeasurementsOutput: z.ZodObject<{
27
27
  declare const openweatherApiGetStationMeasurements: import("@keystrokehq/action").WorkflowActionDefinition<{
28
28
  to: number;
29
29
  from: number;
30
- type: "d" | "m" | "h";
30
+ type: "m" | "h" | "d";
31
31
  limit: number;
32
32
  station_id: string;
33
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
33
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
34
+ connectionId: z.ZodString;
35
+ entityId: z.ZodString;
36
+ instanceId: z.ZodString;
37
+ }, z.core.$strip>, z.ZodObject<{
38
+ generic_api_key: z.ZodString;
39
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
40
+ connectionId: z.ZodString;
41
+ entityId: z.ZodString;
42
+ instanceId: z.ZodString;
43
+ }, z.core.$strip>, z.ZodObject<{
44
+ generic_api_key: z.ZodString;
45
+ }, z.core.$strip>>]>;
34
46
  //#endregion
35
47
  export { openweatherApiGetStationMeasurements };
36
48
  //# sourceMappingURL=get-station-measurements.d.mts.map
@@ -11,7 +11,19 @@ declare const openweatherApiGetUvIndexForecast: import("@keystrokehq/action").Wo
11
11
  lat: number;
12
12
  lon: number;
13
13
  cnt?: number | undefined;
14
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
14
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
15
+ connectionId: z.ZodString;
16
+ entityId: z.ZodString;
17
+ instanceId: z.ZodString;
18
+ }, z.core.$strip>, z.ZodObject<{
19
+ generic_api_key: z.ZodString;
20
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
21
+ connectionId: z.ZodString;
22
+ entityId: z.ZodString;
23
+ instanceId: z.ZodString;
24
+ }, z.core.$strip>, z.ZodObject<{
25
+ generic_api_key: z.ZodString;
26
+ }, z.core.$strip>>]>;
15
27
  //#endregion
16
28
  export { openweatherApiGetUvIndexForecast };
17
29
  //# sourceMappingURL=get-uv-index-forecast.d.cts.map
@@ -11,7 +11,19 @@ declare const openweatherApiGetUvIndexForecast: import("@keystrokehq/action").Wo
11
11
  lat: number;
12
12
  lon: number;
13
13
  cnt?: number | undefined;
14
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
14
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
15
+ connectionId: z.ZodString;
16
+ entityId: z.ZodString;
17
+ instanceId: z.ZodString;
18
+ }, z.core.$strip>, z.ZodObject<{
19
+ generic_api_key: z.ZodString;
20
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
21
+ connectionId: z.ZodString;
22
+ entityId: z.ZodString;
23
+ instanceId: z.ZodString;
24
+ }, z.core.$strip>, z.ZodObject<{
25
+ generic_api_key: z.ZodString;
26
+ }, z.core.$strip>>]>;
15
27
  //#endregion
16
28
  export { openweatherApiGetUvIndexForecast };
17
29
  //# sourceMappingURL=get-uv-index-forecast.d.mts.map
@@ -21,7 +21,19 @@ declare const openweatherApiGetUvIndexHistory: import("@keystrokehq/action").Wor
21
21
  lat: number;
22
22
  lon: number;
23
23
  start: number;
24
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
24
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
25
+ connectionId: z.ZodString;
26
+ entityId: z.ZodString;
27
+ instanceId: z.ZodString;
28
+ }, z.core.$strip>, z.ZodObject<{
29
+ generic_api_key: z.ZodString;
30
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
31
+ connectionId: z.ZodString;
32
+ entityId: z.ZodString;
33
+ instanceId: z.ZodString;
34
+ }, z.core.$strip>, z.ZodObject<{
35
+ generic_api_key: z.ZodString;
36
+ }, z.core.$strip>>]>;
25
37
  //#endregion
26
38
  export { openweatherApiGetUvIndexHistory };
27
39
  //# sourceMappingURL=get-uv-index-history.d.cts.map
@@ -21,7 +21,19 @@ declare const openweatherApiGetUvIndexHistory: import("@keystrokehq/action").Wor
21
21
  lat: number;
22
22
  lon: number;
23
23
  start: number;
24
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
24
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
25
+ connectionId: z.ZodString;
26
+ entityId: z.ZodString;
27
+ instanceId: z.ZodString;
28
+ }, z.core.$strip>, z.ZodObject<{
29
+ generic_api_key: z.ZodString;
30
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
31
+ connectionId: z.ZodString;
32
+ entityId: z.ZodString;
33
+ instanceId: z.ZodString;
34
+ }, z.core.$strip>, z.ZodObject<{
35
+ generic_api_key: z.ZodString;
36
+ }, z.core.$strip>>]>;
25
37
  //#endregion
26
38
  export { openweatherApiGetUvIndexHistory };
27
39
  //# sourceMappingURL=get-uv-index-history.d.mts.map
@@ -15,7 +15,19 @@ declare const OpenweatherApiGetUvIndexOutput: z.ZodObject<{
15
15
  declare const openweatherApiGetUvIndex: import("@keystrokehq/action").WorkflowActionDefinition<{
16
16
  lat: number;
17
17
  lon: number;
18
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
18
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
19
+ connectionId: z.ZodString;
20
+ entityId: z.ZodString;
21
+ instanceId: z.ZodString;
22
+ }, z.core.$strip>, z.ZodObject<{
23
+ generic_api_key: z.ZodString;
24
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
25
+ connectionId: z.ZodString;
26
+ entityId: z.ZodString;
27
+ instanceId: z.ZodString;
28
+ }, z.core.$strip>, z.ZodObject<{
29
+ generic_api_key: z.ZodString;
30
+ }, z.core.$strip>>]>;
19
31
  //#endregion
20
32
  export { openweatherApiGetUvIndex };
21
33
  //# sourceMappingURL=get-uv-index.d.cts.map
@@ -15,7 +15,19 @@ declare const OpenweatherApiGetUvIndexOutput: z.ZodObject<{
15
15
  declare const openweatherApiGetUvIndex: import("@keystrokehq/action").WorkflowActionDefinition<{
16
16
  lat: number;
17
17
  lon: number;
18
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
18
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
19
+ connectionId: z.ZodString;
20
+ entityId: z.ZodString;
21
+ instanceId: z.ZodString;
22
+ }, z.core.$strip>, z.ZodObject<{
23
+ generic_api_key: z.ZodString;
24
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
25
+ connectionId: z.ZodString;
26
+ entityId: z.ZodString;
27
+ instanceId: z.ZodString;
28
+ }, z.core.$strip>, z.ZodObject<{
29
+ generic_api_key: z.ZodString;
30
+ }, z.core.$strip>>]>;
19
31
  //#endregion
20
32
  export { openweatherApiGetUvIndex };
21
33
  //# sourceMappingURL=get-uv-index.d.mts.map
@@ -12,8 +12,8 @@ declare const OpenweatherApiGetWeatherMapTileInput: z.ZodObject<{
12
12
  pressure: "pressure";
13
13
  wind: "wind";
14
14
  clouds: "clouds";
15
- clouds_new: "clouds_new";
16
15
  precipitation: "precipitation";
16
+ clouds_new: "clouds_new";
17
17
  precipitation_new: "precipitation_new";
18
18
  pressure_new: "pressure_new";
19
19
  wind_new: "wind_new";
@@ -32,7 +32,7 @@ declare const openweatherApiGetWeatherMapTile: import("@keystrokehq/action").Wor
32
32
  x: number;
33
33
  y: number;
34
34
  z: number;
35
- layer: "temp" | "pressure" | "wind" | "clouds" | "clouds_new" | "precipitation" | "precipitation_new" | "pressure_new" | "wind_new" | "temp_new";
35
+ layer: "temp" | "pressure" | "wind" | "clouds" | "precipitation" | "clouds_new" | "precipitation_new" | "pressure_new" | "wind_new" | "temp_new";
36
36
  fill?: string | undefined;
37
37
  color?: string | undefined;
38
38
  scale?: 1 | 2 | undefined;
@@ -40,7 +40,19 @@ declare const openweatherApiGetWeatherMapTile: import("@keystrokehq/action").Wor
40
40
  opacity?: number | undefined;
41
41
  palette?: string | undefined;
42
42
  fill_bound?: boolean | undefined;
43
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
43
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
44
+ connectionId: z.ZodString;
45
+ entityId: z.ZodString;
46
+ instanceId: z.ZodString;
47
+ }, z.core.$strip>, z.ZodObject<{
48
+ generic_api_key: z.ZodString;
49
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
50
+ connectionId: z.ZodString;
51
+ entityId: z.ZodString;
52
+ instanceId: z.ZodString;
53
+ }, z.core.$strip>, z.ZodObject<{
54
+ generic_api_key: z.ZodString;
55
+ }, z.core.$strip>>]>;
44
56
  //#endregion
45
57
  export { openweatherApiGetWeatherMapTile };
46
58
  //# sourceMappingURL=get-weather-map-tile.d.cts.map
@@ -12,8 +12,8 @@ declare const OpenweatherApiGetWeatherMapTileInput: z.ZodObject<{
12
12
  pressure: "pressure";
13
13
  wind: "wind";
14
14
  clouds: "clouds";
15
- clouds_new: "clouds_new";
16
15
  precipitation: "precipitation";
16
+ clouds_new: "clouds_new";
17
17
  precipitation_new: "precipitation_new";
18
18
  pressure_new: "pressure_new";
19
19
  wind_new: "wind_new";
@@ -32,7 +32,7 @@ declare const openweatherApiGetWeatherMapTile: import("@keystrokehq/action").Wor
32
32
  x: number;
33
33
  y: number;
34
34
  z: number;
35
- layer: "temp" | "pressure" | "wind" | "clouds" | "clouds_new" | "precipitation" | "precipitation_new" | "pressure_new" | "wind_new" | "temp_new";
35
+ layer: "temp" | "pressure" | "wind" | "clouds" | "precipitation" | "clouds_new" | "precipitation_new" | "pressure_new" | "wind_new" | "temp_new";
36
36
  fill?: string | undefined;
37
37
  color?: string | undefined;
38
38
  scale?: 1 | 2 | undefined;
@@ -40,7 +40,19 @@ declare const openweatherApiGetWeatherMapTile: import("@keystrokehq/action").Wor
40
40
  opacity?: number | undefined;
41
41
  palette?: string | undefined;
42
42
  fill_bound?: boolean | undefined;
43
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
43
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
44
+ connectionId: z.ZodString;
45
+ entityId: z.ZodString;
46
+ instanceId: z.ZodString;
47
+ }, z.core.$strip>, z.ZodObject<{
48
+ generic_api_key: z.ZodString;
49
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
50
+ connectionId: z.ZodString;
51
+ entityId: z.ZodString;
52
+ instanceId: z.ZodString;
53
+ }, z.core.$strip>, z.ZodObject<{
54
+ generic_api_key: z.ZodString;
55
+ }, z.core.$strip>>]>;
44
56
  //#endregion
45
57
  export { openweatherApiGetWeatherMapTile };
46
58
  //# sourceMappingURL=get-weather-map-tile.d.mts.map
@@ -17,7 +17,19 @@ declare const OpenweatherApiGetWeatherStationOutput: z.ZodObject<{
17
17
  }, z.core.$loose>;
18
18
  declare const openweatherApiGetWeatherStation: import("@keystrokehq/action").WorkflowActionDefinition<{
19
19
  station_id: string;
20
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
20
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
21
+ connectionId: z.ZodString;
22
+ entityId: z.ZodString;
23
+ instanceId: z.ZodString;
24
+ }, z.core.$strip>, z.ZodObject<{
25
+ generic_api_key: z.ZodString;
26
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
27
+ connectionId: z.ZodString;
28
+ entityId: z.ZodString;
29
+ instanceId: z.ZodString;
30
+ }, z.core.$strip>, z.ZodObject<{
31
+ generic_api_key: z.ZodString;
32
+ }, z.core.$strip>>]>;
21
33
  //#endregion
22
34
  export { openweatherApiGetWeatherStation };
23
35
  //# sourceMappingURL=get-weather-station.d.cts.map
@@ -17,7 +17,19 @@ declare const OpenweatherApiGetWeatherStationOutput: z.ZodObject<{
17
17
  }, z.core.$loose>;
18
18
  declare const openweatherApiGetWeatherStation: import("@keystrokehq/action").WorkflowActionDefinition<{
19
19
  station_id: string;
20
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
20
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
21
+ connectionId: z.ZodString;
22
+ entityId: z.ZodString;
23
+ instanceId: z.ZodString;
24
+ }, z.core.$strip>, z.ZodObject<{
25
+ generic_api_key: z.ZodString;
26
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
27
+ connectionId: z.ZodString;
28
+ entityId: z.ZodString;
29
+ instanceId: z.ZodString;
30
+ }, z.core.$strip>, z.ZodObject<{
31
+ generic_api_key: z.ZodString;
32
+ }, z.core.$strip>>]>;
21
33
  //#endregion
22
34
  export { openweatherApiGetWeatherStation };
23
35
  //# sourceMappingURL=get-weather-station.d.mts.map
@@ -15,7 +15,19 @@ declare const OpenweatherApiGetWeatherStationsOutput: z.ZodObject<{
15
15
  external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16
16
  }, z.core.$loose>>;
17
17
  }, z.core.$loose>;
18
- declare const openweatherApiGetWeatherStations: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
18
+ declare const openweatherApiGetWeatherStations: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
19
+ connectionId: z.ZodString;
20
+ entityId: z.ZodString;
21
+ instanceId: z.ZodString;
22
+ }, z.core.$strip>, z.ZodObject<{
23
+ generic_api_key: z.ZodString;
24
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
25
+ connectionId: z.ZodString;
26
+ entityId: z.ZodString;
27
+ instanceId: z.ZodString;
28
+ }, z.core.$strip>, z.ZodObject<{
29
+ generic_api_key: z.ZodString;
30
+ }, z.core.$strip>>]>;
19
31
  //#endregion
20
32
  export { openweatherApiGetWeatherStations };
21
33
  //# sourceMappingURL=get-weather-stations.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-weather-stations.d.cts","names":[],"sources":["../../src/actions/get-weather-stations.ts"],"mappings":";;;cAIa,qCAAA,EAAqC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAYrC,sCAAA,EAAsC,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAItC,gCAAA,gCAAgC,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-weather-stations.d.cts","names":[],"sources":["../../src/actions/get-weather-stations.ts"],"mappings":";;;cAIa,qCAAA,EAAqC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAYrC,sCAAA,EAAsC,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAItC,gCAAA,gCAAgC,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,oBAAA,CAAA,CAAA,SAAA"}
@@ -15,7 +15,19 @@ declare const OpenweatherApiGetWeatherStationsOutput: z.ZodObject<{
15
15
  external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16
16
  }, z.core.$loose>>;
17
17
  }, z.core.$loose>;
18
- declare const openweatherApiGetWeatherStations: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
18
+ declare const openweatherApiGetWeatherStations: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
19
+ connectionId: z.ZodString;
20
+ entityId: z.ZodString;
21
+ instanceId: z.ZodString;
22
+ }, z.core.$strip>, z.ZodObject<{
23
+ generic_api_key: z.ZodString;
24
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
25
+ connectionId: z.ZodString;
26
+ entityId: z.ZodString;
27
+ instanceId: z.ZodString;
28
+ }, z.core.$strip>, z.ZodObject<{
29
+ generic_api_key: z.ZodString;
30
+ }, z.core.$strip>>]>;
19
31
  //#endregion
20
32
  export { openweatherApiGetWeatherStations };
21
33
  //# sourceMappingURL=get-weather-stations.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-weather-stations.d.mts","names":[],"sources":["../../src/actions/get-weather-stations.ts"],"mappings":";;;cAIa,qCAAA,EAAqC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAYrC,sCAAA,EAAsC,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAItC,gCAAA,gCAAgC,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-weather-stations.d.mts","names":[],"sources":["../../src/actions/get-weather-stations.ts"],"mappings":";;;cAIa,qCAAA,EAAqC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAYrC,sCAAA,EAAsC,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAItC,gCAAA,gCAAgC,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,oBAAA,CAAA,CAAA,SAAA"}
@@ -35,7 +35,19 @@ declare const openweatherApiGetWeatherTriggers: import("@keystrokehq/action").Wo
35
35
  };
36
36
  condition: ">" | "<" | "=" | "between";
37
37
  }[];
38
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
38
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
39
+ connectionId: z.ZodString;
40
+ entityId: z.ZodString;
41
+ instanceId: z.ZodString;
42
+ }, z.core.$strip>, z.ZodObject<{
43
+ generic_api_key: z.ZodString;
44
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
45
+ connectionId: z.ZodString;
46
+ entityId: z.ZodString;
47
+ instanceId: z.ZodString;
48
+ }, z.core.$strip>, z.ZodObject<{
49
+ generic_api_key: z.ZodString;
50
+ }, z.core.$strip>>]>;
39
51
  //#endregion
40
52
  export { openweatherApiGetWeatherTriggers };
41
53
  //# sourceMappingURL=get-weather-triggers.d.cts.map
@@ -35,7 +35,19 @@ declare const openweatherApiGetWeatherTriggers: import("@keystrokehq/action").Wo
35
35
  };
36
36
  condition: ">" | "<" | "=" | "between";
37
37
  }[];
38
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
38
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
39
+ connectionId: z.ZodString;
40
+ entityId: z.ZodString;
41
+ instanceId: z.ZodString;
42
+ }, z.core.$strip>, z.ZodObject<{
43
+ generic_api_key: z.ZodString;
44
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
45
+ connectionId: z.ZodString;
46
+ entityId: z.ZodString;
47
+ instanceId: z.ZodString;
48
+ }, z.core.$strip>, z.ZodObject<{
49
+ generic_api_key: z.ZodString;
50
+ }, z.core.$strip>>]>;
39
51
  //#endregion
40
52
  export { openweatherApiGetWeatherTriggers };
41
53
  //# sourceMappingURL=get-weather-triggers.d.mts.map
@@ -88,7 +88,19 @@ declare const openweatherApiGet5DayForecast: import("@keystrokehq/action").Workf
88
88
  lang?: string | undefined;
89
89
  mode?: "json" | "xml" | "html" | undefined;
90
90
  units?: "standard" | "metric" | "imperial" | undefined;
91
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
91
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
92
+ connectionId: z.ZodString;
93
+ entityId: z.ZodString;
94
+ instanceId: z.ZodString;
95
+ }, z.core.$strip>, z.ZodObject<{
96
+ generic_api_key: z.ZodString;
97
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
98
+ connectionId: z.ZodString;
99
+ entityId: z.ZodString;
100
+ instanceId: z.ZodString;
101
+ }, z.core.$strip>, z.ZodObject<{
102
+ generic_api_key: z.ZodString;
103
+ }, z.core.$strip>>]>;
92
104
  //#endregion
93
105
  export { openweatherApiGet5DayForecast };
94
106
  //# sourceMappingURL=get5-day-forecast.d.cts.map
@@ -88,7 +88,19 @@ declare const openweatherApiGet5DayForecast: import("@keystrokehq/action").Workf
88
88
  lang?: string | undefined;
89
89
  mode?: "json" | "xml" | "html" | undefined;
90
90
  units?: "standard" | "metric" | "imperial" | undefined;
91
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
91
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
92
+ connectionId: z.ZodString;
93
+ entityId: z.ZodString;
94
+ instanceId: z.ZodString;
95
+ }, z.core.$strip>, z.ZodObject<{
96
+ generic_api_key: z.ZodString;
97
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
98
+ connectionId: z.ZodString;
99
+ entityId: z.ZodString;
100
+ instanceId: z.ZodString;
101
+ }, z.core.$strip>, z.ZodObject<{
102
+ generic_api_key: z.ZodString;
103
+ }, z.core.$strip>>]>;
92
104
  //#endregion
93
105
  export { openweatherApiGet5DayForecast };
94
106
  //# sourceMappingURL=get5-day-forecast.d.mts.map
@@ -27,7 +27,19 @@ declare const openweatherApiPostAddWeatherStation: import("@keystrokehq/action")
27
27
  latitude: number;
28
28
  longitude: number;
29
29
  external_id: string;
30
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
30
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
31
+ connectionId: z.ZodString;
32
+ entityId: z.ZodString;
33
+ instanceId: z.ZodString;
34
+ }, z.core.$strip>, z.ZodObject<{
35
+ generic_api_key: z.ZodString;
36
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
37
+ connectionId: z.ZodString;
38
+ entityId: z.ZodString;
39
+ instanceId: z.ZodString;
40
+ }, z.core.$strip>, z.ZodObject<{
41
+ generic_api_key: z.ZodString;
42
+ }, z.core.$strip>>]>;
31
43
  //#endregion
32
44
  export { openweatherApiPostAddWeatherStation };
33
45
  //# sourceMappingURL=post-add-weather-station.d.cts.map
@@ -27,7 +27,19 @@ declare const openweatherApiPostAddWeatherStation: import("@keystrokehq/action")
27
27
  latitude: number;
28
28
  longitude: number;
29
29
  external_id: string;
30
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
30
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
31
+ connectionId: z.ZodString;
32
+ entityId: z.ZodString;
33
+ instanceId: z.ZodString;
34
+ }, z.core.$strip>, z.ZodObject<{
35
+ generic_api_key: z.ZodString;
36
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
37
+ connectionId: z.ZodString;
38
+ entityId: z.ZodString;
39
+ instanceId: z.ZodString;
40
+ }, z.core.$strip>, z.ZodObject<{
41
+ generic_api_key: z.ZodString;
42
+ }, z.core.$strip>>]>;
31
43
  //#endregion
32
44
  export { openweatherApiPostAddWeatherStation };
33
45
  //# sourceMappingURL=post-add-weather-station.d.mts.map
@@ -31,7 +31,19 @@ declare const openweatherApiPostSubmitStationMeasurements: import("@keystrokehq/
31
31
  wind_speed?: number | undefined;
32
32
  temperature?: number | undefined;
33
33
  }[];
34
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
34
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
35
+ connectionId: z.ZodString;
36
+ entityId: z.ZodString;
37
+ instanceId: z.ZodString;
38
+ }, z.core.$strip>, z.ZodObject<{
39
+ generic_api_key: z.ZodString;
40
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
41
+ connectionId: z.ZodString;
42
+ entityId: z.ZodString;
43
+ instanceId: z.ZodString;
44
+ }, z.core.$strip>, z.ZodObject<{
45
+ generic_api_key: z.ZodString;
46
+ }, z.core.$strip>>]>;
35
47
  //#endregion
36
48
  export { openweatherApiPostSubmitStationMeasurements };
37
49
  //# sourceMappingURL=post-submit-station-measurements.d.cts.map
@@ -31,7 +31,19 @@ declare const openweatherApiPostSubmitStationMeasurements: import("@keystrokehq/
31
31
  wind_speed?: number | undefined;
32
32
  temperature?: number | undefined;
33
33
  }[];
34
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
34
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
35
+ connectionId: z.ZodString;
36
+ entityId: z.ZodString;
37
+ instanceId: z.ZodString;
38
+ }, z.core.$strip>, z.ZodObject<{
39
+ generic_api_key: z.ZodString;
40
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
41
+ connectionId: z.ZodString;
42
+ entityId: z.ZodString;
43
+ instanceId: z.ZodString;
44
+ }, z.core.$strip>, z.ZodObject<{
45
+ generic_api_key: z.ZodString;
46
+ }, z.core.$strip>>]>;
35
47
  //#endregion
36
48
  export { openweatherApiPostSubmitStationMeasurements };
37
49
  //# sourceMappingURL=post-submit-station-measurements.d.mts.map
@@ -26,7 +26,19 @@ declare const openweatherApiUpdateWeatherStation: import("@keystrokehq/action").
26
26
  name?: string | undefined;
27
27
  altitude?: number | undefined;
28
28
  external_id?: string | undefined;
29
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
29
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
30
+ connectionId: z.ZodString;
31
+ entityId: z.ZodString;
32
+ instanceId: z.ZodString;
33
+ }, z.core.$strip>, z.ZodObject<{
34
+ generic_api_key: z.ZodString;
35
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
36
+ connectionId: z.ZodString;
37
+ entityId: z.ZodString;
38
+ instanceId: z.ZodString;
39
+ }, z.core.$strip>, z.ZodObject<{
40
+ generic_api_key: z.ZodString;
41
+ }, z.core.$strip>>]>;
30
42
  //#endregion
31
43
  export { openweatherApiUpdateWeatherStation };
32
44
  //# sourceMappingURL=update-weather-station.d.cts.map
@@ -26,7 +26,19 @@ declare const openweatherApiUpdateWeatherStation: import("@keystrokehq/action").
26
26
  name?: string | undefined;
27
27
  altitude?: number | undefined;
28
28
  external_id?: string | undefined;
29
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
29
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
30
+ connectionId: z.ZodString;
31
+ entityId: z.ZodString;
32
+ instanceId: z.ZodString;
33
+ }, z.core.$strip>, z.ZodObject<{
34
+ generic_api_key: z.ZodString;
35
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
36
+ connectionId: z.ZodString;
37
+ entityId: z.ZodString;
38
+ instanceId: z.ZodString;
39
+ }, z.core.$strip>, z.ZodObject<{
40
+ generic_api_key: z.ZodString;
41
+ }, z.core.$strip>>]>;
30
42
  //#endregion
31
43
  export { openweatherApiUpdateWeatherStation };
32
44
  //# sourceMappingURL=update-weather-station.d.mts.map
package/dist/app.cjs CHANGED
@@ -1,7 +1,10 @@
1
+ let _keystrokehq_keystroke_app = require("@keystrokehq/keystroke/app");
2
+ let zod = require("zod");
1
3
  //#region src/app.ts
2
- const openweatherApi = (0, require("@keystrokehq/keystroke/app").defineApp)({
4
+ const openweatherApi = (0, _keystrokehq_keystroke_app.defineApp)({
3
5
  slug: "openweather_api",
4
- auth: "keystroke"
6
+ auth: "keystroke",
7
+ credential: { generic_api_key: zod.z.string() }
5
8
  });
6
9
  //#endregion
7
10
  exports.openweatherApi = openweatherApi;
package/dist/app.cjs.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"app.cjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const openweatherApi = defineApp({\n slug: \"openweather_api\",\n auth: \"keystroke\",\n});\n"],"mappings":";AAEA,MAAa,kBAAA,uCAAA,CAAA,CAAA,UAAA,CAA2B;CACtC,MAAM;CACN,MAAM;AACR,CAAC"}
1
+ {"version":3,"file":"app.cjs","names":["z"],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nexport const openweatherApi = defineApp({\n slug: \"openweather_api\",\n auth: \"keystroke\",\n credential: {\n generic_api_key: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,kBAAA,GAAA,2BAAA,UAAA,CAA2B;CACtC,MAAM;CACN,MAAM;CACN,YAAY,EACV,iBAAiBA,IAAAA,EAAE,OAAO,EAC5B;AACF,CAAC"}
package/dist/app.d.cts CHANGED
@@ -1,5 +1,13 @@
1
+ import { z } from "zod";
2
+
1
3
  //#region src/app.d.ts
2
- declare const openweatherApi: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
4
+ declare const openweatherApi: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
5
+ connectionId: z.ZodString;
6
+ entityId: z.ZodString;
7
+ instanceId: z.ZodString;
8
+ }, z.core.$strip>, z.ZodObject<{
9
+ generic_api_key: z.ZodString;
10
+ }, z.core.$strip>>>;
3
11
  //#endregion
4
12
  export { openweatherApi };
5
13
  //# sourceMappingURL=app.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,cAAA,6BAAc,GAAA,+BAAA,UAAA"}
1
+ {"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,cAAA,6BAAc,GAAA,+BAAA,UAAA,oBAAA,CAAA,CAAA,SAAA"}
package/dist/app.d.mts CHANGED
@@ -1,5 +1,13 @@
1
+ import { z } from "zod";
2
+
1
3
  //#region src/app.d.ts
2
- declare const openweatherApi: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
4
+ declare const openweatherApi: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"openweather_api", z.ZodObject<{
5
+ connectionId: z.ZodString;
6
+ entityId: z.ZodString;
7
+ instanceId: z.ZodString;
8
+ }, z.core.$strip>, z.ZodObject<{
9
+ generic_api_key: z.ZodString;
10
+ }, z.core.$strip>>>;
3
11
  //#endregion
4
12
  export { openweatherApi };
5
13
  //# sourceMappingURL=app.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,cAAA,6BAAc,GAAA,+BAAA,UAAA"}
1
+ {"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,cAAA,6BAAc,GAAA,+BAAA,UAAA,oBAAA,CAAA,CAAA,SAAA"}
package/dist/app.mjs CHANGED
@@ -1,8 +1,10 @@
1
1
  import { defineApp } from "@keystrokehq/keystroke/app";
2
+ import { z } from "zod";
2
3
  //#region src/app.ts
3
4
  const openweatherApi = defineApp({
4
5
  slug: "openweather_api",
5
- auth: "keystroke"
6
+ auth: "keystroke",
7
+ credential: { generic_api_key: z.string() }
6
8
  });
7
9
  //#endregion
8
10
  export { openweatherApi };
package/dist/app.mjs.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const openweatherApi = defineApp({\n slug: \"openweather_api\",\n auth: \"keystroke\",\n});\n"],"mappings":";;AAEA,MAAa,iBAAiB,UAAU;CACtC,MAAM;CACN,MAAM;AACR,CAAC"}
1
+ {"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nexport const openweatherApi = defineApp({\n slug: \"openweather_api\",\n auth: \"keystroke\",\n credential: {\n generic_api_key: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,iBAAiB,UAAU;CACtC,MAAM;CACN,MAAM;CACN,YAAY,EACV,iBAAiB,EAAE,OAAO,EAC5B;AACF,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/openweather_api",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"