@infisale-client/api-client 1.3.55 → 1.3.58
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 +165 -24
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -5077,12 +5077,55 @@ export interface INavigationLink {
|
|
|
5077
5077
|
* @memberof INavigationLink
|
|
5078
5078
|
*/
|
|
5079
5079
|
'object': any;
|
|
5080
|
+
}
|
|
5081
|
+
/**
|
|
5082
|
+
*
|
|
5083
|
+
* @export
|
|
5084
|
+
* @interface INavigationLinkResponse
|
|
5085
|
+
*/
|
|
5086
|
+
export interface INavigationLinkResponse {
|
|
5087
|
+
/**
|
|
5088
|
+
*
|
|
5089
|
+
* @type {any}
|
|
5090
|
+
* @memberof INavigationLinkResponse
|
|
5091
|
+
*/
|
|
5092
|
+
'object': any;
|
|
5093
|
+
/**
|
|
5094
|
+
*
|
|
5095
|
+
* @type {string}
|
|
5096
|
+
* @memberof INavigationLinkResponse
|
|
5097
|
+
*/
|
|
5098
|
+
'_id': string;
|
|
5099
|
+
/**
|
|
5100
|
+
*
|
|
5101
|
+
* @type {string}
|
|
5102
|
+
* @memberof INavigationLinkResponse
|
|
5103
|
+
*/
|
|
5104
|
+
'title': string;
|
|
5105
|
+
/**
|
|
5106
|
+
*
|
|
5107
|
+
* @type {string}
|
|
5108
|
+
* @memberof INavigationLinkResponse
|
|
5109
|
+
*/
|
|
5110
|
+
'type': string;
|
|
5111
|
+
/**
|
|
5112
|
+
*
|
|
5113
|
+
* @type {string}
|
|
5114
|
+
* @memberof INavigationLinkResponse
|
|
5115
|
+
*/
|
|
5116
|
+
'url': string;
|
|
5080
5117
|
/**
|
|
5081
5118
|
*
|
|
5082
5119
|
* @type {number}
|
|
5083
|
-
* @memberof
|
|
5120
|
+
* @memberof INavigationLinkResponse
|
|
5084
5121
|
*/
|
|
5085
5122
|
'levels': number;
|
|
5123
|
+
/**
|
|
5124
|
+
*
|
|
5125
|
+
* @type {Array<INavigationLinkResponse>}
|
|
5126
|
+
* @memberof INavigationLinkResponse
|
|
5127
|
+
*/
|
|
5128
|
+
'links': Array<INavigationLinkResponse>;
|
|
5086
5129
|
}
|
|
5087
5130
|
/**
|
|
5088
5131
|
*
|
|
@@ -5098,16 +5141,16 @@ export interface INavigationPatchRequest {
|
|
|
5098
5141
|
'title'?: string;
|
|
5099
5142
|
/**
|
|
5100
5143
|
*
|
|
5101
|
-
* @type {
|
|
5144
|
+
* @type {Array<INavigationLink>}
|
|
5102
5145
|
* @memberof INavigationPatchRequest
|
|
5103
5146
|
*/
|
|
5104
|
-
'
|
|
5147
|
+
'links'?: Array<INavigationLink>;
|
|
5105
5148
|
/**
|
|
5106
5149
|
*
|
|
5107
|
-
* @type {
|
|
5150
|
+
* @type {LanguageEnum}
|
|
5108
5151
|
* @memberof INavigationPatchRequest
|
|
5109
5152
|
*/
|
|
5110
|
-
'
|
|
5153
|
+
'locale'?: LanguageEnum;
|
|
5111
5154
|
}
|
|
5112
5155
|
/**
|
|
5113
5156
|
*
|
|
@@ -5135,16 +5178,16 @@ export interface INavigationPostRequest {
|
|
|
5135
5178
|
'slug': string;
|
|
5136
5179
|
/**
|
|
5137
5180
|
*
|
|
5138
|
-
* @type {
|
|
5181
|
+
* @type {Array<INavigationLink>}
|
|
5139
5182
|
* @memberof INavigationPostRequest
|
|
5140
5183
|
*/
|
|
5141
|
-
'
|
|
5184
|
+
'links': Array<INavigationLink>;
|
|
5142
5185
|
/**
|
|
5143
5186
|
*
|
|
5144
|
-
* @type {
|
|
5187
|
+
* @type {LanguageEnum}
|
|
5145
5188
|
* @memberof INavigationPostRequest
|
|
5146
5189
|
*/
|
|
5147
|
-
'
|
|
5190
|
+
'locale': LanguageEnum;
|
|
5148
5191
|
}
|
|
5149
5192
|
/**
|
|
5150
5193
|
*
|
|
@@ -5152,6 +5195,12 @@ export interface INavigationPostRequest {
|
|
|
5152
5195
|
* @interface INavigationResponse
|
|
5153
5196
|
*/
|
|
5154
5197
|
export interface INavigationResponse {
|
|
5198
|
+
/**
|
|
5199
|
+
*
|
|
5200
|
+
* @type {string}
|
|
5201
|
+
* @memberof INavigationResponse
|
|
5202
|
+
*/
|
|
5203
|
+
'company': string;
|
|
5155
5204
|
/**
|
|
5156
5205
|
*
|
|
5157
5206
|
* @type {string}
|
|
@@ -5181,31 +5230,25 @@ export interface INavigationResponse {
|
|
|
5181
5230
|
* @type {string}
|
|
5182
5231
|
* @memberof INavigationResponse
|
|
5183
5232
|
*/
|
|
5184
|
-
'
|
|
5185
|
-
/**
|
|
5186
|
-
*
|
|
5187
|
-
* @type {LanguageEnum}
|
|
5188
|
-
* @memberof INavigationResponse
|
|
5189
|
-
*/
|
|
5190
|
-
'locale': LanguageEnum;
|
|
5233
|
+
'title': string;
|
|
5191
5234
|
/**
|
|
5192
5235
|
*
|
|
5193
5236
|
* @type {string}
|
|
5194
5237
|
* @memberof INavigationResponse
|
|
5195
5238
|
*/
|
|
5196
|
-
'
|
|
5239
|
+
'slug': string;
|
|
5197
5240
|
/**
|
|
5198
5241
|
*
|
|
5199
|
-
* @type {
|
|
5242
|
+
* @type {LanguageEnum}
|
|
5200
5243
|
* @memberof INavigationResponse
|
|
5201
5244
|
*/
|
|
5202
|
-
'
|
|
5245
|
+
'locale': LanguageEnum;
|
|
5203
5246
|
/**
|
|
5204
5247
|
*
|
|
5205
|
-
* @type {Array<
|
|
5248
|
+
* @type {Array<INavigationLinkResponse>}
|
|
5206
5249
|
* @memberof INavigationResponse
|
|
5207
5250
|
*/
|
|
5208
|
-
'links': Array<
|
|
5251
|
+
'links': Array<INavigationLinkResponse>;
|
|
5209
5252
|
}
|
|
5210
5253
|
/**
|
|
5211
5254
|
*
|
|
@@ -8950,6 +8993,12 @@ export interface IThemePatchRequest {
|
|
|
8950
8993
|
'config'?: {
|
|
8951
8994
|
[key: string]: any;
|
|
8952
8995
|
};
|
|
8996
|
+
/**
|
|
8997
|
+
*
|
|
8998
|
+
* @type {string}
|
|
8999
|
+
* @memberof IThemePatchRequest
|
|
9000
|
+
*/
|
|
9001
|
+
'demoUrl'?: string;
|
|
8953
9002
|
}
|
|
8954
9003
|
/**
|
|
8955
9004
|
*
|
|
@@ -11540,18 +11589,110 @@ export interface PickINavigationExcludeKeyofINavigationKeyofMongoResponse {
|
|
|
11540
11589
|
* @memberof PickINavigationExcludeKeyofINavigationKeyofMongoResponse
|
|
11541
11590
|
*/
|
|
11542
11591
|
'slug': string;
|
|
11592
|
+
/**
|
|
11593
|
+
*
|
|
11594
|
+
* @type {Array<INavigationLink>}
|
|
11595
|
+
* @memberof PickINavigationExcludeKeyofINavigationKeyofMongoResponse
|
|
11596
|
+
*/
|
|
11597
|
+
'links': Array<INavigationLink>;
|
|
11543
11598
|
/**
|
|
11544
11599
|
*
|
|
11545
11600
|
* @type {LanguageEnum}
|
|
11546
11601
|
* @memberof PickINavigationExcludeKeyofINavigationKeyofMongoResponse
|
|
11547
11602
|
*/
|
|
11548
11603
|
'locale': LanguageEnum;
|
|
11604
|
+
}
|
|
11605
|
+
/**
|
|
11606
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
11607
|
+
* @export
|
|
11608
|
+
* @interface PickINavigationExcludeKeyofINavigationLinks
|
|
11609
|
+
*/
|
|
11610
|
+
export interface PickINavigationExcludeKeyofINavigationLinks {
|
|
11549
11611
|
/**
|
|
11550
11612
|
*
|
|
11551
|
-
* @type {
|
|
11552
|
-
* @memberof
|
|
11613
|
+
* @type {string}
|
|
11614
|
+
* @memberof PickINavigationExcludeKeyofINavigationLinks
|
|
11553
11615
|
*/
|
|
11554
|
-
'
|
|
11616
|
+
'company': string;
|
|
11617
|
+
/**
|
|
11618
|
+
*
|
|
11619
|
+
* @type {string}
|
|
11620
|
+
* @memberof PickINavigationExcludeKeyofINavigationLinks
|
|
11621
|
+
*/
|
|
11622
|
+
'_id': string;
|
|
11623
|
+
/**
|
|
11624
|
+
*
|
|
11625
|
+
* @type {number}
|
|
11626
|
+
* @memberof PickINavigationExcludeKeyofINavigationLinks
|
|
11627
|
+
*/
|
|
11628
|
+
'__v': number;
|
|
11629
|
+
/**
|
|
11630
|
+
*
|
|
11631
|
+
* @type {string}
|
|
11632
|
+
* @memberof PickINavigationExcludeKeyofINavigationLinks
|
|
11633
|
+
*/
|
|
11634
|
+
'createdAt': string;
|
|
11635
|
+
/**
|
|
11636
|
+
*
|
|
11637
|
+
* @type {string}
|
|
11638
|
+
* @memberof PickINavigationExcludeKeyofINavigationLinks
|
|
11639
|
+
*/
|
|
11640
|
+
'updatedAt': string;
|
|
11641
|
+
/**
|
|
11642
|
+
*
|
|
11643
|
+
* @type {string}
|
|
11644
|
+
* @memberof PickINavigationExcludeKeyofINavigationLinks
|
|
11645
|
+
*/
|
|
11646
|
+
'title': string;
|
|
11647
|
+
/**
|
|
11648
|
+
*
|
|
11649
|
+
* @type {string}
|
|
11650
|
+
* @memberof PickINavigationExcludeKeyofINavigationLinks
|
|
11651
|
+
*/
|
|
11652
|
+
'slug': string;
|
|
11653
|
+
/**
|
|
11654
|
+
*
|
|
11655
|
+
* @type {LanguageEnum}
|
|
11656
|
+
* @memberof PickINavigationExcludeKeyofINavigationLinks
|
|
11657
|
+
*/
|
|
11658
|
+
'locale': LanguageEnum;
|
|
11659
|
+
}
|
|
11660
|
+
/**
|
|
11661
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
11662
|
+
* @export
|
|
11663
|
+
* @interface PickINavigationLinkExcludeKeyofINavigationLinkLinks
|
|
11664
|
+
*/
|
|
11665
|
+
export interface PickINavigationLinkExcludeKeyofINavigationLinkLinks {
|
|
11666
|
+
/**
|
|
11667
|
+
*
|
|
11668
|
+
* @type {any}
|
|
11669
|
+
* @memberof PickINavigationLinkExcludeKeyofINavigationLinkLinks
|
|
11670
|
+
*/
|
|
11671
|
+
'object': any;
|
|
11672
|
+
/**
|
|
11673
|
+
*
|
|
11674
|
+
* @type {string}
|
|
11675
|
+
* @memberof PickINavigationLinkExcludeKeyofINavigationLinkLinks
|
|
11676
|
+
*/
|
|
11677
|
+
'_id': string;
|
|
11678
|
+
/**
|
|
11679
|
+
*
|
|
11680
|
+
* @type {string}
|
|
11681
|
+
* @memberof PickINavigationLinkExcludeKeyofINavigationLinkLinks
|
|
11682
|
+
*/
|
|
11683
|
+
'title': string;
|
|
11684
|
+
/**
|
|
11685
|
+
*
|
|
11686
|
+
* @type {string}
|
|
11687
|
+
* @memberof PickINavigationLinkExcludeKeyofINavigationLinkLinks
|
|
11688
|
+
*/
|
|
11689
|
+
'type': string;
|
|
11690
|
+
/**
|
|
11691
|
+
*
|
|
11692
|
+
* @type {string}
|
|
11693
|
+
* @memberof PickINavigationLinkExcludeKeyofINavigationLinkLinks
|
|
11694
|
+
*/
|
|
11695
|
+
'url': string;
|
|
11555
11696
|
}
|
|
11556
11697
|
/**
|
|
11557
11698
|
* From T, pick a set of properties whose keys are in the union K
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api-client",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.58",
|
|
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": "2e90cff37e5e1e4f38bcef8f1d1e991b3b420f0c"
|
|
41
41
|
}
|