@inceptionbg/main 3.0.5 → 3.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,5 @@
1
+ import { AxiosInstance } from 'axios';
2
+
1
3
  declare const moduleIds = [
2
4
  'DASHBOARD',
3
5
  'ADMIN',
@@ -11,6 +13,7 @@ declare const moduleIds = [
11
13
  'EPROCUREMENT',
12
14
  'EREGISTER',
13
15
  'PAM',
16
+ 'DISPATCH_ADVICE',
14
17
  'ERP_CASH_REGISTER',
15
18
  'ERP_RIF',
16
19
  'ERP_MAT_ACC',
@@ -28,646 +31,7 @@ declare const moduleIds = [
28
31
 
29
32
  type IModuleId = (typeof moduleIds)[number];
30
33
 
31
- type IEnv = 'DEV' | 'TEST' | 'PROD' | 'LOCAL' | 'UAT' | 'TEST_PPLCG' | 'PROD_PPLCG';
32
- type IServiceApi =
33
- | 'auth'
34
- | 'idm'
35
- | 'codebook'
36
- | 'auditLog'
37
- | 'notifications'
38
- | 'indexData'
39
- | 'registration'
40
- | 'reportTemplates'
41
- | 'procurement'
42
- | 'archive'
43
- | 'invoice'
44
- | 'edms'
45
- | 'rif'
46
- | 'cashRegister'
47
- | 'jisuszProxy'
48
- | 'fosterCare'
49
- | 'article';
50
-
51
- type CustomHeader = {
52
- public?: boolean;
53
- baseUrl?: string;
54
- service?: IServiceApi;
55
- token?: string;
56
- noToast?: boolean;
57
- noErrors?: boolean;
58
- };
59
-
60
- // TypeScript Version: 4.7
61
- type AxiosHeaderValue = AxiosHeaders | string | string[] | number | boolean | null;
62
-
63
- interface RawAxiosHeaders {
64
- [key: string]: AxiosHeaderValue;
65
- }
66
-
67
- type MethodsHeaders = Partial<
68
- {
69
- [Key in Method as Lowercase<Key>]: AxiosHeaders;
70
- } & { common: AxiosHeaders }
71
- >;
72
-
73
- type AxiosHeaderMatcher =
74
- | string
75
- | RegExp
76
- | ((this: AxiosHeaders, value: string, name: string) => boolean);
77
-
78
- type AxiosHeaderParser = (
79
- this: AxiosHeaders,
80
- value: AxiosHeaderValue,
81
- header: string
82
- ) => any;
83
-
84
- declare class AxiosHeaders {
85
- constructor(headers?: RawAxiosHeaders | AxiosHeaders | string);
86
-
87
- [key: string]: any;
88
-
89
- set(
90
- headerName?: string,
91
- value?: AxiosHeaderValue,
92
- rewrite?: boolean | AxiosHeaderMatcher
93
- ): AxiosHeaders;
94
- set(headers?: RawAxiosHeaders | AxiosHeaders | string, rewrite?: boolean): AxiosHeaders;
95
-
96
- get(headerName: string, parser: RegExp): RegExpExecArray | null;
97
- get(headerName: string, matcher?: true | AxiosHeaderParser): AxiosHeaderValue;
98
-
99
- has(header: string, matcher?: AxiosHeaderMatcher): boolean;
100
-
101
- delete(header: string | string[], matcher?: AxiosHeaderMatcher): boolean;
102
-
103
- clear(matcher?: AxiosHeaderMatcher): boolean;
104
-
105
- normalize(format: boolean): AxiosHeaders;
106
-
107
- concat(
108
- ...targets: Array<AxiosHeaders | RawAxiosHeaders | string | undefined | null>
109
- ): AxiosHeaders;
110
-
111
- toJSON(asStrings?: boolean): RawAxiosHeaders;
112
-
113
- static from(thing?: AxiosHeaders | RawAxiosHeaders | string): AxiosHeaders;
114
-
115
- static accessor(header: string | string[]): AxiosHeaders;
116
-
117
- static concat(
118
- ...targets: Array<AxiosHeaders | RawAxiosHeaders | string | undefined | null>
119
- ): AxiosHeaders;
120
-
121
- setContentType(
122
- value: ContentType,
123
- rewrite?: boolean | AxiosHeaderMatcher
124
- ): AxiosHeaders;
125
- getContentType(parser?: RegExp): RegExpExecArray | null;
126
- getContentType(matcher?: AxiosHeaderMatcher): AxiosHeaderValue;
127
- hasContentType(matcher?: AxiosHeaderMatcher): boolean;
128
-
129
- setContentLength(
130
- value: AxiosHeaderValue,
131
- rewrite?: boolean | AxiosHeaderMatcher
132
- ): AxiosHeaders;
133
- getContentLength(parser?: RegExp): RegExpExecArray | null;
134
- getContentLength(matcher?: AxiosHeaderMatcher): AxiosHeaderValue;
135
- hasContentLength(matcher?: AxiosHeaderMatcher): boolean;
136
-
137
- setAccept(
138
- value: AxiosHeaderValue,
139
- rewrite?: boolean | AxiosHeaderMatcher
140
- ): AxiosHeaders;
141
- getAccept(parser?: RegExp): RegExpExecArray | null;
142
- getAccept(matcher?: AxiosHeaderMatcher): AxiosHeaderValue;
143
- hasAccept(matcher?: AxiosHeaderMatcher): boolean;
144
-
145
- setUserAgent(
146
- value: AxiosHeaderValue,
147
- rewrite?: boolean | AxiosHeaderMatcher
148
- ): AxiosHeaders;
149
- getUserAgent(parser?: RegExp): RegExpExecArray | null;
150
- getUserAgent(matcher?: AxiosHeaderMatcher): AxiosHeaderValue;
151
- hasUserAgent(matcher?: AxiosHeaderMatcher): boolean;
152
-
153
- setContentEncoding(
154
- value: AxiosHeaderValue,
155
- rewrite?: boolean | AxiosHeaderMatcher
156
- ): AxiosHeaders;
157
- getContentEncoding(parser?: RegExp): RegExpExecArray | null;
158
- getContentEncoding(matcher?: AxiosHeaderMatcher): AxiosHeaderValue;
159
- hasContentEncoding(matcher?: AxiosHeaderMatcher): boolean;
160
-
161
- setAuthorization(
162
- value: AxiosHeaderValue,
163
- rewrite?: boolean | AxiosHeaderMatcher
164
- ): AxiosHeaders;
165
- getAuthorization(parser?: RegExp): RegExpExecArray | null;
166
- getAuthorization(matcher?: AxiosHeaderMatcher): AxiosHeaderValue;
167
- hasAuthorization(matcher?: AxiosHeaderMatcher): boolean;
168
-
169
- getSetCookie(): string[];
170
-
171
- [Symbol.iterator](): IterableIterator<[string, AxiosHeaderValue]>;
172
- }
173
-
174
- type CommonRequestHeadersList =
175
- | 'Accept'
176
- | 'Content-Length'
177
- | 'User-Agent'
178
- | 'Content-Encoding'
179
- | 'Authorization';
180
-
181
- type ContentType =
182
- | AxiosHeaderValue
183
- | 'text/html'
184
- | 'text/plain'
185
- | 'multipart/form-data'
186
- | 'application/json'
187
- | 'application/x-www-form-urlencoded'
188
- | 'application/octet-stream';
189
-
190
- type RawAxiosRequestHeaders = Partial<
191
- RawAxiosHeaders & {
192
- [Key in CommonRequestHeadersList]: AxiosHeaderValue;
193
- } & {
194
- 'Content-Type': ContentType;
195
- }
196
- >;
197
-
198
- type AxiosRequestHeaders = RawAxiosRequestHeaders & AxiosHeaders;
199
-
200
- type CommonResponseHeadersList =
201
- | 'Server'
202
- | 'Content-Type'
203
- | 'Content-Length'
204
- | 'Cache-Control'
205
- | 'Content-Encoding';
206
-
207
- type RawCommonResponseHeaders = {
208
- [Key in CommonResponseHeadersList]: AxiosHeaderValue;
209
- } & {
210
- 'set-cookie': string[];
211
- };
212
-
213
- type RawAxiosResponseHeaders = Partial<RawAxiosHeaders & RawCommonResponseHeaders>;
214
-
215
- type AxiosResponseHeaders = RawAxiosResponseHeaders & AxiosHeaders;
216
-
217
- interface AxiosRequestTransformer {
218
- (this: InternalAxiosRequestConfig, data: any, headers: AxiosRequestHeaders): any;
219
- }
220
-
221
- interface AxiosResponseTransformer {
222
- (
223
- this: InternalAxiosRequestConfig,
224
- data: any,
225
- headers: AxiosResponseHeaders,
226
- status?: number
227
- ): any;
228
- }
229
-
230
- interface AxiosAdapter {
231
- (config: InternalAxiosRequestConfig): AxiosPromise;
232
- }
233
-
234
- interface AxiosBasicCredentials {
235
- username: string;
236
- password: string;
237
- }
238
-
239
- interface AxiosProxyConfig {
240
- host: string;
241
- port: number;
242
- auth?: AxiosBasicCredentials;
243
- protocol?: string;
244
- }
245
-
246
- declare enum HttpStatusCode {
247
- Continue = 100,
248
- SwitchingProtocols = 101,
249
- Processing = 102,
250
- EarlyHints = 103,
251
- Ok = 200,
252
- Created = 201,
253
- Accepted = 202,
254
- NonAuthoritativeInformation = 203,
255
- NoContent = 204,
256
- ResetContent = 205,
257
- PartialContent = 206,
258
- MultiStatus = 207,
259
- AlreadyReported = 208,
260
- ImUsed = 226,
261
- MultipleChoices = 300,
262
- MovedPermanently = 301,
263
- Found = 302,
264
- SeeOther = 303,
265
- NotModified = 304,
266
- UseProxy = 305,
267
- Unused = 306,
268
- TemporaryRedirect = 307,
269
- PermanentRedirect = 308,
270
- BadRequest = 400,
271
- Unauthorized = 401,
272
- PaymentRequired = 402,
273
- Forbidden = 403,
274
- NotFound = 404,
275
- MethodNotAllowed = 405,
276
- NotAcceptable = 406,
277
- ProxyAuthenticationRequired = 407,
278
- RequestTimeout = 408,
279
- Conflict = 409,
280
- Gone = 410,
281
- LengthRequired = 411,
282
- PreconditionFailed = 412,
283
- PayloadTooLarge = 413,
284
- UriTooLong = 414,
285
- UnsupportedMediaType = 415,
286
- RangeNotSatisfiable = 416,
287
- ExpectationFailed = 417,
288
- ImATeapot = 418,
289
- MisdirectedRequest = 421,
290
- UnprocessableEntity = 422,
291
- Locked = 423,
292
- FailedDependency = 424,
293
- TooEarly = 425,
294
- UpgradeRequired = 426,
295
- PreconditionRequired = 428,
296
- TooManyRequests = 429,
297
- RequestHeaderFieldsTooLarge = 431,
298
- UnavailableForLegalReasons = 451,
299
- InternalServerError = 500,
300
- NotImplemented = 501,
301
- BadGateway = 502,
302
- ServiceUnavailable = 503,
303
- GatewayTimeout = 504,
304
- HttpVersionNotSupported = 505,
305
- VariantAlsoNegotiates = 506,
306
- InsufficientStorage = 507,
307
- LoopDetected = 508,
308
- NotExtended = 510,
309
- NetworkAuthenticationRequired = 511,
310
- }
311
-
312
- type Method =
313
- | 'get'
314
- | 'GET'
315
- | 'delete'
316
- | 'DELETE'
317
- | 'head'
318
- | 'HEAD'
319
- | 'options'
320
- | 'OPTIONS'
321
- | 'post'
322
- | 'POST'
323
- | 'put'
324
- | 'PUT'
325
- | 'patch'
326
- | 'PATCH'
327
- | 'purge'
328
- | 'PURGE'
329
- | 'link'
330
- | 'LINK'
331
- | 'unlink'
332
- | 'UNLINK';
333
-
334
- type ResponseType =
335
- | 'arraybuffer'
336
- | 'blob'
337
- | 'document'
338
- | 'json'
339
- | 'text'
340
- | 'stream'
341
- | 'formdata';
342
-
343
- type responseEncoding =
344
- | 'ascii'
345
- | 'ASCII'
346
- | 'ansi'
347
- | 'ANSI'
348
- | 'binary'
349
- | 'BINARY'
350
- | 'base64'
351
- | 'BASE64'
352
- | 'base64url'
353
- | 'BASE64URL'
354
- | 'hex'
355
- | 'HEX'
356
- | 'latin1'
357
- | 'LATIN1'
358
- | 'ucs-2'
359
- | 'UCS-2'
360
- | 'ucs2'
361
- | 'UCS2'
362
- | 'utf-8'
363
- | 'UTF-8'
364
- | 'utf8'
365
- | 'UTF8'
366
- | 'utf16le'
367
- | 'UTF16LE';
368
-
369
- interface TransitionalOptions {
370
- silentJSONParsing?: boolean;
371
- forcedJSONParsing?: boolean;
372
- clarifyTimeoutError?: boolean;
373
- }
374
-
375
- interface GenericAbortSignal {
376
- readonly aborted: boolean;
377
- onabort?: ((...args: any) => any) | null;
378
- addEventListener?: (...args: any) => any;
379
- removeEventListener?: (...args: any) => any;
380
- }
381
-
382
- interface FormDataVisitorHelpers {
383
- defaultVisitor: SerializerVisitor;
384
- convertValue: (value: any) => any;
385
- isVisitable: (value: any) => boolean;
386
- }
387
-
388
- interface SerializerVisitor {
389
- (
390
- this: GenericFormData,
391
- value: any,
392
- key: string | number,
393
- path: null | Array<string | number>,
394
- helpers: FormDataVisitorHelpers
395
- ): boolean;
396
- }
397
-
398
- interface SerializerOptions {
399
- visitor?: SerializerVisitor;
400
- dots?: boolean;
401
- metaTokens?: boolean;
402
- indexes?: boolean | null;
403
- }
404
-
405
- // eslint-disable-next-line
406
- interface FormSerializerOptions extends SerializerOptions {}
407
-
408
- interface ParamEncoder {
409
- (value: any, defaultEncoder: (value: any) => any): any;
410
- }
411
-
412
- interface CustomParamsSerializer {
413
- (params: Record<string, any>, options?: ParamsSerializerOptions): string;
414
- }
415
-
416
- interface ParamsSerializerOptions extends SerializerOptions {
417
- encode?: ParamEncoder;
418
- serialize?: CustomParamsSerializer;
419
- }
420
-
421
- type MaxUploadRate = number;
422
-
423
- type MaxDownloadRate = number;
424
-
425
- type BrowserProgressEvent = any;
426
-
427
- interface AxiosProgressEvent {
428
- loaded: number;
429
- total?: number;
430
- progress?: number;
431
- bytes: number;
432
- rate?: number;
433
- estimated?: number;
434
- upload?: boolean;
435
- download?: boolean;
436
- event?: BrowserProgressEvent;
437
- lengthComputable: boolean;
438
- }
439
-
440
- type Milliseconds = number;
441
-
442
- type AxiosAdapterName = 'fetch' | 'xhr' | 'http' | (string & {});
443
-
444
- type AxiosAdapterConfig = AxiosAdapter | AxiosAdapterName;
445
-
446
- type AddressFamily = 4 | 6 | undefined;
447
-
448
- interface LookupAddressEntry {
449
- address: string;
450
- family?: AddressFamily;
451
- }
452
-
453
- type LookupAddress = string | LookupAddressEntry;
454
-
455
- interface AxiosRequestConfig<D = any> {
456
- url?: string;
457
- method?: Method | string;
458
- baseURL?: string;
459
- allowAbsoluteUrls?: boolean;
460
- transformRequest?: AxiosRequestTransformer | AxiosRequestTransformer[];
461
- transformResponse?: AxiosResponseTransformer | AxiosResponseTransformer[];
462
- headers?: ((RawAxiosRequestHeaders & MethodsHeaders) | AxiosHeaders) & CustomHeader;
463
- params?: any;
464
- paramsSerializer?: ParamsSerializerOptions | CustomParamsSerializer;
465
- data?: D;
466
- timeout?: Milliseconds;
467
- timeoutErrorMessage?: string;
468
- withCredentials?: boolean;
469
- adapter?: AxiosAdapterConfig | AxiosAdapterConfig[];
470
- auth?: AxiosBasicCredentials;
471
- responseType?: ResponseType;
472
- responseEncoding?: responseEncoding | string;
473
- xsrfCookieName?: string;
474
- xsrfHeaderName?: string;
475
- onUploadProgress?: (progressEvent: AxiosProgressEvent) => void;
476
- onDownloadProgress?: (progressEvent: AxiosProgressEvent) => void;
477
- maxContentLength?: number;
478
- validateStatus?: ((status: number) => boolean) | null;
479
- maxBodyLength?: number;
480
- maxRedirects?: number;
481
- maxRate?: number | [MaxUploadRate, MaxDownloadRate];
482
- beforeRedirect?: (
483
- options: Record<string, any>,
484
- responseDetails: { headers: Record<string, string>; statusCode: HttpStatusCode }
485
- ) => void;
486
- socketPath?: string | null;
487
- transport?: any;
488
- httpAgent?: any;
489
- httpsAgent?: any;
490
- proxy?: AxiosProxyConfig | false;
491
- cancelToken?: CancelToken;
492
- decompress?: boolean;
493
- transitional?: TransitionalOptions;
494
- signal?: GenericAbortSignal;
495
- insecureHTTPParser?: boolean;
496
- env?: {
497
- FormData?: new (...args: any[]) => object;
498
- };
499
- formSerializer?: FormSerializerOptions;
500
- family?: AddressFamily;
501
- lookup?:
502
- | ((
503
- hostname: string,
504
- options: object,
505
- cb: (
506
- err: Error | null,
507
- address: LookupAddress | LookupAddress[],
508
- family?: AddressFamily
509
- ) => void
510
- ) => void)
511
- | ((
512
- hostname: string,
513
- options: object
514
- ) => Promise<
515
- | [address: LookupAddressEntry | LookupAddressEntry[], family?: AddressFamily]
516
- | LookupAddress
517
- >);
518
- withXSRFToken?: boolean | ((config: InternalAxiosRequestConfig) => boolean | undefined);
519
- fetchOptions?: Record<string, any>;
520
- }
521
-
522
- interface InternalAxiosRequestConfig<D = any> extends AxiosRequestConfig<D> {
523
- headers: AxiosRequestHeaders;
524
- }
525
-
526
- interface HeadersDefaults {
527
- common: RawAxiosRequestHeaders;
528
- delete: RawAxiosRequestHeaders;
529
- get: RawAxiosRequestHeaders;
530
- head: RawAxiosRequestHeaders;
531
- post: RawAxiosRequestHeaders;
532
- put: RawAxiosRequestHeaders;
533
- patch: RawAxiosRequestHeaders;
534
- options?: RawAxiosRequestHeaders;
535
- purge?: RawAxiosRequestHeaders;
536
- link?: RawAxiosRequestHeaders;
537
- unlink?: RawAxiosRequestHeaders;
538
- }
539
-
540
- interface AxiosDefaults<D = any> extends Omit<AxiosRequestConfig<D>, 'headers'> {
541
- headers: HeadersDefaults;
542
- }
543
-
544
- interface CreateAxiosDefaults<D = any>
545
- extends Omit<AxiosRequestConfig<D>, 'headers'> {
546
- headers?: RawAxiosRequestHeaders | AxiosHeaders | Partial<HeadersDefaults>;
547
- }
548
-
549
- interface AxiosResponse<T = any, D = any> {
550
- data: T;
551
- status: number;
552
- statusText: string;
553
- headers: RawAxiosResponseHeaders | AxiosResponseHeaders;
554
- config: InternalAxiosRequestConfig<D>;
555
- request?: any;
556
- }
557
-
558
- type AxiosPromise<T = any> = Promise<AxiosResponse<T>>;
559
-
560
- interface Cancel {
561
- message: string | undefined;
562
- }
563
-
564
- interface CancelToken {
565
- promise: Promise<Cancel>;
566
- reason?: Cancel;
567
- throwIfRequested(): void;
568
- }
569
-
570
- interface AxiosInterceptorOptions {
571
- synchronous?: boolean;
572
- runWhen?: (config: InternalAxiosRequestConfig) => boolean;
573
- }
574
-
575
- type AxiosRequestInterceptorUse<T> = (
576
- onFulfilled?: ((value: T) => T | Promise<T>) | null,
577
- onRejected?: ((error: any) => any) | null,
578
- options?: AxiosInterceptorOptions
579
- ) => number;
580
-
581
- type AxiosResponseInterceptorUse<T> = (
582
- onFulfilled?: ((value: T) => T | Promise<T>) | null,
583
- onRejected?: ((error: any) => any) | null
584
- ) => number;
585
-
586
- interface AxiosInterceptorManager<V> {
587
- use: V extends AxiosResponse
588
- ? AxiosResponseInterceptorUse<V>
589
- : AxiosRequestInterceptorUse<V>;
590
- eject(id: number): void;
591
- clear(): void;
592
- }
593
-
594
- declare class Axios {
595
- constructor(config?: AxiosRequestConfig);
596
- defaults: AxiosDefaults;
597
- interceptors: {
598
- request: AxiosInterceptorManager<InternalAxiosRequestConfig>;
599
- response: AxiosInterceptorManager<AxiosResponse>;
600
- };
601
- getUri(config?: AxiosRequestConfig): string;
602
- request<T = any, R = AxiosResponse<T>, D = any>(
603
- config: AxiosRequestConfig<D>
604
- ): Promise<R>;
605
- get<T = any, R = AxiosResponse<T>, D = any>(
606
- url: string,
607
- config?: AxiosRequestConfig<D>
608
- ): Promise<R>;
609
- delete<T = any, R = AxiosResponse<T>, D = any>(
610
- url: string,
611
- config?: AxiosRequestConfig<D>
612
- ): Promise<R>;
613
- head<T = any, R = AxiosResponse<T>, D = any>(
614
- url: string,
615
- config?: AxiosRequestConfig<D>
616
- ): Promise<R>;
617
- options<T = any, R = AxiosResponse<T>, D = any>(
618
- url: string,
619
- config?: AxiosRequestConfig<D>
620
- ): Promise<R>;
621
- post<T = any, R = AxiosResponse<T>, D = any>(
622
- url: string,
623
- data?: D,
624
- config?: AxiosRequestConfig<D>
625
- ): Promise<R>;
626
- put<T = any, R = AxiosResponse<T>, D = any>(
627
- url: string,
628
- data?: D,
629
- config?: AxiosRequestConfig<D>
630
- ): Promise<R>;
631
- patch<T = any, R = AxiosResponse<T>, D = any>(
632
- url: string,
633
- data?: D,
634
- config?: AxiosRequestConfig<D>
635
- ): Promise<R>;
636
- postForm<T = any, R = AxiosResponse<T>, D = any>(
637
- url: string,
638
- data?: D,
639
- config?: AxiosRequestConfig<D>
640
- ): Promise<R>;
641
- putForm<T = any, R = AxiosResponse<T>, D = any>(
642
- url: string,
643
- data?: D,
644
- config?: AxiosRequestConfig<D>
645
- ): Promise<R>;
646
- patchForm<T = any, R = AxiosResponse<T>, D = any>(
647
- url: string,
648
- data?: D,
649
- config?: AxiosRequestConfig<D>
650
- ): Promise<R>;
651
- }
652
-
653
- interface AxiosInstance extends Axios {
654
- <T = any, R = AxiosResponse<T>, D = any>(config: AxiosRequestConfig<D>): Promise<R>;
655
- <T = any, R = AxiosResponse<T>, D = any>(
656
- url: string,
657
- config?: AxiosRequestConfig<D>
658
- ): Promise<R>;
659
-
660
- create(config?: CreateAxiosDefaults): AxiosInstance;
661
- defaults: Omit<AxiosDefaults, 'headers'> & {
662
- headers: HeadersDefaults & {
663
- [key: string]: AxiosHeaderValue;
664
- };
665
- };
666
- }
667
-
668
- interface GenericFormData {
669
- append(name: string, value: any, options?: any): any;
670
- }
34
+ type IEnv = 'DEV' | 'TEST' | 'PROD' | 'LOCAL' | 'UAT' | 'TEST_PPLCG' | 'PROD_PPLCG';
671
35
 
672
36
  declare global {
673
37
  var environment: IEnv;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inceptionbg/main",
3
- "version": "3.0.5",
3
+ "version": "3.0.8",
4
4
  "description": "Main app wrapper for Inception ecosystem",
5
5
  "type": "module",
6
6
  "files": [
@@ -12,6 +12,7 @@
12
12
  "build": "rollup -c",
13
13
  "tsc": "tsc --noEmit",
14
14
  "lint": "eslint --max-warnings=0 src",
15
+ "link-i": "npm link @inceptionbg/iui",
15
16
  "update": "npm i @inceptionbg/iui@latest",
16
17
  "release": "npm version patch && npm run build && npm publish"
17
18
  },
@@ -38,7 +39,7 @@
38
39
  "tslib": "^2.6.1"
39
40
  },
40
41
  "peerDependencies": {
41
- "@inceptionbg/iui": "^2.0.8",
42
+ "@inceptionbg/iui": "^2.0.13",
42
43
  "@tanstack/react-query": "^5.83.0",
43
44
  "i18next": "^25.3.2",
44
45
  "react": "^19.1.0",