cecon-interfaces 1.6.12 → 1.6.15

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.
@@ -2,5 +2,6 @@ import { IProductOptionsTypeV2 } from './i-product-options-types';
2
2
  export interface IProductOptionsV2 {
3
3
  title: string;
4
4
  mix: number;
5
+ setAllToMax: boolean;
5
6
  types: IProductOptionsTypeV2[];
6
7
  }
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.6.12",
3
+ "version": "1.6.15",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -2,7 +2,8 @@ import { ESubsStatus } from '../../../general';
2
2
  import { IPayioJwtPayloadSubscription } from '../interfaces/i-payload-subscription';
3
3
  export declare class PayioJwtPayloadSubscriptionEntity implements IPayioJwtPayloadSubscription {
4
4
  expiresAt: number;
5
- plan: string;
5
+ id: string;
6
+ planId: string;
6
7
  status: ESubsStatus;
7
8
  constructor(data?: Partial<PayioJwtPayloadSubscriptionEntity>);
8
9
  }
@@ -3,12 +3,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PayioJwtPayloadSubscriptionEntity = void 0;
4
4
  var general_1 = require("../../../general");
5
5
  var PayioJwtPayloadSubscriptionEntity = /** @class */ (function () {
6
- // #endregion Properties (3)
6
+ // #endregion Properties (4)
7
7
  // #region Constructors (1)
8
8
  function PayioJwtPayloadSubscriptionEntity(data) {
9
- // #region Properties (3)
9
+ // #region Properties (4)
10
10
  this.expiresAt = 0;
11
- this.plan = '';
11
+ this.id = '';
12
+ this.planId = '';
12
13
  this.status = general_1.ESubsStatus.PENDING;
13
14
  if (data) {
14
15
  for (var key in data) {
@@ -1,6 +1,7 @@
1
1
  import { ESubsStatus } from '../../../general';
2
2
  export interface IPayioJwtPayloadSubscription {
3
3
  expiresAt: number;
4
- plan: string;
4
+ planId: string;
5
+ id: string;
5
6
  status: ESubsStatus;
6
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.6.12",
3
+ "version": "1.6.15",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/readme.md CHANGED
@@ -4,4 +4,6 @@ Compilar:
4
4
 
5
5
  npm run packagr
6
6
  npm run build
7
- npm publish
7
+ npm publish
8
+
9
+ *Não esqueça de dar push no github*