@sentry/junior-scheduler 0.71.2 → 0.72.0
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/schedule-tools.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { type AgentPluginCredentialSubject, type Destination, type
|
|
1
|
+
import { type AgentPluginCredentialSubject, type Destination, type Requester, type AgentPluginState, type AgentPluginToolDefinition } from "@sentry/junior-plugin-api";
|
|
2
2
|
export interface SchedulerToolContext {
|
|
3
3
|
credentialSubject?: AgentPluginCredentialSubject;
|
|
4
4
|
destination?: Destination;
|
|
5
|
-
requester?:
|
|
5
|
+
requester?: Requester;
|
|
6
6
|
state: AgentPluginState;
|
|
7
7
|
userText?: string;
|
|
8
8
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sentry/junior-scheduler",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.72.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@sinclair/typebox": "^0.34.49",
|
|
26
|
-
"@sentry/junior-plugin-api": "0.
|
|
26
|
+
"@sentry/junior-plugin-api": "0.72.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/node": "^25.9.1",
|
package/src/schedule-tools.ts
CHANGED
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
destinationSchema,
|
|
7
7
|
type AgentPluginCredentialSubject,
|
|
8
8
|
type Destination,
|
|
9
|
-
type
|
|
9
|
+
type Requester,
|
|
10
10
|
type AgentPluginState,
|
|
11
11
|
type AgentPluginToolDefinition,
|
|
12
12
|
} from "@sentry/junior-plugin-api";
|
|
@@ -26,7 +26,7 @@ import type {
|
|
|
26
26
|
export interface SchedulerToolContext {
|
|
27
27
|
credentialSubject?: AgentPluginCredentialSubject;
|
|
28
28
|
destination?: Destination;
|
|
29
|
-
requester?:
|
|
29
|
+
requester?: Requester;
|
|
30
30
|
state: AgentPluginState;
|
|
31
31
|
userText?: string;
|
|
32
32
|
}
|