@learncard/learn-cloud-plugin 1.1.9 → 1.1.11

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/types.d.ts CHANGED
@@ -21,6 +21,7 @@ export type LearnCloudPluginMethods = {
21
21
  learnCloudCount: <Document extends Record<string, any>>(query: Filter<Document>, includeAssociatedDids?: boolean) => Promise<number>;
22
22
  learnCloudUpdate: <Document extends Record<string, any>>(query: Filter<Document>, update: Partial<Document>) => Promise<number>;
23
23
  learnCloudDelete: <Document extends Record<string, any>>(query: Filter<Document>, includeAssociatedDids?: boolean) => Promise<number | false>;
24
+ learnCloudBatchResolve: (uris: string[]) => Promise<(VC | VP | null)[]>;
24
25
  };
25
26
  /** @group LearnCloud Plugin */
26
27
  export type LearnCloudPlugin = Plugin<'LearnCloud', 'index' | 'read' | 'store', LearnCloudPluginMethods, 'id', LearnCloudPluginDependentMethods>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@learncard/learn-cloud-plugin",
3
- "version": "1.1.9",
3
+ "version": "1.1.11",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/learn-cloud-plugin.esm.js",
@@ -29,7 +29,7 @@
29
29
  "jest": "^29.3.0",
30
30
  "shx": "^0.3.4",
31
31
  "ts-jest": "^29.0.3",
32
- "@learncard/learn-cloud-service": "^1.2.0",
32
+ "@learncard/learn-cloud-service": "^1.2.2",
33
33
  "@learncard/types": "5.3.2"
34
34
  },
35
35
  "types": "./dist/index.d.ts",
@@ -40,7 +40,7 @@
40
40
  "@learncard/core": "9.0.3",
41
41
  "@learncard/didkit-plugin": "1.1.0",
42
42
  "@learncard/helpers": "^1.0.7",
43
- "@learncard/learn-cloud-client": "1.1.9"
43
+ "@learncard/learn-cloud-client": "1.1.11"
44
44
  },
45
45
  "scripts": {
46
46
  "build": "node ./scripts/build.mjs && shx cp ./scripts/mixedEntypoint.js ./dist/index.js && tsc --p tsconfig.json",