@infisale-client/api 1.2.26 → 1.2.28
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 +109 -2
- package/dist/api/api.js +23 -3
- package/dist/api/api.mjs +20 -0
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -133,6 +133,28 @@ export declare const ComponentTypeEnum: {
|
|
|
133
133
|
readonly NOT_FOUND_DETAIL: "not-found-detail";
|
|
134
134
|
};
|
|
135
135
|
export type ComponentTypeEnum = typeof ComponentTypeEnum[keyof typeof ComponentTypeEnum];
|
|
136
|
+
/**
|
|
137
|
+
*
|
|
138
|
+
* @export
|
|
139
|
+
* @enum {string}
|
|
140
|
+
*/
|
|
141
|
+
export declare const ContentPositionXEnum: {
|
|
142
|
+
readonly CENTER: "center";
|
|
143
|
+
readonly LEFT: "left";
|
|
144
|
+
readonly RIGHT: "right";
|
|
145
|
+
};
|
|
146
|
+
export type ContentPositionXEnum = typeof ContentPositionXEnum[keyof typeof ContentPositionXEnum];
|
|
147
|
+
/**
|
|
148
|
+
*
|
|
149
|
+
* @export
|
|
150
|
+
* @enum {string}
|
|
151
|
+
*/
|
|
152
|
+
export declare const ContentPositionYEnum: {
|
|
153
|
+
readonly CENTER: "center";
|
|
154
|
+
readonly TOP: "top";
|
|
155
|
+
readonly BOTTOM: "bottom";
|
|
156
|
+
};
|
|
157
|
+
export type ContentPositionYEnum = typeof ContentPositionYEnum[keyof typeof ContentPositionYEnum];
|
|
136
158
|
/**
|
|
137
159
|
*
|
|
138
160
|
* @export
|
|
@@ -2538,10 +2560,10 @@ export interface ICompanyConfigTemplateFooterInner {
|
|
|
2538
2560
|
export interface ICompanyConfigTemplateFooterInnerContentsInner {
|
|
2539
2561
|
/**
|
|
2540
2562
|
*
|
|
2541
|
-
* @type {
|
|
2563
|
+
* @type {ICompanyConfigTemplateFooterInnerContentsInnerConfig}
|
|
2542
2564
|
* @memberof ICompanyConfigTemplateFooterInnerContentsInner
|
|
2543
2565
|
*/
|
|
2544
|
-
'config':
|
|
2566
|
+
'config': ICompanyConfigTemplateFooterInnerContentsInnerConfig;
|
|
2545
2567
|
/**
|
|
2546
2568
|
*
|
|
2547
2569
|
* @type {ComponentContentTypeEnum}
|
|
@@ -2585,6 +2607,43 @@ export interface ICompanyConfigTemplateFooterInnerContentsInner {
|
|
|
2585
2607
|
*/
|
|
2586
2608
|
'title'?: PartialRecordLanguageEnumString;
|
|
2587
2609
|
}
|
|
2610
|
+
/**
|
|
2611
|
+
*
|
|
2612
|
+
* @export
|
|
2613
|
+
* @interface ICompanyConfigTemplateFooterInnerContentsInnerConfig
|
|
2614
|
+
*/
|
|
2615
|
+
export interface ICompanyConfigTemplateFooterInnerContentsInnerConfig {
|
|
2616
|
+
/**
|
|
2617
|
+
*
|
|
2618
|
+
* @type {string}
|
|
2619
|
+
* @memberof ICompanyConfigTemplateFooterInnerContentsInnerConfig
|
|
2620
|
+
*/
|
|
2621
|
+
'customStyles'?: string;
|
|
2622
|
+
/**
|
|
2623
|
+
*
|
|
2624
|
+
* @type {Array<string>}
|
|
2625
|
+
* @memberof ICompanyConfigTemplateFooterInnerContentsInnerConfig
|
|
2626
|
+
*/
|
|
2627
|
+
'customClasses'?: Array<string>;
|
|
2628
|
+
/**
|
|
2629
|
+
*
|
|
2630
|
+
* @type {string}
|
|
2631
|
+
* @memberof ICompanyConfigTemplateFooterInnerContentsInnerConfig
|
|
2632
|
+
*/
|
|
2633
|
+
'backgroundColor'?: string;
|
|
2634
|
+
/**
|
|
2635
|
+
*
|
|
2636
|
+
* @type {string}
|
|
2637
|
+
* @memberof ICompanyConfigTemplateFooterInnerContentsInnerConfig
|
|
2638
|
+
*/
|
|
2639
|
+
'textColor'?: string;
|
|
2640
|
+
/**
|
|
2641
|
+
*
|
|
2642
|
+
* @type {boolean}
|
|
2643
|
+
* @memberof ICompanyConfigTemplateFooterInnerContentsInnerConfig
|
|
2644
|
+
*/
|
|
2645
|
+
'display': boolean;
|
|
2646
|
+
}
|
|
2588
2647
|
/**
|
|
2589
2648
|
*
|
|
2590
2649
|
* @export
|
|
@@ -6963,6 +7022,24 @@ export interface ITemplateResponseComponentsInner {
|
|
|
6963
7022
|
* @interface ITemplateResponseComponentsInnerConfig
|
|
6964
7023
|
*/
|
|
6965
7024
|
export interface ITemplateResponseComponentsInnerConfig {
|
|
7025
|
+
/**
|
|
7026
|
+
*
|
|
7027
|
+
* @type {ContentPositionYEnum}
|
|
7028
|
+
* @memberof ITemplateResponseComponentsInnerConfig
|
|
7029
|
+
*/
|
|
7030
|
+
'contentPositionY'?: ContentPositionYEnum;
|
|
7031
|
+
/**
|
|
7032
|
+
*
|
|
7033
|
+
* @type {ContentPositionXEnum}
|
|
7034
|
+
* @memberof ITemplateResponseComponentsInnerConfig
|
|
7035
|
+
*/
|
|
7036
|
+
'contentPositionX'?: ContentPositionXEnum;
|
|
7037
|
+
/**
|
|
7038
|
+
*
|
|
7039
|
+
* @type {number}
|
|
7040
|
+
* @memberof ITemplateResponseComponentsInnerConfig
|
|
7041
|
+
*/
|
|
7042
|
+
'imageAspectRatio'?: number;
|
|
6966
7043
|
/**
|
|
6967
7044
|
*
|
|
6968
7045
|
* @type {ProductDetailImageZoomTypeEnum}
|
|
@@ -6999,6 +7076,18 @@ export interface ITemplateResponseComponentsInnerConfig {
|
|
|
6999
7076
|
* @memberof ITemplateResponseComponentsInnerConfig
|
|
7000
7077
|
*/
|
|
7001
7078
|
'textColor'?: string;
|
|
7079
|
+
/**
|
|
7080
|
+
*
|
|
7081
|
+
* @type {string}
|
|
7082
|
+
* @memberof ITemplateResponseComponentsInnerConfig
|
|
7083
|
+
*/
|
|
7084
|
+
'customStyles'?: string;
|
|
7085
|
+
/**
|
|
7086
|
+
*
|
|
7087
|
+
* @type {Array<string>}
|
|
7088
|
+
* @memberof ITemplateResponseComponentsInnerConfig
|
|
7089
|
+
*/
|
|
7090
|
+
'customClasses'?: Array<string>;
|
|
7002
7091
|
/**
|
|
7003
7092
|
*
|
|
7004
7093
|
* @type {string}
|
|
@@ -7017,6 +7106,12 @@ export interface ITemplateResponseComponentsInnerConfig {
|
|
|
7017
7106
|
* @memberof ITemplateResponseComponentsInnerConfig
|
|
7018
7107
|
*/
|
|
7019
7108
|
'cardContainer'?: boolean;
|
|
7109
|
+
/**
|
|
7110
|
+
*
|
|
7111
|
+
* @type {boolean}
|
|
7112
|
+
* @memberof ITemplateResponseComponentsInnerConfig
|
|
7113
|
+
*/
|
|
7114
|
+
'grid'?: boolean;
|
|
7020
7115
|
/**
|
|
7021
7116
|
*
|
|
7022
7117
|
* @type {boolean}
|
|
@@ -7146,6 +7241,18 @@ export interface ITemplateResponseComponentsInnerContentsInnerButtonsInner {
|
|
|
7146
7241
|
* @interface ITemplateResponseComponentsInnerContentsInnerConfig
|
|
7147
7242
|
*/
|
|
7148
7243
|
export interface ITemplateResponseComponentsInnerContentsInnerConfig {
|
|
7244
|
+
/**
|
|
7245
|
+
*
|
|
7246
|
+
* @type {string}
|
|
7247
|
+
* @memberof ITemplateResponseComponentsInnerContentsInnerConfig
|
|
7248
|
+
*/
|
|
7249
|
+
'customStyles': string;
|
|
7250
|
+
/**
|
|
7251
|
+
*
|
|
7252
|
+
* @type {Array<string>}
|
|
7253
|
+
* @memberof ITemplateResponseComponentsInnerContentsInnerConfig
|
|
7254
|
+
*/
|
|
7255
|
+
'customClasses': Array<string>;
|
|
7149
7256
|
/**
|
|
7150
7257
|
*
|
|
7151
7258
|
* @type {string}
|
package/dist/api/api.js
CHANGED
|
@@ -16,9 +16,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
16
16
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
17
17
|
};
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
-
exports.
|
|
20
|
-
exports.
|
|
21
|
-
exports.GetUsersDateFieldEnum = exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiAxiosParamCreator = exports.ThemeApi = exports.ThemeApiFactory = exports.ThemeApiFp = exports.ThemeApiAxiosParamCreator = exports.TemplateApi = exports.TemplateApiFactory = exports.TemplateApiFp = exports.TemplateApiAxiosParamCreator = exports.SitemapApi = exports.SitemapApiFactory = exports.SitemapApiFp = exports.SitemapApiAxiosParamCreator = exports.GetProductsDateFieldEnum = exports.ProductApi = exports.ProductApiFactory = exports.ProductApiFp = exports.ProductApiAxiosParamCreator = exports.GetPlansDateFieldEnum = exports.PlanApi = exports.PlanApiFactory = exports.PlanApiFp = exports.PlanApiAxiosParamCreator = exports.GetPagesDateFieldEnum = exports.PageApi = exports.PageApiFactory = exports.PageApiFp = exports.PageApiAxiosParamCreator = exports.GetOrdersDateFieldEnum = exports.GetMyOrdersDateFieldEnum = exports.OrderApi = exports.OrderApiFactory = exports.OrderApiFp = exports.OrderApiAxiosParamCreator = exports.GetOperationsDateFieldEnum = exports.OperationApi = exports.OperationApiFactory = exports.OperationApiFp = exports.OperationApiAxiosParamCreator = void 0;
|
|
19
|
+
exports.TemplateTypeEnum = exports.SitemapTypeEnum = exports.ProductDetailImageZoomTypeEnum = exports.PlanTypeEnum = exports.PlanStatusEnum = exports.PlanCurrencyEnum = exports.PaymentMethodEnum = exports.PaymentGatewayEnum = exports.PageTypeEnum = exports.OrderStatusEnum = exports.OrderEnum = exports.OperationStatusEnum = exports.NotificationStatusEnum = exports.NotificationMessageEnum = exports.NavigationUrlTargetEnum = exports.LanguageEnum = exports.IUserCollectionQueryParamsDateFieldEnum = exports.IProductCollectionQueryParamsDateFieldEnum = exports.IPlanCollectionQueryParamsDateFieldEnum = exports.IPageCollectionQueryParamsDateFieldEnum = exports.IOrderCollectionQueryParamsDateFieldEnum = exports.IOperationCollectionQueryParamsDateFieldEnum = exports.INotificationCollectionQueryParamsDateFieldEnum = exports.IMyOrderCollectionQueryParamsDateFieldEnum = exports.IFileCollectionQueryParamsDateFieldEnum = exports.IContactFormCollectionQueryParamsDateFieldEnum = exports.ICompanyUsersCollectionQueryParamsDateFieldEnum = exports.ICompanyCollectionQueryParamsDateFieldEnum = exports.ICollectionCollectionsQueryParamsDateFieldEnum = exports.ICategoryCollectionQueryParamsDateFieldEnum = exports.IBrandCollectionQueryParamsDateFieldEnum = exports.FontSizeEnum = exports.FileTypeEnum = exports.FileStatusEnum = exports.FileKeywordEnum = exports.EmailConfigDnsRecordTypeEnum = exports.CurrencyRateTypeEnum = exports.CurrencyEnum = exports.CountryEnum = exports.ContentStatusEnum = exports.ContentPositionYEnum = exports.ContentPositionXEnum = exports.ComponentTypeEnum = exports.ComponentProductTypeEnum = exports.ComponentProductOrderEnum = exports.ComponentProductListTypeEnum = exports.ComponentContentTypeEnum = exports.CompanyUserStatusEnum = exports.CompanyTypeEnum = exports.CompanyStatusEnum = void 0;
|
|
20
|
+
exports.NotificationApiFactory = exports.NotificationApiFp = exports.NotificationApiAxiosParamCreator = exports.GetFilesDateFieldEnum = exports.FileApi = exports.FileApiFactory = exports.FileApiFp = exports.FileApiAxiosParamCreator = exports.GetContactFormsDateFieldEnum = exports.ContactFormApi = exports.ContactFormApiFactory = exports.ContactFormApiFp = exports.ContactFormApiAxiosParamCreator = exports.GetCompanyCustomersDateFieldEnum = exports.GetCompaniesDateFieldEnum = exports.CompanyApi = exports.CompanyApiFactory = exports.CompanyApiFp = exports.CompanyApiAxiosParamCreator = exports.GetCollectionsDateFieldEnum = exports.CollectionApi = exports.CollectionApiFactory = exports.CollectionApiFp = exports.CollectionApiAxiosParamCreator = exports.GetCategoriesDateFieldEnum = exports.CategoryApi = exports.CategoryApiFactory = exports.CategoryApiFp = exports.CategoryApiAxiosParamCreator = exports.GetBrandsDateFieldEnum = exports.BrandApi = exports.BrandApiFactory = exports.BrandApiFp = exports.BrandApiAxiosParamCreator = exports.BasketApi = exports.BasketApiFactory = exports.BasketApiFp = exports.BasketApiAxiosParamCreator = exports.AuthApi = exports.AuthApiFactory = exports.AuthApiFp = exports.AuthApiAxiosParamCreator = exports.AddressApi = exports.AddressApiFactory = exports.AddressApiFp = exports.AddressApiAxiosParamCreator = exports.UserStatusEnum = exports.UserRoleEnum = exports.TimezoneEnum = exports.ThemeTypeEnum = void 0;
|
|
21
|
+
exports.GetUsersDateFieldEnum = exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiAxiosParamCreator = exports.ThemeApi = exports.ThemeApiFactory = exports.ThemeApiFp = exports.ThemeApiAxiosParamCreator = exports.TemplateApi = exports.TemplateApiFactory = exports.TemplateApiFp = exports.TemplateApiAxiosParamCreator = exports.SitemapApi = exports.SitemapApiFactory = exports.SitemapApiFp = exports.SitemapApiAxiosParamCreator = exports.GetProductsDateFieldEnum = exports.ProductApi = exports.ProductApiFactory = exports.ProductApiFp = exports.ProductApiAxiosParamCreator = exports.GetPlansDateFieldEnum = exports.PlanApi = exports.PlanApiFactory = exports.PlanApiFp = exports.PlanApiAxiosParamCreator = exports.GetPagesDateFieldEnum = exports.PageApi = exports.PageApiFactory = exports.PageApiFp = exports.PageApiAxiosParamCreator = exports.GetOrdersDateFieldEnum = exports.GetMyOrdersDateFieldEnum = exports.OrderApi = exports.OrderApiFactory = exports.OrderApiFp = exports.OrderApiAxiosParamCreator = exports.GetOperationsDateFieldEnum = exports.OperationApi = exports.OperationApiFactory = exports.OperationApiFp = exports.OperationApiAxiosParamCreator = exports.GetNotificationsDateFieldEnum = exports.NotificationApi = void 0;
|
|
22
22
|
const axios_1 = __importDefault(require("axios"));
|
|
23
23
|
// Some imports not used depending on template conditions
|
|
24
24
|
// @ts-ignore
|
|
@@ -137,6 +137,26 @@ exports.ComponentTypeEnum = {
|
|
|
137
137
|
CHECKOUT_DETAIL: 'checkout-detail',
|
|
138
138
|
NOT_FOUND_DETAIL: 'not-found-detail'
|
|
139
139
|
};
|
|
140
|
+
/**
|
|
141
|
+
*
|
|
142
|
+
* @export
|
|
143
|
+
* @enum {string}
|
|
144
|
+
*/
|
|
145
|
+
exports.ContentPositionXEnum = {
|
|
146
|
+
CENTER: 'center',
|
|
147
|
+
LEFT: 'left',
|
|
148
|
+
RIGHT: 'right'
|
|
149
|
+
};
|
|
150
|
+
/**
|
|
151
|
+
*
|
|
152
|
+
* @export
|
|
153
|
+
* @enum {string}
|
|
154
|
+
*/
|
|
155
|
+
exports.ContentPositionYEnum = {
|
|
156
|
+
CENTER: 'center',
|
|
157
|
+
TOP: 'top',
|
|
158
|
+
BOTTOM: 'bottom'
|
|
159
|
+
};
|
|
140
160
|
/**
|
|
141
161
|
*
|
|
142
162
|
* @export
|
package/dist/api/api.mjs
CHANGED
|
@@ -126,6 +126,26 @@ export const ComponentTypeEnum = {
|
|
|
126
126
|
CHECKOUT_DETAIL: 'checkout-detail',
|
|
127
127
|
NOT_FOUND_DETAIL: 'not-found-detail'
|
|
128
128
|
};
|
|
129
|
+
/**
|
|
130
|
+
*
|
|
131
|
+
* @export
|
|
132
|
+
* @enum {string}
|
|
133
|
+
*/
|
|
134
|
+
export const ContentPositionXEnum = {
|
|
135
|
+
CENTER: 'center',
|
|
136
|
+
LEFT: 'left',
|
|
137
|
+
RIGHT: 'right'
|
|
138
|
+
};
|
|
139
|
+
/**
|
|
140
|
+
*
|
|
141
|
+
* @export
|
|
142
|
+
* @enum {string}
|
|
143
|
+
*/
|
|
144
|
+
export const ContentPositionYEnum = {
|
|
145
|
+
CENTER: 'center',
|
|
146
|
+
TOP: 'top',
|
|
147
|
+
BOTTOM: 'bottom'
|
|
148
|
+
};
|
|
129
149
|
/**
|
|
130
150
|
*
|
|
131
151
|
* @export
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.28",
|
|
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": "917bbe1fbee2b7a42a3384f2f227f1f51464f474"
|
|
41
41
|
}
|