Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/agents-a365-notifications/src/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}],
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/no-explicit-any": "warn",
"prefer-const": "error",
"no-var": "error",
"no-console": "error",
"no-console": "warn",
"semi": ["error", "always"],
"quotes": ["error", "single"],
"indent": ["error", 2],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
/**
* Channel-specific data.
*/
channelData: unknown;
channelData: any;

Check warning on line 48 in packages/agents-a365-notifications/src/models/agent-notification-activity.ts

View workflow job for this annotation

GitHub Actions / Node.js SDK (18)

Unexpected any. Specify a different type

Check warning on line 48 in packages/agents-a365-notifications/src/models/agent-notification-activity.ts

View workflow job for this annotation

GitHub Actions / Node.js SDK (20)

Unexpected any. Specify a different type

/**
* The text content of the activity.
Expand Down
4 changes: 2 additions & 2 deletions packages/agents-a365-notifications/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"target": "ES2020",
"lib": ["ES2023", "DOM"],
"lib": ["ES2020"],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
Expand All @@ -13,7 +13,7 @@
"sourceMap": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"types": ["node", "jest"]
"types": ["jest"]
},
"include": ["src/**/*"],
"exclude": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}],
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/no-explicit-any": "warn",
"prefer-const": "error",
"no-var": "error",
"no-console": "error",
"no-console": "warn",
"semi": ["error", "always"],
"quotes": ["error", "single"],
"indent": ["error", 2],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"lib": ["ES2023", "DOM"],
"lib": ["ES2020"],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
Expand All @@ -16,7 +16,7 @@
"moduleResolution": "node",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"types": ["node", "jest"]
"types": ["jest"]
},
"include": ["src/**/*"],
"exclude": [
Expand Down
2 changes: 1 addition & 1 deletion packages/agents-a365-observability/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
"directory": "nodejs/packages/agents-a365-observability"
},
"dependencies": {
"@azure/monitor-opentelemetry-exporter": "*",
"@microsoft/agents-a365-runtime": "workspace:*",
"@azure/monitor-opentelemetry-exporter": "*",
"@opentelemetry/api": "*",
"@opentelemetry/exporter-trace-otlp-http": "*",
"@opentelemetry/instrumentation": "*",
Expand Down
4 changes: 2 additions & 2 deletions packages/agents-a365-observability/src/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}],
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/no-explicit-any": "warn",
"prefer-const": "error",
"no-var": "error",
"no-console": "error",
"no-console": "warn",
"semi": ["error", "always"],
"quotes": ["error", "single"],
"indent": ["error", 2],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ export interface ServiceEndpoint {
/**
* Details for invoking another agent
*/
export interface InvokeAgentDetails extends EnhancedAgentDetails {
export interface InvokeAgentDetails extends AgentDetails {
/** The request payload for the agent invocation */
request?: AgentRequest;

Expand Down
Loading
Loading