@memori.ai/memori-api-client 0.7.0 → 0.8.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.
- package/CHANGELOG.md +18 -0
- package/dist/backend/memori.d.ts +8 -0
- package/dist/memori-api-client.cjs.development.js +11 -0
- package/dist/memori-api-client.cjs.development.js.map +1 -1
- package/dist/memori-api-client.cjs.production.min.js +1 -1
- package/dist/memori-api-client.cjs.production.min.js.map +1 -1
- package/dist/memori-api-client.esm.js +11 -0
- package/dist/memori-api-client.esm.js.map +1 -1
- package/dist/types.d.ts +3 -0
- package/package.json +1 -1
- package/src/backend/memori.ts +14 -0
- package/src/types.ts +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [0.8.0](https://github.com/memori-ai/memori-api-client/compare/v0.7.0...v0.8.0) (2023-01-04)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add tenant metaverse api ([cd24228](https://github.com/memori-ai/memori-api-client/commit/cd242283679cf05fc8d254a0960116e4136df7de))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Changes
|
|
12
|
+
|
|
13
|
+
* add new dialogState attrs ([eccf321](https://github.com/memori-ai/memori-api-client/commit/eccf321654a084873159697e592f14561542a07d))
|
|
14
|
+
* add new dialogState attrs ([87877f0](https://github.com/memori-ai/memori-api-client/commit/87877f0faa82061aab0635b8529aabfe90137db2))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Maintenance
|
|
18
|
+
|
|
19
|
+
* update dist ([3b8640a](https://github.com/memori-ai/memori-api-client/commit/3b8640a093b6248160d24f6d0e490b7bc8ac52a5))
|
|
20
|
+
|
|
3
21
|
## [0.7.0](https://github.com/memori-ai/memori-api-client/compare/v0.6.0...v0.7.0) (2022-12-21)
|
|
4
22
|
|
|
5
23
|
|
package/dist/backend/memori.d.ts
CHANGED
|
@@ -8,6 +8,14 @@ declare const _default: (apiUrl: string) => {
|
|
|
8
8
|
getTenantPublicMemoriList: (tenant: string) => Promise<ResponseSpec & {
|
|
9
9
|
memori: Memori[];
|
|
10
10
|
}>;
|
|
11
|
+
/**
|
|
12
|
+
* Gets a list of all the public Memori objects published on the Metaverse for a specific Tenant.
|
|
13
|
+
* @param tenant - The name of the tenant
|
|
14
|
+
* @returns A list of Memori objects
|
|
15
|
+
*/
|
|
16
|
+
getTenantMetaverseMemoriList: (tenant: string) => Promise<ResponseSpec & {
|
|
17
|
+
memori: Memori[];
|
|
18
|
+
}>;
|
|
11
19
|
/**
|
|
12
20
|
* Gets a list of all the public Memori objects for a specific Tenant accessible from user session.
|
|
13
21
|
* @param authToken - The login token
|
|
@@ -436,6 +436,17 @@ var memori = (function (apiUrl) {
|
|
|
436
436
|
});
|
|
437
437
|
},
|
|
438
438
|
|
|
439
|
+
/**
|
|
440
|
+
* Gets a list of all the public Memori objects published on the Metaverse for a specific Tenant.
|
|
441
|
+
* @param tenant - The name of the tenant
|
|
442
|
+
* @returns A list of Memori objects
|
|
443
|
+
*/
|
|
444
|
+
getTenantMetaverseMemoriList: function getTenantMetaverseMemoriList(tenant) {
|
|
445
|
+
return apiFetcher("/TenantMetaverseMemori/" + encodeURI(tenant), {
|
|
446
|
+
apiUrl: apiUrl
|
|
447
|
+
});
|
|
448
|
+
},
|
|
449
|
+
|
|
439
450
|
/**
|
|
440
451
|
* Gets a list of all the public Memori objects for a specific Tenant accessible from user session.
|
|
441
452
|
* @param authToken - The login token
|