@plyaz/types 1.27.7 → 1.27.9
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/dist/auth/enums.d.ts +38 -0
- package/dist/auth/index.cjs +65 -0
- package/dist/auth/index.cjs.map +1 -1
- package/dist/auth/index.js +59 -1
- package/dist/auth/index.js.map +1 -1
- package/dist/auth/types.d.ts +266 -1
- package/dist/index.cjs +65 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +59 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/auth/types.d.ts
CHANGED
|
@@ -344,6 +344,7 @@ export interface Permission {
|
|
|
344
344
|
metadata?: Record<string, unknown>;
|
|
345
345
|
createdAt: Date;
|
|
346
346
|
updatedAt: Date;
|
|
347
|
+
conditions?: Record<string, unknown>;
|
|
347
348
|
}
|
|
348
349
|
/**
|
|
349
350
|
* Role-Permission mapping (backoffice only).
|
|
@@ -765,7 +766,7 @@ export type AuthErrorDefinition = (typeof AUTH_ERROR_DEFINITIONS)[AuthErrorCodeV
|
|
|
765
766
|
/**
|
|
766
767
|
* Type for authentication error codes
|
|
767
768
|
*/
|
|
768
|
-
export type AuthErrorCode = typeof AUTH_ERROR_CODES[keyof typeof AUTH_ERROR_CODES];
|
|
769
|
+
export type AuthErrorCode = (typeof AUTH_ERROR_CODES)[keyof typeof AUTH_ERROR_CODES];
|
|
769
770
|
/**
|
|
770
771
|
* Error code to HTTP status mapping
|
|
771
772
|
* Maps error codes to appropriate HTTP status codes
|
|
@@ -775,3 +776,267 @@ export declare const ERROR_CODE_TO_HTTP_STATUS: Record<AuthErrorCode, number>;
|
|
|
775
776
|
* Error code descriptions for logging and debugging
|
|
776
777
|
*/
|
|
777
778
|
export declare const ERROR_CODE_DESCRIPTIONS: Record<AuthErrorCode, string>;
|
|
779
|
+
/**
|
|
780
|
+
* @fileoverview Interfaces and types for @plyaz/auth
|
|
781
|
+
* @module @plyaz/auth/interfaces
|
|
782
|
+
*/
|
|
783
|
+
export interface AuthUser {
|
|
784
|
+
id: string;
|
|
785
|
+
email: string;
|
|
786
|
+
clerkUserId?: string;
|
|
787
|
+
authProvider: string;
|
|
788
|
+
firstName?: string;
|
|
789
|
+
lastName?: string;
|
|
790
|
+
displayName: string;
|
|
791
|
+
avatarUrl?: string;
|
|
792
|
+
phoneNumber?: string;
|
|
793
|
+
isActive: boolean;
|
|
794
|
+
isVerified: boolean;
|
|
795
|
+
createdAt: Date;
|
|
796
|
+
updatedAt: Date;
|
|
797
|
+
lastLoginAt?: Date;
|
|
798
|
+
roles?: string[];
|
|
799
|
+
passwordHash?: string;
|
|
800
|
+
isSuspended?: boolean;
|
|
801
|
+
}
|
|
802
|
+
export interface UserRepository {
|
|
803
|
+
findById(id: string): Promise<AuthUser | null>;
|
|
804
|
+
findByEmail(email: string): Promise<AuthUser | null>;
|
|
805
|
+
create(data: CreateUserData): Promise<AuthUser>;
|
|
806
|
+
update(id: string, data: UpdateUserData): Promise<AuthUser>;
|
|
807
|
+
delete(id: string): Promise<void>;
|
|
808
|
+
}
|
|
809
|
+
export interface SessionRepository {
|
|
810
|
+
create(data: CreateSessionData): Promise<Session>;
|
|
811
|
+
findById(id: string): Promise<Session | null>;
|
|
812
|
+
findByUserId(userId: string): Promise<Session[]>;
|
|
813
|
+
invalidate(sessionId: string): Promise<void>;
|
|
814
|
+
delete(sessionId: string): Promise<void>;
|
|
815
|
+
deleteByUserId(userId: string): Promise<void>;
|
|
816
|
+
updateLastActive(sessionId: string): Promise<void>;
|
|
817
|
+
}
|
|
818
|
+
export interface ConnectedAccountRepository {
|
|
819
|
+
create(data: CreateConnectedAccountData): Promise<ConnectedAccount>;
|
|
820
|
+
findById(id: string): Promise<ConnectedAccount | null>;
|
|
821
|
+
findByUserId(userId: string): Promise<ConnectedAccount[]>;
|
|
822
|
+
findByProvider(provider: string, providerAccountId: string): Promise<ConnectedAccount | null>;
|
|
823
|
+
update(id: string, data: UpdateConnectedAccountData): Promise<ConnectedAccount>;
|
|
824
|
+
delete(id: string): Promise<void>;
|
|
825
|
+
}
|
|
826
|
+
export interface JWTConfig {
|
|
827
|
+
privateKey: string;
|
|
828
|
+
publicKey: string;
|
|
829
|
+
issuer: string;
|
|
830
|
+
audience: string;
|
|
831
|
+
accessTokenTTL: string;
|
|
832
|
+
refreshTokenTTL: string;
|
|
833
|
+
algorithm?: string;
|
|
834
|
+
}
|
|
835
|
+
export interface SessionConfig {
|
|
836
|
+
maxConcurrentSessions: number;
|
|
837
|
+
sessionTTL: number;
|
|
838
|
+
cleanupInterval: number;
|
|
839
|
+
}
|
|
840
|
+
/**
|
|
841
|
+
* @fileoverview OAuth provider constants for @plyaz/auth
|
|
842
|
+
* @module @plyaz/auth/constants/oauth-providers
|
|
843
|
+
*
|
|
844
|
+
* @description
|
|
845
|
+
* Defines supported OAuth providers and their configurations.
|
|
846
|
+
* Used by adapters, strategies, and frontend components to handle
|
|
847
|
+
* OAuth authentication flows. Provides standardized provider names
|
|
848
|
+
* and metadata for consistent provider handling.
|
|
849
|
+
*
|
|
850
|
+
* @example
|
|
851
|
+
* ```typescript
|
|
852
|
+
* import { OAUTH_PROVIDERS, OAuthProviderConfig } from '@plyaz/auth';
|
|
853
|
+
*
|
|
854
|
+
* const googleConfig = OAUTH_PROVIDER_CONFIGS[OAUTH_PROVIDERS.GOOGLE];
|
|
855
|
+
* const authUrl = `${googleConfig.authUrl}?client_id=${clientId}`;
|
|
856
|
+
* ```
|
|
857
|
+
*/
|
|
858
|
+
/**
|
|
859
|
+
* Supported OAuth providers
|
|
860
|
+
* Standardized provider identifiers used throughout the system
|
|
861
|
+
*/
|
|
862
|
+
export declare const OAUTH_PROVIDERS: {
|
|
863
|
+
/** Google OAuth 2.0 */
|
|
864
|
+
readonly GOOGLE: "GOOGLE";
|
|
865
|
+
/** Facebook OAuth 2.0 */
|
|
866
|
+
readonly FACEBOOK: "FACEBOOK";
|
|
867
|
+
/** Apple Sign In */
|
|
868
|
+
readonly APPLE: "APPLE";
|
|
869
|
+
/** GitHub OAuth 2.0 */
|
|
870
|
+
readonly GITHUB: "GITHUB";
|
|
871
|
+
/** Twitter OAuth 2.0 */
|
|
872
|
+
readonly TWITTER: "TWITTER";
|
|
873
|
+
/** LinkedIn OAuth 2.0 */
|
|
874
|
+
readonly LINKEDIN: "LINKEDIN";
|
|
875
|
+
/** Discord OAuth 2.0 */
|
|
876
|
+
readonly DISCORD: "DISCORD";
|
|
877
|
+
/** Microsoft OAuth 2.0 */
|
|
878
|
+
readonly MICROSOFT: "MICROSOFT";
|
|
879
|
+
};
|
|
880
|
+
/**
|
|
881
|
+
* Type for OAuth provider names
|
|
882
|
+
*/
|
|
883
|
+
export type OAuthProvider = typeof OAUTH_PROVIDERS[keyof typeof OAUTH_PROVIDERS];
|
|
884
|
+
/**
|
|
885
|
+
* OAuth provider configuration interface
|
|
886
|
+
*/
|
|
887
|
+
export interface OAuthProviderConfig {
|
|
888
|
+
/** Provider display name */
|
|
889
|
+
name: string;
|
|
890
|
+
/** OAuth authorization URL */
|
|
891
|
+
authUrl: string;
|
|
892
|
+
/** OAuth token exchange URL */
|
|
893
|
+
tokenUrl: string;
|
|
894
|
+
/** OAuth user info URL */
|
|
895
|
+
userInfoUrl: string;
|
|
896
|
+
/** Required OAuth scopes */
|
|
897
|
+
scopes: string[];
|
|
898
|
+
/** Provider brand color (for UI) */
|
|
899
|
+
brandColor: string;
|
|
900
|
+
/** Provider icon name (for UI) */
|
|
901
|
+
iconName: string;
|
|
902
|
+
}
|
|
903
|
+
/**
|
|
904
|
+
* Role assignment data
|
|
905
|
+
*/
|
|
906
|
+
export interface RoleAssignmentData {
|
|
907
|
+
/** User ID */
|
|
908
|
+
userId: string;
|
|
909
|
+
/** Role ID */
|
|
910
|
+
roleId: string;
|
|
911
|
+
/** Role name/code */
|
|
912
|
+
role: string;
|
|
913
|
+
/** Is primary role */
|
|
914
|
+
isPrimary?: boolean;
|
|
915
|
+
/** Assignment status */
|
|
916
|
+
status?: 'ACTIVE' | 'INACTIVE' | 'SUSPENDED';
|
|
917
|
+
/** Assigned by user ID */
|
|
918
|
+
assignedBy?: string;
|
|
919
|
+
/** Assignment reason */
|
|
920
|
+
assignedReason?: string;
|
|
921
|
+
/** Assignment expiration */
|
|
922
|
+
expiresAt?: Date;
|
|
923
|
+
}
|
|
924
|
+
/**
|
|
925
|
+
* Role repository interface
|
|
926
|
+
*/
|
|
927
|
+
export interface RoleRepositoryInterface {
|
|
928
|
+
findByScope(scope: 'B2C' | 'B2B'): Promise<Role[]>;
|
|
929
|
+
findUserRoles(userId: string): Promise<Role[]>;
|
|
930
|
+
assignRole(userId: string, roleId: string, assignedBy?: string, reason?: string): Promise<void>;
|
|
931
|
+
revokeRole(userId: string, roleId: string, revokedBy?: string, reason?: string): Promise<void>;
|
|
932
|
+
getRolePermissions(roleId: string): Promise<Permission[]>;
|
|
933
|
+
}
|
|
934
|
+
/**
|
|
935
|
+
* Dynamic role assignment
|
|
936
|
+
*/
|
|
937
|
+
export interface DynamicRoleAssignment {
|
|
938
|
+
/** Assignment ID */
|
|
939
|
+
id: string;
|
|
940
|
+
/** User ID */
|
|
941
|
+
userId: string;
|
|
942
|
+
/** Role ID or name */
|
|
943
|
+
roleId: string;
|
|
944
|
+
/** Assignment conditions */
|
|
945
|
+
conditions?: Record<string, unknown>;
|
|
946
|
+
/** Assignment expiration */
|
|
947
|
+
expiresAt?: Date;
|
|
948
|
+
/** Assignment reason */
|
|
949
|
+
reason?: string;
|
|
950
|
+
/** Assigned by user ID */
|
|
951
|
+
assignedBy?: string;
|
|
952
|
+
/** Assignment metadata */
|
|
953
|
+
metadata?: Record<string, unknown>;
|
|
954
|
+
/** Created at */
|
|
955
|
+
createdAt: Date;
|
|
956
|
+
/** Is active */
|
|
957
|
+
isActive: boolean;
|
|
958
|
+
}
|
|
959
|
+
/**
|
|
960
|
+
* Role condition evaluator function
|
|
961
|
+
*/
|
|
962
|
+
export type RoleConditionEvaluator = (userId: string, conditions: Record<string, unknown>, context?: Record<string, unknown>) => Promise<boolean>;
|
|
963
|
+
/**
|
|
964
|
+
* Dynamic roles configuration
|
|
965
|
+
*/
|
|
966
|
+
export interface DynamicRolesConfig {
|
|
967
|
+
/** Enable role expiration */
|
|
968
|
+
enableExpiration: boolean;
|
|
969
|
+
/** Default role TTL in seconds */
|
|
970
|
+
defaultTTL: number;
|
|
971
|
+
/** Enable condition evaluation */
|
|
972
|
+
enableConditions: boolean;
|
|
973
|
+
/** Maximum assignments per user */
|
|
974
|
+
maxAssignmentsPerUser: number;
|
|
975
|
+
/** Enable audit logging */
|
|
976
|
+
enableAuditLog: boolean;
|
|
977
|
+
}
|
|
978
|
+
/**
|
|
979
|
+
* Role hierarchy node
|
|
980
|
+
*/
|
|
981
|
+
export interface RoleNode {
|
|
982
|
+
/** Role information */
|
|
983
|
+
role: Role;
|
|
984
|
+
/** Parent roles (higher hierarchy) */
|
|
985
|
+
parents: Set<string>;
|
|
986
|
+
/** Child roles (lower hierarchy) */
|
|
987
|
+
children: Set<string>;
|
|
988
|
+
/** Direct permissions */
|
|
989
|
+
permissions: Set<string>;
|
|
990
|
+
/** Inherited permissions (computed) */
|
|
991
|
+
inheritedPermissions?: Set<string>;
|
|
992
|
+
}
|
|
993
|
+
/**
|
|
994
|
+
* Role hierarchy configuration
|
|
995
|
+
*/
|
|
996
|
+
export interface RoleHierarchyConfig {
|
|
997
|
+
/** Enable permission inheritance */
|
|
998
|
+
enableInheritance: boolean;
|
|
999
|
+
/** Maximum hierarchy depth */
|
|
1000
|
+
maxDepth: number;
|
|
1001
|
+
/** Enable circular dependency detection */
|
|
1002
|
+
detectCircular: boolean;
|
|
1003
|
+
/** Cache inherited permissions */
|
|
1004
|
+
cacheInheritance: boolean;
|
|
1005
|
+
}
|
|
1006
|
+
export interface RoleConfig {
|
|
1007
|
+
hierarchyEnabled: boolean;
|
|
1008
|
+
cacheEnabled: boolean;
|
|
1009
|
+
cacheTTL: number;
|
|
1010
|
+
}
|
|
1011
|
+
export interface PermissionContext {
|
|
1012
|
+
/** Resource owner ID */
|
|
1013
|
+
ownerId?: string;
|
|
1014
|
+
/** Organization ID */
|
|
1015
|
+
organizationId?: string;
|
|
1016
|
+
/** Additional context data */
|
|
1017
|
+
[key: string]: unknown;
|
|
1018
|
+
}
|
|
1019
|
+
/**
|
|
1020
|
+
* Permission check result
|
|
1021
|
+
*/
|
|
1022
|
+
export interface PermissionCheckResult {
|
|
1023
|
+
/** Permission granted */
|
|
1024
|
+
granted: boolean;
|
|
1025
|
+
/** Reason for decision */
|
|
1026
|
+
reason: string;
|
|
1027
|
+
/** Matched permission (if any) */
|
|
1028
|
+
matchedPermission?: Permission;
|
|
1029
|
+
/** Applied conditions */
|
|
1030
|
+
conditions?: Record<string, unknown>;
|
|
1031
|
+
}
|
|
1032
|
+
/**
|
|
1033
|
+
* Permission checker configuration
|
|
1034
|
+
*/
|
|
1035
|
+
export interface PermissionCheckerConfig {
|
|
1036
|
+
/** Enable permission caching */
|
|
1037
|
+
enableCaching: boolean;
|
|
1038
|
+
/** Cache TTL in seconds */
|
|
1039
|
+
cacheTTL: number;
|
|
1040
|
+
/** Enable audit logging */
|
|
1041
|
+
enableAuditLog: boolean;
|
|
1042
|
+
}
|
package/dist/index.cjs
CHANGED
|
@@ -5988,6 +5988,46 @@ var AUTH_ERROR_DEFINITIONS = {
|
|
|
5988
5988
|
retryable: false
|
|
5989
5989
|
}
|
|
5990
5990
|
};
|
|
5991
|
+
var USERROLESTATUS = /* @__PURE__ */ ((USERROLESTATUS2) => {
|
|
5992
|
+
USERROLESTATUS2["ACTIVE"] = "ACTIVE";
|
|
5993
|
+
USERROLESTATUS2["INACTIVE"] = "INACTIVE";
|
|
5994
|
+
USERROLESTATUS2["SUSPENDED"] = "SUSPENDED";
|
|
5995
|
+
return USERROLESTATUS2;
|
|
5996
|
+
})(USERROLESTATUS || {});
|
|
5997
|
+
var AUTHPROVIDER = /* @__PURE__ */ ((AUTHPROVIDER2) => {
|
|
5998
|
+
AUTHPROVIDER2["EMAIL"] = "EMAIL";
|
|
5999
|
+
AUTHPROVIDER2["CLERK"] = "CLERK";
|
|
6000
|
+
AUTHPROVIDER2["GOOGLE"] = "GOOGLE";
|
|
6001
|
+
AUTHPROVIDER2["FACEBOOK"] = "FACEBOOK";
|
|
6002
|
+
AUTHPROVIDER2["APPLE"] = "APPLE";
|
|
6003
|
+
AUTHPROVIDER2["WEB3"] = "WEB3";
|
|
6004
|
+
AUTHPROVIDER2["NEXTAUTH"] = "NEXTAUTH";
|
|
6005
|
+
return AUTHPROVIDER2;
|
|
6006
|
+
})(AUTHPROVIDER || {});
|
|
6007
|
+
var TOKENTYPE = /* @__PURE__ */ ((TOKENTYPE2) => {
|
|
6008
|
+
TOKENTYPE2["BEARER"] = "Bearer";
|
|
6009
|
+
TOKENTYPE2["JWT"] = "JWT";
|
|
6010
|
+
return TOKENTYPE2;
|
|
6011
|
+
})(TOKENTYPE || {});
|
|
6012
|
+
var PROVIDERTYPE = /* @__PURE__ */ ((PROVIDERTYPE2) => {
|
|
6013
|
+
PROVIDERTYPE2["OAUTH"] = "OAUTH";
|
|
6014
|
+
PROVIDERTYPE2["WEB3"] = "WEB3";
|
|
6015
|
+
PROVIDERTYPE2["EMAIL"] = "EMAIL";
|
|
6016
|
+
return PROVIDERTYPE2;
|
|
6017
|
+
})(PROVIDERTYPE || {});
|
|
6018
|
+
var SESSIONSTATUS = /* @__PURE__ */ ((SESSIONSTATUS2) => {
|
|
6019
|
+
SESSIONSTATUS2["ACTIVE"] = "ACTIVE";
|
|
6020
|
+
SESSIONSTATUS2["EXPIRED"] = "EXPIRED";
|
|
6021
|
+
SESSIONSTATUS2["REVOKED"] = "REVOKED";
|
|
6022
|
+
return SESSIONSTATUS2;
|
|
6023
|
+
})(SESSIONSTATUS || {});
|
|
6024
|
+
var MFATYPE = /* @__PURE__ */ ((MFATYPE2) => {
|
|
6025
|
+
MFATYPE2["TOTP"] = "TOTP";
|
|
6026
|
+
MFATYPE2["SMS"] = "SMS";
|
|
6027
|
+
MFATYPE2["EMAIL"] = "EMAIL";
|
|
6028
|
+
MFATYPE2["BackupCodes"] = "BACKUP_CODES";
|
|
6029
|
+
return MFATYPE2;
|
|
6030
|
+
})(MFATYPE || {});
|
|
5991
6031
|
var DEFAULT_PASSWORD = 8;
|
|
5992
6032
|
var ContactUsFormSchema = zod.z.object({
|
|
5993
6033
|
name: zod.z.string({ error: "errors.form.missingField" }).min(1, "errors.form.nameMissing"),
|
|
@@ -6048,6 +6088,24 @@ var ERROR_CODE_DESCRIPTIONS = {
|
|
|
6048
6088
|
[AUTH_ERROR_CODES.ACCOUNT_LOCKED]: "errors.auth.account_locked",
|
|
6049
6089
|
[AUTH_ERROR_CODES.ACCOUNT_SUSPENDED]: "errors.auth.account_suspended"
|
|
6050
6090
|
};
|
|
6091
|
+
var OAUTH_PROVIDERS = {
|
|
6092
|
+
/** Google OAuth 2.0 */
|
|
6093
|
+
GOOGLE: "GOOGLE",
|
|
6094
|
+
/** Facebook OAuth 2.0 */
|
|
6095
|
+
FACEBOOK: "FACEBOOK",
|
|
6096
|
+
/** Apple Sign In */
|
|
6097
|
+
APPLE: "APPLE",
|
|
6098
|
+
/** GitHub OAuth 2.0 */
|
|
6099
|
+
GITHUB: "GITHUB",
|
|
6100
|
+
/** Twitter OAuth 2.0 */
|
|
6101
|
+
TWITTER: "TWITTER",
|
|
6102
|
+
/** LinkedIn OAuth 2.0 */
|
|
6103
|
+
LINKEDIN: "LINKEDIN",
|
|
6104
|
+
/** Discord OAuth 2.0 */
|
|
6105
|
+
DISCORD: "DISCORD",
|
|
6106
|
+
/** Microsoft OAuth 2.0 */
|
|
6107
|
+
MICROSOFT: "MICROSOFT"
|
|
6108
|
+
};
|
|
6051
6109
|
|
|
6052
6110
|
// src/auth/auth-events.ts
|
|
6053
6111
|
var AUTH_EVENTS = {
|
|
@@ -9114,6 +9172,7 @@ exports.API_ERROR_CODES = API_ERROR_CODES;
|
|
|
9114
9172
|
exports.APP_CONTEXTS = APP_CONTEXTS;
|
|
9115
9173
|
exports.ATHLETE_PROFILE_ERRORS = ATHLETE_PROFILE_ERRORS;
|
|
9116
9174
|
exports.AUDIT_OPERATION = AUDIT_OPERATION;
|
|
9175
|
+
exports.AUTHPROVIDER = AUTHPROVIDER;
|
|
9117
9176
|
exports.AUTH_ERROR_CODES = AUTH_ERROR_CODES;
|
|
9118
9177
|
exports.AUTH_ERROR_DEFINITIONS = AUTH_ERROR_DEFINITIONS;
|
|
9119
9178
|
exports.AUTH_EVENTS = AUTH_EVENTS;
|
|
@@ -9235,6 +9294,7 @@ exports.MEDIA_ENTITY = MEDIA_ENTITY;
|
|
|
9235
9294
|
exports.MEDIA_EXTENSIONS = MEDIA_EXTENSIONS;
|
|
9236
9295
|
exports.MEDIA_MIME_PREFIXES = MEDIA_MIME_PREFIXES;
|
|
9237
9296
|
exports.MEDIA_VARIANT_TYPE = MEDIA_VARIANT_TYPE;
|
|
9297
|
+
exports.MFATYPE = MFATYPE;
|
|
9238
9298
|
exports.MIME_TYPES = MIME_TYPES;
|
|
9239
9299
|
exports.NETWORK_CONFIDENCE_LEVELS = NETWORK_CONFIDENCE_LEVELS;
|
|
9240
9300
|
exports.NETWORK_EVENTS = NETWORK_EVENTS;
|
|
@@ -9247,6 +9307,7 @@ exports.NOTIFICATION_PROVIDERS = NOTIFICATION_PROVIDERS;
|
|
|
9247
9307
|
exports.NetworkPresetNames = NetworkPresetNames;
|
|
9248
9308
|
exports.NotificationCategorySchema = NotificationCategorySchema;
|
|
9249
9309
|
exports.NotificationEventAction = NotificationEventAction;
|
|
9310
|
+
exports.OAUTH_PROVIDERS = OAUTH_PROVIDERS;
|
|
9250
9311
|
exports.OBSERVABILITY_METRICS = OBSERVABILITY_METRICS;
|
|
9251
9312
|
exports.OBSERVABILITY_SPANS = OBSERVABILITY_SPANS;
|
|
9252
9313
|
exports.ONBOARD_LINK_TYPE = ONBOARD_LINK_TYPE;
|
|
@@ -9271,6 +9332,7 @@ exports.PERFORMANCE_EVENTS = PERFORMANCE_EVENTS;
|
|
|
9271
9332
|
exports.PERFORMANCE_METRIC_TYPE = PERFORMANCE_METRIC_TYPE;
|
|
9272
9333
|
exports.PRIORITY_LEVEL = PRIORITY_LEVEL;
|
|
9273
9334
|
exports.PRODUCT_TYPE = PRODUCT_TYPE;
|
|
9335
|
+
exports.PROVIDERTYPE = PROVIDERTYPE;
|
|
9274
9336
|
exports.PROVIDER_PRODUCT_STATUS = PROVIDER_PRODUCT_STATUS;
|
|
9275
9337
|
exports.PUB_SUB_EVENT = PUB_SUB_EVENT;
|
|
9276
9338
|
exports.PhoneSchema = PhoneSchema;
|
|
@@ -9292,6 +9354,7 @@ exports.ROUTING_STRATEGY = ROUTING_STRATEGY;
|
|
|
9292
9354
|
exports.RTT_THRESHOLDS = RTT_THRESHOLDS;
|
|
9293
9355
|
exports.SECURITY_THREAT_TYPE = SECURITY_THREAT_TYPE;
|
|
9294
9356
|
exports.SERVICE_KEYS = SERVICE_KEYS;
|
|
9357
|
+
exports.SESSIONSTATUS = SESSIONSTATUS;
|
|
9295
9358
|
exports.SIGNATURE_METHOD = SIGNATURE_METHOD;
|
|
9296
9359
|
exports.SORT_DIRECTION = SORT_DIRECTION;
|
|
9297
9360
|
exports.SPEED_THRESHOLDS = SPEED_THRESHOLDS;
|
|
@@ -9332,6 +9395,7 @@ exports.TEMPLATE_DOCUMENT_TYPE_SCHEMA = TEMPLATE_DOCUMENT_TYPE_SCHEMA;
|
|
|
9332
9395
|
exports.TEMPLATE_OUTPUT_FORMAT = TEMPLATE_OUTPUT_FORMAT;
|
|
9333
9396
|
exports.TEMPLATE_VARIABLE_TYPE = TEMPLATE_VARIABLE_TYPE;
|
|
9334
9397
|
exports.TEMPLATE_VARIABLE_TYPE_SCHEMA = TEMPLATE_VARIABLE_TYPE_SCHEMA;
|
|
9398
|
+
exports.TOKENTYPE = TOKENTYPE;
|
|
9335
9399
|
exports.TOKEN_TYPE = TOKEN_TYPE;
|
|
9336
9400
|
exports.TRACKING_PHASES = TRACKING_PHASES;
|
|
9337
9401
|
exports.TRANSACTION_TYPE = TRANSACTION_TYPE;
|
|
@@ -9348,6 +9412,7 @@ exports.UNIFIED_OPERATIONS = UNIFIED_OPERATIONS;
|
|
|
9348
9412
|
exports.UNIVERSAL_RUNTIMES = UNIVERSAL_RUNTIMES;
|
|
9349
9413
|
exports.UPDATE_STRATEGIES = UPDATE_STRATEGIES;
|
|
9350
9414
|
exports.UPLOAD_STATUS = UPLOAD_STATUS;
|
|
9415
|
+
exports.USERROLESTATUS = USERROLESTATUS;
|
|
9351
9416
|
exports.USER_ROLE = USER_ROLE;
|
|
9352
9417
|
exports.USER_ROLE_STATUS = USER_ROLE_STATUS;
|
|
9353
9418
|
exports.USER_STATUS = USER_STATUS;
|