@microsoft/agents-hosting-storage-cosmos 0.6.18 → 0.6.22

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.
@@ -2,7 +2,7 @@ import { CosmosDbPartitionedStorageOptions } from './cosmosDbPartitionedStorageO
2
2
  import { Storage, StoreItems } from '@microsoft/agents-hosting';
3
3
  /**
4
4
  * A utility class to ensure that a specific asynchronous task is executed only once for a given key.
5
- * @template T The type of the result returned by the asynchronous task.
5
+ * @typeParam T The type of the result returned by the asynchronous task.
6
6
  */
7
7
  export declare class DoOnce<T> {
8
8
  private task;
@@ -8,7 +8,7 @@ const cosmosDbKeyEscape_1 = require("./cosmosDbKeyEscape");
8
8
  const documentStoreItem_1 = require("./documentStoreItem");
9
9
  /**
10
10
  * A utility class to ensure that a specific asynchronous task is executed only once for a given key.
11
- * @template T The type of the result returned by the asynchronous task.
11
+ * @typeParam T The type of the result returned by the asynchronous task.
12
12
  */
13
13
  class DoOnce {
14
14
  constructor() {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@microsoft/agents-hosting-storage-cosmos",
4
- "version": "0.6.18",
4
+ "version": "0.6.22",
5
5
  "homepage": "https://github.com/microsoft/Agents-for-js",
6
6
  "repository": {
7
7
  "type": "git",
@@ -17,7 +17,7 @@
17
17
  "types": "dist/src/index.d.ts",
18
18
  "dependencies": {
19
19
  "@azure/cosmos": "^4.4.1",
20
- "@microsoft/agents-hosting": "0.6.18"
20
+ "@microsoft/agents-hosting": "0.6.22"
21
21
  },
22
22
  "license": "MIT",
23
23
  "files": [
@@ -9,7 +9,7 @@ import { Storage, StoreItems } from '@microsoft/agents-hosting'
9
9
 
10
10
  /**
11
11
  * A utility class to ensure that a specific asynchronous task is executed only once for a given key.
12
- * @template T The type of the result returned by the asynchronous task.
12
+ * @typeParam T The type of the result returned by the asynchronous task.
13
13
  */
14
14
  export class DoOnce<T> {
15
15
  private task: {