@rocketlink/crm-model 1.0.80 → 1.0.82

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.
@@ -13,4 +13,11 @@ export interface CsvRowsStatusStats {
13
13
  status: CSVRowStatusTypes;
14
14
  count: number;
15
15
  }
16
+ export interface CsvRowsStatusCounts {
17
+ fileRows: number;
18
+ doneRows: number;
19
+ failedRows: number;
20
+ queuedRows: number;
21
+ skippedRows: number;
22
+ }
16
23
  //# sourceMappingURL=csvRow.request.dto.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"csvRow.request.dto.d.ts","sourceRoot":"","sources":["../../src/dtos/csvRow.request.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,mBAAmB,CAAC;AACtD,OAAO,EAAE,gBAAgB,EAAE,MAAM,sCAAsC,CAAC;AAExE,MAAM,WAAW,cAAe,SAAQ,gBAAgB;IACtD,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,iBAAiB,EAAE,CAAC;IAC/B,WAAW,CAAC,EAAE,IAAI,CAAC;IACnB,SAAS,CAAC,EAAE,IAAI,CAAC;CAClB;AAED,MAAM,WAAW,kBAAkB;IACjC,MAAM,EAAE,iBAAiB,CAAC;IAC1B,KAAK,EAAE,MAAM,CAAC;CACf"}
1
+ {"version":3,"file":"csvRow.request.dto.d.ts","sourceRoot":"","sources":["../../src/dtos/csvRow.request.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,mBAAmB,CAAC;AACtD,OAAO,EAAE,gBAAgB,EAAE,MAAM,sCAAsC,CAAC;AAExE,MAAM,WAAW,cAAe,SAAQ,gBAAgB;IACtD,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,iBAAiB,EAAE,CAAC;IAC/B,WAAW,CAAC,EAAE,IAAI,CAAC;IACnB,SAAS,CAAC,EAAE,IAAI,CAAC;CAClB;AAED,MAAM,WAAW,kBAAkB;IACjC,MAAM,EAAE,iBAAiB,CAAC;IAC1B,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,mBAAmB;IAClC,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;CACrB"}
@@ -23,7 +23,7 @@ export declare const CSV_STATUS: {
23
23
  COMPLETED: string;
24
24
  COMPLETED_WITH_ERRORS: string;
25
25
  FAILED: string;
26
- STOPPED: string;
26
+ SKIPPED: string;
27
27
  };
28
28
  export type CSVStatusTypes = (typeof CSV_STATUS)[keyof typeof CSV_STATUS];
29
29
  export declare const CSV_ROW_STATUS: {
@@ -23,7 +23,7 @@ exports.CSV_STATUS = {
23
23
  COMPLETED: "COMPLETED",
24
24
  COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS",
25
25
  FAILED: "FAILED",
26
- STOPPED: "STOPPED"
26
+ SKIPPED: "SKIPPED"
27
27
  };
28
28
  exports.CSV_ROW_STATUS = {
29
29
  QUEUED: 'QUEUED',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rocketlink/crm-model",
3
- "version": "1.0.80",
3
+ "version": "1.0.82",
4
4
  "description": "Shared DTOs and Models for CRM Rocketlink",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -14,4 +14,12 @@ export interface CSVRowsRequest extends PaginatedRequest {
14
14
  export interface CsvRowsStatusStats {
15
15
  status: CSVRowStatusTypes;
16
16
  count: number;
17
+ }
18
+
19
+ export interface CsvRowsStatusCounts {
20
+ fileRows: number;
21
+ doneRows: number;
22
+ failedRows: number;
23
+ queuedRows: number;
24
+ skippedRows: number;
17
25
  }
@@ -26,7 +26,7 @@ export const CSV_STATUS = {
26
26
  COMPLETED: "COMPLETED",
27
27
  COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS",
28
28
  FAILED: "FAILED",
29
- STOPPED: "STOPPED"
29
+ SKIPPED: "SKIPPED"
30
30
  };
31
31
  export type CSVStatusTypes = (typeof CSV_STATUS)[keyof typeof CSV_STATUS];
32
32