@ckeditor/ckeditor5-cloud-services 37.0.0-alpha.1 → 37.0.0-alpha.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-cloud-services",
3
- "version": "37.0.0-alpha.1",
3
+ "version": "37.0.0-alpha.3",
4
4
  "description": "CKEditor 5's Cloud Services integration layer.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -11,14 +11,14 @@
11
11
  ],
12
12
  "main": "src/index.js",
13
13
  "dependencies": {
14
- "ckeditor5": "^37.0.0-alpha.1"
14
+ "ckeditor5": "^37.0.0-alpha.3"
15
15
  },
16
16
  "devDependencies": {
17
- "@ckeditor/ckeditor5-core": "^37.0.0-alpha.1",
17
+ "@ckeditor/ckeditor5-core": "^37.0.0-alpha.3",
18
18
  "@ckeditor/ckeditor5-dev-utils": "^35.0.0",
19
- "@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.1",
20
- "@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.1",
21
- "@ckeditor/ckeditor5-utils": "^37.0.0-alpha.1",
19
+ "@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.3",
20
+ "@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.3",
21
+ "@ckeditor/ckeditor5-utils": "^37.0.0-alpha.3",
22
22
  "typescript": "^4.8.4",
23
23
  "webpack": "^5.58.1",
24
24
  "webpack-cli": "^4.9.0"
@@ -5,7 +5,8 @@
5
5
  /**
6
6
  * @module cloud-services/cloudservices
7
7
  */
8
- import { ContextPlugin, type ContextPluginDependencies } from 'ckeditor5/src/core';
8
+ import { ContextPlugin } from 'ckeditor5/src/core';
9
+ import CloudServicesCore from './cloudservicescore';
9
10
  import type { CloudServicesConfig, TokenUrl } from './cloudservicesconfig';
10
11
  import type { InitializedToken } from './token/token';
11
12
  /**
@@ -58,7 +59,7 @@ export default class CloudServices extends ContextPlugin implements CloudService
58
59
  /**
59
60
  * @inheritDoc
60
61
  */
61
- static get requires(): ContextPluginDependencies;
62
+ static get requires(): readonly [typeof CloudServicesCore];
62
63
  /**
63
64
  * @inheritDoc
64
65
  */