@lagless/react 0.0.33
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/README.md +242 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +7 -0
- package/dist/lib/auth/api.d.ts +2 -0
- package/dist/lib/auth/api.d.ts.map +1 -0
- package/dist/lib/auth/api.js +8 -0
- package/dist/lib/auth/auth-token-store.d.ts +6 -0
- package/dist/lib/auth/auth-token-store.d.ts.map +1 -0
- package/dist/lib/auth/auth-token-store.js +40 -0
- package/dist/lib/auth/auth.context.d.ts +13 -0
- package/dist/lib/auth/auth.context.d.ts.map +1 -0
- package/dist/lib/auth/auth.context.js +3 -0
- package/dist/lib/auth/auth.query.d.ts +18 -0
- package/dist/lib/auth/auth.query.d.ts.map +1 -0
- package/dist/lib/auth/auth.query.js +50 -0
- package/dist/lib/auth/instance-auth.provider.d.ts +6 -0
- package/dist/lib/auth/instance-auth.provider.d.ts.map +1 -0
- package/dist/lib/auth/instance-auth.provider.js +5 -0
- package/dist/lib/debug-panel/debug-panel.d.ts +4 -0
- package/dist/lib/debug-panel/debug-panel.d.ts.map +1 -0
- package/dist/lib/debug-panel/debug-panel.js +35 -0
- package/dist/lib/debug-panel/index.d.ts +3 -0
- package/dist/lib/debug-panel/index.d.ts.map +1 -0
- package/dist/lib/debug-panel/index.js +1 -0
- package/dist/lib/debug-panel/styles.d.ts +3 -0
- package/dist/lib/debug-panel/styles.d.ts.map +1 -0
- package/dist/lib/debug-panel/styles.js +47 -0
- package/dist/lib/debug-panel/types.d.ts +36 -0
- package/dist/lib/debug-panel/types.d.ts.map +1 -0
- package/dist/lib/debug-panel/types.js +0 -0
- package/dist/lib/debug-panel/use-net-stats.d.ts +9 -0
- package/dist/lib/debug-panel/use-net-stats.d.ts.map +1 -0
- package/dist/lib/debug-panel/use-net-stats.js +69 -0
- package/dist/lib/react-query.provider.d.ts +7 -0
- package/dist/lib/react-query.provider.d.ts.map +1 -0
- package/dist/lib/react-query.provider.js +6 -0
- package/dist/tsconfig.lib.tsbuildinfo +1 -0
- package/package.json +36 -0
package/README.md
ADDED
|
@@ -0,0 +1,242 @@
|
|
|
1
|
+
# @lagless/react
|
|
2
|
+
|
|
3
|
+
## 1. Responsibility & Context
|
|
4
|
+
|
|
5
|
+
Provides React authentication utilities and TanStack React Query integration for Lagless applications. Handles JWT token persistence, automatic login/instant authentication, player data retrieval, and conditional rendering based on authentication state. Designed for browser-based games that require persistent player identity without requiring traditional sign-up flows.
|
|
6
|
+
|
|
7
|
+
## 2. Architecture Role
|
|
8
|
+
|
|
9
|
+
**Upstream dependencies:** `axios` (HTTP client), `@tanstack/react-query` (peer dependency), `@lagless/schemas` (player type definitions)
|
|
10
|
+
**Downstream consumers:** `circle-sumo-game` (React frontend)
|
|
11
|
+
|
|
12
|
+
This module sits at the application layer, providing React-specific abstractions for authentication and data fetching. It wraps TanStack React Query with a singleton client instance and provides authentication hooks that integrate with the Lagless backend API.
|
|
13
|
+
|
|
14
|
+
## 3. Public API
|
|
15
|
+
|
|
16
|
+
> **Note:** `auth.context.ts` exists internally but is not exported from `src/index.ts` — it is an implementation detail and not part of the public API.
|
|
17
|
+
|
|
18
|
+
### Authentication System
|
|
19
|
+
|
|
20
|
+
- **`api`** — Axios instance pre-configured with `VITE_API_URL` as base URL and automatic Bearer token injection from localStorage. All requests include `Authorization: Bearer <token>` header.
|
|
21
|
+
|
|
22
|
+
- **`AuthTokenStore`** — Static class for JWT token persistence
|
|
23
|
+
- `AuthTokenStore.get(): string | null` — Retrieve token from localStorage (checks expiry, returns null if expired)
|
|
24
|
+
- `AuthTokenStore.set(token: string, ttlMs?: number): void` — Store token with 30-day default TTL (stored as `ll_auth_token` + `ll_auth_token_expiry`)
|
|
25
|
+
|
|
26
|
+
### React Query Hooks
|
|
27
|
+
|
|
28
|
+
- **`useAuthQuery()`** — React Query hook for authentication state. Returns `{ data: { token: string, player: PlayerSchema } }`. Attempts login with existing token, falls back to instant auth if no token or login fails. `staleTime: Infinity`.
|
|
29
|
+
|
|
30
|
+
- **`usePlayer(): PlayerSchema`** — Convenience hook that extracts player object from `useAuthQuery()`. Returns current authenticated player data.
|
|
31
|
+
|
|
32
|
+
- **`updatePlayer(): Promise<{ player: PlayerSchema }>`** — Fetch fresh player data from `/player/me` and update the query cache. Use after profile changes to refresh UI.
|
|
33
|
+
|
|
34
|
+
- **`authQuery()`** — Query factory function returning TanStack React Query configuration object with `queryKey: ['auth']` and `queryFn` for instant authentication flow.
|
|
35
|
+
|
|
36
|
+
### React Components
|
|
37
|
+
|
|
38
|
+
- **`ReactQueryProvider`** — Wrapper component that provides TanStack React Query context to the application tree. Uses singleton `currentQueryClient` instance.
|
|
39
|
+
- Props: `{ children: ReactNode }`
|
|
40
|
+
|
|
41
|
+
- **`currentQueryClient`** — Exported `QueryClient` singleton instance used by `ReactQueryProvider`. Access this to manually manipulate query cache (e.g., `currentQueryClient.setQueryData(['auth'], newData)`).
|
|
42
|
+
|
|
43
|
+
- **`InstanceAuthContext`** — Conditional rendering component that shows children when authenticated, fallback otherwise.
|
|
44
|
+
- Props: `{ children: ReactNode, fallback: ReactNode }`
|
|
45
|
+
- Uses `useAuthQuery()` internally to check authentication state
|
|
46
|
+
|
|
47
|
+
## 4. Preconditions
|
|
48
|
+
|
|
49
|
+
- **Environment variable:** `VITE_API_URL` must be set (e.g., `https://api.example.com`). Used as axios base URL.
|
|
50
|
+
- **Backend endpoints required:**
|
|
51
|
+
- `POST /player/login` — Accepts existing token, returns `{ token: string, player: PlayerSchema }`
|
|
52
|
+
- `POST /player/auth/instant` — Creates new player account with JWT, returns `{ token: string, player: PlayerSchema }`
|
|
53
|
+
- `GET /player/me` — Fetch current player data (requires Bearer token header)
|
|
54
|
+
- **React application must be wrapped in `ReactQueryProvider`** before using any auth hooks.
|
|
55
|
+
|
|
56
|
+
## 5. Postconditions
|
|
57
|
+
|
|
58
|
+
- JWT token persists in localStorage across sessions with 30-day expiry
|
|
59
|
+
- All API requests automatically include `Authorization: Bearer <token>` header via axios interceptor
|
|
60
|
+
- Authentication state available to all components via `useAuthQuery()` / `usePlayer()` hooks
|
|
61
|
+
- First-time users automatically receive a new account via instant auth flow
|
|
62
|
+
- Token expiry handled gracefully: expired tokens removed from localStorage and user re-authenticated
|
|
63
|
+
|
|
64
|
+
## 6. Invariants & Constraints
|
|
65
|
+
|
|
66
|
+
- **Token storage key:** Always `ll_auth_token` in localStorage (constant `AUTH_TOKEN_KEY`)
|
|
67
|
+
- **Expiry storage key:** Always `ll_auth_token_expiry` in localStorage
|
|
68
|
+
- **Default TTL:** 30 days (`30 * 24 * 60 * 60 * 1000` ms)
|
|
69
|
+
- **Authentication flow order:** (1) Check localStorage for token → (2) Attempt `/player/login` with existing token → (3) Fall back to `/player/auth/instant` if no token or login fails
|
|
70
|
+
- **Singleton query client:** Only one `QueryClient` instance exists (`currentQueryClient`)
|
|
71
|
+
- **Stale time:** Auth query never refetches automatically (`staleTime: Infinity`) — use `updatePlayer()` to refresh manually
|
|
72
|
+
- **Browser-only:** Uses `window.localStorage` and `import.meta.env` (Vite-specific) — not compatible with SSR/Node.js
|
|
73
|
+
|
|
74
|
+
## 7. Safety Notes (AI Agent)
|
|
75
|
+
|
|
76
|
+
### DO NOT
|
|
77
|
+
|
|
78
|
+
- **DO NOT** modify `AuthTokenStore` storage keys (`ll_auth_token`, `ll_auth_token_expiry`) — changing these breaks existing sessions
|
|
79
|
+
- **DO NOT** create multiple `QueryClient` instances — always use the exported `currentQueryClient` singleton
|
|
80
|
+
- **DO NOT** change `authQuery().staleTime` — authentication should not auto-refetch (use `updatePlayer()` for explicit refresh)
|
|
81
|
+
- **DO NOT** use this module in server-side rendering contexts — it relies on `window.localStorage` and browser environment
|
|
82
|
+
|
|
83
|
+
### Common Mistakes
|
|
84
|
+
|
|
85
|
+
- **Forgetting `ReactQueryProvider`** — Auth hooks will throw if not wrapped in provider (TanStack React Query requirement)
|
|
86
|
+
- **Not setting `VITE_API_URL`** — axios will fail with undefined base URL
|
|
87
|
+
- **Manual token manipulation** — Always use `AuthTokenStore.set()` instead of direct `localStorage.setItem()` to ensure expiry is set correctly
|
|
88
|
+
- **Assuming immediate auth** — `useAuthQuery()` is async; check for `data` presence before accessing `player`
|
|
89
|
+
|
|
90
|
+
## 8. Usage Examples
|
|
91
|
+
|
|
92
|
+
### Basic Setup
|
|
93
|
+
|
|
94
|
+
```tsx
|
|
95
|
+
import { ReactQueryProvider, InstanceAuthContext } from '@lagless/react';
|
|
96
|
+
|
|
97
|
+
function App() {
|
|
98
|
+
return (
|
|
99
|
+
<ReactQueryProvider>
|
|
100
|
+
<InstanceAuthContext fallback={<LoadingScreen />}>
|
|
101
|
+
<GameUI />
|
|
102
|
+
</InstanceAuthContext>
|
|
103
|
+
</ReactQueryProvider>
|
|
104
|
+
);
|
|
105
|
+
}
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
### Using Authentication Hooks
|
|
109
|
+
|
|
110
|
+
```tsx
|
|
111
|
+
import { usePlayer, useAuthQuery } from '@lagless/react';
|
|
112
|
+
|
|
113
|
+
function PlayerProfile() {
|
|
114
|
+
const player = usePlayer(); // PlayerSchema
|
|
115
|
+
|
|
116
|
+
return <div>Welcome, {player.username}!</div>;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
function AuthStatus() {
|
|
120
|
+
const { data, isLoading } = useAuthQuery();
|
|
121
|
+
|
|
122
|
+
if (isLoading) return <div>Authenticating...</div>;
|
|
123
|
+
if (!data) return <div>Not authenticated</div>;
|
|
124
|
+
|
|
125
|
+
return <div>Logged in as {data.player.username}</div>;
|
|
126
|
+
}
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
### Manual Player Refresh
|
|
130
|
+
|
|
131
|
+
```tsx
|
|
132
|
+
import { updatePlayer } from '@lagless/react';
|
|
133
|
+
|
|
134
|
+
async function handleProfileUpdate() {
|
|
135
|
+
// After changing player data on backend
|
|
136
|
+
await api.patch('/player/profile', { username: 'NewName' });
|
|
137
|
+
|
|
138
|
+
// Refresh cached player data
|
|
139
|
+
await updatePlayer();
|
|
140
|
+
// UI components using usePlayer() will now show updated data
|
|
141
|
+
}
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
### Custom API Requests
|
|
145
|
+
|
|
146
|
+
```tsx
|
|
147
|
+
import { api } from '@lagless/react';
|
|
148
|
+
|
|
149
|
+
async function fetchLeaderboard() {
|
|
150
|
+
const response = await api.get('/leaderboard');
|
|
151
|
+
// Request automatically includes Authorization header
|
|
152
|
+
return response.data;
|
|
153
|
+
}
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
## 9. Testing Guidance
|
|
157
|
+
|
|
158
|
+
No test suite currently exists for this module. When adding tests, consider:
|
|
159
|
+
|
|
160
|
+
- Mock `axios` for API call testing
|
|
161
|
+
- Mock `localStorage` for token persistence testing
|
|
162
|
+
- Use `@testing-library/react` with `@tanstack/react-query` testing utilities for hook tests
|
|
163
|
+
- Test authentication flow: existing token → login success, existing token → login fail → instant auth, no token → instant auth
|
|
164
|
+
- Test token expiry logic: expired tokens should be removed and user re-authenticated
|
|
165
|
+
- Test `InstanceAuthContext` conditional rendering with mocked auth state
|
|
166
|
+
|
|
167
|
+
## 10. Change Checklist
|
|
168
|
+
|
|
169
|
+
When modifying this module:
|
|
170
|
+
|
|
171
|
+
1. **Changing token storage keys:** Update both `AuthTokenStore` constants AND any backend services that read these keys from cookies/headers
|
|
172
|
+
2. **Modifying authentication flow:** Ensure backend endpoints (`/player/login`, `/player/auth/instant`) still match expected request/response formats
|
|
173
|
+
3. **Adding new API endpoints:** Use the exported `api` instance for consistency (automatic token injection)
|
|
174
|
+
4. **Changing query keys:** Update `authQuery().queryKey` and any manual cache manipulation using `currentQueryClient.setQueryData(['auth'], ...)`
|
|
175
|
+
5. **Adding new hooks:** Follow TanStack React Query conventions (e.g., `useQuery`, `useMutation`)
|
|
176
|
+
6. **Browser API changes:** Verify `localStorage` and `import.meta.env` compatibility if targeting new environments
|
|
177
|
+
|
|
178
|
+
## 11. Integration Notes
|
|
179
|
+
|
|
180
|
+
### With Backend API
|
|
181
|
+
|
|
182
|
+
Backend must implement:
|
|
183
|
+
- **POST /player/login** — Accept Bearer token in header, validate, return `{ token: string, player: PlayerSchema }`. On failure, return 401 to trigger instant auth fallback.
|
|
184
|
+
- **POST /player/auth/instant** — Generate new player account and JWT, return `{ token: string, player: PlayerSchema }`. Always succeeds.
|
|
185
|
+
- **GET /player/me** — Return current player data based on Bearer token in `Authorization` header.
|
|
186
|
+
|
|
187
|
+
### With React Applications
|
|
188
|
+
|
|
189
|
+
1. Wrap root component in `ReactQueryProvider`
|
|
190
|
+
2. Use `InstanceAuthContext` for conditional rendering based on auth state
|
|
191
|
+
3. Access player data via `usePlayer()` or `useAuthQuery()` in any component
|
|
192
|
+
4. Use `api` instance for backend requests (automatic token injection)
|
|
193
|
+
5. Call `updatePlayer()` after backend mutations to refresh cached player state
|
|
194
|
+
|
|
195
|
+
### With TanStack React Query
|
|
196
|
+
|
|
197
|
+
- Uses peer dependency `@tanstack/react-query` ^5.90.9
|
|
198
|
+
- Singleton `currentQueryClient` can be extended with additional queries/mutations
|
|
199
|
+
- Auth query uses `queryKey: ['auth']` — safe to add other queries without conflicts
|
|
200
|
+
- `staleTime: Infinity` on auth query prevents unnecessary refetches — authentication happens once per session
|
|
201
|
+
|
|
202
|
+
## 12. Appendix
|
|
203
|
+
|
|
204
|
+
### Authentication Flow Diagram
|
|
205
|
+
|
|
206
|
+
```
|
|
207
|
+
1. Component mounts → useAuthQuery() called
|
|
208
|
+
2. Check AuthTokenStore.get()
|
|
209
|
+
├─ Token exists? → POST /player/login with token
|
|
210
|
+
│ ├─ Success? → Return { token, player }
|
|
211
|
+
│ └─ Fail? → POST /player/auth/instant → Return new { token, player }
|
|
212
|
+
└─ No token? → POST /player/auth/instant → Return new { token, player }
|
|
213
|
+
3. Store token via AuthTokenStore.set()
|
|
214
|
+
4. Query cache updated with { token, player }
|
|
215
|
+
5. All components using usePlayer()/useAuthQuery() re-render with auth data
|
|
216
|
+
```
|
|
217
|
+
|
|
218
|
+
### Token Storage Schema
|
|
219
|
+
|
|
220
|
+
| Key | Value | Purpose |
|
|
221
|
+
|-----|-------|---------|
|
|
222
|
+
| `ll_auth_token` | JWT string | Bearer token for API authentication |
|
|
223
|
+
| `ll_auth_token_expiry` | Unix timestamp (ms) | Token expiration time (30 days from creation) |
|
|
224
|
+
|
|
225
|
+
### Environment Variables
|
|
226
|
+
|
|
227
|
+
| Variable | Required | Default | Purpose |
|
|
228
|
+
|----------|----------|---------|---------|
|
|
229
|
+
| `VITE_API_URL` | Yes | None | Backend API base URL (e.g., `https://api.lagless.com`) |
|
|
230
|
+
|
|
231
|
+
### PlayerSchema Type
|
|
232
|
+
|
|
233
|
+
Defined in `@lagless/schemas` (not part of this module). Expected structure:
|
|
234
|
+
|
|
235
|
+
```typescript
|
|
236
|
+
interface PlayerSchema {
|
|
237
|
+
username: string;
|
|
238
|
+
// ...additional player fields from backend
|
|
239
|
+
}
|
|
240
|
+
```
|
|
241
|
+
|
|
242
|
+
Exact schema depends on backend implementation. Refer to `@lagless/schemas` package for complete type definition.
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from './lib/auth/api';
|
|
2
|
+
export * from './lib/auth/auth.query';
|
|
3
|
+
export * from './lib/react-query.provider';
|
|
4
|
+
export * from './lib/auth/auth-token-store';
|
|
5
|
+
export * from './lib/auth/instance-auth.provider';
|
|
6
|
+
export * from './lib/debug-panel/index';
|
|
7
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,uBAAuB,CAAC;AACtC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,mCAAmC,CAAC;AAClD,cAAc,yBAAyB,CAAC"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="vite/client" />
|
|
2
|
+
export * from './lib/auth/api';
|
|
3
|
+
export * from './lib/auth/auth.query';
|
|
4
|
+
export * from './lib/react-query.provider';
|
|
5
|
+
export * from './lib/auth/auth-token-store';
|
|
6
|
+
export * from './lib/auth/instance-auth.provider';
|
|
7
|
+
export * from './lib/debug-panel/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../../src/lib/auth/api.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,GAAG,+BAEd,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import axios from 'axios';
|
|
2
|
+
export const api = axios.create({
|
|
3
|
+
baseURL: import.meta.env.VITE_API_URL,
|
|
4
|
+
});
|
|
5
|
+
api.interceptors.request.use((config) => {
|
|
6
|
+
config.headers.Authorization = `Bearer ${localStorage.getItem('ll_auth_token') || ''}`;
|
|
7
|
+
return config;
|
|
8
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"auth-token-store.d.ts","sourceRoot":"","sources":["../../../src/lib/auth/auth-token-store.ts"],"names":[],"mappings":"AAIA,qBAAa,cAAc;IACzB,OAAO,CAAC,MAAM,CAAC,MAAM,CAAuB;WAE9B,GAAG;WAuBH,GAAG,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,SAAe;CAUtD"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
const TOKEN_TTL_MS = 30 * 24 * 60 * 60 * 1000; // 30 days
|
|
2
|
+
const AUTH_TOKEN_KEY = 'll_auth_token';
|
|
3
|
+
export class AuthTokenStore {
|
|
4
|
+
static _cache = null;
|
|
5
|
+
static get() {
|
|
6
|
+
if (this._cache)
|
|
7
|
+
return this._cache;
|
|
8
|
+
try {
|
|
9
|
+
const token = window.localStorage.getItem(AUTH_TOKEN_KEY);
|
|
10
|
+
const expiry = window.localStorage.getItem(`${AUTH_TOKEN_KEY}_expiry`);
|
|
11
|
+
if (token && expiry) {
|
|
12
|
+
const expiryTime = parseInt(expiry, 10);
|
|
13
|
+
if (Date.now() < expiryTime) {
|
|
14
|
+
return token;
|
|
15
|
+
}
|
|
16
|
+
else {
|
|
17
|
+
// Token expired, remove it
|
|
18
|
+
window.localStorage.removeItem('AUTH_TOKEN_KEY');
|
|
19
|
+
window.localStorage.removeItem(`${AUTH_TOKEN_KEY}_expiry`);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
catch (e) {
|
|
24
|
+
console.error('Failed to retrieve auth token', e);
|
|
25
|
+
return null;
|
|
26
|
+
}
|
|
27
|
+
return null;
|
|
28
|
+
}
|
|
29
|
+
static set(token, ttlMs = TOKEN_TTL_MS) {
|
|
30
|
+
try {
|
|
31
|
+
this._cache = token;
|
|
32
|
+
window.localStorage.setItem(AUTH_TOKEN_KEY, token);
|
|
33
|
+
const expiryTime = Date.now() + ttlMs;
|
|
34
|
+
window.localStorage.setItem(`${AUTH_TOKEN_KEY}_expiry`, expiryTime.toString());
|
|
35
|
+
}
|
|
36
|
+
catch (e) {
|
|
37
|
+
console.error('Failed to store auth token', e);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export type PlayerSchema = {
|
|
2
|
+
id: string;
|
|
3
|
+
username: string;
|
|
4
|
+
score: number;
|
|
5
|
+
data: Record<string, unknown>;
|
|
6
|
+
ownedSkins: number[];
|
|
7
|
+
};
|
|
8
|
+
export type AuthContextType = {
|
|
9
|
+
player: PlayerSchema;
|
|
10
|
+
token: string;
|
|
11
|
+
};
|
|
12
|
+
export declare const AuthContext: import("react").Context<AuthContextType>;
|
|
13
|
+
//# sourceMappingURL=auth.context.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"auth.context.d.ts","sourceRoot":"","sources":["../../../src/lib/auth/auth.context.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,YAAY,GAAG;IACzB,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAC9B,UAAU,EAAE,MAAM,EAAE,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG;IAAE,MAAM,EAAE,YAAY,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,CAAC;AAGtE,eAAO,MAAM,WAAW,0CAAwC,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { type PlayerSchema } from './auth.context';
|
|
2
|
+
export declare const usePlayer: () => PlayerSchema;
|
|
3
|
+
export declare const useAuthQuery: () => import("@tanstack/react-query").UseQueryResult<{
|
|
4
|
+
token: string;
|
|
5
|
+
player: PlayerSchema | null;
|
|
6
|
+
}, Error>;
|
|
7
|
+
export declare const updatePlayer: () => Promise<{
|
|
8
|
+
player: PlayerSchema;
|
|
9
|
+
}>;
|
|
10
|
+
export declare const authQuery: () => {
|
|
11
|
+
queryKey: readonly ["auth"];
|
|
12
|
+
queryFn: () => Promise<{
|
|
13
|
+
token: string;
|
|
14
|
+
player: PlayerSchema | null;
|
|
15
|
+
}>;
|
|
16
|
+
staleTime: number;
|
|
17
|
+
};
|
|
18
|
+
//# sourceMappingURL=auth.query.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"auth.query.d.ts","sourceRoot":"","sources":["../../../src/lib/auth/auth.query.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAKnD,eAAO,MAAM,SAAS,QAEG,YACxB,CAAA;AAED,eAAO,MAAM,YAAY;;;SAExB,CAAC;AAEF,eAAO,MAAM,YAAY;YACc,YAAY;EAGlD,CAAC;AAEF,eAAO,MAAM,SAAS;;;;;;;CAQrB,CAAC"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { AuthTokenStore } from './auth-token-store';
|
|
2
|
+
import { api } from './api';
|
|
3
|
+
import { useQuery } from '@tanstack/react-query';
|
|
4
|
+
import { currentQueryClient } from '../react-query.provider';
|
|
5
|
+
export const usePlayer = () => {
|
|
6
|
+
const { data } = useAuthQuery();
|
|
7
|
+
return data?.player;
|
|
8
|
+
};
|
|
9
|
+
export const useAuthQuery = () => {
|
|
10
|
+
return useQuery(authQuery());
|
|
11
|
+
};
|
|
12
|
+
export const updatePlayer = async () => {
|
|
13
|
+
const data = await api.get('/player/me').then((res) => res.data);
|
|
14
|
+
currentQueryClient.setQueryData(['auth'], { token: AuthTokenStore.get(), player: data });
|
|
15
|
+
return data;
|
|
16
|
+
};
|
|
17
|
+
export const authQuery = () => {
|
|
18
|
+
return {
|
|
19
|
+
queryKey: ['auth'],
|
|
20
|
+
queryFn: async () => {
|
|
21
|
+
return instantAuth();
|
|
22
|
+
},
|
|
23
|
+
staleTime: Infinity,
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
const instantAuth = async () => {
|
|
27
|
+
let token = AuthTokenStore.get();
|
|
28
|
+
let player = null;
|
|
29
|
+
if (token) {
|
|
30
|
+
try {
|
|
31
|
+
const data = await api.post('/player/login').then((res) => res.data);
|
|
32
|
+
token = data.token;
|
|
33
|
+
player = data.player;
|
|
34
|
+
}
|
|
35
|
+
catch (e) {
|
|
36
|
+
console.warn('Failed to login', e);
|
|
37
|
+
token = null;
|
|
38
|
+
player = null;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
if (!token) {
|
|
42
|
+
const data = await api
|
|
43
|
+
.post('/player/auth/instant')
|
|
44
|
+
.then((res) => res.data);
|
|
45
|
+
token = data.token;
|
|
46
|
+
player = data.player;
|
|
47
|
+
AuthTokenStore.set(token);
|
|
48
|
+
}
|
|
49
|
+
return { token, player };
|
|
50
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"instance-auth.provider.d.ts","sourceRoot":"","sources":["../../../src/lib/auth/instance-auth.provider.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAGtC,eAAO,MAAM,mBAAmB,EAAE,EAAE,CAAC;IAAE,QAAQ,EAAE,SAAS,CAAC;IAAC,QAAQ,EAAE,SAAS,CAAA;CAAE,CAIhF,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"debug-panel.d.ts","sourceRoot":"","sources":["../../../src/lib/debug-panel/debug-panel.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAuB,MAAM,OAAO,CAAC;AAIhD,OAAO,KAAK,EAAE,eAAe,EAAY,MAAM,YAAY,CAAC;AAE5D,eAAO,MAAM,UAAU,EAAE,EAAE,CAAC,eAAe,CAqH1C,CAAC"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { jsxs as _jsxs, jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { useEffect, useState } from 'react';
|
|
3
|
+
import { useNetStats } from './use-net-stats.js';
|
|
4
|
+
import { panelStyles as styles } from './styles.js';
|
|
5
|
+
export const DebugPanel = ({ runner, toggleKey = 'F3', hashVerification, showConnectionControls = true, children, }) => {
|
|
6
|
+
const [visible, setVisible] = useState(false);
|
|
7
|
+
const [eventLog, setEventLog] = useState([]);
|
|
8
|
+
const { stats, hashTable, relayProvider } = useNetStats(runner, hashVerification?.playerResourceClass);
|
|
9
|
+
// Toggle visibility
|
|
10
|
+
useEffect(() => {
|
|
11
|
+
const onKeyDown = (e) => {
|
|
12
|
+
if (e.key === toggleKey) {
|
|
13
|
+
e.preventDefault();
|
|
14
|
+
setVisible((v) => !v);
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
window.addEventListener('keydown', onKeyDown);
|
|
18
|
+
return () => window.removeEventListener('keydown', onKeyDown);
|
|
19
|
+
}, [toggleKey]);
|
|
20
|
+
// Log divergence events
|
|
21
|
+
useEffect(() => {
|
|
22
|
+
if (!hashVerification?.divergenceSignalClass)
|
|
23
|
+
return;
|
|
24
|
+
const signal = runner.DIContainer.resolve(hashVerification.divergenceSignalClass);
|
|
25
|
+
return signal.Predicted.subscribe((e) => {
|
|
26
|
+
setEventLog((prev) => [
|
|
27
|
+
{ tick: e.tick, message: `DIVERGENCE: P${e.data.slotA} vs P${e.data.slotB}` },
|
|
28
|
+
...prev.slice(0, 49),
|
|
29
|
+
]);
|
|
30
|
+
});
|
|
31
|
+
}, [runner, hashVerification]);
|
|
32
|
+
if (!visible)
|
|
33
|
+
return null;
|
|
34
|
+
return (_jsxs("div", { style: styles.panel, children: [_jsxs("div", { style: styles.title, children: ["DEBUG (", toggleKey, ")"] }), relayProvider && (_jsxs("div", { style: styles.section, children: [_jsxs("div", { children: [_jsx("span", { style: styles.label, children: "CONN " }), stats.clockReady ? 'ready' : `warmup (${stats.sampleCount})`] }), _jsxs("div", { children: [_jsx("span", { style: styles.label, children: "RTT " }), stats.rttMs.toFixed(1), "ms (", stats.sampleCount, ")"] }), _jsxs("div", { children: [_jsx("span", { style: styles.label, children: "JIT " }), stats.jitterMs.toFixed(1), "ms"] }), _jsxs("div", { children: [_jsx("span", { style: styles.label, children: "IDLY " }), stats.inputDelayTicks, "t / ", stats.inputDelayMs.toFixed(0), "ms"] }), _jsxs("div", { children: [_jsx("span", { style: styles.label, children: "NUDG " }), stats.nudgerActive ? `${stats.nudgerDebtMs.toFixed(1)}ms` : 'off'] }), _jsxs("div", { children: [_jsx("span", { style: styles.label, children: "TICK " }), stats.localTick, _jsx("span", { style: styles.label, children: " RB " }), stats.rollbackCount] }), _jsxs("div", { children: [_jsx("span", { style: styles.label, children: "FPS " }), stats.fps.toFixed(0)] })] })), hashTable.length > 0 && (_jsxs("div", { style: styles.section, children: [_jsx("div", { style: styles.sectionTitle, children: "Hash Table" }), hashTable.map((h) => (_jsxs("div", { children: ["P", h.slot, ": ", h.hash, " @", h.tick] }, h.slot)))] })), eventLog.length > 0 && (_jsxs("div", { style: styles.section, children: [_jsx("div", { style: styles.sectionTitle, children: "Events" }), eventLog.slice(0, 10).map((e, i) => (_jsxs("div", { style: { color: e.message.includes('DIVERGENCE') ? '#ff4444' : '#cccccc' }, children: ["[", e.tick, "] ", e.message] }, i)))] })), showConnectionControls && relayProvider && (_jsxs("div", { style: { ...styles.section, pointerEvents: 'auto' }, children: [_jsx("button", { style: styles.button, onClick: () => relayProvider.connection?.disconnect(), children: "Disconnect" }), _jsx("button", { style: styles.button, onClick: () => relayProvider.connection?.connect(), children: "Reconnect" })] })), children] }));
|
|
35
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/lib/debug-panel/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,YAAY,EAAE,eAAe,EAAE,QAAQ,EAAE,cAAc,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { DebugPanel } from './debug-panel.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../src/lib/debug-panel/styles.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAE3C,eAAO,MAAM,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,aAAa,CA8CrD,CAAC"}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
export const panelStyles = {
|
|
2
|
+
panel: {
|
|
3
|
+
position: 'fixed',
|
|
4
|
+
bottom: 8,
|
|
5
|
+
right: 8,
|
|
6
|
+
padding: '8px 10px',
|
|
7
|
+
fontFamily: "'Courier New', monospace",
|
|
8
|
+
fontSize: 11,
|
|
9
|
+
lineHeight: '1.5',
|
|
10
|
+
color: '#c8ffc8',
|
|
11
|
+
background: 'rgba(0, 0, 0, 0.75)',
|
|
12
|
+
borderRadius: 4,
|
|
13
|
+
pointerEvents: 'none',
|
|
14
|
+
userSelect: 'none',
|
|
15
|
+
zIndex: 1000,
|
|
16
|
+
whiteSpace: 'pre',
|
|
17
|
+
maxWidth: 280,
|
|
18
|
+
maxHeight: '60vh',
|
|
19
|
+
overflow: 'auto',
|
|
20
|
+
},
|
|
21
|
+
title: {
|
|
22
|
+
color: '#ffcc00',
|
|
23
|
+
fontWeight: 'bold',
|
|
24
|
+
marginBottom: 4,
|
|
25
|
+
},
|
|
26
|
+
section: {
|
|
27
|
+
marginBottom: 6,
|
|
28
|
+
},
|
|
29
|
+
sectionTitle: {
|
|
30
|
+
color: '#88aaff',
|
|
31
|
+
fontWeight: 'bold',
|
|
32
|
+
marginBottom: 2,
|
|
33
|
+
},
|
|
34
|
+
label: {
|
|
35
|
+
color: '#88aaff',
|
|
36
|
+
},
|
|
37
|
+
button: {
|
|
38
|
+
marginRight: 4,
|
|
39
|
+
padding: '2px 8px',
|
|
40
|
+
fontSize: 10,
|
|
41
|
+
cursor: 'pointer',
|
|
42
|
+
background: '#333',
|
|
43
|
+
color: '#eee',
|
|
44
|
+
border: '1px solid #666',
|
|
45
|
+
borderRadius: 3,
|
|
46
|
+
},
|
|
47
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import type { ECSRunner, IPlayerResourceConstructor, ISignalConstructor } from '@lagless/core';
|
|
2
|
+
import type { ReactNode } from 'react';
|
|
3
|
+
export interface NetStats {
|
|
4
|
+
connected: boolean;
|
|
5
|
+
clockReady: boolean;
|
|
6
|
+
sampleCount: number;
|
|
7
|
+
rttMs: number;
|
|
8
|
+
jitterMs: number;
|
|
9
|
+
inputDelayTicks: number;
|
|
10
|
+
inputDelayMs: number;
|
|
11
|
+
nudgerActive: boolean;
|
|
12
|
+
nudgerDebtMs: number;
|
|
13
|
+
localTick: number;
|
|
14
|
+
rollbackCount: number;
|
|
15
|
+
fps: number;
|
|
16
|
+
}
|
|
17
|
+
export interface HashTableEntry {
|
|
18
|
+
slot: number;
|
|
19
|
+
hash: string;
|
|
20
|
+
tick: number;
|
|
21
|
+
}
|
|
22
|
+
export interface LogEntry {
|
|
23
|
+
tick: number;
|
|
24
|
+
message: string;
|
|
25
|
+
}
|
|
26
|
+
export interface DebugPanelProps {
|
|
27
|
+
runner: ECSRunner;
|
|
28
|
+
toggleKey?: string;
|
|
29
|
+
hashVerification?: {
|
|
30
|
+
playerResourceClass: IPlayerResourceConstructor;
|
|
31
|
+
divergenceSignalClass: ISignalConstructor;
|
|
32
|
+
};
|
|
33
|
+
showConnectionControls?: boolean;
|
|
34
|
+
children?: ReactNode;
|
|
35
|
+
}
|
|
36
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/lib/debug-panel/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,0BAA0B,EAAE,kBAAkB,EAAE,MAAM,eAAe,CAAC;AAC/F,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEvC,MAAM,WAAW,QAAQ;IACvB,SAAS,EAAE,OAAO,CAAC;IACnB,UAAU,EAAE,OAAO,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,eAAe,EAAE,MAAM,CAAC;IACxB,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,OAAO,CAAC;IACtB,YAAY,EAAE,MAAM,CAAC;IACrB,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,EAAE,MAAM,CAAC;IACtB,GAAG,EAAE,MAAM,CAAC;CACb;AAED,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,QAAQ;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,eAAe;IAC9B,MAAM,EAAE,SAAS,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,gBAAgB,CAAC,EAAE;QACjB,mBAAmB,EAAE,0BAA0B,CAAC;QAChD,qBAAqB,EAAE,kBAAkB,CAAC;KAC3C,CAAC;IACF,sBAAsB,CAAC,EAAE,OAAO,CAAC;IACjC,QAAQ,CAAC,EAAE,SAAS,CAAC;CACtB"}
|
|
File without changes
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { type ECSRunner, type IPlayerResourceConstructor } from '@lagless/core';
|
|
2
|
+
import { RelayInputProvider } from '@lagless/relay-client';
|
|
3
|
+
import type { NetStats, HashTableEntry } from './types.js';
|
|
4
|
+
export declare function useNetStats(runner: ECSRunner, playerResourceClass?: IPlayerResourceConstructor): {
|
|
5
|
+
stats: NetStats;
|
|
6
|
+
hashTable: HashTableEntry[];
|
|
7
|
+
relayProvider: RelayInputProvider | null;
|
|
8
|
+
};
|
|
9
|
+
//# sourceMappingURL=use-net-stats.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"use-net-stats.d.ts","sourceRoot":"","sources":["../../../src/lib/debug-panel/use-net-stats.ts"],"names":[],"mappings":"AACA,OAAO,EAA8B,KAAK,SAAS,EAAE,KAAK,0BAA0B,EAAE,MAAM,eAAe,CAAC;AAC5G,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAC;AAC3D,OAAO,KAAK,EAAE,QAAQ,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAuB3D,wBAAgB,WAAW,CACzB,MAAM,EAAE,SAAS,EACjB,mBAAmB,CAAC,EAAE,0BAA0B;;;;EA2DjD"}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import { useCallback, useEffect, useMemo, useState } from 'react';
|
|
2
|
+
import { ECSConfig, PlayerResources } from '@lagless/core';
|
|
3
|
+
import { RelayInputProvider } from '@lagless/relay-client';
|
|
4
|
+
const EMPTY_STATS = {
|
|
5
|
+
connected: false,
|
|
6
|
+
clockReady: false,
|
|
7
|
+
sampleCount: 0,
|
|
8
|
+
rttMs: 0,
|
|
9
|
+
jitterMs: 0,
|
|
10
|
+
inputDelayTicks: 0,
|
|
11
|
+
inputDelayMs: 0,
|
|
12
|
+
nudgerActive: false,
|
|
13
|
+
nudgerDebtMs: 0,
|
|
14
|
+
localTick: 0,
|
|
15
|
+
rollbackCount: 0,
|
|
16
|
+
fps: 0,
|
|
17
|
+
};
|
|
18
|
+
export function useNetStats(runner, playerResourceClass) {
|
|
19
|
+
const [stats, setStats] = useState(EMPTY_STATS);
|
|
20
|
+
const [hashTable, setHashTable] = useState([]);
|
|
21
|
+
const relayProvider = runner.InputProviderInstance instanceof RelayInputProvider
|
|
22
|
+
? runner.InputProviderInstance
|
|
23
|
+
: null;
|
|
24
|
+
const ecsConfig = useMemo(() => runner.DIContainer.resolve(ECSConfig), [runner]);
|
|
25
|
+
const playerResources = useMemo(() => runner.DIContainer.resolve(PlayerResources), [runner]);
|
|
26
|
+
const updateStats = useCallback(() => {
|
|
27
|
+
if (!relayProvider)
|
|
28
|
+
return;
|
|
29
|
+
const clockSync = relayProvider.clockSync;
|
|
30
|
+
const nudger = runner.Simulation.clock.phaseNudger;
|
|
31
|
+
const frameLength = runner.Config.frameLength;
|
|
32
|
+
setStats({
|
|
33
|
+
connected: true,
|
|
34
|
+
clockReady: clockSync.isReady,
|
|
35
|
+
sampleCount: clockSync.sampleCount,
|
|
36
|
+
rttMs: clockSync.rttEwmaMs,
|
|
37
|
+
jitterMs: clockSync.jitterEwmaMs,
|
|
38
|
+
inputDelayTicks: relayProvider.currentInputDelay,
|
|
39
|
+
inputDelayMs: relayProvider.currentInputDelay * frameLength,
|
|
40
|
+
nudgerActive: nudger.isActive,
|
|
41
|
+
nudgerDebtMs: nudger.currentDebtMs,
|
|
42
|
+
localTick: runner.Simulation.tick,
|
|
43
|
+
rollbackCount: relayProvider.rollbackCount,
|
|
44
|
+
fps: 1000 / frameLength,
|
|
45
|
+
});
|
|
46
|
+
if (playerResourceClass) {
|
|
47
|
+
const maxPlayers = ecsConfig.maxPlayers;
|
|
48
|
+
const table = [];
|
|
49
|
+
for (let i = 0; i < maxPlayers; i++) {
|
|
50
|
+
const pr = playerResources.get(playerResourceClass, i);
|
|
51
|
+
const safe = pr.safe;
|
|
52
|
+
if (safe.connected || safe.lastReportedHashTick > 0) {
|
|
53
|
+
table.push({
|
|
54
|
+
slot: i,
|
|
55
|
+
hash: safe.lastReportedHash.toString(16).padStart(8, '0'),
|
|
56
|
+
tick: safe.lastReportedHashTick,
|
|
57
|
+
});
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
setHashTable(table);
|
|
61
|
+
}
|
|
62
|
+
}, [relayProvider, runner, playerResourceClass, ecsConfig, playerResources]);
|
|
63
|
+
useEffect(() => {
|
|
64
|
+
if (!relayProvider)
|
|
65
|
+
return;
|
|
66
|
+
return runner.Simulation.addTickHandler(updateStats);
|
|
67
|
+
}, [relayProvider, runner, updateStats]);
|
|
68
|
+
return { stats, hashTable, relayProvider };
|
|
69
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { FC, ReactNode } from 'react';
|
|
2
|
+
import { QueryClient } from '@tanstack/react-query';
|
|
3
|
+
export declare const currentQueryClient: QueryClient;
|
|
4
|
+
export declare const ReactQueryProvider: FC<{
|
|
5
|
+
children: ReactNode;
|
|
6
|
+
}>;
|
|
7
|
+
//# sourceMappingURL=react-query.provider.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"react-query.provider.d.ts","sourceRoot":"","sources":["../../src/lib/react-query.provider.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACtC,OAAO,EAAE,WAAW,EAAuB,MAAM,uBAAuB,CAAC;AAEzE,eAAO,MAAM,kBAAkB,aAAoB,CAAC;AAEpD,eAAO,MAAM,kBAAkB,EAAE,EAAE,CAAC;IAAE,QAAQ,EAAE,SAAS,CAAA;CAAE,CAO1D,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
|
|
3
|
+
export const currentQueryClient = new QueryClient();
|
|
4
|
+
export const ReactQueryProvider = ({ children }) => {
|
|
5
|
+
return (_jsx(QueryClientProvider, { client: currentQueryClient, children: children }));
|
|
6
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/vite@7.2.2_@types+node@20.19.9_jiti@2.4.2_less@4.4.2_sass-embedded@1.93.3_sass@1.94.0_terser@5.44.0_yaml@2.8.1/node_modules/vite/types/hmrpayload.d.ts","../../../node_modules/.pnpm/vite@7.2.2_@types+node@20.19.9_jiti@2.4.2_less@4.4.2_sass-embedded@1.93.3_sass@1.94.0_terser@5.44.0_yaml@2.8.1/node_modules/vite/types/customevent.d.ts","../../../node_modules/.pnpm/vite@7.2.2_@types+node@20.19.9_jiti@2.4.2_less@4.4.2_sass-embedded@1.93.3_sass@1.94.0_terser@5.44.0_yaml@2.8.1/node_modules/vite/types/hot.d.ts","../../../node_modules/.pnpm/vite@7.2.2_@types+node@20.19.9_jiti@2.4.2_less@4.4.2_sass-embedded@1.93.3_sass@1.94.0_terser@5.44.0_yaml@2.8.1/node_modules/vite/types/importglob.d.ts","../../../node_modules/.pnpm/vite@7.2.2_@types+node@20.19.9_jiti@2.4.2_less@4.4.2_sass-embedded@1.93.3_sass@1.94.0_terser@5.44.0_yaml@2.8.1/node_modules/vite/types/importmeta.d.ts","../../../node_modules/.pnpm/vite@7.2.2_@types+node@20.19.9_jiti@2.4.2_less@4.4.2_sass-embedded@1.93.3_sass@1.94.0_terser@5.44.0_yaml@2.8.1/node_modules/vite/client.d.ts","../../../node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.d.ts","../../../node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/modules/index.d.ts","../../../node_modules/.pnpm/@types+react@19.0.0/node_modules/@types/react/global.d.ts","../../../node_modules/.pnpm/csstype@3.1.3/node_modules/csstype/index.d.ts","../../../node_modules/.pnpm/@types+react@19.0.0/node_modules/@types/react/index.d.ts","../../../node_modules/.pnpm/@types+react@19.0.0/node_modules/@types/react/jsx-runtime.d.ts","../../../node_modules/.pnpm/axios@1.12.2/node_modules/axios/index.d.ts","../src/lib/auth/api.ts","../src/lib/auth/auth-token-store.ts","../src/lib/auth/auth.context.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.90.9/node_modules/@tanstack/query-core/build/modern/subscribable.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.90.9/node_modules/@tanstack/query-core/build/modern/focusmanager.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.90.9/node_modules/@tanstack/query-core/build/modern/removable.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.90.9/node_modules/@tanstack/query-core/build/modern/hydration-cwlnqme2.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.90.9/node_modules/@tanstack/query-core/build/modern/infinitequeryobserver.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.90.9/node_modules/@tanstack/query-core/build/modern/notifymanager.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.90.9/node_modules/@tanstack/query-core/build/modern/onlinemanager.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.90.9/node_modules/@tanstack/query-core/build/modern/queriesobserver.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.90.9/node_modules/@tanstack/query-core/build/modern/timeoutmanager.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.90.9/node_modules/@tanstack/query-core/build/modern/streamedquery.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.90.9/node_modules/@tanstack/query-core/build/modern/index.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.0/node_modules/@tanstack/react-query/build/modern/types.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.0/node_modules/@tanstack/react-query/build/modern/usequeries.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.0/node_modules/@tanstack/react-query/build/modern/queryoptions.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.0/node_modules/@tanstack/react-query/build/modern/usequery.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.0/node_modules/@tanstack/react-query/build/modern/usesuspensequery.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.0/node_modules/@tanstack/react-query/build/modern/usesuspenseinfinitequery.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.0/node_modules/@tanstack/react-query/build/modern/usesuspensequeries.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.0/node_modules/@tanstack/react-query/build/modern/useprefetchquery.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.0/node_modules/@tanstack/react-query/build/modern/useprefetchinfinitequery.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.0/node_modules/@tanstack/react-query/build/modern/infinitequeryoptions.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.0/node_modules/@tanstack/react-query/build/modern/queryclientprovider.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.0/node_modules/@tanstack/react-query/build/modern/queryerrorresetboundary.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.0/node_modules/@tanstack/react-query/build/modern/hydrationboundary.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.0/node_modules/@tanstack/react-query/build/modern/useisfetching.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.0/node_modules/@tanstack/react-query/build/modern/usemutationstate.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.0/node_modules/@tanstack/react-query/build/modern/usemutation.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.0/node_modules/@tanstack/react-query/build/modern/mutationoptions.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.0/node_modules/@tanstack/react-query/build/modern/useinfinitequery.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.0/node_modules/@tanstack/react-query/build/modern/isrestoringprovider.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.0/node_modules/@tanstack/react-query/build/modern/index.d.ts","../src/lib/react-query.provider.tsx","../src/lib/auth/auth.query.ts","../src/lib/auth/instance-auth.provider.tsx","../../binary/dist/lib/binary.d.ts","../../binary/dist/lib/types.d.ts","../../binary/dist/index.d.ts","../../core/dist/lib/types/abstract-filter.d.ts","../../core/dist/lib/types/ecs-types.d.ts","../../core/dist/lib/types/index.d.ts","../../core/dist/lib/prefab.d.ts","../../core/dist/lib/di/di-container.d.ts","../../core/dist/lib/di/di-decorators.d.ts","../../core/dist/lib/di/index.d.ts","../../core/dist/lib/ecs-config.d.ts","../../core/dist/lib/mem/abstract-memory.interface.d.ts","../../core/dist/lib/mem/managers/components-manager.d.ts","../../core/dist/lib/mem/managers/filters-manager.d.ts","../../core/dist/lib/mem/managers/entities-manager.d.ts","../../core/dist/lib/mem/managers/singletons-manager.d.ts","../../core/dist/lib/mem/managers/player-resources-manager.d.ts","../../core/dist/lib/mem/managers/tick-manager.d.ts","../../core/dist/lib/mem/managers/prng-manager.d.ts","../../core/dist/lib/mem/mem.d.ts","../../core/dist/lib/mem/index.d.ts","../../misc/dist/lib/now.d.ts","../../misc/dist/lib/uuid.d.ts","../../misc/dist/lib/ring-buffer.d.ts","../../misc/dist/lib/snapshot-history.d.ts","../../misc/dist/lib/phase-nudger.d.ts","../../misc/dist/lib/simulation-clock.d.ts","../../misc/dist/lib/transform2d-utils.d.ts","../../misc/dist/lib/visual-smoother-2d.d.ts","../../misc/dist/lib/logger.d.ts","../../misc/dist/index.d.ts","../../core/dist/lib/input/rpc.d.ts","../../core/dist/lib/input/input-registry.d.ts","../../core/dist/lib/input/rpc-history.d.ts","../../core/dist/lib/input/abstract-input-provider.d.ts","../../core/dist/lib/input/local-input-provider.d.ts","../../core/dist/lib/input/input-provider-di-token.d.ts","../../core/dist/lib/input/replay-input-provider.d.ts","../../core/dist/lib/input/index.d.ts","../../core/dist/lib/signals/event-emitter.d.ts","../../core/dist/lib/signals/signal.d.ts","../../core/dist/lib/ecs-simulation.d.ts","../../core/dist/lib/ecs-runner.d.ts","../../core/dist/lib/hash-verification/divergence.signal.d.ts","../../core/dist/lib/hash-verification/abstract-hash-verification.system.d.ts","../../core/dist/lib/hash-verification/create-hash-reporter.d.ts","../../core/dist/lib/hash-verification/index.d.ts","../../core/dist/index.d.ts","../../relay-client/dist/lib/types.d.ts","../../net-wire/dist/lib/protocol.d.ts","../../net-wire/dist/lib/clock-sync.d.ts","../../net-wire/dist/lib/input-delay-controller.d.ts","../../net-wire/dist/lib/tick-input-buffer.d.ts","../../net-wire/dist/index.d.ts","../../relay-client/dist/lib/relay-connection.d.ts","../../relay-client/dist/lib/relay-input-provider.d.ts","../../relay-client/dist/index.d.ts","../src/lib/debug-panel/types.ts","../src/lib/debug-panel/use-net-stats.ts","../src/lib/debug-panel/styles.ts","../src/lib/debug-panel/debug-panel.tsx","../src/lib/debug-panel/index.ts","../src/index.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/index.d.ts"],"fileIdsList":[[109,110,177,220],[110,177,220],[109,177,220],[114,115,118,119,129,147,149,150,151,155,177,220],[177,220],[116,177,220],[116,117,177,220],[114,118,119,147,149,150,177,220],[114,119,129,139,147,149,177,220],[114,119,125,143,152,177,220],[114,151,177,220],[149,177,220],[152,153,154,177,220],[114,119,140,141,142,150,177,220],[140,141,142,143,144,145,146,177,220],[143,177,220],[114,177,220],[119,141,143,177,220],[114,140,141,177,220],[111,177,220],[123,125,127,128,177,220],[111,114,119,120,177,220],[111,114,115,119,120,121,122,177,220],[111,119,120,177,220],[111,114,120,177,220],[111,120,177,220],[114,119,121,122,123,124,125,126,127,177,220],[111,114,177,220],[119,148,177,220],[111,112,177,220],[112,113,177,220],[130,131,132,133,135,136,137,138,177,220],[134,177,220],[158,159,160,161,177,220],[111,158,177,220],[64,66,70,72,73,106,107,108,170,177,220],[66,70,71,177,220],[66,70,177,220],[66,69,70,177,220],[66,70,72,73,74,105,106,177,220],[66,69,70,107,177,220],[66,69,70,156,166,167,168,177,220],[66,70,166,169,177,220],[66,69,70,156,177,220],[66,69,70,156,165,166,177,220],[66,69,70,105,177,220],[157,162,163,164,177,220],[157,162,177,220],[156,162,163,177,220],[75,177,220],[75,77,177,220],[75,76,77,78,79,80,81,82,83,84,177,220],[75,77,78,177,220],[69,85,177,220],[69,70,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,177,220],[85,86,177,220],[69,177,220],[69,70,177,220],[85,177,220],[85,86,95,177,220],[85,86,88,177,220],[177,217,220],[177,219,220],[220],[177,220,225,254],[177,220,221,226,232,233,240,251,262],[177,220,221,222,232,240],[172,173,174,177,220],[177,220,223,263],[177,220,224,225,233,241],[177,220,225,251,259],[177,220,226,228,232,240],[177,219,220,227],[177,220,228,229],[177,220,230,232],[177,219,220,232],[177,220,232,233,234,251,262],[177,220,232,233,234,247,251,254],[177,215,220],[177,220,228,232,235,240,251,262],[177,220,232,233,235,236,240,251,259,262],[177,220,235,237,251,259,262],[175,176,177,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268],[177,220,232,238],[177,220,239,262,267],[177,220,228,232,240,251],[177,220,241],[177,220,242],[177,219,220,243],[177,217,218,219,220,221,222,223,224,225,226,227,228,229,230,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268],[177,220,245],[177,220,246],[177,220,232,247,248],[177,220,247,249,263,265],[177,220,232,251,252,254],[177,220,253,254],[177,220,251,252],[177,220,254],[177,220,255],[177,217,220,251,256],[177,220,232,257,258],[177,220,257,258],[177,220,225,240,251,259],[177,220,260],[177,220,240,261],[177,220,235,246,262],[177,220,225,263],[177,220,251,264],[177,220,239,265],[177,220,266],[177,220,232,234,243,251,254,262,265,267],[177,220,251,268],[67,68,177,220],[65,177,220],[177,187,191,220,262],[177,187,220,251,262],[177,182,220],[177,184,187,220,259,262],[177,220,240,259],[177,220,269],[177,182,220,269],[177,184,187,220,240,262],[177,179,180,183,186,220,232,251,262],[177,187,194,220],[177,179,185,220],[177,187,208,209,220],[177,183,187,220,254,262,269],[177,208,220,269],[177,181,182,220,269],[177,187,220],[177,181,182,183,184,185,186,187,188,189,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,209,210,211,212,213,214,220],[177,187,202,220],[177,187,194,195,220],[177,185,187,195,196,220],[177,186,220],[177,179,182,187,220],[177,187,191,195,196,220],[177,191,220],[177,185,187,190,220,262],[177,179,184,187,194,220],[177,220,251],[177,182,187,208,220,267,269],[63,177,220],[59,177,220],[60,177,220],[61,62,177,220]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a7ca8df4f2931bef2aa4118078584d84a0b16539598eaadf7dce9104dfaa381c","impliedFormat":1},{"version":"72950913f4900b680f44d8cab6dd1ea0311698fc1eefb014eb9cdfc37ac4a734","impliedFormat":1},{"version":"36977c14a7f7bfc8c0426ae4343875689949fb699f3f84ecbe5b300ebf9a2c55","impliedFormat":1},{"version":"59f8dc89b9e724a6a667f52cdf4b90b6816ae6c9842ce176d38fcc973669009e","affectsGlobalScope":true,"impliedFormat":1},{"version":"474eba6689e97bf58edd28c90524e70f4fb11820df66752182a1ad1ff9970bb2","affectsGlobalScope":true,"impliedFormat":1},{"version":"1eef826bc4a19de22155487984e345a34c9cd511dd1170edc7a447cb8231dd4a","affectsGlobalScope":true,"impliedFormat":99},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"b8f34dd1757f68e03262b1ca3ddfa668a855b872f8bdd5224d6f993a7b37dc2c","impliedFormat":99},{"version":"36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"a305ee2f90e34e9e70aba9a9e9a154ce20c4d5cd1499cd21b8dc3617e1e5c810","impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},{"version":"7584239b853f690c6629ae8bb683ded6ff33104e7835778bbca5ee1b1d9a0a91","impliedFormat":99},{"version":"20c61aa54bb7d68feaa3ca82e22e46647faa8efff08d6b33cf0805402fd21ff7","signature":"619d51c855144261584ae428724b5880a816e3054e6e579a48390ecac3b93fa9"},{"version":"818b199748509b60c767ae937f09e64b46146d59b6306094a1e86a6368f5c7d1","signature":"0c308d4842085df20b08e2e87579e6c44055c2e9307919716ba59e783e610152"},{"version":"3d7365a148af306352f068457f7f29426c852096d97983556068660968c88b6b","signature":"39e19203e1a31d4e510f28449e6524babe440303a002194821b5ed0ac6f8fb37"},{"version":"50cf7a23fc93928995caec8d7956206990f82113beeb6b3242dae8124edc3ca0","impliedFormat":99},{"version":"352031ac2e53031b69a09355e09ad7d95361edf32cc827cfe2417d80247a5a50","impliedFormat":99},{"version":"9971931daaf18158fc38266e838d56eb5d9d1f13360b1181bb4735a05f534c03","impliedFormat":99},{"version":"45986b39f8b8e2bd88fc94a064fedfa615a9b17c86f40989257a0ea524a4a0bc","impliedFormat":99},{"version":"28e669c56996982f89fa32016767efcb542c7e2d642a2c6ba0302886487f2352","impliedFormat":99},{"version":"0c5b705d31420477189618154d1b6a9bb62a34fa6055f56ade1a316f6adb6b3a","impliedFormat":99},{"version":"853b8bdb5da8c8e5d31e4d715a8057d8e96059d6774b13545c3616ed216b890c","impliedFormat":99},{"version":"d5d5c0a5d79339bafdd79f5ffc40c05a09767a3b32a4b4c0f30b3872ecc4c612","impliedFormat":99},{"version":"fe3c64bf61fcfec9b9861725c6d92de03f33748a01d982760ccfa798d777cf9d","impliedFormat":99},{"version":"89b605879252178aa85a8c7721bb65b95a77885289f6c5621705a3f243515a6d","impliedFormat":99},{"version":"0d08f442ef8a279c6d56dfdbc4537aaded60eaaaef838c4380972f925cee017a","impliedFormat":99},{"version":"2bb7e3f4061e7fdb62652ffb077ca2a01b55e9d898409e37fe1ae97acab894ea","impliedFormat":99},{"version":"c363b57a3dfab561bfe884baacf8568eea085bd5e11ccf0992fac67537717d90","impliedFormat":99},{"version":"1757a53a602a8991886070f7ba4d81258d70e8dca133b256ae6a1a9f08cd73b3","impliedFormat":99},{"version":"084c09a35a9611e1777c02343c11ab8b1be48eb4895bbe6da90222979940b4a6","impliedFormat":99},{"version":"4b3049a2c849f0217ff4def308637931661461c329e4cf36aeb31db34c4c0c64","impliedFormat":99},{"version":"6245aa515481727f994d1cf7adfc71e36b5fc48216a92d7e932274cee3268000","impliedFormat":99},{"version":"d542fb814a8ceb7eb858ecd5a41434274c45a7d511b9d46feb36d83b437b08d5","impliedFormat":99},{"version":"660ce583eaa09bb39eef5ad7af9d1b5f027a9d1fbf9f76bf5b9dc9ef1be2830e","impliedFormat":99},{"version":"b7d9ca4e3248f643fa86ff11872623fdc8ed2c6009836bec0e38b163b6faed0c","impliedFormat":99},{"version":"ac7a28ab421ea564271e1a9de78d70d68c65fab5cbb6d5c5568afcf50496dd61","impliedFormat":99},{"version":"d4f7a7a5f66b9bc6fbfd53fa08dcf8007ff752064df816da05edfa35abd2c97c","impliedFormat":99},{"version":"1f38ecf63dead74c85180bf18376dc6bc152522ef3aedf7b588cadbbd5877506","impliedFormat":99},{"version":"82fb33c00b1300c19591105fc25ccf78acba220f58d162b120fe3f4292a5605f","impliedFormat":99},{"version":"facde2bec0f59cf92f4635ece51b2c3fa2d0a3bbb67458d24af61e7e6b8f003c","impliedFormat":99},{"version":"4669194e4ca5f7c160833bbb198f25681e629418a6326aba08cf0891821bfe8f","impliedFormat":99},{"version":"db185b403e30e91c5b90f3f2cfa062832d764c9d7df3ad7f5db7e17596344fe8","impliedFormat":99},{"version":"669b62a7169354658d4ae1e043ad8203728655492a8f70a940a11ca5ed4d5029","impliedFormat":99},{"version":"a95cd11c5c8bc03eab4011f8e339a48f9a87293e90c0bf3e9003d7a6f833f557","impliedFormat":99},{"version":"e9bc0db0144701fab1e98c4d595a293c7c840d209b389144142f0adbc36b5ec2","impliedFormat":99},{"version":"9d884b885c4b2d89286685406b45911dcaab03e08e948850e3e41e29af69561c","impliedFormat":99},{"version":"238b0139676528c5f711e186ff096e92d4942019a9332c2ea292fe38d7b33c69","signature":"31061c5d81174f31d6e0cb4e76e4694309b6366652e832b7e346917787bbdb67"},{"version":"7576b3dbd9a57fc6da94ebfd286ff84cc625f39a966e6003c95a5b248619af2c","signature":"b27e748f26a7e71493dbc686aed690c1c463766136eb5edf74e344cf256808da"},{"version":"78610ca3e045d20410f2c9e32a2076a225f3bf07d53398f119978063540583db","signature":"b78c8eabe1492a5bdf2d6146e73a5ba0d9271350af8052acbf0366bf554f7689"},"ac089737c8fddcff7af3b4b11d52ceb4053ecacb1e408186981a121b45d471ae","ddd386b335a31a931a79bb4a4194e4ad53836920f3eb847f9239577df45f0ada","21c5388dfa2af6acd9a77f68ace5f393e5f1163b371a7c4346742ebf0e102117","23ad1fa9322c6e341b8b1fd6bb93a6720ab1d0d10a0eda74652818d3ff3392e2","1595bfc83b235176aa8bc3ad7baed759964ca2127cefc014faa3d4647d362c6f","f8d0edd14faea72f0e9a0384f41910d26e3b0006f71451c330c34d1a1494ce33","85b8fe3f00141026c0fc749a2f23ac4ae5d030458ca2ed4598587ea0521e2eae","130f6370a530b3643e2214b630d3e2e123d76a0233e8e590f3509e072c906ea5","f7238b26bc44bf22e4d833995e2b61a73b8da62693303e4289b0456e0209fbd8","db4ff4c463764d1c94308182062ecd2d25472f52f00bee4acbe5a44b2f569852","42d790b95977358d889f7a229b5d6ddcdd0b349f3dc17f1fce23ed1981d627e9","61f587866ef1f487c3a8867926cd5f0d98052da7d4c374d23db8041086d56022","232cf2b08cd445b215cc34e8d7c3d942685deac6c335e2d6d5e3d3b450790fbe","16399c7ec44051bd6a1b0b5978c8eeadf92f92af2dd7ed92f4387d5402fd415b","7eccc5df9b04689731abffad3c85c330094f9385cc008af7b16e9bb684a01a81","c4dafacf7638b0b53ac6c0260e519a75700cf5e8e10f428980d3be0cf0bb5a43","a7252718aa03403a5bd897641ddfbd2c66874be55c5179bf960dbcb338332935","81bc54177adc5150443aa53fce811a6cd2fc68115de3a902938c9b11397b7b48","7e5098b7265fec8f1c07dfd86987713c004b6e9a89794b3fd53ae4e43b3a34a4","3792ab1424d2cc9fb3cea0a4532a989bd4648d5c0e3eec5ef0c0c2c789917639","ceb663d013c4ac93b76bc90aefaf643bb60fc47bf8d79a463c36c817788cab6b","b6c4414ae580cf1ab858f1851520f1d0cee1ca59117ca7e836116cf9618c8819","1c440fad2b3f198c3b034257840dcf2999a41770d0b2cfccfc047189d98df18f","ef9f67b0f0bd71f90d52d8589b3b3c45e1267129b13f874c049a805ecd7ac37f","3d26b5544141b556e3b263e78bbe30fe9927f48f58a3ade62c0de58b4d41d9a4","d1beb1ffdddb2cf5fe1e58557c8783d3070680c6165bc6652993ed2a7bf48f38","4e3121b5b60b986fa48641a69098b66f0b37c876a973fb0d671394b09913752c","6573f1553e8ab870f43047dac35527ec3281a9f1c57c4f2be9872306a6dbe5ae","899a34e4f158e0b0ef1a72b566bf4041edeef09d0547f8882f740ec5dfd2c775","6b42cbd9637a7b84238d4cd7212e5405d9a3274f505a1cc8dc008f5ef7cbce12","23c7c084d919b1a6d948a8a0952a18969caaf0740f19651f046d978440b06d57","be7dd117709b70c08c3dd3cad6db949b2add05c993965956aad087f28d0d4f1f","bb29fc63ec33f6ec97b45f8c80ed7f43108d33de088e1d2d3c3ad6fba8b07db9","ff8695b8c6fe2488fd76353671004ec63e8a87f3d82f35bdf55bdb5e304ee5ee","fb3663bfd2e5d316dbdd5210b0633a58cf1ec0c598735f9755d564e8dc0a7744","ae1bc79abc2d1b8cbc665ad296a21271359f8b9a591e62f868ac950e33b8adfb","2f41588912cfb2144c054c6841f22079faaf4d027b0c6372cb301cdcf996ca57","c48b92e464ec9eed3b29550d84f6ae59e072e7c5dfe1f4478739d730b02364b5","a3ee61aa8774ff2edc883442f88cd099324ac1941561cbedcc796a4e38f252aa","f4be38602c24316b0641a63db2c87edf760e1d07cb6c6f6101341eb60c0c36cb","5d73a3f0d5320a3d3ff77641407741c12192011a379ae8d4b487fbb5797950c1","c33414c55b8a3c3226672bd5b28267ea137ee8ae179765d637ec33a74ba6ecf2","79d6ace059374ba2d5ec4dabbea4e76568af5d32cad07996ad5476a057a299ec","01e68235fbff64c79c96de8c5f7127a51239beac5f644986fbb5557029512e4d","a1b9159487e86199143afa0f4594fec1168eeebe51459fc77a612cdc7f78fbb5","94ca152a91b6e52e515f7bea6cfb1d4ab55e461416cdb0fa3cf0a6a6f5c763d3","dee8a8603abae94cfa038ab6775bd8bc0d21081f9d1f0feb9880971be2dc10e4","bde3d9ee3993b92b21309fc76225337b74c1ea7a82b8752edbf1c2cd6648c314","954cca308b794d31e8bd7b80cecec5f454bc9b9a4b39b91f583e2dfc8dabde7d","f1d219537856b85b587d64dbf8233115cc3b5a20d5a9ca29d71ab82f1d40fdeb","0adc1e3975856b12a811ab06af29a2d9e343b06e48c826f3c72bd7ceaf4be54f","4a169791aad1f002f3412ce6ed18bff156d2e97a645e1c5c6ba07dfcae10c1d3","e2264c936ae9474c390623d8b41ae4ee992554cac7f3f20109e22ef27725e764","03474982ddfb89dd5b162522e3e2a2c91ea40656a9e901bf71541402124a9bdf","87bddd4f07117b616006c6b429a2aaee917d04ee609cbe00cbf8ee1c5be9d701","dce322762c7aaa63b937486a679b3bd07879dba1441b11969d8eb66fd4859b93","37c2a11511c5d061c22bd64c29e6e94b0f67508f371614e4d3b6be2e618b723d",{"version":"43ca2f106d6009d0ff3bdcbcb68e66e9224929e784e77f90aa21829a6f2c2c02","signature":"115ca5d23d8cb8ebe32b0be082433c411360bcf8e4d281579f27e921a977a10b"},{"version":"101f42aa7a91c811580acd187338a5e0556d5f65c497388e11c8f97294570adc","signature":"83ac7905fe21f67a2f44a973099e7fc9072c783ce0d92e84e942781b2cf5e1b3"},{"version":"bc04ea9b2b1a29801fa6f91608f779a599ff78f9481cfc6345bfb9a093ed0a2a","signature":"ad04457fcdf86418048bb099a2b6a1e793309207a448bf8e34cda20c7a1d540f"},{"version":"c0b53a93d2f703280db3889ac2989ebad2b0ccdd6f7115d60cac2a01adc86b58","signature":"0d44a08d9ff5186d68efdd1eee41c239f9790cd0b5b087b0df8b47d374c4bc9c"},"5f21515550db0db0bde483e787ce3a56c67975e643dc4b2bf90feddfa86e2cbb",{"version":"6688d9822ed4feebeb59c44281cc5437e31add143efc90ccac97faaa5900ec4e","signature":"cdbbe4a31a351f9e1b29df9273b2eae87d9a483207f85445fe1707e52b7d9909"},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"49a5a44f2e68241a1d2bd9ec894535797998841c09729e506a7cbfcaa40f2180","affectsGlobalScope":true,"impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"1ca84b44ad1d8e4576f24904d8b95dd23b94ea67e1575f89614ac90062fc67f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d586db0a09a9495ebb5dece28f54df9684bfbd6e1f568426ca153126dac4a40","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"567b7f607f400873151d7bc63a049514b53c3c00f5f56e9e95695d93b66a138e","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3e58c4c18a031cbb17abec7a4ad0bd5ae9fc70c1f4ba1e7fb921ad87c504aca","impliedFormat":1},{"version":"84c1930e33d1bb12ad01bcbe11d656f9646bd21b2fb2afd96e8e10615a021aef","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4b87f767c7bc841511113c876a6b8bf1fd0cb0b718c888ad84478b372ec486b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d04e3640dd9eb67f7f1e5bd3d0bf96c784666f7aefc8ac1537af6f2d38d4c29","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"2bf469abae4cc9c0f340d4e05d9d26e37f936f9c8ca8f007a6534f109dcc77e4","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ada07543808f3b967624645a8e1ccd446f8b01ade47842acf1328aec899fed0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4c21aaa8257d7950a5b75a251d9075b6a371208fc948c9c8402f6690ef3b5b55","impliedFormat":1},{"version":"b5895e6353a5d708f55d8685c38a235c3a6d8138e374dee8ceb8ffde5aa8002a","impliedFormat":1},{"version":"54c4f21f578864961efc94e8f42bc893a53509e886370ec7dd602e0151b9266c","impliedFormat":1},{"version":"de735eca2c51dd8b860254e9fdb6d9ec19fe402dfe597c23090841ce3937cfc5","impliedFormat":1},{"version":"4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"5155da3047ef977944d791a2188ff6e6c225f6975cc1910ab7bb6838ab84cede","impliedFormat":1},{"version":"93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","impliedFormat":1},{"version":"afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5","impliedFormat":1},{"version":"e16d218a30f6a6810b57f7e968124eaa08c7bb366133ea34bbf01e7cd6b8c0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb8692dea24c27821f77e397272d9ed2eda0b95e4a75beb0fdda31081d15a8ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"5b6844ad931dcc1d3aca53268f4bd671428421464b1286746027aede398094f2","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"0dbcebe2126d03936c70545e96a6e41007cf065be38a1ce4d32a39fcedefead4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","impliedFormat":1},{"version":"461e54289e6287e8494a0178ba18182acce51a02bca8dea219149bf2cf96f105","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"e31e51c55800014d926e3f74208af49cb7352803619855c89296074d1ecbb524","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"dfb96ba5177b68003deec9e773c47257da5c4c8a74053d8956389d832df72002","affectsGlobalScope":true,"impliedFormat":1},{"version":"92d3070580cf72b4bb80959b7f16ede9a3f39e6f4ef2ac87cfa4561844fdc69f","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3dffd70e6375b872f0b4e152de4ae682d762c61a24881ecc5eb9f04c5caf76f","impliedFormat":1},{"version":"613deebaec53731ff6b74fe1a89f094b708033db6396b601df3e6d5ab0ec0a47","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"e56eb632f0281c9f8210eb8c86cc4839a427a4ffffcfd2a5e40b956050b3e042","affectsGlobalScope":true,"impliedFormat":1},{"version":"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","impliedFormat":1},{"version":"cac793cc47c29e26e4ac3601dcb00b4435ebed26203485790e44f2ad8b6ad847","impliedFormat":1}],"root":[[72,74],[106,108],[166,171]],"options":{"composite":true,"declarationMap":true,"emitDeclarationOnly":false,"emitDecoratorMetadata":true,"experimentalDecorators":true,"importHelpers":true,"jsx":4,"module":200,"noEmitOnError":true,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noUnusedLocals":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"strict":true,"target":9,"tsBuildInfoFile":"./tsconfig.lib.tsbuildinfo","verbatimModuleSyntax":false},"referencedMap":[[111,1],[109,2],[110,3],[156,4],[116,5],[117,6],[118,7],[119,5],[151,8],[150,9],[153,10],[154,11],[152,12],[155,13],[143,14],[147,15],[145,16],[141,17],[144,16],[146,18],[142,19],[140,17],[120,20],[129,21],[121,22],[123,23],[122,22],[125,22],[127,24],[124,25],[126,26],[128,27],[115,28],[148,5],[149,29],[112,20],[113,30],[114,31],[139,32],[138,5],[130,5],[134,5],[132,5],[135,33],[133,5],[136,5],[131,5],[137,5],[162,34],[159,35],[160,5],[158,20],[161,5],[171,36],[72,37],[73,38],[74,39],[107,40],[108,41],[169,42],[170,43],[168,39],[166,44],[167,45],[106,46],[165,47],[163,48],[164,49],[157,5],[76,50],[78,51],[85,52],[79,53],[80,5],[81,50],[82,53],[77,5],[84,53],[75,5],[83,5],[98,54],[105,55],[95,56],[104,57],[102,56],[96,54],[97,58],[88,56],[86,59],[103,60],[99,59],[101,56],[100,59],[94,59],[93,56],[87,56],[89,61],[91,56],[92,56],[90,56],[217,62],[218,62],[219,63],[177,64],[220,65],[221,66],[222,67],[172,5],[175,68],[173,5],[174,5],[223,69],[224,70],[225,71],[226,72],[227,73],[228,74],[229,74],[231,5],[230,75],[232,76],[233,77],[234,78],[216,79],[176,5],[235,80],[236,81],[237,82],[269,83],[238,84],[239,85],[240,86],[241,87],[242,88],[243,89],[244,90],[245,91],[246,92],[247,93],[248,93],[249,94],[250,5],[251,95],[253,96],[252,97],[254,98],[255,99],[256,100],[257,101],[258,102],[259,103],[260,104],[261,105],[262,106],[263,107],[264,108],[265,109],[266,110],[267,111],[268,112],[67,5],[69,113],[70,57],[71,5],[178,5],[68,5],[66,114],[65,5],[57,5],[58,5],[10,5],[12,5],[11,5],[2,5],[13,5],[14,5],[15,5],[16,5],[17,5],[18,5],[19,5],[20,5],[3,5],[21,5],[22,5],[4,5],[23,5],[27,5],[24,5],[25,5],[26,5],[28,5],[29,5],[30,5],[5,5],[31,5],[32,5],[33,5],[34,5],[6,5],[38,5],[35,5],[36,5],[37,5],[39,5],[7,5],[40,5],[45,5],[46,5],[41,5],[42,5],[43,5],[44,5],[8,5],[50,5],[47,5],[48,5],[49,5],[51,5],[9,5],[52,5],[53,5],[54,5],[56,5],[55,5],[1,5],[194,115],[204,116],[193,115],[214,117],[185,118],[184,119],[213,120],[207,121],[212,122],[187,123],[201,124],[186,125],[210,126],[182,127],[181,120],[211,128],[183,129],[188,130],[189,5],[192,130],[179,5],[215,131],[205,132],[196,133],[197,134],[199,135],[195,136],[198,137],[208,120],[190,138],[191,139],[200,140],[180,141],[203,132],[202,130],[206,5],[209,142],[64,143],[60,144],[59,5],[61,145],[62,5],[63,146]],"latestChangedDtsFile":"./lib/debug-panel/use-net-stats.d.ts","version":"5.9.3"}
|
package/package.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@lagless/react",
|
|
3
|
+
"version": "0.0.33",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/ppauel/lagless",
|
|
8
|
+
"directory": "libs/react"
|
|
9
|
+
},
|
|
10
|
+
"type": "module",
|
|
11
|
+
"main": "./dist/index.js",
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"exports": {
|
|
14
|
+
"./package.json": "./package.json",
|
|
15
|
+
".": {
|
|
16
|
+
"@lagless/source": "./src/index.ts",
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"import": "./dist/index.js",
|
|
19
|
+
"default": "./dist/index.js"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {},
|
|
23
|
+
"peerDependencies": {
|
|
24
|
+
"@tanstack/react-query": "^5.90.9",
|
|
25
|
+
"react": "^19.0.0",
|
|
26
|
+
"@lagless/core": "0.0.33",
|
|
27
|
+
"@lagless/relay-client": "0.0.33"
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"dist",
|
|
31
|
+
"README.md"
|
|
32
|
+
],
|
|
33
|
+
"publishConfig": {
|
|
34
|
+
"access": "public"
|
|
35
|
+
}
|
|
36
|
+
}
|