@scalekit-sdk/node 2.5.0 → 2.5.1
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/actions.d.ts +16 -1
- package/lib/actions.js +17 -1
- package/lib/actions.js.map +1 -1
- package/lib/connected-accounts.d.ts +16 -1
- package/lib/connected-accounts.js +28 -2
- package/lib/connected-accounts.js.map +1 -1
- package/lib/core.js +2 -1
- package/lib/core.js.map +1 -1
- package/lib/m2mclient.d.ts +122 -0
- package/lib/m2mclient.js +172 -0
- package/lib/m2mclient.js.map +1 -0
- package/lib/pkg/grpc/scalekit/v1/auditlogs/auditlogs_pb.js +2 -1
- package/lib/pkg/grpc/scalekit/v1/auditlogs/auditlogs_pb.js.map +1 -1
- package/lib/pkg/grpc/scalekit/v1/clients/clients_pb.d.ts +2597 -0
- package/lib/pkg/grpc/scalekit/v1/clients/clients_pb.js +546 -0
- package/lib/pkg/grpc/scalekit/v1/clients/clients_pb.js.map +1 -0
- package/lib/pkg/grpc/scalekit/v1/connected_accounts/connected_accounts_pb.d.ts +58 -2
- package/lib/pkg/grpc/scalekit/v1/connected_accounts/connected_accounts_pb.js +29 -12
- package/lib/pkg/grpc/scalekit/v1/connected_accounts/connected_accounts_pb.js.map +1 -1
- package/lib/pkg/grpc/scalekit/v1/errdetails/errdetails_pb.d.ts +13 -0
- package/lib/pkg/grpc/scalekit/v1/errdetails/errdetails_pb.js.map +1 -1
- package/lib/pkg/grpc/scalekit/v1/tools/tools_pb.js +1 -1
- package/lib/pkg/grpc/scalekit/v1/tools/tools_pb.js.map +1 -1
- package/lib/pkg/grpc/scalekit/v1/users/users_pb.js +1 -1
- package/lib/pkg/grpc/scalekit/v1/users/users_pb.js.map +1 -1
- package/lib/role.d.ts +47 -1
- package/lib/role.js +65 -0
- package/lib/role.js.map +1 -1
- package/lib/scalekit.d.ts +2 -0
- package/lib/scalekit.js +2 -0
- package/lib/scalekit.js.map +1 -1
- package/lib/token.d.ts +34 -2
- package/lib/token.js +30 -0
- package/lib/token.js.map +1 -1
- package/lib/user.d.ts +54 -1
- package/lib/user.js +85 -0
- package/lib/user.js.map +1 -1
- package/package.json +1 -1
package/lib/user.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ import type { MessageShape } from '@bufbuild/protobuf';
|
|
|
15
15
|
import { EmptySchema } from '@bufbuild/protobuf/wkt';
|
|
16
16
|
import GrpcConnect from './connect';
|
|
17
17
|
import CoreClient from './core';
|
|
18
|
-
import { CreateUserAndMembershipResponse, GetUserResponse, ListUsersResponse, UpdateUserResponse, CreateMembershipResponse, UpdateMembershipResponse, ListOrganizationUsersResponse, ResendInviteResponse } from './pkg/grpc/scalekit/v1/users/users_pb';
|
|
18
|
+
import { CreateUserAndMembershipResponse, GetUserResponse, ListUsersResponse, UpdateUserResponse, CreateMembershipResponse, UpdateMembershipResponse, ListOrganizationUsersResponse, ResendInviteResponse, ListUserRolesResponse, ListUserPermissionsResponse } from './pkg/grpc/scalekit/v1/users/users_pb';
|
|
19
19
|
import { CreateUserRequest, UpdateUserRequest as UpdateUserRequestType } from './types/user';
|
|
20
20
|
export default class UserClient {
|
|
21
21
|
private readonly grpcConnect;
|
|
@@ -615,4 +615,57 @@ export default class UserClient {
|
|
|
615
615
|
* @see {@link getUser} - Check user's invitation status
|
|
616
616
|
*/
|
|
617
617
|
resendInvite(organizationId: string, userId: string): Promise<ResendInviteResponse>;
|
|
618
|
+
/**
|
|
619
|
+
* Lists all roles assigned to a user within a specific organization.
|
|
620
|
+
*
|
|
621
|
+
* Use this method to retrieve the complete set of roles that have been granted to a user
|
|
622
|
+
* in a given organization. This is useful for authorization checks, displaying user
|
|
623
|
+
* permissions in a management UI, or auditing access control assignments.
|
|
624
|
+
*
|
|
625
|
+
* @param {string} organizationId - The organization ID to query roles for (format: "org_...")
|
|
626
|
+
* @param {string} userId - The user ID whose roles to list (format: "usr_...")
|
|
627
|
+
*
|
|
628
|
+
* @returns {Promise<ListUserRolesResponse>} Response containing:
|
|
629
|
+
* - roles: Array of Role objects assigned to the user in the organization
|
|
630
|
+
*
|
|
631
|
+
* @throws {ScalekitServerException} When the request fails (e.g. org or user not found)
|
|
632
|
+
* @throws {Error} When organizationId is missing
|
|
633
|
+
* @throws {Error} When userId is missing
|
|
634
|
+
*
|
|
635
|
+
* @example
|
|
636
|
+
* // List roles for a user in an organization
|
|
637
|
+
* const response = await scalekitClient.user.listUserRoles('org_123456', 'usr_789012');
|
|
638
|
+
* console.log('Roles:', response.roles.map(r => r.name));
|
|
639
|
+
*
|
|
640
|
+
* @see {@link https://docs.scalekit.com/apis/#tag/users | User Roles API}
|
|
641
|
+
* @see {@link listUserPermissions} - List effective permissions for the user
|
|
642
|
+
* @see {@link updateMembership} - Update the roles assigned to a user
|
|
643
|
+
*/
|
|
644
|
+
listUserRoles(organizationId: string, userId: string): Promise<ListUserRolesResponse>;
|
|
645
|
+
/**
|
|
646
|
+
* Lists all effective permissions for a user within a specific organization.
|
|
647
|
+
*
|
|
648
|
+
* Use this method to retrieve the complete set of permissions that a user has been
|
|
649
|
+
* granted in a given organization, including those derived from their assigned roles.
|
|
650
|
+
* This is useful for fine-grained authorization checks and auditing access.
|
|
651
|
+
*
|
|
652
|
+
* @param {string} organizationId - The organization ID to query permissions for (format: "org_...")
|
|
653
|
+
* @param {string} userId - The user ID whose permissions to list (format: "usr_...")
|
|
654
|
+
*
|
|
655
|
+
* @returns {Promise<ListUserPermissionsResponse>} Response containing:
|
|
656
|
+
* - permissions: Array of Permission objects effective for the user in the organization
|
|
657
|
+
*
|
|
658
|
+
* @throws {ScalekitServerException} When the request fails (e.g. org or user not found)
|
|
659
|
+
* @throws {Error} When organizationId is missing
|
|
660
|
+
* @throws {Error} When userId is missing
|
|
661
|
+
*
|
|
662
|
+
* @example
|
|
663
|
+
* // List permissions for a user in an organization
|
|
664
|
+
* const response = await scalekitClient.user.listUserPermissions('org_123456', 'usr_789012');
|
|
665
|
+
* console.log('Permissions:', response.permissions.map(p => p.name));
|
|
666
|
+
*
|
|
667
|
+
* @see {@link https://docs.scalekit.com/apis/#tag/users | User Permissions API}
|
|
668
|
+
* @see {@link listUserRoles} - List roles assigned to the user
|
|
669
|
+
*/
|
|
670
|
+
listUserPermissions(organizationId: string, userId: string): Promise<ListUserPermissionsResponse>;
|
|
618
671
|
}
|
package/lib/user.js
CHANGED
|
@@ -737,6 +737,91 @@ class UserClient {
|
|
|
737
737
|
return this.coreClient.connectExec(this.client.resendInvite, request);
|
|
738
738
|
});
|
|
739
739
|
}
|
|
740
|
+
/**
|
|
741
|
+
* Lists all roles assigned to a user within a specific organization.
|
|
742
|
+
*
|
|
743
|
+
* Use this method to retrieve the complete set of roles that have been granted to a user
|
|
744
|
+
* in a given organization. This is useful for authorization checks, displaying user
|
|
745
|
+
* permissions in a management UI, or auditing access control assignments.
|
|
746
|
+
*
|
|
747
|
+
* @param {string} organizationId - The organization ID to query roles for (format: "org_...")
|
|
748
|
+
* @param {string} userId - The user ID whose roles to list (format: "usr_...")
|
|
749
|
+
*
|
|
750
|
+
* @returns {Promise<ListUserRolesResponse>} Response containing:
|
|
751
|
+
* - roles: Array of Role objects assigned to the user in the organization
|
|
752
|
+
*
|
|
753
|
+
* @throws {ScalekitServerException} When the request fails (e.g. org or user not found)
|
|
754
|
+
* @throws {Error} When organizationId is missing
|
|
755
|
+
* @throws {Error} When userId is missing
|
|
756
|
+
*
|
|
757
|
+
* @example
|
|
758
|
+
* // List roles for a user in an organization
|
|
759
|
+
* const response = await scalekitClient.user.listUserRoles('org_123456', 'usr_789012');
|
|
760
|
+
* console.log('Roles:', response.roles.map(r => r.name));
|
|
761
|
+
*
|
|
762
|
+
* @see {@link https://docs.scalekit.com/apis/#tag/users | User Roles API}
|
|
763
|
+
* @see {@link listUserPermissions} - List effective permissions for the user
|
|
764
|
+
* @see {@link updateMembership} - Update the roles assigned to a user
|
|
765
|
+
*/
|
|
766
|
+
listUserRoles(organizationId, userId) {
|
|
767
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
768
|
+
const orgId = organizationId === null || organizationId === void 0 ? void 0 : organizationId.trim();
|
|
769
|
+
const uId = userId === null || userId === void 0 ? void 0 : userId.trim();
|
|
770
|
+
if (!orgId) {
|
|
771
|
+
throw new Error('organizationId is required');
|
|
772
|
+
}
|
|
773
|
+
if (!uId) {
|
|
774
|
+
throw new Error('userId is required');
|
|
775
|
+
}
|
|
776
|
+
const request = (0, protobuf_1.create)(users_pb_2.ListUserRolesRequestSchema, {
|
|
777
|
+
organizationId: orgId,
|
|
778
|
+
userId: uId,
|
|
779
|
+
});
|
|
780
|
+
return this.coreClient.connectExec(this.client.listUserRoles, request);
|
|
781
|
+
});
|
|
782
|
+
}
|
|
783
|
+
/**
|
|
784
|
+
* Lists all effective permissions for a user within a specific organization.
|
|
785
|
+
*
|
|
786
|
+
* Use this method to retrieve the complete set of permissions that a user has been
|
|
787
|
+
* granted in a given organization, including those derived from their assigned roles.
|
|
788
|
+
* This is useful for fine-grained authorization checks and auditing access.
|
|
789
|
+
*
|
|
790
|
+
* @param {string} organizationId - The organization ID to query permissions for (format: "org_...")
|
|
791
|
+
* @param {string} userId - The user ID whose permissions to list (format: "usr_...")
|
|
792
|
+
*
|
|
793
|
+
* @returns {Promise<ListUserPermissionsResponse>} Response containing:
|
|
794
|
+
* - permissions: Array of Permission objects effective for the user in the organization
|
|
795
|
+
*
|
|
796
|
+
* @throws {ScalekitServerException} When the request fails (e.g. org or user not found)
|
|
797
|
+
* @throws {Error} When organizationId is missing
|
|
798
|
+
* @throws {Error} When userId is missing
|
|
799
|
+
*
|
|
800
|
+
* @example
|
|
801
|
+
* // List permissions for a user in an organization
|
|
802
|
+
* const response = await scalekitClient.user.listUserPermissions('org_123456', 'usr_789012');
|
|
803
|
+
* console.log('Permissions:', response.permissions.map(p => p.name));
|
|
804
|
+
*
|
|
805
|
+
* @see {@link https://docs.scalekit.com/apis/#tag/users | User Permissions API}
|
|
806
|
+
* @see {@link listUserRoles} - List roles assigned to the user
|
|
807
|
+
*/
|
|
808
|
+
listUserPermissions(organizationId, userId) {
|
|
809
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
810
|
+
const orgId = organizationId === null || organizationId === void 0 ? void 0 : organizationId.trim();
|
|
811
|
+
const uId = userId === null || userId === void 0 ? void 0 : userId.trim();
|
|
812
|
+
if (!orgId) {
|
|
813
|
+
throw new Error('organizationId is required');
|
|
814
|
+
}
|
|
815
|
+
if (!uId) {
|
|
816
|
+
throw new Error('userId is required');
|
|
817
|
+
}
|
|
818
|
+
const request = (0, protobuf_1.create)(users_pb_2.ListUserPermissionsRequestSchema, {
|
|
819
|
+
organizationId: orgId,
|
|
820
|
+
userId: uId,
|
|
821
|
+
});
|
|
822
|
+
return this.coreClient.connectExec(this.client.listUserPermissions, request);
|
|
823
|
+
});
|
|
824
|
+
}
|
|
740
825
|
}
|
|
741
826
|
exports.default = UserClient;
|
|
742
827
|
//# sourceMappingURL=user.js.map
|
package/lib/user.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.js","sourceRoot":"","sources":["../src/user.ts"],"names":[],"mappings":";;;;;;;;;;;AAcA,iDAA4C;AAK5C,oEAAoE;AACpE,
|
|
1
|
+
{"version":3,"file":"user.js","sourceRoot":"","sources":["../src/user.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED