@infisale-client/api-client 1.2.39 → 1.2.40
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 +75 -0
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -695,6 +695,50 @@ export interface IAllCategoriesResponse {
|
|
|
695
695
|
*/
|
|
696
696
|
'data': Array<PickICategoryResponseIdOrContentsOrAttributes>;
|
|
697
697
|
}
|
|
698
|
+
/**
|
|
699
|
+
*
|
|
700
|
+
* @export
|
|
701
|
+
* @interface IAllCategoriesTreeResponse
|
|
702
|
+
*/
|
|
703
|
+
export interface IAllCategoriesTreeResponse {
|
|
704
|
+
/**
|
|
705
|
+
*
|
|
706
|
+
* @type {Array<IAllCategoriesTreeResponseDataInner>}
|
|
707
|
+
* @memberof IAllCategoriesTreeResponse
|
|
708
|
+
*/
|
|
709
|
+
'data': Array<IAllCategoriesTreeResponseDataInner>;
|
|
710
|
+
}
|
|
711
|
+
/**
|
|
712
|
+
*
|
|
713
|
+
* @export
|
|
714
|
+
* @interface IAllCategoriesTreeResponseDataInner
|
|
715
|
+
*/
|
|
716
|
+
export interface IAllCategoriesTreeResponseDataInner {
|
|
717
|
+
/**
|
|
718
|
+
*
|
|
719
|
+
* @type {Array<SubCategories>}
|
|
720
|
+
* @memberof IAllCategoriesTreeResponseDataInner
|
|
721
|
+
*/
|
|
722
|
+
'subCategories': Array<SubCategories>;
|
|
723
|
+
/**
|
|
724
|
+
*
|
|
725
|
+
* @type {Array<ICategoryResponseAttributesInner>}
|
|
726
|
+
* @memberof IAllCategoriesTreeResponseDataInner
|
|
727
|
+
*/
|
|
728
|
+
'attributes': Array<ICategoryResponseAttributesInner>;
|
|
729
|
+
/**
|
|
730
|
+
* Make all properties in T optional
|
|
731
|
+
* @type {object}
|
|
732
|
+
* @memberof IAllCategoriesTreeResponseDataInner
|
|
733
|
+
*/
|
|
734
|
+
'contents': object;
|
|
735
|
+
/**
|
|
736
|
+
*
|
|
737
|
+
* @type {string}
|
|
738
|
+
* @memberof IAllCategoriesTreeResponseDataInner
|
|
739
|
+
*/
|
|
740
|
+
'_id': string;
|
|
741
|
+
}
|
|
698
742
|
/**
|
|
699
743
|
*
|
|
700
744
|
* @export
|
|
@@ -9887,6 +9931,37 @@ export declare const SitemapTypeEnum: {
|
|
|
9887
9931
|
readonly BLOG: "blog";
|
|
9888
9932
|
};
|
|
9889
9933
|
export type SitemapTypeEnum = typeof SitemapTypeEnum[keyof typeof SitemapTypeEnum];
|
|
9934
|
+
/**
|
|
9935
|
+
*
|
|
9936
|
+
* @export
|
|
9937
|
+
* @interface SubCategories
|
|
9938
|
+
*/
|
|
9939
|
+
export interface SubCategories {
|
|
9940
|
+
/**
|
|
9941
|
+
*
|
|
9942
|
+
* @type {Array<SubCategories>}
|
|
9943
|
+
* @memberof SubCategories
|
|
9944
|
+
*/
|
|
9945
|
+
'subCategories': Array<SubCategories>;
|
|
9946
|
+
/**
|
|
9947
|
+
*
|
|
9948
|
+
* @type {Array<ICategoryResponseAttributesInner>}
|
|
9949
|
+
* @memberof SubCategories
|
|
9950
|
+
*/
|
|
9951
|
+
'attributes': Array<ICategoryResponseAttributesInner>;
|
|
9952
|
+
/**
|
|
9953
|
+
* Make all properties in T optional
|
|
9954
|
+
* @type {object}
|
|
9955
|
+
* @memberof SubCategories
|
|
9956
|
+
*/
|
|
9957
|
+
'contents': object;
|
|
9958
|
+
/**
|
|
9959
|
+
*
|
|
9960
|
+
* @type {string}
|
|
9961
|
+
* @memberof SubCategories
|
|
9962
|
+
*/
|
|
9963
|
+
'_id': string;
|
|
9964
|
+
}
|
|
9890
9965
|
/**
|
|
9891
9966
|
*
|
|
9892
9967
|
* @export
|
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.40",
|
|
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": "e1912d682b9f6092c6d8d90ad959f4fa0481245a"
|
|
41
41
|
}
|