@infisale-client/api-client 1.3.1 → 1.3.3
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 +26 -271
- package/dist/api/api.js +3 -8
- package/dist/api/api.mjs +0 -5
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -7950,7 +7950,7 @@ export interface ITemplateComponentContentResponse {
|
|
|
7950
7950
|
* @type {string}
|
|
7951
7951
|
* @memberof ITemplateComponentContentResponse
|
|
7952
7952
|
*/
|
|
7953
|
-
'
|
|
7953
|
+
'type': string;
|
|
7954
7954
|
/**
|
|
7955
7955
|
* Construct a type with a set of properties K of type T
|
|
7956
7956
|
* @type {{ [key: string]: any; }}
|
|
@@ -8289,11 +8289,13 @@ export interface IThemePatchRequest {
|
|
|
8289
8289
|
*/
|
|
8290
8290
|
'thumbnail'?: IImage;
|
|
8291
8291
|
/**
|
|
8292
|
-
*
|
|
8293
|
-
* @type {
|
|
8292
|
+
* Construct a type with a set of properties K of type T
|
|
8293
|
+
* @type {{ [key: string]: any; }}
|
|
8294
8294
|
* @memberof IThemePatchRequest
|
|
8295
8295
|
*/
|
|
8296
|
-
'config'?:
|
|
8296
|
+
'config'?: {
|
|
8297
|
+
[key: string]: any;
|
|
8298
|
+
};
|
|
8297
8299
|
/**
|
|
8298
8300
|
*
|
|
8299
8301
|
* @type {string}
|
|
@@ -8328,11 +8330,13 @@ export interface IThemePostRequest {
|
|
|
8328
8330
|
*/
|
|
8329
8331
|
'thumbnail'?: IImage;
|
|
8330
8332
|
/**
|
|
8331
|
-
*
|
|
8332
|
-
* @type {
|
|
8333
|
+
* Construct a type with a set of properties K of type T
|
|
8334
|
+
* @type {{ [key: string]: any; }}
|
|
8333
8335
|
* @memberof IThemePostRequest
|
|
8334
8336
|
*/
|
|
8335
|
-
'config':
|
|
8337
|
+
'config': {
|
|
8338
|
+
[key: string]: any;
|
|
8339
|
+
};
|
|
8336
8340
|
/**
|
|
8337
8341
|
*
|
|
8338
8342
|
* @type {string}
|
|
@@ -8409,11 +8413,13 @@ export interface IThemeResponse {
|
|
|
8409
8413
|
*/
|
|
8410
8414
|
'main'?: string;
|
|
8411
8415
|
/**
|
|
8412
|
-
*
|
|
8413
|
-
* @type {
|
|
8416
|
+
* Construct a type with a set of properties K of type T
|
|
8417
|
+
* @type {{ [key: string]: any; }}
|
|
8414
8418
|
* @memberof IThemeResponse
|
|
8415
8419
|
*/
|
|
8416
|
-
'config':
|
|
8420
|
+
'config': {
|
|
8421
|
+
[key: string]: any;
|
|
8422
|
+
};
|
|
8417
8423
|
/**
|
|
8418
8424
|
*
|
|
8419
8425
|
* @type {string}
|
|
@@ -10978,11 +10984,13 @@ export interface PickIThemeExcludeKeyofIThemeTemplate {
|
|
|
10978
10984
|
*/
|
|
10979
10985
|
'main'?: string;
|
|
10980
10986
|
/**
|
|
10981
|
-
*
|
|
10982
|
-
* @type {
|
|
10987
|
+
* Construct a type with a set of properties K of type T
|
|
10988
|
+
* @type {{ [key: string]: any; }}
|
|
10983
10989
|
* @memberof PickIThemeExcludeKeyofIThemeTemplate
|
|
10984
10990
|
*/
|
|
10985
|
-
'config':
|
|
10991
|
+
'config': {
|
|
10992
|
+
[key: string]: any;
|
|
10993
|
+
};
|
|
10986
10994
|
/**
|
|
10987
10995
|
*
|
|
10988
10996
|
* @type {string}
|
|
@@ -11004,261 +11012,6 @@ export interface PickIThemeExcludeKeyofIThemeTemplate {
|
|
|
11004
11012
|
[key: string]: RecordStringStringOrAnyValue;
|
|
11005
11013
|
};
|
|
11006
11014
|
}
|
|
11007
|
-
/**
|
|
11008
|
-
*
|
|
11009
|
-
* @export
|
|
11010
|
-
* @interface PickIThemeExcludeKeyofIThemeTemplateConfig
|
|
11011
|
-
*/
|
|
11012
|
-
export interface PickIThemeExcludeKeyofIThemeTemplateConfig {
|
|
11013
|
-
/**
|
|
11014
|
-
*
|
|
11015
|
-
* @type {PickIThemeExcludeKeyofIThemeTemplateConfigTypography}
|
|
11016
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfig
|
|
11017
|
-
*/
|
|
11018
|
-
'typography': PickIThemeExcludeKeyofIThemeTemplateConfigTypography;
|
|
11019
|
-
/**
|
|
11020
|
-
*
|
|
11021
|
-
* @type {PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard}
|
|
11022
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfig
|
|
11023
|
-
*/
|
|
11024
|
-
'blogCard': PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard;
|
|
11025
|
-
/**
|
|
11026
|
-
*
|
|
11027
|
-
* @type {PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard}
|
|
11028
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfig
|
|
11029
|
-
*/
|
|
11030
|
-
'collectionCard': PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard;
|
|
11031
|
-
/**
|
|
11032
|
-
*
|
|
11033
|
-
* @type {PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard}
|
|
11034
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfig
|
|
11035
|
-
*/
|
|
11036
|
-
'productCard': PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard;
|
|
11037
|
-
/**
|
|
11038
|
-
*
|
|
11039
|
-
* @type {PickIThemeExcludeKeyofIThemeTemplateConfigLayout}
|
|
11040
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfig
|
|
11041
|
-
*/
|
|
11042
|
-
'layout': PickIThemeExcludeKeyofIThemeTemplateConfigLayout;
|
|
11043
|
-
/**
|
|
11044
|
-
*
|
|
11045
|
-
* @type {PickIThemeExcludeKeyofIThemeTemplateConfigButtons}
|
|
11046
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfig
|
|
11047
|
-
*/
|
|
11048
|
-
'buttons': PickIThemeExcludeKeyofIThemeTemplateConfigButtons;
|
|
11049
|
-
/**
|
|
11050
|
-
*
|
|
11051
|
-
* @type {PickIThemeExcludeKeyofIThemeTemplateConfigCss}
|
|
11052
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfig
|
|
11053
|
-
*/
|
|
11054
|
-
'css': PickIThemeExcludeKeyofIThemeTemplateConfigCss;
|
|
11055
|
-
/**
|
|
11056
|
-
*
|
|
11057
|
-
* @type {PickIThemeExcludeKeyofIThemeTemplateConfigInject}
|
|
11058
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfig
|
|
11059
|
-
*/
|
|
11060
|
-
'inject': PickIThemeExcludeKeyofIThemeTemplateConfigInject;
|
|
11061
|
-
}
|
|
11062
|
-
/**
|
|
11063
|
-
*
|
|
11064
|
-
* @export
|
|
11065
|
-
* @interface PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard
|
|
11066
|
-
*/
|
|
11067
|
-
export interface PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard {
|
|
11068
|
-
/**
|
|
11069
|
-
*
|
|
11070
|
-
* @type {number}
|
|
11071
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard
|
|
11072
|
-
*/
|
|
11073
|
-
'shadowBlurRadius': number;
|
|
11074
|
-
/**
|
|
11075
|
-
*
|
|
11076
|
-
* @type {number}
|
|
11077
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard
|
|
11078
|
-
*/
|
|
11079
|
-
'shadowVerticalOffset': number;
|
|
11080
|
-
/**
|
|
11081
|
-
*
|
|
11082
|
-
* @type {number}
|
|
11083
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard
|
|
11084
|
-
*/
|
|
11085
|
-
'shadowHorizontalOffset': number;
|
|
11086
|
-
/**
|
|
11087
|
-
*
|
|
11088
|
-
* @type {number}
|
|
11089
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard
|
|
11090
|
-
*/
|
|
11091
|
-
'shadowOpacity': number;
|
|
11092
|
-
/**
|
|
11093
|
-
*
|
|
11094
|
-
* @type {number}
|
|
11095
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard
|
|
11096
|
-
*/
|
|
11097
|
-
'borderRadius': number;
|
|
11098
|
-
/**
|
|
11099
|
-
*
|
|
11100
|
-
* @type {number}
|
|
11101
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard
|
|
11102
|
-
*/
|
|
11103
|
-
'opacity': number;
|
|
11104
|
-
/**
|
|
11105
|
-
*
|
|
11106
|
-
* @type {number}
|
|
11107
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard
|
|
11108
|
-
*/
|
|
11109
|
-
'borderWidth': number;
|
|
11110
|
-
/**
|
|
11111
|
-
*
|
|
11112
|
-
* @type {string}
|
|
11113
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard
|
|
11114
|
-
*/
|
|
11115
|
-
'textAlign': PickIThemeExcludeKeyofIThemeTemplateConfigBlogCardTextAlignEnum;
|
|
11116
|
-
/**
|
|
11117
|
-
*
|
|
11118
|
-
* @type {number}
|
|
11119
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard
|
|
11120
|
-
*/
|
|
11121
|
-
'padding': number;
|
|
11122
|
-
/**
|
|
11123
|
-
*
|
|
11124
|
-
* @type {string}
|
|
11125
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard
|
|
11126
|
-
*/
|
|
11127
|
-
'variant': string;
|
|
11128
|
-
}
|
|
11129
|
-
export declare const PickIThemeExcludeKeyofIThemeTemplateConfigBlogCardTextAlignEnum: {
|
|
11130
|
-
readonly LEFT: "left";
|
|
11131
|
-
readonly CENTER: "center";
|
|
11132
|
-
readonly RIGHT: "right";
|
|
11133
|
-
};
|
|
11134
|
-
export type PickIThemeExcludeKeyofIThemeTemplateConfigBlogCardTextAlignEnum = typeof PickIThemeExcludeKeyofIThemeTemplateConfigBlogCardTextAlignEnum[keyof typeof PickIThemeExcludeKeyofIThemeTemplateConfigBlogCardTextAlignEnum];
|
|
11135
|
-
/**
|
|
11136
|
-
*
|
|
11137
|
-
* @export
|
|
11138
|
-
* @interface PickIThemeExcludeKeyofIThemeTemplateConfigButtons
|
|
11139
|
-
*/
|
|
11140
|
-
export interface PickIThemeExcludeKeyofIThemeTemplateConfigButtons {
|
|
11141
|
-
/**
|
|
11142
|
-
*
|
|
11143
|
-
* @type {number}
|
|
11144
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfigButtons
|
|
11145
|
-
*/
|
|
11146
|
-
'shadowBlurRadius': number;
|
|
11147
|
-
/**
|
|
11148
|
-
*
|
|
11149
|
-
* @type {number}
|
|
11150
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfigButtons
|
|
11151
|
-
*/
|
|
11152
|
-
'shadowVerticalOffset': number;
|
|
11153
|
-
/**
|
|
11154
|
-
*
|
|
11155
|
-
* @type {number}
|
|
11156
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfigButtons
|
|
11157
|
-
*/
|
|
11158
|
-
'shadowHorizontalOffset': number;
|
|
11159
|
-
/**
|
|
11160
|
-
*
|
|
11161
|
-
* @type {number}
|
|
11162
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfigButtons
|
|
11163
|
-
*/
|
|
11164
|
-
'shadowOpacity': number;
|
|
11165
|
-
/**
|
|
11166
|
-
*
|
|
11167
|
-
* @type {number}
|
|
11168
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfigButtons
|
|
11169
|
-
*/
|
|
11170
|
-
'borderRadius': number;
|
|
11171
|
-
/**
|
|
11172
|
-
*
|
|
11173
|
-
* @type {number}
|
|
11174
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfigButtons
|
|
11175
|
-
*/
|
|
11176
|
-
'opacity': number;
|
|
11177
|
-
/**
|
|
11178
|
-
*
|
|
11179
|
-
* @type {number}
|
|
11180
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfigButtons
|
|
11181
|
-
*/
|
|
11182
|
-
'borderWidth': number;
|
|
11183
|
-
}
|
|
11184
|
-
/**
|
|
11185
|
-
*
|
|
11186
|
-
* @export
|
|
11187
|
-
* @interface PickIThemeExcludeKeyofIThemeTemplateConfigCss
|
|
11188
|
-
*/
|
|
11189
|
-
export interface PickIThemeExcludeKeyofIThemeTemplateConfigCss {
|
|
11190
|
-
/**
|
|
11191
|
-
*
|
|
11192
|
-
* @type {{ [key: string]: string; }}
|
|
11193
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfigCss
|
|
11194
|
-
*/
|
|
11195
|
-
'variables': {
|
|
11196
|
-
[key: string]: string;
|
|
11197
|
-
};
|
|
11198
|
-
}
|
|
11199
|
-
/**
|
|
11200
|
-
*
|
|
11201
|
-
* @export
|
|
11202
|
-
* @interface PickIThemeExcludeKeyofIThemeTemplateConfigInject
|
|
11203
|
-
*/
|
|
11204
|
-
export interface PickIThemeExcludeKeyofIThemeTemplateConfigInject {
|
|
11205
|
-
/**
|
|
11206
|
-
*
|
|
11207
|
-
* @type {string}
|
|
11208
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfigInject
|
|
11209
|
-
*/
|
|
11210
|
-
'js': string;
|
|
11211
|
-
/**
|
|
11212
|
-
*
|
|
11213
|
-
* @type {string}
|
|
11214
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfigInject
|
|
11215
|
-
*/
|
|
11216
|
-
'css': string;
|
|
11217
|
-
}
|
|
11218
|
-
/**
|
|
11219
|
-
*
|
|
11220
|
-
* @export
|
|
11221
|
-
* @interface PickIThemeExcludeKeyofIThemeTemplateConfigLayout
|
|
11222
|
-
*/
|
|
11223
|
-
export interface PickIThemeExcludeKeyofIThemeTemplateConfigLayout {
|
|
11224
|
-
/**
|
|
11225
|
-
*
|
|
11226
|
-
* @type {number}
|
|
11227
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfigLayout
|
|
11228
|
-
*/
|
|
11229
|
-
'gridXGap': number;
|
|
11230
|
-
/**
|
|
11231
|
-
*
|
|
11232
|
-
* @type {number}
|
|
11233
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfigLayout
|
|
11234
|
-
*/
|
|
11235
|
-
'gridYGap': number;
|
|
11236
|
-
/**
|
|
11237
|
-
*
|
|
11238
|
-
* @type {number}
|
|
11239
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfigLayout
|
|
11240
|
-
*/
|
|
11241
|
-
'sectionYGap': number;
|
|
11242
|
-
/**
|
|
11243
|
-
*
|
|
11244
|
-
* @type {number}
|
|
11245
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfigLayout
|
|
11246
|
-
*/
|
|
11247
|
-
'containerWidth': number;
|
|
11248
|
-
}
|
|
11249
|
-
/**
|
|
11250
|
-
*
|
|
11251
|
-
* @export
|
|
11252
|
-
* @interface PickIThemeExcludeKeyofIThemeTemplateConfigTypography
|
|
11253
|
-
*/
|
|
11254
|
-
export interface PickIThemeExcludeKeyofIThemeTemplateConfigTypography {
|
|
11255
|
-
/**
|
|
11256
|
-
*
|
|
11257
|
-
* @type {string}
|
|
11258
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfigTypography
|
|
11259
|
-
*/
|
|
11260
|
-
'fontFamily': string;
|
|
11261
|
-
}
|
|
11262
11015
|
/**
|
|
11263
11016
|
* From T, pick a set of properties whose keys are in the union K
|
|
11264
11017
|
* @export
|
|
@@ -11278,11 +11031,13 @@ export interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseO
|
|
|
11278
11031
|
*/
|
|
11279
11032
|
'thumbnail'?: IImage;
|
|
11280
11033
|
/**
|
|
11281
|
-
*
|
|
11282
|
-
* @type {
|
|
11034
|
+
* Construct a type with a set of properties K of type T
|
|
11035
|
+
* @type {{ [key: string]: any; }}
|
|
11283
11036
|
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreator
|
|
11284
11037
|
*/
|
|
11285
|
-
'config':
|
|
11038
|
+
'config': {
|
|
11039
|
+
[key: string]: any;
|
|
11040
|
+
};
|
|
11286
11041
|
/**
|
|
11287
11042
|
*
|
|
11288
11043
|
* @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.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.TemplateTypeEnum = exports.SitemapTypeEnum = exports.ShippingPricingTypeEnum = exports.ReviewStatusEnum = exports.PlanTypeEnum = exports.PlanStatusEnum =
|
|
21
|
-
exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiAxiosParamCreator = exports.SitemapApi = exports.SitemapApiFactory = exports.SitemapApiFp = exports.SitemapApiAxiosParamCreator = exports.GetProductsSortEnum =
|
|
19
|
+
exports.PlanCurrencyEnum = exports.PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum = exports.PaymentStatusEnum = exports.PaymentMethodEnum = exports.PaymentGatewayEnum = exports.PageTypeEnum = 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.IProductCollectionQueryParamsSortEnum = exports.IProductCollectionQueryParamsDateFieldEnum = exports.IPlanCollectionQueryParamsDateFieldEnum = exports.IPaymentPostRequestPeriodEnum = exports.IPageCollectionQueryParamsDateFieldEnum = exports.IOrderCollectionQueryParamsDateFieldEnum = exports.IOperationCollectionQueryParamsDateFieldEnum = exports.INotificationCollectionQueryParamsDateFieldEnum = exports.IMyOrderCollectionQueryParamsDateFieldEnum = exports.IFileCollectionQueryParamsDateFieldEnum = exports.IContactFormCollectionQueryParamsDateFieldEnum = exports.ICompanyUsersCollectionQueryParamsDateFieldEnum = exports.ICompanyDashboardResponsePeriodEnum = exports.ICompanyCollectionQueryParamsDateFieldEnum = exports.ICollectionCollectionsQueryParamsDateFieldEnum = exports.ICategoryCollectionQueryParamsDateFieldEnum = exports.IBrandCollectionQueryParamsDateFieldEnum = exports.FileTypeEnum = exports.FileStatusEnum = exports.FileKeywordEnum = exports.EmailConfigDnsRecordTypeEnum = exports.CurrencyRateTypeEnum = exports.CurrencyEnum = exports.CountryEnum = exports.ContentStatusEnum = exports.ComponentProductTypeEnum = exports.ComponentProductOrderEnum = exports.ComponentProductListTypeEnum = exports.CompanyUserStatusEnum = exports.CompanyTypeEnum = exports.CompanyStatusEnum = void 0;
|
|
20
|
+
exports.GetProductsDateFieldEnum = 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.TemplateTypeEnum = exports.SitemapTypeEnum = exports.ShippingPricingTypeEnum = exports.ReviewStatusEnum = exports.PlanTypeEnum = exports.PlanStatusEnum = void 0;
|
|
21
|
+
exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiAxiosParamCreator = exports.SitemapApi = exports.SitemapApiFactory = exports.SitemapApiFp = exports.SitemapApiAxiosParamCreator = exports.GetProductsSortEnum = void 0;
|
|
22
22
|
const axios_1 = __importDefault(require("axios"));
|
|
23
23
|
// Some imports not used depending on template conditions
|
|
24
24
|
// @ts-ignore
|
|
@@ -648,11 +648,6 @@ exports.PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFiel
|
|
|
648
648
|
CREATED_AT: 'createdAt',
|
|
649
649
|
UPDATED_AT: 'updatedAt'
|
|
650
650
|
};
|
|
651
|
-
exports.PickIThemeExcludeKeyofIThemeTemplateConfigBlogCardTextAlignEnum = {
|
|
652
|
-
LEFT: 'left',
|
|
653
|
-
CENTER: 'center',
|
|
654
|
-
RIGHT: 'right'
|
|
655
|
-
};
|
|
656
651
|
/**
|
|
657
652
|
*
|
|
658
653
|
* @export
|
package/dist/api/api.mjs
CHANGED
|
@@ -637,11 +637,6 @@ export const PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDat
|
|
|
637
637
|
CREATED_AT: 'createdAt',
|
|
638
638
|
UPDATED_AT: 'updatedAt'
|
|
639
639
|
};
|
|
640
|
-
export const PickIThemeExcludeKeyofIThemeTemplateConfigBlogCardTextAlignEnum = {
|
|
641
|
-
LEFT: 'left',
|
|
642
|
-
CENTER: 'center',
|
|
643
|
-
RIGHT: 'right'
|
|
644
|
-
};
|
|
645
640
|
/**
|
|
646
641
|
*
|
|
647
642
|
* @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.3",
|
|
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": "5cc6af7a0bd08284d890bcc2aeaab1f5b9c2fee7"
|
|
41
41
|
}
|