@opexa/portal-sdk 0.0.6 → 0.0.7

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.
@@ -62,6 +62,7 @@ export interface RegisterMemberAccountMutationVariables {
62
62
  mobileNumber: string;
63
63
  birthDay: string;
64
64
  domain?: string;
65
+ btag?: string;
65
66
  };
66
67
  verificationCode?: string;
67
68
  reCAPTCHAResponse?: string;
package/dist/types.d.ts CHANGED
@@ -180,6 +180,7 @@ export interface CreateAccountInput {
180
180
  * - _max_: `10`
181
181
  * - _pattern_: `/^\d{4,10}$/`
182
182
  */
183
+ btag?: string;
183
184
  verificationCode?: string;
184
185
  reCAPTCHAResponse?: string;
185
186
  }
package/package.json CHANGED
@@ -1,78 +1,78 @@
1
- {
2
- "name": "@opexa/portal-sdk",
3
- "type": "module",
4
- "version": "0.0.6",
5
- "main": "dist/index.js",
6
- "module": "dist/index.mjs",
7
- "typings": "dist/index.d.ts",
8
- "exports": {
9
- ".": {
10
- "require": "./dist/index.js",
11
- "import": "./dist/index.mjs",
12
- "types": "./dist/index.d.ts"
13
- },
14
- "./package.json": "./package.json"
15
- },
16
- "publishConfig": {
17
- "access": "public"
18
- },
19
- "files": [
20
- "dist"
21
- ],
22
- "scripts": {
23
- "dev": "vite",
24
- "build": "tsc --noEmit && vite build --mode library",
25
- "test": "vitest",
26
- "release": "release-it"
27
- },
28
- "dependencies": {
29
- "@opexa/object-id": "0.1.6"
30
- },
31
- "devDependencies": {
32
- "@ark-ui/react": "3.5.0",
33
- "@faker-js/faker": "8.4.1",
34
- "@fontsource/fira-code": "5.0.18",
35
- "@fontsource/inter": "5.0.18",
36
- "@types/node": "20.14.9",
37
- "@types/react": "18.3.3",
38
- "@types/react-dom": "18.3.0",
39
- "@untitled-theme/icons-react": "0.10.1",
40
- "@vitejs/plugin-react-swc": "3.7.0",
41
- "autoprefixer": "10.4.19",
42
- "clsx": "2.1.1",
43
- "date-fns": "3.6.0",
44
- "msw": "2.3.1",
45
- "postcss": "8.4.39",
46
- "react": "18.3.1",
47
- "react-dom": "18.3.1",
48
- "react-router-dom": "6.24.0",
49
- "release-it": "17.4.1",
50
- "shiki": "1.10.1",
51
- "tailwind-variants": "0.2.1",
52
- "tailwindcss": "3.4.4",
53
- "typescript": "5.5.3",
54
- "vite": "5.3.3",
55
- "vite-plugin-dts": "3.9.1",
56
- "vite-plugin-node-polyfills": "0.22.0",
57
- "vite-tsconfig-paths": "4.3.2",
58
- "vitest": "1.6.0",
59
- "zod": "3.23.8"
60
- },
61
- "release-it": {
62
- "git": {
63
- "commitMessage": "chore: release ${npm.name} v${version}",
64
- "tagName": "${npm.name}@${version}"
65
- },
66
- "github": {
67
- "release": false
68
- },
69
- "hooks": {
70
- "before:init": [
71
- "pnpm test"
72
- ],
73
- "after:bump": [
74
- "pnpm build"
75
- ]
76
- }
77
- }
78
- }
1
+ {
2
+ "name": "@opexa/portal-sdk",
3
+ "type": "module",
4
+ "version": "0.0.7",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "typings": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "require": "./dist/index.js",
11
+ "import": "./dist/index.mjs",
12
+ "types": "./dist/index.d.ts"
13
+ },
14
+ "./package.json": "./package.json"
15
+ },
16
+ "publishConfig": {
17
+ "access": "public"
18
+ },
19
+ "files": [
20
+ "dist"
21
+ ],
22
+ "scripts": {
23
+ "dev": "vite",
24
+ "build": "tsc --noEmit && vite build --mode library",
25
+ "test": "vitest",
26
+ "release": "release-it"
27
+ },
28
+ "dependencies": {
29
+ "@opexa/object-id": "0.1.6"
30
+ },
31
+ "devDependencies": {
32
+ "@ark-ui/react": "3.5.0",
33
+ "@faker-js/faker": "8.4.1",
34
+ "@fontsource/fira-code": "5.0.18",
35
+ "@fontsource/inter": "5.0.18",
36
+ "@types/node": "20.14.9",
37
+ "@types/react": "18.3.3",
38
+ "@types/react-dom": "18.3.0",
39
+ "@untitled-theme/icons-react": "0.10.1",
40
+ "@vitejs/plugin-react-swc": "3.7.0",
41
+ "autoprefixer": "10.4.19",
42
+ "clsx": "2.1.1",
43
+ "date-fns": "3.6.0",
44
+ "msw": "2.3.1",
45
+ "postcss": "8.4.39",
46
+ "react": "18.3.1",
47
+ "react-dom": "18.3.1",
48
+ "react-router-dom": "6.24.0",
49
+ "release-it": "17.4.1",
50
+ "shiki": "1.10.1",
51
+ "tailwind-variants": "0.2.1",
52
+ "tailwindcss": "3.4.4",
53
+ "typescript": "5.5.3",
54
+ "vite": "5.3.3",
55
+ "vite-plugin-dts": "3.9.1",
56
+ "vite-plugin-node-polyfills": "0.22.0",
57
+ "vite-tsconfig-paths": "4.3.2",
58
+ "vitest": "1.6.0",
59
+ "zod": "3.23.8"
60
+ },
61
+ "release-it": {
62
+ "git": {
63
+ "commitMessage": "chore: release ${npm.name} v${version}",
64
+ "tagName": "${npm.name}@${version}"
65
+ },
66
+ "github": {
67
+ "release": false
68
+ },
69
+ "hooks": {
70
+ "before:init": [
71
+ "pnpm test"
72
+ ],
73
+ "after:bump": [
74
+ "pnpm build"
75
+ ]
76
+ }
77
+ }
78
+ }