@microsoft/agents-copilotstudio-client 1.3.1 → 1.4.0-beta.12.ga89f5b596d

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.
@@ -4,7 +4,7 @@
4
4
  */
5
5
  import type { Strategy, StrategySettings } from './strategy';
6
6
  /** @deprecated This interface will not be supported in future versions. Use StrategySettings instead. */
7
- export interface PrebuiltBotStrategySettings {
7
+ interface PrebuiltBotStrategySettings {
8
8
  readonly host: URL;
9
9
  readonly identifier: string;
10
10
  }
@@ -21,3 +21,4 @@ export declare class PrebuiltBotStrategy implements Strategy {
21
21
  constructor(settings: StrategySettings);
22
22
  getConversationUrl(conversationId?: string): string;
23
23
  }
24
+ export {};
@@ -4,7 +4,7 @@
4
4
  */
5
5
  import type { Strategy } from './strategy';
6
6
  /** @deprecated This interface will not be supported in future versions. Use StrategySettings instead. */
7
- export interface PublishedBotStrategySettings {
7
+ interface PublishedBotStrategySettings {
8
8
  readonly host: URL;
9
9
  readonly schema: string;
10
10
  }
@@ -17,3 +17,4 @@ export declare class PublishedBotStrategy implements Strategy {
17
17
  constructor(settings: PublishedBotStrategySettings);
18
18
  getConversationUrl(conversationId?: string): string;
19
19
  }
20
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/agents-copilotstudio-client",
3
- "version": "1.3.1",
3
+ "version": "1.4.0-beta.12.ga89f5b596d",
4
4
  "homepage": "https://github.com/microsoft/Agents-for-js",
5
5
  "repository": {
6
6
  "type": "git",
@@ -27,7 +27,7 @@
27
27
  "build:browser": "esbuild --platform=browser --target=es2019 --format=esm --bundle --sourcemap --minify --outfile=dist/src/browser.mjs src/index.ts"
28
28
  },
29
29
  "dependencies": {
30
- "@microsoft/agents-activity": "1.3.1",
30
+ "@microsoft/agents-activity": "1.4.0-beta.12.ga89f5b596d",
31
31
  "eventsource-client": "^1.2.0",
32
32
  "rxjs": "7.8.2",
33
33
  "uuid": "^11.1.0"
@@ -6,7 +6,7 @@
6
6
  import type { Strategy, StrategySettings } from './strategy'
7
7
 
8
8
  /** @deprecated This interface will not be supported in future versions. Use StrategySettings instead. */
9
- export interface PrebuiltBotStrategySettings {
9
+ interface PrebuiltBotStrategySettings {
10
10
  readonly host: URL;
11
11
  readonly identifier: string;
12
12
  }
@@ -6,7 +6,7 @@
6
6
  import type { Strategy, StrategySettings } from './strategy'
7
7
 
8
8
  /** @deprecated This interface will not be supported in future versions. Use StrategySettings instead. */
9
- export interface PublishedBotStrategySettings {
9
+ interface PublishedBotStrategySettings {
10
10
  readonly host: URL;
11
11
  readonly schema: string;
12
12
  }