@complex-suite/request 1.1.3 → 1.1.4

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.
Files changed (2) hide show
  1. package/index.ts +8 -3
  2. package/package.json +35 -35
package/index.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import BaseRequest, { type RequestConfig, type RequestInitOption, type requestTrigger } from './src/BaseRequest'
2
- import Rule from './src/Rule'
3
- import Token from './src/Token'
2
+ import Rule, { type responseType, type tokenType, type RuleInitOption } from './src/Rule'
3
+ import Token, { type TokenInitOption, type locationType } from './src/Token'
4
4
 
5
5
  export {
6
6
  BaseRequest,
@@ -8,5 +8,10 @@ export {
8
8
  type RequestInitOption,
9
9
  type requestTrigger,
10
10
  Rule,
11
- Token
11
+ type responseType,
12
+ type tokenType,
13
+ type RuleInitOption,
14
+ Token,
15
+ type TokenInitOption,
16
+ type locationType
12
17
  }
package/package.json CHANGED
@@ -1,35 +1,35 @@
1
- {
2
- "name": "@complex-suite/request",
3
- "version": "1.1.3",
4
- "description": "a complex request",
5
- "type": "module",
6
- "main": "index.ts",
7
- "repository": {
8
- "type": "git",
9
- "url": "https://github.com/MarAngle/complex-request.git"
10
- },
11
- "dependencies": {
12
- "@complex-suite/utils": "2.10.5",
13
- "@complex-suite/plugin": "4.10.2"
14
- },
15
- "devDependencies": {
16
- "jsdom": "^27.1.0",
17
- "typescript": "^5.2.2",
18
- "vitest": "^4.0.7"
19
- },
20
- "keywords": [
21
- "complex",
22
- "ajax",
23
- "fetch",
24
- "require",
25
- "request"
26
- ],
27
- "author": "MarAngle",
28
- "license": "ISC",
29
- "scripts": {
30
- "check": "tsc --noEmit",
31
- "test": "vitest",
32
- "coverage": "vitest run --coverage",
33
- "release": "npm publish --registry=https://registry.npmjs.org"
34
- }
35
- }
1
+ {
2
+ "name": "@complex-suite/request",
3
+ "version": "1.1.4",
4
+ "description": "a complex request",
5
+ "type": "module",
6
+ "main": "index.ts",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/MarAngle/complex-request.git"
10
+ },
11
+ "dependencies": {
12
+ "@complex-suite/utils": "workspace:*",
13
+ "@complex-suite/plugin": "workspace:*"
14
+ },
15
+ "devDependencies": {
16
+ "jsdom": "^27.1.0",
17
+ "typescript": "^5.2.2",
18
+ "vitest": "^4.0.7"
19
+ },
20
+ "scripts": {
21
+ "check": "tsc --noEmit",
22
+ "test": "vitest",
23
+ "coverage": "vitest run --coverage",
24
+ "release": "npm publish --registry=https://registry.npmjs.org"
25
+ },
26
+ "keywords": [
27
+ "complex",
28
+ "ajax",
29
+ "fetch",
30
+ "require",
31
+ "request"
32
+ ],
33
+ "author": "MarAngle",
34
+ "license": "ISC"
35
+ }