@infisale-client/api 1.2.2 → 1.2.4
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 +11 -4
- 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
|
@@ -68,6 +68,7 @@ export declare const ComponentContentTypeEnum: {
|
|
|
68
68
|
readonly CAROUSEL_ITEM: "carousel-item";
|
|
69
69
|
readonly GRID_ITEM: "grid-item";
|
|
70
70
|
readonly ANNOUNCEMENT_ITEM: "announcement-item";
|
|
71
|
+
readonly ACCORDION_ITEM: "accordion-item";
|
|
71
72
|
};
|
|
72
73
|
export type ComponentContentTypeEnum = typeof ComponentContentTypeEnum[keyof typeof ComponentContentTypeEnum];
|
|
73
74
|
/**
|
|
@@ -661,7 +662,7 @@ export interface IBasketResponse {
|
|
|
661
662
|
* @type {string}
|
|
662
663
|
* @memberof IBasketResponse
|
|
663
664
|
*/
|
|
664
|
-
'user'
|
|
665
|
+
'user'?: string;
|
|
665
666
|
/**
|
|
666
667
|
*
|
|
667
668
|
* @type {Array<IBasketResponseItemsInner>}
|
|
@@ -695,10 +696,10 @@ export interface IBasketResponseItemsInner {
|
|
|
695
696
|
'amount': number;
|
|
696
697
|
/**
|
|
697
698
|
*
|
|
698
|
-
* @type {
|
|
699
|
+
* @type {IProductResponse}
|
|
699
700
|
* @memberof IBasketResponseItemsInner
|
|
700
701
|
*/
|
|
701
|
-
'product':
|
|
702
|
+
'product': IProductResponse;
|
|
702
703
|
/**
|
|
703
704
|
*
|
|
704
705
|
* @type {string}
|
|
@@ -6362,6 +6363,12 @@ export interface ITemplateResponseComponentsInnerContentsInnerConfig {
|
|
|
6362
6363
|
* @interface ITemplateResponseComponentsInnerIdentity
|
|
6363
6364
|
*/
|
|
6364
6365
|
export interface ITemplateResponseComponentsInnerIdentity {
|
|
6366
|
+
/**
|
|
6367
|
+
*
|
|
6368
|
+
* @type {IProductResponse}
|
|
6369
|
+
* @memberof ITemplateResponseComponentsInnerIdentity
|
|
6370
|
+
*/
|
|
6371
|
+
'singleProduct'?: IProductResponse;
|
|
6365
6372
|
/**
|
|
6366
6373
|
*
|
|
6367
6374
|
* @type {Array<ITemplateResponseComponentsInnerIdentityButtonsInner>}
|
|
@@ -7130,7 +7137,7 @@ export interface PickIBasketExcludeKeyofIBasketItems {
|
|
|
7130
7137
|
* @type {string}
|
|
7131
7138
|
* @memberof PickIBasketExcludeKeyofIBasketItems
|
|
7132
7139
|
*/
|
|
7133
|
-
'user'
|
|
7140
|
+
'user'?: string;
|
|
7134
7141
|
}
|
|
7135
7142
|
/**
|
|
7136
7143
|
* From T, pick a set of properties whose keys are in the union K
|
package/dist/api/api.js
CHANGED
|
@@ -76,7 +76,8 @@ exports.ComponentContentTypeEnum = {
|
|
|
76
76
|
INVENTORY_STATUS: 'inventory-status',
|
|
77
77
|
CAROUSEL_ITEM: 'carousel-item',
|
|
78
78
|
GRID_ITEM: 'grid-item',
|
|
79
|
-
ANNOUNCEMENT_ITEM: 'announcement-item'
|
|
79
|
+
ANNOUNCEMENT_ITEM: 'announcement-item',
|
|
80
|
+
ACCORDION_ITEM: 'accordion-item'
|
|
80
81
|
};
|
|
81
82
|
/**
|
|
82
83
|
*
|
package/dist/api/api.mjs
CHANGED
|
@@ -65,7 +65,8 @@ export const ComponentContentTypeEnum = {
|
|
|
65
65
|
INVENTORY_STATUS: 'inventory-status',
|
|
66
66
|
CAROUSEL_ITEM: 'carousel-item',
|
|
67
67
|
GRID_ITEM: 'grid-item',
|
|
68
|
-
ANNOUNCEMENT_ITEM: 'announcement-item'
|
|
68
|
+
ANNOUNCEMENT_ITEM: 'announcement-item',
|
|
69
|
+
ACCORDION_ITEM: 'accordion-item'
|
|
69
70
|
};
|
|
70
71
|
/**
|
|
71
72
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.4",
|
|
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": "a67cdbdb55fd145df49245c5bd1ad8725881ec5e"
|
|
41
41
|
}
|