@keystrokehq/redcircle_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.
- package/dist/actions/add-zipcodes.d.cts +13 -1
- package/dist/actions/add-zipcodes.d.mts +13 -1
- package/dist/actions/clear-collection-requests.d.cts +13 -1
- package/dist/actions/clear-collection-requests.d.mts +13 -1
- package/dist/actions/create-collection.d.cts +13 -1
- package/dist/actions/create-collection.d.mts +13 -1
- package/dist/actions/create-destination.d.cts +13 -1
- package/dist/actions/create-destination.d.mts +13 -1
- package/dist/actions/create-requests.d.cts +13 -1
- package/dist/actions/create-requests.d.mts +13 -1
- package/dist/actions/delete-collection.d.cts +13 -1
- package/dist/actions/delete-collection.d.mts +13 -1
- package/dist/actions/delete-destination.d.cts +13 -1
- package/dist/actions/delete-destination.d.mts +13 -1
- package/dist/actions/delete-request.d.cts +13 -1
- package/dist/actions/delete-request.d.mts +13 -1
- package/dist/actions/delete-requests-bulk.d.cts +13 -1
- package/dist/actions/delete-requests-bulk.d.mts +13 -1
- package/dist/actions/delete-zipcodes.d.cts +13 -1
- package/dist/actions/delete-zipcodes.d.mts +13 -1
- package/dist/actions/get-account.d.cts +13 -1
- package/dist/actions/get-account.d.cts.map +1 -1
- package/dist/actions/get-account.d.mts +13 -1
- package/dist/actions/get-account.d.mts.map +1 -1
- package/dist/actions/get-collection.d.cts +13 -1
- package/dist/actions/get-collection.d.mts +13 -1
- package/dist/actions/get-requests-csv-links.d.cts +13 -1
- package/dist/actions/get-requests-csv-links.d.mts +13 -1
- package/dist/actions/get-requests-json-links.d.cts +13 -1
- package/dist/actions/get-requests-json-links.d.mts +13 -1
- package/dist/actions/get-result-set-csv.d.cts +13 -1
- package/dist/actions/get-result-set-csv.d.mts +13 -1
- package/dist/actions/get-result-set-json.d.cts +13 -1
- package/dist/actions/get-result-set-json.d.mts +13 -1
- package/dist/actions/get-result-set-jsonlines.d.cts +13 -1
- package/dist/actions/get-result-set-jsonlines.d.mts +13 -1
- package/dist/actions/get-target-product-data.d.cts +13 -1
- package/dist/actions/get-target-product-data.d.mts +13 -1
- package/dist/actions/list-categories.d.cts +13 -1
- package/dist/actions/list-categories.d.mts +13 -1
- package/dist/actions/list-collections.d.cts +13 -1
- package/dist/actions/list-collections.d.mts +13 -1
- package/dist/actions/list-destinations.d.cts +13 -1
- package/dist/actions/list-destinations.d.mts +13 -1
- package/dist/actions/list-error-logs.d.cts +13 -1
- package/dist/actions/list-error-logs.d.mts +13 -1
- package/dist/actions/list-requests-by-page.d.cts +13 -1
- package/dist/actions/list-requests-by-page.d.mts +13 -1
- package/dist/actions/list-result-sets.d.cts +13 -1
- package/dist/actions/list-result-sets.d.mts +13 -1
- package/dist/actions/list-zipcodes.d.cts +13 -1
- package/dist/actions/list-zipcodes.d.mts +13 -1
- package/dist/actions/resend-webhook.d.cts +13 -1
- package/dist/actions/resend-webhook.d.mts +13 -1
- package/dist/actions/start-collection.d.cts +13 -1
- package/dist/actions/start-collection.d.mts +13 -1
- package/dist/actions/stop-all-collections.d.cts +13 -1
- package/dist/actions/stop-all-collections.d.cts.map +1 -1
- package/dist/actions/stop-all-collections.d.mts +13 -1
- package/dist/actions/stop-all-collections.d.mts.map +1 -1
- package/dist/actions/stop-collection.d.cts +13 -1
- package/dist/actions/stop-collection.d.mts +13 -1
- package/dist/actions/update-collection.d.cts +13 -1
- package/dist/actions/update-collection.d.mts +13 -1
- package/dist/actions/update-destination.d.cts +13 -1
- package/dist/actions/update-destination.d.mts +13 -1
- package/dist/actions/update-request.d.cts +13 -1
- package/dist/actions/update-request.d.cts.map +1 -1
- package/dist/actions/update-request.d.mts +13 -1
- package/dist/actions/update-request.d.mts.map +1 -1
- package/dist/app.cjs +5 -2
- package/dist/app.cjs.map +1 -1
- package/dist/app.d.cts +9 -1
- package/dist/app.d.cts.map +1 -1
- package/dist/app.d.mts +9 -1
- package/dist/app.d.mts.map +1 -1
- package/dist/app.mjs +3 -1
- package/dist/app.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -11,7 +11,19 @@ declare const RedcircleApiStopCollectionOutput: z.ZodObject<{
|
|
|
11
11
|
}, z.core.$loose>;
|
|
12
12
|
declare const redcircleApiStopCollection: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
13
13
|
collection_id: string;
|
|
14
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
14
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"redcircle_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<"redcircle_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 { redcircleApiStopCollection };
|
|
17
29
|
//# sourceMappingURL=stop-collection.d.cts.map
|
|
@@ -11,7 +11,19 @@ declare const RedcircleApiStopCollectionOutput: z.ZodObject<{
|
|
|
11
11
|
}, z.core.$loose>;
|
|
12
12
|
declare const redcircleApiStopCollection: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
13
13
|
collection_id: string;
|
|
14
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
14
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"redcircle_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<"redcircle_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 { redcircleApiStopCollection };
|
|
17
29
|
//# sourceMappingURL=stop-collection.d.mts.map
|
|
@@ -69,7 +69,19 @@ declare const redcircleApiUpdateCollection: import("@keystrokehq/action").Workfl
|
|
|
69
69
|
schedule_days_of_month?: number[] | undefined;
|
|
70
70
|
notification_csv_fields?: string | undefined;
|
|
71
71
|
notification_as_jsonlines?: boolean | undefined;
|
|
72
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
72
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"redcircle_api", z.ZodObject<{
|
|
73
|
+
connectionId: z.ZodString;
|
|
74
|
+
entityId: z.ZodString;
|
|
75
|
+
instanceId: z.ZodString;
|
|
76
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
77
|
+
generic_api_key: z.ZodString;
|
|
78
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"redcircle_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>>]>;
|
|
73
85
|
//#endregion
|
|
74
86
|
export { redcircleApiUpdateCollection };
|
|
75
87
|
//# sourceMappingURL=update-collection.d.cts.map
|
|
@@ -69,7 +69,19 @@ declare const redcircleApiUpdateCollection: import("@keystrokehq/action").Workfl
|
|
|
69
69
|
schedule_days_of_month?: number[] | undefined;
|
|
70
70
|
notification_csv_fields?: string | undefined;
|
|
71
71
|
notification_as_jsonlines?: boolean | undefined;
|
|
72
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
72
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"redcircle_api", z.ZodObject<{
|
|
73
|
+
connectionId: z.ZodString;
|
|
74
|
+
entityId: z.ZodString;
|
|
75
|
+
instanceId: z.ZodString;
|
|
76
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
77
|
+
generic_api_key: z.ZodString;
|
|
78
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"redcircle_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>>]>;
|
|
73
85
|
//#endregion
|
|
74
86
|
export { redcircleApiUpdateCollection };
|
|
75
87
|
//# sourceMappingURL=update-collection.d.mts.map
|
|
@@ -82,7 +82,19 @@ declare const redcircleApiUpdateDestination: import("@keystrokehq/action").Workf
|
|
|
82
82
|
azure_account_name?: string | undefined;
|
|
83
83
|
azure_container_name?: string | undefined;
|
|
84
84
|
s3_secret_access_key?: string | undefined;
|
|
85
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
85
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"redcircle_api", z.ZodObject<{
|
|
86
|
+
connectionId: z.ZodString;
|
|
87
|
+
entityId: z.ZodString;
|
|
88
|
+
instanceId: z.ZodString;
|
|
89
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
90
|
+
generic_api_key: z.ZodString;
|
|
91
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"redcircle_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>>]>;
|
|
86
98
|
//#endregion
|
|
87
99
|
export { redcircleApiUpdateDestination };
|
|
88
100
|
//# sourceMappingURL=update-destination.d.cts.map
|
|
@@ -82,7 +82,19 @@ declare const redcircleApiUpdateDestination: import("@keystrokehq/action").Workf
|
|
|
82
82
|
azure_account_name?: string | undefined;
|
|
83
83
|
azure_container_name?: string | undefined;
|
|
84
84
|
s3_secret_access_key?: string | undefined;
|
|
85
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
85
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"redcircle_api", z.ZodObject<{
|
|
86
|
+
connectionId: z.ZodString;
|
|
87
|
+
entityId: z.ZodString;
|
|
88
|
+
instanceId: z.ZodString;
|
|
89
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
90
|
+
generic_api_key: z.ZodString;
|
|
91
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"redcircle_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>>]>;
|
|
86
98
|
//#endregion
|
|
87
99
|
export { redcircleApiUpdateDestination };
|
|
88
100
|
//# sourceMappingURL=update-destination.d.mts.map
|
|
@@ -24,7 +24,19 @@ declare const redcircleApiUpdateRequest: import("@keystrokehq/action").WorkflowA
|
|
|
24
24
|
tcin?: string | undefined;
|
|
25
25
|
type?: string | undefined;
|
|
26
26
|
additional_params?: Record<string, unknown> | undefined;
|
|
27
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
27
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"redcircle_api", z.ZodObject<{
|
|
28
|
+
connectionId: z.ZodString;
|
|
29
|
+
entityId: z.ZodString;
|
|
30
|
+
instanceId: z.ZodString;
|
|
31
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32
|
+
generic_api_key: z.ZodString;
|
|
33
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"redcircle_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>>]>;
|
|
28
40
|
//#endregion
|
|
29
41
|
export { redcircleApiUpdateRequest };
|
|
30
42
|
//# sourceMappingURL=update-request.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-request.d.cts","names":[],"sources":["../../src/actions/update-request.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;;;;;cAc9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;cAM/B,yBAAA,gCAAyB,wBAAA
|
|
1
|
+
{"version":3,"file":"update-request.d.cts","names":[],"sources":["../../src/actions/update-request.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;;;;;cAc9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;cAM/B,yBAAA,gCAAyB,wBAAA"}
|
|
@@ -24,7 +24,19 @@ declare const redcircleApiUpdateRequest: import("@keystrokehq/action").WorkflowA
|
|
|
24
24
|
tcin?: string | undefined;
|
|
25
25
|
type?: string | undefined;
|
|
26
26
|
additional_params?: Record<string, unknown> | undefined;
|
|
27
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
27
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"redcircle_api", z.ZodObject<{
|
|
28
|
+
connectionId: z.ZodString;
|
|
29
|
+
entityId: z.ZodString;
|
|
30
|
+
instanceId: z.ZodString;
|
|
31
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32
|
+
generic_api_key: z.ZodString;
|
|
33
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"redcircle_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>>]>;
|
|
28
40
|
//#endregion
|
|
29
41
|
export { redcircleApiUpdateRequest };
|
|
30
42
|
//# sourceMappingURL=update-request.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-request.d.mts","names":[],"sources":["../../src/actions/update-request.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;;;;;cAc9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;cAM/B,yBAAA,gCAAyB,wBAAA
|
|
1
|
+
{"version":3,"file":"update-request.d.mts","names":[],"sources":["../../src/actions/update-request.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;;;;;cAc9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;cAM/B,yBAAA,gCAAyB,wBAAA"}
|
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 redcircleApi = (0,
|
|
4
|
+
const redcircleApi = (0, _keystrokehq_keystroke_app.defineApp)({
|
|
3
5
|
slug: "redcircle_api",
|
|
4
|
-
auth: "keystroke"
|
|
6
|
+
auth: "keystroke",
|
|
7
|
+
credential: { generic_api_key: zod.z.string() }
|
|
5
8
|
});
|
|
6
9
|
//#endregion
|
|
7
10
|
exports.redcircleApi = redcircleApi;
|
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 redcircleApi = defineApp({\n slug: \"redcircle_api\",\n auth: \"keystroke\",\n});\n"],"mappings":"
|
|
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 redcircleApi = defineApp({\n slug: \"redcircle_api\",\n auth: \"keystroke\",\n credential: {\n generic_api_key: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,gBAAA,GAAA,2BAAA,UAAA,CAAyB;CACpC,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 redcircleApi: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential
|
|
4
|
+
declare const redcircleApi: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"redcircle_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 { redcircleApi };
|
|
5
13
|
//# sourceMappingURL=app.d.cts.map
|
package/dist/app.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,YAAA,6BAAY,GAAA,+BAAA,UAAA,kBAAA,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 redcircleApi: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential
|
|
4
|
+
declare const redcircleApi: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"redcircle_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 { redcircleApi };
|
|
5
13
|
//# sourceMappingURL=app.d.mts.map
|
package/dist/app.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,YAAA,6BAAY,GAAA,+BAAA,UAAA,kBAAA,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 redcircleApi = defineApp({
|
|
4
5
|
slug: "redcircle_api",
|
|
5
|
-
auth: "keystroke"
|
|
6
|
+
auth: "keystroke",
|
|
7
|
+
credential: { generic_api_key: z.string() }
|
|
6
8
|
});
|
|
7
9
|
//#endregion
|
|
8
10
|
export { redcircleApi };
|
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 redcircleApi = defineApp({\n slug: \"redcircle_api\",\n auth: \"keystroke\",\n});\n"],"mappings":"
|
|
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 redcircleApi = defineApp({\n slug: \"redcircle_api\",\n auth: \"keystroke\",\n credential: {\n generic_api_key: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,eAAe,UAAU;CACpC,MAAM;CACN,MAAM;CACN,YAAY,EACV,iBAAiB,EAAE,OAAO,EAC5B;AACF,CAAC"}
|