@fencyai/js 0.1.88 → 0.1.90
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/lib/api/listMemories.js +0 -3
- package/lib/utils/version.js +1 -1
- package/package.json +2 -2
package/lib/api/listMemories.js
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { getPackageVersion } from '../utils/version';
|
|
2
2
|
export async function listMemories(params) {
|
|
3
3
|
try {
|
|
4
|
-
console.log('listMemories');
|
|
5
|
-
console.log('params', params);
|
|
6
4
|
const response = await listMemoriesApi({
|
|
7
5
|
baseUrl: params.baseUrl,
|
|
8
6
|
pk: params.pk,
|
|
@@ -43,7 +41,6 @@ async function listMemoriesApi(params) {
|
|
|
43
41
|
});
|
|
44
42
|
}
|
|
45
43
|
const queryString = queryParams.toString();
|
|
46
|
-
console.log('queryString', queryString);
|
|
47
44
|
const response = await fetch(`${params.baseUrl}/v1/pub/memories?${queryString}`, {
|
|
48
45
|
method: 'GET',
|
|
49
46
|
headers: {
|
package/lib/utils/version.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// Browser-compatible version utility
|
|
2
2
|
// The version is set at build time and can be overridden if needed
|
|
3
3
|
// Build-time version constant - this should be updated during the build process
|
|
4
|
-
const SDK_VERSION = '0.1.
|
|
4
|
+
const SDK_VERSION = '0.1.88';
|
|
5
5
|
// Allow runtime override if needed
|
|
6
6
|
let versionOverride = null;
|
|
7
7
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fencyai/js",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.90",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"author": "staklau <steinaageklaussen@gmail.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"ts-jest": "^29.1.1",
|
|
43
43
|
"typescript": "^5.3.3"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "a01cd180b3c4d9d3810baf9de72c2d4dcaab7b5b"
|
|
46
46
|
}
|