@infisale-client/api 1.3.12 → 1.3.13
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.ts +2 -0
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -20,6 +20,7 @@ interface IApiClient {
|
|
|
20
20
|
SitemapApi: doc.SitemapApi;
|
|
21
21
|
BasketApi: doc.BasketApi;
|
|
22
22
|
OrderApi: doc.OrderApi;
|
|
23
|
+
UniquePageApi: doc.UniquePageApi;
|
|
23
24
|
interceptors: {
|
|
24
25
|
request: AxiosInterceptorManager<InternalAxiosRequestConfig>;
|
|
25
26
|
response: AxiosInterceptorManager<AxiosResponse>;
|
|
@@ -53,6 +54,7 @@ export declare class ApiClient implements IApiClient {
|
|
|
53
54
|
SitemapApi: doc.SitemapApi;
|
|
54
55
|
BasketApi: doc.BasketApi;
|
|
55
56
|
OrderApi: doc.OrderApi;
|
|
57
|
+
UniquePageApi: doc.UniquePageApi;
|
|
56
58
|
constructor(baseURL: string, options?: {
|
|
57
59
|
headers?: Record<string, string>;
|
|
58
60
|
} | undefined);
|
package/dist/index.js
CHANGED
|
@@ -64,6 +64,7 @@ class ApiClient {
|
|
|
64
64
|
this.SitemapApi = new doc.SitemapApi(undefined, this.baseURL, this.api);
|
|
65
65
|
this.BasketApi = new doc.BasketApi(undefined, this.baseURL, this.api);
|
|
66
66
|
this.OrderApi = new doc.OrderApi(undefined, this.baseURL, this.api);
|
|
67
|
+
this.UniquePageApi = new doc.UniquePageApi(undefined, this.baseURL, this.api);
|
|
67
68
|
this.interceptors = {
|
|
68
69
|
request: this.api.interceptors.request,
|
|
69
70
|
response: this.api.interceptors.response,
|
package/dist/index.mjs
CHANGED
|
@@ -32,6 +32,7 @@ export class ApiClient {
|
|
|
32
32
|
this.SitemapApi = new doc.SitemapApi(undefined, this.baseURL, this.api);
|
|
33
33
|
this.BasketApi = new doc.BasketApi(undefined, this.baseURL, this.api);
|
|
34
34
|
this.OrderApi = new doc.OrderApi(undefined, this.baseURL, this.api);
|
|
35
|
+
this.UniquePageApi = new doc.UniquePageApi(undefined, this.baseURL, this.api);
|
|
35
36
|
this.interceptors = {
|
|
36
37
|
request: this.api.interceptors.request,
|
|
37
38
|
response: this.api.interceptors.response,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.13",
|
|
4
4
|
"description": "api-sdk",
|
|
5
5
|
"author": "Muhammet KÖKLÜ <105980019+byhipernova@users.noreply.github.com>",
|
|
6
6
|
"homepage": "https://github.com/infisale/infisale-client#readme",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"bugs": {
|
|
38
38
|
"url": "https://github.com/infisale/infisale-client/issues"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "6d7686ae8adaf188bb8fa4adc3203561065bc6e4"
|
|
41
41
|
}
|