@xube/kit-aws-auth-infrastructure 0.0.90 → 0.0.92

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.
@@ -7,7 +7,6 @@ const login_1 = require("./login");
7
7
  const signup_1 = require("./signup");
8
8
  exports.AUTH_PATH = "auth";
9
9
  class AuthAPIManager extends constructs_1.Construct {
10
- authApi;
11
10
  constructor(scope, id, props) {
12
11
  super(scope, id);
13
12
  this.authApi = new kit_aws_infrastructure_1.XubeRestAPI(scope, id + "xube-api", props);
package/dist/api/login.js CHANGED
@@ -8,7 +8,6 @@ const aws_lambda_nodejs_1 = require("aws-cdk-lib/aws-lambda-nodejs");
8
8
  const constructs_1 = require("constructs");
9
9
  const path_1 = require("path");
10
10
  class LoginAPI extends constructs_1.Construct {
11
- loginFunction;
12
11
  constructor(scope, id, props) {
13
12
  super(scope, id);
14
13
  this.loginFunction = new aws_lambda_nodejs_1.NodejsFunction(scope, id + "-login", {
@@ -8,7 +8,6 @@ const aws_lambda_nodejs_1 = require("aws-cdk-lib/aws-lambda-nodejs");
8
8
  const constructs_1 = require("constructs");
9
9
  const path_1 = require("path");
10
10
  class SignUpAPI extends constructs_1.Construct {
11
- signupFunction;
12
11
  constructor(scope, id, props) {
13
12
  super(scope, id);
14
13
  this.signupFunction = new aws_lambda_nodejs_1.NodejsFunction(scope, id + "-signup", {
@@ -11,9 +11,6 @@ const aws_cdk_lib_1 = require("aws-cdk-lib");
11
11
  const aws_ssm_1 = require("aws-cdk-lib/aws-ssm");
12
12
  const kit_aws_auth_1 = require("@xube/kit-aws-auth");
13
13
  class AuthManagement extends constructs_1.Construct {
14
- userPool;
15
- userPoolClient;
16
- authAPIManager;
17
14
  constructor(scope, id, props) {
18
15
  super(scope, id);
19
16
  const presignup = new aws_lambda_nodejs_1.NodejsFunction(scope, id + "-pre-signup", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xube/kit-aws-auth-infrastructure",
3
- "version": "0.0.90",
3
+ "version": "0.0.92",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -17,14 +17,14 @@
17
17
  },
18
18
  "homepage": "https://github.com/XubeLtd/dev-kit#readme",
19
19
  "devDependencies": {
20
- "@xube/kit-build": "^0.0.90"
20
+ "@xube/kit-build": "^0.0.92"
21
21
  },
22
22
  "dependencies": {
23
- "@xube/kit-aws": "^0.0.90",
24
- "@xube/kit-aws-auth": "^0.0.90",
25
- "@xube/kit-aws-infrastructure": "^0.0.90",
26
- "@xube/kit-constants": "^0.0.90",
27
- "@xube/kit-log": "^0.0.90",
23
+ "@xube/kit-aws": "^0.0.92",
24
+ "@xube/kit-aws-auth": "^0.0.92",
25
+ "@xube/kit-aws-infrastructure": "^0.0.92",
26
+ "@xube/kit-constants": "^0.0.92",
27
+ "@xube/kit-log": "^0.0.92",
28
28
  "aws-cdk-lib": "^2.157.0",
29
29
  "aws-lambda": "^1.0.7",
30
30
  "constructs": "^10.3.0"