cecon-interfaces 1.8.54 → 1.8.57

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.
@@ -5,6 +5,7 @@ export declare class GlobalSettingBlockchainEntity implements IGlobalSettingBloc
5
5
  address: string;
6
6
  description: string;
7
7
  id: string;
8
+ seed: string;
8
9
  spreads: GlobalSettingBlockchainSpreadEntity[];
9
10
  constructor(data?: Partial<GlobalSettingBlockchainEntity>);
10
11
  }
@@ -7,6 +7,7 @@ var GlobalSettingBlockchainEntity = /** @class */ (function () {
7
7
  this.address = '';
8
8
  this.description = '';
9
9
  this.id = 'blockchain';
10
+ this.seed = '';
10
11
  this.spreads = [];
11
12
  if (data) {
12
13
  for (var key in data) {
@@ -2,6 +2,7 @@ import { IGlobalSettingIfood, IGlobalSettingIfoodCredentials, IGlobalSettingIfoo
2
2
  export declare class GlobalSettingIfoodCredentialsEntity implements IGlobalSettingIfoodCredentials {
3
3
  accessToken: string;
4
4
  expiresIn: number;
5
+ refreshToken: string;
5
6
  type: 'Bearer';
6
7
  constructor(data?: Partial<GlobalSettingIfoodCredentialsEntity>);
7
8
  }
@@ -5,6 +5,7 @@ var GlobalSettingIfoodCredentialsEntity = /** @class */ (function () {
5
5
  function GlobalSettingIfoodCredentialsEntity(data) {
6
6
  this.accessToken = '';
7
7
  this.expiresIn = 0;
8
+ this.refreshToken = '';
8
9
  this.type = 'Bearer';
9
10
  if (data) {
10
11
  for (var key in data) {
@@ -3,6 +3,7 @@ export interface IGlobalSettingBlockchain {
3
3
  address: string;
4
4
  description: string;
5
5
  id: string;
6
+ seed: string;
6
7
  spreads: IGlobalSettingBlockchainSpread[];
7
8
  }
8
9
  export interface IGlobalSettingBlockchainSpread {
@@ -9,6 +9,7 @@ export interface IGlobalSettingIfood {
9
9
  }
10
10
  export interface IGlobalSettingIfoodCredentials {
11
11
  accessToken: string;
12
+ refreshToken: string;
12
13
  expiresIn: number;
13
14
  type: 'Bearer';
14
15
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.8.54",
3
+ "version": "1.8.57",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",