Skip to content

Commit 5f4e04b

Browse files
authored
Merge pull request #292 from brionmario/refactor-thunder-flows
Fix CI failure due to re-exports
2 parents a4300fb + 824db16 commit 5f4e04b

File tree

2 files changed

+27
-22
lines changed

2 files changed

+27
-22
lines changed

.changeset/beige-bugs-fetch.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@asgardeo/react': patch
3+
---
4+
5+
Fix CI failure due to re-exports

packages/react/src/index.ts

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -280,26 +280,26 @@ export {
280280
navigate,
281281
// Export `v2` models and types as first class citizens since they are
282282
// going to be the primary way to interact with embedded flows moving forward.
283-
EmbeddedFlowComponentTypeV2 as EmbeddedFlowComponentType,
284-
EmbeddedFlowActionVariantV2 as EmbeddedFlowActionVariant,
285-
EmbeddedFlowTextVariantV2 as EmbeddedFlowTextVariant,
286-
EmbeddedFlowEventTypeV2 as EmbeddedFlowEventType,
287-
EmbeddedFlowComponentV2 as EmbeddedFlowComponent,
288-
EmbeddedFlowResponseDataV2 as EmbeddedFlowResponseData,
289-
EmbeddedFlowExecuteRequestConfigV2 as EmbeddedFlowExecuteRequestConfig,
290-
EmbeddedSignInFlowStatusV2 as EmbeddedSignInFlowStatus,
291-
EmbeddedSignInFlowTypeV2 as EmbeddedSignInFlowType,
292-
ExtendedEmbeddedSignInFlowResponseV2 as ExtendedEmbeddedSignInFlowResponse,
293-
EmbeddedSignInFlowResponseV2 as EmbeddedSignInFlowResponse,
294-
EmbeddedSignInFlowCompleteResponseV2 as EmbeddedSignInFlowCompleteResponse,
295-
EmbeddedSignInFlowInitiateRequestV2 as EmbeddedSignInFlowInitiateRequest,
296-
EmbeddedSignInFlowRequestV2 as EmbeddedSignInFlowRequest,
297-
EmbeddedSignUpFlowStatusV2 as EmbeddedSignUpFlowStatus,
298-
EmbeddedSignUpFlowTypeV2 as EmbeddedSignUpFlowType,
299-
ExtendedEmbeddedSignUpFlowResponseV2 as ExtendedEmbeddedSignUpFlowResponse,
300-
EmbeddedSignUpFlowResponseV2 as EmbeddedSignUpFlowResponse,
301-
EmbeddedSignUpFlowCompleteResponseV2 as EmbeddedSignUpFlowCompleteResponse,
302-
EmbeddedSignUpFlowInitiateRequestV2 as EmbeddedSignUpFlowInitiateRequest,
303-
EmbeddedSignUpFlowRequestV2 as EmbeddedSignUpFlowRequest,
304-
EmbeddedSignUpFlowErrorResponseV2 as EmbeddedSignUpFlowErrorResponse,
283+
type EmbeddedFlowComponentTypeV2,
284+
type EmbeddedFlowActionVariantV2,
285+
type EmbeddedFlowTextVariantV2,
286+
type EmbeddedFlowEventTypeV2,
287+
type EmbeddedFlowComponentV2,
288+
type EmbeddedFlowResponseDataV2,
289+
type EmbeddedFlowExecuteRequestConfigV2,
290+
type EmbeddedSignInFlowStatusV2,
291+
type EmbeddedSignInFlowTypeV2,
292+
type ExtendedEmbeddedSignInFlowResponseV2,
293+
type EmbeddedSignInFlowResponseV2,
294+
type EmbeddedSignInFlowCompleteResponseV2,
295+
type EmbeddedSignInFlowInitiateRequestV2,
296+
type EmbeddedSignInFlowRequestV2,
297+
type EmbeddedSignUpFlowStatusV2,
298+
type EmbeddedSignUpFlowTypeV2,
299+
type ExtendedEmbeddedSignUpFlowResponseV2,
300+
type EmbeddedSignUpFlowResponseV2,
301+
type EmbeddedSignUpFlowCompleteResponseV2,
302+
type EmbeddedSignUpFlowInitiateRequestV2,
303+
type EmbeddedSignUpFlowRequestV2,
304+
type EmbeddedSignUpFlowErrorResponseV2,
305305
} from '@asgardeo/browser';

0 commit comments

Comments
 (0)