cecon-interfaces 1.5.73 → 1.5.75

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.
@@ -8,6 +8,7 @@ export { EDiscountType } from './e-discount-type.enum';
8
8
  export { EFiscalDocModelCode } from './fiscal-doc-model-code.enum';
9
9
  export { EIntervalType } from './interval-type.enum';
10
10
  export { ELeadOrigin } from './lead-origin.enum';
11
+ export { EOperator } from './operators.enum';
11
12
  export { EOs } from './os.enum';
12
13
  export { EPaymentChannel } from './payment-channel.enum';
13
14
  export { EPaymentMode } from './payment-mode.enum';
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ESponsorshipValues = exports.EPubSub = exports.EPaymentProvider = exports.EPlatform = exports.ELegalEntiy = exports.EPaymentType = exports.EPaymentStatus = exports.EPaymentMode = exports.EPaymentChannel = exports.EOs = exports.ELeadOrigin = exports.EIntervalType = exports.EFiscalDocModelCode = exports.EDiscountType = exports.EDocType = exports.EDesenfilaFrom = exports.ECollectionsTypes = exports.EBooleanString = exports.EBankSlipStatus = exports.EFcmSkill = void 0;
3
+ exports.ESponsorshipValues = exports.EPubSub = exports.EPaymentProvider = exports.EPlatform = exports.ELegalEntiy = exports.EPaymentType = exports.EPaymentStatus = exports.EPaymentMode = exports.EPaymentChannel = exports.EOs = exports.EOperator = exports.ELeadOrigin = exports.EIntervalType = exports.EFiscalDocModelCode = exports.EDiscountType = exports.EDocType = exports.EDesenfilaFrom = exports.ECollectionsTypes = exports.EBooleanString = exports.EBankSlipStatus = exports.EFcmSkill = void 0;
4
4
  var skill_enum_1 = require("../../fcm-token-message/enums/skill.enum");
5
5
  Object.defineProperty(exports, "EFcmSkill", { enumerable: true, get: function () { return skill_enum_1.EFcmSkill; } });
6
6
  var bank_slip_status_enum_1 = require("./bank-slip-status.enum");
@@ -21,6 +21,8 @@ var interval_type_enum_1 = require("./interval-type.enum");
21
21
  Object.defineProperty(exports, "EIntervalType", { enumerable: true, get: function () { return interval_type_enum_1.EIntervalType; } });
22
22
  var lead_origin_enum_1 = require("./lead-origin.enum");
23
23
  Object.defineProperty(exports, "ELeadOrigin", { enumerable: true, get: function () { return lead_origin_enum_1.ELeadOrigin; } });
24
+ var operators_enum_1 = require("./operators.enum");
25
+ Object.defineProperty(exports, "EOperator", { enumerable: true, get: function () { return operators_enum_1.EOperator; } });
24
26
  var os_enum_1 = require("./os.enum");
25
27
  Object.defineProperty(exports, "EOs", { enumerable: true, get: function () { return os_enum_1.EOs; } });
26
28
  var payment_channel_enum_1 = require("./payment-channel.enum");
@@ -0,0 +1,12 @@
1
+ export declare enum EOperator {
2
+ NOT_EQUAL = "!=",
3
+ LESS_THAN = "<",
4
+ LESS_THAN_OR_EQUAL = "<=",
5
+ EQUAL = "==",
6
+ GREATER_THAN = ">",
7
+ GREATER_THAN_OR_EQUAL = ">=",
8
+ ARRAY_CONTAINS = "array-contains",
9
+ ARRAY_CONTAINS_ANY = "array-contains-any",
10
+ IN = "in",
11
+ NOT_IN = "not-in"
12
+ }
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EOperator = void 0;
4
+ var EOperator;
5
+ (function (EOperator) {
6
+ EOperator["NOT_EQUAL"] = "!=";
7
+ EOperator["LESS_THAN"] = "<";
8
+ EOperator["LESS_THAN_OR_EQUAL"] = "<=";
9
+ EOperator["EQUAL"] = "==";
10
+ EOperator["GREATER_THAN"] = ">";
11
+ EOperator["GREATER_THAN_OR_EQUAL"] = ">=";
12
+ EOperator["ARRAY_CONTAINS"] = "array-contains";
13
+ EOperator["ARRAY_CONTAINS_ANY"] = "array-contains-any";
14
+ EOperator["IN"] = "in";
15
+ EOperator["NOT_IN"] = "not-in";
16
+ })(EOperator || (exports.EOperator = EOperator = {}));
@@ -0,0 +1,6 @@
1
+ import { EOperator } from '../enums/operators.enum';
2
+ export interface IFirebaseQuery {
3
+ field: string;
4
+ operator: EOperator;
5
+ value: string | number | Array<string | number | boolean> | boolean | Date | null;
6
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -6,6 +6,7 @@ export { ICustomVariable } from './i-custom-variable';
6
6
  export { IDeliveryArea } from './i-delivery-area';
7
7
  export { IDeliveryAreaFixed } from './i-delivery-area-fixed';
8
8
  export { IDesenfilaInfo } from './i-desenfila-info';
9
+ export { IFirebaseQuery } from './i-firebase-query';
9
10
  export { IMessagerChannel } from './i-messager-channel';
10
11
  export { IMobyoApiConfig } from './i-mobyo-api-config';
11
12
  export { IMobyoInfo } from './i-mobyo-info';
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.5.73",
3
+ "version": "1.5.75",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.5.73",
3
+ "version": "1.5.75",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",