@infisale-client/api-client 1.3.55 → 1.3.56
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 +159 -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
|
*
|
|
@@ -11540,18 +11583,110 @@ export interface PickINavigationExcludeKeyofINavigationKeyofMongoResponse {
|
|
|
11540
11583
|
* @memberof PickINavigationExcludeKeyofINavigationKeyofMongoResponse
|
|
11541
11584
|
*/
|
|
11542
11585
|
'slug': string;
|
|
11586
|
+
/**
|
|
11587
|
+
*
|
|
11588
|
+
* @type {Array<INavigationLink>}
|
|
11589
|
+
* @memberof PickINavigationExcludeKeyofINavigationKeyofMongoResponse
|
|
11590
|
+
*/
|
|
11591
|
+
'links': Array<INavigationLink>;
|
|
11543
11592
|
/**
|
|
11544
11593
|
*
|
|
11545
11594
|
* @type {LanguageEnum}
|
|
11546
11595
|
* @memberof PickINavigationExcludeKeyofINavigationKeyofMongoResponse
|
|
11547
11596
|
*/
|
|
11548
11597
|
'locale': LanguageEnum;
|
|
11598
|
+
}
|
|
11599
|
+
/**
|
|
11600
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
11601
|
+
* @export
|
|
11602
|
+
* @interface PickINavigationExcludeKeyofINavigationLinks
|
|
11603
|
+
*/
|
|
11604
|
+
export interface PickINavigationExcludeKeyofINavigationLinks {
|
|
11549
11605
|
/**
|
|
11550
11606
|
*
|
|
11551
|
-
* @type {
|
|
11552
|
-
* @memberof
|
|
11607
|
+
* @type {string}
|
|
11608
|
+
* @memberof PickINavigationExcludeKeyofINavigationLinks
|
|
11553
11609
|
*/
|
|
11554
|
-
'
|
|
11610
|
+
'company': string;
|
|
11611
|
+
/**
|
|
11612
|
+
*
|
|
11613
|
+
* @type {string}
|
|
11614
|
+
* @memberof PickINavigationExcludeKeyofINavigationLinks
|
|
11615
|
+
*/
|
|
11616
|
+
'_id': string;
|
|
11617
|
+
/**
|
|
11618
|
+
*
|
|
11619
|
+
* @type {number}
|
|
11620
|
+
* @memberof PickINavigationExcludeKeyofINavigationLinks
|
|
11621
|
+
*/
|
|
11622
|
+
'__v': number;
|
|
11623
|
+
/**
|
|
11624
|
+
*
|
|
11625
|
+
* @type {string}
|
|
11626
|
+
* @memberof PickINavigationExcludeKeyofINavigationLinks
|
|
11627
|
+
*/
|
|
11628
|
+
'createdAt': string;
|
|
11629
|
+
/**
|
|
11630
|
+
*
|
|
11631
|
+
* @type {string}
|
|
11632
|
+
* @memberof PickINavigationExcludeKeyofINavigationLinks
|
|
11633
|
+
*/
|
|
11634
|
+
'updatedAt': string;
|
|
11635
|
+
/**
|
|
11636
|
+
*
|
|
11637
|
+
* @type {string}
|
|
11638
|
+
* @memberof PickINavigationExcludeKeyofINavigationLinks
|
|
11639
|
+
*/
|
|
11640
|
+
'title': string;
|
|
11641
|
+
/**
|
|
11642
|
+
*
|
|
11643
|
+
* @type {string}
|
|
11644
|
+
* @memberof PickINavigationExcludeKeyofINavigationLinks
|
|
11645
|
+
*/
|
|
11646
|
+
'slug': string;
|
|
11647
|
+
/**
|
|
11648
|
+
*
|
|
11649
|
+
* @type {LanguageEnum}
|
|
11650
|
+
* @memberof PickINavigationExcludeKeyofINavigationLinks
|
|
11651
|
+
*/
|
|
11652
|
+
'locale': LanguageEnum;
|
|
11653
|
+
}
|
|
11654
|
+
/**
|
|
11655
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
11656
|
+
* @export
|
|
11657
|
+
* @interface PickINavigationLinkExcludeKeyofINavigationLinkLinks
|
|
11658
|
+
*/
|
|
11659
|
+
export interface PickINavigationLinkExcludeKeyofINavigationLinkLinks {
|
|
11660
|
+
/**
|
|
11661
|
+
*
|
|
11662
|
+
* @type {any}
|
|
11663
|
+
* @memberof PickINavigationLinkExcludeKeyofINavigationLinkLinks
|
|
11664
|
+
*/
|
|
11665
|
+
'object': any;
|
|
11666
|
+
/**
|
|
11667
|
+
*
|
|
11668
|
+
* @type {string}
|
|
11669
|
+
* @memberof PickINavigationLinkExcludeKeyofINavigationLinkLinks
|
|
11670
|
+
*/
|
|
11671
|
+
'_id': string;
|
|
11672
|
+
/**
|
|
11673
|
+
*
|
|
11674
|
+
* @type {string}
|
|
11675
|
+
* @memberof PickINavigationLinkExcludeKeyofINavigationLinkLinks
|
|
11676
|
+
*/
|
|
11677
|
+
'title': string;
|
|
11678
|
+
/**
|
|
11679
|
+
*
|
|
11680
|
+
* @type {string}
|
|
11681
|
+
* @memberof PickINavigationLinkExcludeKeyofINavigationLinkLinks
|
|
11682
|
+
*/
|
|
11683
|
+
'type': string;
|
|
11684
|
+
/**
|
|
11685
|
+
*
|
|
11686
|
+
* @type {string}
|
|
11687
|
+
* @memberof PickINavigationLinkExcludeKeyofINavigationLinkLinks
|
|
11688
|
+
*/
|
|
11689
|
+
'url': string;
|
|
11555
11690
|
}
|
|
11556
11691
|
/**
|
|
11557
11692
|
* 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.56",
|
|
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": "e29435b92aaa8ec010c486a6f3ed37019f3065cd"
|
|
41
41
|
}
|