@ahoo-wang/fetcher-cosec 0.9.0 → 0.9.2

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.
@@ -1,9 +1,9 @@
1
1
  import { FetchExchange, Interceptor } from '@ahoo-wang/fetcher';
2
2
  import { CoSecOptions } from './types';
3
3
  /**
4
- * CoSec Request Interceptor
4
+ * Interceptor that automatically adds CoSec authentication headers to requests.
5
5
  *
6
- * Automatically adds CoSec authentication headers to requests:
6
+ * This interceptor adds the following headers to each request:
7
7
  * - CoSec-Device-Id: Device identifier (stored in localStorage or generated)
8
8
  * - CoSec-App-Id: Application identifier
9
9
  * - Authorization: Bearer token
@@ -21,7 +21,7 @@ export declare class CoSecRequestInterceptor implements Interceptor {
21
21
  private options;
22
22
  constructor(options: CoSecOptions);
23
23
  /**
24
- * Intercept requests to add CoSec authentication headers
24
+ * Intercept requests to add CoSec authentication headers.
25
25
  *
26
26
  * This method adds the following headers to each request:
27
27
  * - CoSec-App-Id: The application identifier from the CoSec options
@@ -29,7 +29,7 @@ export declare class CoSecRequestInterceptor implements Interceptor {
29
29
  * - CoSec-Request-Id: A unique identifier for this specific request
30
30
  * - Authorization: Bearer token if available in token storage
31
31
  *
32
- * @returns The modified exchange with CoSec authentication headers added
32
+ * @param exchange - The fetch exchange containing the request to process
33
33
  */
34
34
  intercept(exchange: FetchExchange): void;
35
35
  }
@@ -1,9 +1,7 @@
1
1
  import { CoSecOptions } from './types';
2
2
  import { FetchExchange, Interceptor } from '@ahoo-wang/fetcher';
3
3
  /**
4
- * CoSec Response Interceptor
5
- *
6
- * Handles automatic token refresh based on response codes
4
+ * Interceptor that handles automatic token refresh based on response codes.
7
5
  *
8
6
  * @remarks
9
7
  * This interceptor runs near the end of the response processing chain, just before
@@ -18,7 +16,7 @@ export declare class CoSecResponseInterceptor implements Interceptor {
18
16
  private options;
19
17
  constructor(options: CoSecOptions);
20
18
  /**
21
- * Intercept responses to handle token refresh for unauthorized responses
19
+ * Intercept responses to handle token refresh for unauthorized responses.
22
20
  *
23
21
  * This method checks if a response has a 401 (UNAUTHORIZED) status code and attempts
24
22
  * to refresh the authentication token if one is available. If token refresh is successful,
@@ -26,7 +24,6 @@ export declare class CoSecResponseInterceptor implements Interceptor {
26
24
  * tokens are cleared and the original error is re-thrown.
27
25
  *
28
26
  * @param exchange - The fetch exchange containing the response to be processed
29
- * @returns Promise<FetchExchange> The processed exchange, either with a refreshed token or original error
30
27
  * @throws Error if token refresh fails or other errors occur during processing
31
28
  */
32
29
  intercept(exchange: FetchExchange): Promise<void>;
@@ -1 +1 @@
1
- {"version":3,"file":"cosecResponseInterceptor.d.ts","sourceRoot":"","sources":["../src/cosecResponseInterceptor.ts"],"names":[],"mappings":"AAaA,OAAO,EAAE,YAAY,EAAiB,MAAM,SAAS,CAAC;AACtD,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAEhE;;;;;;;;;;;GAWG;AACH,qBAAa,wBAAyB,YAAW,WAAW;IAC1D,IAAI,SAA8B;IAClC,KAAK,SAAiC;IACtC,OAAO,CAAC,OAAO,CAAe;gBAElB,OAAO,EAAE,YAAY;IAIjC;;;;;;;;;;;OAWG;IACG,SAAS,CAAC,QAAQ,EAAE,aAAa,GAAG,OAAO,CAAC,IAAI,CAAC;CAsBxD"}
1
+ {"version":3,"file":"cosecResponseInterceptor.d.ts","sourceRoot":"","sources":["../src/cosecResponseInterceptor.ts"],"names":[],"mappings":"AAaA,OAAO,EAAE,YAAY,EAAiB,MAAM,SAAS,CAAC;AACtD,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAEhE;;;;;;;;;GASG;AACH,qBAAa,wBAAyB,YAAW,WAAW;IAC1D,IAAI,SAA8B;IAClC,KAAK,SAAiC;IACtC,OAAO,CAAC,OAAO,CAAe;gBAElB,OAAO,EAAE,YAAY;IAIjC;;;;;;;;;;OAUG;IACG,SAAS,CAAC,QAAQ,EAAE,aAAa,GAAG,OAAO,CAAC,IAAI,CAAC;CAsBxD"}
@@ -1,29 +1,37 @@
1
1
  export declare const DEFAULT_COSEC_DEVICE_ID_KEY = "cosec-device-id";
2
2
  /**
3
- * Device ID storage class for managing device identifiers
3
+ * Storage class for managing device identifiers.
4
4
  */
5
5
  export declare class DeviceIdStorage {
6
6
  private readonly deviceIdKey;
7
7
  private storage;
8
8
  constructor(deviceIdKey?: string, storage?: Storage);
9
9
  /**
10
- * Get the current device ID
10
+ * Get the current device ID.
11
+ *
12
+ * @returns The current device ID or null if not set
11
13
  */
12
14
  get(): string | null;
13
15
  /**
14
- * Set a device ID
16
+ * Set a device ID.
17
+ *
18
+ * @param deviceId - The device ID to set
15
19
  */
16
20
  set(deviceId: string): void;
17
21
  /**
18
- * Generate a new device ID
22
+ * Generate a new device ID.
23
+ *
24
+ * @returns A newly generated device ID
19
25
  */
20
26
  generateDeviceId(): string;
21
27
  /**
22
- * Get or create a device ID
28
+ * Get or create a device ID.
29
+ *
30
+ * @returns The existing device ID if available, otherwise a newly generated one
23
31
  */
24
32
  getOrCreate(): string;
25
33
  /**
26
- * Clear the stored device ID
34
+ * Clear the stored device ID.
27
35
  */
28
36
  clear(): void;
29
37
  }
@@ -1 +1 @@
1
- {"version":3,"file":"deviceIdStorage.d.ts","sourceRoot":"","sources":["../src/deviceIdStorage.ts"],"names":[],"mappings":"AAgBA,eAAO,MAAM,2BAA2B,oBAAoB,CAAC;AAE7D;;GAEG;AACH,qBAAa,eAAe;IAC1B,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAS;IACrC,OAAO,CAAC,OAAO,CAAU;gBAGvB,WAAW,GAAE,MAAoC,EACjD,OAAO,GAAE,OAAsB;IAMjC;;OAEG;IACH,GAAG,IAAI,MAAM,GAAG,IAAI;IAIpB;;OAEG;IACH,GAAG,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI;IAI3B;;OAEG;IACH,gBAAgB,IAAI,MAAM;IAI1B;;OAEG;IACH,WAAW,IAAI,MAAM;IAYrB;;OAEG;IACH,KAAK,IAAI,IAAI;CAGd"}
1
+ {"version":3,"file":"deviceIdStorage.d.ts","sourceRoot":"","sources":["../src/deviceIdStorage.ts"],"names":[],"mappings":"AAgBA,eAAO,MAAM,2BAA2B,oBAAoB,CAAC;AAE7D;;GAEG;AACH,qBAAa,eAAe;IAC1B,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAS;IACrC,OAAO,CAAC,OAAO,CAAU;gBAGvB,WAAW,GAAE,MAAoC,EACjD,OAAO,GAAE,OAAsB;IAMjC;;;;OAIG;IACH,GAAG,IAAI,MAAM,GAAG,IAAI;IAIpB;;;;OAIG;IACH,GAAG,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI;IAI3B;;;;OAIG;IACH,gBAAgB,IAAI,MAAM;IAI1B;;;;OAIG;IACH,WAAW,IAAI,MAAM;IAYrB;;OAEG;IACH,KAAK,IAAI,IAAI;CAGd"}
@@ -2,12 +2,14 @@ export interface IdGenerator {
2
2
  generateId(): string;
3
3
  }
4
4
  /**
5
- * Nano ID implementation of IdGenerator
6
- * Generates unique request IDs using Nano ID
5
+ * Nano ID implementation of IdGenerator.
6
+ * Generates unique request IDs using Nano ID.
7
7
  */
8
8
  export declare class NanoIdGenerator implements IdGenerator {
9
9
  /**
10
- * Generate a unique request ID
10
+ * Generate a unique request ID.
11
+ *
12
+ * @returns A unique request ID
11
13
  */
12
14
  generateId(): string;
13
15
  }
@@ -1 +1 @@
1
- {"version":3,"file":"idGenerator.d.ts","sourceRoot":"","sources":["../src/idGenerator.ts"],"names":[],"mappings":"AAeA,MAAM,WAAW,WAAW;IAC1B,UAAU,IAAI,MAAM,CAAC;CACtB;AAED;;;GAGG;AACH,qBAAa,eAAgB,YAAW,WAAW;IACjD;;OAEG;IACH,UAAU,IAAI,MAAM;CAGrB;AAED,eAAO,MAAM,WAAW,iBAAwB,CAAC"}
1
+ {"version":3,"file":"idGenerator.d.ts","sourceRoot":"","sources":["../src/idGenerator.ts"],"names":[],"mappings":"AAeA,MAAM,WAAW,WAAW;IAC1B,UAAU,IAAI,MAAM,CAAC;CACtB;AAED;;;GAGG;AACH,qBAAa,eAAgB,YAAW,WAAW;IACjD;;;;OAIG;IACH,UAAU,IAAI,MAAM;CAGrB;AAED,eAAO,MAAM,WAAW,iBAAwB,CAAC"}
@@ -1,5 +1,5 @@
1
1
  /**
2
- * In-memory storage fallback for environments without localStorage
2
+ * In-memory storage fallback for environments without localStorage.
3
3
  */
4
4
  export declare class InMemoryStorage implements Storage {
5
5
  private store;
package/dist/index.es.js CHANGED
@@ -14,7 +14,9 @@ let d = (t = 21) => {
14
14
  };
15
15
  class l {
16
16
  /**
17
- * Generate a unique request ID
17
+ * Generate a unique request ID.
18
+ *
19
+ * @returns A unique request ID
18
20
  */
19
21
  generateId() {
20
22
  return d();
@@ -26,7 +28,7 @@ class T {
26
28
  this.name = "CoSecRequestInterceptor", this.order = Number.MIN_SAFE_INTEGER + 1e3, this.options = e;
27
29
  }
28
30
  /**
29
- * Intercept requests to add CoSec authentication headers
31
+ * Intercept requests to add CoSec authentication headers.
30
32
  *
31
33
  * This method adds the following headers to each request:
32
34
  * - CoSec-App-Id: The application identifier from the CoSec options
@@ -34,7 +36,7 @@ class T {
34
36
  * - CoSec-Request-Id: A unique identifier for this specific request
35
37
  * - Authorization: Bearer token if available in token storage
36
38
  *
37
- * @returns The modified exchange with CoSec authentication headers added
39
+ * @param exchange - The fetch exchange containing the request to process
38
40
  */
39
41
  intercept(e) {
40
42
  const r = I.generateId(), n = this.options.deviceIdStorage.getOrCreate(), s = this.options.tokenStorage.get(), a = {
@@ -51,7 +53,7 @@ class D {
51
53
  this.name = "CoSecResponseInterceptor", this.order = Number.MAX_SAFE_INTEGER - 100, this.options = e;
52
54
  }
53
55
  /**
54
- * Intercept responses to handle token refresh for unauthorized responses
56
+ * Intercept responses to handle token refresh for unauthorized responses.
55
57
  *
56
58
  * This method checks if a response has a 401 (UNAUTHORIZED) status code and attempts
57
59
  * to refresh the authentication token if one is available. If token refresh is successful,
@@ -59,7 +61,6 @@ class D {
59
61
  * tokens are cleared and the original error is re-thrown.
60
62
  *
61
63
  * @param exchange - The fetch exchange containing the response to be processed
62
- * @returns Promise<FetchExchange> The processed exchange, either with a refreshed token or original error
63
64
  * @throws Error if token refresh fails or other errors occur during processing
64
65
  */
65
66
  async intercept(e) {
@@ -109,32 +110,40 @@ class y {
109
110
  this.deviceIdKey = e, this.storage = r;
110
111
  }
111
112
  /**
112
- * Get the current device ID
113
+ * Get the current device ID.
114
+ *
115
+ * @returns The current device ID or null if not set
113
116
  */
114
117
  get() {
115
118
  return this.storage.getItem(this.deviceIdKey);
116
119
  }
117
120
  /**
118
- * Set a device ID
121
+ * Set a device ID.
122
+ *
123
+ * @param deviceId - The device ID to set
119
124
  */
120
125
  set(e) {
121
126
  this.storage.setItem(this.deviceIdKey, e);
122
127
  }
123
128
  /**
124
- * Generate a new device ID
129
+ * Generate a new device ID.
130
+ *
131
+ * @returns A newly generated device ID
125
132
  */
126
133
  generateDeviceId() {
127
134
  return I.generateId();
128
135
  }
129
136
  /**
130
- * Get or create a device ID
137
+ * Get or create a device ID.
138
+ *
139
+ * @returns The existing device ID if available, otherwise a newly generated one
131
140
  */
132
141
  getOrCreate() {
133
142
  let e = this.get();
134
143
  return e || (e = this.generateDeviceId(), this.set(e)), e;
135
144
  }
136
145
  /**
137
- * Clear the stored device ID
146
+ * Clear the stored device ID.
138
147
  */
139
148
  clear() {
140
149
  this.storage.removeItem(this.deviceIdKey);
@@ -146,21 +155,25 @@ class A {
146
155
  this.tokenKey = e, this.storage = r;
147
156
  }
148
157
  /**
149
- * Get the current access token
158
+ * Get the current access token.
159
+ *
160
+ * @returns The current composite token or null if not set
150
161
  */
151
162
  get() {
152
163
  const e = this.storage.getItem(this.tokenKey);
153
164
  return e ? JSON.parse(e) : null;
154
165
  }
155
166
  /**
156
- * Store a composite token
167
+ * Store a composite token.
168
+ *
169
+ * @param token - The composite token to store
157
170
  */
158
171
  set(e) {
159
172
  const r = JSON.stringify(e);
160
173
  this.storage.setItem(this.tokenKey, r);
161
174
  }
162
175
  /**
163
- * Clear all tokens
176
+ * Clear all tokens.
164
177
  */
165
178
  clear() {
166
179
  this.storage.removeItem(this.tokenKey);
@@ -1,28 +1,31 @@
1
1
  /**
2
- * Access token interface
2
+ * Interface for access tokens.
3
3
  */
4
4
  export interface AccessToken {
5
5
  accessToken: string;
6
6
  }
7
7
  /**
8
- * Refresh token interface
8
+ * Interface for refresh tokens.
9
9
  */
10
10
  export interface RefreshToken {
11
11
  refreshToken: string;
12
12
  }
13
13
  /**
14
- * Composite token interface that contains both access and refresh tokens
15
- * accessToken and refreshToken always appear in pairs, no need to split them
14
+ * Composite token interface that contains both access and refresh tokens.
15
+ *
16
+ * accessToken and refreshToken always appear in pairs, no need to split them.
16
17
  */
17
18
  export interface CompositeToken extends AccessToken, RefreshToken {
18
19
  }
19
20
  /**
20
- * Token refresher interface
21
- * Provides a method to refresh tokens
21
+ * Interface for token refreshers.
22
+ *
23
+ * Provides a method to refresh tokens.
22
24
  */
23
25
  export interface TokenRefresher {
24
26
  /**
25
- * Refresh the given token and return a new CompositeToken
27
+ * Refresh the given token and return a new CompositeToken.
28
+ *
26
29
  * @param token The token to refresh
27
30
  * @returns A Promise that resolves to a new CompositeToken
28
31
  */
@@ -1 +1 @@
1
- {"version":3,"file":"tokenRefresher.d.ts","sourceRoot":"","sources":["../src/tokenRefresher.ts"],"names":[],"mappings":"AAaA;;GAEG;AACH,MAAM,WAAW,WAAW;IAC1B,WAAW,EAAE,MAAM,CAAC;CACrB;AAED;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B,YAAY,EAAE,MAAM,CAAC;CACtB;AAED;;;GAGG;AACH,MAAM,WAAW,cAAe,SAAQ,WAAW,EAAE,YAAY;CAChE;AAED;;;GAGG;AACH,MAAM,WAAW,cAAc;IAC7B;;;;OAIG;IACH,OAAO,CAAC,KAAK,EAAE,cAAc,GAAG,OAAO,CAAC,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"tokenRefresher.d.ts","sourceRoot":"","sources":["../src/tokenRefresher.ts"],"names":[],"mappings":"AAaA;;GAEG;AACH,MAAM,WAAW,WAAW;IAC1B,WAAW,EAAE,MAAM,CAAC;CACrB;AAED;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B,YAAY,EAAE,MAAM,CAAC;CACtB;AAED;;;;GAIG;AACH,MAAM,WAAW,cAAe,SAAQ,WAAW,EAAE,YAAY;CAAG;AAEpE;;;;GAIG;AACH,MAAM,WAAW,cAAc;IAC7B;;;;;OAKG;IACH,OAAO,CAAC,KAAK,EAAE,cAAc,GAAG,OAAO,CAAC,cAAc,CAAC,CAAC;CACzD"}
@@ -1,22 +1,26 @@
1
1
  import { CompositeToken } from './tokenRefresher';
2
2
  export declare const DEFAULT_COSEC_TOKEN_KEY = "cosec-token";
3
3
  /**
4
- * Token storage class for managing access and refresh tokens
4
+ * Storage class for managing access and refresh tokens.
5
5
  */
6
6
  export declare class TokenStorage {
7
7
  private readonly tokenKey;
8
8
  private storage;
9
9
  constructor(tokenKey?: string, storage?: Storage);
10
10
  /**
11
- * Get the current access token
11
+ * Get the current access token.
12
+ *
13
+ * @returns The current composite token or null if not set
12
14
  */
13
15
  get(): CompositeToken | null;
14
16
  /**
15
- * Store a composite token
17
+ * Store a composite token.
18
+ *
19
+ * @param token - The composite token to store
16
20
  */
17
21
  set(token: CompositeToken): void;
18
22
  /**
19
- * Clear all tokens
23
+ * Clear all tokens.
20
24
  */
21
25
  clear(): void;
22
26
  }
@@ -1 +1 @@
1
- {"version":3,"file":"tokenStorage.d.ts","sourceRoot":"","sources":["../src/tokenStorage.ts"],"names":[],"mappings":"AAcA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAElD,eAAO,MAAM,uBAAuB,gBAAgB,CAAC;AAErD;;GAEG;AACH,qBAAa,YAAY;IACvB,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAS;IAClC,OAAO,CAAC,OAAO,CAAU;gBAGvB,QAAQ,GAAE,MAAgC,EAC1C,OAAO,GAAE,OAAsB;IAMjC;;OAEG;IACH,GAAG,IAAI,cAAc,GAAG,IAAI;IAK5B;;OAEG;IACH,GAAG,CAAC,KAAK,EAAE,cAAc,GAAG,IAAI;IAKhC;;OAEG;IACH,KAAK,IAAI,IAAI;CAGd"}
1
+ {"version":3,"file":"tokenStorage.d.ts","sourceRoot":"","sources":["../src/tokenStorage.ts"],"names":[],"mappings":"AAcA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAElD,eAAO,MAAM,uBAAuB,gBAAgB,CAAC;AAErD;;GAEG;AACH,qBAAa,YAAY;IACvB,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAS;IAClC,OAAO,CAAC,OAAO,CAAU;gBAGvB,QAAQ,GAAE,MAAgC,EAC1C,OAAO,GAAE,OAAsB;IAMjC;;;;OAIG;IACH,GAAG,IAAI,cAAc,GAAG,IAAI;IAK5B;;;;OAIG;IACH,GAAG,CAAC,KAAK,EAAE,cAAc,GAAG,IAAI;IAKhC;;OAEG;IACH,KAAK,IAAI,IAAI;CAGd"}
package/dist/types.d.ts CHANGED
@@ -2,7 +2,7 @@ import { DeviceIdStorage } from './deviceIdStorage';
2
2
  import { TokenStorage } from './tokenStorage';
3
3
  import { TokenRefresher } from './tokenRefresher';
4
4
  /**
5
- * CoSec HTTP headers enumeration
5
+ * CoSec HTTP headers enumeration.
6
6
  */
7
7
  export declare enum CoSecHeaders {
8
8
  DEVICE_ID = "CoSec-Device-Id",
@@ -14,36 +14,37 @@ export declare enum ResponseCodes {
14
14
  UNAUTHORIZED = 401
15
15
  }
16
16
  /**
17
- * CoSec options interface
17
+ * CoSec options interface.
18
18
  */
19
19
  export interface CoSecOptions {
20
20
  /**
21
- * Application ID to be sent in the CoSec-App-Id header
21
+ * Application ID to be sent in the CoSec-App-Id header.
22
22
  */
23
23
  appId: string;
24
24
  /**
25
- * Device ID storage instance
25
+ * Device ID storage instance.
26
26
  */
27
27
  deviceIdStorage: DeviceIdStorage;
28
28
  /**
29
- * Token storage instance
29
+ * Token storage instance.
30
30
  */
31
31
  tokenStorage: TokenStorage;
32
32
  /**
33
- * Token refresher function
34
- * Takes a CompositeToken and returns a Promise that resolves to a new CompositeToken
33
+ * Token refresher function.
34
+ *
35
+ * Takes a CompositeToken and returns a Promise that resolves to a new CompositeToken.
35
36
  */
36
37
  tokenRefresher: TokenRefresher;
37
38
  }
38
39
  /**
39
- * Authorization result interface
40
+ * Authorization result interface.
40
41
  */
41
42
  export interface AuthorizeResult {
42
43
  authorized: boolean;
43
44
  reason: string;
44
45
  }
45
46
  /**
46
- * Authorization result constants
47
+ * Authorization result constants.
47
48
  */
48
49
  export declare const AuthorizeResults: {
49
50
  ALLOW: {
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAaA,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAElD;;GAEG;AACH,oBAAY,YAAY;IACtB,SAAS,oBAAoB;IAC7B,MAAM,iBAAiB;IACvB,aAAa,kBAAkB;IAC/B,UAAU,qBAAqB;CAChC;AAED,oBAAY,aAAa;IACvB,YAAY,MAAM;CACnB;AAED;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,eAAe,EAAE,eAAe,CAAC;IAEjC;;OAEG;IACH,YAAY,EAAE,YAAY,CAAC;IAE3B;;;OAGG;IACH,cAAc,EAAE,cAAc,CAAC;CAChC;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,UAAU,EAAE,OAAO,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;CAChB;AAED;;GAEG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;CAM5B,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAaA,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAElD;;GAEG;AACH,oBAAY,YAAY;IACtB,SAAS,oBAAoB;IAC7B,MAAM,iBAAiB;IACvB,aAAa,kBAAkB;IAC/B,UAAU,qBAAqB;CAChC;AAED,oBAAY,aAAa;IACvB,YAAY,MAAM;CACnB;AAED;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,eAAe,EAAE,eAAe,CAAC;IAEjC;;OAEG;IACH,YAAY,EAAE,YAAY,CAAC;IAE3B;;;;OAIG;IACH,cAAc,EAAE,cAAc,CAAC;CAChC;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,UAAU,EAAE,OAAO,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;CAChB;AAED;;GAEG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;CAM5B,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ahoo-wang/fetcher-cosec",
3
- "version": "0.9.0",
3
+ "version": "0.9.2",
4
4
  "description": "CoSec authentication integration for Fetcher HTTP client",
5
5
  "keywords": [
6
6
  "fetch",
@@ -35,7 +35,7 @@
35
35
  ],
36
36
  "dependencies": {
37
37
  "nanoid": "^5.1.5",
38
- "@ahoo-wang/fetcher": "0.9.0"
38
+ "@ahoo-wang/fetcher": "0.9.2"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@vitest/coverage-v8": "^3.2.4",