@infisale-client/api 1.1.28 → 1.1.30
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/api/api.d.ts +6 -0
- 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/api/api.d.ts
CHANGED
|
@@ -3428,6 +3428,12 @@ export interface IContactFormPostRequest {
|
|
|
3428
3428
|
* @memberof IContactFormPostRequest
|
|
3429
3429
|
*/
|
|
3430
3430
|
'message': string;
|
|
3431
|
+
/**
|
|
3432
|
+
*
|
|
3433
|
+
* @type {string}
|
|
3434
|
+
* @memberof IContactFormPostRequest
|
|
3435
|
+
*/
|
|
3436
|
+
'domain': string;
|
|
3431
3437
|
}
|
|
3432
3438
|
/**
|
|
3433
3439
|
*
|
package/dist/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ interface IApiClient {
|
|
|
16
16
|
CollectionApi: doc.CollectionApi;
|
|
17
17
|
ThemeApi: doc.ThemeApi;
|
|
18
18
|
TemplateApi: doc.TemplateApi;
|
|
19
|
+
ContactFormApi: doc.ContactFormApi;
|
|
19
20
|
interceptors: {
|
|
20
21
|
request: AxiosInterceptorManager<InternalAxiosRequestConfig>;
|
|
21
22
|
response: AxiosInterceptorManager<AxiosResponse>;
|
|
@@ -45,6 +46,7 @@ export declare class ApiClient implements IApiClient {
|
|
|
45
46
|
CollectionApi: doc.CollectionApi;
|
|
46
47
|
ThemeApi: doc.ThemeApi;
|
|
47
48
|
TemplateApi: doc.TemplateApi;
|
|
49
|
+
ContactFormApi: doc.ContactFormApi;
|
|
48
50
|
constructor(baseURL: string, options?: {
|
|
49
51
|
headers?: Record<string, string>;
|
|
50
52
|
} | undefined);
|
package/dist/index.js
CHANGED
|
@@ -60,6 +60,7 @@ class ApiClient {
|
|
|
60
60
|
this.CollectionApi = new doc.CollectionApi(undefined, this.baseURL, this.api);
|
|
61
61
|
this.ThemeApi = new doc.ThemeApi(undefined, this.baseURL, this.api);
|
|
62
62
|
this.TemplateApi = new doc.TemplateApi(undefined, this.baseURL, this.api);
|
|
63
|
+
this.ContactFormApi = new doc.ContactFormApi(undefined, this.baseURL, this.api);
|
|
63
64
|
this.interceptors = {
|
|
64
65
|
request: this.api.interceptors.request,
|
|
65
66
|
response: this.api.interceptors.response,
|
package/dist/index.mjs
CHANGED
|
@@ -28,6 +28,7 @@ export class ApiClient {
|
|
|
28
28
|
this.CollectionApi = new doc.CollectionApi(undefined, this.baseURL, this.api);
|
|
29
29
|
this.ThemeApi = new doc.ThemeApi(undefined, this.baseURL, this.api);
|
|
30
30
|
this.TemplateApi = new doc.TemplateApi(undefined, this.baseURL, this.api);
|
|
31
|
+
this.ContactFormApi = new doc.ContactFormApi(undefined, this.baseURL, this.api);
|
|
31
32
|
this.interceptors = {
|
|
32
33
|
request: this.api.interceptors.request,
|
|
33
34
|
response: this.api.interceptors.response,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.30",
|
|
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": "82ac6b64249b099bea6766557bc0d32f9dbfbec5"
|
|
41
41
|
}
|