@etainabl/nodejs-sdk 1.3.143 → 1.3.144

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.cts CHANGED
@@ -6,7 +6,6 @@ import * as _aws_sdk_client_ses from '@aws-sdk/client-ses';
6
6
  import { S3Client } from '@aws-sdk/client-s3';
7
7
  import { Context, SQSEvent, SNSEvent, APIGatewayEvent, S3Event } from 'aws-lambda';
8
8
  import { SQSClient } from '@aws-sdk/client-sqs';
9
- import { SoftDeleteDocument } from 'mongoose-delete';
10
9
  import winston from 'winston';
11
10
  import moment from 'moment';
12
11
  import { ZodObject } from 'zod';
@@ -1074,7 +1073,7 @@ interface InvoiceRate {
1074
1073
  type InvoiceStatus = 'processing' | 'pending' | 'uploading' | 'queued' | 'captured' | 'error' | 'completed';
1075
1074
  type FinancialStatus = 'approved' | 'new' | 'not-approved' | 'paid' | 'sent-for-payment';
1076
1075
  type InvoiceRateType = 'unitRate' | 'daily' | 'levy' | 'tax' | 'kva' | 'waterRate' | 'wasteRate' | 'discount' | 'misc' | 'feedInTariff' | 'latePaymentCharge';
1077
- interface Invoice<IDType = ObjectId | string, DateType = Date> extends SoftDeleteDocument {
1076
+ interface Invoice<IDType = ObjectId | string, DateType = Date> {
1078
1077
  _id: IDType;
1079
1078
  jobId?: string | null;
1080
1079
  startTime?: DateType;
package/dist/index.d.ts CHANGED
@@ -6,7 +6,6 @@ import * as _aws_sdk_client_ses from '@aws-sdk/client-ses';
6
6
  import { S3Client } from '@aws-sdk/client-s3';
7
7
  import { Context, SQSEvent, SNSEvent, APIGatewayEvent, S3Event } from 'aws-lambda';
8
8
  import { SQSClient } from '@aws-sdk/client-sqs';
9
- import { SoftDeleteDocument } from 'mongoose-delete';
10
9
  import winston from 'winston';
11
10
  import moment from 'moment';
12
11
  import { ZodObject } from 'zod';
@@ -1074,7 +1073,7 @@ interface InvoiceRate {
1074
1073
  type InvoiceStatus = 'processing' | 'pending' | 'uploading' | 'queued' | 'captured' | 'error' | 'completed';
1075
1074
  type FinancialStatus = 'approved' | 'new' | 'not-approved' | 'paid' | 'sent-for-payment';
1076
1075
  type InvoiceRateType = 'unitRate' | 'daily' | 'levy' | 'tax' | 'kva' | 'waterRate' | 'wasteRate' | 'discount' | 'misc' | 'feedInTariff' | 'latePaymentCharge';
1077
- interface Invoice<IDType = ObjectId | string, DateType = Date> extends SoftDeleteDocument {
1076
+ interface Invoice<IDType = ObjectId | string, DateType = Date> {
1078
1077
  _id: IDType;
1079
1078
  jobId?: string | null;
1080
1079
  startTime?: DateType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etainabl/nodejs-sdk",
3
- "version": "1.3.143",
3
+ "version": "1.3.144",
4
4
  "type": "module",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.mjs",