@asgardeo/vue 0.2.3 → 0.3.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.
@@ -32,7 +32,7 @@
32
32
  * ```typescript
33
33
  * import { normalizeFlowResponse } from '../../../utils/v2/flowTransformer';
34
34
  *
35
- * const { flowId, components } = normalizeFlowResponse(apiResponse, t, {
35
+ * const { executionId, components } = normalizeFlowResponse(apiResponse, t, {
36
36
  * defaultErrorKey: 'components.signIn.errors.generic'
37
37
  * });
38
38
  * ```
@@ -46,8 +46,8 @@ type TranslationFn = (key: string, params?: Record<string, string | number>) =>
46
46
  * Generic flow error response interface that covers common error structure
47
47
  */
48
48
  export interface FlowErrorResponse {
49
+ executionId: string;
49
50
  failureReason?: string;
50
- flowId: string;
51
51
  flowStatus: 'ERROR';
52
52
  }
53
53
  /**
@@ -91,6 +91,6 @@ export declare const checkForErrorResponse: (response: any, t: TranslationFn, de
91
91
  export declare const normalizeFlowResponse: (response: any, t: TranslationFn, options?: FlowTransformOptions, meta?: FlowMetadataResponse | null) => {
92
92
  additionalData: Record<string, any>;
93
93
  components: EmbeddedFlowComponent[];
94
- flowId: string;
94
+ executionId: string;
95
95
  };
96
96
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@asgardeo/vue",
3
- "version": "0.2.3",
3
+ "version": "0.3.0",
4
4
  "description": "Vue 3 SDK for Asgardeo - Authentication and Identity Management",
5
5
  "keywords": [
6
6
  "asgardeo",
@@ -64,7 +64,7 @@
64
64
  "dependencies": {
65
65
  "dompurify": "3.3.1",
66
66
  "tslib": "2.8.1",
67
- "@asgardeo/browser": "0.6.3",
67
+ "@asgardeo/browser": "0.6.5",
68
68
  "@asgardeo/i18n": "0.4.5"
69
69
  },
70
70
  "publishConfig": {