@halo-dev/api-client 0.0.34 → 0.0.36

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.d.ts CHANGED
@@ -1622,6 +1622,203 @@ 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
+ downvote?: number;
1661
+ /**
1662
+ *
1663
+ * @type {number}
1664
+ * @memberof Counter
1665
+ */
1666
+ totalComment?: number;
1667
+ /**
1668
+ *
1669
+ * @type {number}
1670
+ * @memberof Counter
1671
+ */
1672
+ approvedComment?: number;
1673
+ /**
1674
+ *
1675
+ * @type {string}
1676
+ * @memberof Counter
1677
+ */
1678
+ apiVersion: string;
1679
+ /**
1680
+ *
1681
+ * @type {string}
1682
+ * @memberof Counter
1683
+ */
1684
+ kind: string;
1685
+ /**
1686
+ *
1687
+ * @type {Metadata}
1688
+ * @memberof Counter
1689
+ */
1690
+ metadata: Metadata;
1691
+ }
1692
+
1693
+ /**
1694
+ * Halo Next API
1695
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
1696
+ *
1697
+ * The version of the OpenAPI document: 2.0.0
1698
+ *
1699
+ *
1700
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1701
+ * https://openapi-generator.tech
1702
+ * Do not edit the class manually.
1703
+ */
1704
+
1705
+ /**
1706
+ *
1707
+ * @export
1708
+ * @interface CounterList
1709
+ */
1710
+ interface CounterList {
1711
+ /**
1712
+ * Page number, starts from 1. If not set or equal to 0, it means no pagination.
1713
+ * @type {number}
1714
+ * @memberof CounterList
1715
+ */
1716
+ page: number;
1717
+ /**
1718
+ * Size of each page. If not set or equal to 0, it means no pagination.
1719
+ * @type {number}
1720
+ * @memberof CounterList
1721
+ */
1722
+ size: number;
1723
+ /**
1724
+ * Total elements.
1725
+ * @type {number}
1726
+ * @memberof CounterList
1727
+ */
1728
+ total: number;
1729
+ /**
1730
+ * A chunk of items.
1731
+ * @type {Array<Counter>}
1732
+ * @memberof CounterList
1733
+ */
1734
+ items: Array<Counter>;
1735
+ /**
1736
+ * Indicates whether current page is the first page.
1737
+ * @type {boolean}
1738
+ * @memberof CounterList
1739
+ */
1740
+ first: boolean;
1741
+ /**
1742
+ * Indicates whether current page is the last page.
1743
+ * @type {boolean}
1744
+ * @memberof CounterList
1745
+ */
1746
+ last: boolean;
1747
+ /**
1748
+ * Indicates whether current page has previous page.
1749
+ * @type {boolean}
1750
+ * @memberof CounterList
1751
+ */
1752
+ hasNext: boolean;
1753
+ /**
1754
+ * Indicates whether current page has previous page.
1755
+ * @type {boolean}
1756
+ * @memberof CounterList
1757
+ */
1758
+ hasPrevious: boolean;
1759
+ }
1760
+
1761
+ /**
1762
+ * Halo Next API
1763
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
1764
+ *
1765
+ * The version of the OpenAPI document: 2.0.0
1766
+ *
1767
+ *
1768
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1769
+ * https://openapi-generator.tech
1770
+ * Do not edit the class manually.
1771
+ */
1772
+ /**
1773
+ *
1774
+ * @export
1775
+ * @interface CounterRequest
1776
+ */
1777
+ interface CounterRequest {
1778
+ /**
1779
+ *
1780
+ * @type {string}
1781
+ * @memberof CounterRequest
1782
+ */
1783
+ group?: string;
1784
+ /**
1785
+ *
1786
+ * @type {string}
1787
+ * @memberof CounterRequest
1788
+ */
1789
+ plural?: string;
1790
+ /**
1791
+ *
1792
+ * @type {string}
1793
+ * @memberof CounterRequest
1794
+ */
1795
+ name?: string;
1796
+ /**
1797
+ *
1798
+ * @type {string}
1799
+ * @memberof CounterRequest
1800
+ */
1801
+ hostname?: string;
1802
+ /**
1803
+ *
1804
+ * @type {string}
1805
+ * @memberof CounterRequest
1806
+ */
1807
+ screen?: string;
1808
+ /**
1809
+ *
1810
+ * @type {string}
1811
+ * @memberof CounterRequest
1812
+ */
1813
+ language?: string;
1814
+ /**
1815
+ *
1816
+ * @type {string}
1817
+ * @memberof CounterRequest
1818
+ */
1819
+ referrer?: string;
1820
+ }
1821
+
1625
1822
  /**
1626
1823
  * Halo Next API
1627
1824
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -1673,22 +1870,22 @@ interface Excerpt {
1673
1870
  interface Extension {
1674
1871
  /**
1675
1872
  *
1676
- * @type {Metadata}
1873
+ * @type {string}
1677
1874
  * @memberof Extension
1678
1875
  */
1679
- metadata: Metadata;
1876
+ kind: string;
1680
1877
  /**
1681
1878
  *
1682
- * @type {string}
1879
+ * @type {Metadata}
1683
1880
  * @memberof Extension
1684
1881
  */
1685
- apiVersion: string;
1882
+ metadata: Metadata;
1686
1883
  /**
1687
1884
  *
1688
1885
  * @type {string}
1689
1886
  * @memberof Extension
1690
1887
  */
1691
- kind: string;
1888
+ apiVersion: string;
1692
1889
  }
1693
1890
 
1694
1891
  /**
@@ -1963,42 +2160,31 @@ interface License {
1963
2160
  * https://openapi-generator.tech
1964
2161
  * Do not edit the class manually.
1965
2162
  */
2163
+
1966
2164
  /**
1967
- *
2165
+ * A chunk of items.
1968
2166
  * @export
1969
- * @interface LinkSpec
2167
+ * @interface ListedComment
1970
2168
  */
1971
- interface LinkSpec {
1972
- /**
1973
- *
1974
- * @type {string}
1975
- * @memberof LinkSpec
1976
- */
1977
- url: string;
1978
- /**
1979
- *
1980
- * @type {string}
1981
- * @memberof LinkSpec
1982
- */
1983
- displayName: string;
2169
+ interface ListedComment {
1984
2170
  /**
1985
2171
  *
1986
- * @type {string}
1987
- * @memberof LinkSpec
2172
+ * @type {Comment}
2173
+ * @memberof ListedComment
1988
2174
  */
1989
- logo?: string;
2175
+ comment: Comment;
1990
2176
  /**
1991
2177
  *
1992
- * @type {string}
1993
- * @memberof LinkSpec
2178
+ * @type {OwnerInfo}
2179
+ * @memberof ListedComment
1994
2180
  */
1995
- description?: string;
2181
+ owner: OwnerInfo;
1996
2182
  /**
1997
2183
  *
1998
- * @type {number}
1999
- * @memberof LinkSpec
2184
+ * @type {Extension}
2185
+ * @memberof ListedComment
2000
2186
  */
2001
- priority?: number;
2187
+ subject?: Extension;
2002
2188
  }
2003
2189
 
2004
2190
  /**
@@ -2016,33 +2202,57 @@ interface LinkSpec {
2016
2202
  /**
2017
2203
  *
2018
2204
  * @export
2019
- * @interface Link
2205
+ * @interface ListedCommentList
2020
2206
  */
2021
- interface Link {
2207
+ interface ListedCommentList {
2022
2208
  /**
2023
- *
2024
- * @type {LinkSpec}
2025
- * @memberof Link
2209
+ * Page number, starts from 1. If not set or equal to 0, it means no pagination.
2210
+ * @type {number}
2211
+ * @memberof ListedCommentList
2026
2212
  */
2027
- spec?: LinkSpec;
2213
+ page: number;
2028
2214
  /**
2029
- *
2030
- * @type {string}
2031
- * @memberof Link
2215
+ * Size of each page. If not set or equal to 0, it means no pagination.
2216
+ * @type {number}
2217
+ * @memberof ListedCommentList
2032
2218
  */
2033
- apiVersion: string;
2219
+ size: number;
2034
2220
  /**
2035
- *
2036
- * @type {string}
2037
- * @memberof Link
2221
+ * Total elements.
2222
+ * @type {number}
2223
+ * @memberof ListedCommentList
2038
2224
  */
2039
- kind: string;
2225
+ total: number;
2040
2226
  /**
2041
- *
2042
- * @type {Metadata}
2043
- * @memberof Link
2227
+ * A chunk of items.
2228
+ * @type {Array<ListedComment>}
2229
+ * @memberof ListedCommentList
2044
2230
  */
2045
- metadata: Metadata;
2231
+ items: Array<ListedComment>;
2232
+ /**
2233
+ * Indicates whether current page is the first page.
2234
+ * @type {boolean}
2235
+ * @memberof ListedCommentList
2236
+ */
2237
+ first: boolean;
2238
+ /**
2239
+ * Indicates whether current page is the last page.
2240
+ * @type {boolean}
2241
+ * @memberof ListedCommentList
2242
+ */
2243
+ last: boolean;
2244
+ /**
2245
+ * Indicates whether current page has previous page.
2246
+ * @type {boolean}
2247
+ * @memberof ListedCommentList
2248
+ */
2249
+ hasNext: boolean;
2250
+ /**
2251
+ * Indicates whether current page has previous page.
2252
+ * @type {boolean}
2253
+ * @memberof ListedCommentList
2254
+ */
2255
+ hasPrevious: boolean;
2046
2256
  }
2047
2257
 
2048
2258
  /**
@@ -2056,206 +2266,19 @@ interface Link {
2056
2266
  * https://openapi-generator.tech
2057
2267
  * Do not edit the class manually.
2058
2268
  */
2269
+
2059
2270
  /**
2060
2271
  *
2061
2272
  * @export
2062
- * @interface LinkGroupSpec
2273
+ * @interface PostSpec
2063
2274
  */
2064
- interface LinkGroupSpec {
2275
+ interface PostSpec {
2065
2276
  /**
2066
2277
  *
2067
2278
  * @type {string}
2068
- * @memberof LinkGroupSpec
2279
+ * @memberof PostSpec
2069
2280
  */
2070
- displayName: string;
2071
- /**
2072
- *
2073
- * @type {number}
2074
- * @memberof LinkGroupSpec
2075
- */
2076
- priority?: number;
2077
- /**
2078
- * Names of links below this group.
2079
- * @type {Array<string>}
2080
- * @memberof LinkGroupSpec
2081
- */
2082
- links?: Array<string>;
2083
- }
2084
-
2085
- /**
2086
- * Halo Next API
2087
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
2088
- *
2089
- * The version of the OpenAPI document: 2.0.0
2090
- *
2091
- *
2092
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2093
- * https://openapi-generator.tech
2094
- * Do not edit the class manually.
2095
- */
2096
-
2097
- /**
2098
- *
2099
- * @export
2100
- * @interface LinkGroup
2101
- */
2102
- interface LinkGroup {
2103
- /**
2104
- *
2105
- * @type {LinkGroupSpec}
2106
- * @memberof LinkGroup
2107
- */
2108
- spec?: LinkGroupSpec;
2109
- /**
2110
- *
2111
- * @type {string}
2112
- * @memberof LinkGroup
2113
- */
2114
- apiVersion: string;
2115
- /**
2116
- *
2117
- * @type {string}
2118
- * @memberof LinkGroup
2119
- */
2120
- kind: string;
2121
- /**
2122
- *
2123
- * @type {Metadata}
2124
- * @memberof LinkGroup
2125
- */
2126
- metadata: Metadata;
2127
- }
2128
-
2129
- /**
2130
- * Halo Next API
2131
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
2132
- *
2133
- * The version of the OpenAPI document: 2.0.0
2134
- *
2135
- *
2136
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2137
- * https://openapi-generator.tech
2138
- * Do not edit the class manually.
2139
- */
2140
-
2141
- /**
2142
- * A chunk of items.
2143
- * @export
2144
- * @interface ListedComment
2145
- */
2146
- interface ListedComment {
2147
- /**
2148
- *
2149
- * @type {Comment}
2150
- * @memberof ListedComment
2151
- */
2152
- comment: Comment;
2153
- /**
2154
- *
2155
- * @type {OwnerInfo}
2156
- * @memberof ListedComment
2157
- */
2158
- owner: OwnerInfo;
2159
- /**
2160
- *
2161
- * @type {Extension}
2162
- * @memberof ListedComment
2163
- */
2164
- subject?: Extension;
2165
- }
2166
-
2167
- /**
2168
- * Halo Next API
2169
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
2170
- *
2171
- * The version of the OpenAPI document: 2.0.0
2172
- *
2173
- *
2174
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2175
- * https://openapi-generator.tech
2176
- * Do not edit the class manually.
2177
- */
2178
-
2179
- /**
2180
- *
2181
- * @export
2182
- * @interface ListedCommentList
2183
- */
2184
- interface ListedCommentList {
2185
- /**
2186
- * Page number, starts from 1. If not set or equal to 0, it means no pagination.
2187
- * @type {number}
2188
- * @memberof ListedCommentList
2189
- */
2190
- page: number;
2191
- /**
2192
- * Size of each page. If not set or equal to 0, it means no pagination.
2193
- * @type {number}
2194
- * @memberof ListedCommentList
2195
- */
2196
- size: number;
2197
- /**
2198
- * Total elements.
2199
- * @type {number}
2200
- * @memberof ListedCommentList
2201
- */
2202
- total: number;
2203
- /**
2204
- * A chunk of items.
2205
- * @type {Array<ListedComment>}
2206
- * @memberof ListedCommentList
2207
- */
2208
- items: Array<ListedComment>;
2209
- /**
2210
- * Indicates whether current page is the first page.
2211
- * @type {boolean}
2212
- * @memberof ListedCommentList
2213
- */
2214
- first: boolean;
2215
- /**
2216
- * Indicates whether current page is the last page.
2217
- * @type {boolean}
2218
- * @memberof ListedCommentList
2219
- */
2220
- last: boolean;
2221
- /**
2222
- * Indicates whether current page has previous page.
2223
- * @type {boolean}
2224
- * @memberof ListedCommentList
2225
- */
2226
- hasNext: boolean;
2227
- /**
2228
- * Indicates whether current page has previous page.
2229
- * @type {boolean}
2230
- * @memberof ListedCommentList
2231
- */
2232
- hasPrevious: boolean;
2233
- }
2234
-
2235
- /**
2236
- * Halo Next API
2237
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
2238
- *
2239
- * The version of the OpenAPI document: 2.0.0
2240
- *
2241
- *
2242
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2243
- * https://openapi-generator.tech
2244
- * Do not edit the class manually.
2245
- */
2246
-
2247
- /**
2248
- *
2249
- * @export
2250
- * @interface PostSpec
2251
- */
2252
- interface PostSpec {
2253
- /**
2254
- *
2255
- * @type {string}
2256
- * @memberof PostSpec
2257
- */
2258
- title: string;
2281
+ title: string;
2259
2282
  /**
2260
2283
  *
2261
2284
  * @type {string}
@@ -2492,6 +2515,61 @@ interface Post {
2492
2515
  metadata: Metadata;
2493
2516
  }
2494
2517
 
2518
+ /**
2519
+ * Halo Next API
2520
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
2521
+ *
2522
+ * The version of the OpenAPI document: 2.0.0
2523
+ *
2524
+ *
2525
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2526
+ * https://openapi-generator.tech
2527
+ * Do not edit the class manually.
2528
+ */
2529
+ /**
2530
+ *
2531
+ * @export
2532
+ * @interface Stats
2533
+ */
2534
+ interface Stats {
2535
+ /**
2536
+ *
2537
+ * @type {number}
2538
+ * @memberof Stats
2539
+ */
2540
+ visits?: number;
2541
+ /**
2542
+ *
2543
+ * @type {number}
2544
+ * @memberof Stats
2545
+ */
2546
+ comments?: number;
2547
+ /**
2548
+ *
2549
+ * @type {number}
2550
+ * @memberof Stats
2551
+ */
2552
+ approvedComments?: number;
2553
+ /**
2554
+ *
2555
+ * @type {number}
2556
+ * @memberof Stats
2557
+ */
2558
+ upvotes?: number;
2559
+ /**
2560
+ *
2561
+ * @type {number}
2562
+ * @memberof Stats
2563
+ */
2564
+ users?: number;
2565
+ /**
2566
+ *
2567
+ * @type {number}
2568
+ * @memberof Stats
2569
+ */
2570
+ posts?: number;
2571
+ }
2572
+
2495
2573
  /**
2496
2574
  * Halo Next API
2497
2575
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -2664,6 +2742,12 @@ interface ListedPost {
2664
2742
  * @memberof ListedPost
2665
2743
  */
2666
2744
  contributors: Array<Contributor>;
2745
+ /**
2746
+ *
2747
+ * @type {Stats}
2748
+ * @memberof ListedPost
2749
+ */
2750
+ stats: Stats;
2667
2751
  }
2668
2752
 
2669
2753
  /**
@@ -3248,6 +3332,12 @@ interface ListedSinglePage {
3248
3332
  * @memberof ListedSinglePage
3249
3333
  */
3250
3334
  contributors: Array<Contributor>;
3335
+ /**
3336
+ *
3337
+ * @type {Stats}
3338
+ * @memberof ListedSinglePage
3339
+ */
3340
+ stats: Stats;
3251
3341
  }
3252
3342
 
3253
3343
  /**
@@ -6312,46 +6402,275 @@ interface UserPermission {
6312
6402
  }
6313
6403
 
6314
6404
  /**
6315
- * ApiConsoleHaloRunV1alpha1CommentApi - axios parameter creator
6405
+ * Halo Next API
6406
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6407
+ *
6408
+ * The version of the OpenAPI document: 2.0.0
6409
+ *
6410
+ *
6411
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6412
+ * https://openapi-generator.tech
6413
+ * Do not edit the class manually.
6414
+ */
6415
+ /**
6416
+ *
6316
6417
  * @export
6418
+ * @interface VoteRequest
6317
6419
  */
6318
- declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configuration?: Configuration) => {
6420
+ interface VoteRequest {
6319
6421
  /**
6320
- * Create a comment.
6321
- * @param {CommentRequest} commentRequest
6322
- * @param {*} [options] Override http request option.
6323
- * @throws {RequiredError}
6422
+ *
6423
+ * @type {string}
6424
+ * @memberof VoteRequest
6324
6425
  */
6325
- createComment: (commentRequest: CommentRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6426
+ group?: string;
6326
6427
  /**
6327
- * Create a reply.
6328
- * @param {string} name
6329
- * @param {ReplyRequest} replyRequest
6330
- * @param {*} [options] Override http request option.
6331
- * @throws {RequiredError}
6428
+ *
6429
+ * @type {string}
6430
+ * @memberof VoteRequest
6332
6431
  */
6333
- createReply: (name: string, replyRequest: ReplyRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6432
+ plural?: string;
6334
6433
  /**
6335
- * List comments.
6336
- * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
6337
- * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
6434
+ *
6435
+ * @type {string}
6436
+ * @memberof VoteRequest
6437
+ */
6438
+ name?: string;
6439
+ }
6440
+
6441
+ /**
6442
+ * ApiConsoleHaloRunV1alpha1AttachmentApi - axios parameter creator
6443
+ * @export
6444
+ */
6445
+ declare const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configuration?: Configuration) => {
6446
+ /**
6447
+ *
6448
+ * @param {string} [policy] Name of policy
6449
+ * @param {string} [displayName] Display name of attachment
6450
+ * @param {string} [group] Name of group
6451
+ * @param {string} [uploadedBy] Name of user who uploaded the attachment
6452
+ * @param {number} [size] Size of one page. Zero indicates no limit.
6453
+ * @param {number} [page] The page number. Zero indicates no page.
6454
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
6455
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
6456
+ * @param {*} [options] Override http request option.
6457
+ * @throws {RequiredError}
6458
+ */
6459
+ searchAttachments: (policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6460
+ /**
6461
+ *
6462
+ * @param {any} file
6463
+ * @param {string} policyName Storage policy name
6464
+ * @param {string} [groupName] The name of the group to which the attachment belongs
6465
+ * @param {*} [options] Override http request option.
6466
+ * @throws {RequiredError}
6467
+ */
6468
+ uploadAttachment: (file: any, policyName: string, groupName?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6469
+ };
6470
+ /**
6471
+ * ApiConsoleHaloRunV1alpha1AttachmentApi - functional programming interface
6472
+ * @export
6473
+ */
6474
+ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFp: (configuration?: Configuration) => {
6475
+ /**
6476
+ *
6477
+ * @param {string} [policy] Name of policy
6478
+ * @param {string} [displayName] Display name of attachment
6479
+ * @param {string} [group] Name of group
6480
+ * @param {string} [uploadedBy] Name of user who uploaded the attachment
6481
+ * @param {number} [size] Size of one page. Zero indicates no limit.
6482
+ * @param {number} [page] The page number. Zero indicates no page.
6483
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
6484
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
6485
+ * @param {*} [options] Override http request option.
6486
+ * @throws {RequiredError}
6487
+ */
6488
+ searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
6489
+ /**
6490
+ *
6491
+ * @param {any} file
6492
+ * @param {string} policyName Storage policy name
6493
+ * @param {string} [groupName] The name of the group to which the attachment belongs
6494
+ * @param {*} [options] Override http request option.
6495
+ * @throws {RequiredError}
6496
+ */
6497
+ uploadAttachment(file: any, policyName: string, groupName?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Attachment>>;
6498
+ };
6499
+ /**
6500
+ * ApiConsoleHaloRunV1alpha1AttachmentApi - factory interface
6501
+ * @export
6502
+ */
6503
+ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
6504
+ /**
6505
+ *
6506
+ * @param {string} [policy] Name of policy
6507
+ * @param {string} [displayName] Display name of attachment
6508
+ * @param {string} [group] Name of group
6509
+ * @param {string} [uploadedBy] Name of user who uploaded the attachment
6510
+ * @param {number} [size] Size of one page. Zero indicates no limit.
6511
+ * @param {number} [page] The page number. Zero indicates no page.
6512
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
6513
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
6514
+ * @param {*} [options] Override http request option.
6515
+ * @throws {RequiredError}
6516
+ */
6517
+ searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<AttachmentList>;
6518
+ /**
6519
+ *
6520
+ * @param {any} file
6521
+ * @param {string} policyName Storage policy name
6522
+ * @param {string} [groupName] The name of the group to which the attachment belongs
6523
+ * @param {*} [options] Override http request option.
6524
+ * @throws {RequiredError}
6525
+ */
6526
+ uploadAttachment(file: any, policyName: string, groupName?: string, options?: any): AxiosPromise<Attachment>;
6527
+ };
6528
+ /**
6529
+ * Request parameters for searchAttachments operation in ApiConsoleHaloRunV1alpha1AttachmentApi.
6530
+ * @export
6531
+ * @interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest
6532
+ */
6533
+ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
6534
+ /**
6535
+ * Name of policy
6536
+ * @type {string}
6537
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
6538
+ */
6539
+ readonly policy?: string;
6540
+ /**
6541
+ * Display name of attachment
6542
+ * @type {string}
6543
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
6544
+ */
6545
+ readonly displayName?: string;
6546
+ /**
6547
+ * Name of group
6548
+ * @type {string}
6549
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
6550
+ */
6551
+ readonly group?: string;
6552
+ /**
6553
+ * Name of user who uploaded the attachment
6554
+ * @type {string}
6555
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
6556
+ */
6557
+ readonly uploadedBy?: string;
6558
+ /**
6559
+ * Size of one page. Zero indicates no limit.
6560
+ * @type {number}
6561
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
6562
+ */
6563
+ readonly size?: number;
6564
+ /**
6565
+ * The page number. Zero indicates no page.
6566
+ * @type {number}
6567
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
6568
+ */
6569
+ readonly page?: number;
6570
+ /**
6571
+ * Label selector for filtering.
6572
+ * @type {Array<string>}
6573
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
6574
+ */
6575
+ readonly labelSelector?: Array<string>;
6576
+ /**
6577
+ * Field selector for filtering.
6578
+ * @type {Array<string>}
6579
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
6580
+ */
6581
+ readonly fieldSelector?: Array<string>;
6582
+ }
6583
+ /**
6584
+ * Request parameters for uploadAttachment operation in ApiConsoleHaloRunV1alpha1AttachmentApi.
6585
+ * @export
6586
+ * @interface ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest
6587
+ */
6588
+ interface ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest {
6589
+ /**
6590
+ *
6591
+ * @type {any}
6592
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachment
6593
+ */
6594
+ readonly file: any;
6595
+ /**
6596
+ * Storage policy name
6597
+ * @type {string}
6598
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachment
6599
+ */
6600
+ readonly policyName: string;
6601
+ /**
6602
+ * The name of the group to which the attachment belongs
6603
+ * @type {string}
6604
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachment
6605
+ */
6606
+ readonly groupName?: string;
6607
+ }
6608
+ /**
6609
+ * ApiConsoleHaloRunV1alpha1AttachmentApi - object-oriented interface
6610
+ * @export
6611
+ * @class ApiConsoleHaloRunV1alpha1AttachmentApi
6612
+ * @extends {BaseAPI}
6613
+ */
6614
+ declare class ApiConsoleHaloRunV1alpha1AttachmentApi extends BaseAPI {
6615
+ /**
6616
+ *
6617
+ * @param {ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest} requestParameters Request parameters.
6618
+ * @param {*} [options] Override http request option.
6619
+ * @throws {RequiredError}
6620
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApi
6621
+ */
6622
+ searchAttachments(requestParameters?: ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<AttachmentList, any>>;
6623
+ /**
6624
+ *
6625
+ * @param {ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest} requestParameters Request parameters.
6626
+ * @param {*} [options] Override http request option.
6627
+ * @throws {RequiredError}
6628
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApi
6629
+ */
6630
+ uploadAttachment(requestParameters: ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Attachment, any>>;
6631
+ }
6632
+
6633
+ /**
6634
+ * ApiConsoleHaloRunV1alpha1CommentApi - axios parameter creator
6635
+ * @export
6636
+ */
6637
+ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configuration?: Configuration) => {
6638
+ /**
6639
+ * Create a comment.
6640
+ * @param {CommentRequest} commentRequest
6641
+ * @param {*} [options] Override http request option.
6642
+ * @throws {RequiredError}
6643
+ */
6644
+ createComment: (commentRequest: CommentRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6645
+ /**
6646
+ * Create a reply.
6647
+ * @param {string} name
6648
+ * @param {ReplyRequest} replyRequest
6649
+ * @param {*} [options] Override http request option.
6650
+ * @throws {RequiredError}
6651
+ */
6652
+ createReply: (name: string, replyRequest: ReplyRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6653
+ /**
6654
+ * List comments.
6655
+ * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
6656
+ * @param {string} [keyword] Comments filtered by keyword.
6657
+ * @param {boolean} [hidden] The comment is hidden from the theme side.
6658
+ * @param {boolean} [top] Comment top display.
6659
+ * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
6338
6660
  * @param {boolean} [approved] Comments approved.
6339
6661
  * @param {boolean} [allowNotification] Send notifications when there are new replies.
6340
6662
  * @param {string} [ownerKind] Commenter kind.
6341
6663
  * @param {string} [ownerName] Commenter name.
6342
6664
  * @param {string} [subjectKind] Comment subject kind.
6343
6665
  * @param {string} [subjectName] Comment subject name.
6344
- * @param {string} [keyword] Comments filtered by keyword.
6345
- * @param {boolean} [hidden] The comment is hidden from the theme side.
6346
- * @param {boolean} [top] Comment top display.
6347
6666
  * @param {number} [size] Size of one page. Zero indicates no limit.
6667
+ * @param {number} [page] The page number. Zero indicates no page.
6348
6668
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6349
6669
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
6350
- * @param {number} [page] The page number. Zero indicates no page.
6351
6670
  * @param {*} [options] Override http request option.
6352
6671
  * @throws {RequiredError}
6353
6672
  */
6354
- listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, keyword?: string, hidden?: boolean, top?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6673
+ listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6355
6674
  };
6356
6675
  /**
6357
6676
  * ApiConsoleHaloRunV1alpha1CommentApi - functional programming interface
@@ -6376,6 +6695,9 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
6376
6695
  /**
6377
6696
  * List comments.
6378
6697
  * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
6698
+ * @param {string} [keyword] Comments filtered by keyword.
6699
+ * @param {boolean} [hidden] The comment is hidden from the theme side.
6700
+ * @param {boolean} [top] Comment top display.
6379
6701
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
6380
6702
  * @param {boolean} [approved] Comments approved.
6381
6703
  * @param {boolean} [allowNotification] Send notifications when there are new replies.
@@ -6383,17 +6705,14 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
6383
6705
  * @param {string} [ownerName] Commenter name.
6384
6706
  * @param {string} [subjectKind] Comment subject kind.
6385
6707
  * @param {string} [subjectName] Comment subject name.
6386
- * @param {string} [keyword] Comments filtered by keyword.
6387
- * @param {boolean} [hidden] The comment is hidden from the theme side.
6388
- * @param {boolean} [top] Comment top display.
6389
6708
  * @param {number} [size] Size of one page. Zero indicates no limit.
6709
+ * @param {number} [page] The page number. Zero indicates no page.
6390
6710
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6391
6711
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
6392
- * @param {number} [page] The page number. Zero indicates no page.
6393
6712
  * @param {*} [options] Override http request option.
6394
6713
  * @throws {RequiredError}
6395
6714
  */
6396
- listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, keyword?: string, hidden?: boolean, top?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedCommentList>>;
6715
+ listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedCommentList>>;
6397
6716
  };
6398
6717
  /**
6399
6718
  * ApiConsoleHaloRunV1alpha1CommentApi - factory interface
@@ -6418,6 +6737,9 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
6418
6737
  /**
6419
6738
  * List comments.
6420
6739
  * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
6740
+ * @param {string} [keyword] Comments filtered by keyword.
6741
+ * @param {boolean} [hidden] The comment is hidden from the theme side.
6742
+ * @param {boolean} [top] Comment top display.
6421
6743
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
6422
6744
  * @param {boolean} [approved] Comments approved.
6423
6745
  * @param {boolean} [allowNotification] Send notifications when there are new replies.
@@ -6425,17 +6747,14 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
6425
6747
  * @param {string} [ownerName] Commenter name.
6426
6748
  * @param {string} [subjectKind] Comment subject kind.
6427
6749
  * @param {string} [subjectName] Comment subject name.
6428
- * @param {string} [keyword] Comments filtered by keyword.
6429
- * @param {boolean} [hidden] The comment is hidden from the theme side.
6430
- * @param {boolean} [top] Comment top display.
6431
6750
  * @param {number} [size] Size of one page. Zero indicates no limit.
6751
+ * @param {number} [page] The page number. Zero indicates no page.
6432
6752
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6433
6753
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
6434
- * @param {number} [page] The page number. Zero indicates no page.
6435
6754
  * @param {*} [options] Override http request option.
6436
6755
  * @throws {RequiredError}
6437
6756
  */
6438
- listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, keyword?: string, hidden?: boolean, top?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedCommentList>;
6757
+ listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedCommentList>;
6439
6758
  };
6440
6759
  /**
6441
6760
  * Request parameters for createComment operation in ApiConsoleHaloRunV1alpha1CommentApi.
@@ -6481,6 +6800,24 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
6481
6800
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6482
6801
  */
6483
6802
  readonly sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME';
6803
+ /**
6804
+ * Comments filtered by keyword.
6805
+ * @type {string}
6806
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6807
+ */
6808
+ readonly keyword?: string;
6809
+ /**
6810
+ * The comment is hidden from the theme side.
6811
+ * @type {boolean}
6812
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6813
+ */
6814
+ readonly hidden?: boolean;
6815
+ /**
6816
+ * Comment top display.
6817
+ * @type {boolean}
6818
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6819
+ */
6820
+ readonly top?: boolean;
6484
6821
  /**
6485
6822
  * ascending order If it is true; otherwise, it is in descending order.
6486
6823
  * @type {boolean}
@@ -6524,29 +6861,17 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
6524
6861
  */
6525
6862
  readonly subjectName?: string;
6526
6863
  /**
6527
- * Comments filtered by keyword.
6528
- * @type {string}
6529
- * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6530
- */
6531
- readonly keyword?: string;
6532
- /**
6533
- * The comment is hidden from the theme side.
6534
- * @type {boolean}
6535
- * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6536
- */
6537
- readonly hidden?: boolean;
6538
- /**
6539
- * Comment top display.
6540
- * @type {boolean}
6864
+ * Size of one page. Zero indicates no limit.
6865
+ * @type {number}
6541
6866
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6542
6867
  */
6543
- readonly top?: boolean;
6868
+ readonly size?: number;
6544
6869
  /**
6545
- * Size of one page. Zero indicates no limit.
6870
+ * The page number. Zero indicates no page.
6546
6871
  * @type {number}
6547
6872
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6548
6873
  */
6549
- readonly size?: number;
6874
+ readonly page?: number;
6550
6875
  /**
6551
6876
  * Label selector for filtering.
6552
6877
  * @type {Array<string>}
@@ -6559,12 +6884,6 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
6559
6884
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6560
6885
  */
6561
6886
  readonly fieldSelector?: Array<string>;
6562
- /**
6563
- * The page number. Zero indicates no page.
6564
- * @type {number}
6565
- * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6566
- */
6567
- readonly page?: number;
6568
6887
  }
6569
6888
  /**
6570
6889
  * ApiConsoleHaloRunV1alpha1CommentApi - object-oriented interface
@@ -6830,13 +7149,13 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
6830
7149
  * @param {string} [keyword] Keyword of plugin name or description
6831
7150
  * @param {boolean} [enabled] Whether the plugin is enabled
6832
7151
  * @param {number} [size] Size of one page. Zero indicates no limit.
7152
+ * @param {number} [page] The page number. Zero indicates no page.
6833
7153
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6834
7154
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
6835
- * @param {number} [page] The page number. Zero indicates no page.
6836
7155
  * @param {*} [options] Override http request option.
6837
7156
  * @throws {RequiredError}
6838
7157
  */
6839
- listPlugins: (sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7158
+ listPlugins: (sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6840
7159
  };
6841
7160
  /**
6842
7161
  * ApiConsoleHaloRunV1alpha1PluginApi - functional programming interface
@@ -6856,13 +7175,13 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
6856
7175
  * @param {string} [keyword] Keyword of plugin name or description
6857
7176
  * @param {boolean} [enabled] Whether the plugin is enabled
6858
7177
  * @param {number} [size] Size of one page. Zero indicates no limit.
7178
+ * @param {number} [page] The page number. Zero indicates no page.
6859
7179
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6860
7180
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
6861
- * @param {number} [page] The page number. Zero indicates no page.
6862
7181
  * @param {*} [options] Override http request option.
6863
7182
  * @throws {RequiredError}
6864
7183
  */
6865
- 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>>;
7184
+ listPlugins(sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
6866
7185
  };
6867
7186
  /**
6868
7187
  * ApiConsoleHaloRunV1alpha1PluginApi - factory interface
@@ -6882,13 +7201,13 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
6882
7201
  * @param {string} [keyword] Keyword of plugin name or description
6883
7202
  * @param {boolean} [enabled] Whether the plugin is enabled
6884
7203
  * @param {number} [size] Size of one page. Zero indicates no limit.
7204
+ * @param {number} [page] The page number. Zero indicates no page.
6885
7205
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6886
7206
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
6887
- * @param {number} [page] The page number. Zero indicates no page.
6888
7207
  * @param {*} [options] Override http request option.
6889
7208
  * @throws {RequiredError}
6890
7209
  */
6891
- listPlugins(sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<PluginList>;
7210
+ listPlugins(sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PluginList>;
6892
7211
  };
6893
7212
  /**
6894
7213
  * Request parameters for installPlugin operation in ApiConsoleHaloRunV1alpha1PluginApi.
@@ -6933,6 +7252,12 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
6933
7252
  * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
6934
7253
  */
6935
7254
  readonly size?: number;
7255
+ /**
7256
+ * The page number. Zero indicates no page.
7257
+ * @type {number}
7258
+ * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
7259
+ */
7260
+ readonly page?: number;
6936
7261
  /**
6937
7262
  * Label selector for filtering.
6938
7263
  * @type {Array<string>}
@@ -6945,12 +7270,6 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
6945
7270
  * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
6946
7271
  */
6947
7272
  readonly fieldSelector?: Array<string>;
6948
- /**
6949
- * The page number. Zero indicates no page.
6950
- * @type {number}
6951
- * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
6952
- */
6953
- readonly page?: number;
6954
7273
  }
6955
7274
  /**
6956
7275
  * ApiConsoleHaloRunV1alpha1PluginApi - object-oriented interface
@@ -6992,21 +7311,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
6992
7311
  /**
6993
7312
  * List posts.
6994
7313
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
7314
+ * @param {string} [keyword] Posts filtered by keyword.
7315
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7316
+ * @param {Array<string>} [tag]
6995
7317
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
6996
7318
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
6997
7319
  * @param {Array<string>} [category]
6998
7320
  * @param {Array<string>} [contributor]
6999
- * @param {string} [keyword] Posts filtered by keyword.
7000
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7001
- * @param {Array<string>} [tag]
7002
7321
  * @param {number} [size] Size of one page. Zero indicates no limit.
7322
+ * @param {number} [page] The page number. Zero indicates no page.
7003
7323
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7004
7324
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7005
- * @param {number} [page] The page number. Zero indicates no page.
7006
7325
  * @param {*} [options] Override http request option.
7007
7326
  * @throws {RequiredError}
7008
7327
  */
7009
- 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>;
7328
+ listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7010
7329
  /**
7011
7330
  * Publish a post.
7012
7331
  * @param {string} name
@@ -7038,21 +7357,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
7038
7357
  /**
7039
7358
  * List posts.
7040
7359
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
7360
+ * @param {string} [keyword] Posts filtered by keyword.
7361
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7362
+ * @param {Array<string>} [tag]
7041
7363
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7042
7364
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
7043
7365
  * @param {Array<string>} [category]
7044
7366
  * @param {Array<string>} [contributor]
7045
- * @param {string} [keyword] Posts filtered by keyword.
7046
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7047
- * @param {Array<string>} [tag]
7048
7367
  * @param {number} [size] Size of one page. Zero indicates no limit.
7368
+ * @param {number} [page] The page number. Zero indicates no page.
7049
7369
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7050
7370
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7051
- * @param {number} [page] The page number. Zero indicates no page.
7052
7371
  * @param {*} [options] Override http request option.
7053
7372
  * @throws {RequiredError}
7054
7373
  */
7055
- 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>>;
7374
+ listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
7056
7375
  /**
7057
7376
  * Publish a post.
7058
7377
  * @param {string} name
@@ -7084,21 +7403,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
7084
7403
  /**
7085
7404
  * List posts.
7086
7405
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
7406
+ * @param {string} [keyword] Posts filtered by keyword.
7407
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7408
+ * @param {Array<string>} [tag]
7087
7409
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7088
7410
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
7089
7411
  * @param {Array<string>} [category]
7090
7412
  * @param {Array<string>} [contributor]
7091
- * @param {string} [keyword] Posts filtered by keyword.
7092
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7093
- * @param {Array<string>} [tag]
7094
7413
  * @param {number} [size] Size of one page. Zero indicates no limit.
7414
+ * @param {number} [page] The page number. Zero indicates no page.
7095
7415
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7096
7416
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7097
- * @param {number} [page] The page number. Zero indicates no page.
7098
7417
  * @param {*} [options] Override http request option.
7099
7418
  * @throws {RequiredError}
7100
7419
  */
7101
- 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>;
7420
+ listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedPostList>;
7102
7421
  /**
7103
7422
  * Publish a post.
7104
7423
  * @param {string} name
@@ -7141,53 +7460,59 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
7141
7460
  */
7142
7461
  readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
7143
7462
  /**
7144
- * ascending order If it is true; otherwise, it is in descending order.
7145
- * @type {boolean}
7463
+ * Posts filtered by keyword.
7464
+ * @type {string}
7146
7465
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7147
7466
  */
7148
- readonly sortOrder?: boolean;
7467
+ readonly keyword?: string;
7149
7468
  /**
7150
7469
  *
7151
- * @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'}
7470
+ * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
7152
7471
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7153
7472
  */
7154
- readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED';
7473
+ readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
7155
7474
  /**
7156
7475
  *
7157
7476
  * @type {Array<string>}
7158
7477
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7159
7478
  */
7160
- readonly category?: Array<string>;
7479
+ readonly tag?: Array<string>;
7161
7480
  /**
7162
- *
7163
- * @type {Array<string>}
7481
+ * ascending order If it is true; otherwise, it is in descending order.
7482
+ * @type {boolean}
7164
7483
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7165
7484
  */
7166
- readonly contributor?: Array<string>;
7485
+ readonly sortOrder?: boolean;
7167
7486
  /**
7168
- * Posts filtered by keyword.
7169
- * @type {string}
7487
+ *
7488
+ * @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'}
7170
7489
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7171
7490
  */
7172
- readonly keyword?: string;
7491
+ readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED';
7173
7492
  /**
7174
7493
  *
7175
- * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
7494
+ * @type {Array<string>}
7176
7495
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7177
7496
  */
7178
- readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
7497
+ readonly category?: Array<string>;
7179
7498
  /**
7180
7499
  *
7181
7500
  * @type {Array<string>}
7182
7501
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7183
7502
  */
7184
- readonly tag?: Array<string>;
7503
+ readonly contributor?: Array<string>;
7185
7504
  /**
7186
7505
  * Size of one page. Zero indicates no limit.
7187
7506
  * @type {number}
7188
7507
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7189
7508
  */
7190
7509
  readonly size?: number;
7510
+ /**
7511
+ * The page number. Zero indicates no page.
7512
+ * @type {number}
7513
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7514
+ */
7515
+ readonly page?: number;
7191
7516
  /**
7192
7517
  * Label selector for filtering.
7193
7518
  * @type {Array<string>}
@@ -7200,12 +7525,6 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
7200
7525
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7201
7526
  */
7202
7527
  readonly fieldSelector?: Array<string>;
7203
- /**
7204
- * The page number. Zero indicates no page.
7205
- * @type {number}
7206
- * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7207
- */
7208
- readonly page?: number;
7209
7528
  }
7210
7529
  /**
7211
7530
  * Request parameters for publishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
@@ -7289,13 +7608,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration
7289
7608
  * List replies.
7290
7609
  * @param {string} [commentName] Replies filtered by commentName.
7291
7610
  * @param {number} [size] Size of one page. Zero indicates no limit.
7611
+ * @param {number} [page] The page number. Zero indicates no page.
7292
7612
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7293
7613
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7294
- * @param {number} [page] The page number. Zero indicates no page.
7295
7614
  * @param {*} [options] Override http request option.
7296
7615
  * @throws {RequiredError}
7297
7616
  */
7298
- listReplies: (commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7617
+ listReplies: (commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7299
7618
  };
7300
7619
  /**
7301
7620
  * ApiConsoleHaloRunV1alpha1ReplyApi - functional programming interface
@@ -7306,13 +7625,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFp: (configuration?: Configuratio
7306
7625
  * List replies.
7307
7626
  * @param {string} [commentName] Replies filtered by commentName.
7308
7627
  * @param {number} [size] Size of one page. Zero indicates no limit.
7628
+ * @param {number} [page] The page number. Zero indicates no page.
7309
7629
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7310
7630
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7311
- * @param {number} [page] The page number. Zero indicates no page.
7312
7631
  * @param {*} [options] Override http request option.
7313
7632
  * @throws {RequiredError}
7314
7633
  */
7315
- listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
7634
+ listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
7316
7635
  };
7317
7636
  /**
7318
7637
  * ApiConsoleHaloRunV1alpha1ReplyApi - factory interface
@@ -7323,13 +7642,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFactory: (configuration?: Configu
7323
7642
  * List replies.
7324
7643
  * @param {string} [commentName] Replies filtered by commentName.
7325
7644
  * @param {number} [size] Size of one page. Zero indicates no limit.
7645
+ * @param {number} [page] The page number. Zero indicates no page.
7326
7646
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7327
7647
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7328
- * @param {number} [page] The page number. Zero indicates no page.
7329
7648
  * @param {*} [options] Override http request option.
7330
7649
  * @throws {RequiredError}
7331
7650
  */
7332
- listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedReplyList>;
7651
+ listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedReplyList>;
7333
7652
  };
7334
7653
  /**
7335
7654
  * Request parameters for listReplies operation in ApiConsoleHaloRunV1alpha1ReplyApi.
@@ -7349,6 +7668,12 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
7349
7668
  * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
7350
7669
  */
7351
7670
  readonly size?: number;
7671
+ /**
7672
+ * The page number. Zero indicates no page.
7673
+ * @type {number}
7674
+ * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
7675
+ */
7676
+ readonly page?: number;
7352
7677
  /**
7353
7678
  * Label selector for filtering.
7354
7679
  * @type {Array<string>}
@@ -7361,12 +7686,6 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
7361
7686
  * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
7362
7687
  */
7363
7688
  readonly fieldSelector?: Array<string>;
7364
- /**
7365
- * The page number. Zero indicates no page.
7366
- * @type {number}
7367
- * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
7368
- */
7369
- readonly page?: number;
7370
7689
  }
7371
7690
  /**
7372
7691
  * ApiConsoleHaloRunV1alpha1ReplyApi - object-oriented interface
@@ -7400,19 +7719,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
7400
7719
  /**
7401
7720
  * List single pages.
7402
7721
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
7722
+ * @param {string} [keyword] SinglePages filtered by keyword.
7723
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7403
7724
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7404
7725
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
7405
7726
  * @param {Array<string>} [contributor]
7406
- * @param {string} [keyword] SinglePages filtered by keyword.
7407
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7408
7727
  * @param {number} [size] Size of one page. Zero indicates no limit.
7728
+ * @param {number} [page] The page number. Zero indicates no page.
7409
7729
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7410
7730
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7411
- * @param {number} [page] The page number. Zero indicates no page.
7412
7731
  * @param {*} [options] Override http request option.
7413
7732
  * @throws {RequiredError}
7414
7733
  */
7415
- 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>;
7734
+ listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7416
7735
  /**
7417
7736
  * Publish a single page.
7418
7737
  * @param {string} name
@@ -7444,19 +7763,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
7444
7763
  /**
7445
7764
  * List single pages.
7446
7765
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
7766
+ * @param {string} [keyword] SinglePages filtered by keyword.
7767
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7447
7768
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7448
7769
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
7449
7770
  * @param {Array<string>} [contributor]
7450
- * @param {string} [keyword] SinglePages filtered by keyword.
7451
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7452
7771
  * @param {number} [size] Size of one page. Zero indicates no limit.
7772
+ * @param {number} [page] The page number. Zero indicates no page.
7453
7773
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7454
7774
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7455
- * @param {number} [page] The page number. Zero indicates no page.
7456
7775
  * @param {*} [options] Override http request option.
7457
7776
  * @throws {RequiredError}
7458
7777
  */
7459
- 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>>;
7778
+ listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
7460
7779
  /**
7461
7780
  * Publish a single page.
7462
7781
  * @param {string} name
@@ -7488,19 +7807,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
7488
7807
  /**
7489
7808
  * List single pages.
7490
7809
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
7810
+ * @param {string} [keyword] SinglePages filtered by keyword.
7811
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7491
7812
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7492
7813
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
7493
7814
  * @param {Array<string>} [contributor]
7494
- * @param {string} [keyword] SinglePages filtered by keyword.
7495
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7496
7815
  * @param {number} [size] Size of one page. Zero indicates no limit.
7816
+ * @param {number} [page] The page number. Zero indicates no page.
7497
7817
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7498
7818
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7499
- * @param {number} [page] The page number. Zero indicates no page.
7500
7819
  * @param {*} [options] Override http request option.
7501
7820
  * @throws {RequiredError}
7502
7821
  */
7503
- 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>;
7822
+ listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedSinglePageList>;
7504
7823
  /**
7505
7824
  * Publish a single page.
7506
7825
  * @param {string} name
@@ -7542,6 +7861,18 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
7542
7861
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7543
7862
  */
7544
7863
  readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
7864
+ /**
7865
+ * SinglePages filtered by keyword.
7866
+ * @type {string}
7867
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7868
+ */
7869
+ readonly keyword?: string;
7870
+ /**
7871
+ *
7872
+ * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
7873
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7874
+ */
7875
+ readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
7545
7876
  /**
7546
7877
  * ascending order If it is true; otherwise, it is in descending order.
7547
7878
  * @type {boolean}
@@ -7561,23 +7892,17 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
7561
7892
  */
7562
7893
  readonly contributor?: Array<string>;
7563
7894
  /**
7564
- * SinglePages filtered by keyword.
7565
- * @type {string}
7566
- * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7567
- */
7568
- readonly keyword?: string;
7569
- /**
7570
- *
7571
- * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
7895
+ * Size of one page. Zero indicates no limit.
7896
+ * @type {number}
7572
7897
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7573
7898
  */
7574
- readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
7899
+ readonly size?: number;
7575
7900
  /**
7576
- * Size of one page. Zero indicates no limit.
7901
+ * The page number. Zero indicates no page.
7577
7902
  * @type {number}
7578
7903
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7579
7904
  */
7580
- readonly size?: number;
7905
+ readonly page?: number;
7581
7906
  /**
7582
7907
  * Label selector for filtering.
7583
7908
  * @type {Array<string>}
@@ -7590,12 +7915,6 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
7590
7915
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7591
7916
  */
7592
7917
  readonly fieldSelector?: Array<string>;
7593
- /**
7594
- * The page number. Zero indicates no page.
7595
- * @type {number}
7596
- * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7597
- */
7598
- readonly page?: number;
7599
7918
  }
7600
7919
  /**
7601
7920
  * Request parameters for publishSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
@@ -7670,6 +7989,58 @@ declare class ApiConsoleHaloRunV1alpha1SinglePageApi extends BaseAPI {
7670
7989
  updateDraftSinglePage(requestParameters: ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
7671
7990
  }
7672
7991
 
7992
+ /**
7993
+ * ApiConsoleHaloRunV1alpha1StatsApi - axios parameter creator
7994
+ * @export
7995
+ */
7996
+ declare const ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator: (configuration?: Configuration) => {
7997
+ /**
7998
+ * Get stats.
7999
+ * @param {*} [options] Override http request option.
8000
+ * @throws {RequiredError}
8001
+ */
8002
+ getStats: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
8003
+ };
8004
+ /**
8005
+ * ApiConsoleHaloRunV1alpha1StatsApi - functional programming interface
8006
+ * @export
8007
+ */
8008
+ declare const ApiConsoleHaloRunV1alpha1StatsApiFp: (configuration?: Configuration) => {
8009
+ /**
8010
+ * Get stats.
8011
+ * @param {*} [options] Override http request option.
8012
+ * @throws {RequiredError}
8013
+ */
8014
+ getStats(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Stats>>;
8015
+ };
8016
+ /**
8017
+ * ApiConsoleHaloRunV1alpha1StatsApi - factory interface
8018
+ * @export
8019
+ */
8020
+ declare const ApiConsoleHaloRunV1alpha1StatsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
8021
+ /**
8022
+ * Get stats.
8023
+ * @param {*} [options] Override http request option.
8024
+ * @throws {RequiredError}
8025
+ */
8026
+ getStats(options?: any): AxiosPromise<Stats>;
8027
+ };
8028
+ /**
8029
+ * ApiConsoleHaloRunV1alpha1StatsApi - object-oriented interface
8030
+ * @export
8031
+ * @class ApiConsoleHaloRunV1alpha1StatsApi
8032
+ * @extends {BaseAPI}
8033
+ */
8034
+ declare class ApiConsoleHaloRunV1alpha1StatsApi extends BaseAPI {
8035
+ /**
8036
+ * Get stats.
8037
+ * @param {*} [options] Override http request option.
8038
+ * @throws {RequiredError}
8039
+ * @memberof ApiConsoleHaloRunV1alpha1StatsApi
8040
+ */
8041
+ getStats(options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Stats, any>>;
8042
+ }
8043
+
7673
8044
  /**
7674
8045
  * ApiConsoleHaloRunV1alpha1ThemeApi - axios parameter creator
7675
8046
  * @export
@@ -7682,6 +8053,17 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
7682
8053
  * @throws {RequiredError}
7683
8054
  */
7684
8055
  installTheme: (file: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8056
+ /**
8057
+ * List themes.
8058
+ * @param {boolean} uninstalled
8059
+ * @param {number} [size] Size of one page. Zero indicates no limit.
8060
+ * @param {number} [page] The page number. Zero indicates no page.
8061
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
8062
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
8063
+ * @param {*} [options] Override http request option.
8064
+ * @throws {RequiredError}
8065
+ */
8066
+ listThemes: (uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7685
8067
  /**
7686
8068
  * Reload theme setting.
7687
8069
  * @param {string} name
@@ -7702,6 +8084,17 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
7702
8084
  * @throws {RequiredError}
7703
8085
  */
7704
8086
  installTheme(file: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Theme>>;
8087
+ /**
8088
+ * List themes.
8089
+ * @param {boolean} uninstalled
8090
+ * @param {number} [size] Size of one page. Zero indicates no limit.
8091
+ * @param {number} [page] The page number. Zero indicates no page.
8092
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
8093
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
8094
+ * @param {*} [options] Override http request option.
8095
+ * @throws {RequiredError}
8096
+ */
8097
+ listThemes(uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ThemeList>>;
7705
8098
  /**
7706
8099
  * Reload theme setting.
7707
8100
  * @param {string} name
@@ -7722,6 +8115,17 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
7722
8115
  * @throws {RequiredError}
7723
8116
  */
7724
8117
  installTheme(file: any, options?: any): AxiosPromise<Theme>;
8118
+ /**
8119
+ * List themes.
8120
+ * @param {boolean} uninstalled
8121
+ * @param {number} [size] Size of one page. Zero indicates no limit.
8122
+ * @param {number} [page] The page number. Zero indicates no page.
8123
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
8124
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
8125
+ * @param {*} [options] Override http request option.
8126
+ * @throws {RequiredError}
8127
+ */
8128
+ listThemes(uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ThemeList>;
7725
8129
  /**
7726
8130
  * Reload theme setting.
7727
8131
  * @param {string} name
@@ -7743,6 +8147,43 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest {
7743
8147
  */
7744
8148
  readonly file: any;
7745
8149
  }
8150
+ /**
8151
+ * Request parameters for listThemes operation in ApiConsoleHaloRunV1alpha1ThemeApi.
8152
+ * @export
8153
+ * @interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest
8154
+ */
8155
+ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
8156
+ /**
8157
+ *
8158
+ * @type {boolean}
8159
+ * @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
8160
+ */
8161
+ readonly uninstalled: boolean;
8162
+ /**
8163
+ * Size of one page. Zero indicates no limit.
8164
+ * @type {number}
8165
+ * @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
8166
+ */
8167
+ readonly size?: number;
8168
+ /**
8169
+ * The page number. Zero indicates no page.
8170
+ * @type {number}
8171
+ * @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
8172
+ */
8173
+ readonly page?: number;
8174
+ /**
8175
+ * Label selector for filtering.
8176
+ * @type {Array<string>}
8177
+ * @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
8178
+ */
8179
+ readonly labelSelector?: Array<string>;
8180
+ /**
8181
+ * Field selector for filtering.
8182
+ * @type {Array<string>}
8183
+ * @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
8184
+ */
8185
+ readonly fieldSelector?: Array<string>;
8186
+ }
7746
8187
  /**
7747
8188
  * Request parameters for reloadThemeSetting operation in ApiConsoleHaloRunV1alpha1ThemeApi.
7748
8189
  * @export
@@ -7771,6 +8212,14 @@ declare class ApiConsoleHaloRunV1alpha1ThemeApi extends BaseAPI {
7771
8212
  * @memberof ApiConsoleHaloRunV1alpha1ThemeApi
7772
8213
  */
7773
8214
  installTheme(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
8215
+ /**
8216
+ * List themes.
8217
+ * @param {ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest} requestParameters Request parameters.
8218
+ * @param {*} [options] Override http request option.
8219
+ * @throws {RequiredError}
8220
+ * @memberof ApiConsoleHaloRunV1alpha1ThemeApi
8221
+ */
8222
+ listThemes(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ThemeList, any>>;
7774
8223
  /**
7775
8224
  * Reload theme setting.
7776
8225
  * @param {ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest} requestParameters Request parameters.
@@ -8287,27 +8736,180 @@ declare class ApiHaloRunV1alpha1CommentApi extends BaseAPI {
8287
8736
  }
8288
8737
 
8289
8738
  /**
8290
- * ContentHaloRunV1alpha1CategoryApi - axios parameter creator
8739
+ * ApiHaloRunV1alpha1TrackerApi - axios parameter creator
8291
8740
  * @export
8292
8741
  */
8293
- declare const ContentHaloRunV1alpha1CategoryApiAxiosParamCreator: (configuration?: Configuration) => {
8742
+ declare const ApiHaloRunV1alpha1TrackerApiAxiosParamCreator: (configuration?: Configuration) => {
8294
8743
  /**
8295
- * Create content.halo.run/v1alpha1/Category
8296
- * @param {Category} [category] Fresh category
8744
+ * Count an extension resource visits.
8745
+ * @param {CounterRequest} counterRequest
8297
8746
  * @param {*} [options] Override http request option.
8298
8747
  * @throws {RequiredError}
8299
8748
  */
8300
- createcontentHaloRunV1alpha1Category: (category?: Category, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8749
+ count: (counterRequest: CounterRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8301
8750
  /**
8302
- * Delete content.halo.run/v1alpha1/Category
8303
- * @param {string} name Name of category
8751
+ * Downvote an extension resource.
8752
+ * @param {VoteRequest} voteRequest
8304
8753
  * @param {*} [options] Override http request option.
8305
8754
  * @throws {RequiredError}
8306
8755
  */
8307
- deletecontentHaloRunV1alpha1Category: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8756
+ downvote: (voteRequest: VoteRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8308
8757
  /**
8309
- * Get content.halo.run/v1alpha1/Category
8310
- * @param {string} name Name of category
8758
+ * Upvote an extension resource.
8759
+ * @param {VoteRequest} voteRequest
8760
+ * @param {*} [options] Override http request option.
8761
+ * @throws {RequiredError}
8762
+ */
8763
+ upvote: (voteRequest: VoteRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8764
+ };
8765
+ /**
8766
+ * ApiHaloRunV1alpha1TrackerApi - functional programming interface
8767
+ * @export
8768
+ */
8769
+ declare const ApiHaloRunV1alpha1TrackerApiFp: (configuration?: Configuration) => {
8770
+ /**
8771
+ * Count an extension resource visits.
8772
+ * @param {CounterRequest} counterRequest
8773
+ * @param {*} [options] Override http request option.
8774
+ * @throws {RequiredError}
8775
+ */
8776
+ count(counterRequest: CounterRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<number>>;
8777
+ /**
8778
+ * Downvote an extension resource.
8779
+ * @param {VoteRequest} voteRequest
8780
+ * @param {*} [options] Override http request option.
8781
+ * @throws {RequiredError}
8782
+ */
8783
+ downvote(voteRequest: VoteRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<number>>;
8784
+ /**
8785
+ * Upvote an extension resource.
8786
+ * @param {VoteRequest} voteRequest
8787
+ * @param {*} [options] Override http request option.
8788
+ * @throws {RequiredError}
8789
+ */
8790
+ upvote(voteRequest: VoteRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<number>>;
8791
+ };
8792
+ /**
8793
+ * ApiHaloRunV1alpha1TrackerApi - factory interface
8794
+ * @export
8795
+ */
8796
+ declare const ApiHaloRunV1alpha1TrackerApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
8797
+ /**
8798
+ * Count an extension resource visits.
8799
+ * @param {CounterRequest} counterRequest
8800
+ * @param {*} [options] Override http request option.
8801
+ * @throws {RequiredError}
8802
+ */
8803
+ count(counterRequest: CounterRequest, options?: any): AxiosPromise<number>;
8804
+ /**
8805
+ * Downvote an extension resource.
8806
+ * @param {VoteRequest} voteRequest
8807
+ * @param {*} [options] Override http request option.
8808
+ * @throws {RequiredError}
8809
+ */
8810
+ downvote(voteRequest: VoteRequest, options?: any): AxiosPromise<number>;
8811
+ /**
8812
+ * Upvote an extension resource.
8813
+ * @param {VoteRequest} voteRequest
8814
+ * @param {*} [options] Override http request option.
8815
+ * @throws {RequiredError}
8816
+ */
8817
+ upvote(voteRequest: VoteRequest, options?: any): AxiosPromise<number>;
8818
+ };
8819
+ /**
8820
+ * Request parameters for count operation in ApiHaloRunV1alpha1TrackerApi.
8821
+ * @export
8822
+ * @interface ApiHaloRunV1alpha1TrackerApiCountRequest
8823
+ */
8824
+ interface ApiHaloRunV1alpha1TrackerApiCountRequest {
8825
+ /**
8826
+ *
8827
+ * @type {CounterRequest}
8828
+ * @memberof ApiHaloRunV1alpha1TrackerApiCount
8829
+ */
8830
+ readonly counterRequest: CounterRequest;
8831
+ }
8832
+ /**
8833
+ * Request parameters for downvote operation in ApiHaloRunV1alpha1TrackerApi.
8834
+ * @export
8835
+ * @interface ApiHaloRunV1alpha1TrackerApiDownvoteRequest
8836
+ */
8837
+ interface ApiHaloRunV1alpha1TrackerApiDownvoteRequest {
8838
+ /**
8839
+ *
8840
+ * @type {VoteRequest}
8841
+ * @memberof ApiHaloRunV1alpha1TrackerApiDownvote
8842
+ */
8843
+ readonly voteRequest: VoteRequest;
8844
+ }
8845
+ /**
8846
+ * Request parameters for upvote operation in ApiHaloRunV1alpha1TrackerApi.
8847
+ * @export
8848
+ * @interface ApiHaloRunV1alpha1TrackerApiUpvoteRequest
8849
+ */
8850
+ interface ApiHaloRunV1alpha1TrackerApiUpvoteRequest {
8851
+ /**
8852
+ *
8853
+ * @type {VoteRequest}
8854
+ * @memberof ApiHaloRunV1alpha1TrackerApiUpvote
8855
+ */
8856
+ readonly voteRequest: VoteRequest;
8857
+ }
8858
+ /**
8859
+ * ApiHaloRunV1alpha1TrackerApi - object-oriented interface
8860
+ * @export
8861
+ * @class ApiHaloRunV1alpha1TrackerApi
8862
+ * @extends {BaseAPI}
8863
+ */
8864
+ declare class ApiHaloRunV1alpha1TrackerApi extends BaseAPI {
8865
+ /**
8866
+ * Count an extension resource visits.
8867
+ * @param {ApiHaloRunV1alpha1TrackerApiCountRequest} requestParameters Request parameters.
8868
+ * @param {*} [options] Override http request option.
8869
+ * @throws {RequiredError}
8870
+ * @memberof ApiHaloRunV1alpha1TrackerApi
8871
+ */
8872
+ count(requestParameters: ApiHaloRunV1alpha1TrackerApiCountRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<number, any>>;
8873
+ /**
8874
+ * Downvote an extension resource.
8875
+ * @param {ApiHaloRunV1alpha1TrackerApiDownvoteRequest} requestParameters Request parameters.
8876
+ * @param {*} [options] Override http request option.
8877
+ * @throws {RequiredError}
8878
+ * @memberof ApiHaloRunV1alpha1TrackerApi
8879
+ */
8880
+ downvote(requestParameters: ApiHaloRunV1alpha1TrackerApiDownvoteRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<number, any>>;
8881
+ /**
8882
+ * Upvote an extension resource.
8883
+ * @param {ApiHaloRunV1alpha1TrackerApiUpvoteRequest} requestParameters Request parameters.
8884
+ * @param {*} [options] Override http request option.
8885
+ * @throws {RequiredError}
8886
+ * @memberof ApiHaloRunV1alpha1TrackerApi
8887
+ */
8888
+ upvote(requestParameters: ApiHaloRunV1alpha1TrackerApiUpvoteRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<number, any>>;
8889
+ }
8890
+
8891
+ /**
8892
+ * ContentHaloRunV1alpha1CategoryApi - axios parameter creator
8893
+ * @export
8894
+ */
8895
+ declare const ContentHaloRunV1alpha1CategoryApiAxiosParamCreator: (configuration?: Configuration) => {
8896
+ /**
8897
+ * Create content.halo.run/v1alpha1/Category
8898
+ * @param {Category} [category] Fresh category
8899
+ * @param {*} [options] Override http request option.
8900
+ * @throws {RequiredError}
8901
+ */
8902
+ createcontentHaloRunV1alpha1Category: (category?: Category, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8903
+ /**
8904
+ * Delete content.halo.run/v1alpha1/Category
8905
+ * @param {string} name Name of category
8906
+ * @param {*} [options] Override http request option.
8907
+ * @throws {RequiredError}
8908
+ */
8909
+ deletecontentHaloRunV1alpha1Category: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8910
+ /**
8911
+ * Get content.halo.run/v1alpha1/Category
8912
+ * @param {string} name Name of category
8311
8913
  * @param {*} [options] Override http request option.
8312
8914
  * @throws {RequiredError}
8313
8915
  */
@@ -9915,316 +10517,43 @@ declare class ContentHaloRunV1alpha1SnapshotApi extends BaseAPI {
9915
10517
  */
9916
10518
  listcontentHaloRunV1alpha1Snapshot(requestParameters?: ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SnapshotList, any>>;
9917
10519
  /**
9918
- * Update content.halo.run/v1alpha1/Snapshot
9919
- * @param {ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest} requestParameters Request parameters.
9920
- * @param {*} [options] Override http request option.
9921
- * @throws {RequiredError}
9922
- * @memberof ContentHaloRunV1alpha1SnapshotApi
9923
- */
9924
- updatecontentHaloRunV1alpha1Snapshot(requestParameters: ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Snapshot, any>>;
9925
- }
9926
-
9927
- /**
9928
- * ContentHaloRunV1alpha1TagApi - axios parameter creator
9929
- * @export
9930
- */
9931
- declare const ContentHaloRunV1alpha1TagApiAxiosParamCreator: (configuration?: Configuration) => {
9932
- /**
9933
- * Create content.halo.run/v1alpha1/Tag
9934
- * @param {Tag} [tag] Fresh tag
9935
- * @param {*} [options] Override http request option.
9936
- * @throws {RequiredError}
9937
- */
9938
- createcontentHaloRunV1alpha1Tag: (tag?: Tag, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9939
- /**
9940
- * Delete content.halo.run/v1alpha1/Tag
9941
- * @param {string} name Name of tag
9942
- * @param {*} [options] Override http request option.
9943
- * @throws {RequiredError}
9944
- */
9945
- deletecontentHaloRunV1alpha1Tag: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9946
- /**
9947
- * Get content.halo.run/v1alpha1/Tag
9948
- * @param {string} name Name of tag
9949
- * @param {*} [options] Override http request option.
9950
- * @throws {RequiredError}
9951
- */
9952
- getcontentHaloRunV1alpha1Tag: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9953
- /**
9954
- * List content.halo.run/v1alpha1/Tag
9955
- * @param {number} [page] The page number. Zero indicates no page.
9956
- * @param {number} [size] Size of one page. Zero indicates no limit.
9957
- * @param {Array<string>} [labelSelector] Label selector for filtering.
9958
- * @param {Array<string>} [fieldSelector] Field selector for filtering.
9959
- * @param {*} [options] Override http request option.
9960
- * @throws {RequiredError}
9961
- */
9962
- listcontentHaloRunV1alpha1Tag: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9963
- /**
9964
- * Update content.halo.run/v1alpha1/Tag
9965
- * @param {string} name Name of tag
9966
- * @param {Tag} [tag] Updated tag
9967
- * @param {*} [options] Override http request option.
9968
- * @throws {RequiredError}
9969
- */
9970
- updatecontentHaloRunV1alpha1Tag: (name: string, tag?: Tag, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9971
- };
9972
- /**
9973
- * ContentHaloRunV1alpha1TagApi - functional programming interface
9974
- * @export
9975
- */
9976
- declare const ContentHaloRunV1alpha1TagApiFp: (configuration?: Configuration) => {
9977
- /**
9978
- * Create content.halo.run/v1alpha1/Tag
9979
- * @param {Tag} [tag] Fresh tag
9980
- * @param {*} [options] Override http request option.
9981
- * @throws {RequiredError}
9982
- */
9983
- createcontentHaloRunV1alpha1Tag(tag?: Tag, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tag>>;
9984
- /**
9985
- * Delete content.halo.run/v1alpha1/Tag
9986
- * @param {string} name Name of tag
9987
- * @param {*} [options] Override http request option.
9988
- * @throws {RequiredError}
9989
- */
9990
- deletecontentHaloRunV1alpha1Tag(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
9991
- /**
9992
- * Get content.halo.run/v1alpha1/Tag
9993
- * @param {string} name Name of tag
9994
- * @param {*} [options] Override http request option.
9995
- * @throws {RequiredError}
9996
- */
9997
- getcontentHaloRunV1alpha1Tag(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tag>>;
9998
- /**
9999
- * List content.halo.run/v1alpha1/Tag
10000
- * @param {number} [page] The page number. Zero indicates no page.
10001
- * @param {number} [size] Size of one page. Zero indicates no limit.
10002
- * @param {Array<string>} [labelSelector] Label selector for filtering.
10003
- * @param {Array<string>} [fieldSelector] Field selector for filtering.
10004
- * @param {*} [options] Override http request option.
10005
- * @throws {RequiredError}
10006
- */
10007
- listcontentHaloRunV1alpha1Tag(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TagList>>;
10008
- /**
10009
- * Update content.halo.run/v1alpha1/Tag
10010
- * @param {string} name Name of tag
10011
- * @param {Tag} [tag] Updated tag
10012
- * @param {*} [options] Override http request option.
10013
- * @throws {RequiredError}
10014
- */
10015
- updatecontentHaloRunV1alpha1Tag(name: string, tag?: Tag, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tag>>;
10016
- };
10017
- /**
10018
- * ContentHaloRunV1alpha1TagApi - factory interface
10019
- * @export
10020
- */
10021
- declare const ContentHaloRunV1alpha1TagApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
10022
- /**
10023
- * Create content.halo.run/v1alpha1/Tag
10024
- * @param {Tag} [tag] Fresh tag
10025
- * @param {*} [options] Override http request option.
10026
- * @throws {RequiredError}
10027
- */
10028
- createcontentHaloRunV1alpha1Tag(tag?: Tag, options?: any): AxiosPromise<Tag>;
10029
- /**
10030
- * Delete content.halo.run/v1alpha1/Tag
10031
- * @param {string} name Name of tag
10032
- * @param {*} [options] Override http request option.
10033
- * @throws {RequiredError}
10034
- */
10035
- deletecontentHaloRunV1alpha1Tag(name: string, options?: any): AxiosPromise<void>;
10036
- /**
10037
- * Get content.halo.run/v1alpha1/Tag
10038
- * @param {string} name Name of tag
10039
- * @param {*} [options] Override http request option.
10040
- * @throws {RequiredError}
10041
- */
10042
- getcontentHaloRunV1alpha1Tag(name: string, options?: any): AxiosPromise<Tag>;
10043
- /**
10044
- * List content.halo.run/v1alpha1/Tag
10045
- * @param {number} [page] The page number. Zero indicates no page.
10046
- * @param {number} [size] Size of one page. Zero indicates no limit.
10047
- * @param {Array<string>} [labelSelector] Label selector for filtering.
10048
- * @param {Array<string>} [fieldSelector] Field selector for filtering.
10049
- * @param {*} [options] Override http request option.
10050
- * @throws {RequiredError}
10051
- */
10052
- listcontentHaloRunV1alpha1Tag(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<TagList>;
10053
- /**
10054
- * Update content.halo.run/v1alpha1/Tag
10055
- * @param {string} name Name of tag
10056
- * @param {Tag} [tag] Updated tag
10057
- * @param {*} [options] Override http request option.
10058
- * @throws {RequiredError}
10059
- */
10060
- updatecontentHaloRunV1alpha1Tag(name: string, tag?: Tag, options?: any): AxiosPromise<Tag>;
10061
- };
10062
- /**
10063
- * Request parameters for createcontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
10064
- * @export
10065
- * @interface ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest
10066
- */
10067
- interface ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest {
10068
- /**
10069
- * Fresh tag
10070
- * @type {Tag}
10071
- * @memberof ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1Tag
10072
- */
10073
- readonly tag?: Tag;
10074
- }
10075
- /**
10076
- * Request parameters for deletecontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
10077
- * @export
10078
- * @interface ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest
10079
- */
10080
- interface ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest {
10081
- /**
10082
- * Name of tag
10083
- * @type {string}
10084
- * @memberof ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1Tag
10085
- */
10086
- readonly name: string;
10087
- }
10088
- /**
10089
- * Request parameters for getcontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
10090
- * @export
10091
- * @interface ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest
10092
- */
10093
- interface ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest {
10094
- /**
10095
- * Name of tag
10096
- * @type {string}
10097
- * @memberof ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1Tag
10098
- */
10099
- readonly name: string;
10100
- }
10101
- /**
10102
- * Request parameters for listcontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
10103
- * @export
10104
- * @interface ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest
10105
- */
10106
- interface ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest {
10107
- /**
10108
- * The page number. Zero indicates no page.
10109
- * @type {number}
10110
- * @memberof ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1Tag
10111
- */
10112
- readonly page?: number;
10113
- /**
10114
- * Size of one page. Zero indicates no limit.
10115
- * @type {number}
10116
- * @memberof ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1Tag
10117
- */
10118
- readonly size?: number;
10119
- /**
10120
- * Label selector for filtering.
10121
- * @type {Array<string>}
10122
- * @memberof ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1Tag
10123
- */
10124
- readonly labelSelector?: Array<string>;
10125
- /**
10126
- * Field selector for filtering.
10127
- * @type {Array<string>}
10128
- * @memberof ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1Tag
10129
- */
10130
- readonly fieldSelector?: Array<string>;
10131
- }
10132
- /**
10133
- * Request parameters for updatecontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
10134
- * @export
10135
- * @interface ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest
10136
- */
10137
- interface ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest {
10138
- /**
10139
- * Name of tag
10140
- * @type {string}
10141
- * @memberof ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1Tag
10142
- */
10143
- readonly name: string;
10144
- /**
10145
- * Updated tag
10146
- * @type {Tag}
10147
- * @memberof ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1Tag
10148
- */
10149
- readonly tag?: Tag;
10150
- }
10151
- /**
10152
- * ContentHaloRunV1alpha1TagApi - object-oriented interface
10153
- * @export
10154
- * @class ContentHaloRunV1alpha1TagApi
10155
- * @extends {BaseAPI}
10156
- */
10157
- declare class ContentHaloRunV1alpha1TagApi extends BaseAPI {
10158
- /**
10159
- * Create content.halo.run/v1alpha1/Tag
10160
- * @param {ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest} requestParameters Request parameters.
10161
- * @param {*} [options] Override http request option.
10162
- * @throws {RequiredError}
10163
- * @memberof ContentHaloRunV1alpha1TagApi
10164
- */
10165
- createcontentHaloRunV1alpha1Tag(requestParameters?: ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Tag, any>>;
10166
- /**
10167
- * Delete content.halo.run/v1alpha1/Tag
10168
- * @param {ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest} requestParameters Request parameters.
10169
- * @param {*} [options] Override http request option.
10170
- * @throws {RequiredError}
10171
- * @memberof ContentHaloRunV1alpha1TagApi
10172
- */
10173
- deletecontentHaloRunV1alpha1Tag(requestParameters: ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
10174
- /**
10175
- * Get content.halo.run/v1alpha1/Tag
10176
- * @param {ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest} requestParameters Request parameters.
10177
- * @param {*} [options] Override http request option.
10178
- * @throws {RequiredError}
10179
- * @memberof ContentHaloRunV1alpha1TagApi
10180
- */
10181
- getcontentHaloRunV1alpha1Tag(requestParameters: ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Tag, any>>;
10182
- /**
10183
- * List content.halo.run/v1alpha1/Tag
10184
- * @param {ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest} requestParameters Request parameters.
10185
- * @param {*} [options] Override http request option.
10186
- * @throws {RequiredError}
10187
- * @memberof ContentHaloRunV1alpha1TagApi
10188
- */
10189
- listcontentHaloRunV1alpha1Tag(requestParameters?: ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<TagList, any>>;
10190
- /**
10191
- * Update content.halo.run/v1alpha1/Tag
10192
- * @param {ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest} requestParameters Request parameters.
10520
+ * Update content.halo.run/v1alpha1/Snapshot
10521
+ * @param {ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest} requestParameters Request parameters.
10193
10522
  * @param {*} [options] Override http request option.
10194
10523
  * @throws {RequiredError}
10195
- * @memberof ContentHaloRunV1alpha1TagApi
10524
+ * @memberof ContentHaloRunV1alpha1SnapshotApi
10196
10525
  */
10197
- updatecontentHaloRunV1alpha1Tag(requestParameters: ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Tag, any>>;
10526
+ updatecontentHaloRunV1alpha1Snapshot(requestParameters: ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Snapshot, any>>;
10198
10527
  }
10199
10528
 
10200
10529
  /**
10201
- * CoreHaloRunV1alpha1LinkApi - axios parameter creator
10530
+ * ContentHaloRunV1alpha1TagApi - axios parameter creator
10202
10531
  * @export
10203
10532
  */
10204
- declare const CoreHaloRunV1alpha1LinkApiAxiosParamCreator: (configuration?: Configuration) => {
10533
+ declare const ContentHaloRunV1alpha1TagApiAxiosParamCreator: (configuration?: Configuration) => {
10205
10534
  /**
10206
- * Create core.halo.run/v1alpha1/Link
10207
- * @param {Link} [link] Fresh link
10535
+ * Create content.halo.run/v1alpha1/Tag
10536
+ * @param {Tag} [tag] Fresh tag
10208
10537
  * @param {*} [options] Override http request option.
10209
10538
  * @throws {RequiredError}
10210
10539
  */
10211
- createcoreHaloRunV1alpha1Link: (link?: Link, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10540
+ createcontentHaloRunV1alpha1Tag: (tag?: Tag, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10212
10541
  /**
10213
- * Delete core.halo.run/v1alpha1/Link
10214
- * @param {string} name Name of link
10542
+ * Delete content.halo.run/v1alpha1/Tag
10543
+ * @param {string} name Name of tag
10215
10544
  * @param {*} [options] Override http request option.
10216
10545
  * @throws {RequiredError}
10217
10546
  */
10218
- deletecoreHaloRunV1alpha1Link: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10547
+ deletecontentHaloRunV1alpha1Tag: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10219
10548
  /**
10220
- * Get core.halo.run/v1alpha1/Link
10221
- * @param {string} name Name of link
10549
+ * Get content.halo.run/v1alpha1/Tag
10550
+ * @param {string} name Name of tag
10222
10551
  * @param {*} [options] Override http request option.
10223
10552
  * @throws {RequiredError}
10224
10553
  */
10225
- getcoreHaloRunV1alpha1Link: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10554
+ getcontentHaloRunV1alpha1Tag: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10226
10555
  /**
10227
- * List core.halo.run/v1alpha1/Link
10556
+ * List content.halo.run/v1alpha1/Tag
10228
10557
  * @param {number} [page] The page number. Zero indicates no page.
10229
10558
  * @param {number} [size] Size of one page. Zero indicates no limit.
10230
10559
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -10232,44 +10561,44 @@ declare const CoreHaloRunV1alpha1LinkApiAxiosParamCreator: (configuration?: Conf
10232
10561
  * @param {*} [options] Override http request option.
10233
10562
  * @throws {RequiredError}
10234
10563
  */
10235
- listcoreHaloRunV1alpha1Link: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10564
+ listcontentHaloRunV1alpha1Tag: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10236
10565
  /**
10237
- * Update core.halo.run/v1alpha1/Link
10238
- * @param {string} name Name of link
10239
- * @param {Link} [link] Updated link
10566
+ * Update content.halo.run/v1alpha1/Tag
10567
+ * @param {string} name Name of tag
10568
+ * @param {Tag} [tag] Updated tag
10240
10569
  * @param {*} [options] Override http request option.
10241
10570
  * @throws {RequiredError}
10242
10571
  */
10243
- updatecoreHaloRunV1alpha1Link: (name: string, link?: Link, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10572
+ updatecontentHaloRunV1alpha1Tag: (name: string, tag?: Tag, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10244
10573
  };
10245
10574
  /**
10246
- * CoreHaloRunV1alpha1LinkApi - functional programming interface
10575
+ * ContentHaloRunV1alpha1TagApi - functional programming interface
10247
10576
  * @export
10248
10577
  */
10249
- declare const CoreHaloRunV1alpha1LinkApiFp: (configuration?: Configuration) => {
10578
+ declare const ContentHaloRunV1alpha1TagApiFp: (configuration?: Configuration) => {
10250
10579
  /**
10251
- * Create core.halo.run/v1alpha1/Link
10252
- * @param {Link} [link] Fresh link
10580
+ * Create content.halo.run/v1alpha1/Tag
10581
+ * @param {Tag} [tag] Fresh tag
10253
10582
  * @param {*} [options] Override http request option.
10254
10583
  * @throws {RequiredError}
10255
10584
  */
10256
- createcoreHaloRunV1alpha1Link(link?: Link, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
10585
+ createcontentHaloRunV1alpha1Tag(tag?: Tag, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tag>>;
10257
10586
  /**
10258
- * Delete core.halo.run/v1alpha1/Link
10259
- * @param {string} name Name of link
10587
+ * Delete content.halo.run/v1alpha1/Tag
10588
+ * @param {string} name Name of tag
10260
10589
  * @param {*} [options] Override http request option.
10261
10590
  * @throws {RequiredError}
10262
10591
  */
10263
- deletecoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
10592
+ deletecontentHaloRunV1alpha1Tag(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
10264
10593
  /**
10265
- * Get core.halo.run/v1alpha1/Link
10266
- * @param {string} name Name of link
10594
+ * Get content.halo.run/v1alpha1/Tag
10595
+ * @param {string} name Name of tag
10267
10596
  * @param {*} [options] Override http request option.
10268
10597
  * @throws {RequiredError}
10269
10598
  */
10270
- getcoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
10599
+ getcontentHaloRunV1alpha1Tag(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tag>>;
10271
10600
  /**
10272
- * List core.halo.run/v1alpha1/Link
10601
+ * List content.halo.run/v1alpha1/Tag
10273
10602
  * @param {number} [page] The page number. Zero indicates no page.
10274
10603
  * @param {number} [size] Size of one page. Zero indicates no limit.
10275
10604
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -10277,44 +10606,44 @@ declare const CoreHaloRunV1alpha1LinkApiFp: (configuration?: Configuration) => {
10277
10606
  * @param {*} [options] Override http request option.
10278
10607
  * @throws {RequiredError}
10279
10608
  */
10280
- listcoreHaloRunV1alpha1Link(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
10609
+ listcontentHaloRunV1alpha1Tag(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TagList>>;
10281
10610
  /**
10282
- * Update core.halo.run/v1alpha1/Link
10283
- * @param {string} name Name of link
10284
- * @param {Link} [link] Updated link
10611
+ * Update content.halo.run/v1alpha1/Tag
10612
+ * @param {string} name Name of tag
10613
+ * @param {Tag} [tag] Updated tag
10285
10614
  * @param {*} [options] Override http request option.
10286
10615
  * @throws {RequiredError}
10287
10616
  */
10288
- updatecoreHaloRunV1alpha1Link(name: string, link?: Link, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
10617
+ updatecontentHaloRunV1alpha1Tag(name: string, tag?: Tag, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tag>>;
10289
10618
  };
10290
10619
  /**
10291
- * CoreHaloRunV1alpha1LinkApi - factory interface
10620
+ * ContentHaloRunV1alpha1TagApi - factory interface
10292
10621
  * @export
10293
10622
  */
10294
- declare const CoreHaloRunV1alpha1LinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
10623
+ declare const ContentHaloRunV1alpha1TagApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
10295
10624
  /**
10296
- * Create core.halo.run/v1alpha1/Link
10297
- * @param {Link} [link] Fresh link
10625
+ * Create content.halo.run/v1alpha1/Tag
10626
+ * @param {Tag} [tag] Fresh tag
10298
10627
  * @param {*} [options] Override http request option.
10299
10628
  * @throws {RequiredError}
10300
10629
  */
10301
- createcoreHaloRunV1alpha1Link(link?: Link, options?: any): AxiosPromise<Link>;
10630
+ createcontentHaloRunV1alpha1Tag(tag?: Tag, options?: any): AxiosPromise<Tag>;
10302
10631
  /**
10303
- * Delete core.halo.run/v1alpha1/Link
10304
- * @param {string} name Name of link
10632
+ * Delete content.halo.run/v1alpha1/Tag
10633
+ * @param {string} name Name of tag
10305
10634
  * @param {*} [options] Override http request option.
10306
10635
  * @throws {RequiredError}
10307
10636
  */
10308
- deletecoreHaloRunV1alpha1Link(name: string, options?: any): AxiosPromise<void>;
10637
+ deletecontentHaloRunV1alpha1Tag(name: string, options?: any): AxiosPromise<void>;
10309
10638
  /**
10310
- * Get core.halo.run/v1alpha1/Link
10311
- * @param {string} name Name of link
10639
+ * Get content.halo.run/v1alpha1/Tag
10640
+ * @param {string} name Name of tag
10312
10641
  * @param {*} [options] Override http request option.
10313
10642
  * @throws {RequiredError}
10314
10643
  */
10315
- getcoreHaloRunV1alpha1Link(name: string, options?: any): AxiosPromise<Link>;
10644
+ getcontentHaloRunV1alpha1Tag(name: string, options?: any): AxiosPromise<Tag>;
10316
10645
  /**
10317
- * List core.halo.run/v1alpha1/Link
10646
+ * List content.halo.run/v1alpha1/Tag
10318
10647
  * @param {number} [page] The page number. Zero indicates no page.
10319
10648
  * @param {number} [size] Size of one page. Zero indicates no limit.
10320
10649
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -10322,182 +10651,182 @@ declare const CoreHaloRunV1alpha1LinkApiFactory: (configuration?: Configuration,
10322
10651
  * @param {*} [options] Override http request option.
10323
10652
  * @throws {RequiredError}
10324
10653
  */
10325
- listcoreHaloRunV1alpha1Link(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<string>;
10654
+ listcontentHaloRunV1alpha1Tag(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<TagList>;
10326
10655
  /**
10327
- * Update core.halo.run/v1alpha1/Link
10328
- * @param {string} name Name of link
10329
- * @param {Link} [link] Updated link
10656
+ * Update content.halo.run/v1alpha1/Tag
10657
+ * @param {string} name Name of tag
10658
+ * @param {Tag} [tag] Updated tag
10330
10659
  * @param {*} [options] Override http request option.
10331
10660
  * @throws {RequiredError}
10332
10661
  */
10333
- updatecoreHaloRunV1alpha1Link(name: string, link?: Link, options?: any): AxiosPromise<Link>;
10662
+ updatecontentHaloRunV1alpha1Tag(name: string, tag?: Tag, options?: any): AxiosPromise<Tag>;
10334
10663
  };
10335
10664
  /**
10336
- * Request parameters for createcoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
10665
+ * Request parameters for createcontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
10337
10666
  * @export
10338
- * @interface CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest
10667
+ * @interface ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest
10339
10668
  */
10340
- interface CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest {
10669
+ interface ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest {
10341
10670
  /**
10342
- * Fresh link
10343
- * @type {Link}
10344
- * @memberof CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1Link
10671
+ * Fresh tag
10672
+ * @type {Tag}
10673
+ * @memberof ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1Tag
10345
10674
  */
10346
- readonly link?: Link;
10675
+ readonly tag?: Tag;
10347
10676
  }
10348
10677
  /**
10349
- * Request parameters for deletecoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
10678
+ * Request parameters for deletecontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
10350
10679
  * @export
10351
- * @interface CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest
10680
+ * @interface ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest
10352
10681
  */
10353
- interface CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest {
10682
+ interface ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest {
10354
10683
  /**
10355
- * Name of link
10684
+ * Name of tag
10356
10685
  * @type {string}
10357
- * @memberof CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1Link
10686
+ * @memberof ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1Tag
10358
10687
  */
10359
10688
  readonly name: string;
10360
10689
  }
10361
10690
  /**
10362
- * Request parameters for getcoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
10691
+ * Request parameters for getcontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
10363
10692
  * @export
10364
- * @interface CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest
10693
+ * @interface ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest
10365
10694
  */
10366
- interface CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest {
10695
+ interface ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest {
10367
10696
  /**
10368
- * Name of link
10697
+ * Name of tag
10369
10698
  * @type {string}
10370
- * @memberof CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1Link
10699
+ * @memberof ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1Tag
10371
10700
  */
10372
10701
  readonly name: string;
10373
10702
  }
10374
10703
  /**
10375
- * Request parameters for listcoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
10704
+ * Request parameters for listcontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
10376
10705
  * @export
10377
- * @interface CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest
10706
+ * @interface ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest
10378
10707
  */
10379
- interface CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest {
10708
+ interface ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest {
10380
10709
  /**
10381
10710
  * The page number. Zero indicates no page.
10382
10711
  * @type {number}
10383
- * @memberof CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1Link
10712
+ * @memberof ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1Tag
10384
10713
  */
10385
10714
  readonly page?: number;
10386
10715
  /**
10387
10716
  * Size of one page. Zero indicates no limit.
10388
10717
  * @type {number}
10389
- * @memberof CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1Link
10718
+ * @memberof ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1Tag
10390
10719
  */
10391
10720
  readonly size?: number;
10392
10721
  /**
10393
10722
  * Label selector for filtering.
10394
10723
  * @type {Array<string>}
10395
- * @memberof CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1Link
10724
+ * @memberof ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1Tag
10396
10725
  */
10397
10726
  readonly labelSelector?: Array<string>;
10398
10727
  /**
10399
10728
  * Field selector for filtering.
10400
10729
  * @type {Array<string>}
10401
- * @memberof CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1Link
10730
+ * @memberof ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1Tag
10402
10731
  */
10403
10732
  readonly fieldSelector?: Array<string>;
10404
10733
  }
10405
10734
  /**
10406
- * Request parameters for updatecoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
10735
+ * Request parameters for updatecontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
10407
10736
  * @export
10408
- * @interface CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest
10737
+ * @interface ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest
10409
10738
  */
10410
- interface CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest {
10739
+ interface ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest {
10411
10740
  /**
10412
- * Name of link
10741
+ * Name of tag
10413
10742
  * @type {string}
10414
- * @memberof CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1Link
10743
+ * @memberof ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1Tag
10415
10744
  */
10416
10745
  readonly name: string;
10417
10746
  /**
10418
- * Updated link
10419
- * @type {Link}
10420
- * @memberof CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1Link
10747
+ * Updated tag
10748
+ * @type {Tag}
10749
+ * @memberof ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1Tag
10421
10750
  */
10422
- readonly link?: Link;
10751
+ readonly tag?: Tag;
10423
10752
  }
10424
10753
  /**
10425
- * CoreHaloRunV1alpha1LinkApi - object-oriented interface
10754
+ * ContentHaloRunV1alpha1TagApi - object-oriented interface
10426
10755
  * @export
10427
- * @class CoreHaloRunV1alpha1LinkApi
10756
+ * @class ContentHaloRunV1alpha1TagApi
10428
10757
  * @extends {BaseAPI}
10429
10758
  */
10430
- declare class CoreHaloRunV1alpha1LinkApi extends BaseAPI {
10759
+ declare class ContentHaloRunV1alpha1TagApi extends BaseAPI {
10431
10760
  /**
10432
- * Create core.halo.run/v1alpha1/Link
10433
- * @param {CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest} requestParameters Request parameters.
10761
+ * Create content.halo.run/v1alpha1/Tag
10762
+ * @param {ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest} requestParameters Request parameters.
10434
10763
  * @param {*} [options] Override http request option.
10435
10764
  * @throws {RequiredError}
10436
- * @memberof CoreHaloRunV1alpha1LinkApi
10765
+ * @memberof ContentHaloRunV1alpha1TagApi
10437
10766
  */
10438
- createcoreHaloRunV1alpha1Link(requestParameters?: CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
10767
+ createcontentHaloRunV1alpha1Tag(requestParameters?: ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Tag, any>>;
10439
10768
  /**
10440
- * Delete core.halo.run/v1alpha1/Link
10441
- * @param {CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest} requestParameters Request parameters.
10769
+ * Delete content.halo.run/v1alpha1/Tag
10770
+ * @param {ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest} requestParameters Request parameters.
10442
10771
  * @param {*} [options] Override http request option.
10443
10772
  * @throws {RequiredError}
10444
- * @memberof CoreHaloRunV1alpha1LinkApi
10773
+ * @memberof ContentHaloRunV1alpha1TagApi
10445
10774
  */
10446
- deletecoreHaloRunV1alpha1Link(requestParameters: CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
10775
+ deletecontentHaloRunV1alpha1Tag(requestParameters: ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
10447
10776
  /**
10448
- * Get core.halo.run/v1alpha1/Link
10449
- * @param {CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest} requestParameters Request parameters.
10777
+ * Get content.halo.run/v1alpha1/Tag
10778
+ * @param {ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest} requestParameters Request parameters.
10450
10779
  * @param {*} [options] Override http request option.
10451
10780
  * @throws {RequiredError}
10452
- * @memberof CoreHaloRunV1alpha1LinkApi
10781
+ * @memberof ContentHaloRunV1alpha1TagApi
10453
10782
  */
10454
- getcoreHaloRunV1alpha1Link(requestParameters: CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
10783
+ getcontentHaloRunV1alpha1Tag(requestParameters: ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Tag, any>>;
10455
10784
  /**
10456
- * List core.halo.run/v1alpha1/Link
10457
- * @param {CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest} requestParameters Request parameters.
10785
+ * List content.halo.run/v1alpha1/Tag
10786
+ * @param {ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest} requestParameters Request parameters.
10458
10787
  * @param {*} [options] Override http request option.
10459
10788
  * @throws {RequiredError}
10460
- * @memberof CoreHaloRunV1alpha1LinkApi
10789
+ * @memberof ContentHaloRunV1alpha1TagApi
10461
10790
  */
10462
- listcoreHaloRunV1alpha1Link(requestParameters?: CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
10791
+ listcontentHaloRunV1alpha1Tag(requestParameters?: ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<TagList, any>>;
10463
10792
  /**
10464
- * Update core.halo.run/v1alpha1/Link
10465
- * @param {CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest} requestParameters Request parameters.
10793
+ * Update content.halo.run/v1alpha1/Tag
10794
+ * @param {ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest} requestParameters Request parameters.
10466
10795
  * @param {*} [options] Override http request option.
10467
10796
  * @throws {RequiredError}
10468
- * @memberof CoreHaloRunV1alpha1LinkApi
10797
+ * @memberof ContentHaloRunV1alpha1TagApi
10469
10798
  */
10470
- updatecoreHaloRunV1alpha1Link(requestParameters: CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
10799
+ updatecontentHaloRunV1alpha1Tag(requestParameters: ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Tag, any>>;
10471
10800
  }
10472
10801
 
10473
10802
  /**
10474
- * CoreHaloRunV1alpha1LinkGroupApi - axios parameter creator
10803
+ * MetricsHaloRunV1alpha1CounterApi - axios parameter creator
10475
10804
  * @export
10476
10805
  */
10477
- declare const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator: (configuration?: Configuration) => {
10806
+ declare const MetricsHaloRunV1alpha1CounterApiAxiosParamCreator: (configuration?: Configuration) => {
10478
10807
  /**
10479
- * Create core.halo.run/v1alpha1/LinkGroup
10480
- * @param {LinkGroup} [linkGroup] Fresh linkgroup
10808
+ * Create metrics.halo.run/v1alpha1/Counter
10809
+ * @param {Counter} [counter] Fresh counter
10481
10810
  * @param {*} [options] Override http request option.
10482
10811
  * @throws {RequiredError}
10483
10812
  */
10484
- createcoreHaloRunV1alpha1LinkGroup: (linkGroup?: LinkGroup, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10813
+ createmetricsHaloRunV1alpha1Counter: (counter?: Counter, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10485
10814
  /**
10486
- * Delete core.halo.run/v1alpha1/LinkGroup
10487
- * @param {string} name Name of linkgroup
10815
+ * Delete metrics.halo.run/v1alpha1/Counter
10816
+ * @param {string} name Name of counter
10488
10817
  * @param {*} [options] Override http request option.
10489
10818
  * @throws {RequiredError}
10490
10819
  */
10491
- deletecoreHaloRunV1alpha1LinkGroup: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10820
+ deletemetricsHaloRunV1alpha1Counter: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10492
10821
  /**
10493
- * Get core.halo.run/v1alpha1/LinkGroup
10494
- * @param {string} name Name of linkgroup
10822
+ * Get metrics.halo.run/v1alpha1/Counter
10823
+ * @param {string} name Name of counter
10495
10824
  * @param {*} [options] Override http request option.
10496
10825
  * @throws {RequiredError}
10497
10826
  */
10498
- getcoreHaloRunV1alpha1LinkGroup: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10827
+ getmetricsHaloRunV1alpha1Counter: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10499
10828
  /**
10500
- * List core.halo.run/v1alpha1/LinkGroup
10829
+ * List metrics.halo.run/v1alpha1/Counter
10501
10830
  * @param {number} [page] The page number. Zero indicates no page.
10502
10831
  * @param {number} [size] Size of one page. Zero indicates no limit.
10503
10832
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -10505,44 +10834,44 @@ declare const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator: (configuration?:
10505
10834
  * @param {*} [options] Override http request option.
10506
10835
  * @throws {RequiredError}
10507
10836
  */
10508
- listcoreHaloRunV1alpha1LinkGroup: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10837
+ listmetricsHaloRunV1alpha1Counter: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10509
10838
  /**
10510
- * Update core.halo.run/v1alpha1/LinkGroup
10511
- * @param {string} name Name of linkgroup
10512
- * @param {LinkGroup} [linkGroup] Updated linkgroup
10839
+ * Update metrics.halo.run/v1alpha1/Counter
10840
+ * @param {string} name Name of counter
10841
+ * @param {Counter} [counter] Updated counter
10513
10842
  * @param {*} [options] Override http request option.
10514
10843
  * @throws {RequiredError}
10515
10844
  */
10516
- updatecoreHaloRunV1alpha1LinkGroup: (name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10845
+ updatemetricsHaloRunV1alpha1Counter: (name: string, counter?: Counter, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10517
10846
  };
10518
10847
  /**
10519
- * CoreHaloRunV1alpha1LinkGroupApi - functional programming interface
10848
+ * MetricsHaloRunV1alpha1CounterApi - functional programming interface
10520
10849
  * @export
10521
10850
  */
10522
- declare const CoreHaloRunV1alpha1LinkGroupApiFp: (configuration?: Configuration) => {
10851
+ declare const MetricsHaloRunV1alpha1CounterApiFp: (configuration?: Configuration) => {
10523
10852
  /**
10524
- * Create core.halo.run/v1alpha1/LinkGroup
10525
- * @param {LinkGroup} [linkGroup] Fresh linkgroup
10853
+ * Create metrics.halo.run/v1alpha1/Counter
10854
+ * @param {Counter} [counter] Fresh counter
10526
10855
  * @param {*} [options] Override http request option.
10527
10856
  * @throws {RequiredError}
10528
10857
  */
10529
- createcoreHaloRunV1alpha1LinkGroup(linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
10858
+ createmetricsHaloRunV1alpha1Counter(counter?: Counter, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Counter>>;
10530
10859
  /**
10531
- * Delete core.halo.run/v1alpha1/LinkGroup
10532
- * @param {string} name Name of linkgroup
10860
+ * Delete metrics.halo.run/v1alpha1/Counter
10861
+ * @param {string} name Name of counter
10533
10862
  * @param {*} [options] Override http request option.
10534
10863
  * @throws {RequiredError}
10535
10864
  */
10536
- deletecoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
10865
+ deletemetricsHaloRunV1alpha1Counter(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
10537
10866
  /**
10538
- * Get core.halo.run/v1alpha1/LinkGroup
10539
- * @param {string} name Name of linkgroup
10867
+ * Get metrics.halo.run/v1alpha1/Counter
10868
+ * @param {string} name Name of counter
10540
10869
  * @param {*} [options] Override http request option.
10541
10870
  * @throws {RequiredError}
10542
10871
  */
10543
- getcoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
10872
+ getmetricsHaloRunV1alpha1Counter(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Counter>>;
10544
10873
  /**
10545
- * List core.halo.run/v1alpha1/LinkGroup
10874
+ * List metrics.halo.run/v1alpha1/Counter
10546
10875
  * @param {number} [page] The page number. Zero indicates no page.
10547
10876
  * @param {number} [size] Size of one page. Zero indicates no limit.
10548
10877
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -10550,44 +10879,44 @@ declare const CoreHaloRunV1alpha1LinkGroupApiFp: (configuration?: Configuration)
10550
10879
  * @param {*} [options] Override http request option.
10551
10880
  * @throws {RequiredError}
10552
10881
  */
10553
- listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
10882
+ listmetricsHaloRunV1alpha1Counter(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CounterList>>;
10554
10883
  /**
10555
- * Update core.halo.run/v1alpha1/LinkGroup
10556
- * @param {string} name Name of linkgroup
10557
- * @param {LinkGroup} [linkGroup] Updated linkgroup
10884
+ * Update metrics.halo.run/v1alpha1/Counter
10885
+ * @param {string} name Name of counter
10886
+ * @param {Counter} [counter] Updated counter
10558
10887
  * @param {*} [options] Override http request option.
10559
10888
  * @throws {RequiredError}
10560
10889
  */
10561
- updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
10890
+ updatemetricsHaloRunV1alpha1Counter(name: string, counter?: Counter, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Counter>>;
10562
10891
  };
10563
10892
  /**
10564
- * CoreHaloRunV1alpha1LinkGroupApi - factory interface
10893
+ * MetricsHaloRunV1alpha1CounterApi - factory interface
10565
10894
  * @export
10566
10895
  */
10567
- declare const CoreHaloRunV1alpha1LinkGroupApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
10896
+ declare const MetricsHaloRunV1alpha1CounterApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
10568
10897
  /**
10569
- * Create core.halo.run/v1alpha1/LinkGroup
10570
- * @param {LinkGroup} [linkGroup] Fresh linkgroup
10898
+ * Create metrics.halo.run/v1alpha1/Counter
10899
+ * @param {Counter} [counter] Fresh counter
10571
10900
  * @param {*} [options] Override http request option.
10572
10901
  * @throws {RequiredError}
10573
10902
  */
10574
- createcoreHaloRunV1alpha1LinkGroup(linkGroup?: LinkGroup, options?: any): AxiosPromise<LinkGroup>;
10903
+ createmetricsHaloRunV1alpha1Counter(counter?: Counter, options?: any): AxiosPromise<Counter>;
10575
10904
  /**
10576
- * Delete core.halo.run/v1alpha1/LinkGroup
10577
- * @param {string} name Name of linkgroup
10905
+ * Delete metrics.halo.run/v1alpha1/Counter
10906
+ * @param {string} name Name of counter
10578
10907
  * @param {*} [options] Override http request option.
10579
10908
  * @throws {RequiredError}
10580
10909
  */
10581
- deletecoreHaloRunV1alpha1LinkGroup(name: string, options?: any): AxiosPromise<void>;
10910
+ deletemetricsHaloRunV1alpha1Counter(name: string, options?: any): AxiosPromise<void>;
10582
10911
  /**
10583
- * Get core.halo.run/v1alpha1/LinkGroup
10584
- * @param {string} name Name of linkgroup
10912
+ * Get metrics.halo.run/v1alpha1/Counter
10913
+ * @param {string} name Name of counter
10585
10914
  * @param {*} [options] Override http request option.
10586
10915
  * @throws {RequiredError}
10587
10916
  */
10588
- getcoreHaloRunV1alpha1LinkGroup(name: string, options?: any): AxiosPromise<LinkGroup>;
10917
+ getmetricsHaloRunV1alpha1Counter(name: string, options?: any): AxiosPromise<Counter>;
10589
10918
  /**
10590
- * List core.halo.run/v1alpha1/LinkGroup
10919
+ * List metrics.halo.run/v1alpha1/Counter
10591
10920
  * @param {number} [page] The page number. Zero indicates no page.
10592
10921
  * @param {number} [size] Size of one page. Zero indicates no limit.
10593
10922
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -10595,152 +10924,152 @@ declare const CoreHaloRunV1alpha1LinkGroupApiFactory: (configuration?: Configura
10595
10924
  * @param {*} [options] Override http request option.
10596
10925
  * @throws {RequiredError}
10597
10926
  */
10598
- listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<string>;
10927
+ listmetricsHaloRunV1alpha1Counter(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<CounterList>;
10599
10928
  /**
10600
- * Update core.halo.run/v1alpha1/LinkGroup
10601
- * @param {string} name Name of linkgroup
10602
- * @param {LinkGroup} [linkGroup] Updated linkgroup
10929
+ * Update metrics.halo.run/v1alpha1/Counter
10930
+ * @param {string} name Name of counter
10931
+ * @param {Counter} [counter] Updated counter
10603
10932
  * @param {*} [options] Override http request option.
10604
10933
  * @throws {RequiredError}
10605
10934
  */
10606
- updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: any): AxiosPromise<LinkGroup>;
10935
+ updatemetricsHaloRunV1alpha1Counter(name: string, counter?: Counter, options?: any): AxiosPromise<Counter>;
10607
10936
  };
10608
10937
  /**
10609
- * Request parameters for createcoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
10938
+ * Request parameters for createmetricsHaloRunV1alpha1Counter operation in MetricsHaloRunV1alpha1CounterApi.
10610
10939
  * @export
10611
- * @interface CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest
10940
+ * @interface MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest
10612
10941
  */
10613
- interface CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest {
10942
+ interface MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest {
10614
10943
  /**
10615
- * Fresh linkgroup
10616
- * @type {LinkGroup}
10617
- * @memberof CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroup
10944
+ * Fresh counter
10945
+ * @type {Counter}
10946
+ * @memberof MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1Counter
10618
10947
  */
10619
- readonly linkGroup?: LinkGroup;
10948
+ readonly counter?: Counter;
10620
10949
  }
10621
10950
  /**
10622
- * Request parameters for deletecoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
10951
+ * Request parameters for deletemetricsHaloRunV1alpha1Counter operation in MetricsHaloRunV1alpha1CounterApi.
10623
10952
  * @export
10624
- * @interface CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest
10953
+ * @interface MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest
10625
10954
  */
10626
- interface CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest {
10955
+ interface MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest {
10627
10956
  /**
10628
- * Name of linkgroup
10957
+ * Name of counter
10629
10958
  * @type {string}
10630
- * @memberof CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroup
10959
+ * @memberof MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1Counter
10631
10960
  */
10632
10961
  readonly name: string;
10633
10962
  }
10634
10963
  /**
10635
- * Request parameters for getcoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
10964
+ * Request parameters for getmetricsHaloRunV1alpha1Counter operation in MetricsHaloRunV1alpha1CounterApi.
10636
10965
  * @export
10637
- * @interface CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest
10966
+ * @interface MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest
10638
10967
  */
10639
- interface CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest {
10968
+ interface MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest {
10640
10969
  /**
10641
- * Name of linkgroup
10970
+ * Name of counter
10642
10971
  * @type {string}
10643
- * @memberof CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroup
10972
+ * @memberof MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1Counter
10644
10973
  */
10645
10974
  readonly name: string;
10646
10975
  }
10647
10976
  /**
10648
- * Request parameters for listcoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
10977
+ * Request parameters for listmetricsHaloRunV1alpha1Counter operation in MetricsHaloRunV1alpha1CounterApi.
10649
10978
  * @export
10650
- * @interface CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest
10979
+ * @interface MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest
10651
10980
  */
10652
- interface CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest {
10981
+ interface MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest {
10653
10982
  /**
10654
10983
  * The page number. Zero indicates no page.
10655
10984
  * @type {number}
10656
- * @memberof CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroup
10985
+ * @memberof MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1Counter
10657
10986
  */
10658
10987
  readonly page?: number;
10659
10988
  /**
10660
10989
  * Size of one page. Zero indicates no limit.
10661
10990
  * @type {number}
10662
- * @memberof CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroup
10991
+ * @memberof MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1Counter
10663
10992
  */
10664
10993
  readonly size?: number;
10665
10994
  /**
10666
10995
  * Label selector for filtering.
10667
10996
  * @type {Array<string>}
10668
- * @memberof CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroup
10997
+ * @memberof MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1Counter
10669
10998
  */
10670
10999
  readonly labelSelector?: Array<string>;
10671
11000
  /**
10672
11001
  * Field selector for filtering.
10673
11002
  * @type {Array<string>}
10674
- * @memberof CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroup
11003
+ * @memberof MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1Counter
10675
11004
  */
10676
11005
  readonly fieldSelector?: Array<string>;
10677
11006
  }
10678
11007
  /**
10679
- * Request parameters for updatecoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
11008
+ * Request parameters for updatemetricsHaloRunV1alpha1Counter operation in MetricsHaloRunV1alpha1CounterApi.
10680
11009
  * @export
10681
- * @interface CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest
11010
+ * @interface MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest
10682
11011
  */
10683
- interface CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest {
11012
+ interface MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest {
10684
11013
  /**
10685
- * Name of linkgroup
11014
+ * Name of counter
10686
11015
  * @type {string}
10687
- * @memberof CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroup
11016
+ * @memberof MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1Counter
10688
11017
  */
10689
11018
  readonly name: string;
10690
11019
  /**
10691
- * Updated linkgroup
10692
- * @type {LinkGroup}
10693
- * @memberof CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroup
11020
+ * Updated counter
11021
+ * @type {Counter}
11022
+ * @memberof MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1Counter
10694
11023
  */
10695
- readonly linkGroup?: LinkGroup;
11024
+ readonly counter?: Counter;
10696
11025
  }
10697
11026
  /**
10698
- * CoreHaloRunV1alpha1LinkGroupApi - object-oriented interface
11027
+ * MetricsHaloRunV1alpha1CounterApi - object-oriented interface
10699
11028
  * @export
10700
- * @class CoreHaloRunV1alpha1LinkGroupApi
11029
+ * @class MetricsHaloRunV1alpha1CounterApi
10701
11030
  * @extends {BaseAPI}
10702
11031
  */
10703
- declare class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
11032
+ declare class MetricsHaloRunV1alpha1CounterApi extends BaseAPI {
10704
11033
  /**
10705
- * Create core.halo.run/v1alpha1/LinkGroup
10706
- * @param {CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest} requestParameters Request parameters.
11034
+ * Create metrics.halo.run/v1alpha1/Counter
11035
+ * @param {MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest} requestParameters Request parameters.
10707
11036
  * @param {*} [options] Override http request option.
10708
11037
  * @throws {RequiredError}
10709
- * @memberof CoreHaloRunV1alpha1LinkGroupApi
11038
+ * @memberof MetricsHaloRunV1alpha1CounterApi
10710
11039
  */
10711
- createcoreHaloRunV1alpha1LinkGroup(requestParameters?: CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
11040
+ createmetricsHaloRunV1alpha1Counter(requestParameters?: MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Counter, any>>;
10712
11041
  /**
10713
- * Delete core.halo.run/v1alpha1/LinkGroup
10714
- * @param {CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest} requestParameters Request parameters.
11042
+ * Delete metrics.halo.run/v1alpha1/Counter
11043
+ * @param {MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest} requestParameters Request parameters.
10715
11044
  * @param {*} [options] Override http request option.
10716
11045
  * @throws {RequiredError}
10717
- * @memberof CoreHaloRunV1alpha1LinkGroupApi
11046
+ * @memberof MetricsHaloRunV1alpha1CounterApi
10718
11047
  */
10719
- deletecoreHaloRunV1alpha1LinkGroup(requestParameters: CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
11048
+ deletemetricsHaloRunV1alpha1Counter(requestParameters: MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
10720
11049
  /**
10721
- * Get core.halo.run/v1alpha1/LinkGroup
10722
- * @param {CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest} requestParameters Request parameters.
11050
+ * Get metrics.halo.run/v1alpha1/Counter
11051
+ * @param {MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest} requestParameters Request parameters.
10723
11052
  * @param {*} [options] Override http request option.
10724
11053
  * @throws {RequiredError}
10725
- * @memberof CoreHaloRunV1alpha1LinkGroupApi
11054
+ * @memberof MetricsHaloRunV1alpha1CounterApi
10726
11055
  */
10727
- getcoreHaloRunV1alpha1LinkGroup(requestParameters: CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
11056
+ getmetricsHaloRunV1alpha1Counter(requestParameters: MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Counter, any>>;
10728
11057
  /**
10729
- * List core.halo.run/v1alpha1/LinkGroup
10730
- * @param {CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest} requestParameters Request parameters.
11058
+ * List metrics.halo.run/v1alpha1/Counter
11059
+ * @param {MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest} requestParameters Request parameters.
10731
11060
  * @param {*} [options] Override http request option.
10732
11061
  * @throws {RequiredError}
10733
- * @memberof CoreHaloRunV1alpha1LinkGroupApi
11062
+ * @memberof MetricsHaloRunV1alpha1CounterApi
10734
11063
  */
10735
- listcoreHaloRunV1alpha1LinkGroup(requestParameters?: CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
11064
+ listmetricsHaloRunV1alpha1Counter(requestParameters?: MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<CounterList, any>>;
10736
11065
  /**
10737
- * Update core.halo.run/v1alpha1/LinkGroup
10738
- * @param {CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest} requestParameters Request parameters.
11066
+ * Update metrics.halo.run/v1alpha1/Counter
11067
+ * @param {MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest} requestParameters Request parameters.
10739
11068
  * @param {*} [options] Override http request option.
10740
11069
  * @throws {RequiredError}
10741
- * @memberof CoreHaloRunV1alpha1LinkGroupApi
11070
+ * @memberof MetricsHaloRunV1alpha1CounterApi
10742
11071
  */
10743
- updatecoreHaloRunV1alpha1LinkGroup(requestParameters: CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
11072
+ updatemetricsHaloRunV1alpha1Counter(requestParameters: MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Counter, any>>;
10744
11073
  }
10745
11074
 
10746
11075
  /**
@@ -11325,20 +11654,6 @@ declare const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configurati
11325
11654
  * @throws {RequiredError}
11326
11655
  */
11327
11656
  liststorageHaloRunV1alpha1Attachment: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11328
- /**
11329
- *
11330
- * @param {string} [policy] Name of policy
11331
- * @param {string} [displayName] Display name of attachment
11332
- * @param {string} [group] Name of group
11333
- * @param {string} [uploadedBy] Name of user who uploaded the attachment
11334
- * @param {number} [size] Size of one page. Zero indicates no limit.
11335
- * @param {Array<string>} [labelSelector] Label selector for filtering.
11336
- * @param {Array<string>} [fieldSelector] Field selector for filtering.
11337
- * @param {number} [page] The page number. Zero indicates no page.
11338
- * @param {*} [options] Override http request option.
11339
- * @throws {RequiredError}
11340
- */
11341
- searchAttachments: (policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11342
11657
  /**
11343
11658
  * Update storage.halo.run/v1alpha1/Attachment
11344
11659
  * @param {string} name Name of attachment
@@ -11347,15 +11662,6 @@ declare const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configurati
11347
11662
  * @throws {RequiredError}
11348
11663
  */
11349
11664
  updatestorageHaloRunV1alpha1Attachment: (name: string, attachment?: Attachment, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11350
- /**
11351
- *
11352
- * @param {any} file
11353
- * @param {string} policyName Storage policy name
11354
- * @param {string} [groupName] The name of the group to which the attachment belongs
11355
- * @param {*} [options] Override http request option.
11356
- * @throws {RequiredError}
11357
- */
11358
- uploadAttachment: (file: any, policyName: string, groupName?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11359
11665
  };
11360
11666
  /**
11361
11667
  * StorageHaloRunV1alpha1AttachmentApi - functional programming interface
@@ -11393,20 +11699,6 @@ declare const StorageHaloRunV1alpha1AttachmentApiFp: (configuration?: Configurat
11393
11699
  * @throws {RequiredError}
11394
11700
  */
11395
11701
  liststorageHaloRunV1alpha1Attachment(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
11396
- /**
11397
- *
11398
- * @param {string} [policy] Name of policy
11399
- * @param {string} [displayName] Display name of attachment
11400
- * @param {string} [group] Name of group
11401
- * @param {string} [uploadedBy] Name of user who uploaded the attachment
11402
- * @param {number} [size] Size of one page. Zero indicates no limit.
11403
- * @param {Array<string>} [labelSelector] Label selector for filtering.
11404
- * @param {Array<string>} [fieldSelector] Field selector for filtering.
11405
- * @param {number} [page] The page number. Zero indicates no page.
11406
- * @param {*} [options] Override http request option.
11407
- * @throws {RequiredError}
11408
- */
11409
- searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
11410
11702
  /**
11411
11703
  * Update storage.halo.run/v1alpha1/Attachment
11412
11704
  * @param {string} name Name of attachment
@@ -11415,15 +11707,6 @@ declare const StorageHaloRunV1alpha1AttachmentApiFp: (configuration?: Configurat
11415
11707
  * @throws {RequiredError}
11416
11708
  */
11417
11709
  updatestorageHaloRunV1alpha1Attachment(name: string, attachment?: Attachment, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Attachment>>;
11418
- /**
11419
- *
11420
- * @param {any} file
11421
- * @param {string} policyName Storage policy name
11422
- * @param {string} [groupName] The name of the group to which the attachment belongs
11423
- * @param {*} [options] Override http request option.
11424
- * @throws {RequiredError}
11425
- */
11426
- uploadAttachment(file: any, policyName: string, groupName?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Attachment>>;
11427
11710
  };
11428
11711
  /**
11429
11712
  * StorageHaloRunV1alpha1AttachmentApi - factory interface
@@ -11461,20 +11744,6 @@ declare const StorageHaloRunV1alpha1AttachmentApiFactory: (configuration?: Confi
11461
11744
  * @throws {RequiredError}
11462
11745
  */
11463
11746
  liststorageHaloRunV1alpha1Attachment(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<AttachmentList>;
11464
- /**
11465
- *
11466
- * @param {string} [policy] Name of policy
11467
- * @param {string} [displayName] Display name of attachment
11468
- * @param {string} [group] Name of group
11469
- * @param {string} [uploadedBy] Name of user who uploaded the attachment
11470
- * @param {number} [size] Size of one page. Zero indicates no limit.
11471
- * @param {Array<string>} [labelSelector] Label selector for filtering.
11472
- * @param {Array<string>} [fieldSelector] Field selector for filtering.
11473
- * @param {number} [page] The page number. Zero indicates no page.
11474
- * @param {*} [options] Override http request option.
11475
- * @throws {RequiredError}
11476
- */
11477
- searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<AttachmentList>;
11478
11747
  /**
11479
11748
  * Update storage.halo.run/v1alpha1/Attachment
11480
11749
  * @param {string} name Name of attachment
@@ -11483,15 +11752,6 @@ declare const StorageHaloRunV1alpha1AttachmentApiFactory: (configuration?: Confi
11483
11752
  * @throws {RequiredError}
11484
11753
  */
11485
11754
  updatestorageHaloRunV1alpha1Attachment(name: string, attachment?: Attachment, options?: any): AxiosPromise<Attachment>;
11486
- /**
11487
- *
11488
- * @param {any} file
11489
- * @param {string} policyName Storage policy name
11490
- * @param {string} [groupName] The name of the group to which the attachment belongs
11491
- * @param {*} [options] Override http request option.
11492
- * @throws {RequiredError}
11493
- */
11494
- uploadAttachment(file: any, policyName: string, groupName?: string, options?: any): AxiosPromise<Attachment>;
11495
11755
  };
11496
11756
  /**
11497
11757
  * Request parameters for createstorageHaloRunV1alpha1Attachment operation in StorageHaloRunV1alpha1AttachmentApi.
@@ -11563,61 +11823,6 @@ interface StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1Attachmen
11563
11823
  */
11564
11824
  readonly fieldSelector?: Array<string>;
11565
11825
  }
11566
- /**
11567
- * Request parameters for searchAttachments operation in StorageHaloRunV1alpha1AttachmentApi.
11568
- * @export
11569
- * @interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest
11570
- */
11571
- interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
11572
- /**
11573
- * Name of policy
11574
- * @type {string}
11575
- * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
11576
- */
11577
- readonly policy?: string;
11578
- /**
11579
- * Display name of attachment
11580
- * @type {string}
11581
- * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
11582
- */
11583
- readonly displayName?: string;
11584
- /**
11585
- * Name of group
11586
- * @type {string}
11587
- * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
11588
- */
11589
- readonly group?: string;
11590
- /**
11591
- * Name of user who uploaded the attachment
11592
- * @type {string}
11593
- * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
11594
- */
11595
- readonly uploadedBy?: string;
11596
- /**
11597
- * Size of one page. Zero indicates no limit.
11598
- * @type {number}
11599
- * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
11600
- */
11601
- readonly size?: number;
11602
- /**
11603
- * Label selector for filtering.
11604
- * @type {Array<string>}
11605
- * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
11606
- */
11607
- readonly labelSelector?: Array<string>;
11608
- /**
11609
- * Field selector for filtering.
11610
- * @type {Array<string>}
11611
- * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
11612
- */
11613
- readonly fieldSelector?: Array<string>;
11614
- /**
11615
- * The page number. Zero indicates no page.
11616
- * @type {number}
11617
- * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
11618
- */
11619
- readonly page?: number;
11620
- }
11621
11826
  /**
11622
11827
  * Request parameters for updatestorageHaloRunV1alpha1Attachment operation in StorageHaloRunV1alpha1AttachmentApi.
11623
11828
  * @export
@@ -11637,31 +11842,6 @@ interface StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1Attachm
11637
11842
  */
11638
11843
  readonly attachment?: Attachment;
11639
11844
  }
11640
- /**
11641
- * Request parameters for uploadAttachment operation in StorageHaloRunV1alpha1AttachmentApi.
11642
- * @export
11643
- * @interface StorageHaloRunV1alpha1AttachmentApiUploadAttachmentRequest
11644
- */
11645
- interface StorageHaloRunV1alpha1AttachmentApiUploadAttachmentRequest {
11646
- /**
11647
- *
11648
- * @type {any}
11649
- * @memberof StorageHaloRunV1alpha1AttachmentApiUploadAttachment
11650
- */
11651
- readonly file: any;
11652
- /**
11653
- * Storage policy name
11654
- * @type {string}
11655
- * @memberof StorageHaloRunV1alpha1AttachmentApiUploadAttachment
11656
- */
11657
- readonly policyName: string;
11658
- /**
11659
- * The name of the group to which the attachment belongs
11660
- * @type {string}
11661
- * @memberof StorageHaloRunV1alpha1AttachmentApiUploadAttachment
11662
- */
11663
- readonly groupName?: string;
11664
- }
11665
11845
  /**
11666
11846
  * StorageHaloRunV1alpha1AttachmentApi - object-oriented interface
11667
11847
  * @export
@@ -11701,14 +11881,6 @@ declare class StorageHaloRunV1alpha1AttachmentApi extends BaseAPI {
11701
11881
  * @memberof StorageHaloRunV1alpha1AttachmentApi
11702
11882
  */
11703
11883
  liststorageHaloRunV1alpha1Attachment(requestParameters?: StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<AttachmentList, any>>;
11704
- /**
11705
- *
11706
- * @param {StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest} requestParameters Request parameters.
11707
- * @param {*} [options] Override http request option.
11708
- * @throws {RequiredError}
11709
- * @memberof StorageHaloRunV1alpha1AttachmentApi
11710
- */
11711
- searchAttachments(requestParameters?: StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<AttachmentList, any>>;
11712
11884
  /**
11713
11885
  * Update storage.halo.run/v1alpha1/Attachment
11714
11886
  * @param {StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest} requestParameters Request parameters.
@@ -11717,14 +11889,6 @@ declare class StorageHaloRunV1alpha1AttachmentApi extends BaseAPI {
11717
11889
  * @memberof StorageHaloRunV1alpha1AttachmentApi
11718
11890
  */
11719
11891
  updatestorageHaloRunV1alpha1Attachment(requestParameters: StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Attachment, any>>;
11720
- /**
11721
- *
11722
- * @param {StorageHaloRunV1alpha1AttachmentApiUploadAttachmentRequest} requestParameters Request parameters.
11723
- * @param {*} [options] Override http request option.
11724
- * @throws {RequiredError}
11725
- * @memberof StorageHaloRunV1alpha1AttachmentApi
11726
- */
11727
- uploadAttachment(requestParameters: StorageHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Attachment, any>>;
11728
11892
  }
11729
11893
 
11730
11894
  /**
@@ -15003,4 +15167,4 @@ declare class V1alpha1UserApi extends BaseAPI {
15003
15167
  updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
15004
15168
  }
15005
15169
 
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 };
15170
+ export { ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, 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, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiCountRequest, ApiHaloRunV1alpha1TrackerApiDownvoteRequest, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ApiHaloRunV1alpha1TrackerApiUpvoteRequest, 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, Counter, CounterList, CounterRequest, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, 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, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, 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, VoteRequest };