@infisale-client/api 1.2.88 → 1.2.90
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 +51 -1
- package/dist/api/api.js +2 -1
- package/dist/api/api.mjs +2 -1
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -35,6 +35,7 @@ export type ButtonVariantEnum = typeof ButtonVariantEnum[keyof typeof ButtonVari
|
|
|
35
35
|
export declare const CompanyStatusEnum: {
|
|
36
36
|
readonly ACTIVE: "active";
|
|
37
37
|
readonly INACTIVE: "inactive";
|
|
38
|
+
readonly PAYMENT_REQUIRED: "payment_required";
|
|
38
39
|
readonly DELETED: "deleted";
|
|
39
40
|
};
|
|
40
41
|
export type CompanyStatusEnum = typeof CompanyStatusEnum[keyof typeof CompanyStatusEnum];
|
|
@@ -136,11 +137,11 @@ export declare const ComponentTypeEnum: {
|
|
|
136
137
|
readonly COLLECTION_LIST: "collection-list";
|
|
137
138
|
readonly CATEGORY_LIST: "category-list";
|
|
138
139
|
readonly BRAND_LIST: "brand-list";
|
|
140
|
+
readonly BLOG_LIST: "blog-list";
|
|
139
141
|
readonly RICH_TEXT: "rich-text";
|
|
140
142
|
readonly BANNER_WITH_TEXT: "banner-with-text";
|
|
141
143
|
readonly ACCORDION: "accordion";
|
|
142
144
|
readonly VIDEO: "video";
|
|
143
|
-
readonly BLOG_LIST: "blog-list";
|
|
144
145
|
readonly HEADER: "header";
|
|
145
146
|
readonly ANNOUNCEMENT: "announcement";
|
|
146
147
|
readonly FOOTER: "footer";
|
|
@@ -7746,6 +7747,30 @@ export interface ITemplateResponseComponentsInner {
|
|
|
7746
7747
|
* @memberof ITemplateResponseComponentsInner
|
|
7747
7748
|
*/
|
|
7748
7749
|
'contents': Array<ITemplateResponseComponentsInnerContentsInner>;
|
|
7750
|
+
/**
|
|
7751
|
+
*
|
|
7752
|
+
* @type {ITemplateResponseComponentsInnerBlogs}
|
|
7753
|
+
* @memberof ITemplateResponseComponentsInner
|
|
7754
|
+
*/
|
|
7755
|
+
'blogs'?: ITemplateResponseComponentsInnerBlogs;
|
|
7756
|
+
/**
|
|
7757
|
+
*
|
|
7758
|
+
* @type {Array<ICollectionResponse>}
|
|
7759
|
+
* @memberof ITemplateResponseComponentsInner
|
|
7760
|
+
*/
|
|
7761
|
+
'collections': Array<ICollectionResponse>;
|
|
7762
|
+
/**
|
|
7763
|
+
*
|
|
7764
|
+
* @type {Array<IBrandsResponse>}
|
|
7765
|
+
* @memberof ITemplateResponseComponentsInner
|
|
7766
|
+
*/
|
|
7767
|
+
'brands': Array<IBrandsResponse>;
|
|
7768
|
+
/**
|
|
7769
|
+
*
|
|
7770
|
+
* @type {Array<ICategoryResponse>}
|
|
7771
|
+
* @memberof ITemplateResponseComponentsInner
|
|
7772
|
+
*/
|
|
7773
|
+
'categories': Array<ICategoryResponse>;
|
|
7749
7774
|
/**
|
|
7750
7775
|
*
|
|
7751
7776
|
* @type {ITemplateResponseComponentsInnerProducts}
|
|
@@ -7777,6 +7802,31 @@ export interface ITemplateResponseComponentsInner {
|
|
|
7777
7802
|
*/
|
|
7778
7803
|
'_id': string;
|
|
7779
7804
|
}
|
|
7805
|
+
/**
|
|
7806
|
+
*
|
|
7807
|
+
* @export
|
|
7808
|
+
* @interface ITemplateResponseComponentsInnerBlogs
|
|
7809
|
+
*/
|
|
7810
|
+
export interface ITemplateResponseComponentsInnerBlogs {
|
|
7811
|
+
/**
|
|
7812
|
+
*
|
|
7813
|
+
* @type {number}
|
|
7814
|
+
* @memberof ITemplateResponseComponentsInnerBlogs
|
|
7815
|
+
*/
|
|
7816
|
+
'limit'?: number;
|
|
7817
|
+
/**
|
|
7818
|
+
*
|
|
7819
|
+
* @type {Array<IPageResponse>}
|
|
7820
|
+
* @memberof ITemplateResponseComponentsInnerBlogs
|
|
7821
|
+
*/
|
|
7822
|
+
'list'?: Array<IPageResponse>;
|
|
7823
|
+
/**
|
|
7824
|
+
*
|
|
7825
|
+
* @type {Array<IPageResponse>}
|
|
7826
|
+
* @memberof ITemplateResponseComponentsInnerBlogs
|
|
7827
|
+
*/
|
|
7828
|
+
'items'?: Array<IPageResponse>;
|
|
7829
|
+
}
|
|
7780
7830
|
/**
|
|
7781
7831
|
*
|
|
7782
7832
|
* @export
|
package/dist/api/api.js
CHANGED
|
@@ -47,6 +47,7 @@ exports.ButtonVariantEnum = {
|
|
|
47
47
|
exports.CompanyStatusEnum = {
|
|
48
48
|
ACTIVE: 'active',
|
|
49
49
|
INACTIVE: 'inactive',
|
|
50
|
+
PAYMENT_REQUIRED: 'payment_required',
|
|
50
51
|
DELETED: 'deleted'
|
|
51
52
|
};
|
|
52
53
|
/**
|
|
@@ -141,11 +142,11 @@ exports.ComponentTypeEnum = {
|
|
|
141
142
|
COLLECTION_LIST: 'collection-list',
|
|
142
143
|
CATEGORY_LIST: 'category-list',
|
|
143
144
|
BRAND_LIST: 'brand-list',
|
|
145
|
+
BLOG_LIST: 'blog-list',
|
|
144
146
|
RICH_TEXT: 'rich-text',
|
|
145
147
|
BANNER_WITH_TEXT: 'banner-with-text',
|
|
146
148
|
ACCORDION: 'accordion',
|
|
147
149
|
VIDEO: 'video',
|
|
148
|
-
BLOG_LIST: 'blog-list',
|
|
149
150
|
HEADER: 'header',
|
|
150
151
|
ANNOUNCEMENT: 'announcement',
|
|
151
152
|
FOOTER: 'footer',
|
package/dist/api/api.mjs
CHANGED
|
@@ -35,6 +35,7 @@ export const ButtonVariantEnum = {
|
|
|
35
35
|
export const CompanyStatusEnum = {
|
|
36
36
|
ACTIVE: 'active',
|
|
37
37
|
INACTIVE: 'inactive',
|
|
38
|
+
PAYMENT_REQUIRED: 'payment_required',
|
|
38
39
|
DELETED: 'deleted'
|
|
39
40
|
};
|
|
40
41
|
/**
|
|
@@ -129,11 +130,11 @@ export const ComponentTypeEnum = {
|
|
|
129
130
|
COLLECTION_LIST: 'collection-list',
|
|
130
131
|
CATEGORY_LIST: 'category-list',
|
|
131
132
|
BRAND_LIST: 'brand-list',
|
|
133
|
+
BLOG_LIST: 'blog-list',
|
|
132
134
|
RICH_TEXT: 'rich-text',
|
|
133
135
|
BANNER_WITH_TEXT: 'banner-with-text',
|
|
134
136
|
ACCORDION: 'accordion',
|
|
135
137
|
VIDEO: 'video',
|
|
136
|
-
BLOG_LIST: 'blog-list',
|
|
137
138
|
HEADER: 'header',
|
|
138
139
|
ANNOUNCEMENT: 'announcement',
|
|
139
140
|
FOOTER: 'footer',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.90",
|
|
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": "88beb5654d274143e021c62680777b01d335c0ba"
|
|
41
41
|
}
|