@infisale-client/api-client 1.3.44 → 1.3.46
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 +47 -46
- package/dist/api/api.js +3 -12
- package/dist/api/api.mjs +0 -9
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -404,16 +404,6 @@ export declare const FileKeywordEnum: {
|
|
|
404
404
|
readonly LEGAL: "legal";
|
|
405
405
|
};
|
|
406
406
|
export type FileKeywordEnum = typeof FileKeywordEnum[keyof typeof FileKeywordEnum];
|
|
407
|
-
/**
|
|
408
|
-
*
|
|
409
|
-
* @export
|
|
410
|
-
* @enum {string}
|
|
411
|
-
*/
|
|
412
|
-
export declare const FileStatusEnum: {
|
|
413
|
-
readonly WAITING_PROCESS: "waiting_process";
|
|
414
|
-
readonly ACTIVE: "active";
|
|
415
|
-
};
|
|
416
|
-
export type FileStatusEnum = typeof FileStatusEnum[keyof typeof FileStatusEnum];
|
|
417
407
|
/**
|
|
418
408
|
*
|
|
419
409
|
* @export
|
|
@@ -4620,12 +4610,6 @@ export interface IFileCollectionQueryParams {
|
|
|
4620
4610
|
* @memberof IFileCollectionQueryParams
|
|
4621
4611
|
*/
|
|
4622
4612
|
'type'?: FileTypeEnum;
|
|
4623
|
-
/**
|
|
4624
|
-
*
|
|
4625
|
-
* @type {FileStatusEnum}
|
|
4626
|
-
* @memberof IFileCollectionQueryParams
|
|
4627
|
-
*/
|
|
4628
|
-
'status'?: FileStatusEnum;
|
|
4629
4613
|
}
|
|
4630
4614
|
export declare const IFileCollectionQueryParamsDateFieldEnum: {
|
|
4631
4615
|
readonly CREATED_AT: "createdAt";
|
|
@@ -4698,13 +4682,37 @@ export interface IFileResponse {
|
|
|
4698
4682
|
* @type {string}
|
|
4699
4683
|
* @memberof IFileResponse
|
|
4700
4684
|
*/
|
|
4701
|
-
'company'
|
|
4685
|
+
'company': string;
|
|
4686
|
+
/**
|
|
4687
|
+
*
|
|
4688
|
+
* @type {number}
|
|
4689
|
+
* @memberof IFileResponse
|
|
4690
|
+
*/
|
|
4691
|
+
'size': number;
|
|
4692
|
+
/**
|
|
4693
|
+
*
|
|
4694
|
+
* @type {number}
|
|
4695
|
+
* @memberof IFileResponse
|
|
4696
|
+
*/
|
|
4697
|
+
'width': number;
|
|
4698
|
+
/**
|
|
4699
|
+
*
|
|
4700
|
+
* @type {number}
|
|
4701
|
+
* @memberof IFileResponse
|
|
4702
|
+
*/
|
|
4703
|
+
'height': number;
|
|
4704
|
+
/**
|
|
4705
|
+
*
|
|
4706
|
+
* @type {Array<number>}
|
|
4707
|
+
* @memberof IFileResponse
|
|
4708
|
+
*/
|
|
4709
|
+
'widths': Array<number>;
|
|
4702
4710
|
/**
|
|
4703
4711
|
*
|
|
4704
|
-
* @type {
|
|
4712
|
+
* @type {string}
|
|
4705
4713
|
* @memberof IFileResponse
|
|
4706
4714
|
*/
|
|
4707
|
-
'
|
|
4715
|
+
'blurHash'?: string;
|
|
4708
4716
|
/**
|
|
4709
4717
|
*
|
|
4710
4718
|
* @type {FileTypeEnum}
|
|
@@ -4723,12 +4731,6 @@ export interface IFileResponse {
|
|
|
4723
4731
|
* @memberof IFileResponse
|
|
4724
4732
|
*/
|
|
4725
4733
|
'mimetype': string;
|
|
4726
|
-
/**
|
|
4727
|
-
*
|
|
4728
|
-
* @type {FileStatusEnum}
|
|
4729
|
-
* @memberof IFileResponse
|
|
4730
|
-
*/
|
|
4731
|
-
'status': FileStatusEnum;
|
|
4732
4734
|
}
|
|
4733
4735
|
/**
|
|
4734
4736
|
*
|
|
@@ -4797,44 +4799,43 @@ export interface IImage {
|
|
|
4797
4799
|
* @type {string}
|
|
4798
4800
|
* @memberof IImage
|
|
4799
4801
|
*/
|
|
4800
|
-
'
|
|
4802
|
+
'company': string;
|
|
4801
4803
|
/**
|
|
4802
4804
|
*
|
|
4803
|
-
* @type {
|
|
4805
|
+
* @type {string}
|
|
4804
4806
|
* @memberof IImage
|
|
4805
4807
|
*/
|
|
4806
|
-
'
|
|
4807
|
-
}
|
|
4808
|
-
/**
|
|
4809
|
-
*
|
|
4810
|
-
* @export
|
|
4811
|
-
* @interface IImagePathsInner
|
|
4812
|
-
*/
|
|
4813
|
-
export interface IImagePathsInner {
|
|
4808
|
+
'name': string;
|
|
4814
4809
|
/**
|
|
4815
4810
|
*
|
|
4816
4811
|
* @type {number}
|
|
4817
|
-
* @memberof
|
|
4812
|
+
* @memberof IImage
|
|
4818
4813
|
*/
|
|
4819
|
-
'
|
|
4814
|
+
'width': number;
|
|
4820
4815
|
/**
|
|
4821
4816
|
*
|
|
4822
4817
|
* @type {number}
|
|
4823
|
-
* @memberof
|
|
4818
|
+
* @memberof IImage
|
|
4824
4819
|
*/
|
|
4825
|
-
'
|
|
4820
|
+
'height': number;
|
|
4826
4821
|
/**
|
|
4827
4822
|
*
|
|
4828
|
-
* @type {number}
|
|
4829
|
-
* @memberof
|
|
4823
|
+
* @type {Array<number>}
|
|
4824
|
+
* @memberof IImage
|
|
4830
4825
|
*/
|
|
4831
|
-
'
|
|
4826
|
+
'widths': Array<number>;
|
|
4832
4827
|
/**
|
|
4833
4828
|
*
|
|
4834
4829
|
* @type {string}
|
|
4835
|
-
* @memberof
|
|
4830
|
+
* @memberof IImage
|
|
4836
4831
|
*/
|
|
4837
|
-
'
|
|
4832
|
+
'blurHash'?: string;
|
|
4833
|
+
/**
|
|
4834
|
+
*
|
|
4835
|
+
* @type {string}
|
|
4836
|
+
* @memberof IImage
|
|
4837
|
+
*/
|
|
4838
|
+
'mimetype': string;
|
|
4838
4839
|
}
|
|
4839
4840
|
/**
|
|
4840
4841
|
*
|
|
@@ -11314,10 +11315,10 @@ export interface PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner {
|
|
|
11314
11315
|
'productSlug': PartialRecordLanguageEnumString;
|
|
11315
11316
|
/**
|
|
11316
11317
|
*
|
|
11317
|
-
* @type {
|
|
11318
|
+
* @type {IImage}
|
|
11318
11319
|
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner
|
|
11319
11320
|
*/
|
|
11320
|
-
'productThumbnail'?:
|
|
11321
|
+
'productThumbnail'?: IImage;
|
|
11321
11322
|
/**
|
|
11322
11323
|
*
|
|
11323
11324
|
* @type {PartialRecordLanguageEnumString}
|
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.PlanAttributeGroupEnum = exports.PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum = exports.PaymentMethodEnum = exports.PaymentGatewayEnum = exports.OrderStatusEnum = exports.OrderShippedStatusEnum = exports.OrderReturnStatusEnumWAITINGRETURN = exports.OrderReturnStatusEnumRETURNED = exports.OrderReturnStatusEnum = exports.OrderPaymentStatusEnum = exports.OrderEnum = exports.OperationStatusEnum = exports.NotificationStatusEnum = exports.NotificationMessageEnum = exports.NavigationUrlTargetEnum = exports.LanguageEnum = exports.IUserCollectionQueryParamsDateFieldEnum = exports.IUrlRedirectCollectionQueryParamsSortEnum = exports.IUrlRedirectCollectionQueryParamsDateFieldEnum = exports.IUniqueCollectionQueryParamsDateFieldEnum = exports.ISubscriptionPostRequestPeriodEnum = exports.IProductCollectionQueryParamsSortEnum = exports.IProductCollectionQueryParamsDateFieldEnum = exports.IPlanCollectionQueryParamsCategoryEnum = exports.IPlanCollectionQueryParamsDateFieldEnum = exports.IPageCollectionQueryParamsDateFieldEnum = exports.IOrderCollectionQueryParamsDateFieldEnum = exports.IOperationCollectionQueryParamsDateFieldEnum = exports.INotificationCollectionQueryParamsDateFieldEnum = exports.INavigationCollectionQueryParamsDateFieldEnum = exports.IMyOrderCollectionQueryParamsDateFieldEnum = exports.IFileCollectionQueryParamsDateFieldEnum = exports.IContactFormCollectionQueryParamsDateFieldEnum = exports.ICompanyUsersCollectionQueryParamsDateFieldEnum = exports.ICompanyDashboardResponsePeriodEnum = exports.ICompanyCollectionQueryParamsDateFieldEnum = exports.ICollectionCollectionsQueryParamsDateFieldEnum = exports.ICategoryCollectionQueryParamsDateFieldEnum = exports.IBrandCollectionQueryParamsDateFieldEnum = exports.FileTypeEnum = exports.
|
|
20
|
-
exports.ProductApiFactory = exports.ProductApiFp = exports.ProductApiAxiosParamCreator = exports.GetPagesDateFieldEnum = exports.PageApi = exports.PageApiFactory = exports.PageApiFp = exports.PageApiAxiosParamCreator = exports.GetOrdersDateFieldEnum = exports.GetMyOrdersDateFieldEnum = exports.OrderApi = exports.OrderApiFactory = exports.OrderApiFp = exports.OrderApiAxiosParamCreator = exports.ContactFormApi = exports.ContactFormApiFactory = exports.ContactFormApiFp = exports.ContactFormApiAxiosParamCreator = exports.CompanyApi = exports.CompanyApiFactory = exports.CompanyApiFp = exports.CompanyApiAxiosParamCreator = exports.GetCollectionsDateFieldEnum = exports.CollectionApi = exports.CollectionApiFactory = exports.CollectionApiFp = exports.CollectionApiAxiosParamCreator = 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.SubscriptionStatusEnum = exports.StoreLocationEnum = exports.SitemapTypeEnum = exports.ShippingPricingTypeEnum = exports.ReviewStatusEnum = exports.PlanTypeEnum = exports.PlanStatusEnum =
|
|
21
|
-
exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiAxiosParamCreator = exports.UrlRedirectApi = exports.UrlRedirectApiFactory = exports.UrlRedirectApiFp = exports.UrlRedirectApiAxiosParamCreator = exports.UniquePageApi = exports.UniquePageApiFactory = exports.UniquePageApiFp = exports.UniquePageApiAxiosParamCreator = exports.TemplateApi = exports.TemplateApiFactory = exports.TemplateApiFp = exports.TemplateApiAxiosParamCreator = exports.SitemapApi = exports.SitemapApiFactory = exports.SitemapApiFp = exports.SitemapApiAxiosParamCreator = exports.GetProductsSortEnum = exports.GetProductsDateFieldEnum =
|
|
19
|
+
exports.PlanAttributeKeyEnum = exports.PlanAttributeGroupEnum = exports.PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum = exports.PaymentMethodEnum = exports.PaymentGatewayEnum = exports.OrderStatusEnum = exports.OrderShippedStatusEnum = exports.OrderReturnStatusEnumWAITINGRETURN = exports.OrderReturnStatusEnumRETURNED = exports.OrderReturnStatusEnum = exports.OrderPaymentStatusEnum = exports.OrderEnum = exports.OperationStatusEnum = exports.NotificationStatusEnum = exports.NotificationMessageEnum = exports.NavigationUrlTargetEnum = exports.LanguageEnum = exports.IUserCollectionQueryParamsDateFieldEnum = exports.IUrlRedirectCollectionQueryParamsSortEnum = exports.IUrlRedirectCollectionQueryParamsDateFieldEnum = exports.IUniqueCollectionQueryParamsDateFieldEnum = exports.ISubscriptionPostRequestPeriodEnum = exports.IProductCollectionQueryParamsSortEnum = exports.IProductCollectionQueryParamsDateFieldEnum = exports.IPlanCollectionQueryParamsCategoryEnum = exports.IPlanCollectionQueryParamsDateFieldEnum = exports.IPageCollectionQueryParamsDateFieldEnum = exports.IOrderCollectionQueryParamsDateFieldEnum = exports.IOperationCollectionQueryParamsDateFieldEnum = exports.INotificationCollectionQueryParamsDateFieldEnum = exports.INavigationCollectionQueryParamsDateFieldEnum = exports.IMyOrderCollectionQueryParamsDateFieldEnum = exports.IFileCollectionQueryParamsDateFieldEnum = exports.IContactFormCollectionQueryParamsDateFieldEnum = exports.ICompanyUsersCollectionQueryParamsDateFieldEnum = exports.ICompanyDashboardResponsePeriodEnum = exports.ICompanyCollectionQueryParamsDateFieldEnum = exports.ICollectionCollectionsQueryParamsDateFieldEnum = exports.ICategoryCollectionQueryParamsDateFieldEnum = exports.IBrandCollectionQueryParamsDateFieldEnum = exports.FileTypeEnum = exports.FileKeywordEnum = exports.EmailConfigDnsRecordTypeEnum = exports.CurrencyRateTypeEnum = exports.CurrencyEnum = exports.CountryEnum = exports.ContentStatusEnum = exports.CompanyUserStatusEnum = exports.CompanyTypeEnum = exports.CompanyStatusEnum = void 0;
|
|
20
|
+
exports.ProductApi = exports.ProductApiFactory = exports.ProductApiFp = exports.ProductApiAxiosParamCreator = exports.GetPagesDateFieldEnum = exports.PageApi = exports.PageApiFactory = exports.PageApiFp = exports.PageApiAxiosParamCreator = exports.GetOrdersDateFieldEnum = exports.GetMyOrdersDateFieldEnum = exports.OrderApi = exports.OrderApiFactory = exports.OrderApiFp = exports.OrderApiAxiosParamCreator = exports.ContactFormApi = exports.ContactFormApiFactory = exports.ContactFormApiFp = exports.ContactFormApiAxiosParamCreator = exports.CompanyApi = exports.CompanyApiFactory = exports.CompanyApiFp = exports.CompanyApiAxiosParamCreator = exports.GetCollectionsDateFieldEnum = exports.CollectionApi = exports.CollectionApiFactory = exports.CollectionApiFp = exports.CollectionApiAxiosParamCreator = 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.SubscriptionStatusEnum = exports.StoreLocationEnum = exports.SitemapTypeEnum = exports.ShippingPricingTypeEnum = exports.ReviewStatusEnum = exports.PlanTypeEnum = exports.PlanStatusEnum = void 0;
|
|
21
|
+
exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiAxiosParamCreator = exports.UrlRedirectApi = exports.UrlRedirectApiFactory = exports.UrlRedirectApiFp = exports.UrlRedirectApiAxiosParamCreator = exports.UniquePageApi = exports.UniquePageApiFactory = exports.UniquePageApiFp = exports.UniquePageApiAxiosParamCreator = exports.TemplateApi = exports.TemplateApiFactory = exports.TemplateApiFp = exports.TemplateApiAxiosParamCreator = exports.SitemapApi = exports.SitemapApiFactory = exports.SitemapApiFp = exports.SitemapApiAxiosParamCreator = exports.GetProductsSortEnum = exports.GetProductsDateFieldEnum = void 0;
|
|
22
22
|
const axios_1 = __importDefault(require("axios"));
|
|
23
23
|
// Some imports not used depending on template conditions
|
|
24
24
|
// @ts-ignore
|
|
@@ -363,15 +363,6 @@ exports.FileKeywordEnum = {
|
|
|
363
363
|
COMMENT: 'comment',
|
|
364
364
|
LEGAL: 'legal'
|
|
365
365
|
};
|
|
366
|
-
/**
|
|
367
|
-
*
|
|
368
|
-
* @export
|
|
369
|
-
* @enum {string}
|
|
370
|
-
*/
|
|
371
|
-
exports.FileStatusEnum = {
|
|
372
|
-
WAITING_PROCESS: 'waiting_process',
|
|
373
|
-
ACTIVE: 'active'
|
|
374
|
-
};
|
|
375
366
|
/**
|
|
376
367
|
*
|
|
377
368
|
* @export
|
package/dist/api/api.mjs
CHANGED
|
@@ -352,15 +352,6 @@ export const FileKeywordEnum = {
|
|
|
352
352
|
COMMENT: 'comment',
|
|
353
353
|
LEGAL: 'legal'
|
|
354
354
|
};
|
|
355
|
-
/**
|
|
356
|
-
*
|
|
357
|
-
* @export
|
|
358
|
-
* @enum {string}
|
|
359
|
-
*/
|
|
360
|
-
export const FileStatusEnum = {
|
|
361
|
-
WAITING_PROCESS: 'waiting_process',
|
|
362
|
-
ACTIVE: 'active'
|
|
363
|
-
};
|
|
364
355
|
/**
|
|
365
356
|
*
|
|
366
357
|
* @export
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api-client",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.46",
|
|
4
4
|
"description": "api-client-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": "8eb47500e7a879a9dea53b524c9883d85264d9a7"
|
|
41
41
|
}
|