ai-hist-native 0.15.5 → 0.15.6

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/index.d.ts CHANGED
@@ -462,6 +462,7 @@ export interface CloudPushResult {
462
462
  syncSkipped: boolean
463
463
  }
464
464
  export declare function cloudLoadAuth(baseUrl?: string | undefined | null): Promise<CloudAuth | null>
465
+ export declare function cloudValidateExchangeBaseUrl(baseUrl?: string | undefined | null): Promise<void>
465
466
  export declare function cloudLogin(options?: CloudOptions | undefined | null): Promise<CloudAuth>
466
467
  export declare function enableCloud(options?: CloudOptions | undefined | null): Promise<CloudPushResult>
467
468
  export declare function pushCloud(options?: CloudOptions | undefined | null): Promise<CloudPushResult>
package/index.js CHANGED
@@ -310,7 +310,7 @@ if (!nativeBinding) {
310
310
  throw new Error(`Failed to load native binding`)
311
311
  }
312
312
 
313
- const { nativeContractVersion, nativeBuildProfile, search, recent, getSession, getSessionEventsPage, getSessionToolCallsPage, getSessionFileEditsPage, stats, listSessionCatalogPage, listSessionCatalog, discoverSessions, hydrateSession, getSessionRelationships, getSessionTree, getSessionChildrenPage, sync, syncLocal, syncAndPush, accessToken, replay, cloudLoadAuth, cloudLogin, enableCloud, pushCloud, installGitHooks, linkGitCommit, createShareableTrace } = nativeBinding
313
+ const { nativeContractVersion, nativeBuildProfile, search, recent, getSession, getSessionEventsPage, getSessionToolCallsPage, getSessionFileEditsPage, stats, listSessionCatalogPage, listSessionCatalog, discoverSessions, hydrateSession, getSessionRelationships, getSessionTree, getSessionChildrenPage, sync, syncLocal, syncAndPush, accessToken, replay, cloudLoadAuth, cloudValidateExchangeBaseUrl, cloudLogin, enableCloud, pushCloud, installGitHooks, linkGitCommit, createShareableTrace } = nativeBinding
314
314
 
315
315
  module.exports.nativeContractVersion = nativeContractVersion
316
316
  module.exports.nativeBuildProfile = nativeBuildProfile
@@ -334,6 +334,7 @@ module.exports.syncAndPush = syncAndPush
334
334
  module.exports.accessToken = accessToken
335
335
  module.exports.replay = replay
336
336
  module.exports.cloudLoadAuth = cloudLoadAuth
337
+ module.exports.cloudValidateExchangeBaseUrl = cloudValidateExchangeBaseUrl
337
338
  module.exports.cloudLogin = cloudLogin
338
339
  module.exports.enableCloud = enableCloud
339
340
  module.exports.pushCloud = pushCloud
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-hist-native-darwin-arm64",
3
- "version": "0.15.5",
3
+ "version": "0.15.6",
4
4
  "os": [
5
5
  "darwin"
6
6
  ],
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-hist-native-darwin-x64",
3
- "version": "0.15.5",
3
+ "version": "0.15.6",
4
4
  "os": [
5
5
  "darwin"
6
6
  ],
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-hist-native-linux-arm64-gnu",
3
- "version": "0.15.5",
3
+ "version": "0.15.6",
4
4
  "os": [
5
5
  "linux"
6
6
  ],
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-hist-native-linux-arm64-musl",
3
- "version": "0.15.5",
3
+ "version": "0.15.6",
4
4
  "os": [
5
5
  "linux"
6
6
  ],
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-hist-native-linux-x64-gnu",
3
- "version": "0.15.5",
3
+ "version": "0.15.6",
4
4
  "os": [
5
5
  "linux"
6
6
  ],
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-hist-native-linux-x64-musl",
3
- "version": "0.15.5",
3
+ "version": "0.15.6",
4
4
  "os": [
5
5
  "linux"
6
6
  ],
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-hist-native-win32-x64-msvc",
3
- "version": "0.15.5",
3
+ "version": "0.15.6",
4
4
  "os": [
5
5
  "win32"
6
6
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-hist-native",
3
- "version": "0.15.5",
3
+ "version": "0.15.6",
4
4
  "description": "Mandatory Node-API engine for RelayHistory.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -44,12 +44,12 @@
44
44
  "@napi-rs/cli": "^2.18.4"
45
45
  },
46
46
  "optionalDependencies": {
47
- "ai-hist-native-darwin-arm64": "0.15.5",
48
- "ai-hist-native-darwin-x64": "0.15.5",
49
- "ai-hist-native-linux-x64-gnu": "0.15.5",
50
- "ai-hist-native-linux-arm64-gnu": "0.15.5",
51
- "ai-hist-native-linux-x64-musl": "0.15.5",
52
- "ai-hist-native-linux-arm64-musl": "0.15.5",
53
- "ai-hist-native-win32-x64-msvc": "0.15.5"
47
+ "ai-hist-native-darwin-arm64": "0.15.6",
48
+ "ai-hist-native-darwin-x64": "0.15.6",
49
+ "ai-hist-native-linux-x64-gnu": "0.15.6",
50
+ "ai-hist-native-linux-arm64-gnu": "0.15.6",
51
+ "ai-hist-native-linux-x64-musl": "0.15.6",
52
+ "ai-hist-native-linux-arm64-musl": "0.15.6",
53
+ "ai-hist-native-win32-x64-msvc": "0.15.6"
54
54
  }
55
55
  }