@chevre/factory 4.389.0-alpha.15 → 4.389.0-alpha.16

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.
@@ -11,11 +11,12 @@ export interface IService<T extends Identifier> {
11
11
  identifier: T;
12
12
  }
13
13
  export interface ICredentials {
14
- refreshToken?: string;
14
+ endpoint: string;
15
+ refreshToken: string;
16
+ useFetch: boolean;
15
17
  }
16
18
  export interface IAvailableChannel {
17
19
  typeOf: 'ServiceChannel';
18
- serviceUrl?: string;
19
20
  credentials?: ICredentials;
20
21
  importEventsInWeeks?: number;
21
22
  excludeMovieTheaters?: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.389.0-alpha.15",
3
+ "version": "4.389.0-alpha.16",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",