@asgardeo/javascript 0.12.0 → 0.13.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.
|
@@ -406,7 +406,7 @@ export interface ConsentPurposeDecision {
|
|
|
406
406
|
/** Per-attribute decisions for this purpose */
|
|
407
407
|
elements: ConsentAttributeElement[];
|
|
408
408
|
/** The name of the consent purpose */
|
|
409
|
-
|
|
409
|
+
purposeName: string;
|
|
410
410
|
}
|
|
411
411
|
/**
|
|
412
412
|
* Full consent decisions structure sent to the backend when user submits the consent form.
|
|
@@ -430,9 +430,9 @@ export interface ConsentPurposeData {
|
|
|
430
430
|
/** Attributes that the user can optionally decline */
|
|
431
431
|
optional: string[];
|
|
432
432
|
/** Unique identifier for the purpose */
|
|
433
|
-
|
|
433
|
+
purposeId: string;
|
|
434
434
|
/** Human-readable purpose name */
|
|
435
|
-
|
|
435
|
+
purposeName?: string;
|
|
436
436
|
}
|
|
437
437
|
/**
|
|
438
438
|
* Consent prompt data structure stored in additionalData.consent_prompt.
|
|
@@ -44,13 +44,13 @@ export interface ApplicationMetadata {
|
|
|
44
44
|
/** Application UUID */
|
|
45
45
|
id: string;
|
|
46
46
|
/** URL of the application logo */
|
|
47
|
-
|
|
47
|
+
logoUrl?: string;
|
|
48
48
|
/** Human-readable application name */
|
|
49
49
|
name: string;
|
|
50
50
|
/** Privacy Policy URI */
|
|
51
|
-
|
|
51
|
+
policyUri?: string;
|
|
52
52
|
/** Terms of Service URI */
|
|
53
|
-
|
|
53
|
+
tosUri?: string;
|
|
54
54
|
/** Application home URL */
|
|
55
55
|
url?: string;
|
|
56
56
|
}
|
|
@@ -64,7 +64,7 @@ export interface ApplicationMetadata {
|
|
|
64
64
|
*/
|
|
65
65
|
export interface OUMetadata {
|
|
66
66
|
/** Cookie Policy URI */
|
|
67
|
-
|
|
67
|
+
cookiePolicyUri?: string;
|
|
68
68
|
/** Optional description of the organization unit */
|
|
69
69
|
description?: string;
|
|
70
70
|
/** Unique handle / slug for the organization unit */
|
|
@@ -72,13 +72,13 @@ export interface OUMetadata {
|
|
|
72
72
|
/** Organization unit UUID */
|
|
73
73
|
id: string;
|
|
74
74
|
/** URL of the organization unit logo */
|
|
75
|
-
|
|
75
|
+
logoUrl?: string;
|
|
76
76
|
/** Human-readable organization unit name */
|
|
77
77
|
name: string;
|
|
78
78
|
/** Privacy Policy URI */
|
|
79
|
-
|
|
79
|
+
policyUri?: string;
|
|
80
80
|
/** Terms of Service URI */
|
|
81
|
-
|
|
81
|
+
tosUri?: string;
|
|
82
82
|
}
|
|
83
83
|
/**
|
|
84
84
|
* A single color entry in the v2 theme color scheme.
|
|
@@ -235,7 +235,7 @@ export interface FlowMetadataResponse {
|
|
|
235
235
|
/** Internationalisation metadata and translations */
|
|
236
236
|
i18n: I18nMetadata;
|
|
237
237
|
/** Indicates whether the registration flow is enabled for the entity */
|
|
238
|
-
|
|
238
|
+
isRegistrationFlowEnabled: boolean;
|
|
239
239
|
/**
|
|
240
240
|
* Organization unit metadata.
|
|
241
241
|
* Always present when `type=OU`.
|