@or-sdk/idw 4.1.2 → 4.1.3-beta.1794.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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SimpleNode } from './common';
|
|
2
|
-
export type Memory = Omit<SimpleNode, 'icon'>;
|
|
2
|
+
export type Memory = Omit<SimpleNode, 'icon' | 'description'>;
|
|
3
3
|
export type ListMemories = Memory[];
|
|
4
4
|
export type MemoryCreateData = Pick<Memory, 'id' | 'name'>;
|
|
5
5
|
export type MemoryUpdateData = Partial<MemoryCreateData>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"memory.d.ts","sourceRoot":"","sources":["../../../src/types/memory.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAEtC,MAAM,MAAM,MAAM,GAAG,IAAI,CAAC,UAAU,EAAE,MAAM,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"memory.d.ts","sourceRoot":"","sources":["../../../src/types/memory.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAEtC,MAAM,MAAM,MAAM,GAAG,IAAI,CAAC,UAAU,EAAE,MAAM,GAAC,aAAa,CAAC,CAAC;AAC5D,MAAM,MAAM,YAAY,GAAG,MAAM,EAAE,CAAC;AACpC,MAAM,MAAM,gBAAgB,GAAG,IAAI,CAAC,MAAM,EAAE,IAAI,GAAG,MAAM,CAAC,CAAC;AAC3D,MAAM,MAAM,gBAAgB,GAAG,OAAO,CAAC,gBAAgB,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "4.1.
|
|
2
|
+
"version": "4.1.3-beta.1794.0",
|
|
3
3
|
"name": "@or-sdk/idw",
|
|
4
4
|
"main": "dist/cjs/index.js",
|
|
5
5
|
"module": "dist/esm/index.js",
|
|
@@ -27,6 +27,5 @@
|
|
|
27
27
|
"@or-sdk/base": "^0.28.3",
|
|
28
28
|
"@or-sdk/deployer": "^1.1.5",
|
|
29
29
|
"@or-sdk/providers": "^0.2.4"
|
|
30
|
-
}
|
|
31
|
-
"gitHead": "e9e475fd855f76d0059654f0e99bddfdfad2e003"
|
|
30
|
+
}
|
|
32
31
|
}
|
package/src/types/memory.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SimpleNode } from './common';
|
|
2
2
|
|
|
3
|
-
export type Memory = Omit<SimpleNode, 'icon'>;
|
|
3
|
+
export type Memory = Omit<SimpleNode, 'icon'|'description'>;
|
|
4
4
|
export type ListMemories = Memory[];
|
|
5
5
|
export type MemoryCreateData = Pick<Memory, 'id' | 'name'>;
|
|
6
6
|
export type MemoryUpdateData = Partial<MemoryCreateData>;
|