@keystrokehq/new_relic 0.1.3 → 0.1.4
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/create-ai-notifications-destination.d.cts +3 -3
- package/dist/actions/create-ai-notifications-destination.d.mts +3 -3
- package/dist/actions/create-ai-workflow.d.cts +3 -3
- package/dist/actions/create-ai-workflow.d.mts +3 -3
- package/dist/actions/create-entity-relationship.d.cts +2 -2
- package/dist/actions/create-entity-relationship.d.mts +2 -2
- package/dist/catalog.cjs +1 -1
- package/dist/catalog.cjs.map +1 -1
- package/dist/catalog.d.cts +1 -1
- package/dist/catalog.d.mts +1 -1
- package/dist/catalog.mjs +1 -1
- package/dist/catalog.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -17,11 +17,11 @@ declare const NewRelicCreateAiNotificationsDestinationInput: z.ZodObject<{
|
|
|
17
17
|
}, z.core.$strip>>;
|
|
18
18
|
name: z.ZodString;
|
|
19
19
|
type: z.ZodEnum<{
|
|
20
|
-
JIRA: "JIRA";
|
|
21
|
-
SERVICENOW: "SERVICENOW";
|
|
22
20
|
WEBHOOK: "WEBHOOK";
|
|
23
21
|
EMAIL: "EMAIL";
|
|
24
22
|
SLACK: "SLACK";
|
|
23
|
+
JIRA: "JIRA";
|
|
24
|
+
SERVICENOW: "SERVICENOW";
|
|
25
25
|
PAGERDUTY: "PAGERDUTY";
|
|
26
26
|
}>;
|
|
27
27
|
properties: z.ZodArray<z.ZodObject<{
|
|
@@ -46,7 +46,7 @@ declare const newRelicCreateAiNotificationsDestination: import("@keystrokehq/act
|
|
|
46
46
|
account_id: number;
|
|
47
47
|
destination: {
|
|
48
48
|
name: string;
|
|
49
|
-
type: "
|
|
49
|
+
type: "WEBHOOK" | "EMAIL" | "SLACK" | "JIRA" | "SERVICENOW" | "PAGERDUTY";
|
|
50
50
|
properties: {
|
|
51
51
|
[x: string]: unknown;
|
|
52
52
|
key: string;
|
|
@@ -17,11 +17,11 @@ declare const NewRelicCreateAiNotificationsDestinationInput: z.ZodObject<{
|
|
|
17
17
|
}, z.core.$strip>>;
|
|
18
18
|
name: z.ZodString;
|
|
19
19
|
type: z.ZodEnum<{
|
|
20
|
-
JIRA: "JIRA";
|
|
21
|
-
SERVICENOW: "SERVICENOW";
|
|
22
20
|
WEBHOOK: "WEBHOOK";
|
|
23
21
|
EMAIL: "EMAIL";
|
|
24
22
|
SLACK: "SLACK";
|
|
23
|
+
JIRA: "JIRA";
|
|
24
|
+
SERVICENOW: "SERVICENOW";
|
|
25
25
|
PAGERDUTY: "PAGERDUTY";
|
|
26
26
|
}>;
|
|
27
27
|
properties: z.ZodArray<z.ZodObject<{
|
|
@@ -46,7 +46,7 @@ declare const newRelicCreateAiNotificationsDestination: import("@keystrokehq/act
|
|
|
46
46
|
account_id: number;
|
|
47
47
|
destination: {
|
|
48
48
|
name: string;
|
|
49
|
-
type: "
|
|
49
|
+
type: "WEBHOOK" | "EMAIL" | "SLACK" | "JIRA" | "SERVICENOW" | "PAGERDUTY";
|
|
50
50
|
properties: {
|
|
51
51
|
[x: string]: unknown;
|
|
52
52
|
key: string;
|
|
@@ -16,15 +16,15 @@ declare const NewRelicCreateAiWorkflowInput: z.ZodObject<{
|
|
|
16
16
|
predicates: z.ZodArray<z.ZodObject<{
|
|
17
17
|
values: z.ZodArray<z.ZodString>;
|
|
18
18
|
operator: z.ZodEnum<{
|
|
19
|
-
EXACTLY_MATCHES: "EXACTLY_MATCHES";
|
|
20
19
|
CONTAINS: "CONTAINS";
|
|
20
|
+
IS: "IS";
|
|
21
|
+
EXACTLY_MATCHES: "EXACTLY_MATCHES";
|
|
21
22
|
DOES_NOT_CONTAIN: "DOES_NOT_CONTAIN";
|
|
22
23
|
DOES_NOT_EXACTLY_MATCH: "DOES_NOT_EXACTLY_MATCH";
|
|
23
24
|
ENDS_WITH: "ENDS_WITH";
|
|
24
25
|
EQUAL: "EQUAL";
|
|
25
26
|
GREATER_OR_EQUAL: "GREATER_OR_EQUAL";
|
|
26
27
|
GREATER: "GREATER";
|
|
27
|
-
IS: "IS";
|
|
28
28
|
IS_NOT: "IS_NOT";
|
|
29
29
|
LESS_OR_EQUAL: "LESS_OR_EQUAL";
|
|
30
30
|
LESS: "LESS";
|
|
@@ -84,7 +84,7 @@ declare const newRelicCreateAiWorkflow: import("@keystrokehq/action").WorkflowAc
|
|
|
84
84
|
predicates: {
|
|
85
85
|
[x: string]: unknown;
|
|
86
86
|
values: string[];
|
|
87
|
-
operator: "
|
|
87
|
+
operator: "CONTAINS" | "IS" | "EXACTLY_MATCHES" | "DOES_NOT_CONTAIN" | "DOES_NOT_EXACTLY_MATCH" | "ENDS_WITH" | "EQUAL" | "GREATER_OR_EQUAL" | "GREATER" | "IS_NOT" | "LESS_OR_EQUAL" | "LESS" | "STARTS_WITH";
|
|
88
88
|
attribute: string;
|
|
89
89
|
}[];
|
|
90
90
|
type?: string | undefined;
|
|
@@ -16,15 +16,15 @@ declare const NewRelicCreateAiWorkflowInput: z.ZodObject<{
|
|
|
16
16
|
predicates: z.ZodArray<z.ZodObject<{
|
|
17
17
|
values: z.ZodArray<z.ZodString>;
|
|
18
18
|
operator: z.ZodEnum<{
|
|
19
|
-
EXACTLY_MATCHES: "EXACTLY_MATCHES";
|
|
20
19
|
CONTAINS: "CONTAINS";
|
|
20
|
+
IS: "IS";
|
|
21
|
+
EXACTLY_MATCHES: "EXACTLY_MATCHES";
|
|
21
22
|
DOES_NOT_CONTAIN: "DOES_NOT_CONTAIN";
|
|
22
23
|
DOES_NOT_EXACTLY_MATCH: "DOES_NOT_EXACTLY_MATCH";
|
|
23
24
|
ENDS_WITH: "ENDS_WITH";
|
|
24
25
|
EQUAL: "EQUAL";
|
|
25
26
|
GREATER_OR_EQUAL: "GREATER_OR_EQUAL";
|
|
26
27
|
GREATER: "GREATER";
|
|
27
|
-
IS: "IS";
|
|
28
28
|
IS_NOT: "IS_NOT";
|
|
29
29
|
LESS_OR_EQUAL: "LESS_OR_EQUAL";
|
|
30
30
|
LESS: "LESS";
|
|
@@ -84,7 +84,7 @@ declare const newRelicCreateAiWorkflow: import("@keystrokehq/action").WorkflowAc
|
|
|
84
84
|
predicates: {
|
|
85
85
|
[x: string]: unknown;
|
|
86
86
|
values: string[];
|
|
87
|
-
operator: "
|
|
87
|
+
operator: "CONTAINS" | "IS" | "EXACTLY_MATCHES" | "DOES_NOT_CONTAIN" | "DOES_NOT_EXACTLY_MATCH" | "ENDS_WITH" | "EQUAL" | "GREATER_OR_EQUAL" | "GREATER" | "IS_NOT" | "LESS_OR_EQUAL" | "LESS" | "STARTS_WITH";
|
|
88
88
|
attribute: string;
|
|
89
89
|
}[];
|
|
90
90
|
type?: string | undefined;
|
|
@@ -4,10 +4,10 @@ import { z } from "zod";
|
|
|
4
4
|
declare const NewRelicCreateEntityRelationshipInput: z.ZodObject<{
|
|
5
5
|
type: z.ZodEnum<{
|
|
6
6
|
CONTAINS: "CONTAINS";
|
|
7
|
-
IS: "IS";
|
|
8
7
|
CALLS: "CALLS";
|
|
9
8
|
HOSTS: "HOSTS";
|
|
10
9
|
SERVES: "SERVES";
|
|
10
|
+
IS: "IS";
|
|
11
11
|
OPERATES_IN: "OPERATES_IN";
|
|
12
12
|
CONNECTS_TO: "CONNECTS_TO";
|
|
13
13
|
BUILT_FROM: "BUILT_FROM";
|
|
@@ -28,7 +28,7 @@ declare const NewRelicCreateEntityRelationshipOutput: z.ZodObject<{
|
|
|
28
28
|
}, z.core.$loose>>>>;
|
|
29
29
|
}, z.core.$loose>;
|
|
30
30
|
declare const newRelicCreateEntityRelationship: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
31
|
-
type: "CONTAINS" | "
|
|
31
|
+
type: "CONTAINS" | "CALLS" | "HOSTS" | "SERVES" | "IS" | "OPERATES_IN" | "CONNECTS_TO" | "BUILT_FROM" | "MEASURES" | "PRODUCES" | "CONSUMES" | "MANAGES" | "OWNS" | "TEST";
|
|
32
32
|
source_entity_guid: string;
|
|
33
33
|
target_entity_guid: string;
|
|
34
34
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -4,10 +4,10 @@ import { z } from "zod";
|
|
|
4
4
|
declare const NewRelicCreateEntityRelationshipInput: z.ZodObject<{
|
|
5
5
|
type: z.ZodEnum<{
|
|
6
6
|
CONTAINS: "CONTAINS";
|
|
7
|
-
IS: "IS";
|
|
8
7
|
CALLS: "CALLS";
|
|
9
8
|
HOSTS: "HOSTS";
|
|
10
9
|
SERVES: "SERVES";
|
|
10
|
+
IS: "IS";
|
|
11
11
|
OPERATES_IN: "OPERATES_IN";
|
|
12
12
|
CONNECTS_TO: "CONNECTS_TO";
|
|
13
13
|
BUILT_FROM: "BUILT_FROM";
|
|
@@ -28,7 +28,7 @@ declare const NewRelicCreateEntityRelationshipOutput: z.ZodObject<{
|
|
|
28
28
|
}, z.core.$loose>>>>;
|
|
29
29
|
}, z.core.$loose>;
|
|
30
30
|
declare const newRelicCreateEntityRelationship: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
31
|
-
type: "CONTAINS" | "
|
|
31
|
+
type: "CONTAINS" | "CALLS" | "HOSTS" | "SERVES" | "IS" | "OPERATES_IN" | "CONNECTS_TO" | "BUILT_FROM" | "MEASURES" | "PRODUCES" | "CONSUMES" | "MANAGES" | "OWNS" | "TEST";
|
|
32
32
|
source_entity_guid: string;
|
|
33
33
|
target_entity_guid: string;
|
|
34
34
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
package/dist/catalog.cjs
CHANGED
|
@@ -13,7 +13,7 @@ const newRelicCatalog = {
|
|
|
13
13
|
"label": "Account Region",
|
|
14
14
|
"description": "The region of the New Relic account, either 'US' or 'EU'. This determines the base URL for API requests."
|
|
15
15
|
},
|
|
16
|
-
"
|
|
16
|
+
"generic_api_key": {
|
|
17
17
|
"label": "New Relic User API Key",
|
|
18
18
|
"secret": true,
|
|
19
19
|
"description": "The User API key for authenticating requests to New Relic's APIs."
|
package/dist/catalog.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const newRelicCatalog = {\n \"slug\": \"new_relic\",\n \"name\": \"New Relic\",\n \"description\": \"New Relic is a comprehensive observability platform that helps developers and operations teams monitor, debug, and improve their entire stack, including applications, infrastructure, and customer experience.\",\n \"category\": \"Server Monitoring\",\n \"logo\": \"https://logos.composio.dev/api/new_relic\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"region\": {\n \"label\": \"Account Region\",\n \"description\": \"The region of the New Relic account, either 'US' or 'EU'. This determines the base URL for API requests.\"\n },\n \"
|
|
1
|
+
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const newRelicCatalog = {\n \"slug\": \"new_relic\",\n \"name\": \"New Relic\",\n \"description\": \"New Relic is a comprehensive observability platform that helps developers and operations teams monitor, debug, and improve their entire stack, including applications, infrastructure, and customer experience.\",\n \"category\": \"Server Monitoring\",\n \"logo\": \"https://logos.composio.dev/api/new_relic\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"region\": {\n \"label\": \"Account Region\",\n \"description\": \"The region of the New Relic account, either 'US' or 'EU'. This determines the base URL for API requests.\"\n },\n \"generic_api_key\": {\n \"label\": \"New Relic User API Key\",\n \"secret\": true,\n \"description\": \"The User API key for authenticating requests to New Relic's APIs.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB;EAClB,UAAU;GACR,SAAS;GACT,eAAe;EACjB;EACA,mBAAmB;GACjB,SAAS;GACT,UAAU;GACV,eAAe;EACjB;CACF;CACA,oBAAoB;AACtB"}
|
package/dist/catalog.d.cts
CHANGED
|
@@ -13,7 +13,7 @@ declare const newRelicCatalog: {
|
|
|
13
13
|
readonly label: "Account Region";
|
|
14
14
|
readonly description: "The region of the New Relic account, either 'US' or 'EU'. This determines the base URL for API requests.";
|
|
15
15
|
};
|
|
16
|
-
readonly
|
|
16
|
+
readonly generic_api_key: {
|
|
17
17
|
readonly label: "New Relic User API Key";
|
|
18
18
|
readonly secret: true;
|
|
19
19
|
readonly description: "The User API key for authenticating requests to New Relic's APIs.";
|
package/dist/catalog.d.mts
CHANGED
|
@@ -13,7 +13,7 @@ declare const newRelicCatalog: {
|
|
|
13
13
|
readonly label: "Account Region";
|
|
14
14
|
readonly description: "The region of the New Relic account, either 'US' or 'EU'. This determines the base URL for API requests.";
|
|
15
15
|
};
|
|
16
|
-
readonly
|
|
16
|
+
readonly generic_api_key: {
|
|
17
17
|
readonly label: "New Relic User API Key";
|
|
18
18
|
readonly secret: true;
|
|
19
19
|
readonly description: "The User API key for authenticating requests to New Relic's APIs.";
|
package/dist/catalog.mjs
CHANGED
|
@@ -13,7 +13,7 @@ const newRelicCatalog = {
|
|
|
13
13
|
"label": "Account Region",
|
|
14
14
|
"description": "The region of the New Relic account, either 'US' or 'EU'. This determines the base URL for API requests."
|
|
15
15
|
},
|
|
16
|
-
"
|
|
16
|
+
"generic_api_key": {
|
|
17
17
|
"label": "New Relic User API Key",
|
|
18
18
|
"secret": true,
|
|
19
19
|
"description": "The User API key for authenticating requests to New Relic's APIs."
|
package/dist/catalog.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const newRelicCatalog = {\n \"slug\": \"new_relic\",\n \"name\": \"New Relic\",\n \"description\": \"New Relic is a comprehensive observability platform that helps developers and operations teams monitor, debug, and improve their entire stack, including applications, infrastructure, and customer experience.\",\n \"category\": \"Server Monitoring\",\n \"logo\": \"https://logos.composio.dev/api/new_relic\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"region\": {\n \"label\": \"Account Region\",\n \"description\": \"The region of the New Relic account, either 'US' or 'EU'. This determines the base URL for API requests.\"\n },\n \"
|
|
1
|
+
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const newRelicCatalog = {\n \"slug\": \"new_relic\",\n \"name\": \"New Relic\",\n \"description\": \"New Relic is a comprehensive observability platform that helps developers and operations teams monitor, debug, and improve their entire stack, including applications, infrastructure, and customer experience.\",\n \"category\": \"Server Monitoring\",\n \"logo\": \"https://logos.composio.dev/api/new_relic\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"region\": {\n \"label\": \"Account Region\",\n \"description\": \"The region of the New Relic account, either 'US' or 'EU'. This determines the base URL for API requests.\"\n },\n \"generic_api_key\": {\n \"label\": \"New Relic User API Key\",\n \"secret\": true,\n \"description\": \"The User API key for authenticating requests to New Relic's APIs.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB;EAClB,UAAU;GACR,SAAS;GACT,eAAe;EACjB;EACA,mBAAmB;GACjB,SAAS;GACT,UAAU;GACV,eAAe;EACjB;CACF;CACA,oBAAoB;AACtB"}
|