@juniyadi/cognito 0.5.1 → 1.0.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.
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +11 -11
package/dist/index.d.mts
CHANGED
|
@@ -123,4 +123,4 @@ declare class Cognito {
|
|
|
123
123
|
addUserToGroup: (username: string, groupName: string) => Promise<AdminAddUserToGroupCommandOutput>;
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
-
export { Cognito, ICognito, ICognitoAttributes, ICognitoInviteUser };
|
|
126
|
+
export { Cognito, type ICognito, type ICognitoAttributes, type ICognitoInviteUser };
|
package/dist/index.d.ts
CHANGED
|
@@ -123,4 +123,4 @@ declare class Cognito {
|
|
|
123
123
|
addUserToGroup: (username: string, groupName: string) => Promise<AdminAddUserToGroupCommandOutput>;
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
-
export { Cognito, ICognito, ICognitoAttributes, ICognitoInviteUser };
|
|
126
|
+
export { Cognito, type ICognito, type ICognitoAttributes, type ICognitoInviteUser };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juniyadi/cognito",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"exports": {
|
|
@@ -28,17 +28,17 @@
|
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@aws-sdk/client-cognito-identity": "^3.388.0",
|
|
30
30
|
"@aws-sdk/client-cognito-identity-provider": "^3.388.0",
|
|
31
|
-
"@types/jest": "^29.5.
|
|
32
|
-
"@types/node": "^20.
|
|
31
|
+
"@types/jest": "^29.5.12",
|
|
32
|
+
"@types/node": "^20.12.8",
|
|
33
33
|
"aws-sdk-client-mock": "^3.0.0",
|
|
34
|
-
"eslint": "^8.
|
|
35
|
-
"jest": "^29.
|
|
36
|
-
"ts-jest": "^29.1.
|
|
37
|
-
"tsup": "^
|
|
38
|
-
"typedoc": "^0.
|
|
39
|
-
"typescript": "^5.
|
|
34
|
+
"eslint": "^8.57.0",
|
|
35
|
+
"jest": "^29.7.0",
|
|
36
|
+
"ts-jest": "^29.1.2",
|
|
37
|
+
"tsup": "^8.0.2",
|
|
38
|
+
"typedoc": "^0.25.13",
|
|
39
|
+
"typescript": "^5.4.5",
|
|
40
40
|
"@juniyadi/config-typedoc": "0.0.0",
|
|
41
|
-
"@juniyadi/random-string": "0.
|
|
41
|
+
"@juniyadi/random-string": "0.2.0",
|
|
42
42
|
"@juniyadi/tsconfig": "0.0.0",
|
|
43
43
|
"eslint-config-juniyadi": "0.0.1"
|
|
44
44
|
},
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"@aws-sdk/client-cognito-identity": "^3.388.0",
|
|
50
50
|
"@aws-sdk/client-cognito-identity-provider": "^3.388.0",
|
|
51
|
-
"@juniyadi/random-string": "0.
|
|
51
|
+
"@juniyadi/random-string": "0.2.0"
|
|
52
52
|
},
|
|
53
53
|
"scripts": {
|
|
54
54
|
"docs": "typedoc --out docs src/index.ts",
|