@halo-dev/api-client 0.0.21 → 0.0.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/index.cjs +84 -18
- package/dist/index.d.ts +363 -158
- package/dist/index.mjs +81 -19
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -124,7 +124,7 @@ const ApiHaloRunV1alpha1CommentApiAxiosParamCreator = function(configuration) {
|
|
|
124
124
|
options: localVarRequestOptions
|
|
125
125
|
};
|
|
126
126
|
},
|
|
127
|
-
listComments: async (sort, keyword, hidden, top, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName,
|
|
127
|
+
listComments: async (sort, keyword, hidden, top, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
128
128
|
const localVarPath = `/apis/api.halo.run/v1alpha1/comments`;
|
|
129
129
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
130
130
|
let baseOptions;
|
|
@@ -148,6 +148,9 @@ const ApiHaloRunV1alpha1CommentApiAxiosParamCreator = function(configuration) {
|
|
|
148
148
|
if (top !== void 0) {
|
|
149
149
|
localVarQueryParameter["top"] = top;
|
|
150
150
|
}
|
|
151
|
+
if (sortOrder !== void 0) {
|
|
152
|
+
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
153
|
+
}
|
|
151
154
|
if (approved !== void 0) {
|
|
152
155
|
localVarQueryParameter["approved"] = approved;
|
|
153
156
|
}
|
|
@@ -166,9 +169,6 @@ const ApiHaloRunV1alpha1CommentApiAxiosParamCreator = function(configuration) {
|
|
|
166
169
|
if (subjectName !== void 0) {
|
|
167
170
|
localVarQueryParameter["subjectName"] = subjectName;
|
|
168
171
|
}
|
|
169
|
-
if (sortOrder !== void 0) {
|
|
170
|
-
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
171
|
-
}
|
|
172
172
|
if (size !== void 0) {
|
|
173
173
|
localVarQueryParameter["size"] = size;
|
|
174
174
|
}
|
|
@@ -202,8 +202,8 @@ const ApiHaloRunV1alpha1CommentApiFp = function(configuration) {
|
|
|
202
202
|
const localVarAxiosArgs = await localVarAxiosParamCreator.createReply(name, replyRequest, options);
|
|
203
203
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
204
204
|
},
|
|
205
|
-
async listComments(sort, keyword, hidden, top, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName,
|
|
206
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listComments(sort, keyword, hidden, top, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName,
|
|
205
|
+
async listComments(sort, keyword, hidden, top, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, size, page, labelSelector, fieldSelector, options) {
|
|
206
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listComments(sort, keyword, hidden, top, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, size, page, labelSelector, fieldSelector, options);
|
|
207
207
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
208
208
|
}
|
|
209
209
|
};
|
|
@@ -217,8 +217,8 @@ const ApiHaloRunV1alpha1CommentApiFactory = function(configuration, basePath, ax
|
|
|
217
217
|
createReply(name, replyRequest, options) {
|
|
218
218
|
return localVarFp.createReply(name, replyRequest, options).then((request) => request(axios, basePath));
|
|
219
219
|
},
|
|
220
|
-
listComments(sort, keyword, hidden, top, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName,
|
|
221
|
-
return localVarFp.listComments(sort, keyword, hidden, top, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName,
|
|
220
|
+
listComments(sort, keyword, hidden, top, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, size, page, labelSelector, fieldSelector, options) {
|
|
221
|
+
return localVarFp.listComments(sort, keyword, hidden, top, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
222
222
|
}
|
|
223
223
|
};
|
|
224
224
|
};
|
|
@@ -230,7 +230,7 @@ class ApiHaloRunV1alpha1CommentApi extends BaseAPI {
|
|
|
230
230
|
return ApiHaloRunV1alpha1CommentApiFp(this.configuration).createReply(requestParameters.name, requestParameters.replyRequest, options).then((request) => request(this.axios, this.basePath));
|
|
231
231
|
}
|
|
232
232
|
listComments(requestParameters = {}, options) {
|
|
233
|
-
return ApiHaloRunV1alpha1CommentApiFp(this.configuration).listComments(requestParameters.sort, requestParameters.keyword, requestParameters.hidden, requestParameters.top, requestParameters.approved, requestParameters.allowNotification, requestParameters.ownerKind, requestParameters.ownerName, requestParameters.subjectKind, requestParameters.subjectName, requestParameters.
|
|
233
|
+
return ApiHaloRunV1alpha1CommentApiFp(this.configuration).listComments(requestParameters.sort, requestParameters.keyword, requestParameters.hidden, requestParameters.top, requestParameters.sortOrder, requestParameters.approved, requestParameters.allowNotification, requestParameters.ownerKind, requestParameters.ownerName, requestParameters.subjectKind, requestParameters.subjectName, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
234
234
|
}
|
|
235
235
|
}
|
|
236
236
|
|
|
@@ -462,7 +462,7 @@ const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
462
462
|
options: localVarRequestOptions
|
|
463
463
|
};
|
|
464
464
|
},
|
|
465
|
-
listPosts: async (tags,
|
|
465
|
+
listPosts: async (tags, contributors, categories, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
466
466
|
const localVarPath = `/apis/api.halo.run/v1alpha1/posts`;
|
|
467
467
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
468
468
|
let baseOptions;
|
|
@@ -477,12 +477,12 @@ const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
477
477
|
if (tags) {
|
|
478
478
|
localVarQueryParameter["tags"] = Array.from(tags);
|
|
479
479
|
}
|
|
480
|
-
if (categories) {
|
|
481
|
-
localVarQueryParameter["categories"] = Array.from(categories);
|
|
482
|
-
}
|
|
483
480
|
if (contributors) {
|
|
484
481
|
localVarQueryParameter["contributors"] = Array.from(contributors);
|
|
485
482
|
}
|
|
483
|
+
if (categories) {
|
|
484
|
+
localVarQueryParameter["categories"] = Array.from(categories);
|
|
485
|
+
}
|
|
486
486
|
if (size !== void 0) {
|
|
487
487
|
localVarQueryParameter["size"] = size;
|
|
488
488
|
}
|
|
@@ -557,8 +557,8 @@ const ApiHaloRunV1alpha1PostApiFp = function(configuration) {
|
|
|
557
557
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftPost(postRequest, options);
|
|
558
558
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
559
559
|
},
|
|
560
|
-
async listPosts(tags,
|
|
561
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(tags,
|
|
560
|
+
async listPosts(tags, contributors, categories, size, page, labelSelector, fieldSelector, options) {
|
|
561
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(tags, contributors, categories, size, page, labelSelector, fieldSelector, options);
|
|
562
562
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
563
563
|
},
|
|
564
564
|
async publishPost(name, options) {
|
|
@@ -577,8 +577,8 @@ const ApiHaloRunV1alpha1PostApiFactory = function(configuration, basePath, axios
|
|
|
577
577
|
draftPost(postRequest, options) {
|
|
578
578
|
return localVarFp.draftPost(postRequest, options).then((request) => request(axios, basePath));
|
|
579
579
|
},
|
|
580
|
-
listPosts(tags,
|
|
581
|
-
return localVarFp.listPosts(tags,
|
|
580
|
+
listPosts(tags, contributors, categories, size, page, labelSelector, fieldSelector, options) {
|
|
581
|
+
return localVarFp.listPosts(tags, contributors, categories, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
582
582
|
},
|
|
583
583
|
publishPost(name, options) {
|
|
584
584
|
return localVarFp.publishPost(name, options).then((request) => request(axios, basePath));
|
|
@@ -593,7 +593,7 @@ class ApiHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
593
593
|
return ApiHaloRunV1alpha1PostApiFp(this.configuration).draftPost(requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
|
|
594
594
|
}
|
|
595
595
|
listPosts(requestParameters = {}, options) {
|
|
596
|
-
return ApiHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.tags, requestParameters.
|
|
596
|
+
return ApiHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.tags, requestParameters.contributors, requestParameters.categories, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
597
597
|
}
|
|
598
598
|
publishPost(requestParameters, options) {
|
|
599
599
|
return ApiHaloRunV1alpha1PostApiFp(this.configuration).publishPost(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -603,6 +603,68 @@ class ApiHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
603
603
|
}
|
|
604
604
|
}
|
|
605
605
|
|
|
606
|
+
const ApiHaloRunV1alpha1ReplyApiAxiosParamCreator = function(configuration) {
|
|
607
|
+
return {
|
|
608
|
+
listReplies: async (commentName, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
609
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/replies`;
|
|
610
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
611
|
+
let baseOptions;
|
|
612
|
+
if (configuration) {
|
|
613
|
+
baseOptions = configuration.baseOptions;
|
|
614
|
+
}
|
|
615
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
616
|
+
const localVarHeaderParameter = {};
|
|
617
|
+
const localVarQueryParameter = {};
|
|
618
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
619
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
620
|
+
if (commentName !== void 0) {
|
|
621
|
+
localVarQueryParameter["commentName"] = commentName;
|
|
622
|
+
}
|
|
623
|
+
if (size !== void 0) {
|
|
624
|
+
localVarQueryParameter["size"] = size;
|
|
625
|
+
}
|
|
626
|
+
if (page !== void 0) {
|
|
627
|
+
localVarQueryParameter["page"] = page;
|
|
628
|
+
}
|
|
629
|
+
if (labelSelector) {
|
|
630
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
631
|
+
}
|
|
632
|
+
if (fieldSelector) {
|
|
633
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
634
|
+
}
|
|
635
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
636
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
637
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
638
|
+
return {
|
|
639
|
+
url: toPathString(localVarUrlObj),
|
|
640
|
+
options: localVarRequestOptions
|
|
641
|
+
};
|
|
642
|
+
}
|
|
643
|
+
};
|
|
644
|
+
};
|
|
645
|
+
const ApiHaloRunV1alpha1ReplyApiFp = function(configuration) {
|
|
646
|
+
const localVarAxiosParamCreator = ApiHaloRunV1alpha1ReplyApiAxiosParamCreator(configuration);
|
|
647
|
+
return {
|
|
648
|
+
async listReplies(commentName, size, page, labelSelector, fieldSelector, options) {
|
|
649
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listReplies(commentName, size, page, labelSelector, fieldSelector, options);
|
|
650
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
651
|
+
}
|
|
652
|
+
};
|
|
653
|
+
};
|
|
654
|
+
const ApiHaloRunV1alpha1ReplyApiFactory = function(configuration, basePath, axios) {
|
|
655
|
+
const localVarFp = ApiHaloRunV1alpha1ReplyApiFp(configuration);
|
|
656
|
+
return {
|
|
657
|
+
listReplies(commentName, size, page, labelSelector, fieldSelector, options) {
|
|
658
|
+
return localVarFp.listReplies(commentName, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
659
|
+
}
|
|
660
|
+
};
|
|
661
|
+
};
|
|
662
|
+
class ApiHaloRunV1alpha1ReplyApi extends BaseAPI {
|
|
663
|
+
listReplies(requestParameters = {}, options) {
|
|
664
|
+
return ApiHaloRunV1alpha1ReplyApiFp(this.configuration).listReplies(requestParameters.commentName, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
665
|
+
}
|
|
666
|
+
}
|
|
667
|
+
|
|
606
668
|
const ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configuration) {
|
|
607
669
|
return {
|
|
608
670
|
draftSinglePage: async (singlePageRequest, options = {}) => {
|
|
@@ -5212,6 +5274,10 @@ exports.ApiHaloRunV1alpha1PostApi = ApiHaloRunV1alpha1PostApi;
|
|
|
5212
5274
|
exports.ApiHaloRunV1alpha1PostApiAxiosParamCreator = ApiHaloRunV1alpha1PostApiAxiosParamCreator;
|
|
5213
5275
|
exports.ApiHaloRunV1alpha1PostApiFactory = ApiHaloRunV1alpha1PostApiFactory;
|
|
5214
5276
|
exports.ApiHaloRunV1alpha1PostApiFp = ApiHaloRunV1alpha1PostApiFp;
|
|
5277
|
+
exports.ApiHaloRunV1alpha1ReplyApi = ApiHaloRunV1alpha1ReplyApi;
|
|
5278
|
+
exports.ApiHaloRunV1alpha1ReplyApiAxiosParamCreator = ApiHaloRunV1alpha1ReplyApiAxiosParamCreator;
|
|
5279
|
+
exports.ApiHaloRunV1alpha1ReplyApiFactory = ApiHaloRunV1alpha1ReplyApiFactory;
|
|
5280
|
+
exports.ApiHaloRunV1alpha1ReplyApiFp = ApiHaloRunV1alpha1ReplyApiFp;
|
|
5215
5281
|
exports.ApiHaloRunV1alpha1SinglePageApi = ApiHaloRunV1alpha1SinglePageApi;
|
|
5216
5282
|
exports.ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator = ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator;
|
|
5217
5283
|
exports.ApiHaloRunV1alpha1SinglePageApiFactory = ApiHaloRunV1alpha1SinglePageApiFactory;
|
package/dist/index.d.ts
CHANGED
|
@@ -1863,7 +1863,7 @@ interface ListedComment {
|
|
|
1863
1863
|
* @type {OwnerInfo}
|
|
1864
1864
|
* @memberof ListedComment
|
|
1865
1865
|
*/
|
|
1866
|
-
owner
|
|
1866
|
+
owner: OwnerInfo;
|
|
1867
1867
|
/**
|
|
1868
1868
|
*
|
|
1869
1869
|
* @type {Extension}
|
|
@@ -2430,6 +2430,242 @@ interface ListedPostList {
|
|
|
2430
2430
|
hasPrevious: boolean;
|
|
2431
2431
|
}
|
|
2432
2432
|
|
|
2433
|
+
/**
|
|
2434
|
+
* Halo Next API
|
|
2435
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2436
|
+
*
|
|
2437
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2438
|
+
*
|
|
2439
|
+
*
|
|
2440
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2441
|
+
* https://openapi-generator.tech
|
|
2442
|
+
* Do not edit the class manually.
|
|
2443
|
+
*/
|
|
2444
|
+
|
|
2445
|
+
/**
|
|
2446
|
+
*
|
|
2447
|
+
* @export
|
|
2448
|
+
* @interface ReplySpec
|
|
2449
|
+
*/
|
|
2450
|
+
interface ReplySpec {
|
|
2451
|
+
/**
|
|
2452
|
+
*
|
|
2453
|
+
* @type {string}
|
|
2454
|
+
* @memberof ReplySpec
|
|
2455
|
+
*/
|
|
2456
|
+
raw: string;
|
|
2457
|
+
/**
|
|
2458
|
+
*
|
|
2459
|
+
* @type {string}
|
|
2460
|
+
* @memberof ReplySpec
|
|
2461
|
+
*/
|
|
2462
|
+
content: string;
|
|
2463
|
+
/**
|
|
2464
|
+
*
|
|
2465
|
+
* @type {CommentOwner}
|
|
2466
|
+
* @memberof ReplySpec
|
|
2467
|
+
*/
|
|
2468
|
+
owner: CommentOwner;
|
|
2469
|
+
/**
|
|
2470
|
+
*
|
|
2471
|
+
* @type {string}
|
|
2472
|
+
* @memberof ReplySpec
|
|
2473
|
+
*/
|
|
2474
|
+
userAgent?: string;
|
|
2475
|
+
/**
|
|
2476
|
+
*
|
|
2477
|
+
* @type {string}
|
|
2478
|
+
* @memberof ReplySpec
|
|
2479
|
+
*/
|
|
2480
|
+
ipAddress?: string;
|
|
2481
|
+
/**
|
|
2482
|
+
*
|
|
2483
|
+
* @type {number}
|
|
2484
|
+
* @memberof ReplySpec
|
|
2485
|
+
*/
|
|
2486
|
+
priority: number;
|
|
2487
|
+
/**
|
|
2488
|
+
*
|
|
2489
|
+
* @type {boolean}
|
|
2490
|
+
* @memberof ReplySpec
|
|
2491
|
+
*/
|
|
2492
|
+
top: boolean;
|
|
2493
|
+
/**
|
|
2494
|
+
*
|
|
2495
|
+
* @type {boolean}
|
|
2496
|
+
* @memberof ReplySpec
|
|
2497
|
+
*/
|
|
2498
|
+
allowNotification: boolean;
|
|
2499
|
+
/**
|
|
2500
|
+
*
|
|
2501
|
+
* @type {boolean}
|
|
2502
|
+
* @memberof ReplySpec
|
|
2503
|
+
*/
|
|
2504
|
+
approved: boolean;
|
|
2505
|
+
/**
|
|
2506
|
+
*
|
|
2507
|
+
* @type {boolean}
|
|
2508
|
+
* @memberof ReplySpec
|
|
2509
|
+
*/
|
|
2510
|
+
hidden: boolean;
|
|
2511
|
+
/**
|
|
2512
|
+
*
|
|
2513
|
+
* @type {string}
|
|
2514
|
+
* @memberof ReplySpec
|
|
2515
|
+
*/
|
|
2516
|
+
commentName: string;
|
|
2517
|
+
/**
|
|
2518
|
+
*
|
|
2519
|
+
* @type {string}
|
|
2520
|
+
* @memberof ReplySpec
|
|
2521
|
+
*/
|
|
2522
|
+
quoteReply?: string;
|
|
2523
|
+
}
|
|
2524
|
+
|
|
2525
|
+
/**
|
|
2526
|
+
* Halo Next API
|
|
2527
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2528
|
+
*
|
|
2529
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2530
|
+
*
|
|
2531
|
+
*
|
|
2532
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2533
|
+
* https://openapi-generator.tech
|
|
2534
|
+
* Do not edit the class manually.
|
|
2535
|
+
*/
|
|
2536
|
+
|
|
2537
|
+
/**
|
|
2538
|
+
*
|
|
2539
|
+
* @export
|
|
2540
|
+
* @interface Reply
|
|
2541
|
+
*/
|
|
2542
|
+
interface Reply {
|
|
2543
|
+
/**
|
|
2544
|
+
*
|
|
2545
|
+
* @type {ReplySpec}
|
|
2546
|
+
* @memberof Reply
|
|
2547
|
+
*/
|
|
2548
|
+
spec: ReplySpec;
|
|
2549
|
+
/**
|
|
2550
|
+
*
|
|
2551
|
+
* @type {string}
|
|
2552
|
+
* @memberof Reply
|
|
2553
|
+
*/
|
|
2554
|
+
apiVersion: string;
|
|
2555
|
+
/**
|
|
2556
|
+
*
|
|
2557
|
+
* @type {string}
|
|
2558
|
+
* @memberof Reply
|
|
2559
|
+
*/
|
|
2560
|
+
kind: string;
|
|
2561
|
+
/**
|
|
2562
|
+
*
|
|
2563
|
+
* @type {Metadata}
|
|
2564
|
+
* @memberof Reply
|
|
2565
|
+
*/
|
|
2566
|
+
metadata: Metadata;
|
|
2567
|
+
}
|
|
2568
|
+
|
|
2569
|
+
/**
|
|
2570
|
+
* Halo Next API
|
|
2571
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2572
|
+
*
|
|
2573
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2574
|
+
*
|
|
2575
|
+
*
|
|
2576
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2577
|
+
* https://openapi-generator.tech
|
|
2578
|
+
* Do not edit the class manually.
|
|
2579
|
+
*/
|
|
2580
|
+
|
|
2581
|
+
/**
|
|
2582
|
+
* A chunk of items.
|
|
2583
|
+
* @export
|
|
2584
|
+
* @interface ListedReply
|
|
2585
|
+
*/
|
|
2586
|
+
interface ListedReply {
|
|
2587
|
+
/**
|
|
2588
|
+
*
|
|
2589
|
+
* @type {Reply}
|
|
2590
|
+
* @memberof ListedReply
|
|
2591
|
+
*/
|
|
2592
|
+
reply: Reply;
|
|
2593
|
+
/**
|
|
2594
|
+
*
|
|
2595
|
+
* @type {OwnerInfo}
|
|
2596
|
+
* @memberof ListedReply
|
|
2597
|
+
*/
|
|
2598
|
+
owner: OwnerInfo;
|
|
2599
|
+
}
|
|
2600
|
+
|
|
2601
|
+
/**
|
|
2602
|
+
* Halo Next API
|
|
2603
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2604
|
+
*
|
|
2605
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2606
|
+
*
|
|
2607
|
+
*
|
|
2608
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2609
|
+
* https://openapi-generator.tech
|
|
2610
|
+
* Do not edit the class manually.
|
|
2611
|
+
*/
|
|
2612
|
+
|
|
2613
|
+
/**
|
|
2614
|
+
*
|
|
2615
|
+
* @export
|
|
2616
|
+
* @interface ListedReplyList
|
|
2617
|
+
*/
|
|
2618
|
+
interface ListedReplyList {
|
|
2619
|
+
/**
|
|
2620
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
2621
|
+
* @type {number}
|
|
2622
|
+
* @memberof ListedReplyList
|
|
2623
|
+
*/
|
|
2624
|
+
page: number;
|
|
2625
|
+
/**
|
|
2626
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
2627
|
+
* @type {number}
|
|
2628
|
+
* @memberof ListedReplyList
|
|
2629
|
+
*/
|
|
2630
|
+
size: number;
|
|
2631
|
+
/**
|
|
2632
|
+
* Total elements.
|
|
2633
|
+
* @type {number}
|
|
2634
|
+
* @memberof ListedReplyList
|
|
2635
|
+
*/
|
|
2636
|
+
total: number;
|
|
2637
|
+
/**
|
|
2638
|
+
* A chunk of items.
|
|
2639
|
+
* @type {Array<ListedReply>}
|
|
2640
|
+
* @memberof ListedReplyList
|
|
2641
|
+
*/
|
|
2642
|
+
items: Array<ListedReply>;
|
|
2643
|
+
/**
|
|
2644
|
+
* Indicates whether current page is the first page.
|
|
2645
|
+
* @type {boolean}
|
|
2646
|
+
* @memberof ListedReplyList
|
|
2647
|
+
*/
|
|
2648
|
+
first: boolean;
|
|
2649
|
+
/**
|
|
2650
|
+
* Indicates whether current page is the last page.
|
|
2651
|
+
* @type {boolean}
|
|
2652
|
+
* @memberof ListedReplyList
|
|
2653
|
+
*/
|
|
2654
|
+
last: boolean;
|
|
2655
|
+
/**
|
|
2656
|
+
* Indicates whether current page has previous page.
|
|
2657
|
+
* @type {boolean}
|
|
2658
|
+
* @memberof ListedReplyList
|
|
2659
|
+
*/
|
|
2660
|
+
hasNext: boolean;
|
|
2661
|
+
/**
|
|
2662
|
+
* Indicates whether current page has previous page.
|
|
2663
|
+
* @type {boolean}
|
|
2664
|
+
* @memberof ListedReplyList
|
|
2665
|
+
*/
|
|
2666
|
+
hasPrevious: boolean;
|
|
2667
|
+
}
|
|
2668
|
+
|
|
2433
2669
|
/**
|
|
2434
2670
|
* Halo Next API
|
|
2435
2671
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -4080,142 +4316,6 @@ interface PostRequest {
|
|
|
4080
4316
|
content: Content;
|
|
4081
4317
|
}
|
|
4082
4318
|
|
|
4083
|
-
/**
|
|
4084
|
-
* Halo Next API
|
|
4085
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4086
|
-
*
|
|
4087
|
-
* The version of the OpenAPI document: 2.0.0
|
|
4088
|
-
*
|
|
4089
|
-
*
|
|
4090
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4091
|
-
* https://openapi-generator.tech
|
|
4092
|
-
* Do not edit the class manually.
|
|
4093
|
-
*/
|
|
4094
|
-
|
|
4095
|
-
/**
|
|
4096
|
-
*
|
|
4097
|
-
* @export
|
|
4098
|
-
* @interface ReplySpec
|
|
4099
|
-
*/
|
|
4100
|
-
interface ReplySpec {
|
|
4101
|
-
/**
|
|
4102
|
-
*
|
|
4103
|
-
* @type {string}
|
|
4104
|
-
* @memberof ReplySpec
|
|
4105
|
-
*/
|
|
4106
|
-
raw: string;
|
|
4107
|
-
/**
|
|
4108
|
-
*
|
|
4109
|
-
* @type {string}
|
|
4110
|
-
* @memberof ReplySpec
|
|
4111
|
-
*/
|
|
4112
|
-
content: string;
|
|
4113
|
-
/**
|
|
4114
|
-
*
|
|
4115
|
-
* @type {CommentOwner}
|
|
4116
|
-
* @memberof ReplySpec
|
|
4117
|
-
*/
|
|
4118
|
-
owner: CommentOwner;
|
|
4119
|
-
/**
|
|
4120
|
-
*
|
|
4121
|
-
* @type {string}
|
|
4122
|
-
* @memberof ReplySpec
|
|
4123
|
-
*/
|
|
4124
|
-
userAgent?: string;
|
|
4125
|
-
/**
|
|
4126
|
-
*
|
|
4127
|
-
* @type {string}
|
|
4128
|
-
* @memberof ReplySpec
|
|
4129
|
-
*/
|
|
4130
|
-
ipAddress?: string;
|
|
4131
|
-
/**
|
|
4132
|
-
*
|
|
4133
|
-
* @type {number}
|
|
4134
|
-
* @memberof ReplySpec
|
|
4135
|
-
*/
|
|
4136
|
-
priority: number;
|
|
4137
|
-
/**
|
|
4138
|
-
*
|
|
4139
|
-
* @type {boolean}
|
|
4140
|
-
* @memberof ReplySpec
|
|
4141
|
-
*/
|
|
4142
|
-
top: boolean;
|
|
4143
|
-
/**
|
|
4144
|
-
*
|
|
4145
|
-
* @type {boolean}
|
|
4146
|
-
* @memberof ReplySpec
|
|
4147
|
-
*/
|
|
4148
|
-
allowNotification: boolean;
|
|
4149
|
-
/**
|
|
4150
|
-
*
|
|
4151
|
-
* @type {boolean}
|
|
4152
|
-
* @memberof ReplySpec
|
|
4153
|
-
*/
|
|
4154
|
-
approved: boolean;
|
|
4155
|
-
/**
|
|
4156
|
-
*
|
|
4157
|
-
* @type {boolean}
|
|
4158
|
-
* @memberof ReplySpec
|
|
4159
|
-
*/
|
|
4160
|
-
hidden: boolean;
|
|
4161
|
-
/**
|
|
4162
|
-
*
|
|
4163
|
-
* @type {string}
|
|
4164
|
-
* @memberof ReplySpec
|
|
4165
|
-
*/
|
|
4166
|
-
commentName: string;
|
|
4167
|
-
/**
|
|
4168
|
-
*
|
|
4169
|
-
* @type {string}
|
|
4170
|
-
* @memberof ReplySpec
|
|
4171
|
-
*/
|
|
4172
|
-
quoteReply?: string;
|
|
4173
|
-
}
|
|
4174
|
-
|
|
4175
|
-
/**
|
|
4176
|
-
* Halo Next API
|
|
4177
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4178
|
-
*
|
|
4179
|
-
* The version of the OpenAPI document: 2.0.0
|
|
4180
|
-
*
|
|
4181
|
-
*
|
|
4182
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4183
|
-
* https://openapi-generator.tech
|
|
4184
|
-
* Do not edit the class manually.
|
|
4185
|
-
*/
|
|
4186
|
-
|
|
4187
|
-
/**
|
|
4188
|
-
*
|
|
4189
|
-
* @export
|
|
4190
|
-
* @interface Reply
|
|
4191
|
-
*/
|
|
4192
|
-
interface Reply {
|
|
4193
|
-
/**
|
|
4194
|
-
*
|
|
4195
|
-
* @type {ReplySpec}
|
|
4196
|
-
* @memberof Reply
|
|
4197
|
-
*/
|
|
4198
|
-
spec: ReplySpec;
|
|
4199
|
-
/**
|
|
4200
|
-
*
|
|
4201
|
-
* @type {string}
|
|
4202
|
-
* @memberof Reply
|
|
4203
|
-
*/
|
|
4204
|
-
apiVersion: string;
|
|
4205
|
-
/**
|
|
4206
|
-
*
|
|
4207
|
-
* @type {string}
|
|
4208
|
-
* @memberof Reply
|
|
4209
|
-
*/
|
|
4210
|
-
kind: string;
|
|
4211
|
-
/**
|
|
4212
|
-
*
|
|
4213
|
-
* @type {Metadata}
|
|
4214
|
-
* @memberof Reply
|
|
4215
|
-
*/
|
|
4216
|
-
metadata: Metadata;
|
|
4217
|
-
}
|
|
4218
|
-
|
|
4219
4319
|
/**
|
|
4220
4320
|
* Halo Next API
|
|
4221
4321
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -5764,13 +5864,13 @@ declare const ApiHaloRunV1alpha1CommentApiAxiosParamCreator: (configuration?: Co
|
|
|
5764
5864
|
* @param {string} [keyword] Comments filtered by keyword.
|
|
5765
5865
|
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
5766
5866
|
* @param {boolean} [top] Comment top display.
|
|
5867
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
5767
5868
|
* @param {boolean} [approved] Comments approved.
|
|
5768
5869
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
5769
5870
|
* @param {string} [ownerKind] Commenter kind.
|
|
5770
5871
|
* @param {string} [ownerName] Commenter name.
|
|
5771
5872
|
* @param {string} [subjectKind] Comment subject kind.
|
|
5772
5873
|
* @param {string} [subjectName] Comment subject name.
|
|
5773
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
5774
5874
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5775
5875
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
5776
5876
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -5778,7 +5878,7 @@ declare const ApiHaloRunV1alpha1CommentApiAxiosParamCreator: (configuration?: Co
|
|
|
5778
5878
|
* @param {*} [options] Override http request option.
|
|
5779
5879
|
* @throws {RequiredError}
|
|
5780
5880
|
*/
|
|
5781
|
-
listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string,
|
|
5881
|
+
listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5782
5882
|
};
|
|
5783
5883
|
/**
|
|
5784
5884
|
* ApiHaloRunV1alpha1CommentApi - functional programming interface
|
|
@@ -5806,13 +5906,13 @@ declare const ApiHaloRunV1alpha1CommentApiFp: (configuration?: Configuration) =>
|
|
|
5806
5906
|
* @param {string} [keyword] Comments filtered by keyword.
|
|
5807
5907
|
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
5808
5908
|
* @param {boolean} [top] Comment top display.
|
|
5909
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
5809
5910
|
* @param {boolean} [approved] Comments approved.
|
|
5810
5911
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
5811
5912
|
* @param {string} [ownerKind] Commenter kind.
|
|
5812
5913
|
* @param {string} [ownerName] Commenter name.
|
|
5813
5914
|
* @param {string} [subjectKind] Comment subject kind.
|
|
5814
5915
|
* @param {string} [subjectName] Comment subject name.
|
|
5815
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
5816
5916
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5817
5917
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
5818
5918
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -5820,7 +5920,7 @@ declare const ApiHaloRunV1alpha1CommentApiFp: (configuration?: Configuration) =>
|
|
|
5820
5920
|
* @param {*} [options] Override http request option.
|
|
5821
5921
|
* @throws {RequiredError}
|
|
5822
5922
|
*/
|
|
5823
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string,
|
|
5923
|
+
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedCommentList>>;
|
|
5824
5924
|
};
|
|
5825
5925
|
/**
|
|
5826
5926
|
* ApiHaloRunV1alpha1CommentApi - factory interface
|
|
@@ -5848,13 +5948,13 @@ declare const ApiHaloRunV1alpha1CommentApiFactory: (configuration?: Configuratio
|
|
|
5848
5948
|
* @param {string} [keyword] Comments filtered by keyword.
|
|
5849
5949
|
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
5850
5950
|
* @param {boolean} [top] Comment top display.
|
|
5951
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
5851
5952
|
* @param {boolean} [approved] Comments approved.
|
|
5852
5953
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
5853
5954
|
* @param {string} [ownerKind] Commenter kind.
|
|
5854
5955
|
* @param {string} [ownerName] Commenter name.
|
|
5855
5956
|
* @param {string} [subjectKind] Comment subject kind.
|
|
5856
5957
|
* @param {string} [subjectName] Comment subject name.
|
|
5857
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
5858
5958
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5859
5959
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
5860
5960
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -5862,7 +5962,7 @@ declare const ApiHaloRunV1alpha1CommentApiFactory: (configuration?: Configuratio
|
|
|
5862
5962
|
* @param {*} [options] Override http request option.
|
|
5863
5963
|
* @throws {RequiredError}
|
|
5864
5964
|
*/
|
|
5865
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string,
|
|
5965
|
+
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedCommentList>;
|
|
5866
5966
|
};
|
|
5867
5967
|
/**
|
|
5868
5968
|
* Request parameters for createComment operation in ApiHaloRunV1alpha1CommentApi.
|
|
@@ -5926,6 +6026,12 @@ interface ApiHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
5926
6026
|
* @memberof ApiHaloRunV1alpha1CommentApiListComments
|
|
5927
6027
|
*/
|
|
5928
6028
|
readonly top?: boolean;
|
|
6029
|
+
/**
|
|
6030
|
+
* ascending order If it is true; otherwise, it is in descending order.
|
|
6031
|
+
* @type {boolean}
|
|
6032
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListComments
|
|
6033
|
+
*/
|
|
6034
|
+
readonly sortOrder?: boolean;
|
|
5929
6035
|
/**
|
|
5930
6036
|
* Comments approved.
|
|
5931
6037
|
* @type {boolean}
|
|
@@ -5962,12 +6068,6 @@ interface ApiHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
5962
6068
|
* @memberof ApiHaloRunV1alpha1CommentApiListComments
|
|
5963
6069
|
*/
|
|
5964
6070
|
readonly subjectName?: string;
|
|
5965
|
-
/**
|
|
5966
|
-
* ascending order If it is true; otherwise, it is in descending order.
|
|
5967
|
-
* @type {boolean}
|
|
5968
|
-
* @memberof ApiHaloRunV1alpha1CommentApiListComments
|
|
5969
|
-
*/
|
|
5970
|
-
readonly sortOrder?: boolean;
|
|
5971
6071
|
/**
|
|
5972
6072
|
* Size of one page. Zero indicates no limit.
|
|
5973
6073
|
* @type {number}
|
|
@@ -6323,8 +6423,8 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
|
|
|
6323
6423
|
/**
|
|
6324
6424
|
* List posts.
|
|
6325
6425
|
* @param {Array<string>} [tags]
|
|
6326
|
-
* @param {Array<string>} [categories]
|
|
6327
6426
|
* @param {Array<string>} [contributors]
|
|
6427
|
+
* @param {Array<string>} [categories]
|
|
6328
6428
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6329
6429
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
6330
6430
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -6332,7 +6432,7 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
|
|
|
6332
6432
|
* @param {*} [options] Override http request option.
|
|
6333
6433
|
* @throws {RequiredError}
|
|
6334
6434
|
*/
|
|
6335
|
-
listPosts: (tags?: Array<string>,
|
|
6435
|
+
listPosts: (tags?: Array<string>, contributors?: Array<string>, categories?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6336
6436
|
/**
|
|
6337
6437
|
* Publish a post.
|
|
6338
6438
|
* @param {string} name
|
|
@@ -6364,8 +6464,8 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
|
|
|
6364
6464
|
/**
|
|
6365
6465
|
* List posts.
|
|
6366
6466
|
* @param {Array<string>} [tags]
|
|
6367
|
-
* @param {Array<string>} [categories]
|
|
6368
6467
|
* @param {Array<string>} [contributors]
|
|
6468
|
+
* @param {Array<string>} [categories]
|
|
6369
6469
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6370
6470
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
6371
6471
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -6373,7 +6473,7 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
|
|
|
6373
6473
|
* @param {*} [options] Override http request option.
|
|
6374
6474
|
* @throws {RequiredError}
|
|
6375
6475
|
*/
|
|
6376
|
-
listPosts(tags?: Array<string>,
|
|
6476
|
+
listPosts(tags?: Array<string>, contributors?: Array<string>, categories?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
|
|
6377
6477
|
/**
|
|
6378
6478
|
* Publish a post.
|
|
6379
6479
|
* @param {string} name
|
|
@@ -6405,8 +6505,8 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
|
|
|
6405
6505
|
/**
|
|
6406
6506
|
* List posts.
|
|
6407
6507
|
* @param {Array<string>} [tags]
|
|
6408
|
-
* @param {Array<string>} [categories]
|
|
6409
6508
|
* @param {Array<string>} [contributors]
|
|
6509
|
+
* @param {Array<string>} [categories]
|
|
6410
6510
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6411
6511
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
6412
6512
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -6414,7 +6514,7 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
|
|
|
6414
6514
|
* @param {*} [options] Override http request option.
|
|
6415
6515
|
* @throws {RequiredError}
|
|
6416
6516
|
*/
|
|
6417
|
-
listPosts(tags?: Array<string>,
|
|
6517
|
+
listPosts(tags?: Array<string>, contributors?: Array<string>, categories?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedPostList>;
|
|
6418
6518
|
/**
|
|
6419
6519
|
* Publish a post.
|
|
6420
6520
|
* @param {string} name
|
|
@@ -6461,13 +6561,13 @@ interface ApiHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
6461
6561
|
* @type {Array<string>}
|
|
6462
6562
|
* @memberof ApiHaloRunV1alpha1PostApiListPosts
|
|
6463
6563
|
*/
|
|
6464
|
-
readonly
|
|
6564
|
+
readonly contributors?: Array<string>;
|
|
6465
6565
|
/**
|
|
6466
6566
|
*
|
|
6467
6567
|
* @type {Array<string>}
|
|
6468
6568
|
* @memberof ApiHaloRunV1alpha1PostApiListPosts
|
|
6469
6569
|
*/
|
|
6470
|
-
readonly
|
|
6570
|
+
readonly categories?: Array<string>;
|
|
6471
6571
|
/**
|
|
6472
6572
|
* Size of one page. Zero indicates no limit.
|
|
6473
6573
|
* @type {number}
|
|
@@ -6566,6 +6666,111 @@ declare class ApiHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
6566
6666
|
updateDraftPost(requestParameters: ApiHaloRunV1alpha1PostApiUpdateDraftPostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
|
|
6567
6667
|
}
|
|
6568
6668
|
|
|
6669
|
+
/**
|
|
6670
|
+
* ApiHaloRunV1alpha1ReplyApi - axios parameter creator
|
|
6671
|
+
* @export
|
|
6672
|
+
*/
|
|
6673
|
+
declare const ApiHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6674
|
+
/**
|
|
6675
|
+
* List replies.
|
|
6676
|
+
* @param {string} [commentName] Replies filtered by commentName.
|
|
6677
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6678
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6679
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6680
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6681
|
+
* @param {*} [options] Override http request option.
|
|
6682
|
+
* @throws {RequiredError}
|
|
6683
|
+
*/
|
|
6684
|
+
listReplies: (commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6685
|
+
};
|
|
6686
|
+
/**
|
|
6687
|
+
* ApiHaloRunV1alpha1ReplyApi - functional programming interface
|
|
6688
|
+
* @export
|
|
6689
|
+
*/
|
|
6690
|
+
declare const ApiHaloRunV1alpha1ReplyApiFp: (configuration?: Configuration) => {
|
|
6691
|
+
/**
|
|
6692
|
+
* List replies.
|
|
6693
|
+
* @param {string} [commentName] Replies filtered by commentName.
|
|
6694
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6695
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6696
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6697
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6698
|
+
* @param {*} [options] Override http request option.
|
|
6699
|
+
* @throws {RequiredError}
|
|
6700
|
+
*/
|
|
6701
|
+
listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
|
|
6702
|
+
};
|
|
6703
|
+
/**
|
|
6704
|
+
* ApiHaloRunV1alpha1ReplyApi - factory interface
|
|
6705
|
+
* @export
|
|
6706
|
+
*/
|
|
6707
|
+
declare const ApiHaloRunV1alpha1ReplyApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6708
|
+
/**
|
|
6709
|
+
* List replies.
|
|
6710
|
+
* @param {string} [commentName] Replies filtered by commentName.
|
|
6711
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6712
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6713
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6714
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6715
|
+
* @param {*} [options] Override http request option.
|
|
6716
|
+
* @throws {RequiredError}
|
|
6717
|
+
*/
|
|
6718
|
+
listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedReplyList>;
|
|
6719
|
+
};
|
|
6720
|
+
/**
|
|
6721
|
+
* Request parameters for listReplies operation in ApiHaloRunV1alpha1ReplyApi.
|
|
6722
|
+
* @export
|
|
6723
|
+
* @interface ApiHaloRunV1alpha1ReplyApiListRepliesRequest
|
|
6724
|
+
*/
|
|
6725
|
+
interface ApiHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
6726
|
+
/**
|
|
6727
|
+
* Replies filtered by commentName.
|
|
6728
|
+
* @type {string}
|
|
6729
|
+
* @memberof ApiHaloRunV1alpha1ReplyApiListReplies
|
|
6730
|
+
*/
|
|
6731
|
+
readonly commentName?: string;
|
|
6732
|
+
/**
|
|
6733
|
+
* Size of one page. Zero indicates no limit.
|
|
6734
|
+
* @type {number}
|
|
6735
|
+
* @memberof ApiHaloRunV1alpha1ReplyApiListReplies
|
|
6736
|
+
*/
|
|
6737
|
+
readonly size?: number;
|
|
6738
|
+
/**
|
|
6739
|
+
* The page number. Zero indicates no page.
|
|
6740
|
+
* @type {number}
|
|
6741
|
+
* @memberof ApiHaloRunV1alpha1ReplyApiListReplies
|
|
6742
|
+
*/
|
|
6743
|
+
readonly page?: number;
|
|
6744
|
+
/**
|
|
6745
|
+
* Label selector for filtering.
|
|
6746
|
+
* @type {Array<string>}
|
|
6747
|
+
* @memberof ApiHaloRunV1alpha1ReplyApiListReplies
|
|
6748
|
+
*/
|
|
6749
|
+
readonly labelSelector?: Array<string>;
|
|
6750
|
+
/**
|
|
6751
|
+
* Field selector for filtering.
|
|
6752
|
+
* @type {Array<string>}
|
|
6753
|
+
* @memberof ApiHaloRunV1alpha1ReplyApiListReplies
|
|
6754
|
+
*/
|
|
6755
|
+
readonly fieldSelector?: Array<string>;
|
|
6756
|
+
}
|
|
6757
|
+
/**
|
|
6758
|
+
* ApiHaloRunV1alpha1ReplyApi - object-oriented interface
|
|
6759
|
+
* @export
|
|
6760
|
+
* @class ApiHaloRunV1alpha1ReplyApi
|
|
6761
|
+
* @extends {BaseAPI}
|
|
6762
|
+
*/
|
|
6763
|
+
declare class ApiHaloRunV1alpha1ReplyApi extends BaseAPI {
|
|
6764
|
+
/**
|
|
6765
|
+
* List replies.
|
|
6766
|
+
* @param {ApiHaloRunV1alpha1ReplyApiListRepliesRequest} requestParameters Request parameters.
|
|
6767
|
+
* @param {*} [options] Override http request option.
|
|
6768
|
+
* @throws {RequiredError}
|
|
6769
|
+
* @memberof ApiHaloRunV1alpha1ReplyApi
|
|
6770
|
+
*/
|
|
6771
|
+
listReplies(requestParameters?: ApiHaloRunV1alpha1ReplyApiListRepliesRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ListedReplyList, any>>;
|
|
6772
|
+
}
|
|
6773
|
+
|
|
6569
6774
|
/**
|
|
6570
6775
|
* ApiHaloRunV1alpha1SinglePageApi - axios parameter creator
|
|
6571
6776
|
* @export
|
|
@@ -13242,4 +13447,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
13242
13447
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
13243
13448
|
}
|
|
13244
13449
|
|
|
13245
|
-
export { ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateCommentRequest, ApiHaloRunV1alpha1CommentApiCreateReplyRequest, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiListCommentsRequest, ApiHaloRunV1alpha1ContentApi, ApiHaloRunV1alpha1ContentApiAxiosParamCreator, ApiHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiFactory, ApiHaloRunV1alpha1ContentApiFp, ApiHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1PluginApiInstallPluginRequest, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiDraftPostRequest, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1PostApiListPostsRequest, ApiHaloRunV1alpha1PostApiPublishPostRequest, ApiHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiHaloRunV1alpha1SinglePageApi, ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiHaloRunV1alpha1SinglePageApiFactory, ApiHaloRunV1alpha1SinglePageApiFp, ApiHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiHaloRunV1alpha1ThemeApi, ApiHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiHaloRunV1alpha1ThemeApiFactory, ApiHaloRunV1alpha1ThemeApiFp, ApiHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiChangePasswordRequest, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, ApiHaloRunV1alpha1UserApiGetPermissionsRequest, ApiHaloRunV1alpha1UserApiGrantPermissionRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentWrapper, Contributor, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, SubjectRef, Tag, TagList, TagSpec, TagStatus, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest };
|
|
13450
|
+
export { ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateCommentRequest, ApiHaloRunV1alpha1CommentApiCreateReplyRequest, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiListCommentsRequest, ApiHaloRunV1alpha1ContentApi, ApiHaloRunV1alpha1ContentApiAxiosParamCreator, ApiHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiFactory, ApiHaloRunV1alpha1ContentApiFp, ApiHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1PluginApiInstallPluginRequest, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiDraftPostRequest, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1PostApiListPostsRequest, ApiHaloRunV1alpha1PostApiPublishPostRequest, ApiHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiHaloRunV1alpha1ReplyApi, ApiHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiHaloRunV1alpha1ReplyApiFactory, ApiHaloRunV1alpha1ReplyApiFp, ApiHaloRunV1alpha1ReplyApiListRepliesRequest, ApiHaloRunV1alpha1SinglePageApi, ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiHaloRunV1alpha1SinglePageApiFactory, ApiHaloRunV1alpha1SinglePageApiFp, ApiHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiHaloRunV1alpha1ThemeApi, ApiHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiHaloRunV1alpha1ThemeApiFactory, ApiHaloRunV1alpha1ThemeApiFp, ApiHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiChangePasswordRequest, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, ApiHaloRunV1alpha1UserApiGetPermissionsRequest, ApiHaloRunV1alpha1UserApiGrantPermissionRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentWrapper, Contributor, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, SubjectRef, Tag, TagList, TagSpec, TagStatus, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest };
|
package/dist/index.mjs
CHANGED
|
@@ -116,7 +116,7 @@ const ApiHaloRunV1alpha1CommentApiAxiosParamCreator = function(configuration) {
|
|
|
116
116
|
options: localVarRequestOptions
|
|
117
117
|
};
|
|
118
118
|
},
|
|
119
|
-
listComments: async (sort, keyword, hidden, top, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName,
|
|
119
|
+
listComments: async (sort, keyword, hidden, top, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
120
120
|
const localVarPath = `/apis/api.halo.run/v1alpha1/comments`;
|
|
121
121
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
122
122
|
let baseOptions;
|
|
@@ -140,6 +140,9 @@ const ApiHaloRunV1alpha1CommentApiAxiosParamCreator = function(configuration) {
|
|
|
140
140
|
if (top !== void 0) {
|
|
141
141
|
localVarQueryParameter["top"] = top;
|
|
142
142
|
}
|
|
143
|
+
if (sortOrder !== void 0) {
|
|
144
|
+
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
145
|
+
}
|
|
143
146
|
if (approved !== void 0) {
|
|
144
147
|
localVarQueryParameter["approved"] = approved;
|
|
145
148
|
}
|
|
@@ -158,9 +161,6 @@ const ApiHaloRunV1alpha1CommentApiAxiosParamCreator = function(configuration) {
|
|
|
158
161
|
if (subjectName !== void 0) {
|
|
159
162
|
localVarQueryParameter["subjectName"] = subjectName;
|
|
160
163
|
}
|
|
161
|
-
if (sortOrder !== void 0) {
|
|
162
|
-
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
163
|
-
}
|
|
164
164
|
if (size !== void 0) {
|
|
165
165
|
localVarQueryParameter["size"] = size;
|
|
166
166
|
}
|
|
@@ -194,8 +194,8 @@ const ApiHaloRunV1alpha1CommentApiFp = function(configuration) {
|
|
|
194
194
|
const localVarAxiosArgs = await localVarAxiosParamCreator.createReply(name, replyRequest, options);
|
|
195
195
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
196
196
|
},
|
|
197
|
-
async listComments(sort, keyword, hidden, top, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName,
|
|
198
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listComments(sort, keyword, hidden, top, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName,
|
|
197
|
+
async listComments(sort, keyword, hidden, top, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, size, page, labelSelector, fieldSelector, options) {
|
|
198
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listComments(sort, keyword, hidden, top, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, size, page, labelSelector, fieldSelector, options);
|
|
199
199
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
200
200
|
}
|
|
201
201
|
};
|
|
@@ -209,8 +209,8 @@ const ApiHaloRunV1alpha1CommentApiFactory = function(configuration, basePath, ax
|
|
|
209
209
|
createReply(name, replyRequest, options) {
|
|
210
210
|
return localVarFp.createReply(name, replyRequest, options).then((request) => request(axios, basePath));
|
|
211
211
|
},
|
|
212
|
-
listComments(sort, keyword, hidden, top, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName,
|
|
213
|
-
return localVarFp.listComments(sort, keyword, hidden, top, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName,
|
|
212
|
+
listComments(sort, keyword, hidden, top, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, size, page, labelSelector, fieldSelector, options) {
|
|
213
|
+
return localVarFp.listComments(sort, keyword, hidden, top, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
214
214
|
}
|
|
215
215
|
};
|
|
216
216
|
};
|
|
@@ -222,7 +222,7 @@ class ApiHaloRunV1alpha1CommentApi extends BaseAPI {
|
|
|
222
222
|
return ApiHaloRunV1alpha1CommentApiFp(this.configuration).createReply(requestParameters.name, requestParameters.replyRequest, options).then((request) => request(this.axios, this.basePath));
|
|
223
223
|
}
|
|
224
224
|
listComments(requestParameters = {}, options) {
|
|
225
|
-
return ApiHaloRunV1alpha1CommentApiFp(this.configuration).listComments(requestParameters.sort, requestParameters.keyword, requestParameters.hidden, requestParameters.top, requestParameters.approved, requestParameters.allowNotification, requestParameters.ownerKind, requestParameters.ownerName, requestParameters.subjectKind, requestParameters.subjectName, requestParameters.
|
|
225
|
+
return ApiHaloRunV1alpha1CommentApiFp(this.configuration).listComments(requestParameters.sort, requestParameters.keyword, requestParameters.hidden, requestParameters.top, requestParameters.sortOrder, requestParameters.approved, requestParameters.allowNotification, requestParameters.ownerKind, requestParameters.ownerName, requestParameters.subjectKind, requestParameters.subjectName, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
226
226
|
}
|
|
227
227
|
}
|
|
228
228
|
|
|
@@ -454,7 +454,7 @@ const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
454
454
|
options: localVarRequestOptions
|
|
455
455
|
};
|
|
456
456
|
},
|
|
457
|
-
listPosts: async (tags,
|
|
457
|
+
listPosts: async (tags, contributors, categories, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
458
458
|
const localVarPath = `/apis/api.halo.run/v1alpha1/posts`;
|
|
459
459
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
460
460
|
let baseOptions;
|
|
@@ -469,12 +469,12 @@ const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
469
469
|
if (tags) {
|
|
470
470
|
localVarQueryParameter["tags"] = Array.from(tags);
|
|
471
471
|
}
|
|
472
|
-
if (categories) {
|
|
473
|
-
localVarQueryParameter["categories"] = Array.from(categories);
|
|
474
|
-
}
|
|
475
472
|
if (contributors) {
|
|
476
473
|
localVarQueryParameter["contributors"] = Array.from(contributors);
|
|
477
474
|
}
|
|
475
|
+
if (categories) {
|
|
476
|
+
localVarQueryParameter["categories"] = Array.from(categories);
|
|
477
|
+
}
|
|
478
478
|
if (size !== void 0) {
|
|
479
479
|
localVarQueryParameter["size"] = size;
|
|
480
480
|
}
|
|
@@ -549,8 +549,8 @@ const ApiHaloRunV1alpha1PostApiFp = function(configuration) {
|
|
|
549
549
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftPost(postRequest, options);
|
|
550
550
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
551
551
|
},
|
|
552
|
-
async listPosts(tags,
|
|
553
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(tags,
|
|
552
|
+
async listPosts(tags, contributors, categories, size, page, labelSelector, fieldSelector, options) {
|
|
553
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(tags, contributors, categories, size, page, labelSelector, fieldSelector, options);
|
|
554
554
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
555
555
|
},
|
|
556
556
|
async publishPost(name, options) {
|
|
@@ -569,8 +569,8 @@ const ApiHaloRunV1alpha1PostApiFactory = function(configuration, basePath, axios
|
|
|
569
569
|
draftPost(postRequest, options) {
|
|
570
570
|
return localVarFp.draftPost(postRequest, options).then((request) => request(axios, basePath));
|
|
571
571
|
},
|
|
572
|
-
listPosts(tags,
|
|
573
|
-
return localVarFp.listPosts(tags,
|
|
572
|
+
listPosts(tags, contributors, categories, size, page, labelSelector, fieldSelector, options) {
|
|
573
|
+
return localVarFp.listPosts(tags, contributors, categories, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
574
574
|
},
|
|
575
575
|
publishPost(name, options) {
|
|
576
576
|
return localVarFp.publishPost(name, options).then((request) => request(axios, basePath));
|
|
@@ -585,7 +585,7 @@ class ApiHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
585
585
|
return ApiHaloRunV1alpha1PostApiFp(this.configuration).draftPost(requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
|
|
586
586
|
}
|
|
587
587
|
listPosts(requestParameters = {}, options) {
|
|
588
|
-
return ApiHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.tags, requestParameters.
|
|
588
|
+
return ApiHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.tags, requestParameters.contributors, requestParameters.categories, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
589
589
|
}
|
|
590
590
|
publishPost(requestParameters, options) {
|
|
591
591
|
return ApiHaloRunV1alpha1PostApiFp(this.configuration).publishPost(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -595,6 +595,68 @@ class ApiHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
595
595
|
}
|
|
596
596
|
}
|
|
597
597
|
|
|
598
|
+
const ApiHaloRunV1alpha1ReplyApiAxiosParamCreator = function(configuration) {
|
|
599
|
+
return {
|
|
600
|
+
listReplies: async (commentName, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
601
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/replies`;
|
|
602
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
603
|
+
let baseOptions;
|
|
604
|
+
if (configuration) {
|
|
605
|
+
baseOptions = configuration.baseOptions;
|
|
606
|
+
}
|
|
607
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
608
|
+
const localVarHeaderParameter = {};
|
|
609
|
+
const localVarQueryParameter = {};
|
|
610
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
611
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
612
|
+
if (commentName !== void 0) {
|
|
613
|
+
localVarQueryParameter["commentName"] = commentName;
|
|
614
|
+
}
|
|
615
|
+
if (size !== void 0) {
|
|
616
|
+
localVarQueryParameter["size"] = size;
|
|
617
|
+
}
|
|
618
|
+
if (page !== void 0) {
|
|
619
|
+
localVarQueryParameter["page"] = page;
|
|
620
|
+
}
|
|
621
|
+
if (labelSelector) {
|
|
622
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
623
|
+
}
|
|
624
|
+
if (fieldSelector) {
|
|
625
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
626
|
+
}
|
|
627
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
628
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
629
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
630
|
+
return {
|
|
631
|
+
url: toPathString(localVarUrlObj),
|
|
632
|
+
options: localVarRequestOptions
|
|
633
|
+
};
|
|
634
|
+
}
|
|
635
|
+
};
|
|
636
|
+
};
|
|
637
|
+
const ApiHaloRunV1alpha1ReplyApiFp = function(configuration) {
|
|
638
|
+
const localVarAxiosParamCreator = ApiHaloRunV1alpha1ReplyApiAxiosParamCreator(configuration);
|
|
639
|
+
return {
|
|
640
|
+
async listReplies(commentName, size, page, labelSelector, fieldSelector, options) {
|
|
641
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listReplies(commentName, size, page, labelSelector, fieldSelector, options);
|
|
642
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
643
|
+
}
|
|
644
|
+
};
|
|
645
|
+
};
|
|
646
|
+
const ApiHaloRunV1alpha1ReplyApiFactory = function(configuration, basePath, axios) {
|
|
647
|
+
const localVarFp = ApiHaloRunV1alpha1ReplyApiFp(configuration);
|
|
648
|
+
return {
|
|
649
|
+
listReplies(commentName, size, page, labelSelector, fieldSelector, options) {
|
|
650
|
+
return localVarFp.listReplies(commentName, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
651
|
+
}
|
|
652
|
+
};
|
|
653
|
+
};
|
|
654
|
+
class ApiHaloRunV1alpha1ReplyApi extends BaseAPI {
|
|
655
|
+
listReplies(requestParameters = {}, options) {
|
|
656
|
+
return ApiHaloRunV1alpha1ReplyApiFp(this.configuration).listReplies(requestParameters.commentName, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
657
|
+
}
|
|
658
|
+
}
|
|
659
|
+
|
|
598
660
|
const ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configuration) {
|
|
599
661
|
return {
|
|
600
662
|
draftSinglePage: async (singlePageRequest, options = {}) => {
|
|
@@ -5188,4 +5250,4 @@ const SinglePageSpecVisibleEnum = {
|
|
|
5188
5250
|
Private: "PRIVATE"
|
|
5189
5251
|
};
|
|
5190
5252
|
|
|
5191
|
-
export { ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1ContentApi, ApiHaloRunV1alpha1ContentApiAxiosParamCreator, ApiHaloRunV1alpha1ContentApiFactory, ApiHaloRunV1alpha1ContentApiFp, ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1SinglePageApi, ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiHaloRunV1alpha1SinglePageApiFactory, ApiHaloRunV1alpha1SinglePageApiFp, ApiHaloRunV1alpha1ThemeApi, ApiHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiHaloRunV1alpha1ThemeApiFactory, ApiHaloRunV1alpha1ThemeApiFp, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, ConditionStatusEnum, Configuration, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginStatusPhaseEnum, PostSpecVisibleEnum, SinglePageSpecVisibleEnum, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiFactory, V1alpha1UserApiFp };
|
|
5253
|
+
export { ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1ContentApi, ApiHaloRunV1alpha1ContentApiAxiosParamCreator, ApiHaloRunV1alpha1ContentApiFactory, ApiHaloRunV1alpha1ContentApiFp, ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1ReplyApi, ApiHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiHaloRunV1alpha1ReplyApiFactory, ApiHaloRunV1alpha1ReplyApiFp, ApiHaloRunV1alpha1SinglePageApi, ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiHaloRunV1alpha1SinglePageApiFactory, ApiHaloRunV1alpha1SinglePageApiFp, ApiHaloRunV1alpha1ThemeApi, ApiHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiHaloRunV1alpha1ThemeApiFactory, ApiHaloRunV1alpha1ThemeApiFp, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, ConditionStatusEnum, Configuration, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginStatusPhaseEnum, PostSpecVisibleEnum, SinglePageSpecVisibleEnum, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiFactory, V1alpha1UserApiFp };
|