@asgardeo/javascript 0.20.1 → 0.23.0
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/AsgardeoJavaScriptClient.d.ts +85 -1
- package/dist/AsgardeoJavaScriptClient.d.ts.map +1 -1
- package/dist/__legacy__/client.d.ts.map +1 -1
- package/dist/__legacy__/models/client-config.d.ts +9 -0
- package/dist/__legacy__/models/client-config.d.ts.map +1 -1
- package/dist/api/getBrandingPreference.d.ts.map +1 -1
- package/dist/cjs/index.js +1130 -866
- package/dist/cjs/index.js.map +4 -4
- package/dist/edge/index.js +1130 -865
- package/dist/edge/index.js.map +4 -4
- package/dist/index.d.ts +63 -43
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1130 -865
- package/dist/index.js.map +4 -4
- package/dist/models/agent.d.ts +3 -3
- package/dist/models/agent.d.ts.map +1 -1
- package/dist/models/config.d.ts +22 -1
- package/dist/models/config.d.ts.map +1 -1
- package/dist/models/organization.d.ts +11 -1
- package/dist/models/organization.d.ts.map +1 -1
- package/dist/models/token-endpoint-auth.d.ts +30 -0
- package/dist/models/token-endpoint-auth.d.ts.map +1 -0
- package/dist/models/token.d.ts +1 -1
- package/dist/utils/base64Encode.d.ts +36 -0
- package/dist/utils/base64Encode.d.ts.map +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -16,25 +16,35 @@
|
|
|
16
16
|
* under the License.
|
|
17
17
|
*/
|
|
18
18
|
export { AsgardeoAuthClient } from './__legacy__/client';
|
|
19
|
-
export { DefaultAuthClientConfig, WellKnownAuthClientConfig, BaseURLAuthClientConfig, ExplicitAuthClientConfig, StrictAuthClientConfig, AuthClientConfig, } from './__legacy__/models';
|
|
19
|
+
export type { DefaultAuthClientConfig, WellKnownAuthClientConfig, BaseURLAuthClientConfig, ExplicitAuthClientConfig, StrictAuthClientConfig, AuthClientConfig, } from './__legacy__/models';
|
|
20
20
|
export { IsomorphicCrypto } from './IsomorphicCrypto';
|
|
21
21
|
export { default as initializeEmbeddedSignInFlow } from './api/initializeEmbeddedSignInFlow';
|
|
22
22
|
export { default as executeEmbeddedSignInFlow } from './api/executeEmbeddedSignInFlow';
|
|
23
23
|
export { default as executeEmbeddedSignUpFlow } from './api/executeEmbeddedSignUpFlow';
|
|
24
24
|
export { default as getUserInfo } from './api/getUserInfo';
|
|
25
|
-
export { default as getScim2Me
|
|
26
|
-
export {
|
|
27
|
-
export { default as
|
|
28
|
-
export {
|
|
29
|
-
export { default as
|
|
30
|
-
export {
|
|
31
|
-
export { default as
|
|
32
|
-
export {
|
|
33
|
-
export { default as
|
|
25
|
+
export { default as getScim2Me } from './api/getScim2Me';
|
|
26
|
+
export type { GetScim2MeConfig } from './api/getScim2Me';
|
|
27
|
+
export { default as getSchemas } from './api/getSchemas';
|
|
28
|
+
export type { GetSchemasConfig } from './api/getSchemas';
|
|
29
|
+
export { default as getAllOrganizations } from './api/getAllOrganizations';
|
|
30
|
+
export type { GetAllOrganizationsConfig } from './api/getAllOrganizations';
|
|
31
|
+
export { default as createOrganization } from './api/createOrganization';
|
|
32
|
+
export type { CreateOrganizationPayload, CreateOrganizationConfig } from './api/createOrganization';
|
|
33
|
+
export { default as getMeOrganizations } from './api/getMeOrganizations';
|
|
34
|
+
export type { GetMeOrganizationsConfig } from './api/getMeOrganizations';
|
|
35
|
+
export { default as getOrganization } from './api/getOrganization';
|
|
36
|
+
export type { OrganizationDetails, GetOrganizationConfig } from './api/getOrganization';
|
|
37
|
+
export { default as updateOrganization, createPatchOperations } from './api/updateOrganization';
|
|
38
|
+
export type { UpdateOrganizationConfig } from './api/updateOrganization';
|
|
39
|
+
export { default as updateMeProfile } from './api/updateMeProfile';
|
|
40
|
+
export type { UpdateMeProfileConfig } from './api/updateMeProfile';
|
|
41
|
+
export { default as getBrandingPreference } from './api/getBrandingPreference';
|
|
42
|
+
export type { GetBrandingPreferenceConfig } from './api/getBrandingPreference';
|
|
34
43
|
export { default as executeEmbeddedSignInFlowV2 } from './api/v2/executeEmbeddedSignInFlowV2';
|
|
35
44
|
export { default as executeEmbeddedSignUpFlowV2 } from './api/v2/executeEmbeddedSignUpFlowV2';
|
|
36
45
|
export { default as executeEmbeddedRecoveryFlowV2 } from './api/v2/executeEmbeddedRecoveryFlowV2';
|
|
37
|
-
export { default as executeEmbeddedUserOnboardingFlowV2
|
|
46
|
+
export { default as executeEmbeddedUserOnboardingFlowV2 } from './api/v2/executeEmbeddedUserOnboardingFlowV2';
|
|
47
|
+
export type { EmbeddedUserOnboardingFlowResponse } from './api/v2/executeEmbeddedUserOnboardingFlowV2';
|
|
38
48
|
export { default as getFlowMetaV2 } from './api/v2/getFlowMetaV2';
|
|
39
49
|
export { default as getOrganizationUnitChildren } from './api/v2/getOrganizationUnitChildren';
|
|
40
50
|
export { default as ApplicationNativeAuthenticationConstants } from './constants/ApplicationNativeAuthenticationConstants';
|
|
@@ -45,41 +55,51 @@ export { default as AsgardeoError } from './errors/AsgardeoError';
|
|
|
45
55
|
export { default as AsgardeoAPIError } from './errors/AsgardeoAPIError';
|
|
46
56
|
export { default as AsgardeoRuntimeError } from './errors/AsgardeoRuntimeError';
|
|
47
57
|
export { AsgardeoAuthException } from './errors/exception';
|
|
48
|
-
export { AllOrganizationsApiResponse } from './models/organization';
|
|
58
|
+
export type { AllOrganizationsApiResponse } from './models/organization';
|
|
49
59
|
export { Platform } from './models/platforms';
|
|
50
|
-
export {
|
|
51
|
-
export {
|
|
52
|
-
export {
|
|
53
|
-
export {
|
|
54
|
-
export {
|
|
55
|
-
export {
|
|
56
|
-
export {
|
|
57
|
-
export {
|
|
60
|
+
export { EmbeddedSignInFlowStatus, EmbeddedSignInFlowType, EmbeddedSignInFlowStepType, EmbeddedSignInFlowAuthenticatorParamType, EmbeddedSignInFlowAuthenticatorPromptType, EmbeddedSignInFlowAuthenticatorKnownIdPType, } from './models/embedded-signin-flow';
|
|
61
|
+
export type { EmbeddedSignInFlowInitiateResponse, EmbeddedSignInFlowAuthenticator, EmbeddedSignInFlowLink, EmbeddedSignInFlowHandleRequestPayload, EmbeddedSignInFlowHandleResponse, } from './models/embedded-signin-flow';
|
|
62
|
+
export { EmbeddedFlowComponentType as EmbeddedFlowComponentTypeV2, EmbeddedFlowEventType as EmbeddedFlowEventTypeV2, } from './models/v2/embedded-flow-v2';
|
|
63
|
+
export { EmbeddedFlowActionVariant as EmbeddedFlowActionVariantV2, EmbeddedFlowTextVariant as EmbeddedFlowTextVariantV2, } from './models/v2/embedded-flow-v2';
|
|
64
|
+
export type { EmbeddedFlowComponent as EmbeddedFlowComponentV2, EmbeddedFlowResponseData as EmbeddedFlowResponseDataV2, EmbeddedFlowExecuteRequestConfig as EmbeddedFlowExecuteRequestConfigV2, ConsentAttributeElement as ConsentAttributeElementV2, ConsentPurposeDecision as ConsentPurposeDecisionV2, ConsentDecisions as ConsentDecisionsV2, ConsentPurposeData as ConsentPurposeDataV2, ConsentPromptData as ConsentPromptDataV2, } from './models/v2/embedded-flow-v2';
|
|
65
|
+
export { EmbeddedSignInFlowStatus as EmbeddedSignInFlowStatusV2, EmbeddedSignInFlowType as EmbeddedSignInFlowTypeV2, } from './models/v2/embedded-signin-flow-v2';
|
|
66
|
+
export type { ExtendedEmbeddedSignInFlowResponse as ExtendedEmbeddedSignInFlowResponseV2, EmbeddedSignInFlowResponse as EmbeddedSignInFlowResponseV2, EmbeddedSignInFlowCompleteResponse as EmbeddedSignInFlowCompleteResponseV2, EmbeddedSignInFlowInitiateRequest as EmbeddedSignInFlowInitiateRequestV2, EmbeddedSignInFlowRequest as EmbeddedSignInFlowRequestV2, } from './models/v2/embedded-signin-flow-v2';
|
|
67
|
+
export { EmbeddedSignUpFlowStatus as EmbeddedSignUpFlowStatusV2, EmbeddedSignUpFlowType as EmbeddedSignUpFlowTypeV2, } from './models/v2/embedded-signup-flow-v2';
|
|
68
|
+
export type { ExtendedEmbeddedSignUpFlowResponse as ExtendedEmbeddedSignUpFlowResponseV2, EmbeddedSignUpFlowResponse as EmbeddedSignUpFlowResponseV2, EmbeddedSignUpFlowCompleteResponse as EmbeddedSignUpFlowCompleteResponseV2, EmbeddedSignUpFlowInitiateRequest as EmbeddedSignUpFlowInitiateRequestV2, EmbeddedSignUpFlowRequest as EmbeddedSignUpFlowRequestV2, EmbeddedSignUpFlowErrorResponse as EmbeddedSignUpFlowErrorResponseV2, } from './models/v2/embedded-signup-flow-v2';
|
|
69
|
+
export { EmbeddedRecoveryFlowStatus as EmbeddedRecoveryFlowStatusV2, EmbeddedRecoveryFlowType as EmbeddedRecoveryFlowTypeV2, } from './models/v2/embedded-recovery-flow-v2';
|
|
70
|
+
export type { EmbeddedRecoveryFlowResponse as EmbeddedRecoveryFlowResponseV2, EmbeddedRecoveryFlowInitiateRequest as EmbeddedRecoveryFlowInitiateRequestV2, EmbeddedRecoveryFlowRequest as EmbeddedRecoveryFlowRequestV2, EmbeddedRecoveryFlowErrorResponse as EmbeddedRecoveryFlowErrorResponseV2, } from './models/v2/embedded-recovery-flow-v2';
|
|
71
|
+
export type { OrganizationUnit, OrganizationUnitListResponse, GetOrganizationUnitChildrenConfig, } from './models/v2/organization-unit';
|
|
72
|
+
export { FlowMetaType } from './models/v2/flow-meta-v2';
|
|
73
|
+
export type { ApplicationMetadata, OUMetadata, DesignMetadata, I18nMetadata, FlowMetadataResponse, GetFlowMetaRequestConfig, FlowMetaTheme, FlowMetaThemeColorSet, FlowMetaThemeBackground, FlowMetaThemeTextColors, FlowMetaThemeColors, FlowMetaThemeColorScheme, FlowMetaThemeShape, FlowMetaThemeTypography, } from './models/v2/flow-meta-v2';
|
|
74
|
+
export { EmbeddedFlowComponentType, EmbeddedFlowType, EmbeddedFlowStatus, EmbeddedFlowResponseType, } from './models/embedded-flow';
|
|
75
|
+
export type { EmbeddedFlowExecuteResponse, EmbeddedSignUpFlowData, EmbeddedFlowComponent, EmbeddedFlowExecuteRequestPayload, EmbeddedFlowExecuteRequestConfig, EmbeddedFlowExecuteErrorResponse, } from './models/embedded-flow';
|
|
58
76
|
export { FlowMode } from './models/flow';
|
|
59
|
-
export { AsgardeoClient } from './models/client';
|
|
60
|
-
export { BaseConfig, Config, Preferences, ThemePreferences, I18nPreferences, I18nStorageStrategy, WithPreferences, Extensions, WithExtensions, SignInOptions, SignOutOptions, SignUpOptions, } from './models/config';
|
|
77
|
+
export type { AsgardeoClient } from './models/client';
|
|
78
|
+
export type { BaseConfig, Config, Preferences, ThemePreferences, I18nPreferences, I18nStorageStrategy, WithPreferences, Extensions, WithExtensions, SignInOptions, SignOutOptions, SignUpOptions, } from './models/config';
|
|
79
|
+
export type { TokenEndpointAuthMethod } from './models/token-endpoint-auth';
|
|
61
80
|
export type { ComponentRenderContext, ComponentRenderer, ComponentsExtensions } from './models/v2/extensions/components';
|
|
62
|
-
export { TokenResponse, IdToken, TokenExchangeRequestConfig } from './models/token';
|
|
63
|
-
export { AgentConfig } from './models/agent';
|
|
64
|
-
export { AuthCodeResponse } from './models/auth-code-response';
|
|
65
|
-
export { Crypto, JWKInterface } from './models/crypto';
|
|
66
|
-
export { OAuthResponseMode } from './models/oauth-response';
|
|
67
|
-
export { AuthorizeRequestUrlParams, KnownExtendedAuthorizeRequestUrlParams, ExtendedAuthorizeRequestUrlParams, } from './models/oauth-request';
|
|
68
|
-
export { OIDCEndpoints } from './models/oidc-endpoints';
|
|
69
|
-
export { OIDCDiscoveryApiResponse } from './models/oidc-discovery';
|
|
70
|
-
export { Storage, TemporaryStore } from './models/store';
|
|
71
|
-
export { User, UserProfile } from './models/user';
|
|
72
|
-
export { SessionData } from './models/session';
|
|
73
|
-
export { Organization } from './models/organization';
|
|
74
|
-
export { TranslationFn } from './models/v2/translation';
|
|
75
|
-
export { ResolveFlowTemplateLiteralsOptions } from './models/v2/vars';
|
|
76
|
-
export { BrandingPreference, BrandingPreferenceConfig, BrandingLayout, BrandingTheme, ThemeVariant, ButtonsConfig, ColorsConfig, ColorVariants, BrandingOrganizationDetails, UrlsConfig, } from './models/branding-preference';
|
|
77
|
-
export {
|
|
78
|
-
export {
|
|
81
|
+
export type { TokenResponse, IdToken, TokenExchangeRequestConfig } from './models/token';
|
|
82
|
+
export type { AgentConfig } from './models/agent';
|
|
83
|
+
export type { AuthCodeResponse } from './models/auth-code-response';
|
|
84
|
+
export type { Crypto, JWKInterface } from './models/crypto';
|
|
85
|
+
export type { OAuthResponseMode } from './models/oauth-response';
|
|
86
|
+
export type { AuthorizeRequestUrlParams, KnownExtendedAuthorizeRequestUrlParams, ExtendedAuthorizeRequestUrlParams, } from './models/oauth-request';
|
|
87
|
+
export type { OIDCEndpoints } from './models/oidc-endpoints';
|
|
88
|
+
export type { OIDCDiscoveryApiResponse } from './models/oidc-discovery';
|
|
89
|
+
export type { Storage, TemporaryStore } from './models/store';
|
|
90
|
+
export type { User, UserProfile } from './models/user';
|
|
91
|
+
export type { SessionData } from './models/session';
|
|
92
|
+
export type { Organization } from './models/organization';
|
|
93
|
+
export type { TranslationFn } from './models/v2/translation';
|
|
94
|
+
export type { ResolveFlowTemplateLiteralsOptions } from './models/v2/vars';
|
|
95
|
+
export type { BrandingPreference, BrandingPreferenceConfig, BrandingLayout, BrandingTheme, ThemeVariant, ButtonsConfig, ColorsConfig, ColorVariants, BrandingOrganizationDetails, UrlsConfig, } from './models/branding-preference';
|
|
96
|
+
export { WellKnownSchemaIds } from './models/scim2-schema';
|
|
97
|
+
export type { Schema, SchemaAttribute, FlattenedSchema } from './models/scim2-schema';
|
|
98
|
+
export type { RecursivePartial } from './models/utility-types';
|
|
79
99
|
export { FieldType } from './models/field';
|
|
80
100
|
export { default as AsgardeoJavaScriptClient } from './AsgardeoJavaScriptClient';
|
|
81
101
|
export { default as createTheme, DEFAULT_THEME } from './theme/createTheme';
|
|
82
|
-
export { ThemeColors, ThemeConfig, Theme, ThemeMode, ThemeDetection } from './theme/types';
|
|
102
|
+
export type { ThemeColors, ThemeConfig, Theme, ThemeMode, ThemeDetection } from './theme/types';
|
|
83
103
|
export { default as arrayBufferToBase64url } from './utils/arrayBufferToBase64url';
|
|
84
104
|
export { default as base64urlToArrayBuffer } from './utils/base64urlToArrayBuffer';
|
|
85
105
|
export { default as bem } from './utils/bem';
|
|
@@ -112,9 +132,9 @@ export { default as resolveLocaleEmoji } from './utils/v2/resolveLocaleEmoji';
|
|
|
112
132
|
export { default as processOpenIDScopes } from './utils/processOpenIDScopes';
|
|
113
133
|
export { default as withVendorCSSClassPrefix } from './utils/withVendorCSSClassPrefix';
|
|
114
134
|
export { default as transformBrandingPreferenceToTheme } from './utils/transformBrandingPreferenceToTheme';
|
|
115
|
-
export { default as logger, createLogger, createComponentLogger, createPackageLogger, createPackageComponentLogger,
|
|
116
|
-
export type { LoggerConfig } from './utils/logger';
|
|
135
|
+
export { default as logger, createLogger, createComponentLogger, createPackageLogger, createPackageComponentLogger, configure as configureLogger, debug, info, warn, error, } from './utils/logger';
|
|
136
|
+
export type { LogLevel, LoggerConfig } from './utils/logger';
|
|
117
137
|
export { default as StorageManager } from './StorageManager';
|
|
118
138
|
export { HttpClient } from './HttpClient';
|
|
119
|
-
export { HttpError, HttpRequestConfig, HttpResponse } from './models/http';
|
|
139
|
+
export type { HttpError, HttpRequestConfig, HttpResponse } from './models/http';
|
|
120
140
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAEH,OAAO,EAAC,kBAAkB,EAAC,MAAM,qBAAqB,CAAC;AACvD,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|