@1interface/chat-shell 0.4.2 → 0.4.3

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +5 -0
  2. package/package.json +6 -6
package/dist/index.d.ts CHANGED
@@ -31,6 +31,7 @@ import { ToolServer } from '@1interface/chat-core';
31
31
  import { Tuple } from '@reduxjs/toolkit';
32
32
  import { UnknownAction } from '@reduxjs/toolkit';
33
33
  import { UnsubscribeListener } from '@reduxjs/toolkit';
34
+ import { UpdatePasswordPayload } from '@1interface/chat-core';
34
35
  import { UpdateProfilePayload } from '@1interface/chat-core';
35
36
  import { VoiceState } from '@1interface/voice-core';
36
37
 
@@ -160,6 +161,7 @@ profileApi: CombinedState< {
160
161
  getProfile: QueryDefinition<void, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "profile", Profile, "profileApi", unknown>;
161
162
  updateProfile: MutationDefinition<UpdateProfilePayload, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "profile", void, "profileApi", unknown>;
162
163
  deleteAccount: MutationDefinition<void, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "profile", void, "profileApi", unknown>;
164
+ updatePassword: MutationDefinition<UpdatePasswordPayload, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "profile", string, "profileApi", unknown>;
163
165
  }, "profile", "profileApi">;
164
166
  }, UnknownAction, Partial<{
165
167
  auth: AuthState;
@@ -236,6 +238,7 @@ profileApi: CombinedState< {
236
238
  getProfile: QueryDefinition<void, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "profile", Profile, "profileApi", unknown>;
237
239
  updateProfile: MutationDefinition<UpdateProfilePayload, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "profile", void, "profileApi", unknown>;
238
240
  deleteAccount: MutationDefinition<void, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "profile", void, "profileApi", unknown>;
241
+ updatePassword: MutationDefinition<UpdatePasswordPayload, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "profile", string, "profileApi", unknown>;
239
242
  }, "profile", "profileApi">;
240
243
  }>>;
241
244
 
@@ -330,6 +333,7 @@ profileApi: CombinedState< {
330
333
  getProfile: QueryDefinition<void, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "profile", Profile, "profileApi", unknown>;
331
334
  updateProfile: MutationDefinition<UpdateProfilePayload, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "profile", void, "profileApi", unknown>;
332
335
  deleteAccount: MutationDefinition<void, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "profile", void, "profileApi", unknown>;
336
+ updatePassword: MutationDefinition<UpdatePasswordPayload, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "profile", string, "profileApi", unknown>;
333
337
  }, "profile", "profileApi">;
334
338
  }, UnknownAction, Tuple<[StoreEnhancer< {
335
339
  dispatch: ((action: Action<"listenerMiddleware/add">) => UnsubscribeListener) & ThunkDispatch< {
@@ -407,6 +411,7 @@ profileApi: CombinedState< {
407
411
  getProfile: QueryDefinition<void, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "profile", Profile, "profileApi", unknown>;
408
412
  updateProfile: MutationDefinition<UpdateProfilePayload, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "profile", void, "profileApi", unknown>;
409
413
  deleteAccount: MutationDefinition<void, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "profile", void, "profileApi", unknown>;
414
+ updatePassword: MutationDefinition<UpdatePasswordPayload, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "profile", string, "profileApi", unknown>;
410
415
  }, "profile", "profileApi">;
411
416
  }, undefined, UnknownAction>;
412
417
  }>, StoreEnhancer]>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1interface/chat-shell",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "license": "UNLICENSED",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -51,11 +51,11 @@
51
51
  "lucide-react": "^0.562.0",
52
52
  "streamdown": "^1.6.11",
53
53
  "tailwind-merge": "^3.6.0",
54
- "@1interface/chat-core": "^0.4.3",
55
- "@1interface/shared-core": "^0.3.2",
56
- "@1interface/voice-core": "^0.3.2",
57
- "@1interface/widgets": "^0.1.2",
58
- "@1interface/voice-shell": "^0.3.2"
54
+ "@1interface/chat-core": "^0.6.0",
55
+ "@1interface/voice-shell": "^0.3.2",
56
+ "@1interface/shared-core": "^0.4.0",
57
+ "@1interface/widgets": "^0.1.3",
58
+ "@1interface/voice-core": "^0.3.2"
59
59
  },
60
60
  "peerDependencies": {
61
61
  "@reduxjs/toolkit": "^2.0.0",