@halo-dev/api-client 0.0.34 → 0.0.35
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 +295 -0
- package/dist/index.d.ts +653 -1
- package/dist/index.mjs +284 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1622,6 +1622,197 @@ interface Contributor {
|
|
|
1622
1622
|
name?: string;
|
|
1623
1623
|
}
|
|
1624
1624
|
|
|
1625
|
+
/**
|
|
1626
|
+
* Halo Next API
|
|
1627
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
1628
|
+
*
|
|
1629
|
+
* The version of the OpenAPI document: 2.0.0
|
|
1630
|
+
*
|
|
1631
|
+
*
|
|
1632
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1633
|
+
* https://openapi-generator.tech
|
|
1634
|
+
* Do not edit the class manually.
|
|
1635
|
+
*/
|
|
1636
|
+
|
|
1637
|
+
/**
|
|
1638
|
+
*
|
|
1639
|
+
* @export
|
|
1640
|
+
* @interface Counter
|
|
1641
|
+
*/
|
|
1642
|
+
interface Counter {
|
|
1643
|
+
/**
|
|
1644
|
+
*
|
|
1645
|
+
* @type {number}
|
|
1646
|
+
* @memberof Counter
|
|
1647
|
+
*/
|
|
1648
|
+
visit?: number;
|
|
1649
|
+
/**
|
|
1650
|
+
*
|
|
1651
|
+
* @type {number}
|
|
1652
|
+
* @memberof Counter
|
|
1653
|
+
*/
|
|
1654
|
+
upvote?: number;
|
|
1655
|
+
/**
|
|
1656
|
+
*
|
|
1657
|
+
* @type {number}
|
|
1658
|
+
* @memberof Counter
|
|
1659
|
+
*/
|
|
1660
|
+
totalComment?: number;
|
|
1661
|
+
/**
|
|
1662
|
+
*
|
|
1663
|
+
* @type {number}
|
|
1664
|
+
* @memberof Counter
|
|
1665
|
+
*/
|
|
1666
|
+
approvedComment?: number;
|
|
1667
|
+
/**
|
|
1668
|
+
*
|
|
1669
|
+
* @type {string}
|
|
1670
|
+
* @memberof Counter
|
|
1671
|
+
*/
|
|
1672
|
+
apiVersion: string;
|
|
1673
|
+
/**
|
|
1674
|
+
*
|
|
1675
|
+
* @type {string}
|
|
1676
|
+
* @memberof Counter
|
|
1677
|
+
*/
|
|
1678
|
+
kind: string;
|
|
1679
|
+
/**
|
|
1680
|
+
*
|
|
1681
|
+
* @type {Metadata}
|
|
1682
|
+
* @memberof Counter
|
|
1683
|
+
*/
|
|
1684
|
+
metadata: Metadata;
|
|
1685
|
+
}
|
|
1686
|
+
|
|
1687
|
+
/**
|
|
1688
|
+
* Halo Next API
|
|
1689
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
1690
|
+
*
|
|
1691
|
+
* The version of the OpenAPI document: 2.0.0
|
|
1692
|
+
*
|
|
1693
|
+
*
|
|
1694
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1695
|
+
* https://openapi-generator.tech
|
|
1696
|
+
* Do not edit the class manually.
|
|
1697
|
+
*/
|
|
1698
|
+
|
|
1699
|
+
/**
|
|
1700
|
+
*
|
|
1701
|
+
* @export
|
|
1702
|
+
* @interface CounterList
|
|
1703
|
+
*/
|
|
1704
|
+
interface CounterList {
|
|
1705
|
+
/**
|
|
1706
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
1707
|
+
* @type {number}
|
|
1708
|
+
* @memberof CounterList
|
|
1709
|
+
*/
|
|
1710
|
+
page: number;
|
|
1711
|
+
/**
|
|
1712
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
1713
|
+
* @type {number}
|
|
1714
|
+
* @memberof CounterList
|
|
1715
|
+
*/
|
|
1716
|
+
size: number;
|
|
1717
|
+
/**
|
|
1718
|
+
* Total elements.
|
|
1719
|
+
* @type {number}
|
|
1720
|
+
* @memberof CounterList
|
|
1721
|
+
*/
|
|
1722
|
+
total: number;
|
|
1723
|
+
/**
|
|
1724
|
+
* A chunk of items.
|
|
1725
|
+
* @type {Array<Counter>}
|
|
1726
|
+
* @memberof CounterList
|
|
1727
|
+
*/
|
|
1728
|
+
items: Array<Counter>;
|
|
1729
|
+
/**
|
|
1730
|
+
* Indicates whether current page is the first page.
|
|
1731
|
+
* @type {boolean}
|
|
1732
|
+
* @memberof CounterList
|
|
1733
|
+
*/
|
|
1734
|
+
first: boolean;
|
|
1735
|
+
/**
|
|
1736
|
+
* Indicates whether current page is the last page.
|
|
1737
|
+
* @type {boolean}
|
|
1738
|
+
* @memberof CounterList
|
|
1739
|
+
*/
|
|
1740
|
+
last: boolean;
|
|
1741
|
+
/**
|
|
1742
|
+
* Indicates whether current page has previous page.
|
|
1743
|
+
* @type {boolean}
|
|
1744
|
+
* @memberof CounterList
|
|
1745
|
+
*/
|
|
1746
|
+
hasNext: boolean;
|
|
1747
|
+
/**
|
|
1748
|
+
* Indicates whether current page has previous page.
|
|
1749
|
+
* @type {boolean}
|
|
1750
|
+
* @memberof CounterList
|
|
1751
|
+
*/
|
|
1752
|
+
hasPrevious: boolean;
|
|
1753
|
+
}
|
|
1754
|
+
|
|
1755
|
+
/**
|
|
1756
|
+
* Halo Next API
|
|
1757
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
1758
|
+
*
|
|
1759
|
+
* The version of the OpenAPI document: 2.0.0
|
|
1760
|
+
*
|
|
1761
|
+
*
|
|
1762
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1763
|
+
* https://openapi-generator.tech
|
|
1764
|
+
* Do not edit the class manually.
|
|
1765
|
+
*/
|
|
1766
|
+
/**
|
|
1767
|
+
*
|
|
1768
|
+
* @export
|
|
1769
|
+
* @interface CounterRequest
|
|
1770
|
+
*/
|
|
1771
|
+
interface CounterRequest {
|
|
1772
|
+
/**
|
|
1773
|
+
*
|
|
1774
|
+
* @type {string}
|
|
1775
|
+
* @memberof CounterRequest
|
|
1776
|
+
*/
|
|
1777
|
+
group?: string;
|
|
1778
|
+
/**
|
|
1779
|
+
*
|
|
1780
|
+
* @type {string}
|
|
1781
|
+
* @memberof CounterRequest
|
|
1782
|
+
*/
|
|
1783
|
+
plural?: string;
|
|
1784
|
+
/**
|
|
1785
|
+
*
|
|
1786
|
+
* @type {string}
|
|
1787
|
+
* @memberof CounterRequest
|
|
1788
|
+
*/
|
|
1789
|
+
name?: string;
|
|
1790
|
+
/**
|
|
1791
|
+
*
|
|
1792
|
+
* @type {string}
|
|
1793
|
+
* @memberof CounterRequest
|
|
1794
|
+
*/
|
|
1795
|
+
hostname?: string;
|
|
1796
|
+
/**
|
|
1797
|
+
*
|
|
1798
|
+
* @type {string}
|
|
1799
|
+
* @memberof CounterRequest
|
|
1800
|
+
*/
|
|
1801
|
+
screen?: string;
|
|
1802
|
+
/**
|
|
1803
|
+
*
|
|
1804
|
+
* @type {string}
|
|
1805
|
+
* @memberof CounterRequest
|
|
1806
|
+
*/
|
|
1807
|
+
language?: string;
|
|
1808
|
+
/**
|
|
1809
|
+
*
|
|
1810
|
+
* @type {string}
|
|
1811
|
+
* @memberof CounterRequest
|
|
1812
|
+
*/
|
|
1813
|
+
referrer?: string;
|
|
1814
|
+
}
|
|
1815
|
+
|
|
1625
1816
|
/**
|
|
1626
1817
|
* Halo Next API
|
|
1627
1818
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -2492,6 +2683,61 @@ interface Post {
|
|
|
2492
2683
|
metadata: Metadata;
|
|
2493
2684
|
}
|
|
2494
2685
|
|
|
2686
|
+
/**
|
|
2687
|
+
* Halo Next API
|
|
2688
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2689
|
+
*
|
|
2690
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2691
|
+
*
|
|
2692
|
+
*
|
|
2693
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2694
|
+
* https://openapi-generator.tech
|
|
2695
|
+
* Do not edit the class manually.
|
|
2696
|
+
*/
|
|
2697
|
+
/**
|
|
2698
|
+
*
|
|
2699
|
+
* @export
|
|
2700
|
+
* @interface Stats
|
|
2701
|
+
*/
|
|
2702
|
+
interface Stats {
|
|
2703
|
+
/**
|
|
2704
|
+
*
|
|
2705
|
+
* @type {number}
|
|
2706
|
+
* @memberof Stats
|
|
2707
|
+
*/
|
|
2708
|
+
visits?: number;
|
|
2709
|
+
/**
|
|
2710
|
+
*
|
|
2711
|
+
* @type {number}
|
|
2712
|
+
* @memberof Stats
|
|
2713
|
+
*/
|
|
2714
|
+
comments?: number;
|
|
2715
|
+
/**
|
|
2716
|
+
*
|
|
2717
|
+
* @type {number}
|
|
2718
|
+
* @memberof Stats
|
|
2719
|
+
*/
|
|
2720
|
+
approvedComments?: number;
|
|
2721
|
+
/**
|
|
2722
|
+
*
|
|
2723
|
+
* @type {number}
|
|
2724
|
+
* @memberof Stats
|
|
2725
|
+
*/
|
|
2726
|
+
upvotes?: number;
|
|
2727
|
+
/**
|
|
2728
|
+
*
|
|
2729
|
+
* @type {number}
|
|
2730
|
+
* @memberof Stats
|
|
2731
|
+
*/
|
|
2732
|
+
users?: number;
|
|
2733
|
+
/**
|
|
2734
|
+
*
|
|
2735
|
+
* @type {number}
|
|
2736
|
+
* @memberof Stats
|
|
2737
|
+
*/
|
|
2738
|
+
posts?: number;
|
|
2739
|
+
}
|
|
2740
|
+
|
|
2495
2741
|
/**
|
|
2496
2742
|
* Halo Next API
|
|
2497
2743
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -2664,6 +2910,12 @@ interface ListedPost {
|
|
|
2664
2910
|
* @memberof ListedPost
|
|
2665
2911
|
*/
|
|
2666
2912
|
contributors: Array<Contributor>;
|
|
2913
|
+
/**
|
|
2914
|
+
*
|
|
2915
|
+
* @type {Stats}
|
|
2916
|
+
* @memberof ListedPost
|
|
2917
|
+
*/
|
|
2918
|
+
stats: Stats;
|
|
2667
2919
|
}
|
|
2668
2920
|
|
|
2669
2921
|
/**
|
|
@@ -3248,6 +3500,12 @@ interface ListedSinglePage {
|
|
|
3248
3500
|
* @memberof ListedSinglePage
|
|
3249
3501
|
*/
|
|
3250
3502
|
contributors: Array<Contributor>;
|
|
3503
|
+
/**
|
|
3504
|
+
*
|
|
3505
|
+
* @type {Stats}
|
|
3506
|
+
* @memberof ListedSinglePage
|
|
3507
|
+
*/
|
|
3508
|
+
stats: Stats;
|
|
3251
3509
|
}
|
|
3252
3510
|
|
|
3253
3511
|
/**
|
|
@@ -7670,6 +7928,58 @@ declare class ApiConsoleHaloRunV1alpha1SinglePageApi extends BaseAPI {
|
|
|
7670
7928
|
updateDraftSinglePage(requestParameters: ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
|
|
7671
7929
|
}
|
|
7672
7930
|
|
|
7931
|
+
/**
|
|
7932
|
+
* ApiConsoleHaloRunV1alpha1StatsApi - axios parameter creator
|
|
7933
|
+
* @export
|
|
7934
|
+
*/
|
|
7935
|
+
declare const ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
7936
|
+
/**
|
|
7937
|
+
* Get stats.
|
|
7938
|
+
* @param {*} [options] Override http request option.
|
|
7939
|
+
* @throws {RequiredError}
|
|
7940
|
+
*/
|
|
7941
|
+
getStats: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7942
|
+
};
|
|
7943
|
+
/**
|
|
7944
|
+
* ApiConsoleHaloRunV1alpha1StatsApi - functional programming interface
|
|
7945
|
+
* @export
|
|
7946
|
+
*/
|
|
7947
|
+
declare const ApiConsoleHaloRunV1alpha1StatsApiFp: (configuration?: Configuration) => {
|
|
7948
|
+
/**
|
|
7949
|
+
* Get stats.
|
|
7950
|
+
* @param {*} [options] Override http request option.
|
|
7951
|
+
* @throws {RequiredError}
|
|
7952
|
+
*/
|
|
7953
|
+
getStats(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Stats>>;
|
|
7954
|
+
};
|
|
7955
|
+
/**
|
|
7956
|
+
* ApiConsoleHaloRunV1alpha1StatsApi - factory interface
|
|
7957
|
+
* @export
|
|
7958
|
+
*/
|
|
7959
|
+
declare const ApiConsoleHaloRunV1alpha1StatsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
7960
|
+
/**
|
|
7961
|
+
* Get stats.
|
|
7962
|
+
* @param {*} [options] Override http request option.
|
|
7963
|
+
* @throws {RequiredError}
|
|
7964
|
+
*/
|
|
7965
|
+
getStats(options?: any): AxiosPromise<Stats>;
|
|
7966
|
+
};
|
|
7967
|
+
/**
|
|
7968
|
+
* ApiConsoleHaloRunV1alpha1StatsApi - object-oriented interface
|
|
7969
|
+
* @export
|
|
7970
|
+
* @class ApiConsoleHaloRunV1alpha1StatsApi
|
|
7971
|
+
* @extends {BaseAPI}
|
|
7972
|
+
*/
|
|
7973
|
+
declare class ApiConsoleHaloRunV1alpha1StatsApi extends BaseAPI {
|
|
7974
|
+
/**
|
|
7975
|
+
* Get stats.
|
|
7976
|
+
* @param {*} [options] Override http request option.
|
|
7977
|
+
* @throws {RequiredError}
|
|
7978
|
+
* @memberof ApiConsoleHaloRunV1alpha1StatsApi
|
|
7979
|
+
*/
|
|
7980
|
+
getStats(options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Stats, any>>;
|
|
7981
|
+
}
|
|
7982
|
+
|
|
7673
7983
|
/**
|
|
7674
7984
|
* ApiConsoleHaloRunV1alpha1ThemeApi - axios parameter creator
|
|
7675
7985
|
* @export
|
|
@@ -8286,6 +8596,75 @@ declare class ApiHaloRunV1alpha1CommentApi extends BaseAPI {
|
|
|
8286
8596
|
listComments1(requestParameters: ApiHaloRunV1alpha1CommentApiListComments1Request, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<CommentVoList, any>>;
|
|
8287
8597
|
}
|
|
8288
8598
|
|
|
8599
|
+
/**
|
|
8600
|
+
* ApiHaloRunV1alpha1TrackerApi - axios parameter creator
|
|
8601
|
+
* @export
|
|
8602
|
+
*/
|
|
8603
|
+
declare const ApiHaloRunV1alpha1TrackerApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
8604
|
+
/**
|
|
8605
|
+
* Count an extension resource visits.
|
|
8606
|
+
* @param {CounterRequest} counterRequest
|
|
8607
|
+
* @param {*} [options] Override http request option.
|
|
8608
|
+
* @throws {RequiredError}
|
|
8609
|
+
*/
|
|
8610
|
+
count: (counterRequest: CounterRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8611
|
+
};
|
|
8612
|
+
/**
|
|
8613
|
+
* ApiHaloRunV1alpha1TrackerApi - functional programming interface
|
|
8614
|
+
* @export
|
|
8615
|
+
*/
|
|
8616
|
+
declare const ApiHaloRunV1alpha1TrackerApiFp: (configuration?: Configuration) => {
|
|
8617
|
+
/**
|
|
8618
|
+
* Count an extension resource visits.
|
|
8619
|
+
* @param {CounterRequest} counterRequest
|
|
8620
|
+
* @param {*} [options] Override http request option.
|
|
8621
|
+
* @throws {RequiredError}
|
|
8622
|
+
*/
|
|
8623
|
+
count(counterRequest: CounterRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<number>>;
|
|
8624
|
+
};
|
|
8625
|
+
/**
|
|
8626
|
+
* ApiHaloRunV1alpha1TrackerApi - factory interface
|
|
8627
|
+
* @export
|
|
8628
|
+
*/
|
|
8629
|
+
declare const ApiHaloRunV1alpha1TrackerApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
8630
|
+
/**
|
|
8631
|
+
* Count an extension resource visits.
|
|
8632
|
+
* @param {CounterRequest} counterRequest
|
|
8633
|
+
* @param {*} [options] Override http request option.
|
|
8634
|
+
* @throws {RequiredError}
|
|
8635
|
+
*/
|
|
8636
|
+
count(counterRequest: CounterRequest, options?: any): AxiosPromise<number>;
|
|
8637
|
+
};
|
|
8638
|
+
/**
|
|
8639
|
+
* Request parameters for count operation in ApiHaloRunV1alpha1TrackerApi.
|
|
8640
|
+
* @export
|
|
8641
|
+
* @interface ApiHaloRunV1alpha1TrackerApiCountRequest
|
|
8642
|
+
*/
|
|
8643
|
+
interface ApiHaloRunV1alpha1TrackerApiCountRequest {
|
|
8644
|
+
/**
|
|
8645
|
+
*
|
|
8646
|
+
* @type {CounterRequest}
|
|
8647
|
+
* @memberof ApiHaloRunV1alpha1TrackerApiCount
|
|
8648
|
+
*/
|
|
8649
|
+
readonly counterRequest: CounterRequest;
|
|
8650
|
+
}
|
|
8651
|
+
/**
|
|
8652
|
+
* ApiHaloRunV1alpha1TrackerApi - object-oriented interface
|
|
8653
|
+
* @export
|
|
8654
|
+
* @class ApiHaloRunV1alpha1TrackerApi
|
|
8655
|
+
* @extends {BaseAPI}
|
|
8656
|
+
*/
|
|
8657
|
+
declare class ApiHaloRunV1alpha1TrackerApi extends BaseAPI {
|
|
8658
|
+
/**
|
|
8659
|
+
* Count an extension resource visits.
|
|
8660
|
+
* @param {ApiHaloRunV1alpha1TrackerApiCountRequest} requestParameters Request parameters.
|
|
8661
|
+
* @param {*} [options] Override http request option.
|
|
8662
|
+
* @throws {RequiredError}
|
|
8663
|
+
* @memberof ApiHaloRunV1alpha1TrackerApi
|
|
8664
|
+
*/
|
|
8665
|
+
count(requestParameters: ApiHaloRunV1alpha1TrackerApiCountRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<number, any>>;
|
|
8666
|
+
}
|
|
8667
|
+
|
|
8289
8668
|
/**
|
|
8290
8669
|
* ContentHaloRunV1alpha1CategoryApi - axios parameter creator
|
|
8291
8670
|
* @export
|
|
@@ -10743,6 +11122,279 @@ declare class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
|
|
|
10743
11122
|
updatecoreHaloRunV1alpha1LinkGroup(requestParameters: CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
10744
11123
|
}
|
|
10745
11124
|
|
|
11125
|
+
/**
|
|
11126
|
+
* MetricsHaloRunV1alpha1CounterApi - axios parameter creator
|
|
11127
|
+
* @export
|
|
11128
|
+
*/
|
|
11129
|
+
declare const MetricsHaloRunV1alpha1CounterApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
11130
|
+
/**
|
|
11131
|
+
* Create metrics.halo.run/v1alpha1/Counter
|
|
11132
|
+
* @param {Counter} [counter] Fresh counter
|
|
11133
|
+
* @param {*} [options] Override http request option.
|
|
11134
|
+
* @throws {RequiredError}
|
|
11135
|
+
*/
|
|
11136
|
+
createmetricsHaloRunV1alpha1Counter: (counter?: Counter, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11137
|
+
/**
|
|
11138
|
+
* Delete metrics.halo.run/v1alpha1/Counter
|
|
11139
|
+
* @param {string} name Name of counter
|
|
11140
|
+
* @param {*} [options] Override http request option.
|
|
11141
|
+
* @throws {RequiredError}
|
|
11142
|
+
*/
|
|
11143
|
+
deletemetricsHaloRunV1alpha1Counter: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11144
|
+
/**
|
|
11145
|
+
* Get metrics.halo.run/v1alpha1/Counter
|
|
11146
|
+
* @param {string} name Name of counter
|
|
11147
|
+
* @param {*} [options] Override http request option.
|
|
11148
|
+
* @throws {RequiredError}
|
|
11149
|
+
*/
|
|
11150
|
+
getmetricsHaloRunV1alpha1Counter: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11151
|
+
/**
|
|
11152
|
+
* List metrics.halo.run/v1alpha1/Counter
|
|
11153
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11154
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11155
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11156
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11157
|
+
* @param {*} [options] Override http request option.
|
|
11158
|
+
* @throws {RequiredError}
|
|
11159
|
+
*/
|
|
11160
|
+
listmetricsHaloRunV1alpha1Counter: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11161
|
+
/**
|
|
11162
|
+
* Update metrics.halo.run/v1alpha1/Counter
|
|
11163
|
+
* @param {string} name Name of counter
|
|
11164
|
+
* @param {Counter} [counter] Updated counter
|
|
11165
|
+
* @param {*} [options] Override http request option.
|
|
11166
|
+
* @throws {RequiredError}
|
|
11167
|
+
*/
|
|
11168
|
+
updatemetricsHaloRunV1alpha1Counter: (name: string, counter?: Counter, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11169
|
+
};
|
|
11170
|
+
/**
|
|
11171
|
+
* MetricsHaloRunV1alpha1CounterApi - functional programming interface
|
|
11172
|
+
* @export
|
|
11173
|
+
*/
|
|
11174
|
+
declare const MetricsHaloRunV1alpha1CounterApiFp: (configuration?: Configuration) => {
|
|
11175
|
+
/**
|
|
11176
|
+
* Create metrics.halo.run/v1alpha1/Counter
|
|
11177
|
+
* @param {Counter} [counter] Fresh counter
|
|
11178
|
+
* @param {*} [options] Override http request option.
|
|
11179
|
+
* @throws {RequiredError}
|
|
11180
|
+
*/
|
|
11181
|
+
createmetricsHaloRunV1alpha1Counter(counter?: Counter, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Counter>>;
|
|
11182
|
+
/**
|
|
11183
|
+
* Delete metrics.halo.run/v1alpha1/Counter
|
|
11184
|
+
* @param {string} name Name of counter
|
|
11185
|
+
* @param {*} [options] Override http request option.
|
|
11186
|
+
* @throws {RequiredError}
|
|
11187
|
+
*/
|
|
11188
|
+
deletemetricsHaloRunV1alpha1Counter(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
11189
|
+
/**
|
|
11190
|
+
* Get metrics.halo.run/v1alpha1/Counter
|
|
11191
|
+
* @param {string} name Name of counter
|
|
11192
|
+
* @param {*} [options] Override http request option.
|
|
11193
|
+
* @throws {RequiredError}
|
|
11194
|
+
*/
|
|
11195
|
+
getmetricsHaloRunV1alpha1Counter(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Counter>>;
|
|
11196
|
+
/**
|
|
11197
|
+
* List metrics.halo.run/v1alpha1/Counter
|
|
11198
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11199
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11200
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11201
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11202
|
+
* @param {*} [options] Override http request option.
|
|
11203
|
+
* @throws {RequiredError}
|
|
11204
|
+
*/
|
|
11205
|
+
listmetricsHaloRunV1alpha1Counter(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CounterList>>;
|
|
11206
|
+
/**
|
|
11207
|
+
* Update metrics.halo.run/v1alpha1/Counter
|
|
11208
|
+
* @param {string} name Name of counter
|
|
11209
|
+
* @param {Counter} [counter] Updated counter
|
|
11210
|
+
* @param {*} [options] Override http request option.
|
|
11211
|
+
* @throws {RequiredError}
|
|
11212
|
+
*/
|
|
11213
|
+
updatemetricsHaloRunV1alpha1Counter(name: string, counter?: Counter, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Counter>>;
|
|
11214
|
+
};
|
|
11215
|
+
/**
|
|
11216
|
+
* MetricsHaloRunV1alpha1CounterApi - factory interface
|
|
11217
|
+
* @export
|
|
11218
|
+
*/
|
|
11219
|
+
declare const MetricsHaloRunV1alpha1CounterApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11220
|
+
/**
|
|
11221
|
+
* Create metrics.halo.run/v1alpha1/Counter
|
|
11222
|
+
* @param {Counter} [counter] Fresh counter
|
|
11223
|
+
* @param {*} [options] Override http request option.
|
|
11224
|
+
* @throws {RequiredError}
|
|
11225
|
+
*/
|
|
11226
|
+
createmetricsHaloRunV1alpha1Counter(counter?: Counter, options?: any): AxiosPromise<Counter>;
|
|
11227
|
+
/**
|
|
11228
|
+
* Delete metrics.halo.run/v1alpha1/Counter
|
|
11229
|
+
* @param {string} name Name of counter
|
|
11230
|
+
* @param {*} [options] Override http request option.
|
|
11231
|
+
* @throws {RequiredError}
|
|
11232
|
+
*/
|
|
11233
|
+
deletemetricsHaloRunV1alpha1Counter(name: string, options?: any): AxiosPromise<void>;
|
|
11234
|
+
/**
|
|
11235
|
+
* Get metrics.halo.run/v1alpha1/Counter
|
|
11236
|
+
* @param {string} name Name of counter
|
|
11237
|
+
* @param {*} [options] Override http request option.
|
|
11238
|
+
* @throws {RequiredError}
|
|
11239
|
+
*/
|
|
11240
|
+
getmetricsHaloRunV1alpha1Counter(name: string, options?: any): AxiosPromise<Counter>;
|
|
11241
|
+
/**
|
|
11242
|
+
* List metrics.halo.run/v1alpha1/Counter
|
|
11243
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11244
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11245
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11246
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11247
|
+
* @param {*} [options] Override http request option.
|
|
11248
|
+
* @throws {RequiredError}
|
|
11249
|
+
*/
|
|
11250
|
+
listmetricsHaloRunV1alpha1Counter(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<CounterList>;
|
|
11251
|
+
/**
|
|
11252
|
+
* Update metrics.halo.run/v1alpha1/Counter
|
|
11253
|
+
* @param {string} name Name of counter
|
|
11254
|
+
* @param {Counter} [counter] Updated counter
|
|
11255
|
+
* @param {*} [options] Override http request option.
|
|
11256
|
+
* @throws {RequiredError}
|
|
11257
|
+
*/
|
|
11258
|
+
updatemetricsHaloRunV1alpha1Counter(name: string, counter?: Counter, options?: any): AxiosPromise<Counter>;
|
|
11259
|
+
};
|
|
11260
|
+
/**
|
|
11261
|
+
* Request parameters for createmetricsHaloRunV1alpha1Counter operation in MetricsHaloRunV1alpha1CounterApi.
|
|
11262
|
+
* @export
|
|
11263
|
+
* @interface MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest
|
|
11264
|
+
*/
|
|
11265
|
+
interface MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest {
|
|
11266
|
+
/**
|
|
11267
|
+
* Fresh counter
|
|
11268
|
+
* @type {Counter}
|
|
11269
|
+
* @memberof MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1Counter
|
|
11270
|
+
*/
|
|
11271
|
+
readonly counter?: Counter;
|
|
11272
|
+
}
|
|
11273
|
+
/**
|
|
11274
|
+
* Request parameters for deletemetricsHaloRunV1alpha1Counter operation in MetricsHaloRunV1alpha1CounterApi.
|
|
11275
|
+
* @export
|
|
11276
|
+
* @interface MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest
|
|
11277
|
+
*/
|
|
11278
|
+
interface MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest {
|
|
11279
|
+
/**
|
|
11280
|
+
* Name of counter
|
|
11281
|
+
* @type {string}
|
|
11282
|
+
* @memberof MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1Counter
|
|
11283
|
+
*/
|
|
11284
|
+
readonly name: string;
|
|
11285
|
+
}
|
|
11286
|
+
/**
|
|
11287
|
+
* Request parameters for getmetricsHaloRunV1alpha1Counter operation in MetricsHaloRunV1alpha1CounterApi.
|
|
11288
|
+
* @export
|
|
11289
|
+
* @interface MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest
|
|
11290
|
+
*/
|
|
11291
|
+
interface MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest {
|
|
11292
|
+
/**
|
|
11293
|
+
* Name of counter
|
|
11294
|
+
* @type {string}
|
|
11295
|
+
* @memberof MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1Counter
|
|
11296
|
+
*/
|
|
11297
|
+
readonly name: string;
|
|
11298
|
+
}
|
|
11299
|
+
/**
|
|
11300
|
+
* Request parameters for listmetricsHaloRunV1alpha1Counter operation in MetricsHaloRunV1alpha1CounterApi.
|
|
11301
|
+
* @export
|
|
11302
|
+
* @interface MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest
|
|
11303
|
+
*/
|
|
11304
|
+
interface MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest {
|
|
11305
|
+
/**
|
|
11306
|
+
* The page number. Zero indicates no page.
|
|
11307
|
+
* @type {number}
|
|
11308
|
+
* @memberof MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1Counter
|
|
11309
|
+
*/
|
|
11310
|
+
readonly page?: number;
|
|
11311
|
+
/**
|
|
11312
|
+
* Size of one page. Zero indicates no limit.
|
|
11313
|
+
* @type {number}
|
|
11314
|
+
* @memberof MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1Counter
|
|
11315
|
+
*/
|
|
11316
|
+
readonly size?: number;
|
|
11317
|
+
/**
|
|
11318
|
+
* Label selector for filtering.
|
|
11319
|
+
* @type {Array<string>}
|
|
11320
|
+
* @memberof MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1Counter
|
|
11321
|
+
*/
|
|
11322
|
+
readonly labelSelector?: Array<string>;
|
|
11323
|
+
/**
|
|
11324
|
+
* Field selector for filtering.
|
|
11325
|
+
* @type {Array<string>}
|
|
11326
|
+
* @memberof MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1Counter
|
|
11327
|
+
*/
|
|
11328
|
+
readonly fieldSelector?: Array<string>;
|
|
11329
|
+
}
|
|
11330
|
+
/**
|
|
11331
|
+
* Request parameters for updatemetricsHaloRunV1alpha1Counter operation in MetricsHaloRunV1alpha1CounterApi.
|
|
11332
|
+
* @export
|
|
11333
|
+
* @interface MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest
|
|
11334
|
+
*/
|
|
11335
|
+
interface MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest {
|
|
11336
|
+
/**
|
|
11337
|
+
* Name of counter
|
|
11338
|
+
* @type {string}
|
|
11339
|
+
* @memberof MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1Counter
|
|
11340
|
+
*/
|
|
11341
|
+
readonly name: string;
|
|
11342
|
+
/**
|
|
11343
|
+
* Updated counter
|
|
11344
|
+
* @type {Counter}
|
|
11345
|
+
* @memberof MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1Counter
|
|
11346
|
+
*/
|
|
11347
|
+
readonly counter?: Counter;
|
|
11348
|
+
}
|
|
11349
|
+
/**
|
|
11350
|
+
* MetricsHaloRunV1alpha1CounterApi - object-oriented interface
|
|
11351
|
+
* @export
|
|
11352
|
+
* @class MetricsHaloRunV1alpha1CounterApi
|
|
11353
|
+
* @extends {BaseAPI}
|
|
11354
|
+
*/
|
|
11355
|
+
declare class MetricsHaloRunV1alpha1CounterApi extends BaseAPI {
|
|
11356
|
+
/**
|
|
11357
|
+
* Create metrics.halo.run/v1alpha1/Counter
|
|
11358
|
+
* @param {MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest} requestParameters Request parameters.
|
|
11359
|
+
* @param {*} [options] Override http request option.
|
|
11360
|
+
* @throws {RequiredError}
|
|
11361
|
+
* @memberof MetricsHaloRunV1alpha1CounterApi
|
|
11362
|
+
*/
|
|
11363
|
+
createmetricsHaloRunV1alpha1Counter(requestParameters?: MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Counter, any>>;
|
|
11364
|
+
/**
|
|
11365
|
+
* Delete metrics.halo.run/v1alpha1/Counter
|
|
11366
|
+
* @param {MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest} requestParameters Request parameters.
|
|
11367
|
+
* @param {*} [options] Override http request option.
|
|
11368
|
+
* @throws {RequiredError}
|
|
11369
|
+
* @memberof MetricsHaloRunV1alpha1CounterApi
|
|
11370
|
+
*/
|
|
11371
|
+
deletemetricsHaloRunV1alpha1Counter(requestParameters: MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
11372
|
+
/**
|
|
11373
|
+
* Get metrics.halo.run/v1alpha1/Counter
|
|
11374
|
+
* @param {MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest} requestParameters Request parameters.
|
|
11375
|
+
* @param {*} [options] Override http request option.
|
|
11376
|
+
* @throws {RequiredError}
|
|
11377
|
+
* @memberof MetricsHaloRunV1alpha1CounterApi
|
|
11378
|
+
*/
|
|
11379
|
+
getmetricsHaloRunV1alpha1Counter(requestParameters: MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Counter, any>>;
|
|
11380
|
+
/**
|
|
11381
|
+
* List metrics.halo.run/v1alpha1/Counter
|
|
11382
|
+
* @param {MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest} requestParameters Request parameters.
|
|
11383
|
+
* @param {*} [options] Override http request option.
|
|
11384
|
+
* @throws {RequiredError}
|
|
11385
|
+
* @memberof MetricsHaloRunV1alpha1CounterApi
|
|
11386
|
+
*/
|
|
11387
|
+
listmetricsHaloRunV1alpha1Counter(requestParameters?: MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<CounterList, any>>;
|
|
11388
|
+
/**
|
|
11389
|
+
* Update metrics.halo.run/v1alpha1/Counter
|
|
11390
|
+
* @param {MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest} requestParameters Request parameters.
|
|
11391
|
+
* @param {*} [options] Override http request option.
|
|
11392
|
+
* @throws {RequiredError}
|
|
11393
|
+
* @memberof MetricsHaloRunV1alpha1CounterApi
|
|
11394
|
+
*/
|
|
11395
|
+
updatemetricsHaloRunV1alpha1Counter(requestParameters: MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Counter, any>>;
|
|
11396
|
+
}
|
|
11397
|
+
|
|
10746
11398
|
/**
|
|
10747
11399
|
* PluginHaloRunV1alpha1PluginApi - axios parameter creator
|
|
10748
11400
|
* @export
|
|
@@ -15003,4 +15655,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
15003
15655
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
15004
15656
|
}
|
|
15005
15657
|
|
|
15006
|
-
export { ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CommentVo, CommentVoList, 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, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, Link, LinkGroup, LinkGroupSpec, LinkSpec, 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, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingForm, 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, ThemeStatus, 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 };
|
|
15658
|
+
export { ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiCountRequest, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CommentVo, CommentVoList, 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, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest, Counter, CounterList, CounterRequest, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, Link, LinkGroup, LinkGroupSpec, LinkSpec, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, 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, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingForm, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, Stats, 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, ThemeStatus, 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 };
|