@goldstack/template-user-management 0.1.82 → 0.1.84
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.
|
@@ -42,6 +42,15 @@ export type CookieSameSite = string;
|
|
|
42
42
|
* @pattern ^[^\s]*
|
|
43
43
|
*/
|
|
44
44
|
export type CallbackUrl = string;
|
|
45
|
+
/**
|
|
46
|
+
* When active, prevents accidental deletion of the user pool.
|
|
47
|
+
* Before you can delete a user pool that you have protected against deletion,
|
|
48
|
+
* you must deactivate this feature.
|
|
49
|
+
*
|
|
50
|
+
* @title Deletion Protection
|
|
51
|
+
* @default false
|
|
52
|
+
*/
|
|
53
|
+
export type DeletionProtection = boolean;
|
|
45
54
|
export interface ThisDeploymentConfiguration extends DeploymentConfiguration {
|
|
46
55
|
userPoolName: UserPoolName;
|
|
47
56
|
hostedZoneDomain: HostedZoneDomain;
|
|
@@ -49,6 +58,7 @@ export interface ThisDeploymentConfiguration extends DeploymentConfiguration {
|
|
|
49
58
|
cookieDomain: CookieDomain;
|
|
50
59
|
cookieSameSite: CookieSameSite;
|
|
51
60
|
callbackUrl: CallbackUrl;
|
|
61
|
+
deletionProtection?: DeletionProtection;
|
|
52
62
|
}
|
|
53
63
|
export type { ThisDeploymentConfiguration as UserManagementDeploymentConfiguration };
|
|
54
64
|
//# sourceMappingURL=UserManagementDeploymentConfiguration.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UserManagementDeploymentConfiguration.d.ts","sourceRoot":"","sources":["../../../src/types/UserManagementDeploymentConfiguration.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,kBAAkB,CAAC;AAEhE,YAAY,EAAE,uBAAuB,EAAE,CAAC;AAExC;;;;;GAKG;AACH,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC;AAElC;;;;;GAKG;AACH,MAAM,MAAM,gBAAgB,GAAG,MAAM,CAAC;AAEtC;;;;;GAKG;AACH,MAAM,MAAM,aAAa,GAAG,MAAM,CAAC;AAEnC;;;;;GAKG;AACH,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC;AAElC;;;;;GAKG;AACH,MAAM,MAAM,cAAc,GAAG,MAAM,CAAC;AAEpC;;;;;GAKG;AACH,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC;AAEjC,MAAM,WAAW,2BAA4B,SAAQ,uBAAuB;IAC1E,YAAY,EAAE,YAAY,CAAC;IAC3B,gBAAgB,EAAE,gBAAgB,CAAC;IACnC,aAAa,EAAE,aAAa,CAAC;IAC7B,YAAY,EAAE,YAAY,CAAC;IAC3B,cAAc,EAAE,cAAc,CAAC;IAC/B,WAAW,EAAE,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"UserManagementDeploymentConfiguration.d.ts","sourceRoot":"","sources":["../../../src/types/UserManagementDeploymentConfiguration.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,kBAAkB,CAAC;AAEhE,YAAY,EAAE,uBAAuB,EAAE,CAAC;AAExC;;;;;GAKG;AACH,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC;AAElC;;;;;GAKG;AACH,MAAM,MAAM,gBAAgB,GAAG,MAAM,CAAC;AAEtC;;;;;GAKG;AACH,MAAM,MAAM,aAAa,GAAG,MAAM,CAAC;AAEnC;;;;;GAKG;AACH,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC;AAElC;;;;;GAKG;AACH,MAAM,MAAM,cAAc,GAAG,MAAM,CAAC;AAEpC;;;;;GAKG;AACH,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC;AAEjC;;;;;;;GAOG;AACH,MAAM,MAAM,kBAAkB,GAAG,OAAO,CAAC;AAEzC,MAAM,WAAW,2BAA4B,SAAQ,uBAAuB;IAC1E,YAAY,EAAE,YAAY,CAAC;IAC3B,gBAAgB,EAAE,gBAAgB,CAAC;IACnC,aAAa,EAAE,aAAa,CAAC;IAC7B,YAAY,EAAE,YAAY,CAAC;IAC3B,cAAc,EAAE,cAAc,CAAC;IAC/B,WAAW,EAAE,WAAW,CAAC;IACzB,kBAAkB,CAAC,EAAE,kBAAkB,CAAC;CACzC;AAED,YAAY,EAAE,2BAA2B,IAAI,qCAAqC,EAAE,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@goldstack/template-user-management",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.84",
|
|
4
4
|
"description": "Template utilities for user management",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"goldstack",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@goldstack/utils-package": "0.4.41",
|
|
44
44
|
"@goldstack/utils-package-config-embedded": "0.5.42",
|
|
45
45
|
"@goldstack/utils-template": "0.4.40",
|
|
46
|
-
"@goldstack/utils-terraform": "0.4.
|
|
46
|
+
"@goldstack/utils-terraform": "0.4.74",
|
|
47
47
|
"aws-jwt-verify": "^3.2.0",
|
|
48
48
|
"source-map-support": "^0.5.21"
|
|
49
49
|
},
|