@infisale-client/api 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
|
/**
|
|
@@ -11680,6 +11683,7 @@ export declare const TemplateTypeEnum: {
|
|
|
11680
11683
|
readonly NOT_FOUND: "not-found";
|
|
11681
11684
|
readonly BLOG: "blog";
|
|
11682
11685
|
readonly SEARCH: "search";
|
|
11686
|
+
readonly BLOG_LIST: "blog-list";
|
|
11683
11687
|
};
|
|
11684
11688
|
export type TemplateTypeEnum = typeof TemplateTypeEnum[keyof typeof TemplateTypeEnum];
|
|
11685
11689
|
/**
|
package/dist/api/api.js
CHANGED
|
@@ -155,7 +155,9 @@ exports.ComponentTypeEnum = {
|
|
|
155
155
|
CART_DETAIL: 'cart-detail',
|
|
156
156
|
CHECKOUT_DETAIL: 'checkout-detail',
|
|
157
157
|
NOT_FOUND_DETAIL: 'not-found-detail',
|
|
158
|
-
SEARCH_DETAIL: 'search-detail'
|
|
158
|
+
SEARCH_DETAIL: 'search-detail',
|
|
159
|
+
BLOG_LIST_DETAIL: 'blog-list-detail',
|
|
160
|
+
COLLECTION_LIST_DETAIL: 'collection-list-detail'
|
|
159
161
|
};
|
|
160
162
|
/**
|
|
161
163
|
*
|
|
@@ -711,7 +713,8 @@ exports.PageTypeEnum = {
|
|
|
711
713
|
CART: 'cart',
|
|
712
714
|
CHECKOUT: 'checkout',
|
|
713
715
|
SEARCH: 'search',
|
|
714
|
-
NOT_FOUND: 'not-found'
|
|
716
|
+
NOT_FOUND: 'not-found',
|
|
717
|
+
BLOG_LIST: 'blog-list'
|
|
715
718
|
};
|
|
716
719
|
/**
|
|
717
720
|
*
|
|
@@ -838,7 +841,8 @@ exports.TemplateTypeEnum = {
|
|
|
838
841
|
CHECKOUT: 'checkout',
|
|
839
842
|
NOT_FOUND: 'not-found',
|
|
840
843
|
BLOG: 'blog',
|
|
841
|
-
SEARCH: 'search'
|
|
844
|
+
SEARCH: 'search',
|
|
845
|
+
BLOG_LIST: 'blog-list'
|
|
842
846
|
};
|
|
843
847
|
/**
|
|
844
848
|
*
|
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",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.92",
|
|
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": "ca5288a822e4c2e0c98e210f479974406c7d4791"
|
|
41
41
|
}
|