@halo-dev/api-client 0.0.33 → 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 +369 -23
- package/dist/index.d.ts +804 -56
- package/dist/index.mjs +358 -24
- 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
|
/**
|
|
@@ -6824,6 +7082,19 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
6824
7082
|
* @throws {RequiredError}
|
|
6825
7083
|
*/
|
|
6826
7084
|
installPlugin: (file: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7085
|
+
/**
|
|
7086
|
+
* List plugins using query criteria and sort params
|
|
7087
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7088
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
7089
|
+
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7090
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7091
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7092
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7093
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7094
|
+
* @param {*} [options] Override http request option.
|
|
7095
|
+
* @throws {RequiredError}
|
|
7096
|
+
*/
|
|
7097
|
+
listPlugins: (sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6827
7098
|
};
|
|
6828
7099
|
/**
|
|
6829
7100
|
* ApiConsoleHaloRunV1alpha1PluginApi - functional programming interface
|
|
@@ -6837,6 +7108,19 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
6837
7108
|
* @throws {RequiredError}
|
|
6838
7109
|
*/
|
|
6839
7110
|
installPlugin(file: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Plugin>>;
|
|
7111
|
+
/**
|
|
7112
|
+
* List plugins using query criteria and sort params
|
|
7113
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7114
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
7115
|
+
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7116
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7117
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7118
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7119
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7120
|
+
* @param {*} [options] Override http request option.
|
|
7121
|
+
* @throws {RequiredError}
|
|
7122
|
+
*/
|
|
7123
|
+
listPlugins(sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
|
|
6840
7124
|
};
|
|
6841
7125
|
/**
|
|
6842
7126
|
* ApiConsoleHaloRunV1alpha1PluginApi - factory interface
|
|
@@ -6850,6 +7134,19 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
|
|
|
6850
7134
|
* @throws {RequiredError}
|
|
6851
7135
|
*/
|
|
6852
7136
|
installPlugin(file: any, options?: any): AxiosPromise<Plugin>;
|
|
7137
|
+
/**
|
|
7138
|
+
* List plugins using query criteria and sort params
|
|
7139
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7140
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
7141
|
+
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7142
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7143
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7144
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7145
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7146
|
+
* @param {*} [options] Override http request option.
|
|
7147
|
+
* @throws {RequiredError}
|
|
7148
|
+
*/
|
|
7149
|
+
listPlugins(sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<PluginList>;
|
|
6853
7150
|
};
|
|
6854
7151
|
/**
|
|
6855
7152
|
* Request parameters for installPlugin operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
@@ -6865,44 +7162,101 @@ interface ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest {
|
|
|
6865
7162
|
readonly file: any;
|
|
6866
7163
|
}
|
|
6867
7164
|
/**
|
|
6868
|
-
*
|
|
7165
|
+
* Request parameters for listPlugins operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
6869
7166
|
* @export
|
|
6870
|
-
* @
|
|
6871
|
-
* @extends {BaseAPI}
|
|
7167
|
+
* @interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest
|
|
6872
7168
|
*/
|
|
6873
|
-
|
|
7169
|
+
interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
6874
7170
|
/**
|
|
6875
|
-
*
|
|
6876
|
-
* @
|
|
6877
|
-
* @
|
|
6878
|
-
* @throws {RequiredError}
|
|
6879
|
-
* @memberof ApiConsoleHaloRunV1alpha1PluginApi
|
|
7171
|
+
* Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7172
|
+
* @type {Array<string>}
|
|
7173
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
6880
7174
|
*/
|
|
6881
|
-
|
|
6882
|
-
}
|
|
6883
|
-
|
|
6884
|
-
/**
|
|
6885
|
-
* ApiConsoleHaloRunV1alpha1PostApi - axios parameter creator
|
|
6886
|
-
* @export
|
|
6887
|
-
*/
|
|
6888
|
-
declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
7175
|
+
readonly sort?: Array<string>;
|
|
6889
7176
|
/**
|
|
6890
|
-
*
|
|
6891
|
-
* @
|
|
6892
|
-
* @
|
|
6893
|
-
* @throws {RequiredError}
|
|
7177
|
+
* Keyword of plugin name or description
|
|
7178
|
+
* @type {string}
|
|
7179
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
6894
7180
|
*/
|
|
6895
|
-
|
|
7181
|
+
readonly keyword?: string;
|
|
6896
7182
|
/**
|
|
6897
|
-
*
|
|
6898
|
-
* @
|
|
6899
|
-
* @
|
|
6900
|
-
|
|
6901
|
-
|
|
6902
|
-
|
|
6903
|
-
*
|
|
7183
|
+
* Whether the plugin is enabled
|
|
7184
|
+
* @type {boolean}
|
|
7185
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7186
|
+
*/
|
|
7187
|
+
readonly enabled?: boolean;
|
|
7188
|
+
/**
|
|
7189
|
+
* Size of one page. Zero indicates no limit.
|
|
7190
|
+
* @type {number}
|
|
7191
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7192
|
+
*/
|
|
7193
|
+
readonly size?: number;
|
|
7194
|
+
/**
|
|
7195
|
+
* Label selector for filtering.
|
|
7196
|
+
* @type {Array<string>}
|
|
7197
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7198
|
+
*/
|
|
7199
|
+
readonly labelSelector?: Array<string>;
|
|
7200
|
+
/**
|
|
7201
|
+
* Field selector for filtering.
|
|
7202
|
+
* @type {Array<string>}
|
|
7203
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7204
|
+
*/
|
|
7205
|
+
readonly fieldSelector?: Array<string>;
|
|
7206
|
+
/**
|
|
7207
|
+
* The page number. Zero indicates no page.
|
|
7208
|
+
* @type {number}
|
|
7209
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7210
|
+
*/
|
|
7211
|
+
readonly page?: number;
|
|
7212
|
+
}
|
|
7213
|
+
/**
|
|
7214
|
+
* ApiConsoleHaloRunV1alpha1PluginApi - object-oriented interface
|
|
7215
|
+
* @export
|
|
7216
|
+
* @class ApiConsoleHaloRunV1alpha1PluginApi
|
|
7217
|
+
* @extends {BaseAPI}
|
|
7218
|
+
*/
|
|
7219
|
+
declare class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
7220
|
+
/**
|
|
7221
|
+
* Install a plugin by uploading a Jar file.
|
|
7222
|
+
* @param {ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest} requestParameters Request parameters.
|
|
7223
|
+
* @param {*} [options] Override http request option.
|
|
7224
|
+
* @throws {RequiredError}
|
|
7225
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApi
|
|
7226
|
+
*/
|
|
7227
|
+
installPlugin(requestParameters: ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Plugin, any>>;
|
|
7228
|
+
/**
|
|
7229
|
+
* List plugins using query criteria and sort params
|
|
7230
|
+
* @param {ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest} requestParameters Request parameters.
|
|
7231
|
+
* @param {*} [options] Override http request option.
|
|
7232
|
+
* @throws {RequiredError}
|
|
7233
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApi
|
|
7234
|
+
*/
|
|
7235
|
+
listPlugins(requestParameters?: ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PluginList, any>>;
|
|
7236
|
+
}
|
|
7237
|
+
|
|
7238
|
+
/**
|
|
7239
|
+
* ApiConsoleHaloRunV1alpha1PostApi - axios parameter creator
|
|
7240
|
+
* @export
|
|
7241
|
+
*/
|
|
7242
|
+
declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
7243
|
+
/**
|
|
7244
|
+
* Draft a post.
|
|
7245
|
+
* @param {PostRequest} postRequest
|
|
7246
|
+
* @param {*} [options] Override http request option.
|
|
7247
|
+
* @throws {RequiredError}
|
|
7248
|
+
*/
|
|
7249
|
+
draftPost: (postRequest: PostRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7250
|
+
/**
|
|
7251
|
+
* List posts.
|
|
7252
|
+
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
7253
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7254
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7255
|
+
* @param {Array<string>} [category]
|
|
7256
|
+
* @param {Array<string>} [contributor]
|
|
6904
7257
|
* @param {string} [keyword] Posts filtered by keyword.
|
|
6905
7258
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7259
|
+
* @param {Array<string>} [tag]
|
|
6906
7260
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6907
7261
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6908
7262
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
@@ -6910,7 +7264,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
6910
7264
|
* @param {*} [options] Override http request option.
|
|
6911
7265
|
* @throws {RequiredError}
|
|
6912
7266
|
*/
|
|
6913
|
-
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
7267
|
+
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, contributor?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6914
7268
|
/**
|
|
6915
7269
|
* Publish a post.
|
|
6916
7270
|
* @param {string} name
|
|
@@ -6942,13 +7296,13 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
6942
7296
|
/**
|
|
6943
7297
|
* List posts.
|
|
6944
7298
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
6945
|
-
* @param {Array<string>} [contributor]
|
|
6946
7299
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6947
7300
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
6948
7301
|
* @param {Array<string>} [category]
|
|
6949
|
-
* @param {Array<string>} [
|
|
7302
|
+
* @param {Array<string>} [contributor]
|
|
6950
7303
|
* @param {string} [keyword] Posts filtered by keyword.
|
|
6951
7304
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7305
|
+
* @param {Array<string>} [tag]
|
|
6952
7306
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6953
7307
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6954
7308
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
@@ -6956,7 +7310,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
6956
7310
|
* @param {*} [options] Override http request option.
|
|
6957
7311
|
* @throws {RequiredError}
|
|
6958
7312
|
*/
|
|
6959
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
7313
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, contributor?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
|
|
6960
7314
|
/**
|
|
6961
7315
|
* Publish a post.
|
|
6962
7316
|
* @param {string} name
|
|
@@ -6988,13 +7342,13 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
6988
7342
|
/**
|
|
6989
7343
|
* List posts.
|
|
6990
7344
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
6991
|
-
* @param {Array<string>} [contributor]
|
|
6992
7345
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6993
7346
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
6994
7347
|
* @param {Array<string>} [category]
|
|
6995
|
-
* @param {Array<string>} [
|
|
7348
|
+
* @param {Array<string>} [contributor]
|
|
6996
7349
|
* @param {string} [keyword] Posts filtered by keyword.
|
|
6997
7350
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7351
|
+
* @param {Array<string>} [tag]
|
|
6998
7352
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6999
7353
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7000
7354
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
@@ -7002,7 +7356,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
7002
7356
|
* @param {*} [options] Override http request option.
|
|
7003
7357
|
* @throws {RequiredError}
|
|
7004
7358
|
*/
|
|
7005
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
7359
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, contributor?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedPostList>;
|
|
7006
7360
|
/**
|
|
7007
7361
|
* Publish a post.
|
|
7008
7362
|
* @param {string} name
|
|
@@ -7044,12 +7398,6 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7044
7398
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7045
7399
|
*/
|
|
7046
7400
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
7047
|
-
/**
|
|
7048
|
-
*
|
|
7049
|
-
* @type {Array<string>}
|
|
7050
|
-
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7051
|
-
*/
|
|
7052
|
-
readonly contributor?: Array<string>;
|
|
7053
7401
|
/**
|
|
7054
7402
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
7055
7403
|
* @type {boolean}
|
|
@@ -7073,7 +7421,7 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7073
7421
|
* @type {Array<string>}
|
|
7074
7422
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7075
7423
|
*/
|
|
7076
|
-
readonly
|
|
7424
|
+
readonly contributor?: Array<string>;
|
|
7077
7425
|
/**
|
|
7078
7426
|
* Posts filtered by keyword.
|
|
7079
7427
|
* @type {string}
|
|
@@ -7086,6 +7434,12 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7086
7434
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7087
7435
|
*/
|
|
7088
7436
|
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
7437
|
+
/**
|
|
7438
|
+
*
|
|
7439
|
+
* @type {Array<string>}
|
|
7440
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7441
|
+
*/
|
|
7442
|
+
readonly tag?: Array<string>;
|
|
7089
7443
|
/**
|
|
7090
7444
|
* Size of one page. Zero indicates no limit.
|
|
7091
7445
|
* @type {number}
|
|
@@ -7304,9 +7658,9 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
7304
7658
|
/**
|
|
7305
7659
|
* List single pages.
|
|
7306
7660
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
7307
|
-
* @param {Array<string>} [contributor]
|
|
7308
7661
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7309
7662
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7663
|
+
* @param {Array<string>} [contributor]
|
|
7310
7664
|
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7311
7665
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7312
7666
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
@@ -7316,7 +7670,7 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
7316
7670
|
* @param {*} [options] Override http request option.
|
|
7317
7671
|
* @throws {RequiredError}
|
|
7318
7672
|
*/
|
|
7319
|
-
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
7673
|
+
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', contributor?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7320
7674
|
/**
|
|
7321
7675
|
* Publish a single page.
|
|
7322
7676
|
* @param {string} name
|
|
@@ -7348,9 +7702,9 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
7348
7702
|
/**
|
|
7349
7703
|
* List single pages.
|
|
7350
7704
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
7351
|
-
* @param {Array<string>} [contributor]
|
|
7352
7705
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7353
7706
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7707
|
+
* @param {Array<string>} [contributor]
|
|
7354
7708
|
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7355
7709
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7356
7710
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
@@ -7360,7 +7714,7 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
7360
7714
|
* @param {*} [options] Override http request option.
|
|
7361
7715
|
* @throws {RequiredError}
|
|
7362
7716
|
*/
|
|
7363
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
7717
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', contributor?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
|
|
7364
7718
|
/**
|
|
7365
7719
|
* Publish a single page.
|
|
7366
7720
|
* @param {string} name
|
|
@@ -7392,9 +7746,9 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
7392
7746
|
/**
|
|
7393
7747
|
* List single pages.
|
|
7394
7748
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
7395
|
-
* @param {Array<string>} [contributor]
|
|
7396
7749
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7397
7750
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7751
|
+
* @param {Array<string>} [contributor]
|
|
7398
7752
|
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7399
7753
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7400
7754
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
@@ -7404,7 +7758,7 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
7404
7758
|
* @param {*} [options] Override http request option.
|
|
7405
7759
|
* @throws {RequiredError}
|
|
7406
7760
|
*/
|
|
7407
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
7761
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', contributor?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedSinglePageList>;
|
|
7408
7762
|
/**
|
|
7409
7763
|
* Publish a single page.
|
|
7410
7764
|
* @param {string} name
|
|
@@ -7446,12 +7800,6 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
7446
7800
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7447
7801
|
*/
|
|
7448
7802
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
7449
|
-
/**
|
|
7450
|
-
*
|
|
7451
|
-
* @type {Array<string>}
|
|
7452
|
-
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7453
|
-
*/
|
|
7454
|
-
readonly contributor?: Array<string>;
|
|
7455
7803
|
/**
|
|
7456
7804
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
7457
7805
|
* @type {boolean}
|
|
@@ -7464,6 +7812,12 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
7464
7812
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7465
7813
|
*/
|
|
7466
7814
|
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED';
|
|
7815
|
+
/**
|
|
7816
|
+
*
|
|
7817
|
+
* @type {Array<string>}
|
|
7818
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7819
|
+
*/
|
|
7820
|
+
readonly contributor?: Array<string>;
|
|
7467
7821
|
/**
|
|
7468
7822
|
* SinglePages filtered by keyword.
|
|
7469
7823
|
* @type {string}
|
|
@@ -7574,6 +7928,58 @@ declare class ApiConsoleHaloRunV1alpha1SinglePageApi extends BaseAPI {
|
|
|
7574
7928
|
updateDraftSinglePage(requestParameters: ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
|
|
7575
7929
|
}
|
|
7576
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
|
+
|
|
7577
7983
|
/**
|
|
7578
7984
|
* ApiConsoleHaloRunV1alpha1ThemeApi - axios parameter creator
|
|
7579
7985
|
* @export
|
|
@@ -8190,6 +8596,75 @@ declare class ApiHaloRunV1alpha1CommentApi extends BaseAPI {
|
|
|
8190
8596
|
listComments1(requestParameters: ApiHaloRunV1alpha1CommentApiListComments1Request, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<CommentVoList, any>>;
|
|
8191
8597
|
}
|
|
8192
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
|
+
|
|
8193
8668
|
/**
|
|
8194
8669
|
* ContentHaloRunV1alpha1CategoryApi - axios parameter creator
|
|
8195
8670
|
* @export
|
|
@@ -10647,6 +11122,279 @@ declare class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
|
|
|
10647
11122
|
updatecoreHaloRunV1alpha1LinkGroup(requestParameters: CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
10648
11123
|
}
|
|
10649
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
|
+
|
|
10650
11398
|
/**
|
|
10651
11399
|
* PluginHaloRunV1alpha1PluginApi - axios parameter creator
|
|
10652
11400
|
* @export
|
|
@@ -14907,4 +15655,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
14907
15655
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
14908
15656
|
}
|
|
14909
15657
|
|
|
14910
|
-
export { ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, 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 };
|