rerobe-js-orm 2.7.31 → 2.7.33

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.
@@ -0,0 +1,8 @@
1
+ export namespace TRANSACTION_TYPES {
2
+ const merchantCredit: string;
3
+ const merchantDebit: string;
4
+ const sellerCredit: string;
5
+ const sellerDebit: string;
6
+ const customerCredit: string;
7
+ const customerDebit: string;
8
+ }
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TRANSACTION_TYPES = void 0;
4
+ exports.TRANSACTION_TYPES = {
5
+ merchantCredit: 'MERCHANT_CREDIT',
6
+ merchantDebit: 'MERCHANT_DEBIT',
7
+ sellerCredit: 'SELLER_CREDIT',
8
+ sellerDebit: 'SELLER_DEBIT',
9
+ customerCredit: 'CUSTOMER_CREDIT',
10
+ customerDebit: 'CUSTOMER_DEBIT',
11
+ };
@@ -1,4 +1,4 @@
1
- declare type SellerLedgerTransactionTypeOptions = 'MERCHANT_CREDIT' | 'MERCHANT_DEBIT' | 'SELLER_CREDIT' | 'SELLER_DEBIT';
1
+ declare type SellerLedgerTransactionTypeOptions = 'MERCHANT_CREDIT' | 'MERCHANT_DEBIT' | 'SELLER_CREDIT' | 'SELLER_DEBIT' | 'CUSTOMER_CREDIT' | 'CUSTOMER_DEBIT';
2
2
  declare type SellerLedgerTransactionType = {
3
3
  documentId: string;
4
4
  createdAtTimestamp: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rerobe-js-orm",
3
- "version": "2.7.31",
3
+ "version": "2.7.33",
4
4
  "description": "ReRobe's Javascript ORM Framework",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",