nextemos 4.7.0 → 4.7.2

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.
@@ -6,3 +6,4 @@ export * from './scopeTypes';
6
6
  export * from './addressPartTypeId';
7
7
  export * from './deviceTypes';
8
8
  export * from './cartFlags';
9
+ export * from './paymentProviders';
@@ -22,3 +22,4 @@ __exportStar(require("./scopeTypes"), exports);
22
22
  __exportStar(require("./addressPartTypeId"), exports);
23
23
  __exportStar(require("./deviceTypes"), exports);
24
24
  __exportStar(require("./cartFlags"), exports);
25
+ __exportStar(require("./paymentProviders"), exports);
@@ -0,0 +1,21 @@
1
+ export declare enum PAYMENT_PROVIDERS {
2
+ CREDIT_CARD = "CreditCard",
3
+ EFT = "Transfer",
4
+ FREE_OF_CHARGE = "FreeOfCharge",
5
+ GARANTI_PAY = "GarantiPay",
6
+ BORDRO = "Bordro",
7
+ PAYPAL = "Paypal",
8
+ GIROGATE = "GiroGate",
9
+ HEPSIPAY = "Hepsipay",
10
+ BKM_EXPRESS = "BkmExpress",
11
+ VR_PAY = "VrPay",
12
+ PAY_AT_DOOR = "PayAtDoor",
13
+ UNZER_PAY = "Unzerpay",
14
+ IYZICO = "Iyzico",
15
+ IYZICO_CREDIT_CARD = "IyzicoCreditCard",
16
+ STRIPE = "Stripe",
17
+ PARTIAL = "Partial",
18
+ PARAM = "Param",
19
+ OTHER = "Other",
20
+ ODERO_CREDIT_CARD = "OderoCreditCard"
21
+ }
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PAYMENT_PROVIDERS = void 0;
4
+ var PAYMENT_PROVIDERS;
5
+ (function (PAYMENT_PROVIDERS) {
6
+ PAYMENT_PROVIDERS["CREDIT_CARD"] = "CreditCard";
7
+ PAYMENT_PROVIDERS["EFT"] = "Transfer";
8
+ PAYMENT_PROVIDERS["FREE_OF_CHARGE"] = "FreeOfCharge";
9
+ PAYMENT_PROVIDERS["GARANTI_PAY"] = "GarantiPay";
10
+ PAYMENT_PROVIDERS["BORDRO"] = "Bordro";
11
+ PAYMENT_PROVIDERS["PAYPAL"] = "Paypal";
12
+ PAYMENT_PROVIDERS["GIROGATE"] = "GiroGate";
13
+ PAYMENT_PROVIDERS["HEPSIPAY"] = "Hepsipay";
14
+ PAYMENT_PROVIDERS["BKM_EXPRESS"] = "BkmExpress";
15
+ PAYMENT_PROVIDERS["VR_PAY"] = "VrPay";
16
+ PAYMENT_PROVIDERS["PAY_AT_DOOR"] = "PayAtDoor";
17
+ PAYMENT_PROVIDERS["UNZER_PAY"] = "Unzerpay";
18
+ PAYMENT_PROVIDERS["IYZICO"] = "Iyzico";
19
+ PAYMENT_PROVIDERS["IYZICO_CREDIT_CARD"] = "IyzicoCreditCard";
20
+ PAYMENT_PROVIDERS["STRIPE"] = "Stripe";
21
+ PAYMENT_PROVIDERS["PARTIAL"] = "Partial";
22
+ PAYMENT_PROVIDERS["PARAM"] = "Param";
23
+ PAYMENT_PROVIDERS["OTHER"] = "Other";
24
+ PAYMENT_PROVIDERS["ODERO_CREDIT_CARD"] = "OderoCreditCard";
25
+ })(PAYMENT_PROVIDERS || (exports.PAYMENT_PROVIDERS = PAYMENT_PROVIDERS = {}));
@@ -114,6 +114,7 @@ export interface IGetStockAlertsRequest extends IRequestBase {
114
114
  export interface IAddStockAlertRequest extends IRequestBase {
115
115
  productStockAlerts: {
116
116
  productId: number;
117
+ stockBarCodeId: number;
117
118
  }[];
118
119
  }
119
120
  export interface IRemoveStockAlertRequest extends IRequestBase {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nextemos",
3
- "version": "4.7.0",
3
+ "version": "4.7.2",
4
4
  "description": "For helpers and hooks used in NextJS projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "./dist/index.d.ts",