@win2win/shared 1.0.92 → 1.0.94
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/enums/captacion.js
CHANGED
|
@@ -8,7 +8,7 @@ var TipoCaptacion;
|
|
|
8
8
|
TipoCaptacion["USUARIOS"] = "3";
|
|
9
9
|
TipoCaptacion["PRODUCTOS"] = "4";
|
|
10
10
|
TipoCaptacion["PEDIDOS"] = "5";
|
|
11
|
-
TipoCaptacion["
|
|
11
|
+
TipoCaptacion["SOLICITUDES"] = "6";
|
|
12
12
|
})(TipoCaptacion || (exports.TipoCaptacion = TipoCaptacion = {}));
|
|
13
13
|
var EstadoCaptacion;
|
|
14
14
|
(function (EstadoCaptacion) {
|
|
@@ -9,7 +9,7 @@ export interface EstadoRule {
|
|
|
9
9
|
CREATED_AT: Date;
|
|
10
10
|
UPDATED_AT: Date;
|
|
11
11
|
}
|
|
12
|
-
export declare const ESTADO_RULE_OPERATORS: readonly [">", "<", "=", "!=", ">=", "<=", "in", "not in", "like"];
|
|
12
|
+
export declare const ESTADO_RULE_OPERATORS: readonly [">", "<", "=", "!=", ">=", "<=", "in", "not in", "contains", "not empty", "like"];
|
|
13
13
|
export type EstadoRuleOperator = (typeof ESTADO_RULE_OPERATORS)[number];
|
|
14
14
|
export interface EstadoRuleModel {
|
|
15
15
|
id?: string;
|
package/package.json
CHANGED