@infisale-client/api 1.1.30 → 1.1.33
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 +95 -35
- package/dist/api/api.js +10 -11
- package/dist/api/api.mjs +9 -10
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -514,18 +514,17 @@ export type FileTypeEnum = typeof FileTypeEnum[keyof typeof FileTypeEnum];
|
|
|
514
514
|
* @export
|
|
515
515
|
* @enum {string}
|
|
516
516
|
*/
|
|
517
|
-
export declare const
|
|
518
|
-
readonly
|
|
519
|
-
readonly
|
|
520
|
-
readonly
|
|
521
|
-
readonly
|
|
522
|
-
readonly
|
|
523
|
-
readonly
|
|
524
|
-
readonly
|
|
525
|
-
readonly
|
|
526
|
-
readonly _1_1_2: "1-1-2";
|
|
517
|
+
export declare const FontSizeEnum: {
|
|
518
|
+
readonly XS: "text-xs";
|
|
519
|
+
readonly SM: "text-sm";
|
|
520
|
+
readonly BASE: "text-base";
|
|
521
|
+
readonly LG: "text-lg";
|
|
522
|
+
readonly XL: "text-xl";
|
|
523
|
+
readonly _2XL: "text-2xl";
|
|
524
|
+
readonly _4XL: "text-4xl";
|
|
525
|
+
readonly _6XL: "text-6xl";
|
|
527
526
|
};
|
|
528
|
-
export type
|
|
527
|
+
export type FontSizeEnum = typeof FontSizeEnum[keyof typeof FontSizeEnum];
|
|
529
528
|
/**
|
|
530
529
|
*
|
|
531
530
|
* @export
|
|
@@ -2318,10 +2317,10 @@ export interface ICompanyConfigTemplateFooterInnerContentsInner {
|
|
|
2318
2317
|
'url'?: PartialRecordLanguageEnumString;
|
|
2319
2318
|
/**
|
|
2320
2319
|
*
|
|
2321
|
-
* @type {Array<
|
|
2320
|
+
* @type {Array<ITemplateResponseComponentsInnerIdentityButtonsInner>}
|
|
2322
2321
|
* @memberof ICompanyConfigTemplateFooterInnerContentsInner
|
|
2323
2322
|
*/
|
|
2324
|
-
'buttons'?: Array<
|
|
2323
|
+
'buttons'?: Array<ITemplateResponseComponentsInnerIdentityButtonsInner>;
|
|
2325
2324
|
/**
|
|
2326
2325
|
*
|
|
2327
2326
|
* @type {PartialRecordLanguageEnumIImage}
|
|
@@ -2347,25 +2346,6 @@ export interface ICompanyConfigTemplateFooterInnerContentsInner {
|
|
|
2347
2346
|
*/
|
|
2348
2347
|
'title'?: PartialRecordLanguageEnumString;
|
|
2349
2348
|
}
|
|
2350
|
-
/**
|
|
2351
|
-
*
|
|
2352
|
-
* @export
|
|
2353
|
-
* @interface ICompanyConfigTemplateFooterInnerContentsInnerButtonsInner
|
|
2354
|
-
*/
|
|
2355
|
-
export interface ICompanyConfigTemplateFooterInnerContentsInnerButtonsInner {
|
|
2356
|
-
/**
|
|
2357
|
-
*
|
|
2358
|
-
* @type {PartialRecordLanguageEnumString}
|
|
2359
|
-
* @memberof ICompanyConfigTemplateFooterInnerContentsInnerButtonsInner
|
|
2360
|
-
*/
|
|
2361
|
-
'url': PartialRecordLanguageEnumString;
|
|
2362
|
-
/**
|
|
2363
|
-
*
|
|
2364
|
-
* @type {PartialRecordLanguageEnumString}
|
|
2365
|
-
* @memberof ICompanyConfigTemplateFooterInnerContentsInnerButtonsInner
|
|
2366
|
-
*/
|
|
2367
|
-
'title': PartialRecordLanguageEnumString;
|
|
2368
|
-
}
|
|
2369
2349
|
/**
|
|
2370
2350
|
*
|
|
2371
2351
|
* @export
|
|
@@ -6014,24 +5994,48 @@ export interface ITemplateResponseComponentsInner {
|
|
|
6014
5994
|
* @interface ITemplateResponseComponentsInnerConfig
|
|
6015
5995
|
*/
|
|
6016
5996
|
export interface ITemplateResponseComponentsInnerConfig {
|
|
5997
|
+
/**
|
|
5998
|
+
*
|
|
5999
|
+
* @type {ITemplateResponseComponentsInnerConfigFontSize}
|
|
6000
|
+
* @memberof ITemplateResponseComponentsInnerConfig
|
|
6001
|
+
*/
|
|
6002
|
+
'fontSize'?: ITemplateResponseComponentsInnerConfigFontSize;
|
|
6003
|
+
/**
|
|
6004
|
+
*
|
|
6005
|
+
* @type {string}
|
|
6006
|
+
* @memberof ITemplateResponseComponentsInnerConfig
|
|
6007
|
+
*/
|
|
6008
|
+
'textColor'?: string;
|
|
6009
|
+
/**
|
|
6010
|
+
*
|
|
6011
|
+
* @type {string}
|
|
6012
|
+
* @memberof ITemplateResponseComponentsInnerConfig
|
|
6013
|
+
*/
|
|
6014
|
+
'backgroundColor'?: string;
|
|
6017
6015
|
/**
|
|
6018
6016
|
*
|
|
6019
6017
|
* @type {boolean}
|
|
6020
6018
|
* @memberof ITemplateResponseComponentsInnerConfig
|
|
6021
6019
|
*/
|
|
6022
|
-
'
|
|
6020
|
+
'slide'?: boolean;
|
|
6023
6021
|
/**
|
|
6024
6022
|
*
|
|
6025
|
-
* @type {
|
|
6023
|
+
* @type {boolean}
|
|
6026
6024
|
* @memberof ITemplateResponseComponentsInnerConfig
|
|
6027
6025
|
*/
|
|
6028
|
-
'
|
|
6026
|
+
'display': boolean;
|
|
6029
6027
|
/**
|
|
6030
6028
|
*
|
|
6031
6029
|
* @type {number}
|
|
6032
6030
|
* @memberof ITemplateResponseComponentsInnerConfig
|
|
6033
6031
|
*/
|
|
6034
6032
|
'interval'?: number;
|
|
6033
|
+
/**
|
|
6034
|
+
*
|
|
6035
|
+
* @type {number}
|
|
6036
|
+
* @memberof ITemplateResponseComponentsInnerConfig
|
|
6037
|
+
*/
|
|
6038
|
+
'mobilePerViewCount'?: number;
|
|
6035
6039
|
/**
|
|
6036
6040
|
*
|
|
6037
6041
|
* @type {number}
|
|
@@ -6051,6 +6055,25 @@ export interface ITemplateResponseComponentsInnerConfig {
|
|
|
6051
6055
|
*/
|
|
6052
6056
|
'addName'?: boolean;
|
|
6053
6057
|
}
|
|
6058
|
+
/**
|
|
6059
|
+
*
|
|
6060
|
+
* @export
|
|
6061
|
+
* @interface ITemplateResponseComponentsInnerConfigFontSize
|
|
6062
|
+
*/
|
|
6063
|
+
export interface ITemplateResponseComponentsInnerConfigFontSize {
|
|
6064
|
+
/**
|
|
6065
|
+
*
|
|
6066
|
+
* @type {FontSizeEnum}
|
|
6067
|
+
* @memberof ITemplateResponseComponentsInnerConfigFontSize
|
|
6068
|
+
*/
|
|
6069
|
+
'description'?: FontSizeEnum;
|
|
6070
|
+
/**
|
|
6071
|
+
*
|
|
6072
|
+
* @type {FontSizeEnum}
|
|
6073
|
+
* @memberof ITemplateResponseComponentsInnerConfigFontSize
|
|
6074
|
+
*/
|
|
6075
|
+
'title'?: FontSizeEnum;
|
|
6076
|
+
}
|
|
6054
6077
|
/**
|
|
6055
6078
|
*
|
|
6056
6079
|
* @export
|
|
@@ -6143,6 +6166,18 @@ export interface ITemplateResponseComponentsInnerContentsInnerButtonsInner {
|
|
|
6143
6166
|
* @interface ITemplateResponseComponentsInnerContentsInnerConfig
|
|
6144
6167
|
*/
|
|
6145
6168
|
export interface ITemplateResponseComponentsInnerContentsInnerConfig {
|
|
6169
|
+
/**
|
|
6170
|
+
*
|
|
6171
|
+
* @type {string}
|
|
6172
|
+
* @memberof ITemplateResponseComponentsInnerContentsInnerConfig
|
|
6173
|
+
*/
|
|
6174
|
+
'backgroundColor'?: string;
|
|
6175
|
+
/**
|
|
6176
|
+
*
|
|
6177
|
+
* @type {string}
|
|
6178
|
+
* @memberof ITemplateResponseComponentsInnerContentsInnerConfig
|
|
6179
|
+
*/
|
|
6180
|
+
'textColor'?: string;
|
|
6146
6181
|
/**
|
|
6147
6182
|
*
|
|
6148
6183
|
* @type {boolean}
|
|
@@ -6156,6 +6191,12 @@ export interface ITemplateResponseComponentsInnerContentsInnerConfig {
|
|
|
6156
6191
|
* @interface ITemplateResponseComponentsInnerIdentity
|
|
6157
6192
|
*/
|
|
6158
6193
|
export interface ITemplateResponseComponentsInnerIdentity {
|
|
6194
|
+
/**
|
|
6195
|
+
*
|
|
6196
|
+
* @type {Array<ITemplateResponseComponentsInnerIdentityButtonsInner>}
|
|
6197
|
+
* @memberof ITemplateResponseComponentsInnerIdentity
|
|
6198
|
+
*/
|
|
6199
|
+
'buttons'?: Array<ITemplateResponseComponentsInnerIdentityButtonsInner>;
|
|
6159
6200
|
/**
|
|
6160
6201
|
*
|
|
6161
6202
|
* @type {PartialRecordLanguageEnumIImage}
|
|
@@ -6181,6 +6222,25 @@ export interface ITemplateResponseComponentsInnerIdentity {
|
|
|
6181
6222
|
*/
|
|
6182
6223
|
'title'?: PartialRecordLanguageEnumString;
|
|
6183
6224
|
}
|
|
6225
|
+
/**
|
|
6226
|
+
*
|
|
6227
|
+
* @export
|
|
6228
|
+
* @interface ITemplateResponseComponentsInnerIdentityButtonsInner
|
|
6229
|
+
*/
|
|
6230
|
+
export interface ITemplateResponseComponentsInnerIdentityButtonsInner {
|
|
6231
|
+
/**
|
|
6232
|
+
*
|
|
6233
|
+
* @type {PartialRecordLanguageEnumString}
|
|
6234
|
+
* @memberof ITemplateResponseComponentsInnerIdentityButtonsInner
|
|
6235
|
+
*/
|
|
6236
|
+
'url': PartialRecordLanguageEnumString;
|
|
6237
|
+
/**
|
|
6238
|
+
*
|
|
6239
|
+
* @type {PartialRecordLanguageEnumString}
|
|
6240
|
+
* @memberof ITemplateResponseComponentsInnerIdentityButtonsInner
|
|
6241
|
+
*/
|
|
6242
|
+
'title': PartialRecordLanguageEnumString;
|
|
6243
|
+
}
|
|
6184
6244
|
/**
|
|
6185
6245
|
*
|
|
6186
6246
|
* @export
|
package/dist/api/api.js
CHANGED
|
@@ -16,7 +16,7 @@ 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.CategoryApiFp = exports.CategoryApiAxiosParamCreator = 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 = exports.TemplateTypeEnum = exports.PlanTypeEnum = exports.PlanStatusEnum = exports.PlanCurrencyEnum = exports.PageTypeEnum = exports.OrderEnum = exports.OperationStatusEnum = exports.NotificationStatusEnum = exports.NotificationMessageEnum = exports.NavigationUrlTargetEnum = exports.LanguageEnum = exports.
|
|
19
|
+
exports.CategoryApiFp = exports.CategoryApiAxiosParamCreator = 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 = exports.TemplateTypeEnum = exports.PlanTypeEnum = exports.PlanStatusEnum = exports.PlanCurrencyEnum = exports.PageTypeEnum = exports.OrderEnum = exports.OperationStatusEnum = exports.NotificationStatusEnum = exports.NotificationMessageEnum = exports.NavigationUrlTargetEnum = exports.LanguageEnum = exports.FontSizeEnum = exports.FileTypeEnum = exports.FileStatusEnum = exports.FileKeywordEnum = exports.EmailConfigDnsRecordTypeEnum = exports.CurrencyRateTypeEnum = exports.CurrencyEnum = exports.CountryEnum = exports.ContentStatusEnum = exports.ComponentTypeEnum = exports.ComponentProductTypeEnum = exports.ComponentProductOrderEnum = exports.ComponentProductListTypeEnum = exports.ComponentContentTypeEnum = exports.CompanyUserStatusEnum = exports.CompanyTypeEnum = exports.CompanyStatusEnum = void 0;
|
|
20
20
|
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.ProductApi = exports.ProductApiFactory = exports.ProductApiFp = exports.ProductApiAxiosParamCreator = exports.PlanApi = exports.PlanApiFactory = exports.PlanApiFp = exports.PlanApiAxiosParamCreator = exports.PageApi = exports.PageApiFactory = exports.PageApiFp = exports.PageApiAxiosParamCreator = exports.OperationApi = exports.OperationApiFactory = exports.OperationApiFp = exports.OperationApiAxiosParamCreator = exports.NotificationApi = exports.NotificationApiFactory = exports.NotificationApiFp = exports.NotificationApiAxiosParamCreator = exports.FileApi = exports.FileApiFactory = exports.FileApiFp = exports.FileApiAxiosParamCreator = exports.ContactFormApi = exports.ContactFormApiFactory = exports.ContactFormApiFp = exports.ContactFormApiAxiosParamCreator = exports.CompanyApi = exports.CompanyApiFactory = exports.CompanyApiFp = exports.CompanyApiAxiosParamCreator = exports.CollectionApi = exports.CollectionApiFactory = exports.CollectionApiFp = exports.CollectionApiAxiosParamCreator = exports.CategoryApi = exports.CategoryApiFactory = void 0;
|
|
21
21
|
const axios_1 = __importDefault(require("axios"));
|
|
22
22
|
// Some imports not used depending on template conditions
|
|
@@ -465,16 +465,15 @@ exports.FileTypeEnum = {
|
|
|
465
465
|
* @export
|
|
466
466
|
* @enum {string}
|
|
467
467
|
*/
|
|
468
|
-
exports.
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
_1_1_2: '1-1-2'
|
|
468
|
+
exports.FontSizeEnum = {
|
|
469
|
+
XS: 'text-xs',
|
|
470
|
+
SM: 'text-sm',
|
|
471
|
+
BASE: 'text-base',
|
|
472
|
+
LG: 'text-lg',
|
|
473
|
+
XL: 'text-xl',
|
|
474
|
+
_2XL: 'text-2xl',
|
|
475
|
+
_4XL: 'text-4xl',
|
|
476
|
+
_6XL: 'text-6xl'
|
|
478
477
|
};
|
|
479
478
|
/**
|
|
480
479
|
*
|
package/dist/api/api.mjs
CHANGED
|
@@ -455,16 +455,15 @@ export const FileTypeEnum = {
|
|
|
455
455
|
* @export
|
|
456
456
|
* @enum {string}
|
|
457
457
|
*/
|
|
458
|
-
export const
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
_1_1_2: '1-1-2'
|
|
458
|
+
export const FontSizeEnum = {
|
|
459
|
+
XS: 'text-xs',
|
|
460
|
+
SM: 'text-sm',
|
|
461
|
+
BASE: 'text-base',
|
|
462
|
+
LG: 'text-lg',
|
|
463
|
+
XL: 'text-xl',
|
|
464
|
+
_2XL: 'text-2xl',
|
|
465
|
+
_4XL: 'text-4xl',
|
|
466
|
+
_6XL: 'text-6xl'
|
|
468
467
|
};
|
|
469
468
|
/**
|
|
470
469
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.33",
|
|
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": "991becae8ef6cf5bff3e06c1b8d1ec2da0b6197b"
|
|
41
41
|
}
|