@infisale-client/api-client 1.2.91 → 1.2.92
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 +4 -0
- package/dist/api/api.js +7 -3
- package/dist/api/api.mjs +7 -3
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -151,6 +151,8 @@ export declare const ComponentTypeEnum: {
|
|
|
151
151
|
readonly CHECKOUT_DETAIL: "checkout-detail";
|
|
152
152
|
readonly NOT_FOUND_DETAIL: "not-found-detail";
|
|
153
153
|
readonly SEARCH_DETAIL: "search-detail";
|
|
154
|
+
readonly BLOG_LIST_DETAIL: "blog-list-detail";
|
|
155
|
+
readonly COLLECTION_LIST_DETAIL: "collection-list-detail";
|
|
154
156
|
};
|
|
155
157
|
export type ComponentTypeEnum = typeof ComponentTypeEnum[keyof typeof ComponentTypeEnum];
|
|
156
158
|
/**
|
|
@@ -8989,6 +8991,7 @@ export declare const PageTypeEnum: {
|
|
|
8989
8991
|
readonly CHECKOUT: "checkout";
|
|
8990
8992
|
readonly SEARCH: "search";
|
|
8991
8993
|
readonly NOT_FOUND: "not-found";
|
|
8994
|
+
readonly BLOG_LIST: "blog-list";
|
|
8992
8995
|
};
|
|
8993
8996
|
export type PageTypeEnum = typeof PageTypeEnum[keyof typeof PageTypeEnum];
|
|
8994
8997
|
/**
|
|
@@ -11661,6 +11664,7 @@ export declare const TemplateTypeEnum: {
|
|
|
11661
11664
|
readonly NOT_FOUND: "not-found";
|
|
11662
11665
|
readonly BLOG: "blog";
|
|
11663
11666
|
readonly SEARCH: "search";
|
|
11667
|
+
readonly BLOG_LIST: "blog-list";
|
|
11664
11668
|
};
|
|
11665
11669
|
export type TemplateTypeEnum = typeof TemplateTypeEnum[keyof typeof TemplateTypeEnum];
|
|
11666
11670
|
/**
|
package/dist/api/api.js
CHANGED
|
@@ -154,7 +154,9 @@ exports.ComponentTypeEnum = {
|
|
|
154
154
|
CART_DETAIL: 'cart-detail',
|
|
155
155
|
CHECKOUT_DETAIL: 'checkout-detail',
|
|
156
156
|
NOT_FOUND_DETAIL: 'not-found-detail',
|
|
157
|
-
SEARCH_DETAIL: 'search-detail'
|
|
157
|
+
SEARCH_DETAIL: 'search-detail',
|
|
158
|
+
BLOG_LIST_DETAIL: 'blog-list-detail',
|
|
159
|
+
COLLECTION_LIST_DETAIL: 'collection-list-detail'
|
|
158
160
|
};
|
|
159
161
|
/**
|
|
160
162
|
*
|
|
@@ -710,7 +712,8 @@ exports.PageTypeEnum = {
|
|
|
710
712
|
CART: 'cart',
|
|
711
713
|
CHECKOUT: 'checkout',
|
|
712
714
|
SEARCH: 'search',
|
|
713
|
-
NOT_FOUND: 'not-found'
|
|
715
|
+
NOT_FOUND: 'not-found',
|
|
716
|
+
BLOG_LIST: 'blog-list'
|
|
714
717
|
};
|
|
715
718
|
/**
|
|
716
719
|
*
|
|
@@ -837,7 +840,8 @@ exports.TemplateTypeEnum = {
|
|
|
837
840
|
CHECKOUT: 'checkout',
|
|
838
841
|
NOT_FOUND: 'not-found',
|
|
839
842
|
BLOG: 'blog',
|
|
840
|
-
SEARCH: 'search'
|
|
843
|
+
SEARCH: 'search',
|
|
844
|
+
BLOG_LIST: 'blog-list'
|
|
841
845
|
};
|
|
842
846
|
/**
|
|
843
847
|
*
|
package/dist/api/api.mjs
CHANGED
|
@@ -143,7 +143,9 @@ export const ComponentTypeEnum = {
|
|
|
143
143
|
CART_DETAIL: 'cart-detail',
|
|
144
144
|
CHECKOUT_DETAIL: 'checkout-detail',
|
|
145
145
|
NOT_FOUND_DETAIL: 'not-found-detail',
|
|
146
|
-
SEARCH_DETAIL: 'search-detail'
|
|
146
|
+
SEARCH_DETAIL: 'search-detail',
|
|
147
|
+
BLOG_LIST_DETAIL: 'blog-list-detail',
|
|
148
|
+
COLLECTION_LIST_DETAIL: 'collection-list-detail'
|
|
147
149
|
};
|
|
148
150
|
/**
|
|
149
151
|
*
|
|
@@ -699,7 +701,8 @@ export const PageTypeEnum = {
|
|
|
699
701
|
CART: 'cart',
|
|
700
702
|
CHECKOUT: 'checkout',
|
|
701
703
|
SEARCH: 'search',
|
|
702
|
-
NOT_FOUND: 'not-found'
|
|
704
|
+
NOT_FOUND: 'not-found',
|
|
705
|
+
BLOG_LIST: 'blog-list'
|
|
703
706
|
};
|
|
704
707
|
/**
|
|
705
708
|
*
|
|
@@ -826,7 +829,8 @@ export const TemplateTypeEnum = {
|
|
|
826
829
|
CHECKOUT: 'checkout',
|
|
827
830
|
NOT_FOUND: 'not-found',
|
|
828
831
|
BLOG: 'blog',
|
|
829
|
-
SEARCH: 'search'
|
|
832
|
+
SEARCH: 'search',
|
|
833
|
+
BLOG_LIST: 'blog-list'
|
|
830
834
|
};
|
|
831
835
|
/**
|
|
832
836
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api-client",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.92",
|
|
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": "ca5288a822e4c2e0c98e210f479974406c7d4791"
|
|
41
41
|
}
|