@keystrokehq/refiner 0.1.3 → 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 (39) hide show
  1. package/dist/actions/delete-contact.d.cts +13 -1
  2. package/dist/actions/delete-contact.d.mts +13 -1
  3. package/dist/actions/get-account-info.d.cts +13 -1
  4. package/dist/actions/get-account-info.d.cts.map +1 -1
  5. package/dist/actions/get-account-info.d.mts +13 -1
  6. package/dist/actions/get-account-info.d.mts.map +1 -1
  7. package/dist/actions/get-contact.d.cts +13 -1
  8. package/dist/actions/get-contact.d.mts +13 -1
  9. package/dist/actions/get-contacts.d.cts +15 -3
  10. package/dist/actions/get-contacts.d.mts +15 -3
  11. package/dist/actions/get-forms.d.cts +13 -1
  12. package/dist/actions/get-forms.d.mts +13 -1
  13. package/dist/actions/get-reporting.d.cts +13 -1
  14. package/dist/actions/get-reporting.d.mts +13 -1
  15. package/dist/actions/get-responses.d.cts +15 -3
  16. package/dist/actions/get-responses.d.mts +15 -3
  17. package/dist/actions/get-segments.d.cts +13 -1
  18. package/dist/actions/get-segments.d.mts +13 -1
  19. package/dist/actions/track-event.d.cts +13 -1
  20. package/dist/actions/track-event.d.mts +13 -1
  21. package/dist/actions/update-contact.d.cts +13 -1
  22. package/dist/actions/update-contact.d.cts.map +1 -1
  23. package/dist/actions/update-contact.d.mts +13 -1
  24. package/dist/actions/update-contact.d.mts.map +1 -1
  25. package/dist/app.cjs +5 -2
  26. package/dist/app.cjs.map +1 -1
  27. package/dist/app.d.cts +9 -1
  28. package/dist/app.d.cts.map +1 -1
  29. package/dist/app.d.mts +9 -1
  30. package/dist/app.d.mts.map +1 -1
  31. package/dist/app.mjs +3 -1
  32. package/dist/app.mjs.map +1 -1
  33. package/dist/catalog.cjs +1 -1
  34. package/dist/catalog.cjs.map +1 -1
  35. package/dist/catalog.d.cts +1 -1
  36. package/dist/catalog.d.mts +1 -1
  37. package/dist/catalog.mjs +1 -1
  38. package/dist/catalog.mjs.map +1 -1
  39. package/package.json +1 -1
@@ -11,7 +11,19 @@ declare const RefinerDeleteContactOutput: z.ZodObject<{
11
11
  declare const refinerDeleteContact: import("@keystrokehq/action").WorkflowActionDefinition<{
12
12
  id?: string | undefined;
13
13
  email?: string | 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<"refiner", 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<"refiner", 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 { refinerDeleteContact };
17
29
  //# sourceMappingURL=delete-contact.d.cts.map
@@ -11,7 +11,19 @@ declare const RefinerDeleteContactOutput: z.ZodObject<{
11
11
  declare const refinerDeleteContact: import("@keystrokehq/action").WorkflowActionDefinition<{
12
12
  id?: string | undefined;
13
13
  email?: string | 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<"refiner", 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<"refiner", 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 { refinerDeleteContact };
17
29
  //# sourceMappingURL=delete-contact.d.mts.map
@@ -26,7 +26,19 @@ declare const RefinerGetAccountInfoOutput: z.ZodObject<{
26
26
  mtu_count_updated_at: z.ZodNullable<z.ZodString>;
27
27
  }, z.core.$loose>>;
28
28
  }, z.core.$loose>;
29
- declare const refinerGetAccountInfo: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
29
+ declare const refinerGetAccountInfo: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"refiner", 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<"refiner", 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 { refinerGetAccountInfo };
32
44
  //# sourceMappingURL=get-account-info.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-account-info.d.cts","names":[],"sources":["../../src/actions/get-account-info.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAuB1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;cAK3B,qBAAA,gCAAqB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-account-info.d.cts","names":[],"sources":["../../src/actions/get-account-info.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAuB1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;cAK3B,qBAAA,gCAAqB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,YAAA,CAAA,CAAA,SAAA"}
@@ -26,7 +26,19 @@ declare const RefinerGetAccountInfoOutput: z.ZodObject<{
26
26
  mtu_count_updated_at: z.ZodNullable<z.ZodString>;
27
27
  }, z.core.$loose>>;
28
28
  }, z.core.$loose>;
29
- declare const refinerGetAccountInfo: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
29
+ declare const refinerGetAccountInfo: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"refiner", 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<"refiner", 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 { refinerGetAccountInfo };
32
44
  //# sourceMappingURL=get-account-info.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-account-info.d.mts","names":[],"sources":["../../src/actions/get-account-info.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAuB1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;cAK3B,qBAAA,gCAAqB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-account-info.d.mts","names":[],"sources":["../../src/actions/get-account-info.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAuB1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;cAK3B,qBAAA,gCAAqB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,YAAA,CAAA,CAAA,SAAA"}
@@ -32,7 +32,19 @@ declare const refinerGetContact: import("@keystrokehq/action").WorkflowActionDef
32
32
  id?: string | undefined;
33
33
  uuid?: string | undefined;
34
34
  email?: string | undefined;
35
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
35
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"refiner", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"refiner", z.ZodObject<{
42
+ connectionId: z.ZodString;
43
+ entityId: z.ZodString;
44
+ instanceId: z.ZodString;
45
+ }, z.core.$strip>, z.ZodObject<{
46
+ generic_api_key: z.ZodString;
47
+ }, z.core.$strip>>]>;
36
48
  //#endregion
37
49
  export { refinerGetContact };
38
50
  //# sourceMappingURL=get-contact.d.cts.map
@@ -32,7 +32,19 @@ declare const refinerGetContact: import("@keystrokehq/action").WorkflowActionDef
32
32
  id?: string | undefined;
33
33
  uuid?: string | undefined;
34
34
  email?: string | undefined;
35
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
35
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"refiner", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"refiner", z.ZodObject<{
42
+ connectionId: z.ZodString;
43
+ entityId: z.ZodString;
44
+ instanceId: z.ZodString;
45
+ }, z.core.$strip>, z.ZodObject<{
46
+ generic_api_key: z.ZodString;
47
+ }, z.core.$strip>>]>;
36
48
  //#endregion
37
49
  export { refinerGetContact };
38
50
  //# sourceMappingURL=get-contact.d.mts.map
@@ -5,8 +5,8 @@ declare const RefinerGetContactsInput: z.ZodObject<{
5
5
  page: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
6
6
  search: z.ZodOptional<z.ZodString>;
7
7
  order_by: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
8
- first_seen_at: "first_seen_at";
9
8
  last_seen_at: "last_seen_at";
9
+ first_seen_at: "first_seen_at";
10
10
  last_form_submission_at: "last_form_submission_at";
11
11
  }>>>;
12
12
  form_uuid: z.ZodOptional<z.ZodString>;
@@ -52,12 +52,24 @@ declare const RefinerGetContactsOutput: z.ZodObject<{
52
52
  declare const refinerGetContacts: import("@keystrokehq/action").WorkflowActionDefinition<{
53
53
  page?: number | undefined;
54
54
  search?: string | undefined;
55
- order_by?: "first_seen_at" | "last_seen_at" | "last_form_submission_at" | undefined;
55
+ order_by?: "last_seen_at" | "first_seen_at" | "last_form_submission_at" | undefined;
56
56
  form_uuid?: string | undefined;
57
57
  page_cursor?: string | undefined;
58
58
  page_length?: number | undefined;
59
59
  segment_uuid?: string | undefined;
60
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
60
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"refiner", z.ZodObject<{
61
+ connectionId: z.ZodString;
62
+ entityId: z.ZodString;
63
+ instanceId: z.ZodString;
64
+ }, z.core.$strip>, z.ZodObject<{
65
+ generic_api_key: z.ZodString;
66
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"refiner", z.ZodObject<{
67
+ connectionId: z.ZodString;
68
+ entityId: z.ZodString;
69
+ instanceId: z.ZodString;
70
+ }, z.core.$strip>, z.ZodObject<{
71
+ generic_api_key: z.ZodString;
72
+ }, z.core.$strip>>]>;
61
73
  //#endregion
62
74
  export { refinerGetContacts };
63
75
  //# sourceMappingURL=get-contacts.d.cts.map
@@ -5,8 +5,8 @@ declare const RefinerGetContactsInput: z.ZodObject<{
5
5
  page: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
6
6
  search: z.ZodOptional<z.ZodString>;
7
7
  order_by: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
8
- first_seen_at: "first_seen_at";
9
8
  last_seen_at: "last_seen_at";
9
+ first_seen_at: "first_seen_at";
10
10
  last_form_submission_at: "last_form_submission_at";
11
11
  }>>>;
12
12
  form_uuid: z.ZodOptional<z.ZodString>;
@@ -52,12 +52,24 @@ declare const RefinerGetContactsOutput: z.ZodObject<{
52
52
  declare const refinerGetContacts: import("@keystrokehq/action").WorkflowActionDefinition<{
53
53
  page?: number | undefined;
54
54
  search?: string | undefined;
55
- order_by?: "first_seen_at" | "last_seen_at" | "last_form_submission_at" | undefined;
55
+ order_by?: "last_seen_at" | "first_seen_at" | "last_form_submission_at" | undefined;
56
56
  form_uuid?: string | undefined;
57
57
  page_cursor?: string | undefined;
58
58
  page_length?: number | undefined;
59
59
  segment_uuid?: string | undefined;
60
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
60
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"refiner", z.ZodObject<{
61
+ connectionId: z.ZodString;
62
+ entityId: z.ZodString;
63
+ instanceId: z.ZodString;
64
+ }, z.core.$strip>, z.ZodObject<{
65
+ generic_api_key: z.ZodString;
66
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"refiner", z.ZodObject<{
67
+ connectionId: z.ZodString;
68
+ entityId: z.ZodString;
69
+ instanceId: z.ZodString;
70
+ }, z.core.$strip>, z.ZodObject<{
71
+ generic_api_key: z.ZodString;
72
+ }, z.core.$strip>>]>;
61
73
  //#endregion
62
74
  export { refinerGetContacts };
63
75
  //# sourceMappingURL=get-contacts.d.mts.map
@@ -45,7 +45,19 @@ declare const refinerGetForms: import("@keystrokehq/action").WorkflowActionDefin
45
45
  page_length?: number | undefined;
46
46
  include_info?: boolean | undefined;
47
47
  include_config?: boolean | undefined;
48
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
48
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"refiner", z.ZodObject<{
49
+ connectionId: z.ZodString;
50
+ entityId: z.ZodString;
51
+ instanceId: z.ZodString;
52
+ }, z.core.$strip>, z.ZodObject<{
53
+ generic_api_key: z.ZodString;
54
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"refiner", z.ZodObject<{
55
+ connectionId: z.ZodString;
56
+ entityId: z.ZodString;
57
+ instanceId: z.ZodString;
58
+ }, z.core.$strip>, z.ZodObject<{
59
+ generic_api_key: z.ZodString;
60
+ }, z.core.$strip>>]>;
49
61
  //#endregion
50
62
  export { refinerGetForms };
51
63
  //# sourceMappingURL=get-forms.d.cts.map
@@ -45,7 +45,19 @@ declare const refinerGetForms: import("@keystrokehq/action").WorkflowActionDefin
45
45
  page_length?: number | undefined;
46
46
  include_info?: boolean | undefined;
47
47
  include_config?: boolean | undefined;
48
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
48
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"refiner", z.ZodObject<{
49
+ connectionId: z.ZodString;
50
+ entityId: z.ZodString;
51
+ instanceId: z.ZodString;
52
+ }, z.core.$strip>, z.ZodObject<{
53
+ generic_api_key: z.ZodString;
54
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"refiner", z.ZodObject<{
55
+ connectionId: z.ZodString;
56
+ entityId: z.ZodString;
57
+ instanceId: z.ZodString;
58
+ }, z.core.$strip>, z.ZodObject<{
59
+ generic_api_key: z.ZodString;
60
+ }, z.core.$strip>>]>;
49
61
  //#endregion
50
62
  export { refinerGetForms };
51
63
  //# sourceMappingURL=get-forms.d.mts.map
@@ -37,7 +37,19 @@ declare const refinerGetReporting: import("@keystrokehq/action").WorkflowActionD
37
37
  date_range_end?: string | undefined;
38
38
  date_range_start?: string | undefined;
39
39
  question_identifiers?: string[] | undefined;
40
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
40
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"refiner", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"refiner", z.ZodObject<{
47
+ connectionId: z.ZodString;
48
+ entityId: z.ZodString;
49
+ instanceId: z.ZodString;
50
+ }, z.core.$strip>, z.ZodObject<{
51
+ generic_api_key: z.ZodString;
52
+ }, z.core.$strip>>]>;
41
53
  //#endregion
42
54
  export { refinerGetReporting };
43
55
  //# sourceMappingURL=get-reporting.d.cts.map
@@ -37,7 +37,19 @@ declare const refinerGetReporting: import("@keystrokehq/action").WorkflowActionD
37
37
  date_range_end?: string | undefined;
38
38
  date_range_start?: string | undefined;
39
39
  question_identifiers?: string[] | undefined;
40
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
40
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"refiner", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"refiner", z.ZodObject<{
47
+ connectionId: z.ZodString;
48
+ entityId: z.ZodString;
49
+ instanceId: z.ZodString;
50
+ }, z.core.$strip>, z.ZodObject<{
51
+ generic_api_key: z.ZodString;
52
+ }, z.core.$strip>>]>;
41
53
  //#endregion
42
54
  export { refinerGetReporting };
43
55
  //# sourceMappingURL=get-reporting.d.mts.map
@@ -5,9 +5,9 @@ declare const RefinerGetResponsesInput: z.ZodObject<{
5
5
  page: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
6
6
  search: z.ZodOptional<z.ZodString>;
7
7
  include: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
8
- all: "all";
9
8
  completed: "completed";
10
9
  partials: "partials";
10
+ all: "all";
11
11
  }>>>;
12
12
  form_uuid: z.ZodOptional<z.ZodString>;
13
13
  form_uuids: z.ZodOptional<z.ZodArray<z.ZodString>>;
@@ -59,7 +59,7 @@ declare const RefinerGetResponsesOutput: z.ZodObject<{
59
59
  declare const refinerGetResponses: import("@keystrokehq/action").WorkflowActionDefinition<{
60
60
  page?: number | undefined;
61
61
  search?: string | undefined;
62
- include?: "all" | "completed" | "partials" | undefined;
62
+ include?: "completed" | "partials" | "all" | undefined;
63
63
  form_uuid?: string | undefined;
64
64
  form_uuids?: string[] | undefined;
65
65
  page_cursor?: string | undefined;
@@ -69,7 +69,19 @@ declare const refinerGetResponses: import("@keystrokehq/action").WorkflowActionD
69
69
  date_range_end?: string | undefined;
70
70
  with_attributes?: boolean | undefined;
71
71
  date_range_start?: string | undefined;
72
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
72
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"refiner", 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<"refiner", 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 { refinerGetResponses };
75
87
  //# sourceMappingURL=get-responses.d.cts.map
@@ -5,9 +5,9 @@ declare const RefinerGetResponsesInput: z.ZodObject<{
5
5
  page: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
6
6
  search: z.ZodOptional<z.ZodString>;
7
7
  include: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
8
- all: "all";
9
8
  completed: "completed";
10
9
  partials: "partials";
10
+ all: "all";
11
11
  }>>>;
12
12
  form_uuid: z.ZodOptional<z.ZodString>;
13
13
  form_uuids: z.ZodOptional<z.ZodArray<z.ZodString>>;
@@ -59,7 +59,7 @@ declare const RefinerGetResponsesOutput: z.ZodObject<{
59
59
  declare const refinerGetResponses: import("@keystrokehq/action").WorkflowActionDefinition<{
60
60
  page?: number | undefined;
61
61
  search?: string | undefined;
62
- include?: "all" | "completed" | "partials" | undefined;
62
+ include?: "completed" | "partials" | "all" | undefined;
63
63
  form_uuid?: string | undefined;
64
64
  form_uuids?: string[] | undefined;
65
65
  page_cursor?: string | undefined;
@@ -69,7 +69,19 @@ declare const refinerGetResponses: import("@keystrokehq/action").WorkflowActionD
69
69
  date_range_end?: string | undefined;
70
70
  with_attributes?: boolean | undefined;
71
71
  date_range_start?: string | undefined;
72
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
72
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"refiner", 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<"refiner", 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 { refinerGetResponses };
75
87
  //# sourceMappingURL=get-responses.d.mts.map
@@ -24,7 +24,19 @@ declare const refinerGetSegments: import("@keystrokehq/action").WorkflowActionDe
24
24
  page?: number | undefined;
25
25
  page_cursor?: string | undefined;
26
26
  page_length?: number | undefined;
27
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
27
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"refiner", 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<"refiner", 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 { refinerGetSegments };
30
42
  //# sourceMappingURL=get-segments.d.cts.map
@@ -24,7 +24,19 @@ declare const refinerGetSegments: import("@keystrokehq/action").WorkflowActionDe
24
24
  page?: number | undefined;
25
25
  page_cursor?: string | undefined;
26
26
  page_length?: number | undefined;
27
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
27
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"refiner", 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<"refiner", 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 { refinerGetSegments };
30
42
  //# sourceMappingURL=get-segments.d.mts.map
@@ -13,7 +13,19 @@ declare const refinerTrackEvent: import("@keystrokehq/action").WorkflowActionDef
13
13
  event: string;
14
14
  id?: string | undefined;
15
15
  email?: string | undefined;
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<"refiner", 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<"refiner", 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 { refinerTrackEvent };
19
31
  //# sourceMappingURL=track-event.d.cts.map
@@ -13,7 +13,19 @@ declare const refinerTrackEvent: import("@keystrokehq/action").WorkflowActionDef
13
13
  event: string;
14
14
  id?: string | undefined;
15
15
  email?: string | undefined;
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<"refiner", 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<"refiner", 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 { refinerTrackEvent };
19
31
  //# sourceMappingURL=track-event.d.mts.map
@@ -22,7 +22,19 @@ declare const refinerUpdateContact: import("@keystrokehq/action").WorkflowAction
22
22
  id: string;
23
23
  } | undefined;
24
24
  attributes?: Record<string, unknown> | undefined;
25
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
25
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"refiner", z.ZodObject<{
26
+ connectionId: z.ZodString;
27
+ entityId: z.ZodString;
28
+ instanceId: z.ZodString;
29
+ }, z.core.$strip>, z.ZodObject<{
30
+ generic_api_key: z.ZodString;
31
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"refiner", z.ZodObject<{
32
+ connectionId: z.ZodString;
33
+ entityId: z.ZodString;
34
+ instanceId: z.ZodString;
35
+ }, z.core.$strip>, z.ZodObject<{
36
+ generic_api_key: z.ZodString;
37
+ }, z.core.$strip>>]>;
26
38
  //#endregion
27
39
  export { refinerUpdateContact };
28
40
  //# sourceMappingURL=update-contact.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"update-contact.d.cts","names":[],"sources":["../../src/actions/update-contact.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;cAQzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;cAK1B,oBAAA,gCAAoB,wBAAA;EAAA;;;;;;;eAM/B,MAAA;AAAA"}
1
+ {"version":3,"file":"update-contact.d.cts","names":[],"sources":["../../src/actions/update-contact.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;cAQzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;cAK1B,oBAAA,gCAAoB,wBAAA;EAAA"}
@@ -22,7 +22,19 @@ declare const refinerUpdateContact: import("@keystrokehq/action").WorkflowAction
22
22
  id: string;
23
23
  } | undefined;
24
24
  attributes?: Record<string, unknown> | undefined;
25
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
25
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"refiner", z.ZodObject<{
26
+ connectionId: z.ZodString;
27
+ entityId: z.ZodString;
28
+ instanceId: z.ZodString;
29
+ }, z.core.$strip>, z.ZodObject<{
30
+ generic_api_key: z.ZodString;
31
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"refiner", z.ZodObject<{
32
+ connectionId: z.ZodString;
33
+ entityId: z.ZodString;
34
+ instanceId: z.ZodString;
35
+ }, z.core.$strip>, z.ZodObject<{
36
+ generic_api_key: z.ZodString;
37
+ }, z.core.$strip>>]>;
26
38
  //#endregion
27
39
  export { refinerUpdateContact };
28
40
  //# sourceMappingURL=update-contact.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"update-contact.d.mts","names":[],"sources":["../../src/actions/update-contact.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;cAQzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;cAK1B,oBAAA,gCAAoB,wBAAA;EAAA;;;;;;;eAM/B,MAAA;AAAA"}
1
+ {"version":3,"file":"update-contact.d.mts","names":[],"sources":["../../src/actions/update-contact.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;cAQzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;cAK1B,oBAAA,gCAAoB,wBAAA;EAAA"}
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 refiner = (0, require("@keystrokehq/keystroke/app").defineApp)({
4
+ const refiner = (0, _keystrokehq_keystroke_app.defineApp)({
3
5
  slug: "refiner",
4
- auth: "keystroke"
6
+ auth: "keystroke",
7
+ credential: { generic_api_key: zod.z.string() }
5
8
  });
6
9
  //#endregion
7
10
  exports.refiner = refiner;
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 refiner = defineApp({\n slug: \"refiner\",\n auth: \"keystroke\",\n});\n"],"mappings":";AAEA,MAAa,WAAA,uCAAA,CAAA,CAAA,UAAA,CAAoB;CAC/B,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 refiner = defineApp({\n slug: \"refiner\",\n auth: \"keystroke\",\n credential: {\n generic_api_key: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,WAAA,GAAA,2BAAA,UAAA,CAAoB;CAC/B,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 refiner: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
4
+ declare const refiner: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"refiner", 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 { refiner };
5
13
  //# sourceMappingURL=app.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,OAAA,6BAAO,GAAA,+BAAA,UAAA"}
1
+ {"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,OAAA,6BAAO,GAAA,+BAAA,UAAA,YAAA,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 refiner: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
4
+ declare const refiner: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"refiner", 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 { refiner };
5
13
  //# sourceMappingURL=app.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,OAAA,6BAAO,GAAA,+BAAA,UAAA"}
1
+ {"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,OAAA,6BAAO,GAAA,+BAAA,UAAA,YAAA,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 refiner = defineApp({
4
5
  slug: "refiner",
5
- auth: "keystroke"
6
+ auth: "keystroke",
7
+ credential: { generic_api_key: z.string() }
6
8
  });
7
9
  //#endregion
8
10
  export { refiner };
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 refiner = defineApp({\n slug: \"refiner\",\n auth: \"keystroke\",\n});\n"],"mappings":";;AAEA,MAAa,UAAU,UAAU;CAC/B,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 refiner = defineApp({\n slug: \"refiner\",\n auth: \"keystroke\",\n credential: {\n generic_api_key: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,UAAU,UAAU;CAC/B,MAAM;CACN,MAAM;CACN,YAAY,EACV,iBAAiB,EAAE,OAAO,EAC5B;AACF,CAAC"}
package/dist/catalog.cjs CHANGED
@@ -8,7 +8,7 @@ const refinerCatalog = {
8
8
  "logo": "https://logos.composio.dev/api/refiner",
9
9
  "authKind": "keystroke",
10
10
  "oauthScopes": [],
11
- "credentialFields": { "api_key": {
11
+ "credentialFields": { "generic_api_key": {
12
12
  "label": "Refiner API Key",
13
13
  "secret": true,
14
14
  "description": "Your personal API key obtained from your Refiner dashboard under 'Integrations > Rest API'."
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const refinerCatalog = {\n \"slug\": \"refiner\",\n \"name\": \"Refiner\",\n \"description\": \"Refiner is a customer feedback and survey tool designed to help businesses collect and analyze user insights.\",\n \"category\": \"Forms & Surveys\",\n \"logo\": \"https://logos.composio.dev/api/refiner\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"Refiner API Key\",\n \"secret\": true,\n \"description\": \"Your personal API key obtained from your Refiner dashboard under 'Integrations > Rest API'.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,iBAAiB;CAC5B,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"}
1
+ {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const refinerCatalog = {\n \"slug\": \"refiner\",\n \"name\": \"Refiner\",\n \"description\": \"Refiner is a customer feedback and survey tool designed to help businesses collect and analyze user insights.\",\n \"category\": \"Forms & Surveys\",\n \"logo\": \"https://logos.composio.dev/api/refiner\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"Refiner API Key\",\n \"secret\": true,\n \"description\": \"Your personal API key obtained from your Refiner dashboard under 'Integrations > Rest API'.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,iBAAiB;CAC5B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
@@ -9,7 +9,7 @@ declare const refinerCatalog: {
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
11
  readonly credentialFields: {
12
- readonly api_key: {
12
+ readonly generic_api_key: {
13
13
  readonly label: "Refiner API Key";
14
14
  readonly secret: true;
15
15
  readonly description: "Your personal API key obtained from your Refiner dashboard under 'Integrations > Rest API'.";
@@ -9,7 +9,7 @@ declare const refinerCatalog: {
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
11
  readonly credentialFields: {
12
- readonly api_key: {
12
+ readonly generic_api_key: {
13
13
  readonly label: "Refiner API Key";
14
14
  readonly secret: true;
15
15
  readonly description: "Your personal API key obtained from your Refiner dashboard under 'Integrations > Rest API'.";
package/dist/catalog.mjs CHANGED
@@ -8,7 +8,7 @@ const refinerCatalog = {
8
8
  "logo": "https://logos.composio.dev/api/refiner",
9
9
  "authKind": "keystroke",
10
10
  "oauthScopes": [],
11
- "credentialFields": { "api_key": {
11
+ "credentialFields": { "generic_api_key": {
12
12
  "label": "Refiner API Key",
13
13
  "secret": true,
14
14
  "description": "Your personal API key obtained from your Refiner dashboard under 'Integrations > Rest API'."
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const refinerCatalog = {\n \"slug\": \"refiner\",\n \"name\": \"Refiner\",\n \"description\": \"Refiner is a customer feedback and survey tool designed to help businesses collect and analyze user insights.\",\n \"category\": \"Forms & Surveys\",\n \"logo\": \"https://logos.composio.dev/api/refiner\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"Refiner API Key\",\n \"secret\": true,\n \"description\": \"Your personal API key obtained from your Refiner dashboard under 'Integrations > Rest API'.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,iBAAiB;CAC5B,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"}
1
+ {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const refinerCatalog = {\n \"slug\": \"refiner\",\n \"name\": \"Refiner\",\n \"description\": \"Refiner is a customer feedback and survey tool designed to help businesses collect and analyze user insights.\",\n \"category\": \"Forms & Surveys\",\n \"logo\": \"https://logos.composio.dev/api/refiner\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"Refiner API Key\",\n \"secret\": true,\n \"description\": \"Your personal API key obtained from your Refiner dashboard under 'Integrations > Rest API'.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,iBAAiB;CAC5B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/refiner",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"