@o3r/mobile 13.0.0-next.6 → 13.0.0-prerelease.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,13 +1,11 @@
1
1
  import * as i0 from '@angular/core';
2
- import { inject, DestroyRef, Injectable, InjectionToken, Inject, NgModule } from '@angular/core';
2
+ import { inject, DestroyRef, Injectable, InjectionToken, NgModule } from '@angular/core';
3
3
  import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
4
4
  import { Browser } from '@capacitor/browser';
5
5
  import { fromEvent } from 'rxjs';
6
6
  import { Device } from '@capacitor/device';
7
- import * as i1 from '@ngrx/store';
8
- import { StoreModule } from '@ngrx/store';
9
- import * as i2 from '@o3r/logger';
10
- import { LoggerModule } from '@o3r/logger';
7
+ import { Store, StoreModule } from '@ngrx/store';
8
+ import { LoggerService, LoggerModule } from '@o3r/logger';
11
9
  import { isLocalStorageConfig, dateReviver, isSerializer, rehydrateAction } from '@o3r/store-sync';
12
10
  import { Preferences } from '@capacitor/preferences';
13
11
 
@@ -75,10 +73,10 @@ class CapacitorTargetService {
75
73
  this.hijackDone = true;
76
74
  }
77
75
  }
78
- /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.13", ngImport: i0, type: CapacitorTargetService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
79
- /** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.13", ngImport: i0, type: CapacitorTargetService, providedIn: 'root' }); }
76
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.7", ngImport: i0, type: CapacitorTargetService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
77
+ /** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.7", ngImport: i0, type: CapacitorTargetService, providedIn: 'root' }); }
80
78
  }
81
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.13", ngImport: i0, type: CapacitorTargetService, decorators: [{
79
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.7", ngImport: i0, type: CapacitorTargetService, decorators: [{
82
80
  type: Injectable,
83
81
  args: [{
84
82
  providedIn: 'root'
@@ -91,9 +89,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.13", ngImpo
91
89
  const STORAGE_SYNC_OPTIONS = new InjectionToken('STORAGE_SYNC_OPTIONS');
92
90
  const noopDeserializer = (raw) => raw;
93
91
  class CapacitorRehydrater {
94
- constructor(store, options, logger) {
95
- this.store = store;
96
- this.logger = logger;
92
+ constructor() {
93
+ this.store = inject(Store);
94
+ this.logger = inject(LoggerService);
95
+ const options = inject(STORAGE_SYNC_OPTIONS);
97
96
  this.options = { keys: [], ...options };
98
97
  }
99
98
  /**
@@ -137,15 +136,12 @@ class CapacitorRehydrater {
137
136
  payload: result.reduce((acc, store) => ({ ...acc, ...store }), {})
138
137
  }));
139
138
  }
140
- /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.13", ngImport: i0, type: CapacitorRehydrater, deps: [{ token: i1.Store }, { token: STORAGE_SYNC_OPTIONS }, { token: i2.LoggerService }], target: i0.ɵɵFactoryTarget.Injectable }); }
141
- /** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.13", ngImport: i0, type: CapacitorRehydrater }); }
139
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.7", ngImport: i0, type: CapacitorRehydrater, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
140
+ /** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.7", ngImport: i0, type: CapacitorRehydrater }); }
142
141
  }
143
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.13", ngImport: i0, type: CapacitorRehydrater, decorators: [{
142
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.7", ngImport: i0, type: CapacitorRehydrater, decorators: [{
144
143
  type: Injectable
145
- }], ctorParameters: () => [{ type: i1.Store }, { type: undefined, decorators: [{
146
- type: Inject,
147
- args: [STORAGE_SYNC_OPTIONS]
148
- }] }, { type: i2.LoggerService }] });
144
+ }], ctorParameters: () => [] });
149
145
 
150
146
  class CapacitorRehydraterModule {
151
147
  static forRoot(options) {
@@ -156,15 +152,15 @@ class CapacitorRehydraterModule {
156
152
  ]
157
153
  };
158
154
  }
159
- /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.13", ngImport: i0, type: CapacitorRehydraterModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
160
- /** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.13", ngImport: i0, type: CapacitorRehydraterModule, imports: [StoreModule,
155
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.7", ngImport: i0, type: CapacitorRehydraterModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
156
+ /** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.7", ngImport: i0, type: CapacitorRehydraterModule, imports: [StoreModule,
161
157
  LoggerModule] }); }
162
- /** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.13", ngImport: i0, type: CapacitorRehydraterModule, providers: [
158
+ /** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.7", ngImport: i0, type: CapacitorRehydraterModule, providers: [
163
159
  CapacitorRehydrater
164
160
  ], imports: [StoreModule,
165
161
  LoggerModule] }); }
166
162
  }
167
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.13", ngImport: i0, type: CapacitorRehydraterModule, decorators: [{
163
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.7", ngImport: i0, type: CapacitorRehydraterModule, decorators: [{
168
164
  type: NgModule,
169
165
  args: [{
170
166
  imports: [
@@ -1 +1 @@
1
- {"version":3,"file":"o3r-mobile.mjs","sources":["../../src/capacitor/helpers.ts","../../src/capacitor/capacitor-target.service.ts","../../src/capacitor/storage/rehydrater.ts","../../src/capacitor/storage/rehydrater.module.ts","../../src/capacitor/storage/storage.ts","../../src/o3r-mobile.ts"],"sourcesContent":["import {\n Device,\n} from '@capacitor/device';\n\n/**\n * Type for the 3 capacitor platforms\n */\nexport type CapacitorPlatforms = 'ios' | 'android' | 'web';\n\n/**\n * Returns the capacitor platform\n */\nexport async function getCapacitorPlatform(): Promise<CapacitorPlatforms> {\n const info = await Device.getInfo();\n return info.platform;\n}\n\n/**\n * Returns true if in a capacitor context (mobile app) or false for web\n */\nexport async function isCapacitorContext(): Promise<boolean> {\n const platform = await getCapacitorPlatform();\n return (platform === 'ios') || (platform === 'android');\n}\n\n/**\n * Returns the baseUrl that can be used depending on the platform\n */\nexport async function getBaseUrl(): Promise<string> {\n const platform = await getCapacitorPlatform();\n switch (platform) {\n case ('ios'): {\n return 'capacitor://localhost';\n }\n case ('android'): {\n return 'http://localhost';\n }\n default: {\n return window.location.href;\n }\n }\n}\n","import {\n DestroyRef,\n inject,\n Injectable,\n} from '@angular/core';\nimport {\n takeUntilDestroyed,\n} from '@angular/core/rxjs-interop';\nimport {\n Browser,\n} from '@capacitor/browser';\nimport {\n fromEvent,\n} from 'rxjs';\nimport {\n isCapacitorContext,\n} from './helpers';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class CapacitorTargetService {\n private readonly destroyRef = inject(DestroyRef);\n private hijackDone = false;\n\n private async openInCapacitorBrowser(element: EventTarget | null, event: Event) {\n if (await isCapacitorContext() && element instanceof Element) {\n if (element.tagName === 'A') {\n const url = element.getAttribute('href');\n if (element.getAttribute('target') === '_blank' && url) {\n event.preventDefault();\n await Browser.open({ url, presentationStyle: 'popover' });\n }\n } else {\n await this.openInCapacitorBrowser(element.parentElement, event);\n }\n }\n }\n\n /**\n * Method called for 'hijacking' the click event on <a> tags with target _blank attribute.\n * Instead of the default action, it will open the URL using the CapacitorJS Browser plugin.\n */\n public hijackClick(): void {\n if (!this.hijackDone) {\n fromEvent(document, 'click').pipe(takeUntilDestroyed(this.destroyRef)).subscribe(async (event) => {\n const element: EventTarget | null = event.target;\n await this.openInCapacitorBrowser(element, event);\n });\n this.hijackDone = true;\n }\n }\n}\n","import {\n Inject,\n Injectable,\n InjectionToken,\n} from '@angular/core';\nimport {\n Store,\n} from '@ngrx/store';\nimport {\n LoggerService,\n} from '@o3r/logger';\nimport {\n dateReviver,\n isLocalStorageConfig,\n isSerializer,\n rehydrateAction,\n StorageSyncOptions,\n} from '@o3r/store-sync';\n\n/**\n * Injection token for the storage sync options\n */\nexport const STORAGE_SYNC_OPTIONS = new InjectionToken<Partial<StorageSyncOptions>>('STORAGE_SYNC_OPTIONS');\n\nconst noopDeserializer = (raw: string) => raw;\n\n@Injectable()\nexport class CapacitorRehydrater {\n private readonly options: StorageSyncOptions;\n constructor(\n private readonly store: Store<any>,\n @Inject(STORAGE_SYNC_OPTIONS) options: Partial<StorageSyncOptions>,\n private readonly logger: LoggerService\n ) {\n this.options = { keys: [], ...options };\n }\n\n /**\n * Dispatch an action to rehydrate the store with the data from the storage\n */\n public async rehydrate() {\n if (isLocalStorageConfig(this.options)) {\n this.logger.warn('A non-async storage is used, rehydration is not supported');\n return;\n }\n const storageCalls: Promise<Record<string, any> | undefined>[] = this.options.keys\n .map(async (key) => {\n const storeName = Object.keys(key)[0];\n const storeSynchronizer = (key as any)[storeName];\n let reviver = this.options.restoreDates ? dateReviver : undefined;\n let deserialize = noopDeserializer;\n\n if (isSerializer(storeSynchronizer)) {\n if (storeSynchronizer.reviver) {\n reviver = storeSynchronizer.reviver;\n }\n if (storeSynchronizer.deserialize) {\n deserialize = storeSynchronizer.deserialize;\n }\n }\n\n const stateSlice = await this.options.storage!.getItem(\n this.options.storageKeySerializer\n ? this.options.storageKeySerializer(storeName)\n : storeName\n );\n if (stateSlice) {\n const isObjectRegex = /{|\\[/;\n let raw = stateSlice;\n\n if (stateSlice === 'null' || stateSlice === 'true' || stateSlice === 'false' || isObjectRegex.test(stateSlice.charAt(0))) {\n raw = JSON.parse(stateSlice, reviver);\n }\n\n return {\n [storeName]: deserialize(raw)\n };\n }\n });\n\n const result = await Promise.all(storageCalls);\n\n this.store.dispatch(\n rehydrateAction({\n payload: result.reduce(\n (acc: Record<string, any>, store) => ({ ...acc, ...store }),\n {}\n )\n })\n );\n }\n}\n","import {\n ModuleWithProviders,\n NgModule,\n} from '@angular/core';\nimport {\n StoreModule,\n} from '@ngrx/store';\nimport {\n LoggerModule,\n} from '@o3r/logger';\nimport type {\n StorageSyncOptions,\n} from '@o3r/store-sync';\nimport {\n CapacitorRehydrater,\n STORAGE_SYNC_OPTIONS,\n} from './rehydrater';\n\n@NgModule({\n imports: [\n StoreModule,\n LoggerModule\n ],\n providers: [\n CapacitorRehydrater\n ]\n})\nexport class CapacitorRehydraterModule {\n public static forRoot(options: StorageSyncOptions): ModuleWithProviders<CapacitorRehydraterModule> {\n return {\n ngModule: CapacitorRehydraterModule,\n providers: [\n { provide: STORAGE_SYNC_OPTIONS, useValue: options }\n ]\n };\n }\n}\n","import {\n Preferences as CapacitorStorage,\n} from '@capacitor/preferences';\nimport type {\n AsyncStorage,\n} from '@o3r/store-sync';\n\n/**\n * Capacitor storage\n */\nexport class OtterCapacitorStorage implements AsyncStorage {\n /**\n * @inheritdoc\n */\n public removeItem(key: string): void {\n void CapacitorStorage.remove({ key });\n }\n\n /**\n * @inheritdoc\n */\n public setItem(key: string, value: string): void {\n void CapacitorStorage.set({ key, value });\n }\n\n /**\n * @inheritdoc\n */\n public async getItem(key: string): Promise<string | null> {\n const { value } = await CapacitorStorage.get({ key });\n return value;\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":["CapacitorStorage"],"mappings":"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"}
1
+ {"version":3,"file":"o3r-mobile.mjs","sources":["../../src/capacitor/helpers.ts","../../src/capacitor/capacitor-target.service.ts","../../src/capacitor/storage/rehydrater.ts","../../src/capacitor/storage/rehydrater.module.ts","../../src/capacitor/storage/storage.ts","../../src/o3r-mobile.ts"],"sourcesContent":["import {\n Device,\n} from '@capacitor/device';\n\n/**\n * Type for the 3 capacitor platforms\n */\nexport type CapacitorPlatforms = 'ios' | 'android' | 'web';\n\n/**\n * Returns the capacitor platform\n */\nexport async function getCapacitorPlatform(): Promise<CapacitorPlatforms> {\n const info = await Device.getInfo();\n return info.platform;\n}\n\n/**\n * Returns true if in a capacitor context (mobile app) or false for web\n */\nexport async function isCapacitorContext(): Promise<boolean> {\n const platform = await getCapacitorPlatform();\n return (platform === 'ios') || (platform === 'android');\n}\n\n/**\n * Returns the baseUrl that can be used depending on the platform\n */\nexport async function getBaseUrl(): Promise<string> {\n const platform = await getCapacitorPlatform();\n switch (platform) {\n case ('ios'): {\n return 'capacitor://localhost';\n }\n case ('android'): {\n return 'http://localhost';\n }\n default: {\n return window.location.href;\n }\n }\n}\n","import {\n DestroyRef,\n inject,\n Injectable,\n} from '@angular/core';\nimport {\n takeUntilDestroyed,\n} from '@angular/core/rxjs-interop';\nimport {\n Browser,\n} from '@capacitor/browser';\nimport {\n fromEvent,\n} from 'rxjs';\nimport {\n isCapacitorContext,\n} from './helpers';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class CapacitorTargetService {\n private readonly destroyRef = inject(DestroyRef);\n private hijackDone = false;\n\n private async openInCapacitorBrowser(element: EventTarget | null, event: Event) {\n if (await isCapacitorContext() && element instanceof Element) {\n if (element.tagName === 'A') {\n const url = element.getAttribute('href');\n if (element.getAttribute('target') === '_blank' && url) {\n event.preventDefault();\n await Browser.open({ url, presentationStyle: 'popover' });\n }\n } else {\n await this.openInCapacitorBrowser(element.parentElement, event);\n }\n }\n }\n\n /**\n * Method called for 'hijacking' the click event on <a> tags with target _blank attribute.\n * Instead of the default action, it will open the URL using the CapacitorJS Browser plugin.\n */\n public hijackClick(): void {\n if (!this.hijackDone) {\n fromEvent(document, 'click').pipe(takeUntilDestroyed(this.destroyRef)).subscribe(async (event) => {\n const element: EventTarget | null = event.target;\n await this.openInCapacitorBrowser(element, event);\n });\n this.hijackDone = true;\n }\n }\n}\n","import {\n inject,\n Injectable,\n InjectionToken,\n} from '@angular/core';\nimport {\n Store,\n} from '@ngrx/store';\nimport {\n LoggerService,\n} from '@o3r/logger';\nimport {\n dateReviver,\n isLocalStorageConfig,\n isSerializer,\n rehydrateAction,\n StorageSyncOptions,\n} from '@o3r/store-sync';\n\n/**\n * Injection token for the storage sync options\n */\nexport const STORAGE_SYNC_OPTIONS = new InjectionToken<Partial<StorageSyncOptions>>('STORAGE_SYNC_OPTIONS');\n\nconst noopDeserializer = (raw: string) => raw;\n\n@Injectable()\nexport class CapacitorRehydrater {\n private readonly store = inject<Store<any>>(Store);\n private readonly logger = inject(LoggerService);\n\n private readonly options: StorageSyncOptions;\n constructor() {\n const options = inject<Partial<StorageSyncOptions>>(STORAGE_SYNC_OPTIONS);\n\n this.options = { keys: [], ...options };\n }\n\n /**\n * Dispatch an action to rehydrate the store with the data from the storage\n */\n public async rehydrate() {\n if (isLocalStorageConfig(this.options)) {\n this.logger.warn('A non-async storage is used, rehydration is not supported');\n return;\n }\n const storageCalls: Promise<Record<string, any> | undefined>[] = this.options.keys\n .map(async (key) => {\n const storeName = Object.keys(key)[0];\n const storeSynchronizer = (key as any)[storeName];\n let reviver = this.options.restoreDates ? dateReviver : undefined;\n let deserialize = noopDeserializer;\n\n if (isSerializer(storeSynchronizer)) {\n if (storeSynchronizer.reviver) {\n reviver = storeSynchronizer.reviver;\n }\n if (storeSynchronizer.deserialize) {\n deserialize = storeSynchronizer.deserialize;\n }\n }\n\n const stateSlice = await this.options.storage!.getItem(\n this.options.storageKeySerializer\n ? this.options.storageKeySerializer(storeName)\n : storeName\n );\n if (stateSlice) {\n const isObjectRegex = /{|\\[/;\n let raw = stateSlice;\n\n if (stateSlice === 'null' || stateSlice === 'true' || stateSlice === 'false' || isObjectRegex.test(stateSlice.charAt(0))) {\n raw = JSON.parse(stateSlice, reviver);\n }\n\n return {\n [storeName]: deserialize(raw)\n };\n }\n });\n\n const result = await Promise.all(storageCalls);\n\n this.store.dispatch(\n rehydrateAction({\n payload: result.reduce(\n (acc: Record<string, any>, store) => ({ ...acc, ...store }),\n {}\n )\n })\n );\n }\n}\n","import {\n ModuleWithProviders,\n NgModule,\n} from '@angular/core';\nimport {\n StoreModule,\n} from '@ngrx/store';\nimport {\n LoggerModule,\n} from '@o3r/logger';\nimport type {\n StorageSyncOptions,\n} from '@o3r/store-sync';\nimport {\n CapacitorRehydrater,\n STORAGE_SYNC_OPTIONS,\n} from './rehydrater';\n\n@NgModule({\n imports: [\n StoreModule,\n LoggerModule\n ],\n providers: [\n CapacitorRehydrater\n ]\n})\nexport class CapacitorRehydraterModule {\n public static forRoot(options: StorageSyncOptions): ModuleWithProviders<CapacitorRehydraterModule> {\n return {\n ngModule: CapacitorRehydraterModule,\n providers: [\n { provide: STORAGE_SYNC_OPTIONS, useValue: options }\n ]\n };\n }\n}\n","import {\n Preferences as CapacitorStorage,\n} from '@capacitor/preferences';\nimport type {\n AsyncStorage,\n} from '@o3r/store-sync';\n\n/**\n * Capacitor storage\n */\nexport class OtterCapacitorStorage implements AsyncStorage {\n /**\n * @inheritdoc\n */\n public removeItem(key: string): void {\n void CapacitorStorage.remove({ key });\n }\n\n /**\n * @inheritdoc\n */\n public setItem(key: string, value: string): void {\n void CapacitorStorage.set({ key, value });\n }\n\n /**\n * @inheritdoc\n */\n public async getItem(key: string): Promise<string | null> {\n const { value } = await CapacitorStorage.get({ key });\n return value;\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":["CapacitorStorage"],"mappings":"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"}
package/index.d.ts CHANGED
@@ -1,6 +1,81 @@
1
+ import * as i0 from '@angular/core';
2
+ import { InjectionToken, ModuleWithProviders } from '@angular/core';
3
+ import { StorageSyncOptions, AsyncStorage } from '@o3r/store-sync';
4
+ import * as i1 from '@ngrx/store';
5
+ import * as i2 from '@o3r/logger';
6
+
7
+ declare class CapacitorTargetService {
8
+ private readonly destroyRef;
9
+ private hijackDone;
10
+ private openInCapacitorBrowser;
11
+ /**
12
+ * Method called for 'hijacking' the click event on <a> tags with target _blank attribute.
13
+ * Instead of the default action, it will open the URL using the CapacitorJS Browser plugin.
14
+ */
15
+ hijackClick(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<CapacitorTargetService, never>;
17
+ static ɵprov: i0.ɵɵInjectableDeclaration<CapacitorTargetService>;
18
+ }
19
+
1
20
  /**
2
- * Generated bundle index. Do not edit.
21
+ * Type for the 3 capacitor platforms
3
22
  */
4
- /// <amd-module name="@o3r/mobile" />
5
- export * from './public_api';
6
- //# sourceMappingURL=o3r-mobile.d.ts.map
23
+ type CapacitorPlatforms = 'ios' | 'android' | 'web';
24
+ /**
25
+ * Returns the capacitor platform
26
+ */
27
+ declare function getCapacitorPlatform(): Promise<CapacitorPlatforms>;
28
+ /**
29
+ * Returns true if in a capacitor context (mobile app) or false for web
30
+ */
31
+ declare function isCapacitorContext(): Promise<boolean>;
32
+ /**
33
+ * Returns the baseUrl that can be used depending on the platform
34
+ */
35
+ declare function getBaseUrl(): Promise<string>;
36
+
37
+ /**
38
+ * Injection token for the storage sync options
39
+ */
40
+ declare const STORAGE_SYNC_OPTIONS: InjectionToken<Partial<StorageSyncOptions>>;
41
+ declare class CapacitorRehydrater {
42
+ private readonly store;
43
+ private readonly logger;
44
+ private readonly options;
45
+ constructor();
46
+ /**
47
+ * Dispatch an action to rehydrate the store with the data from the storage
48
+ */
49
+ rehydrate(): Promise<void>;
50
+ static ɵfac: i0.ɵɵFactoryDeclaration<CapacitorRehydrater, never>;
51
+ static ɵprov: i0.ɵɵInjectableDeclaration<CapacitorRehydrater>;
52
+ }
53
+
54
+ declare class CapacitorRehydraterModule {
55
+ static forRoot(options: StorageSyncOptions): ModuleWithProviders<CapacitorRehydraterModule>;
56
+ static ɵfac: i0.ɵɵFactoryDeclaration<CapacitorRehydraterModule, never>;
57
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CapacitorRehydraterModule, never, [typeof i1.StoreModule, typeof i2.LoggerModule], never>;
58
+ static ɵinj: i0.ɵɵInjectorDeclaration<CapacitorRehydraterModule>;
59
+ }
60
+
61
+ /**
62
+ * Capacitor storage
63
+ */
64
+ declare class OtterCapacitorStorage implements AsyncStorage {
65
+ /**
66
+ * @inheritdoc
67
+ */
68
+ removeItem(key: string): void;
69
+ /**
70
+ * @inheritdoc
71
+ */
72
+ setItem(key: string, value: string): void;
73
+ /**
74
+ * @inheritdoc
75
+ */
76
+ getItem(key: string): Promise<string | null>;
77
+ }
78
+
79
+ export { CapacitorRehydrater, CapacitorRehydraterModule, CapacitorTargetService, OtterCapacitorStorage, STORAGE_SYNC_OPTIONS, getBaseUrl, getCapacitorPlatform, isCapacitorContext };
80
+ export type { CapacitorPlatforms };
81
+ //# sourceMappingURL=index.d.ts.map
package/index.d.ts.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sources":["../src/capacitor/capacitor-target.service.ts","../src/capacitor/helpers.ts","../src/capacitor/storage/rehydrater.ts","../src/capacitor/storage/rehydrater.module.ts","../src/capacitor/storage/storage.ts"],"sourcesContent":[null,null,null,null,null],"names":[],"mappings":";;;;;;AAkBA;AAIE;;;AAiBA;;;AAGG;AACI;;;AASR;;AChDD;;AAEG;AACG;AAEN;;AAEG;AACH;AAKA;;AAEG;AACH;AAKA;;AAEG;AACH;;ACTA;;AAEG;AACH;AAIA;AAEE;AACA;AAEA;;AAOA;;AAEG;;;;AAoDJ;;AC1ED;;;;;AAkBC;;AC7BD;;AAEG;AACH;AACE;;AAEG;AACI;AAIP;;AAEG;;AAKH;;AAEG;;AAKJ;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@o3r/mobile",
3
- "version": "13.0.0-next.6",
3
+ "version": "13.0.0-prerelease.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -26,27 +26,27 @@
26
26
  "otter-module"
27
27
  ],
28
28
  "dependencies": {
29
- "@o3r/schematics": "^13.0.0-next.6",
30
- "commander": "^13.0.0",
29
+ "@o3r/schematics": "^13.0.0-prerelease.2",
30
+ "commander": "^14.0.0",
31
31
  "form-data": "^4.0.0",
32
32
  "node-fetch": "^3.0.0",
33
33
  "tslib": "^2.6.2",
34
34
  "winston": "^3.8.2"
35
35
  },
36
36
  "peerDependencies": {
37
- "@angular-devkit/schematics": "^19.0.0",
38
- "@angular/common": "^19.0.0",
39
- "@angular/core": "^19.0.0",
37
+ "@angular-devkit/schematics": "^20.0.0",
38
+ "@angular/common": "^20.0.0",
39
+ "@angular/core": "^20.0.0",
40
40
  "@capacitor/browser": "^7.0.0",
41
41
  "@capacitor/core": "^7.0.0",
42
42
  "@capacitor/device": "^7.0.0",
43
43
  "@capacitor/preferences": "^7.0.0",
44
- "@ngrx/store": "^19.0.0",
45
- "@o3r/core": "^13.0.0-next.6",
46
- "@o3r/logger": "^13.0.0-next.6",
47
- "@o3r/schematics": "^13.0.0-next.6",
48
- "@o3r/store-sync": "^13.0.0-next.6",
49
- "@schematics/angular": "^19.0.0",
44
+ "@ngrx/store": "^20.0.0",
45
+ "@o3r/core": "^13.0.0-prerelease.2",
46
+ "@o3r/logger": "^13.0.0-prerelease.2",
47
+ "@o3r/schematics": "^13.0.0-prerelease.2",
48
+ "@o3r/store-sync": "^13.0.0-prerelease.2",
49
+ "@schematics/angular": "^20.0.0",
50
50
  "fast-deep-equal": "^3.1.3",
51
51
  "rxjs": "^7.8.1",
52
52
  "type-fest": "^4.30.1"
@@ -66,7 +66,7 @@
66
66
  }
67
67
  },
68
68
  "engines": {
69
- "node": "^20.11.1 || >=22.0.0"
69
+ "node": "^20.19.0 || ^22.17.0 || ^24.0.0"
70
70
  },
71
71
  "schematics": "./collection.json",
72
72
  "module": "fesm2022/o3r-mobile.mjs",
@@ -1 +1 @@
1
- {"fileNames":["../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es5.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2015.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2016.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2017.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2018.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2019.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2020.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2021.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2022.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.dom.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.decorators.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../../.yarn/cache/tslib-npm-2.8.1-66590b21b8-3e2e043d5c.zip/node_modules/tslib/tslib.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/compatibility/disposable.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/compatibility/indexable.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/compatibility/iterators.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/compatibility/index.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/globals.typedarray.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/buffer.buffer.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/header.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/readable.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/file.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/fetch.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/formdata.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/connector.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/client.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/errors.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/dispatcher.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/global-dispatcher.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/global-origin.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/pool-stats.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/pool.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/handlers.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/balanced-pool.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/agent.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/mock-interceptor.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/mock-agent.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/mock-client.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/mock-pool.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/mock-errors.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/proxy-agent.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/retry-handler.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/retry-agent.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/api.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/interceptors.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/util.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/cookies.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/patch.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/websocket.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/eventsource.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/filereader.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/diagnostics-channel.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/content-type.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/cache.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/index.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/globals.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/assert.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/assert/strict.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/async_hooks.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/buffer.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/child_process.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/cluster.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/console.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/constants.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/crypto.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/dgram.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/diagnostics_channel.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/dns.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/dns/promises.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/domain.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/dom-events.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/events.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/fs.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/fs/promises.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/http.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/http2.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/https.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/inspector.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/module.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/net.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/os.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/path.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/perf_hooks.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/process.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/punycode.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/querystring.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/readline.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/readline/promises.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/repl.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/sea.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/sqlite.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/stream.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/stream/promises.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/stream/consumers.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/stream/web.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/string_decoder.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/test.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/timers.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/timers/promises.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/tls.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/trace_events.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/tty.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/url.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/util.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/v8.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/vm.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/wasi.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/worker_threads.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/zlib.d.ts","../../../../../.yarn/cache/@types-node-npm-22.15.21-a4f238de1a-cb4189587c.zip/node_modules/@types/node/index.d.ts","../../../../../.yarn/cache/form-data-npm-4.0.2-d2e89057d5-82c65b426a.zip/node_modules/form-data/index.d.ts","../../../../../.yarn/cache/formdata-polyfill-npm-4.0.10-e03013c013-9b5001d2ed.zip/node_modules/formdata-polyfill/esm.min.d.ts","../../../../../.yarn/cache/fetch-blob-npm-3.2.0-28e01becfc-5264ecceb5.zip/node_modules/fetch-blob/file.d.ts","../../../../../.yarn/cache/fetch-blob-npm-3.2.0-28e01becfc-5264ecceb5.zip/node_modules/fetch-blob/index.d.ts","../../../../../.yarn/cache/fetch-blob-npm-3.2.0-28e01becfc-5264ecceb5.zip/node_modules/fetch-blob/from.d.ts","../../../../../.yarn/cache/node-fetch-npm-3.3.2-5267e015f2-24207ca8c8.zip/node_modules/node-fetch/@types/index.d.ts","../../../../../.yarn/cache/@types-triple-beam-npm-1.3.5-0f1b823630-519b6a1b30.zip/node_modules/@types/triple-beam/index.d.ts","../../../../../.yarn/cache/logform-npm-2.7.0-7a34a0bd17-4b861bfd67.zip/node_modules/logform/index.d.ts","../../../../../.yarn/cache/winston-transport-npm-4.9.0-ae8fd25ccc-5946918720.zip/node_modules/winston-transport/index.d.ts","../../../../../.yarn/cache/winston-npm-3.17.0-9ec81417be-220309a0ea.zip/node_modules/winston/lib/winston/config/index.d.ts","../../../../../.yarn/cache/winston-npm-3.17.0-9ec81417be-220309a0ea.zip/node_modules/winston/lib/winston/transports/index.d.ts","../../../../../.yarn/cache/winston-npm-3.17.0-9ec81417be-220309a0ea.zip/node_modules/winston/index.d.ts","../../pcloudy/pcloudy.interfaces.ts","../../pcloudy/pcloudy.api.ts","../../pcloudy/pcloudy.service.ts","../../pcloudy/index.ts","../../../../../.yarn/cache/commander-npm-13.1.0-bdbbfaaf9d-d3b4b79e6b.zip/node_modules/commander/typings/index.d.ts","../../pcloudy/pcloudy.connection.ts"],"fileIdsList":[[66,105,108],[66,107,108],[108],[66,108,113,143],[66,108,109,114,120,121,128,140,151],[66,108,109,110,120,128],[66,108],[61,62,63,66,108],[66,108,111,152],[66,108,112,113,121,129],[66,108,113,140,148],[66,108,114,116,120,128],[66,107,108,115],[66,108,116,117],[66,108,120],[66,108,118,120],[66,107,108,120],[66,108,120,121,122,140,151],[66,108,120,121,122,135,140,143],[66,103,108,156],[66,103,108,116,120,123,128,140,151],[66,108,120,121,123,124,128,140,148,151],[66,108,123,125,140,148,151],[64,65,66,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157],[66,108,120,126],[66,108,127,151],[66,108,116,120,128,140],[66,108,129],[66,108,130],[66,107,108,131],[66,105,106,107,108,109,110,111,112,113,114,115,116,117,118,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157],[66,108,133],[66,108,134],[66,108,120,135,136],[66,108,135,137,152,154],[66,108,120,140,141,143],[66,108,142,143],[66,108,140,141],[66,108,143],[66,108,144],[66,105,108,140],[66,108,120,146,147],[66,108,146,147],[66,108,113,128,140,148],[66,108,149],[66,108,128,150],[66,108,123,134,151],[66,108,113,152],[66,108,140,153],[66,108,127,154],[66,108,155],[66,108,113,120,122,131,140,151,154,156],[66,108,140,157],[66,108,161,162],[66,108,123,140,158],[66,108,165],[66,108,123,158,160,163],[66,75,79,108,151],[66,75,108,140,151],[66,70,108],[66,72,75,108,148,151],[66,108,128,148],[66,108,158],[66,70,108,158],[66,72,75,108,128,151],[66,67,68,71,74,108,120,140,151],[66,75,82,108],[66,67,73,108],[66,75,96,97,108],[66,71,75,108,143,151,158],[66,96,108,158],[66,69,70,108,158],[66,75,108],[66,69,70,71,72,73,74,75,76,77,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,97,98,99,100,101,102,108],[66,75,90,108],[66,75,82,83,108],[66,73,75,83,84,108],[66,74,108],[66,67,70,75,108],[66,75,79,83,84,108],[66,79,108],[66,73,75,78,108,151],[66,67,72,75,82,108],[66,108,140],[66,70,75,96,108,156,158],[66,108,140,158,166,167,168,169],[66,108,123,158,167],[66,108,140,158,166],[60,66,108,171,172,173],[60,66,108,121,159,164,170,171],[60,66,108,170,172,173,175],[60,66,108],[60,66,108,130,170,171,172]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","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":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","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":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","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":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","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":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","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":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"030e350db2525514580ed054f712ffb22d273e6bc7eddc1bb7eda1e0ba5d395e","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"d802f0e6b5188646d307f070d83512e8eb94651858de8a82d1e47f60fb6da4e2","affectsGlobalScope":true,"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":"88d9a77d2abc23a7d26625dd6dae5b57199a8693b85c9819355651c9d9bab90f","affectsGlobalScope":true,"impliedFormat":1},{"version":"a38efe83ff77c34e0f418a806a01ca3910c02ee7d64212a59d59bca6c2c38fa1","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"3fe4022ba1e738034e38ad9afacbf0f1f16b458ed516326f5bf9e4a31e9be1dc","impliedFormat":1},{"version":"a957197054b074bcdf5555d26286e8461680c7c878040d0f4e2d5509a7524944","affectsGlobalScope":true,"impliedFormat":1},{"version":"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","impliedFormat":1},{"version":"e9b97d69510658d2f4199b7d384326b7c4053b9e6645f5c19e1c2a54ede427fc","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"f478f6f5902dc144c0d6d7bdc919c5177cac4d17a8ca8653c2daf6d7dc94317f","affectsGlobalScope":true,"impliedFormat":1},{"version":"19d5f8d3930e9f99aa2c36258bf95abbe5adf7e889e6181872d1cdba7c9a7dd5","impliedFormat":1},{"version":"b200675fd112ffef97c166d0341fb33f6e29e9f27660adde7868e95c5bc98beb","impliedFormat":1},{"version":"a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","impliedFormat":1},{"version":"e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"88bc59b32d0d5b4e5d9632ac38edea23454057e643684c3c0b94511296f2998c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a0a1dda070290b92da5a50113b73ecc4dd6bcbffad66e3c86503d483eafbadcf","impliedFormat":1},{"version":"59dcad36c4549175a25998f6a8b33c1df8e18df9c12ebad1dfb25af13fd4b1ce","impliedFormat":1},{"version":"206a70e72af3e24688397b81304358526ce70d020e4c2606c4acfd1fa1e81fb2","impliedFormat":1},{"version":"3f3edb8e44e3b9df3b7ca3219ab539710b6a7f4fe16bd884d441af207e03cd57","impliedFormat":1},{"version":"528b62e4272e3ddfb50e8eed9e359dedea0a4d171c3eb8f337f4892aac37b24b","impliedFormat":1},{"version":"d71535813e39c23baa113bc4a29a0e187b87d1105ccc8c5a6ebaca38d9a9bff2","impliedFormat":1},{"version":"8cf7e92bdb2862c2d28ba4535c43dc599cfbc0025db5ed9973d9b708dcbe3d98","affectsGlobalScope":true,"impliedFormat":1},{"version":"f72bc8fe16da67e4e3268599295797b202b95e54bd215a03f97e925dd1502a36","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"1dc73f8854e5c4506131c4d95b3a6c24d0c80336d3758e95110f4c7b5cb16397","affectsGlobalScope":true,"impliedFormat":1},{"version":"636302a00dfd1f9fe6e8e91e4e9350c6518dcc8d51a474e4fc3a9ba07135100b","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"e1ce1d622f1e561f6cdf246372ead3bbc07ce0342024d0e9c7caf3136f712698","impliedFormat":1},{"version":"c878f74b6d10b267f6075c51ac1d8becd15b4aa6a58f79c0cfe3b24908357f60","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"27e4532aaaa1665d0dd19023321e4dc12a35a741d6b8e1ca3517fcc2544e0efe","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"8c2ad42d5d1a2e8e6112625767f8794d9537f1247907378543106f7ba6c7df90","affectsGlobalScope":true,"impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"98ffdf93dfdd206516971d28e3e473f417a5cfd41172e46b4ce45008f640588e","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"7d6ff413e198d25639f9f01f16673e7df4e4bd2875a42455afd4ecc02ef156da","affectsGlobalScope":true,"impliedFormat":1},{"version":"12e8ce658dd17662d82fb0509d2057afc5e6ee30369a2e9e0957eff725b1f11d","affectsGlobalScope":true,"impliedFormat":1},{"version":"74736930d108365d7bbe740c7154706ccfb1b2a3855a897963ab3e5c07ecbf19","impliedFormat":1},{"version":"858f999b3e4a45a4e74766d43030941466460bf8768361d254234d5870480a53","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"63b05afa6121657f25e99e1519596b0826cda026f09372c9100dfe21417f4bd6","affectsGlobalScope":true,"impliedFormat":1},{"version":"3797dd6f4ea3dc15f356f8cdd3128bfa18122213b38a80d6c1f05d8e13cbdad8","impliedFormat":1},{"version":"ad90122e1cb599b3bc06a11710eb5489101be678f2920f2322b0ac3e195af78d","impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"d782e571cb7d6ec0f0645957ed843d00e3f8577e08cc2940f400c931bc47a8df","impliedFormat":99},{"version":"9167246623f181441e6116605221268d94e33a1ebd88075e2dc80133c928ae7e","impliedFormat":99},{"version":"dc1a838d8a514b6de9fbce3bd5e6feb9ccfe56311e9338bb908eb4d0d966ecaf","impliedFormat":99},{"version":"186f09ed4b1bc1d5a5af5b1d9f42e2d798f776418e82599b3de16423a349d184","impliedFormat":99},{"version":"d692ae73951775d2448df535ce8bc8abf162dc343911fedda2c37b8de3b20d8e","impliedFormat":99},{"version":"908217c4f2244ec402b73533ebfcc46d6dcd34fc1c807ff403d7f98702abb3bc","impliedFormat":1},{"version":"1bc5991c91bf4be8b59db501ed284a34945d95abe9b7451d02ea001f7c5621a9","impliedFormat":1},{"version":"d8b8a5a6bf623239d5374ad4a7ff6f3b195ab5ee61293f59f1957e90d2a22809","impliedFormat":1},{"version":"35d283eca7dc0a0c7b099f5fbbf0678b87f3d837572cd5e539ba297ad9837e68","impliedFormat":1},{"version":"1c8384a195a2d931cf6e2b8f656acf558ca649a3f74922d86b95889f49a7f7c5","impliedFormat":1},{"version":"cd11655f57a3558dfcee05a6e78c026f9dfd30535eaf124439c5e88a5617359b","impliedFormat":1},{"version":"bf77933dd653b42bc1dd0e78403f54f33af7d7d83ef9d2cbb7623d003d12b2ab","signature":"5b9db355eb6bd3f6927af2c0f571590f5a2a6b0dcf7b905e2b07a1e33fad7dfc"},{"version":"fd13ad53caf3203bd820ceaf889abd8cc4d58d0324d500c25b3b7d3f9a588b1c","signature":"f61983e627d565c52076e41705ec1d6e4245a79e60758b1966a7b7ee972815a2"},{"version":"9578f0b39bd5e9e6d202930805d42014244983bf2a56bcaa05c15173f6311235","signature":"d8d7ad6f9ab63e182774029170448ad3d5d8a7ebfc527ed5f015b7e952c3b823"},"795e210df3db933e039e8b371ae1cf7336a6111ebd4a8ef9a213b363e3ed2b08",{"version":"f70c407d79749859db326d714554c92b6f46bbf00bfdb40a1e2e6f705baa52a0","impliedFormat":1},{"version":"fc30e0962d9ebfe10d1e402efded14456509cefb9a912718d5baf7be80b2dc3f","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"}],"root":[[171,174],176],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"declarationMap":true,"emitDecoratorMetadata":true,"experimentalDecorators":true,"importHelpers":true,"jsx":2,"module":1,"noEmitHelpers":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","removeComments":false,"sourceMap":true,"strict":true,"target":2,"useDefineForClassFields":false},"referencedMap":[[105,1],[106,1],[107,2],[66,3],[108,4],[109,5],[110,6],[61,7],[64,8],[62,7],[63,7],[111,9],[112,10],[113,11],[114,12],[115,13],[116,14],[117,14],[119,15],[118,16],[120,17],[121,18],[122,19],[104,20],[65,7],[123,21],[124,22],[125,23],[158,24],[126,25],[127,26],[128,27],[129,28],[130,29],[131,30],[132,31],[133,32],[134,33],[135,34],[136,34],[137,35],[138,7],[139,7],[140,36],[142,37],[141,38],[143,39],[144,40],[145,41],[146,42],[147,43],[148,44],[149,45],[150,46],[151,47],[152,48],[153,49],[154,50],[155,51],[156,52],[157,53],[165,7],[175,7],[161,7],[163,54],[162,7],[159,55],[160,7],[166,56],[164,57],[60,7],[58,7],[59,7],[10,7],[11,7],[13,7],[12,7],[2,7],[14,7],[15,7],[16,7],[17,7],[18,7],[19,7],[20,7],[21,7],[3,7],[22,7],[23,7],[4,7],[24,7],[28,7],[25,7],[26,7],[27,7],[29,7],[30,7],[31,7],[5,7],[32,7],[33,7],[34,7],[35,7],[6,7],[39,7],[36,7],[37,7],[38,7],[40,7],[7,7],[41,7],[46,7],[47,7],[42,7],[43,7],[44,7],[45,7],[8,7],[51,7],[48,7],[49,7],[50,7],[52,7],[9,7],[53,7],[54,7],[55,7],[57,7],[56,7],[1,7],[82,58],[92,59],[81,58],[102,60],[73,61],[72,62],[101,63],[95,64],[100,65],[75,66],[89,67],[74,68],[98,69],[70,70],[69,63],[99,71],[71,72],[76,73],[77,7],[80,73],[67,7],[103,74],[93,75],[84,76],[85,77],[87,78],[83,79],[86,80],[96,63],[78,81],[79,82],[88,83],[68,84],[91,75],[90,73],[94,7],[97,85],[170,86],[168,63],[169,87],[167,88],[174,89],[172,90],[176,91],[171,92],[173,93]],"version":"5.8.3"}
1
+ {"fileNames":["../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es5.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2015.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2016.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2017.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2018.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2019.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2020.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2021.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2022.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.dom.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.decorators.d.ts","../../../../../.yarn/cache/typescript-patch-f64146f279-b9b1e73dab.zip/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../../.yarn/cache/tslib-npm-2.8.1-66590b21b8-3e2e043d5c.zip/node_modules/tslib/tslib.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/compatibility/disposable.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/compatibility/indexable.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/compatibility/iterators.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/compatibility/index.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/globals.typedarray.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/buffer.buffer.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/header.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/readable.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/file.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/fetch.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/formdata.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/connector.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/client.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/errors.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/dispatcher.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/global-dispatcher.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/global-origin.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/pool-stats.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/pool.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/handlers.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/balanced-pool.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/agent.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/mock-interceptor.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/mock-agent.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/mock-client.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/mock-pool.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/mock-errors.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/proxy-agent.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/retry-handler.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/retry-agent.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/api.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/interceptors.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/util.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/cookies.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/patch.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/websocket.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/eventsource.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/filereader.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/diagnostics-channel.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/content-type.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/cache.d.ts","../../../../../.yarn/cache/undici-types-npm-6.21.0-eb2b0ed56a-ec8f41aa43.zip/node_modules/undici-types/index.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/globals.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/assert.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/assert/strict.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/async_hooks.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/buffer.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/child_process.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/cluster.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/console.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/constants.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/crypto.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/dgram.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/diagnostics_channel.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/dns.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/dns/promises.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/domain.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/dom-events.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/events.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/fs.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/fs/promises.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/http.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/http2.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/https.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/inspector.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/module.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/net.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/os.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/path.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/perf_hooks.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/process.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/punycode.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/querystring.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/readline.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/readline/promises.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/repl.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/sea.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/sqlite.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/stream.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/stream/promises.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/stream/consumers.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/stream/web.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/string_decoder.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/test.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/timers.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/timers/promises.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/tls.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/trace_events.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/tty.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/url.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/util.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/v8.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/vm.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/wasi.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/worker_threads.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/zlib.d.ts","../../../../../.yarn/cache/@types-node-npm-22.18.0-b8526ce106-c4e4cdac52.zip/node_modules/@types/node/index.d.ts","../../../../../.yarn/cache/form-data-npm-4.0.4-10eb4ef9c3-a4b62e2193.zip/node_modules/form-data/index.d.ts","../../../../../.yarn/cache/formdata-polyfill-npm-4.0.10-e03013c013-9b5001d2ed.zip/node_modules/formdata-polyfill/esm.min.d.ts","../../../../../.yarn/cache/fetch-blob-npm-3.2.0-28e01becfc-5264ecceb5.zip/node_modules/fetch-blob/file.d.ts","../../../../../.yarn/cache/fetch-blob-npm-3.2.0-28e01becfc-5264ecceb5.zip/node_modules/fetch-blob/index.d.ts","../../../../../.yarn/cache/fetch-blob-npm-3.2.0-28e01becfc-5264ecceb5.zip/node_modules/fetch-blob/from.d.ts","../../../../../.yarn/cache/node-fetch-npm-3.3.2-5267e015f2-24207ca8c8.zip/node_modules/node-fetch/@types/index.d.ts","../../../../../.yarn/cache/@types-triple-beam-npm-1.3.5-0f1b823630-519b6a1b30.zip/node_modules/@types/triple-beam/index.d.ts","../../../../../.yarn/cache/logform-npm-2.7.0-7a34a0bd17-4b861bfd67.zip/node_modules/logform/index.d.ts","../../../../../.yarn/cache/winston-transport-npm-4.9.0-ae8fd25ccc-5946918720.zip/node_modules/winston-transport/index.d.ts","../../../../../.yarn/cache/winston-npm-3.17.0-9ec81417be-220309a0ea.zip/node_modules/winston/lib/winston/config/index.d.ts","../../../../../.yarn/cache/winston-npm-3.17.0-9ec81417be-220309a0ea.zip/node_modules/winston/lib/winston/transports/index.d.ts","../../../../../.yarn/cache/winston-npm-3.17.0-9ec81417be-220309a0ea.zip/node_modules/winston/index.d.ts","../../pcloudy/pcloudy.interfaces.ts","../../pcloudy/pcloudy.api.ts","../../pcloudy/pcloudy.service.ts","../../pcloudy/index.ts","../../../../../.yarn/cache/commander-npm-14.0.0-1e0a7932ab-c05418bfc3.zip/node_modules/commander/typings/index.d.ts","../../pcloudy/pcloudy.connection.ts"],"fileIdsList":[[66,105,108],[66,107,108],[108],[66,108,113,143],[66,108,109,114,120,128,140,151],[66,108,109,110,120,128],[66,108],[61,62,63,66,108],[66,108,111,152],[66,108,112,113,121,129],[66,108,113,140,148],[66,108,114,116,120,128],[66,107,108,115],[66,108,116,117],[66,108,118,120],[66,107,108,120],[66,108,120,121,122,140,151],[66,108,120,121,122,135,140,143],[66,103,108],[66,103,108,116,120,123,128,140,151],[66,108,120,121,123,124,128,140,148,151],[66,108,123,125,140,148,151],[64,65,66,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157],[66,108,120,126],[66,108,127,151],[66,108,116,120,128,140],[66,108,129],[66,108,130],[66,107,108,131],[66,105,106,107,108,109,110,111,112,113,114,115,116,117,118,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157],[66,108,133],[66,108,134],[66,108,120,135,136],[66,108,135,137,152,154],[66,108,120,140,141,143],[66,108,142,143],[66,108,140,141],[66,108,143],[66,108,144],[66,105,108,140,145],[66,108,120,146,147],[66,108,146,147],[66,108,113,128,140,148],[66,108,149],[66,108,128,150],[66,108,123,134,151],[66,108,113,152],[66,108,140,153],[66,108,127,154],[66,108,155],[66,108,120,122,131,140,143,151,153,154,156],[66,108,140,157],[66,108,161,162],[66,108,123,140,158],[66,108,165],[66,108,123,158,160,163],[66,75,79,108,151],[66,75,108,140,151],[66,70,108],[66,72,75,108,148,151],[66,108,128,148],[66,108,158],[66,70,108,158],[66,72,75,108,128,151],[66,67,68,71,74,108,120,140,151],[66,75,82,108],[66,67,73,108],[66,75,96,97,108],[66,71,75,108,143,151,158],[66,96,108,158],[66,69,70,108,158],[66,75,108],[66,69,70,71,72,73,74,75,76,77,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,97,98,99,100,101,102,108],[66,75,90,108],[66,75,82,83,108],[66,73,75,83,84,108],[66,74,108],[66,67,70,75,108],[66,75,79,83,84,108],[66,79,108],[66,73,75,78,108,151],[66,67,72,75,82,108],[66,108,140],[66,70,75,96,108,156,158],[66,108,140,158,166,167,168,169],[66,108,123,158,167],[66,108,140,158,166],[60,66,108,171,172,173],[60,66,108,121,159,164,170,171],[60,66,108,170,172,173,175],[60,66,108],[60,66,108,130,170,171,172]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","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":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","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":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","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":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","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":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","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":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"d802f0e6b5188646d307f070d83512e8eb94651858de8a82d1e47f60fb6da4e2","affectsGlobalScope":true,"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":"a12d953aa755b14ac1d28ecdc1e184f3285b01d6d1e58abc11bf1826bc9d80e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"a38efe83ff77c34e0f418a806a01ca3910c02ee7d64212a59d59bca6c2c38fa1","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"7b988bc259155186e6b09dd8b32856d9e45c8d261e63c19abaf590bb6550f922","affectsGlobalScope":true,"impliedFormat":1},{"version":"fe7b52f993f9336b595190f3c1fcc259bb2cf6dcb4ac8fdb1e0454cc5df7301e","impliedFormat":1},{"version":"e9b97d69510658d2f4199b7d384326b7c4053b9e6645f5c19e1c2a54ede427fc","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"81711af669f63d43ccb4c08e15beda796656dd46673d0def001c7055db53852d","affectsGlobalScope":true,"impliedFormat":1},{"version":"19d5f8d3930e9f99aa2c36258bf95abbe5adf7e889e6181872d1cdba7c9a7dd5","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"bdba81959361810be44bcfdd283f4d601e406ab5ad1d2bdff0ed480cf983c9d7","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"b326f4813b90d230ec3950f66bd5b5ce3971aac5fac67cfafc54aa07b39fd07f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c8420c7c2b778b334587a4c0311833b5212ff2f684ea37b2f0e2b117f1d7210d","impliedFormat":1},{"version":"b6b08215821c9833b0e8e30ea1ed178009f2f3ff5d7fae3865ee42f97cc87784","impliedFormat":1},{"version":"b795c3e47a26be91ac33d8115acdc37bfa41ecc701fb237c64a23da4d2b7e1d8","impliedFormat":1},{"version":"73cf6cc19f16c0191e4e9d497ab0c11c7b38f1ca3f01ad0f09a3a5a971aac4b8","impliedFormat":1},{"version":"528b62e4272e3ddfb50e8eed9e359dedea0a4d171c3eb8f337f4892aac37b24b","impliedFormat":1},{"version":"ed58b9974bb3114f39806c9c2c6258c4ffa6a255921976a7c53dfa94bf178f42","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"f72bc8fe16da67e4e3268599295797b202b95e54bd215a03f97e925dd1502a36","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"915e18c559321c0afaa8d34674d3eb77e1ded12c3e85bf2a9891ec48b07a1ca5","affectsGlobalScope":true,"impliedFormat":1},{"version":"e9727a118ce60808e62457c89762fe5a4e2be8e9fd0112d12432d1bafdba942f","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"70b57b5529051497e9f6482b76d91c0dcbb103d9ead8a0549f5bab8f65e5d031","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"3a90b9beac4c2bfdf6517faae0940a042b81652badf747df0a7c7593456f6ebe","impliedFormat":1},{"version":"8302157cd431b3943eed09ad439b4441826c673d9f870dcb0e1f48e891a4211e","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"dba28a419aec76ed864ef43e5f577a5c99a010c32e5949fe4e17a4d57c58dd11","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"a5890565ed564c7b29eb1b1038d4e10c03a3f5231b0a8d48fea4b41ab19f4f46","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"98ffdf93dfdd206516971d28e3e473f417a5cfd41172e46b4ce45008f640588e","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"cee74f5970ffc01041e5bffc3f324c20450534af4054d2c043cb49dbbd4ec8f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a654e0d950353614ba4637a8de4f9d367903a0692b748e11fccf8c880c99735","affectsGlobalScope":true,"impliedFormat":1},{"version":"42da246c46ca3fd421b6fd88bb4466cda7137cf33e87ba5ceeded30219c428bd","impliedFormat":1},{"version":"3a051941721a7f905544732b0eb819c8d88333a96576b13af08b82c4f17581e4","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"f2feb9696208311cdcf1936df2b7cbec96a3f0ab9d403952bf170546d4253a90","affectsGlobalScope":true,"impliedFormat":1},{"version":"db3d77167a7da6c5ba0c51c5b654820e3464093f21724ccd774c0b9bc3f81bc0","impliedFormat":1},{"version":"ad90122e1cb599b3bc06a11710eb5489101be678f2920f2322b0ac3e195af78d","impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"d782e571cb7d6ec0f0645957ed843d00e3f8577e08cc2940f400c931bc47a8df","impliedFormat":99},{"version":"9167246623f181441e6116605221268d94e33a1ebd88075e2dc80133c928ae7e","impliedFormat":99},{"version":"dc1a838d8a514b6de9fbce3bd5e6feb9ccfe56311e9338bb908eb4d0d966ecaf","impliedFormat":99},{"version":"186f09ed4b1bc1d5a5af5b1d9f42e2d798f776418e82599b3de16423a349d184","impliedFormat":99},{"version":"d692ae73951775d2448df535ce8bc8abf162dc343911fedda2c37b8de3b20d8e","impliedFormat":99},{"version":"908217c4f2244ec402b73533ebfcc46d6dcd34fc1c807ff403d7f98702abb3bc","impliedFormat":1},{"version":"1bc5991c91bf4be8b59db501ed284a34945d95abe9b7451d02ea001f7c5621a9","impliedFormat":1},{"version":"d8b8a5a6bf623239d5374ad4a7ff6f3b195ab5ee61293f59f1957e90d2a22809","impliedFormat":1},{"version":"35d283eca7dc0a0c7b099f5fbbf0678b87f3d837572cd5e539ba297ad9837e68","impliedFormat":1},{"version":"1c8384a195a2d931cf6e2b8f656acf558ca649a3f74922d86b95889f49a7f7c5","impliedFormat":1},{"version":"cd11655f57a3558dfcee05a6e78c026f9dfd30535eaf124439c5e88a5617359b","impliedFormat":1},{"version":"bf77933dd653b42bc1dd0e78403f54f33af7d7d83ef9d2cbb7623d003d12b2ab","signature":"5b9db355eb6bd3f6927af2c0f571590f5a2a6b0dcf7b905e2b07a1e33fad7dfc"},{"version":"fd13ad53caf3203bd820ceaf889abd8cc4d58d0324d500c25b3b7d3f9a588b1c","signature":"f61983e627d565c52076e41705ec1d6e4245a79e60758b1966a7b7ee972815a2"},{"version":"9578f0b39bd5e9e6d202930805d42014244983bf2a56bcaa05c15173f6311235","signature":"d8d7ad6f9ab63e182774029170448ad3d5d8a7ebfc527ed5f015b7e952c3b823"},"795e210df3db933e039e8b371ae1cf7336a6111ebd4a8ef9a213b363e3ed2b08",{"version":"1a2ae3df505891912038749a39e434643cf1f91a578475ae049f36e35c870c58","impliedFormat":1},{"version":"fc30e0962d9ebfe10d1e402efded14456509cefb9a912718d5baf7be80b2dc3f","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"}],"root":[[171,174],176],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"declarationMap":true,"emitDecoratorMetadata":true,"experimentalDecorators":true,"importHelpers":true,"jsx":2,"module":1,"noEmitHelpers":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","removeComments":false,"sourceMap":true,"strict":true,"target":2,"useDefineForClassFields":false},"referencedMap":[[105,1],[106,1],[107,2],[66,3],[108,4],[109,5],[110,6],[61,7],[64,8],[62,7],[63,7],[111,9],[112,10],[113,11],[114,12],[115,13],[116,14],[117,14],[119,7],[118,15],[120,16],[121,17],[122,18],[104,19],[65,7],[123,20],[124,21],[125,22],[158,23],[126,24],[127,25],[128,26],[129,27],[130,28],[131,29],[132,30],[133,31],[134,32],[135,33],[136,33],[137,34],[138,7],[139,7],[140,35],[142,36],[141,37],[143,38],[144,39],[145,40],[146,41],[147,42],[148,43],[149,44],[150,45],[151,46],[152,47],[153,48],[154,49],[155,50],[156,51],[157,52],[165,7],[175,7],[161,7],[163,53],[162,7],[159,54],[160,7],[166,55],[164,56],[60,7],[58,7],[59,7],[10,7],[11,7],[13,7],[12,7],[2,7],[14,7],[15,7],[16,7],[17,7],[18,7],[19,7],[20,7],[21,7],[3,7],[22,7],[23,7],[4,7],[24,7],[28,7],[25,7],[26,7],[27,7],[29,7],[30,7],[31,7],[5,7],[32,7],[33,7],[34,7],[35,7],[6,7],[39,7],[36,7],[37,7],[38,7],[40,7],[7,7],[41,7],[46,7],[47,7],[42,7],[43,7],[44,7],[45,7],[8,7],[51,7],[48,7],[49,7],[50,7],[52,7],[9,7],[53,7],[54,7],[55,7],[57,7],[56,7],[1,7],[82,57],[92,58],[81,57],[102,59],[73,60],[72,61],[101,62],[95,63],[100,64],[75,65],[89,66],[74,67],[98,68],[70,69],[69,62],[99,70],[71,71],[76,72],[77,7],[80,72],[67,7],[103,73],[93,74],[84,75],[85,76],[87,77],[83,78],[86,79],[96,62],[78,80],[79,81],[88,82],[68,83],[91,74],[90,72],[94,7],[97,84],[170,85],[168,62],[169,86],[167,87],[174,88],[172,89],[176,90],[171,91],[173,92]],"version":"5.8.3"}
@@ -9,7 +9,8 @@
9
9
  "description": "Project name",
10
10
  "$default": {
11
11
  "$source": "projectName"
12
- }
12
+ },
13
+ "alias": "project"
13
14
  },
14
15
  "exactO3rVersion": {
15
16
  "type": "boolean",
@@ -1,14 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class CapacitorTargetService {
3
- private readonly destroyRef;
4
- private hijackDone;
5
- private openInCapacitorBrowser;
6
- /**
7
- * Method called for 'hijacking' the click event on <a> tags with target _blank attribute.
8
- * Instead of the default action, it will open the URL using the CapacitorJS Browser plugin.
9
- */
10
- hijackClick(): void;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<CapacitorTargetService, never>;
12
- static ɵprov: i0.ɵɵInjectableDeclaration<CapacitorTargetService>;
13
- }
14
- //# sourceMappingURL=capacitor-target.service.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"capacitor-target.service.d.ts","sourceRoot":"","sources":["../../src/capacitor/capacitor-target.service.ts"],"names":[],"mappings":";AAkBA,qBAGa,sBAAsB;IACjC,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAsB;IACjD,OAAO,CAAC,UAAU,CAAS;YAEb,sBAAsB;IAcpC;;;OAGG;IACI,WAAW,IAAI,IAAI;yCAtBf,sBAAsB;6CAAtB,sBAAsB;CA+BlC"}
@@ -1,17 +0,0 @@
1
- /**
2
- * Type for the 3 capacitor platforms
3
- */
4
- export type CapacitorPlatforms = 'ios' | 'android' | 'web';
5
- /**
6
- * Returns the capacitor platform
7
- */
8
- export declare function getCapacitorPlatform(): Promise<CapacitorPlatforms>;
9
- /**
10
- * Returns true if in a capacitor context (mobile app) or false for web
11
- */
12
- export declare function isCapacitorContext(): Promise<boolean>;
13
- /**
14
- * Returns the baseUrl that can be used depending on the platform
15
- */
16
- export declare function getBaseUrl(): Promise<string>;
17
- //# sourceMappingURL=helpers.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../src/capacitor/helpers.ts"],"names":[],"mappings":"AAIA;;GAEG;AACH,MAAM,MAAM,kBAAkB,GAAG,KAAK,GAAG,SAAS,GAAG,KAAK,CAAC;AAE3D;;GAEG;AACH,wBAAsB,oBAAoB,IAAI,OAAO,CAAC,kBAAkB,CAAC,CAGxE;AAED;;GAEG;AACH,wBAAsB,kBAAkB,IAAI,OAAO,CAAC,OAAO,CAAC,CAG3D;AAED;;GAEG;AACH,wBAAsB,UAAU,IAAI,OAAO,CAAC,MAAM,CAAC,CAalD"}
@@ -1,4 +0,0 @@
1
- export * from './capacitor-target.service';
2
- export * from './helpers';
3
- export * from './storage';
4
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/capacitor/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC;AAC3C,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC"}
@@ -1,4 +0,0 @@
1
- export * from './rehydrater';
2
- export * from './rehydrater.module';
3
- export * from './storage';
4
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/capacitor/storage/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,qBAAqB,CAAC;AACpC,cAAc,WAAW,CAAC"}
@@ -1,22 +0,0 @@
1
- import { InjectionToken } from '@angular/core';
2
- import { Store } from '@ngrx/store';
3
- import { LoggerService } from '@o3r/logger';
4
- import { StorageSyncOptions } from '@o3r/store-sync';
5
- import * as i0 from "@angular/core";
6
- /**
7
- * Injection token for the storage sync options
8
- */
9
- export declare const STORAGE_SYNC_OPTIONS: InjectionToken<Partial<StorageSyncOptions>>;
10
- export declare class CapacitorRehydrater {
11
- private readonly store;
12
- private readonly logger;
13
- private readonly options;
14
- constructor(store: Store<any>, options: Partial<StorageSyncOptions>, logger: LoggerService);
15
- /**
16
- * Dispatch an action to rehydrate the store with the data from the storage
17
- */
18
- rehydrate(): Promise<void>;
19
- static ɵfac: i0.ɵɵFactoryDeclaration<CapacitorRehydrater, never>;
20
- static ɵprov: i0.ɵɵInjectableDeclaration<CapacitorRehydrater>;
21
- }
22
- //# sourceMappingURL=rehydrater.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"rehydrater.d.ts","sourceRoot":"","sources":["../../../src/capacitor/storage/rehydrater.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,cAAc,EACf,MAAM,eAAe,CAAC;AACvB,OAAO,EACL,KAAK,EACN,MAAM,aAAa,CAAC;AACrB,OAAO,EACL,aAAa,EACd,MAAM,aAAa,CAAC;AACrB,OAAO,EAKL,kBAAkB,EACnB,MAAM,iBAAiB,CAAC;;AAEzB;;GAEG;AACH,eAAO,MAAM,oBAAoB,6CAA0E,CAAC;AAI5G,qBACa,mBAAmB;IAG5B,OAAO,CAAC,QAAQ,CAAC,KAAK;IAEtB,OAAO,CAAC,QAAQ,CAAC,MAAM;IAJzB,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAqB;gBAE1B,KAAK,EAAE,KAAK,CAAC,GAAG,CAAC,EACJ,OAAO,EAAE,OAAO,CAAC,kBAAkB,CAAC,EACjD,MAAM,EAAE,aAAa;IAKxC;;OAEG;IACU,SAAS;yCAbX,mBAAmB;6CAAnB,mBAAmB;CAgE/B"}
@@ -1,12 +0,0 @@
1
- import { ModuleWithProviders } from '@angular/core';
2
- import type { StorageSyncOptions } from '@o3r/store-sync';
3
- import * as i0 from "@angular/core";
4
- import * as i1 from "@ngrx/store";
5
- import * as i2 from "@o3r/logger";
6
- export declare class CapacitorRehydraterModule {
7
- static forRoot(options: StorageSyncOptions): ModuleWithProviders<CapacitorRehydraterModule>;
8
- static ɵfac: i0.ɵɵFactoryDeclaration<CapacitorRehydraterModule, never>;
9
- static ɵmod: i0.ɵɵNgModuleDeclaration<CapacitorRehydraterModule, never, [typeof i1.StoreModule, typeof i2.LoggerModule], never>;
10
- static ɵinj: i0.ɵɵInjectorDeclaration<CapacitorRehydraterModule>;
11
- }
12
- //# sourceMappingURL=rehydrater.module.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"rehydrater.module.d.ts","sourceRoot":"","sources":["../../../src/capacitor/storage/rehydrater.module.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,mBAAmB,EAEpB,MAAM,eAAe,CAAC;AAOvB,OAAO,KAAK,EACV,kBAAkB,EACnB,MAAM,iBAAiB,CAAC;;;;AAMzB,qBASa,yBAAyB;WACtB,OAAO,CAAC,OAAO,EAAE,kBAAkB,GAAG,mBAAmB,CAAC,yBAAyB,CAAC;yCADvF,yBAAyB;0CAAzB,yBAAyB;0CAAzB,yBAAyB;CASrC"}
@@ -1,19 +0,0 @@
1
- import type { AsyncStorage } from '@o3r/store-sync';
2
- /**
3
- * Capacitor storage
4
- */
5
- export declare class OtterCapacitorStorage implements AsyncStorage {
6
- /**
7
- * @inheritdoc
8
- */
9
- removeItem(key: string): void;
10
- /**
11
- * @inheritdoc
12
- */
13
- setItem(key: string, value: string): void;
14
- /**
15
- * @inheritdoc
16
- */
17
- getItem(key: string): Promise<string | null>;
18
- }
19
- //# sourceMappingURL=storage.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"storage.d.ts","sourceRoot":"","sources":["../../../src/capacitor/storage/storage.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,YAAY,EACb,MAAM,iBAAiB,CAAC;AAEzB;;GAEG;AACH,qBAAa,qBAAsB,YAAW,YAAY;IACxD;;OAEG;IACI,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAIpC;;OAEG;IACI,OAAO,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI;IAIhD;;OAEG;IACU,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC;CAI1D"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"o3r-mobile.d.ts","sourceRoot":"","sources":["../src/o3r-mobile.ts"],"names":[],"mappings":"AAAA;;GAEG;;AAEH,cAAc,cAAc,CAAC"}
package/public_api.d.ts DELETED
@@ -1,2 +0,0 @@
1
- export * from './capacitor/index';
2
- //# sourceMappingURL=public_api.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"public_api.d.ts","sourceRoot":"","sources":["../src/public_api.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../schematics/ng-add/index.ts"],"names":[],"mappings":";;;AAAA,kCAAkC;AAClC,2DAGoC;AACpC,gDASyB;AAQzB,MAAM,eAAe,GAAG,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,IAAI,EAAE,IAAI,EAAE,cAAc,CAAC,CAAC;AAC5E;;GAEG;AACH,MAAM,qBAAqB,GAAG;IAC5B,iBAAiB;IACjB,eAAe;IACf,oBAAoB;IACpB,iBAAiB;IACjB,mBAAmB;IACnB,wBAAwB;IACxB,aAAa;IACb,iBAAiB;IACjB,MAAM;CACP,CAAC;AAEF;;GAEG;AACH,MAAM,wBAAwB,GAAa,EAE0C,CAAC;AAEtF;;;GAGG;AACH,SAAS,OAAO,CAAC,OAA8B;IAC7C,kBAAkB;IAClB,OAAO,CAAC,IAAI,EAAE,OAAO,EAAE,EAAE;QACvB,MAAM,QAAQ,GAAG,IAAA,2BAAc,EAAC,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,IAAI,EAAE,IAAI,EAAE,cAAc,CAAC,CAAC,CAAC;QACrF,MAAM,gBAAgB,GAAG,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC,IAAA,+BAAkB,EAAC,IAAI,CAAC,EAAE,QAAQ,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;QACnH,MAAM,gBAAgB,GAAG,gBAAgB,EAAE,IAAI,IAAI,GAAG,CAAC;QACvD,MAAM,kBAAkB,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,gBAAgB,EAAE,cAAc,CAAC,CAAgB,CAAC;QAE3G,MAAM,YAAY,GAAG,QAAQ,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,EAAE;YAC5D,GAAG,CAAC,GAAG,CAAC,GAAG;gBACT,UAAU,EAAE,CAAC;wBACX,KAAK,EAAE,GAAG,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,GAAG,QAAQ,CAAC,cAAc,EAAE;wBACxE,KAAK,EAAE,IAAA,2CAA8B,EAAC,gBAAgB,CAAC;qBACxD,CAAC;gBACF,YAAY,EAAE,EAAE,eAAe,EAAE,OAAO,CAAC,eAAe,EAAE;aAC3D,CAAC;YACF,OAAO,GAAG,CAAC;QACb,CAAC,EAAE,IAAA,oCAAuB,EAAC,eAAe,EAAE,IAAI,EAAE,OAAO,CAAC,WAAW,EAAE,KAAK,EAAE,CAAC,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;QAE1G,MAAM,wBAAwB,GAAG,IAAA,wCAA2B,EAAC;YAC3D,wBAAwB;YACxB,qBAAqB;YACrB,WAAW,EAAE,gBAAgB,EAAE,WAAW;YAC1C,kBAAkB;YAClB,kBAAkB,EAAE,eAAe;SACpC,EACD,OAAO,CAAC,MAAM,CACb,CAAC;QAEF,OAAO,IAAA,kBAAK,EAAC;YACX,IAAA,2BAAc,EAAC,CAAC,eAAe,CAAC,CAAC;YACjC,IAAA,8BAAiB,EAAC;gBAChB,WAAW,EAAE,OAAO,CAAC,WAAW;gBAChC,YAAY,EAAE;oBACZ,GAAG,YAAY;oBACf,GAAG,wBAAwB;iBAC5B;gBACD,UAAU,EAAE,QAAQ,CAAC,WAAW;aACjC,CAAC;SACH,CAAC,CAAC;IACL,CAAC,CAAC;AACJ,CAAC;AAED;;;GAGG;AACI,MAAM,KAAK,GAAG,CAAC,OAA8B,EAAE,EAAE,CAAC,IAAA,iCAAoB,EAAC,OAAO,CAAC,CAAC,OAAO,CAAC,CAAC;AAAnF,QAAA,KAAK,SAA8E"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../schematics/ng-add/schema.ts"],"names":[],"mappings":""}
@@ -1,3 +0,0 @@
1
- {
2
- "type": "commonjs"
3
- }