Skip to content

Commit

Permalink
Merge pull request #12 from heliumtank92/v2.0.x
Browse files Browse the repository at this point in the history
V2.0.x
  • Loading branch information
heliumtank92 authored Nov 22, 2023
2 parents fd6b68a + 77db28b commit 0effb08
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 16 deletions.
2 changes: 1 addition & 1 deletion docs/dependencies.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
</ol>
<ul class="dependencies-list">
<li>
<b>@am92/redis</b> : ^2.0.1</li>
<b>@am92/redis</b> : ^2.0.2</li>
<li>
<b>lodash</b> : ^4.17.21</li>
</ul>
Expand Down
4 changes: 2 additions & 2 deletions docs/js/search/search_index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/properties.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
</ol>
<ul class="properties-list">
<li>
<b>Version</b> : 2.0.0</li>
<b>Version</b> : 2.0.1</li>
<li>
<b>Description</b> : HOTP Authentication Module</li>
<li>
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@am92/otp",
"version": "2.0.0",
"version": "2.0.1",
"description": "HOTP Authentication Module",
"sideEffects": false,
"types": "dist/index.d.ts",
Expand All @@ -25,7 +25,7 @@
"repository": "[email protected]:heliumtank92/am92-otp.git",
"homepage": "https://heliumtank92.github.io/am92-otp",
"dependencies": {
"@am92/redis": "^2.0.1",
"@am92/redis": "^2.0.2",
"lodash": "^4.17.21"
},
"devDependencies": {
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/OtpSdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import { OtpShouldGenerateData } from './TYPES_INTERNAL'
*
* @class
*/
export default class OtpSdk {
export class OtpSdk {
/** @private */
#initialized = false

Expand Down
2 changes: 1 addition & 1 deletion src/Redis.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import RedisSdk, { RedisSdkConfig } from '@am92/redis'
import { RedisSdk, RedisSdkConfig } from '@am92/redis'
import { OtpConfig } from './TYPES'

/** @internal */
Expand Down
6 changes: 2 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import OtpSdk from './OtpSdk'

export * from './TYPES'
export * from './OtpSdk'
export * from './OtpError'
export default OtpSdk
export * from './TYPES'

0 comments on commit 0effb08

Please sign in to comment.