nextemos 2.1.5 → 2.1.6
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { IApiResponse } from '
|
|
2
|
-
import { HTTPMethod as httpMethods } from '
|
|
1
|
+
import { IApiResponse } from '../interfaces/';
|
|
2
|
+
import { HTTPMethod as httpMethods } from '../enums';
|
|
3
3
|
type HTTPMethod = httpMethods;
|
|
4
4
|
interface RequestOptions extends RequestInit {
|
|
5
5
|
url: string;
|
|
@@ -21,7 +21,7 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
21
21
|
};
|
|
22
22
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23
23
|
// enums
|
|
24
|
-
const enums_1 = require("
|
|
24
|
+
const enums_1 = require("../enums");
|
|
25
25
|
/**
|
|
26
26
|
* Creates a HTTP client for making requests.
|
|
27
27
|
* @returns {object} HTTP client with methods for making requests.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IApiResponse, IBannerResponse, IBannersResponse } from '
|
|
1
|
+
import { IApiResponse, IBannerResponse, IBannersResponse } from '../interfaces';
|
|
2
2
|
/**
|
|
3
3
|
* BannerService arayüzü, Banner ile ilgili API çağrılarını temsil eder.
|
|
4
4
|
* Banner ile ilgili çeşitli verileri almak için kullanılabilecek metotlar içerir.
|
package/dist/services/banner.js
CHANGED
|
@@ -16,7 +16,7 @@ exports.Banner = void 0;
|
|
|
16
16
|
// URL'lerin bulunduğu dosyayı içe aktarır
|
|
17
17
|
const urls_1 = __importDefault(require("./urls"));
|
|
18
18
|
// Yardımcı fonksiyonları içe aktarır
|
|
19
|
-
const helpers_1 = require("
|
|
19
|
+
const helpers_1 = require("../helpers");
|
|
20
20
|
/**
|
|
21
21
|
* @constant Banner
|
|
22
22
|
* @description Banner ile ilgili hizmetleri sağlayan nesne. BannerService arayüzünü uygular.
|