@infisale-client/api 1.1.29 → 1.1.32
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 +91 -41
- package/dist/api/api.js +2 -18
- package/dist/api/api.mjs +0 -16
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -509,23 +509,6 @@ export declare const FileTypeEnum: {
|
|
|
509
509
|
readonly OTHER: "other";
|
|
510
510
|
};
|
|
511
511
|
export type FileTypeEnum = typeof FileTypeEnum[keyof typeof FileTypeEnum];
|
|
512
|
-
/**
|
|
513
|
-
*
|
|
514
|
-
* @export
|
|
515
|
-
* @enum {string}
|
|
516
|
-
*/
|
|
517
|
-
export declare const GridTypeEnum: {
|
|
518
|
-
readonly _1_1: "1-1";
|
|
519
|
-
readonly _1_2: "1-2";
|
|
520
|
-
readonly _1_3: "1-3";
|
|
521
|
-
readonly _2_1: "2-1";
|
|
522
|
-
readonly _2_2: "2-2";
|
|
523
|
-
readonly _2_1_1: "2-1-1";
|
|
524
|
-
readonly _1_2_1: "1-2-1";
|
|
525
|
-
readonly _1_1_1: "1-1-1";
|
|
526
|
-
readonly _1_1_2: "1-1-2";
|
|
527
|
-
};
|
|
528
|
-
export type GridTypeEnum = typeof GridTypeEnum[keyof typeof GridTypeEnum];
|
|
529
512
|
/**
|
|
530
513
|
*
|
|
531
514
|
* @export
|
|
@@ -2318,10 +2301,10 @@ export interface ICompanyConfigTemplateFooterInnerContentsInner {
|
|
|
2318
2301
|
'url'?: PartialRecordLanguageEnumString;
|
|
2319
2302
|
/**
|
|
2320
2303
|
*
|
|
2321
|
-
* @type {Array<
|
|
2304
|
+
* @type {Array<ITemplateResponseComponentsInnerIdentityButtonsInner>}
|
|
2322
2305
|
* @memberof ICompanyConfigTemplateFooterInnerContentsInner
|
|
2323
2306
|
*/
|
|
2324
|
-
'buttons'?: Array<
|
|
2307
|
+
'buttons'?: Array<ITemplateResponseComponentsInnerIdentityButtonsInner>;
|
|
2325
2308
|
/**
|
|
2326
2309
|
*
|
|
2327
2310
|
* @type {PartialRecordLanguageEnumIImage}
|
|
@@ -2347,25 +2330,6 @@ export interface ICompanyConfigTemplateFooterInnerContentsInner {
|
|
|
2347
2330
|
*/
|
|
2348
2331
|
'title'?: PartialRecordLanguageEnumString;
|
|
2349
2332
|
}
|
|
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
2333
|
/**
|
|
2370
2334
|
*
|
|
2371
2335
|
* @export
|
|
@@ -3428,6 +3392,12 @@ export interface IContactFormPostRequest {
|
|
|
3428
3392
|
* @memberof IContactFormPostRequest
|
|
3429
3393
|
*/
|
|
3430
3394
|
'message': string;
|
|
3395
|
+
/**
|
|
3396
|
+
*
|
|
3397
|
+
* @type {string}
|
|
3398
|
+
* @memberof IContactFormPostRequest
|
|
3399
|
+
*/
|
|
3400
|
+
'domain': string;
|
|
3431
3401
|
}
|
|
3432
3402
|
/**
|
|
3433
3403
|
*
|
|
@@ -6008,24 +5978,48 @@ export interface ITemplateResponseComponentsInner {
|
|
|
6008
5978
|
* @interface ITemplateResponseComponentsInnerConfig
|
|
6009
5979
|
*/
|
|
6010
5980
|
export interface ITemplateResponseComponentsInnerConfig {
|
|
5981
|
+
/**
|
|
5982
|
+
*
|
|
5983
|
+
* @type {ITemplateResponseComponentsInnerConfigFontSize}
|
|
5984
|
+
* @memberof ITemplateResponseComponentsInnerConfig
|
|
5985
|
+
*/
|
|
5986
|
+
'fontSize': ITemplateResponseComponentsInnerConfigFontSize;
|
|
5987
|
+
/**
|
|
5988
|
+
*
|
|
5989
|
+
* @type {string}
|
|
5990
|
+
* @memberof ITemplateResponseComponentsInnerConfig
|
|
5991
|
+
*/
|
|
5992
|
+
'textColor'?: string;
|
|
5993
|
+
/**
|
|
5994
|
+
*
|
|
5995
|
+
* @type {string}
|
|
5996
|
+
* @memberof ITemplateResponseComponentsInnerConfig
|
|
5997
|
+
*/
|
|
5998
|
+
'backgroundColor'?: string;
|
|
6011
5999
|
/**
|
|
6012
6000
|
*
|
|
6013
6001
|
* @type {boolean}
|
|
6014
6002
|
* @memberof ITemplateResponseComponentsInnerConfig
|
|
6015
6003
|
*/
|
|
6016
|
-
'
|
|
6004
|
+
'slide'?: boolean;
|
|
6017
6005
|
/**
|
|
6018
6006
|
*
|
|
6019
|
-
* @type {
|
|
6007
|
+
* @type {boolean}
|
|
6020
6008
|
* @memberof ITemplateResponseComponentsInnerConfig
|
|
6021
6009
|
*/
|
|
6022
|
-
'
|
|
6010
|
+
'display': boolean;
|
|
6023
6011
|
/**
|
|
6024
6012
|
*
|
|
6025
6013
|
* @type {number}
|
|
6026
6014
|
* @memberof ITemplateResponseComponentsInnerConfig
|
|
6027
6015
|
*/
|
|
6028
6016
|
'interval'?: number;
|
|
6017
|
+
/**
|
|
6018
|
+
*
|
|
6019
|
+
* @type {number}
|
|
6020
|
+
* @memberof ITemplateResponseComponentsInnerConfig
|
|
6021
|
+
*/
|
|
6022
|
+
'mobilePerViewCount'?: number;
|
|
6029
6023
|
/**
|
|
6030
6024
|
*
|
|
6031
6025
|
* @type {number}
|
|
@@ -6045,6 +6039,25 @@ export interface ITemplateResponseComponentsInnerConfig {
|
|
|
6045
6039
|
*/
|
|
6046
6040
|
'addName'?: boolean;
|
|
6047
6041
|
}
|
|
6042
|
+
/**
|
|
6043
|
+
*
|
|
6044
|
+
* @export
|
|
6045
|
+
* @interface ITemplateResponseComponentsInnerConfigFontSize
|
|
6046
|
+
*/
|
|
6047
|
+
export interface ITemplateResponseComponentsInnerConfigFontSize {
|
|
6048
|
+
/**
|
|
6049
|
+
*
|
|
6050
|
+
* @type {string}
|
|
6051
|
+
* @memberof ITemplateResponseComponentsInnerConfigFontSize
|
|
6052
|
+
*/
|
|
6053
|
+
'description': string;
|
|
6054
|
+
/**
|
|
6055
|
+
*
|
|
6056
|
+
* @type {string}
|
|
6057
|
+
* @memberof ITemplateResponseComponentsInnerConfigFontSize
|
|
6058
|
+
*/
|
|
6059
|
+
'title': string;
|
|
6060
|
+
}
|
|
6048
6061
|
/**
|
|
6049
6062
|
*
|
|
6050
6063
|
* @export
|
|
@@ -6137,6 +6150,18 @@ export interface ITemplateResponseComponentsInnerContentsInnerButtonsInner {
|
|
|
6137
6150
|
* @interface ITemplateResponseComponentsInnerContentsInnerConfig
|
|
6138
6151
|
*/
|
|
6139
6152
|
export interface ITemplateResponseComponentsInnerContentsInnerConfig {
|
|
6153
|
+
/**
|
|
6154
|
+
*
|
|
6155
|
+
* @type {string}
|
|
6156
|
+
* @memberof ITemplateResponseComponentsInnerContentsInnerConfig
|
|
6157
|
+
*/
|
|
6158
|
+
'backgroundColor'?: string;
|
|
6159
|
+
/**
|
|
6160
|
+
*
|
|
6161
|
+
* @type {string}
|
|
6162
|
+
* @memberof ITemplateResponseComponentsInnerContentsInnerConfig
|
|
6163
|
+
*/
|
|
6164
|
+
'textColor'?: string;
|
|
6140
6165
|
/**
|
|
6141
6166
|
*
|
|
6142
6167
|
* @type {boolean}
|
|
@@ -6150,6 +6175,12 @@ export interface ITemplateResponseComponentsInnerContentsInnerConfig {
|
|
|
6150
6175
|
* @interface ITemplateResponseComponentsInnerIdentity
|
|
6151
6176
|
*/
|
|
6152
6177
|
export interface ITemplateResponseComponentsInnerIdentity {
|
|
6178
|
+
/**
|
|
6179
|
+
*
|
|
6180
|
+
* @type {Array<ITemplateResponseComponentsInnerIdentityButtonsInner>}
|
|
6181
|
+
* @memberof ITemplateResponseComponentsInnerIdentity
|
|
6182
|
+
*/
|
|
6183
|
+
'buttons'?: Array<ITemplateResponseComponentsInnerIdentityButtonsInner>;
|
|
6153
6184
|
/**
|
|
6154
6185
|
*
|
|
6155
6186
|
* @type {PartialRecordLanguageEnumIImage}
|
|
@@ -6175,6 +6206,25 @@ export interface ITemplateResponseComponentsInnerIdentity {
|
|
|
6175
6206
|
*/
|
|
6176
6207
|
'title'?: PartialRecordLanguageEnumString;
|
|
6177
6208
|
}
|
|
6209
|
+
/**
|
|
6210
|
+
*
|
|
6211
|
+
* @export
|
|
6212
|
+
* @interface ITemplateResponseComponentsInnerIdentityButtonsInner
|
|
6213
|
+
*/
|
|
6214
|
+
export interface ITemplateResponseComponentsInnerIdentityButtonsInner {
|
|
6215
|
+
/**
|
|
6216
|
+
*
|
|
6217
|
+
* @type {PartialRecordLanguageEnumString}
|
|
6218
|
+
* @memberof ITemplateResponseComponentsInnerIdentityButtonsInner
|
|
6219
|
+
*/
|
|
6220
|
+
'url': PartialRecordLanguageEnumString;
|
|
6221
|
+
/**
|
|
6222
|
+
*
|
|
6223
|
+
* @type {PartialRecordLanguageEnumString}
|
|
6224
|
+
* @memberof ITemplateResponseComponentsInnerIdentityButtonsInner
|
|
6225
|
+
*/
|
|
6226
|
+
'title': PartialRecordLanguageEnumString;
|
|
6227
|
+
}
|
|
6178
6228
|
/**
|
|
6179
6229
|
*
|
|
6180
6230
|
* @export
|
package/dist/api/api.js
CHANGED
|
@@ -16,8 +16,8 @@ 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.
|
|
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 =
|
|
19
|
+
exports.CategoryApiFactory = 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.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
|
+
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 = void 0;
|
|
21
21
|
const axios_1 = __importDefault(require("axios"));
|
|
22
22
|
// Some imports not used depending on template conditions
|
|
23
23
|
// @ts-ignore
|
|
@@ -460,22 +460,6 @@ exports.FileTypeEnum = {
|
|
|
460
460
|
DOCUMENT: 'document',
|
|
461
461
|
OTHER: 'other'
|
|
462
462
|
};
|
|
463
|
-
/**
|
|
464
|
-
*
|
|
465
|
-
* @export
|
|
466
|
-
* @enum {string}
|
|
467
|
-
*/
|
|
468
|
-
exports.GridTypeEnum = {
|
|
469
|
-
_1_1: '1-1',
|
|
470
|
-
_1_2: '1-2',
|
|
471
|
-
_1_3: '1-3',
|
|
472
|
-
_2_1: '2-1',
|
|
473
|
-
_2_2: '2-2',
|
|
474
|
-
_2_1_1: '2-1-1',
|
|
475
|
-
_1_2_1: '1-2-1',
|
|
476
|
-
_1_1_1: '1-1-1',
|
|
477
|
-
_1_1_2: '1-1-2'
|
|
478
|
-
};
|
|
479
463
|
/**
|
|
480
464
|
*
|
|
481
465
|
* @export
|
package/dist/api/api.mjs
CHANGED
|
@@ -450,22 +450,6 @@ export const FileTypeEnum = {
|
|
|
450
450
|
DOCUMENT: 'document',
|
|
451
451
|
OTHER: 'other'
|
|
452
452
|
};
|
|
453
|
-
/**
|
|
454
|
-
*
|
|
455
|
-
* @export
|
|
456
|
-
* @enum {string}
|
|
457
|
-
*/
|
|
458
|
-
export const GridTypeEnum = {
|
|
459
|
-
_1_1: '1-1',
|
|
460
|
-
_1_2: '1-2',
|
|
461
|
-
_1_3: '1-3',
|
|
462
|
-
_2_1: '2-1',
|
|
463
|
-
_2_2: '2-2',
|
|
464
|
-
_2_1_1: '2-1-1',
|
|
465
|
-
_1_2_1: '1-2-1',
|
|
466
|
-
_1_1_1: '1-1-1',
|
|
467
|
-
_1_1_2: '1-1-2'
|
|
468
|
-
};
|
|
469
453
|
/**
|
|
470
454
|
*
|
|
471
455
|
* @export
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.32",
|
|
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": "d92059d0e4711e9cd3c3e6a18c2f2f897e3097b6"
|
|
41
41
|
}
|