@wix/public-editor-platform-interfaces 1.9.0 → 1.11.0

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.
@@ -0,0 +1,11 @@
1
+ export interface AccessToken {
2
+ /**
3
+ * A unique identifier of a token
4
+ * @readonly
5
+ */
6
+ id?: string | null;
7
+ /** The token to use for calling the Wix API ecosystem */
8
+ token?: string | null;
9
+ /** Token expiration timestamp */
10
+ expires?: Date;
11
+ }
package/dist/Token.js ADDED
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/dist/index.d.ts CHANGED
@@ -2,3 +2,4 @@ import * as WixSDKTypes from '@wix/sdk-types';
2
2
  export { WixSDKTypes };
3
3
  export { ComponentRef } from './ComponentRef';
4
4
  export { EventType } from './EventType';
5
+ export { AccessToken } from './Token';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/public-editor-platform-interfaces",
3
- "version": "1.9.0",
3
+ "version": "1.11.0",
4
4
  "license": "UNLICENSED",
5
5
  "contributors": [
6
6
  {
@@ -23,7 +23,7 @@
23
23
  "*.{js,ts}": "yarn lint"
24
24
  },
25
25
  "dependencies": {
26
- "@wix/sdk-types": "^1.12.1"
26
+ "@wix/sdk-types": "^1.12.3"
27
27
  },
28
28
  "devDependencies": {
29
29
  "lint-staged": "^13.3.0",
@@ -51,5 +51,5 @@
51
51
  ]
52
52
  }
53
53
  },
54
- "falconPackageHash": "3781575009cd175bee43a10dacd175c3db9104d1abfe62a5a964b93a"
54
+ "falconPackageHash": "145a14ad1bf62d49edb63545fa5441ec52a8237ca12b87adbe7010f6"
55
55
  }