@infisale-client/api-client 1.3.19 → 1.3.22
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 +56 -6
- 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
|
@@ -5064,6 +5064,12 @@ export type INavigationCollectionQueryParamsDateFieldEnum = typeof INavigationCo
|
|
|
5064
5064
|
* @interface INavigationLink
|
|
5065
5065
|
*/
|
|
5066
5066
|
export interface INavigationLink {
|
|
5067
|
+
/**
|
|
5068
|
+
*
|
|
5069
|
+
* @type {string}
|
|
5070
|
+
* @memberof INavigationLink
|
|
5071
|
+
*/
|
|
5072
|
+
'_id': string;
|
|
5067
5073
|
/**
|
|
5068
5074
|
*
|
|
5069
5075
|
* @type {string}
|
|
@@ -5082,6 +5088,12 @@ export interface INavigationLink {
|
|
|
5082
5088
|
* @memberof INavigationLink
|
|
5083
5089
|
*/
|
|
5084
5090
|
'type': NavigationLinkTypeEnum;
|
|
5091
|
+
/**
|
|
5092
|
+
*
|
|
5093
|
+
* @type {Array<INavigationLink>}
|
|
5094
|
+
* @memberof INavigationLink
|
|
5095
|
+
*/
|
|
5096
|
+
'links': Array<INavigationLink>;
|
|
5085
5097
|
/**
|
|
5086
5098
|
*
|
|
5087
5099
|
* @type {any}
|
|
@@ -5089,12 +5101,43 @@ export interface INavigationLink {
|
|
|
5089
5101
|
*/
|
|
5090
5102
|
'object': any;
|
|
5091
5103
|
}
|
|
5104
|
+
/**
|
|
5105
|
+
*
|
|
5106
|
+
* @export
|
|
5107
|
+
* @interface INavigationPatchRequest
|
|
5108
|
+
*/
|
|
5109
|
+
export interface INavigationPatchRequest {
|
|
5110
|
+
/**
|
|
5111
|
+
*
|
|
5112
|
+
* @type {string}
|
|
5113
|
+
* @memberof INavigationPatchRequest
|
|
5114
|
+
*/
|
|
5115
|
+
'title'?: string;
|
|
5116
|
+
/**
|
|
5117
|
+
*
|
|
5118
|
+
* @type {LanguageEnum}
|
|
5119
|
+
* @memberof INavigationPatchRequest
|
|
5120
|
+
*/
|
|
5121
|
+
'locale'?: LanguageEnum;
|
|
5122
|
+
/**
|
|
5123
|
+
*
|
|
5124
|
+
* @type {Array<INavigationLink>}
|
|
5125
|
+
* @memberof INavigationPatchRequest
|
|
5126
|
+
*/
|
|
5127
|
+
'links'?: Array<INavigationLink>;
|
|
5128
|
+
}
|
|
5092
5129
|
/**
|
|
5093
5130
|
*
|
|
5094
5131
|
* @export
|
|
5095
5132
|
* @interface INavigationPostRequest
|
|
5096
5133
|
*/
|
|
5097
5134
|
export interface INavigationPostRequest {
|
|
5135
|
+
/**
|
|
5136
|
+
*
|
|
5137
|
+
* @type {string}
|
|
5138
|
+
* @memberof INavigationPostRequest
|
|
5139
|
+
*/
|
|
5140
|
+
'company': string;
|
|
5098
5141
|
/**
|
|
5099
5142
|
*
|
|
5100
5143
|
* @type {string}
|
|
@@ -10571,31 +10614,37 @@ export interface PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCom
|
|
|
10571
10614
|
/**
|
|
10572
10615
|
* From T, pick a set of properties whose keys are in the union K
|
|
10573
10616
|
* @export
|
|
10574
|
-
* @interface
|
|
10617
|
+
* @interface PickINavigationExcludeKeyofINavigationKeyofMongoResponse
|
|
10575
10618
|
*/
|
|
10576
|
-
export interface
|
|
10619
|
+
export interface PickINavigationExcludeKeyofINavigationKeyofMongoResponse {
|
|
10620
|
+
/**
|
|
10621
|
+
*
|
|
10622
|
+
* @type {string}
|
|
10623
|
+
* @memberof PickINavigationExcludeKeyofINavigationKeyofMongoResponse
|
|
10624
|
+
*/
|
|
10625
|
+
'company': string;
|
|
10577
10626
|
/**
|
|
10578
10627
|
*
|
|
10579
10628
|
* @type {string}
|
|
10580
|
-
* @memberof
|
|
10629
|
+
* @memberof PickINavigationExcludeKeyofINavigationKeyofMongoResponse
|
|
10581
10630
|
*/
|
|
10582
10631
|
'title': string;
|
|
10583
10632
|
/**
|
|
10584
10633
|
*
|
|
10585
10634
|
* @type {string}
|
|
10586
|
-
* @memberof
|
|
10635
|
+
* @memberof PickINavigationExcludeKeyofINavigationKeyofMongoResponse
|
|
10587
10636
|
*/
|
|
10588
10637
|
'slug': string;
|
|
10589
10638
|
/**
|
|
10590
10639
|
*
|
|
10591
10640
|
* @type {LanguageEnum}
|
|
10592
|
-
* @memberof
|
|
10641
|
+
* @memberof PickINavigationExcludeKeyofINavigationKeyofMongoResponse
|
|
10593
10642
|
*/
|
|
10594
10643
|
'locale': LanguageEnum;
|
|
10595
10644
|
/**
|
|
10596
10645
|
*
|
|
10597
10646
|
* @type {Array<INavigationLink>}
|
|
10598
|
-
* @memberof
|
|
10647
|
+
* @memberof PickINavigationExcludeKeyofINavigationKeyofMongoResponse
|
|
10599
10648
|
*/
|
|
10600
10649
|
'links': Array<INavigationLink>;
|
|
10601
10650
|
}
|
|
@@ -12388,6 +12437,7 @@ export declare const SitemapTypeEnum: {
|
|
|
12388
12437
|
readonly PAGES: "pages";
|
|
12389
12438
|
readonly COLLECTIONS: "collections";
|
|
12390
12439
|
readonly BLOG: "blog";
|
|
12440
|
+
readonly UNIQUE_PAGES: "unique-pages";
|
|
12391
12441
|
};
|
|
12392
12442
|
export type SitemapTypeEnum = typeof SitemapTypeEnum[keyof typeof SitemapTypeEnum];
|
|
12393
12443
|
/**
|
package/dist/api/api.js
CHANGED
package/dist/api/api.mjs
CHANGED
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.22",
|
|
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": "8df397f878fe42a8a52dc9892278be254c511da1"
|
|
41
41
|
}
|