@vendure/admin-ui 1.4.5 → 1.4.6

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.
@@ -3578,7 +3578,7 @@ export declare type Query = {
3578
3578
  assets: AssetList;
3579
3579
  channel?: Maybe<Channel>;
3580
3580
  channels: Array<Channel>;
3581
- /** Get a Collection either by id or slug. If neither id nor slug is speicified, an error will result. */
3581
+ /** Get a Collection either by id or slug. If neither id nor slug is specified, an error will result. */
3582
3582
  collection?: Maybe<Collection>;
3583
3583
  collectionFilters: Array<ConfigurableOperationDefinition>;
3584
3584
  collections: CollectionList;
@@ -1 +1 @@
1
- export declare const ADMIN_UI_VERSION = "1.4.5";
1
+ export declare const ADMIN_UI_VERSION = "1.4.6";
@@ -1,10 +1,12 @@
1
1
  import { TranslateService } from '@ngx-translate/core';
2
2
  import { LanguageCode } from '../../common/generated-types';
3
+ /** @dynamic */
3
4
  export declare class I18nService {
4
5
  private ngxTranslate;
6
+ private document;
5
7
  _availableLanguages: LanguageCode[];
6
8
  get availableLanguages(): LanguageCode[];
7
- constructor(ngxTranslate: TranslateService);
9
+ constructor(ngxTranslate: TranslateService, document: Document);
8
10
  /**
9
11
  * Set the default language
10
12
  */