@drmhse/sso-sdk 0.3.12 → 0.3.14
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/README.md +7 -3
- package/dist/index.d.mts +39 -1
- package/dist/index.d.ts +39 -1
- package/dist/index.js +16 -0
- package/dist/index.mjs +16 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -138,11 +138,15 @@ const loginUrl = sso.auth.getLoginUrl('github', {
|
|
|
138
138
|
});
|
|
139
139
|
window.location.href = loginUrl;
|
|
140
140
|
|
|
141
|
-
// Handle callback -
|
|
142
|
-
|
|
143
|
-
const
|
|
141
|
+
// Handle callback - tokens are returned in URL fragment (#) for security
|
|
142
|
+
// (prevents tokens from being logged in server access logs)
|
|
143
|
+
const hashParams = new URLSearchParams(window.location.hash.substring(1));
|
|
144
|
+
const accessToken = hashParams.get('access_token');
|
|
144
145
|
|
|
145
146
|
if (accessToken) {
|
|
147
|
+
// Clear hash from URL for security
|
|
148
|
+
window.history.replaceState(null, '', window.location.pathname);
|
|
149
|
+
|
|
146
150
|
// Initialize SDK with OAuth token - automatically stored
|
|
147
151
|
const sso = new SsoClient({
|
|
148
152
|
baseURL: 'https://sso.example.com',
|
package/dist/index.d.mts
CHANGED
|
@@ -1060,10 +1060,12 @@ interface Plan {
|
|
|
1060
1060
|
id: string;
|
|
1061
1061
|
service_id: string;
|
|
1062
1062
|
name: string;
|
|
1063
|
+
description?: string;
|
|
1063
1064
|
price_cents: number;
|
|
1064
1065
|
currency: string;
|
|
1065
1066
|
features: string;
|
|
1066
1067
|
stripe_price_id?: string;
|
|
1068
|
+
is_default?: boolean;
|
|
1067
1069
|
created_at: string;
|
|
1068
1070
|
}
|
|
1069
1071
|
/**
|
|
@@ -1124,20 +1126,24 @@ interface ServiceResponse {
|
|
|
1124
1126
|
*/
|
|
1125
1127
|
interface CreatePlanPayload {
|
|
1126
1128
|
name: string;
|
|
1129
|
+
description?: string;
|
|
1127
1130
|
price_cents: number;
|
|
1128
1131
|
currency: string;
|
|
1129
1132
|
features?: string[];
|
|
1130
1133
|
stripe_price_id?: string;
|
|
1134
|
+
is_default?: boolean;
|
|
1131
1135
|
}
|
|
1132
1136
|
/**
|
|
1133
1137
|
* Update plan payload
|
|
1134
1138
|
*/
|
|
1135
1139
|
interface UpdatePlanPayload {
|
|
1136
1140
|
name?: string;
|
|
1141
|
+
description?: string;
|
|
1137
1142
|
price_cents?: number;
|
|
1138
1143
|
currency?: string;
|
|
1139
1144
|
features?: string[];
|
|
1140
1145
|
stripe_price_id?: string | null;
|
|
1146
|
+
is_default?: boolean;
|
|
1141
1147
|
}
|
|
1142
1148
|
/**
|
|
1143
1149
|
* Service with aggregated details
|
|
@@ -1478,6 +1484,22 @@ interface ImpersonateResponse {
|
|
|
1478
1484
|
target_user: ImpersonationUserInfo;
|
|
1479
1485
|
actor_user: ImpersonationUserInfo;
|
|
1480
1486
|
}
|
|
1487
|
+
/**
|
|
1488
|
+
* Platform user
|
|
1489
|
+
*/
|
|
1490
|
+
interface PlatformUser {
|
|
1491
|
+
id: string;
|
|
1492
|
+
email: string;
|
|
1493
|
+
is_platform_owner: boolean;
|
|
1494
|
+
created_at: string;
|
|
1495
|
+
}
|
|
1496
|
+
/**
|
|
1497
|
+
* Platform user list response
|
|
1498
|
+
*/
|
|
1499
|
+
interface PlatformUserListResponse {
|
|
1500
|
+
users: PlatformUser[];
|
|
1501
|
+
total: number;
|
|
1502
|
+
}
|
|
1481
1503
|
|
|
1482
1504
|
/**
|
|
1483
1505
|
* End-user subscription details
|
|
@@ -4488,6 +4510,22 @@ declare class PlatformModule {
|
|
|
4488
4510
|
enabled: boolean;
|
|
4489
4511
|
has_backup_codes: boolean;
|
|
4490
4512
|
}>;
|
|
4513
|
+
/**
|
|
4514
|
+
* List all users on the platform with pagination.
|
|
4515
|
+
*
|
|
4516
|
+
* @param options Pagination options
|
|
4517
|
+
* @returns List of users and total count
|
|
4518
|
+
*
|
|
4519
|
+
* @example
|
|
4520
|
+
* ```typescript
|
|
4521
|
+
* const result = await sso.platform.users.list({ limit: 10, offset: 0 });
|
|
4522
|
+
* console.log(result.users);
|
|
4523
|
+
* ```
|
|
4524
|
+
*/
|
|
4525
|
+
list: (options?: {
|
|
4526
|
+
limit?: number;
|
|
4527
|
+
offset?: number;
|
|
4528
|
+
}) => Promise<PlatformUserListResponse>;
|
|
4491
4529
|
/**
|
|
4492
4530
|
* Search users by email address or user ID.
|
|
4493
4531
|
*
|
|
@@ -5628,4 +5666,4 @@ declare class SsoApiError extends Error {
|
|
|
5628
5666
|
isNotFound(): boolean;
|
|
5629
5667
|
}
|
|
5630
5668
|
|
|
5631
|
-
export { type AcceptInvitationPayload, type AdminLoginUrlParams, type AnalyticsQuery, type ApiKey, type ApiKeyCreateResponse, type ApproveOrganizationPayload, type AuditLog, type AuditLogEntry, type AuditLogQueryParams, type AuditLogResponse, AuthErrorCodes, AuthModule, type AuthSnapshot, type AuthenticationResponseJSON, type BackupCodesResponse, type BrandingConfiguration, BrowserStorage, type ChangePasswordRequest, type ChangePasswordResponse, type ConfigureSamlPayload, type ConfigureSamlResponse, CookieStorage, type CreateApiKeyPayload, type CreateCheckoutPayload, type CreateCheckoutResponse, type CreateInvitationPayload, type CreateOrganizationPayload, type CreateOrganizationResponse, type CreatePlanPayload, type CreateRoleRequest, type CreateScimTokenRequest, type CreateServicePayload, type CreateServiceResponse, type CreateSiemConfigRequest, type CreateWebhookRequest, type DeclineInvitationPayload, type DeviceCodeRequest, type DeviceCodeResponse, type DeviceVerifyResponse, type DomainConfiguration, type DomainVerificationMethod, type DomainVerificationResponse, type DomainVerificationResult, type EndUser, type EndUserDetailResponse, type EndUserIdentity, type EndUserListResponse, type EndUserSubscription, type EventTypeInfo, type ExportUserDataResponse, type ForgetUserResponse, type ForgotPasswordRequest, type ForgotPasswordResponse, type GeoLocation, type GetAuditLogParams, type GetRiskSettingsResponse, type GrowthTrendPoint, type Identity, type ImpersonateRequest, type ImpersonateResponse, type ImpersonationUserInfo, type Invitation, type InvitationStatus, type InvitationWithOrg, InvitationsModule, type JwtClaims, type ListApiKeysResponse, type ListDevicesResponse, type ListEndUsersParams, type ListOrganizationsParams, type ListPlatformOrganizationsParams, type ListScimTokensResponse, type ListSiemConfigsResponse, type LoginActivityPoint, type LoginEventExport, type LoginRequest, type LoginTrendPoint, type LoginUrlParams, type LoginsByProvider, type LoginsByService, type LookupEmailRequest, type LookupEmailResponse, MagicLinks, type MemberListResponse, type MemberRole, type Membership, type MembershipExport, MemoryStorage, type MfaEventExport, type MfaSetupResponse, type MfaStatusResponse, type MfaVerificationRequest, type MfaVerificationResponse, type MfaVerifyRequest, type MfaVerifyResponse, type OAuthCredentials, type OAuthIdentityExport, type OAuthProvider, type Organization, type OrganizationMember, type OrganizationResponse, type OrganizationStatus, type OrganizationStatusBreakdown, type OrganizationTier, OrganizationsModule, type PaginatedResponse, type PaginationInfo, type PaginationParams, type Passkey, type PasskeyAuthFinishRequest, type PasskeyAuthFinishResponse, type PasskeyAuthStartRequest, type PasskeyAuthStartResponse, type PasskeyExport, type PasskeyRegisterFinishRequest, type PasskeyRegisterFinishResponse, type PasskeyRegisterStartRequest, type PasskeyRegisterStartResponse, PasskeysModule, PermissionsModule, type Plan, type PlanResponse, type PlatformAnalyticsDateRangeParams, PlatformModule, type PlatformOrganizationResponse, type PlatformOrganizationsListResponse, type PlatformOverviewMetrics, type PromotePlatformOwnerPayload, type ProviderToken, type ProviderTokenGrant, type RecentLogin, type RecentOrganization, type RefreshTokenRequest, type RefreshTokenResponse, type RegisterRequest, type RegisterResponse, type RegistrationResponseJSON, type RejectOrganizationPayload, type ResendVerificationRequest, type ResendVerificationResponse, type ResetPasswordRequest, type ResetPasswordResponse, type RevokeDeviceRequest, type RevokeDeviceResponse, type RevokeSessionsResponse, type RiskAction, type RiskAssessment, type RiskEventResponse, type RiskEventsQuery, type RoleResponse, type SamlCertificate, type SamlConfig, type ScimTokenResponse, type SelectOrganizationResponse, type Service, ServiceApiModule, type ServiceListResponse, type ServiceResponse, type ServiceType, type ServiceWithDetails, ServicesModule, type SetCustomDomainRequest, type SetOAuthCredentialsPayload, type SetPasswordRequest, type SetPasswordResponse, type SetSmtpRequest, type SiemConfigResponse, type SiemProviderType, type SmtpConfigResponse, SsoApiError, SsoClient, type SsoClientOptions, type StartLinkResponse, type Subscription, type TestConnectionResponse, type TokenRequest, type TokenResponse, type TokenStorage, type TopOrganization, type TransferOwnershipPayload, type UpdateBrandingRequest, type UpdateMemberRolePayload, type UpdateOrganizationPayload, type UpdateOrganizationTierPayload, type UpdatePlanPayload, type UpdateRiskSettingsRequest, type UpdateRiskSettingsResponse, type UpdateRoleRequest, type UpdateServicePayload, type UpdateSiemConfigRequest, type UpdateUserProfilePayload, type UpdateWebhookRequest, type User, type UserDevice, UserModule, type UserProfile, type Webhook, type WebhookDelivery, type WebhookDeliveryListResponse, type WebhookDeliveryQueryParams, type WebhookListResponse, type WebhookResponse };
|
|
5669
|
+
export { type AcceptInvitationPayload, type AdminLoginUrlParams, type AnalyticsQuery, type ApiKey, type ApiKeyCreateResponse, type ApproveOrganizationPayload, type AuditLog, type AuditLogEntry, type AuditLogQueryParams, type AuditLogResponse, AuthErrorCodes, AuthModule, type AuthSnapshot, type AuthenticationResponseJSON, type BackupCodesResponse, type BrandingConfiguration, BrowserStorage, type ChangePasswordRequest, type ChangePasswordResponse, type ConfigureSamlPayload, type ConfigureSamlResponse, CookieStorage, type CreateApiKeyPayload, type CreateCheckoutPayload, type CreateCheckoutResponse, type CreateInvitationPayload, type CreateOrganizationPayload, type CreateOrganizationResponse, type CreatePlanPayload, type CreateRoleRequest, type CreateScimTokenRequest, type CreateServicePayload, type CreateServiceResponse, type CreateSiemConfigRequest, type CreateWebhookRequest, type DeclineInvitationPayload, type DeviceCodeRequest, type DeviceCodeResponse, type DeviceVerifyResponse, type DomainConfiguration, type DomainVerificationMethod, type DomainVerificationResponse, type DomainVerificationResult, type EndUser, type EndUserDetailResponse, type EndUserIdentity, type EndUserListResponse, type EndUserSubscription, type EventTypeInfo, type ExportUserDataResponse, type ForgetUserResponse, type ForgotPasswordRequest, type ForgotPasswordResponse, type GeoLocation, type GetAuditLogParams, type GetRiskSettingsResponse, type GrowthTrendPoint, type Identity, type ImpersonateRequest, type ImpersonateResponse, type ImpersonationUserInfo, type Invitation, type InvitationStatus, type InvitationWithOrg, InvitationsModule, type JwtClaims, type ListApiKeysResponse, type ListDevicesResponse, type ListEndUsersParams, type ListOrganizationsParams, type ListPlatformOrganizationsParams, type ListScimTokensResponse, type ListSiemConfigsResponse, type LoginActivityPoint, type LoginEventExport, type LoginRequest, type LoginTrendPoint, type LoginUrlParams, type LoginsByProvider, type LoginsByService, type LookupEmailRequest, type LookupEmailResponse, MagicLinks, type MemberListResponse, type MemberRole, type Membership, type MembershipExport, MemoryStorage, type MfaEventExport, type MfaSetupResponse, type MfaStatusResponse, type MfaVerificationRequest, type MfaVerificationResponse, type MfaVerifyRequest, type MfaVerifyResponse, type OAuthCredentials, type OAuthIdentityExport, type OAuthProvider, type Organization, type OrganizationMember, type OrganizationResponse, type OrganizationStatus, type OrganizationStatusBreakdown, type OrganizationTier, OrganizationsModule, type PaginatedResponse, type PaginationInfo, type PaginationParams, type Passkey, type PasskeyAuthFinishRequest, type PasskeyAuthFinishResponse, type PasskeyAuthStartRequest, type PasskeyAuthStartResponse, type PasskeyExport, type PasskeyRegisterFinishRequest, type PasskeyRegisterFinishResponse, type PasskeyRegisterStartRequest, type PasskeyRegisterStartResponse, PasskeysModule, PermissionsModule, type Plan, type PlanResponse, type PlatformAnalyticsDateRangeParams, PlatformModule, type PlatformOrganizationResponse, type PlatformOrganizationsListResponse, type PlatformOverviewMetrics, type PlatformUser, type PlatformUserListResponse, type PromotePlatformOwnerPayload, type ProviderToken, type ProviderTokenGrant, type RecentLogin, type RecentOrganization, type RefreshTokenRequest, type RefreshTokenResponse, type RegisterRequest, type RegisterResponse, type RegistrationResponseJSON, type RejectOrganizationPayload, type ResendVerificationRequest, type ResendVerificationResponse, type ResetPasswordRequest, type ResetPasswordResponse, type RevokeDeviceRequest, type RevokeDeviceResponse, type RevokeSessionsResponse, type RiskAction, type RiskAssessment, type RiskEventResponse, type RiskEventsQuery, type RoleResponse, type SamlCertificate, type SamlConfig, type ScimTokenResponse, type SelectOrganizationResponse, type Service, ServiceApiModule, type ServiceListResponse, type ServiceResponse, type ServiceType, type ServiceWithDetails, ServicesModule, type SetCustomDomainRequest, type SetOAuthCredentialsPayload, type SetPasswordRequest, type SetPasswordResponse, type SetSmtpRequest, type SiemConfigResponse, type SiemProviderType, type SmtpConfigResponse, SsoApiError, SsoClient, type SsoClientOptions, type StartLinkResponse, type Subscription, type TestConnectionResponse, type TokenRequest, type TokenResponse, type TokenStorage, type TopOrganization, type TransferOwnershipPayload, type UpdateBrandingRequest, type UpdateMemberRolePayload, type UpdateOrganizationPayload, type UpdateOrganizationTierPayload, type UpdatePlanPayload, type UpdateRiskSettingsRequest, type UpdateRiskSettingsResponse, type UpdateRoleRequest, type UpdateServicePayload, type UpdateSiemConfigRequest, type UpdateUserProfilePayload, type UpdateWebhookRequest, type User, type UserDevice, UserModule, type UserProfile, type Webhook, type WebhookDelivery, type WebhookDeliveryListResponse, type WebhookDeliveryQueryParams, type WebhookListResponse, type WebhookResponse };
|
package/dist/index.d.ts
CHANGED
|
@@ -1060,10 +1060,12 @@ interface Plan {
|
|
|
1060
1060
|
id: string;
|
|
1061
1061
|
service_id: string;
|
|
1062
1062
|
name: string;
|
|
1063
|
+
description?: string;
|
|
1063
1064
|
price_cents: number;
|
|
1064
1065
|
currency: string;
|
|
1065
1066
|
features: string;
|
|
1066
1067
|
stripe_price_id?: string;
|
|
1068
|
+
is_default?: boolean;
|
|
1067
1069
|
created_at: string;
|
|
1068
1070
|
}
|
|
1069
1071
|
/**
|
|
@@ -1124,20 +1126,24 @@ interface ServiceResponse {
|
|
|
1124
1126
|
*/
|
|
1125
1127
|
interface CreatePlanPayload {
|
|
1126
1128
|
name: string;
|
|
1129
|
+
description?: string;
|
|
1127
1130
|
price_cents: number;
|
|
1128
1131
|
currency: string;
|
|
1129
1132
|
features?: string[];
|
|
1130
1133
|
stripe_price_id?: string;
|
|
1134
|
+
is_default?: boolean;
|
|
1131
1135
|
}
|
|
1132
1136
|
/**
|
|
1133
1137
|
* Update plan payload
|
|
1134
1138
|
*/
|
|
1135
1139
|
interface UpdatePlanPayload {
|
|
1136
1140
|
name?: string;
|
|
1141
|
+
description?: string;
|
|
1137
1142
|
price_cents?: number;
|
|
1138
1143
|
currency?: string;
|
|
1139
1144
|
features?: string[];
|
|
1140
1145
|
stripe_price_id?: string | null;
|
|
1146
|
+
is_default?: boolean;
|
|
1141
1147
|
}
|
|
1142
1148
|
/**
|
|
1143
1149
|
* Service with aggregated details
|
|
@@ -1478,6 +1484,22 @@ interface ImpersonateResponse {
|
|
|
1478
1484
|
target_user: ImpersonationUserInfo;
|
|
1479
1485
|
actor_user: ImpersonationUserInfo;
|
|
1480
1486
|
}
|
|
1487
|
+
/**
|
|
1488
|
+
* Platform user
|
|
1489
|
+
*/
|
|
1490
|
+
interface PlatformUser {
|
|
1491
|
+
id: string;
|
|
1492
|
+
email: string;
|
|
1493
|
+
is_platform_owner: boolean;
|
|
1494
|
+
created_at: string;
|
|
1495
|
+
}
|
|
1496
|
+
/**
|
|
1497
|
+
* Platform user list response
|
|
1498
|
+
*/
|
|
1499
|
+
interface PlatformUserListResponse {
|
|
1500
|
+
users: PlatformUser[];
|
|
1501
|
+
total: number;
|
|
1502
|
+
}
|
|
1481
1503
|
|
|
1482
1504
|
/**
|
|
1483
1505
|
* End-user subscription details
|
|
@@ -4488,6 +4510,22 @@ declare class PlatformModule {
|
|
|
4488
4510
|
enabled: boolean;
|
|
4489
4511
|
has_backup_codes: boolean;
|
|
4490
4512
|
}>;
|
|
4513
|
+
/**
|
|
4514
|
+
* List all users on the platform with pagination.
|
|
4515
|
+
*
|
|
4516
|
+
* @param options Pagination options
|
|
4517
|
+
* @returns List of users and total count
|
|
4518
|
+
*
|
|
4519
|
+
* @example
|
|
4520
|
+
* ```typescript
|
|
4521
|
+
* const result = await sso.platform.users.list({ limit: 10, offset: 0 });
|
|
4522
|
+
* console.log(result.users);
|
|
4523
|
+
* ```
|
|
4524
|
+
*/
|
|
4525
|
+
list: (options?: {
|
|
4526
|
+
limit?: number;
|
|
4527
|
+
offset?: number;
|
|
4528
|
+
}) => Promise<PlatformUserListResponse>;
|
|
4491
4529
|
/**
|
|
4492
4530
|
* Search users by email address or user ID.
|
|
4493
4531
|
*
|
|
@@ -5628,4 +5666,4 @@ declare class SsoApiError extends Error {
|
|
|
5628
5666
|
isNotFound(): boolean;
|
|
5629
5667
|
}
|
|
5630
5668
|
|
|
5631
|
-
export { type AcceptInvitationPayload, type AdminLoginUrlParams, type AnalyticsQuery, type ApiKey, type ApiKeyCreateResponse, type ApproveOrganizationPayload, type AuditLog, type AuditLogEntry, type AuditLogQueryParams, type AuditLogResponse, AuthErrorCodes, AuthModule, type AuthSnapshot, type AuthenticationResponseJSON, type BackupCodesResponse, type BrandingConfiguration, BrowserStorage, type ChangePasswordRequest, type ChangePasswordResponse, type ConfigureSamlPayload, type ConfigureSamlResponse, CookieStorage, type CreateApiKeyPayload, type CreateCheckoutPayload, type CreateCheckoutResponse, type CreateInvitationPayload, type CreateOrganizationPayload, type CreateOrganizationResponse, type CreatePlanPayload, type CreateRoleRequest, type CreateScimTokenRequest, type CreateServicePayload, type CreateServiceResponse, type CreateSiemConfigRequest, type CreateWebhookRequest, type DeclineInvitationPayload, type DeviceCodeRequest, type DeviceCodeResponse, type DeviceVerifyResponse, type DomainConfiguration, type DomainVerificationMethod, type DomainVerificationResponse, type DomainVerificationResult, type EndUser, type EndUserDetailResponse, type EndUserIdentity, type EndUserListResponse, type EndUserSubscription, type EventTypeInfo, type ExportUserDataResponse, type ForgetUserResponse, type ForgotPasswordRequest, type ForgotPasswordResponse, type GeoLocation, type GetAuditLogParams, type GetRiskSettingsResponse, type GrowthTrendPoint, type Identity, type ImpersonateRequest, type ImpersonateResponse, type ImpersonationUserInfo, type Invitation, type InvitationStatus, type InvitationWithOrg, InvitationsModule, type JwtClaims, type ListApiKeysResponse, type ListDevicesResponse, type ListEndUsersParams, type ListOrganizationsParams, type ListPlatformOrganizationsParams, type ListScimTokensResponse, type ListSiemConfigsResponse, type LoginActivityPoint, type LoginEventExport, type LoginRequest, type LoginTrendPoint, type LoginUrlParams, type LoginsByProvider, type LoginsByService, type LookupEmailRequest, type LookupEmailResponse, MagicLinks, type MemberListResponse, type MemberRole, type Membership, type MembershipExport, MemoryStorage, type MfaEventExport, type MfaSetupResponse, type MfaStatusResponse, type MfaVerificationRequest, type MfaVerificationResponse, type MfaVerifyRequest, type MfaVerifyResponse, type OAuthCredentials, type OAuthIdentityExport, type OAuthProvider, type Organization, type OrganizationMember, type OrganizationResponse, type OrganizationStatus, type OrganizationStatusBreakdown, type OrganizationTier, OrganizationsModule, type PaginatedResponse, type PaginationInfo, type PaginationParams, type Passkey, type PasskeyAuthFinishRequest, type PasskeyAuthFinishResponse, type PasskeyAuthStartRequest, type PasskeyAuthStartResponse, type PasskeyExport, type PasskeyRegisterFinishRequest, type PasskeyRegisterFinishResponse, type PasskeyRegisterStartRequest, type PasskeyRegisterStartResponse, PasskeysModule, PermissionsModule, type Plan, type PlanResponse, type PlatformAnalyticsDateRangeParams, PlatformModule, type PlatformOrganizationResponse, type PlatformOrganizationsListResponse, type PlatformOverviewMetrics, type PromotePlatformOwnerPayload, type ProviderToken, type ProviderTokenGrant, type RecentLogin, type RecentOrganization, type RefreshTokenRequest, type RefreshTokenResponse, type RegisterRequest, type RegisterResponse, type RegistrationResponseJSON, type RejectOrganizationPayload, type ResendVerificationRequest, type ResendVerificationResponse, type ResetPasswordRequest, type ResetPasswordResponse, type RevokeDeviceRequest, type RevokeDeviceResponse, type RevokeSessionsResponse, type RiskAction, type RiskAssessment, type RiskEventResponse, type RiskEventsQuery, type RoleResponse, type SamlCertificate, type SamlConfig, type ScimTokenResponse, type SelectOrganizationResponse, type Service, ServiceApiModule, type ServiceListResponse, type ServiceResponse, type ServiceType, type ServiceWithDetails, ServicesModule, type SetCustomDomainRequest, type SetOAuthCredentialsPayload, type SetPasswordRequest, type SetPasswordResponse, type SetSmtpRequest, type SiemConfigResponse, type SiemProviderType, type SmtpConfigResponse, SsoApiError, SsoClient, type SsoClientOptions, type StartLinkResponse, type Subscription, type TestConnectionResponse, type TokenRequest, type TokenResponse, type TokenStorage, type TopOrganization, type TransferOwnershipPayload, type UpdateBrandingRequest, type UpdateMemberRolePayload, type UpdateOrganizationPayload, type UpdateOrganizationTierPayload, type UpdatePlanPayload, type UpdateRiskSettingsRequest, type UpdateRiskSettingsResponse, type UpdateRoleRequest, type UpdateServicePayload, type UpdateSiemConfigRequest, type UpdateUserProfilePayload, type UpdateWebhookRequest, type User, type UserDevice, UserModule, type UserProfile, type Webhook, type WebhookDelivery, type WebhookDeliveryListResponse, type WebhookDeliveryQueryParams, type WebhookListResponse, type WebhookResponse };
|
|
5669
|
+
export { type AcceptInvitationPayload, type AdminLoginUrlParams, type AnalyticsQuery, type ApiKey, type ApiKeyCreateResponse, type ApproveOrganizationPayload, type AuditLog, type AuditLogEntry, type AuditLogQueryParams, type AuditLogResponse, AuthErrorCodes, AuthModule, type AuthSnapshot, type AuthenticationResponseJSON, type BackupCodesResponse, type BrandingConfiguration, BrowserStorage, type ChangePasswordRequest, type ChangePasswordResponse, type ConfigureSamlPayload, type ConfigureSamlResponse, CookieStorage, type CreateApiKeyPayload, type CreateCheckoutPayload, type CreateCheckoutResponse, type CreateInvitationPayload, type CreateOrganizationPayload, type CreateOrganizationResponse, type CreatePlanPayload, type CreateRoleRequest, type CreateScimTokenRequest, type CreateServicePayload, type CreateServiceResponse, type CreateSiemConfigRequest, type CreateWebhookRequest, type DeclineInvitationPayload, type DeviceCodeRequest, type DeviceCodeResponse, type DeviceVerifyResponse, type DomainConfiguration, type DomainVerificationMethod, type DomainVerificationResponse, type DomainVerificationResult, type EndUser, type EndUserDetailResponse, type EndUserIdentity, type EndUserListResponse, type EndUserSubscription, type EventTypeInfo, type ExportUserDataResponse, type ForgetUserResponse, type ForgotPasswordRequest, type ForgotPasswordResponse, type GeoLocation, type GetAuditLogParams, type GetRiskSettingsResponse, type GrowthTrendPoint, type Identity, type ImpersonateRequest, type ImpersonateResponse, type ImpersonationUserInfo, type Invitation, type InvitationStatus, type InvitationWithOrg, InvitationsModule, type JwtClaims, type ListApiKeysResponse, type ListDevicesResponse, type ListEndUsersParams, type ListOrganizationsParams, type ListPlatformOrganizationsParams, type ListScimTokensResponse, type ListSiemConfigsResponse, type LoginActivityPoint, type LoginEventExport, type LoginRequest, type LoginTrendPoint, type LoginUrlParams, type LoginsByProvider, type LoginsByService, type LookupEmailRequest, type LookupEmailResponse, MagicLinks, type MemberListResponse, type MemberRole, type Membership, type MembershipExport, MemoryStorage, type MfaEventExport, type MfaSetupResponse, type MfaStatusResponse, type MfaVerificationRequest, type MfaVerificationResponse, type MfaVerifyRequest, type MfaVerifyResponse, type OAuthCredentials, type OAuthIdentityExport, type OAuthProvider, type Organization, type OrganizationMember, type OrganizationResponse, type OrganizationStatus, type OrganizationStatusBreakdown, type OrganizationTier, OrganizationsModule, type PaginatedResponse, type PaginationInfo, type PaginationParams, type Passkey, type PasskeyAuthFinishRequest, type PasskeyAuthFinishResponse, type PasskeyAuthStartRequest, type PasskeyAuthStartResponse, type PasskeyExport, type PasskeyRegisterFinishRequest, type PasskeyRegisterFinishResponse, type PasskeyRegisterStartRequest, type PasskeyRegisterStartResponse, PasskeysModule, PermissionsModule, type Plan, type PlanResponse, type PlatformAnalyticsDateRangeParams, PlatformModule, type PlatformOrganizationResponse, type PlatformOrganizationsListResponse, type PlatformOverviewMetrics, type PlatformUser, type PlatformUserListResponse, type PromotePlatformOwnerPayload, type ProviderToken, type ProviderTokenGrant, type RecentLogin, type RecentOrganization, type RefreshTokenRequest, type RefreshTokenResponse, type RegisterRequest, type RegisterResponse, type RegistrationResponseJSON, type RejectOrganizationPayload, type ResendVerificationRequest, type ResendVerificationResponse, type ResetPasswordRequest, type ResetPasswordResponse, type RevokeDeviceRequest, type RevokeDeviceResponse, type RevokeSessionsResponse, type RiskAction, type RiskAssessment, type RiskEventResponse, type RiskEventsQuery, type RoleResponse, type SamlCertificate, type SamlConfig, type ScimTokenResponse, type SelectOrganizationResponse, type Service, ServiceApiModule, type ServiceListResponse, type ServiceResponse, type ServiceType, type ServiceWithDetails, ServicesModule, type SetCustomDomainRequest, type SetOAuthCredentialsPayload, type SetPasswordRequest, type SetPasswordResponse, type SetSmtpRequest, type SiemConfigResponse, type SiemProviderType, type SmtpConfigResponse, SsoApiError, SsoClient, type SsoClientOptions, type StartLinkResponse, type Subscription, type TestConnectionResponse, type TokenRequest, type TokenResponse, type TokenStorage, type TopOrganization, type TransferOwnershipPayload, type UpdateBrandingRequest, type UpdateMemberRolePayload, type UpdateOrganizationPayload, type UpdateOrganizationTierPayload, type UpdatePlanPayload, type UpdateRiskSettingsRequest, type UpdateRiskSettingsResponse, type UpdateRoleRequest, type UpdateServicePayload, type UpdateSiemConfigRequest, type UpdateUserProfilePayload, type UpdateWebhookRequest, type User, type UserDevice, UserModule, type UserProfile, type Webhook, type WebhookDelivery, type WebhookDeliveryListResponse, type WebhookDeliveryQueryParams, type WebhookListResponse, type WebhookResponse };
|
package/dist/index.js
CHANGED
|
@@ -3544,6 +3544,22 @@ var PlatformModule = class {
|
|
|
3544
3544
|
const response = await this.http.get(`/api/platform/users/${userId}/mfa/status`);
|
|
3545
3545
|
return response.data;
|
|
3546
3546
|
},
|
|
3547
|
+
/**
|
|
3548
|
+
* List all users on the platform with pagination.
|
|
3549
|
+
*
|
|
3550
|
+
* @param options Pagination options
|
|
3551
|
+
* @returns List of users and total count
|
|
3552
|
+
*
|
|
3553
|
+
* @example
|
|
3554
|
+
* ```typescript
|
|
3555
|
+
* const result = await sso.platform.users.list({ limit: 10, offset: 0 });
|
|
3556
|
+
* console.log(result.users);
|
|
3557
|
+
* ```
|
|
3558
|
+
*/
|
|
3559
|
+
list: async (options) => {
|
|
3560
|
+
const response = await this.http.get("/api/platform/users", { params: options });
|
|
3561
|
+
return response.data;
|
|
3562
|
+
},
|
|
3547
3563
|
/**
|
|
3548
3564
|
* Search users by email address or user ID.
|
|
3549
3565
|
*
|
package/dist/index.mjs
CHANGED
|
@@ -3503,6 +3503,22 @@ var PlatformModule = class {
|
|
|
3503
3503
|
const response = await this.http.get(`/api/platform/users/${userId}/mfa/status`);
|
|
3504
3504
|
return response.data;
|
|
3505
3505
|
},
|
|
3506
|
+
/**
|
|
3507
|
+
* List all users on the platform with pagination.
|
|
3508
|
+
*
|
|
3509
|
+
* @param options Pagination options
|
|
3510
|
+
* @returns List of users and total count
|
|
3511
|
+
*
|
|
3512
|
+
* @example
|
|
3513
|
+
* ```typescript
|
|
3514
|
+
* const result = await sso.platform.users.list({ limit: 10, offset: 0 });
|
|
3515
|
+
* console.log(result.users);
|
|
3516
|
+
* ```
|
|
3517
|
+
*/
|
|
3518
|
+
list: async (options) => {
|
|
3519
|
+
const response = await this.http.get("/api/platform/users", { params: options });
|
|
3520
|
+
return response.data;
|
|
3521
|
+
},
|
|
3506
3522
|
/**
|
|
3507
3523
|
* Search users by email address or user ID.
|
|
3508
3524
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@drmhse/sso-sdk",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.14",
|
|
4
4
|
"description": "Zero-dependency TypeScript SDK for AuthOS, the multi-tenant authentication platform",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -18,7 +18,8 @@
|
|
|
18
18
|
}
|
|
19
19
|
},
|
|
20
20
|
"files": [
|
|
21
|
-
"dist"
|
|
21
|
+
"dist",
|
|
22
|
+
"README.md"
|
|
22
23
|
],
|
|
23
24
|
"scripts": {
|
|
24
25
|
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
|