cheshirecat-typescript-client 1.2.3 → 1.2.4

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 (51) hide show
  1. package/README.md +8 -6
  2. package/dist/client.d.ts +5 -5
  3. package/dist/client.js.map +1 -1
  4. package/dist/clients/httpclient.d.ts +1 -1
  5. package/dist/clients/httpclient.js +2 -2
  6. package/dist/clients/httpclient.js.map +1 -1
  7. package/dist/clients/wsclient.d.ts +3 -3
  8. package/dist/clients/wsclient.js +2 -4
  9. package/dist/clients/wsclient.js.map +1 -1
  10. package/dist/endpoints/abstract.d.ts +5 -5
  11. package/dist/endpoints/abstract.js +2 -2
  12. package/dist/endpoints/abstract.js.map +1 -1
  13. package/dist/endpoints/admins.d.ts +3 -3
  14. package/dist/endpoints/admins.js +8 -8
  15. package/dist/endpoints/admins.js.map +1 -1
  16. package/dist/endpoints/authHandler.d.ts +7 -7
  17. package/dist/endpoints/authHandler.js +6 -6
  18. package/dist/endpoints/authHandler.js.map +1 -1
  19. package/dist/endpoints/chunker.d.ts +7 -10
  20. package/dist/endpoints/chunker.js +6 -9
  21. package/dist/endpoints/chunker.js.map +1 -1
  22. package/dist/endpoints/customEndpoint.d.ts +4 -4
  23. package/dist/endpoints/customEndpoint.js +4 -4
  24. package/dist/endpoints/customEndpoint.js.map +1 -1
  25. package/dist/endpoints/embedder.js +1 -1
  26. package/dist/endpoints/embedder.js.map +1 -1
  27. package/dist/endpoints/fileManager.d.ts +8 -11
  28. package/dist/endpoints/fileManager.js +6 -9
  29. package/dist/endpoints/fileManager.js.map +1 -1
  30. package/dist/endpoints/largeLanguageModel.d.ts +7 -10
  31. package/dist/endpoints/largeLanguageModel.js +6 -9
  32. package/dist/endpoints/largeLanguageModel.js.map +1 -1
  33. package/dist/endpoints/memory.d.ts +43 -62
  34. package/dist/endpoints/memory.js +40 -59
  35. package/dist/endpoints/memory.js.map +1 -1
  36. package/dist/endpoints/message.d.ts +2 -2
  37. package/dist/endpoints/message.js +1 -1
  38. package/dist/endpoints/message.js.map +1 -1
  39. package/dist/endpoints/plugins.d.ts +12 -17
  40. package/dist/endpoints/plugins.js +11 -16
  41. package/dist/endpoints/plugins.js.map +1 -1
  42. package/dist/endpoints/rabbitHole.d.ts +11 -15
  43. package/dist/endpoints/rabbitHole.js +8 -12
  44. package/dist/endpoints/rabbitHole.js.map +1 -1
  45. package/dist/endpoints/settings.d.ts +12 -22
  46. package/dist/endpoints/settings.js +11 -21
  47. package/dist/endpoints/settings.js.map +1 -1
  48. package/dist/endpoints/users.d.ts +8 -21
  49. package/dist/endpoints/users.js +6 -19
  50. package/dist/endpoints/users.js.map +1 -1
  51. package/package.json +1 -1
@@ -17,83 +17,70 @@ export declare class UsersEndpoint extends AbstractEndpoint {
17
17
  /**
18
18
  * This endpoint is used to get a list of available permissions in the system. The permissions are used to define
19
19
  * the access rights of the users in the system. The permissions are defined by the system administrator.
20
- * The endpoint can be used either for the agent identified by the agentId parameter (for multi-agent installations)
21
- * or for the default agent (for single-agent installations).
22
20
  *
23
21
  * @param agentId The ID of the agent.
24
22
  *
25
23
  * @returns The available permissions in the system.
26
24
  */
27
- getAvailablePermissions(agentId?: string | null): Promise<Permission>;
25
+ getAvailablePermissions(agentId: string): Promise<Permission>;
28
26
  /**
29
27
  * This endpoint is used to create a new user in the system. The user is created with the specified username and
30
28
  * password. The user is assigned the specified permissions. The permissions are used to define the access rights
31
29
  * of the user in the system and are defined by the system administrator.
32
- * The endpoint can be used either for the
33
- * agent identified by the agentId parameter (for multi-agent installations) or for the default agent (for
34
- * single-agent installations).
35
30
  *
31
+ * @param agentId The ID of the agent.
36
32
  * @param username The username of the user.
37
33
  * @param password The password of the user.
38
34
  * @param permissions The permissions of the user.
39
- * @param agentId The ID of the agent.
40
35
  *
41
36
  * @returns The created user.
42
37
  */
43
- postUser(username: string, password: string, permissions?: Record<string, string[]> | null, agentId?: string | null): Promise<UserOutput>;
38
+ postUser(agentId: string, username: string, password: string, permissions?: Record<string, string[]> | null): Promise<UserOutput>;
44
39
  /**
45
40
  * This endpoint is used to get a list of users in the system. The list includes the username and the permissions of
46
41
  * each user. The permissions are used to define the access rights of the users in the system and are defined by the
47
42
  * system administrator.
48
- * The endpoint can be used either for the agent identified by the agentId parameter (for multi-agent installations)
49
- * or for the default agent (for single-agent installations).
50
43
  *
51
44
  * @param agentId The ID of the agent.
52
45
  *
53
46
  * @returns The list of users in the system.
54
47
  */
55
- getUsers(agentId?: string | null): Promise<UserOutput[]>;
48
+ getUsers(agentId: string): Promise<UserOutput[]>;
56
49
  /**
57
50
  * This endpoint is used to get a user in the system. The user is identified by the userId parameter, previously
58
51
  * provided by the CheshireCat API when the user was created. The endpoint returns the username and the permissions
59
52
  * of the user. The permissions are used to define the access rights of the user in the system and are defined by
60
53
  * the system administrator.
61
- * The endpoint can be used either for the agent identified by the agentId parameter (for multi-agent installations)
62
- * or for the default agent (for single-agent installations).
63
54
  *
64
55
  * @param userId The ID of the user.
65
56
  * @param agentId The ID of the agent.
66
57
  *
67
58
  * @returns The user in the system.
68
59
  */
69
- getUser(userId: string, agentId?: string | null): Promise<UserOutput>;
60
+ getUser(userId: string, agentId: string): Promise<UserOutput>;
70
61
  /**
71
62
  * The endpoint is used to update the user in the system. The user is identified by the userId parameter, previously
72
63
  * provided by the CheshireCat API when the user was created. The endpoint updates the username, the password, and
73
64
  * the permissions of the user. The permissions are used to define the access rights of the user in the system and
74
65
  * are defined by the system administrator.
75
- * The endpoint can be used either for the agent identified by the agentId parameter (for multi-agent installations)
76
- * or for the default agent (for single-agent installations).
77
66
  *
78
67
  * @param userId The ID of the user.
68
+ * @param agentId The ID of the agent.
79
69
  * @param username The username of the user.
80
70
  * @param password The password of the user.
81
71
  * @param permissions The permissions of the user.
82
- * @param agentId The ID of the agent.
83
72
  *
84
73
  * @returns The updated user.
85
74
  */
86
- putUser(userId: string, username?: string | null, password?: string | null, permissions?: Record<string, string[]> | null, agentId?: string | null): Promise<UserOutput>;
75
+ putUser(userId: string, agentId: string, username?: string | null, password?: string | null, permissions?: Record<string, string[]> | null): Promise<UserOutput>;
87
76
  /**
88
77
  * This endpoint is used to delete the user in the system. The user is identified by the userId parameter,
89
78
  * previously provided by the CheshireCat API when the user was created.
90
- * The endpoint can be used either for the agent identified by the agentId parameter (for multi-agent installations)
91
- * or for the default agent (for single-agent installations).
92
79
  *
93
80
  * @param userId The ID of the user.
94
81
  * @param agentId The ID of the agent.
95
82
  *
96
83
  * @returns The deleted user.
97
84
  */
98
- deleteUser(userId: string, agentId?: string | null): Promise<UserOutput>;
85
+ deleteUser(userId: string, agentId: string): Promise<UserOutput>;
99
86
  }
@@ -27,8 +27,6 @@ class UsersEndpoint extends abstract_1.AbstractEndpoint {
27
27
  /**
28
28
  * This endpoint is used to get a list of available permissions in the system. The permissions are used to define
29
29
  * the access rights of the users in the system. The permissions are defined by the system administrator.
30
- * The endpoint can be used either for the agent identified by the agentId parameter (for multi-agent installations)
31
- * or for the default agent (for single-agent installations).
32
30
  *
33
31
  * @param agentId The ID of the agent.
34
32
  *
@@ -42,18 +40,15 @@ class UsersEndpoint extends abstract_1.AbstractEndpoint {
42
40
  * This endpoint is used to create a new user in the system. The user is created with the specified username and
43
41
  * password. The user is assigned the specified permissions. The permissions are used to define the access rights
44
42
  * of the user in the system and are defined by the system administrator.
45
- * The endpoint can be used either for the
46
- * agent identified by the agentId parameter (for multi-agent installations) or for the default agent (for
47
- * single-agent installations).
48
43
  *
44
+ * @param agentId The ID of the agent.
49
45
  * @param username The username of the user.
50
46
  * @param password The password of the user.
51
47
  * @param permissions The permissions of the user.
52
- * @param agentId The ID of the agent.
53
48
  *
54
49
  * @returns The created user.
55
50
  */
56
- async postUser(username, password, permissions, agentId) {
51
+ async postUser(agentId, username, password, permissions) {
57
52
  const payload = {
58
53
  username,
59
54
  password,
@@ -62,14 +57,12 @@ class UsersEndpoint extends abstract_1.AbstractEndpoint {
62
57
  if (permissions) {
63
58
  payload.permissions = permissions;
64
59
  }
65
- return this.post(this.prefix, payload, agentId);
60
+ return this.post(this.prefix, agentId, payload);
66
61
  }
67
62
  /**
68
63
  * This endpoint is used to get a list of users in the system. The list includes the username and the permissions of
69
64
  * each user. The permissions are used to define the access rights of the users in the system and are defined by the
70
65
  * system administrator.
71
- * The endpoint can be used either for the agent identified by the agentId parameter (for multi-agent installations)
72
- * or for the default agent (for single-agent installations).
73
66
  *
74
67
  * @param agentId The ID of the agent.
75
68
  *
@@ -85,8 +78,6 @@ class UsersEndpoint extends abstract_1.AbstractEndpoint {
85
78
  * provided by the CheshireCat API when the user was created. The endpoint returns the username and the permissions
86
79
  * of the user. The permissions are used to define the access rights of the user in the system and are defined by
87
80
  * the system administrator.
88
- * The endpoint can be used either for the agent identified by the agentId parameter (for multi-agent installations)
89
- * or for the default agent (for single-agent installations).
90
81
  *
91
82
  * @param userId The ID of the user.
92
83
  * @param agentId The ID of the agent.
@@ -101,18 +92,16 @@ class UsersEndpoint extends abstract_1.AbstractEndpoint {
101
92
  * provided by the CheshireCat API when the user was created. The endpoint updates the username, the password, and
102
93
  * the permissions of the user. The permissions are used to define the access rights of the user in the system and
103
94
  * are defined by the system administrator.
104
- * The endpoint can be used either for the agent identified by the agentId parameter (for multi-agent installations)
105
- * or for the default agent (for single-agent installations).
106
95
  *
107
96
  * @param userId The ID of the user.
97
+ * @param agentId The ID of the agent.
108
98
  * @param username The username of the user.
109
99
  * @param password The password of the user.
110
100
  * @param permissions The permissions of the user.
111
- * @param agentId The ID of the agent.
112
101
  *
113
102
  * @returns The updated user.
114
103
  */
115
- async putUser(userId, username, password, permissions, agentId) {
104
+ async putUser(userId, agentId, username, password, permissions) {
116
105
  const payload = {};
117
106
  if (username) {
118
107
  payload.username = username;
@@ -123,13 +112,11 @@ class UsersEndpoint extends abstract_1.AbstractEndpoint {
123
112
  if (permissions) {
124
113
  payload.permissions = permissions;
125
114
  }
126
- return this.put(this.formatUrl(userId), payload, agentId);
115
+ return this.put(this.formatUrl(userId), agentId, payload);
127
116
  }
128
117
  /**
129
118
  * This endpoint is used to delete the user in the system. The user is identified by the userId parameter,
130
119
  * previously provided by the CheshireCat API when the user was created.
131
- * The endpoint can be used either for the agent identified by the agentId parameter (for multi-agent installations)
132
- * or for the default agent (for single-agent installations).
133
120
  *
134
121
  * @param userId The ID of the user.
135
122
  * @param agentId The ID of the agent.
@@ -1 +1 @@
1
- {"version":3,"file":"users.js","sourceRoot":"","sources":["../../src/endpoints/users.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"users.js","sourceRoot":"","sources":["../../src/endpoints/users.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cheshirecat-typescript-client",
3
- "version": "1.2.3",
3
+ "version": "1.2.4",
4
4
  "engines": {
5
5
  "node": "22.x"
6
6
  },