@cristian-israel/giganet_lib_conecta 1.0.69 → 1.0.70
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/dist/index.d.mts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +12 -0
- package/dist/index.mjs +12 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -35896,10 +35896,12 @@ interface CancellationAnalysisAttributes {
|
|
|
35896
35896
|
resultadoIa?: object;
|
|
35897
35897
|
status?: "processando" | "concluido" | "erro";
|
|
35898
35898
|
processadoEm?: Date;
|
|
35899
|
+
tentativas?: number;
|
|
35900
|
+
maxTentativas?: number;
|
|
35899
35901
|
createdAt?: Date;
|
|
35900
35902
|
updatedAt?: Date;
|
|
35901
35903
|
}
|
|
35902
|
-
type CancellationAnalysisOptionalAttributes = "id" | "totalOs" | "totalEvitaveis" | "causaPrincipal" | "resumoExecutivo" | "resultadoIa" | "status" | "processadoEm" | "createdAt" | "updatedAt";
|
|
35904
|
+
type CancellationAnalysisOptionalAttributes = "id" | "totalOs" | "totalEvitaveis" | "causaPrincipal" | "resumoExecutivo" | "resultadoIa" | "status" | "processadoEm" | "tentativas" | "maxTentativas" | "createdAt" | "updatedAt";
|
|
35903
35905
|
type CancellationAnalysisCreationAttributes = Optional<CancellationAnalysisAttributes, CancellationAnalysisOptionalAttributes>;
|
|
35904
35906
|
declare class CancellationAnalysis extends Model<CancellationAnalysisAttributes, CancellationAnalysisCreationAttributes> implements CancellationAnalysisAttributes {
|
|
35905
35907
|
id: number;
|
|
@@ -35913,6 +35915,8 @@ declare class CancellationAnalysis extends Model<CancellationAnalysisAttributes,
|
|
|
35913
35915
|
resultadoIa?: object;
|
|
35914
35916
|
status?: "processando" | "concluido" | "erro";
|
|
35915
35917
|
processadoEm?: Date;
|
|
35918
|
+
tentativas?: number;
|
|
35919
|
+
maxTentativas?: number;
|
|
35916
35920
|
createdAt?: Date;
|
|
35917
35921
|
updatedAt?: Date;
|
|
35918
35922
|
static initModel(sequelize: Sequelize.Sequelize): typeof CancellationAnalysis;
|
package/dist/index.d.ts
CHANGED
|
@@ -35896,10 +35896,12 @@ interface CancellationAnalysisAttributes {
|
|
|
35896
35896
|
resultadoIa?: object;
|
|
35897
35897
|
status?: "processando" | "concluido" | "erro";
|
|
35898
35898
|
processadoEm?: Date;
|
|
35899
|
+
tentativas?: number;
|
|
35900
|
+
maxTentativas?: number;
|
|
35899
35901
|
createdAt?: Date;
|
|
35900
35902
|
updatedAt?: Date;
|
|
35901
35903
|
}
|
|
35902
|
-
type CancellationAnalysisOptionalAttributes = "id" | "totalOs" | "totalEvitaveis" | "causaPrincipal" | "resumoExecutivo" | "resultadoIa" | "status" | "processadoEm" | "createdAt" | "updatedAt";
|
|
35904
|
+
type CancellationAnalysisOptionalAttributes = "id" | "totalOs" | "totalEvitaveis" | "causaPrincipal" | "resumoExecutivo" | "resultadoIa" | "status" | "processadoEm" | "tentativas" | "maxTentativas" | "createdAt" | "updatedAt";
|
|
35903
35905
|
type CancellationAnalysisCreationAttributes = Optional<CancellationAnalysisAttributes, CancellationAnalysisOptionalAttributes>;
|
|
35904
35906
|
declare class CancellationAnalysis extends Model<CancellationAnalysisAttributes, CancellationAnalysisCreationAttributes> implements CancellationAnalysisAttributes {
|
|
35905
35907
|
id: number;
|
|
@@ -35913,6 +35915,8 @@ declare class CancellationAnalysis extends Model<CancellationAnalysisAttributes,
|
|
|
35913
35915
|
resultadoIa?: object;
|
|
35914
35916
|
status?: "processando" | "concluido" | "erro";
|
|
35915
35917
|
processadoEm?: Date;
|
|
35918
|
+
tentativas?: number;
|
|
35919
|
+
maxTentativas?: number;
|
|
35916
35920
|
createdAt?: Date;
|
|
35917
35921
|
updatedAt?: Date;
|
|
35918
35922
|
static initModel(sequelize: Sequelize.Sequelize): typeof CancellationAnalysis;
|
package/dist/index.js
CHANGED
|
@@ -90452,6 +90452,18 @@ var CancellationAnalysis = class _CancellationAnalysis extends import_sequelize7
|
|
|
90452
90452
|
allowNull: true,
|
|
90453
90453
|
field: "processado_em"
|
|
90454
90454
|
},
|
|
90455
|
+
tentativas: {
|
|
90456
|
+
type: import_sequelize775.DataTypes.TINYINT.UNSIGNED,
|
|
90457
|
+
allowNull: false,
|
|
90458
|
+
defaultValue: 0,
|
|
90459
|
+
field: "tentativas"
|
|
90460
|
+
},
|
|
90461
|
+
maxTentativas: {
|
|
90462
|
+
type: import_sequelize775.DataTypes.TINYINT.UNSIGNED,
|
|
90463
|
+
allowNull: false,
|
|
90464
|
+
defaultValue: 3,
|
|
90465
|
+
field: "max_tentativas"
|
|
90466
|
+
},
|
|
90455
90467
|
createdAt: {
|
|
90456
90468
|
type: import_sequelize775.DataTypes.DATE,
|
|
90457
90469
|
allowNull: true,
|
package/dist/index.mjs
CHANGED
|
@@ -90408,6 +90408,18 @@ var CancellationAnalysis = class _CancellationAnalysis extends Model774 {
|
|
|
90408
90408
|
allowNull: true,
|
|
90409
90409
|
field: "processado_em"
|
|
90410
90410
|
},
|
|
90411
|
+
tentativas: {
|
|
90412
|
+
type: DataTypes774.TINYINT.UNSIGNED,
|
|
90413
|
+
allowNull: false,
|
|
90414
|
+
defaultValue: 0,
|
|
90415
|
+
field: "tentativas"
|
|
90416
|
+
},
|
|
90417
|
+
maxTentativas: {
|
|
90418
|
+
type: DataTypes774.TINYINT.UNSIGNED,
|
|
90419
|
+
allowNull: false,
|
|
90420
|
+
defaultValue: 3,
|
|
90421
|
+
field: "max_tentativas"
|
|
90422
|
+
},
|
|
90411
90423
|
createdAt: {
|
|
90412
90424
|
type: DataTypes774.DATE,
|
|
90413
90425
|
allowNull: true,
|