@halo-dev/api-client 0.0.27 → 0.0.29

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
@@ -1132,6 +1132,167 @@ interface CommentRequest {
1132
1132
  allowNotification?: boolean;
1133
1133
  }
1134
1134
 
1135
+ /**
1136
+ * Halo Next API
1137
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
1138
+ *
1139
+ * The version of the OpenAPI document: 2.0.0
1140
+ *
1141
+ *
1142
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1143
+ * https://openapi-generator.tech
1144
+ * Do not edit the class manually.
1145
+ */
1146
+ /**
1147
+ *
1148
+ * @export
1149
+ * @interface OwnerInfo
1150
+ */
1151
+ interface OwnerInfo {
1152
+ /**
1153
+ *
1154
+ * @type {string}
1155
+ * @memberof OwnerInfo
1156
+ */
1157
+ kind?: string;
1158
+ /**
1159
+ *
1160
+ * @type {string}
1161
+ * @memberof OwnerInfo
1162
+ */
1163
+ name?: string;
1164
+ /**
1165
+ *
1166
+ * @type {string}
1167
+ * @memberof OwnerInfo
1168
+ */
1169
+ displayName?: string;
1170
+ /**
1171
+ *
1172
+ * @type {string}
1173
+ * @memberof OwnerInfo
1174
+ */
1175
+ avatar?: string;
1176
+ /**
1177
+ *
1178
+ * @type {string}
1179
+ * @memberof OwnerInfo
1180
+ */
1181
+ email?: string;
1182
+ }
1183
+
1184
+ /**
1185
+ * Halo Next API
1186
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
1187
+ *
1188
+ * The version of the OpenAPI document: 2.0.0
1189
+ *
1190
+ *
1191
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1192
+ * https://openapi-generator.tech
1193
+ * Do not edit the class manually.
1194
+ */
1195
+
1196
+ /**
1197
+ * A chunk of items.
1198
+ * @export
1199
+ * @interface CommentVo
1200
+ */
1201
+ interface CommentVo {
1202
+ /**
1203
+ *
1204
+ * @type {Metadata}
1205
+ * @memberof CommentVo
1206
+ */
1207
+ metadata: Metadata;
1208
+ /**
1209
+ *
1210
+ * @type {CommentSpec}
1211
+ * @memberof CommentVo
1212
+ */
1213
+ spec: CommentSpec;
1214
+ /**
1215
+ *
1216
+ * @type {CommentStatus}
1217
+ * @memberof CommentVo
1218
+ */
1219
+ status?: CommentStatus;
1220
+ /**
1221
+ *
1222
+ * @type {OwnerInfo}
1223
+ * @memberof CommentVo
1224
+ */
1225
+ owner: OwnerInfo;
1226
+ }
1227
+
1228
+ /**
1229
+ * Halo Next API
1230
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
1231
+ *
1232
+ * The version of the OpenAPI document: 2.0.0
1233
+ *
1234
+ *
1235
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1236
+ * https://openapi-generator.tech
1237
+ * Do not edit the class manually.
1238
+ */
1239
+
1240
+ /**
1241
+ *
1242
+ * @export
1243
+ * @interface CommentVoList
1244
+ */
1245
+ interface CommentVoList {
1246
+ /**
1247
+ * Page number, starts from 1. If not set or equal to 0, it means no pagination.
1248
+ * @type {number}
1249
+ * @memberof CommentVoList
1250
+ */
1251
+ page: number;
1252
+ /**
1253
+ * Size of each page. If not set or equal to 0, it means no pagination.
1254
+ * @type {number}
1255
+ * @memberof CommentVoList
1256
+ */
1257
+ size: number;
1258
+ /**
1259
+ * Total elements.
1260
+ * @type {number}
1261
+ * @memberof CommentVoList
1262
+ */
1263
+ total: number;
1264
+ /**
1265
+ * A chunk of items.
1266
+ * @type {Array<CommentVo>}
1267
+ * @memberof CommentVoList
1268
+ */
1269
+ items: Array<CommentVo>;
1270
+ /**
1271
+ * Indicates whether current page is the first page.
1272
+ * @type {boolean}
1273
+ * @memberof CommentVoList
1274
+ */
1275
+ first: boolean;
1276
+ /**
1277
+ * Indicates whether current page is the last page.
1278
+ * @type {boolean}
1279
+ * @memberof CommentVoList
1280
+ */
1281
+ last: boolean;
1282
+ /**
1283
+ * Indicates whether current page has previous page.
1284
+ * @type {boolean}
1285
+ * @memberof CommentVoList
1286
+ */
1287
+ hasNext: boolean;
1288
+ /**
1289
+ * Indicates whether current page has previous page.
1290
+ * @type {boolean}
1291
+ * @memberof CommentVoList
1292
+ */
1293
+ hasPrevious: boolean;
1294
+ }
1295
+
1135
1296
  /**
1136
1297
  * Halo Next API
1137
1298
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -1843,39 +2004,39 @@ interface License {
1843
2004
  /**
1844
2005
  *
1845
2006
  * @export
1846
- * @interface OwnerInfo
2007
+ * @interface LinkSpec
1847
2008
  */
1848
- interface OwnerInfo {
2009
+ interface LinkSpec {
1849
2010
  /**
1850
2011
  *
1851
2012
  * @type {string}
1852
- * @memberof OwnerInfo
2013
+ * @memberof LinkSpec
1853
2014
  */
1854
- kind?: string;
2015
+ url: string;
1855
2016
  /**
1856
2017
  *
1857
2018
  * @type {string}
1858
- * @memberof OwnerInfo
2019
+ * @memberof LinkSpec
1859
2020
  */
1860
- name?: string;
2021
+ displayName: string;
1861
2022
  /**
1862
2023
  *
1863
2024
  * @type {string}
1864
- * @memberof OwnerInfo
2025
+ * @memberof LinkSpec
1865
2026
  */
1866
- displayName?: string;
2027
+ logo?: string;
1867
2028
  /**
1868
2029
  *
1869
2030
  * @type {string}
1870
- * @memberof OwnerInfo
2031
+ * @memberof LinkSpec
1871
2032
  */
1872
- avatar?: string;
2033
+ description?: string;
1873
2034
  /**
1874
2035
  *
1875
- * @type {string}
1876
- * @memberof OwnerInfo
2036
+ * @type {number}
2037
+ * @memberof LinkSpec
1877
2038
  */
1878
- email?: string;
2039
+ priority?: number;
1879
2040
  }
1880
2041
 
1881
2042
  /**
@@ -1891,29 +2052,35 @@ interface OwnerInfo {
1891
2052
  */
1892
2053
 
1893
2054
  /**
1894
- * A chunk of items.
2055
+ *
1895
2056
  * @export
1896
- * @interface ListedComment
2057
+ * @interface Link
1897
2058
  */
1898
- interface ListedComment {
2059
+ interface Link {
1899
2060
  /**
1900
2061
  *
1901
- * @type {Comment}
1902
- * @memberof ListedComment
2062
+ * @type {LinkSpec}
2063
+ * @memberof Link
1903
2064
  */
1904
- comment: Comment;
2065
+ spec?: LinkSpec;
1905
2066
  /**
1906
2067
  *
1907
- * @type {OwnerInfo}
1908
- * @memberof ListedComment
2068
+ * @type {string}
2069
+ * @memberof Link
1909
2070
  */
1910
- owner: OwnerInfo;
2071
+ apiVersion: string;
1911
2072
  /**
1912
2073
  *
1913
- * @type {Extension}
1914
- * @memberof ListedComment
2074
+ * @type {string}
2075
+ * @memberof Link
1915
2076
  */
1916
- subject?: Extension;
2077
+ kind: string;
2078
+ /**
2079
+ *
2080
+ * @type {Metadata}
2081
+ * @memberof Link
2082
+ */
2083
+ metadata: Metadata;
1917
2084
  }
1918
2085
 
1919
2086
  /**
@@ -1927,61 +2094,30 @@ interface ListedComment {
1927
2094
  * https://openapi-generator.tech
1928
2095
  * Do not edit the class manually.
1929
2096
  */
1930
-
1931
2097
  /**
1932
2098
  *
1933
2099
  * @export
1934
- * @interface ListedCommentList
2100
+ * @interface LinkGroupSpec
1935
2101
  */
1936
- interface ListedCommentList {
1937
- /**
1938
- * Page number, starts from 1. If not set or equal to 0, it means no pagination.
1939
- * @type {number}
1940
- * @memberof ListedCommentList
1941
- */
1942
- page: number;
2102
+ interface LinkGroupSpec {
1943
2103
  /**
1944
- * Size of each page. If not set or equal to 0, it means no pagination.
1945
- * @type {number}
1946
- * @memberof ListedCommentList
2104
+ *
2105
+ * @type {string}
2106
+ * @memberof LinkGroupSpec
1947
2107
  */
1948
- size: number;
2108
+ displayName: string;
1949
2109
  /**
1950
- * Total elements.
2110
+ *
1951
2111
  * @type {number}
1952
- * @memberof ListedCommentList
1953
- */
1954
- total: number;
1955
- /**
1956
- * A chunk of items.
1957
- * @type {Array<ListedComment>}
1958
- * @memberof ListedCommentList
1959
- */
1960
- items: Array<ListedComment>;
1961
- /**
1962
- * Indicates whether current page is the first page.
1963
- * @type {boolean}
1964
- * @memberof ListedCommentList
1965
- */
1966
- first: boolean;
1967
- /**
1968
- * Indicates whether current page is the last page.
1969
- * @type {boolean}
1970
- * @memberof ListedCommentList
1971
- */
1972
- last: boolean;
1973
- /**
1974
- * Indicates whether current page has previous page.
1975
- * @type {boolean}
1976
- * @memberof ListedCommentList
2112
+ * @memberof LinkGroupSpec
1977
2113
  */
1978
- hasNext: boolean;
2114
+ priority?: number;
1979
2115
  /**
1980
- * Indicates whether current page has previous page.
1981
- * @type {boolean}
1982
- * @memberof ListedCommentList
2116
+ * Names of links below this group.
2117
+ * @type {Array<string>}
2118
+ * @memberof LinkGroupSpec
1983
2119
  */
1984
- hasPrevious: boolean;
2120
+ links?: Array<string>;
1985
2121
  }
1986
2122
 
1987
2123
  /**
@@ -1999,40 +2135,190 @@ interface ListedCommentList {
1999
2135
  /**
2000
2136
  *
2001
2137
  * @export
2002
- * @interface PostSpec
2138
+ * @interface LinkGroup
2003
2139
  */
2004
- interface PostSpec {
2005
- /**
2006
- *
2007
- * @type {string}
2008
- * @memberof PostSpec
2009
- */
2010
- title: string;
2140
+ interface LinkGroup {
2011
2141
  /**
2012
2142
  *
2013
- * @type {string}
2014
- * @memberof PostSpec
2143
+ * @type {LinkGroupSpec}
2144
+ * @memberof LinkGroup
2015
2145
  */
2016
- slug: string;
2146
+ spec?: LinkGroupSpec;
2017
2147
  /**
2018
2148
  *
2019
2149
  * @type {string}
2020
- * @memberof PostSpec
2150
+ * @memberof LinkGroup
2021
2151
  */
2022
- releaseSnapshot?: string;
2152
+ apiVersion: string;
2023
2153
  /**
2024
2154
  *
2025
2155
  * @type {string}
2026
- * @memberof PostSpec
2156
+ * @memberof LinkGroup
2027
2157
  */
2028
- headSnapshot?: string;
2158
+ kind: string;
2029
2159
  /**
2030
2160
  *
2031
- * @type {string}
2032
- * @memberof PostSpec
2161
+ * @type {Metadata}
2162
+ * @memberof LinkGroup
2033
2163
  */
2034
- baseSnapshot?: string;
2035
- /**
2164
+ metadata: Metadata;
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
+ * A chunk of items.
2181
+ * @export
2182
+ * @interface ListedComment
2183
+ */
2184
+ interface ListedComment {
2185
+ /**
2186
+ *
2187
+ * @type {Comment}
2188
+ * @memberof ListedComment
2189
+ */
2190
+ comment: Comment;
2191
+ /**
2192
+ *
2193
+ * @type {OwnerInfo}
2194
+ * @memberof ListedComment
2195
+ */
2196
+ owner: OwnerInfo;
2197
+ /**
2198
+ *
2199
+ * @type {Extension}
2200
+ * @memberof ListedComment
2201
+ */
2202
+ subject?: Extension;
2203
+ }
2204
+
2205
+ /**
2206
+ * Halo Next API
2207
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
2208
+ *
2209
+ * The version of the OpenAPI document: 2.0.0
2210
+ *
2211
+ *
2212
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2213
+ * https://openapi-generator.tech
2214
+ * Do not edit the class manually.
2215
+ */
2216
+
2217
+ /**
2218
+ *
2219
+ * @export
2220
+ * @interface ListedCommentList
2221
+ */
2222
+ interface ListedCommentList {
2223
+ /**
2224
+ * Page number, starts from 1. If not set or equal to 0, it means no pagination.
2225
+ * @type {number}
2226
+ * @memberof ListedCommentList
2227
+ */
2228
+ page: number;
2229
+ /**
2230
+ * Size of each page. If not set or equal to 0, it means no pagination.
2231
+ * @type {number}
2232
+ * @memberof ListedCommentList
2233
+ */
2234
+ size: number;
2235
+ /**
2236
+ * Total elements.
2237
+ * @type {number}
2238
+ * @memberof ListedCommentList
2239
+ */
2240
+ total: number;
2241
+ /**
2242
+ * A chunk of items.
2243
+ * @type {Array<ListedComment>}
2244
+ * @memberof ListedCommentList
2245
+ */
2246
+ items: Array<ListedComment>;
2247
+ /**
2248
+ * Indicates whether current page is the first page.
2249
+ * @type {boolean}
2250
+ * @memberof ListedCommentList
2251
+ */
2252
+ first: boolean;
2253
+ /**
2254
+ * Indicates whether current page is the last page.
2255
+ * @type {boolean}
2256
+ * @memberof ListedCommentList
2257
+ */
2258
+ last: boolean;
2259
+ /**
2260
+ * Indicates whether current page has previous page.
2261
+ * @type {boolean}
2262
+ * @memberof ListedCommentList
2263
+ */
2264
+ hasNext: boolean;
2265
+ /**
2266
+ * Indicates whether current page has previous page.
2267
+ * @type {boolean}
2268
+ * @memberof ListedCommentList
2269
+ */
2270
+ hasPrevious: boolean;
2271
+ }
2272
+
2273
+ /**
2274
+ * Halo Next API
2275
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
2276
+ *
2277
+ * The version of the OpenAPI document: 2.0.0
2278
+ *
2279
+ *
2280
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2281
+ * https://openapi-generator.tech
2282
+ * Do not edit the class manually.
2283
+ */
2284
+
2285
+ /**
2286
+ *
2287
+ * @export
2288
+ * @interface PostSpec
2289
+ */
2290
+ interface PostSpec {
2291
+ /**
2292
+ *
2293
+ * @type {string}
2294
+ * @memberof PostSpec
2295
+ */
2296
+ title: string;
2297
+ /**
2298
+ *
2299
+ * @type {string}
2300
+ * @memberof PostSpec
2301
+ */
2302
+ slug: string;
2303
+ /**
2304
+ *
2305
+ * @type {string}
2306
+ * @memberof PostSpec
2307
+ */
2308
+ releaseSnapshot?: string;
2309
+ /**
2310
+ *
2311
+ * @type {string}
2312
+ * @memberof PostSpec
2313
+ */
2314
+ headSnapshot?: string;
2315
+ /**
2316
+ *
2317
+ * @type {string}
2318
+ * @memberof PostSpec
2319
+ */
2320
+ baseSnapshot?: string;
2321
+ /**
2036
2322
  *
2037
2323
  * @type {string}
2038
2324
  * @memberof PostSpec
@@ -4491,6 +4777,112 @@ interface ReplyRequest {
4491
4777
  quoteReply?: string;
4492
4778
  }
4493
4779
 
4780
+ /**
4781
+ * Halo Next API
4782
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4783
+ *
4784
+ * The version of the OpenAPI document: 2.0.0
4785
+ *
4786
+ *
4787
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4788
+ * https://openapi-generator.tech
4789
+ * Do not edit the class manually.
4790
+ */
4791
+
4792
+ /**
4793
+ * A chunk of items.
4794
+ * @export
4795
+ * @interface ReplyVo
4796
+ */
4797
+ interface ReplyVo {
4798
+ /**
4799
+ *
4800
+ * @type {Metadata}
4801
+ * @memberof ReplyVo
4802
+ */
4803
+ metadata: Metadata;
4804
+ /**
4805
+ *
4806
+ * @type {ReplySpec}
4807
+ * @memberof ReplyVo
4808
+ */
4809
+ spec: ReplySpec;
4810
+ /**
4811
+ *
4812
+ * @type {OwnerInfo}
4813
+ * @memberof ReplyVo
4814
+ */
4815
+ owner: OwnerInfo;
4816
+ }
4817
+
4818
+ /**
4819
+ * Halo Next API
4820
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4821
+ *
4822
+ * The version of the OpenAPI document: 2.0.0
4823
+ *
4824
+ *
4825
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4826
+ * https://openapi-generator.tech
4827
+ * Do not edit the class manually.
4828
+ */
4829
+
4830
+ /**
4831
+ *
4832
+ * @export
4833
+ * @interface ReplyVoList
4834
+ */
4835
+ interface ReplyVoList {
4836
+ /**
4837
+ * Page number, starts from 1. If not set or equal to 0, it means no pagination.
4838
+ * @type {number}
4839
+ * @memberof ReplyVoList
4840
+ */
4841
+ page: number;
4842
+ /**
4843
+ * Size of each page. If not set or equal to 0, it means no pagination.
4844
+ * @type {number}
4845
+ * @memberof ReplyVoList
4846
+ */
4847
+ size: number;
4848
+ /**
4849
+ * Total elements.
4850
+ * @type {number}
4851
+ * @memberof ReplyVoList
4852
+ */
4853
+ total: number;
4854
+ /**
4855
+ * A chunk of items.
4856
+ * @type {Array<ReplyVo>}
4857
+ * @memberof ReplyVoList
4858
+ */
4859
+ items: Array<ReplyVo>;
4860
+ /**
4861
+ * Indicates whether current page is the first page.
4862
+ * @type {boolean}
4863
+ * @memberof ReplyVoList
4864
+ */
4865
+ first: boolean;
4866
+ /**
4867
+ * Indicates whether current page is the last page.
4868
+ * @type {boolean}
4869
+ * @memberof ReplyVoList
4870
+ */
4871
+ last: boolean;
4872
+ /**
4873
+ * Indicates whether current page has previous page.
4874
+ * @type {boolean}
4875
+ * @memberof ReplyVoList
4876
+ */
4877
+ hasNext: boolean;
4878
+ /**
4879
+ * Indicates whether current page has previous page.
4880
+ * @type {boolean}
4881
+ * @memberof ReplyVoList
4882
+ */
4883
+ hasPrevious: boolean;
4884
+ }
4885
+
4494
4886
  /**
4495
4887
  * Halo Next API
4496
4888
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -6506,13 +6898,13 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
6506
6898
  /**
6507
6899
  * List posts.
6508
6900
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
6509
- * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
6510
- * @param {Array<string>} [category]
6511
6901
  * @param {Array<string>} [contributor]
6512
6902
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
6513
- * @param {string} [keyword] Posts filtered by keyword.
6514
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
6903
+ * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
6904
+ * @param {Array<string>} [category]
6515
6905
  * @param {Array<string>} [tag]
6906
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
6907
+ * @param {string} [keyword] Posts filtered by keyword.
6516
6908
  * @param {number} [size] Size of one page. Zero indicates no limit.
6517
6909
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6518
6910
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
@@ -6520,7 +6912,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
6520
6912
  * @param {*} [options] Override http request option.
6521
6913
  * @throws {RequiredError}
6522
6914
  */
6523
- listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, contributor?: Array<string>, sortOrder?: boolean, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6915
+ listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6524
6916
  /**
6525
6917
  * Publish a post.
6526
6918
  * @param {string} name
@@ -6552,13 +6944,13 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
6552
6944
  /**
6553
6945
  * List posts.
6554
6946
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
6555
- * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
6556
- * @param {Array<string>} [category]
6557
6947
  * @param {Array<string>} [contributor]
6558
6948
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
6559
- * @param {string} [keyword] Posts filtered by keyword.
6560
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
6949
+ * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
6950
+ * @param {Array<string>} [category]
6561
6951
  * @param {Array<string>} [tag]
6952
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
6953
+ * @param {string} [keyword] Posts filtered by keyword.
6562
6954
  * @param {number} [size] Size of one page. Zero indicates no limit.
6563
6955
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6564
6956
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
@@ -6566,7 +6958,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
6566
6958
  * @param {*} [options] Override http request option.
6567
6959
  * @throws {RequiredError}
6568
6960
  */
6569
- listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, contributor?: Array<string>, sortOrder?: boolean, 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>>;
6961
+ listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
6570
6962
  /**
6571
6963
  * Publish a post.
6572
6964
  * @param {string} name
@@ -6598,13 +6990,13 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
6598
6990
  /**
6599
6991
  * List posts.
6600
6992
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
6601
- * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
6602
- * @param {Array<string>} [category]
6603
6993
  * @param {Array<string>} [contributor]
6604
6994
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
6605
- * @param {string} [keyword] Posts filtered by keyword.
6606
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
6995
+ * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
6996
+ * @param {Array<string>} [category]
6607
6997
  * @param {Array<string>} [tag]
6998
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
6999
+ * @param {string} [keyword] Posts filtered by keyword.
6608
7000
  * @param {number} [size] Size of one page. Zero indicates no limit.
6609
7001
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6610
7002
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
@@ -6612,7 +7004,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
6612
7004
  * @param {*} [options] Override http request option.
6613
7005
  * @throws {RequiredError}
6614
7006
  */
6615
- listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, contributor?: Array<string>, sortOrder?: boolean, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedPostList>;
7007
+ listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedPostList>;
6616
7008
  /**
6617
7009
  * Publish a post.
6618
7010
  * @param {string} name
@@ -6656,34 +7048,34 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
6656
7048
  readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
6657
7049
  /**
6658
7050
  *
6659
- * @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'}
7051
+ * @type {Array<string>}
6660
7052
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
6661
7053
  */
6662
- readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED';
7054
+ readonly contributor?: Array<string>;
6663
7055
  /**
6664
- *
6665
- * @type {Array<string>}
7056
+ * ascending order If it is true; otherwise, it is in descending order.
7057
+ * @type {boolean}
6666
7058
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
6667
7059
  */
6668
- readonly category?: Array<string>;
7060
+ readonly sortOrder?: boolean;
6669
7061
  /**
6670
7062
  *
6671
- * @type {Array<string>}
7063
+ * @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'}
6672
7064
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
6673
7065
  */
6674
- readonly contributor?: Array<string>;
7066
+ readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED';
6675
7067
  /**
6676
- * ascending order If it is true; otherwise, it is in descending order.
6677
- * @type {boolean}
7068
+ *
7069
+ * @type {Array<string>}
6678
7070
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
6679
7071
  */
6680
- readonly sortOrder?: boolean;
7072
+ readonly category?: Array<string>;
6681
7073
  /**
6682
- * Posts filtered by keyword.
6683
- * @type {string}
7074
+ *
7075
+ * @type {Array<string>}
6684
7076
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
6685
7077
  */
6686
- readonly keyword?: string;
7078
+ readonly tag?: Array<string>;
6687
7079
  /**
6688
7080
  *
6689
7081
  * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
@@ -6691,11 +7083,11 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
6691
7083
  */
6692
7084
  readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
6693
7085
  /**
6694
- *
6695
- * @type {Array<string>}
7086
+ * Posts filtered by keyword.
7087
+ * @type {string}
6696
7088
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
6697
7089
  */
6698
- readonly tag?: Array<string>;
7090
+ readonly keyword?: string;
6699
7091
  /**
6700
7092
  * Size of one page. Zero indicates no limit.
6701
7093
  * @type {number}
@@ -6913,7 +7305,12 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
6913
7305
  draftSinglePage: (singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6914
7306
  /**
6915
7307
  * List single pages.
6916
- * @param {Array<string>} [contributors]
7308
+ * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
7309
+ * @param {Array<string>} [contributor]
7310
+ * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7311
+ * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
7312
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7313
+ * @param {string} [keyword] SinglePages filtered by keyword.
6917
7314
  * @param {number} [size] Size of one page. Zero indicates no limit.
6918
7315
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6919
7316
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
@@ -6921,7 +7318,7 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
6921
7318
  * @param {*} [options] Override http request option.
6922
7319
  * @throws {RequiredError}
6923
7320
  */
6924
- listSinglePages: (contributors?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7321
+ listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6925
7322
  /**
6926
7323
  * Publish a single page.
6927
7324
  * @param {string} name
@@ -6952,7 +7349,12 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
6952
7349
  draftSinglePage(singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
6953
7350
  /**
6954
7351
  * List single pages.
6955
- * @param {Array<string>} [contributors]
7352
+ * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
7353
+ * @param {Array<string>} [contributor]
7354
+ * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7355
+ * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
7356
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7357
+ * @param {string} [keyword] SinglePages filtered by keyword.
6956
7358
  * @param {number} [size] Size of one page. Zero indicates no limit.
6957
7359
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6958
7360
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
@@ -6960,7 +7362,7 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
6960
7362
  * @param {*} [options] Override http request option.
6961
7363
  * @throws {RequiredError}
6962
7364
  */
6963
- listSinglePages(contributors?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
7365
+ listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
6964
7366
  /**
6965
7367
  * Publish a single page.
6966
7368
  * @param {string} name
@@ -6991,7 +7393,12 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
6991
7393
  draftSinglePage(singlePageRequest: SinglePageRequest, options?: any): AxiosPromise<SinglePage>;
6992
7394
  /**
6993
7395
  * List single pages.
6994
- * @param {Array<string>} [contributors]
7396
+ * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
7397
+ * @param {Array<string>} [contributor]
7398
+ * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7399
+ * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
7400
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7401
+ * @param {string} [keyword] SinglePages filtered by keyword.
6995
7402
  * @param {number} [size] Size of one page. Zero indicates no limit.
6996
7403
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6997
7404
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
@@ -6999,7 +7406,7 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
6999
7406
  * @param {*} [options] Override http request option.
7000
7407
  * @throws {RequiredError}
7001
7408
  */
7002
- listSinglePages(contributors?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedSinglePageList>;
7409
+ listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedSinglePageList>;
7003
7410
  /**
7004
7411
  * Publish a single page.
7005
7412
  * @param {string} name
@@ -7035,12 +7442,42 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest {
7035
7442
  * @interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest
7036
7443
  */
7037
7444
  interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
7445
+ /**
7446
+ * SinglePage collation.
7447
+ * @type {'PUBLISH_TIME' | 'CREATE_TIME'}
7448
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7449
+ */
7450
+ readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
7038
7451
  /**
7039
7452
  *
7040
7453
  * @type {Array<string>}
7041
7454
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7042
7455
  */
7043
- readonly contributors?: Array<string>;
7456
+ readonly contributor?: Array<string>;
7457
+ /**
7458
+ * ascending order If it is true; otherwise, it is in descending order.
7459
+ * @type {boolean}
7460
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7461
+ */
7462
+ readonly sortOrder?: boolean;
7463
+ /**
7464
+ *
7465
+ * @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'}
7466
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7467
+ */
7468
+ readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED';
7469
+ /**
7470
+ *
7471
+ * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
7472
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7473
+ */
7474
+ readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
7475
+ /**
7476
+ * SinglePages filtered by keyword.
7477
+ * @type {string}
7478
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7479
+ */
7480
+ readonly keyword?: string;
7044
7481
  /**
7045
7482
  * Size of one page. Zero indicates no limit.
7046
7483
  * @type {number}
@@ -7447,306 +7884,387 @@ declare class ApiConsoleHaloRunV1alpha1UserApi extends BaseAPI {
7447
7884
  }
7448
7885
 
7449
7886
  /**
7450
- * ContentHaloRunV1alpha1CategoryApi - axios parameter creator
7887
+ * ApiHaloRunV1alpha1CommentApi - axios parameter creator
7451
7888
  * @export
7452
7889
  */
7453
- declare const ContentHaloRunV1alpha1CategoryApiAxiosParamCreator: (configuration?: Configuration) => {
7890
+ declare const ApiHaloRunV1alpha1CommentApiAxiosParamCreator: (configuration?: Configuration) => {
7454
7891
  /**
7455
- * Create content.halo.run/v1alpha1/Category
7456
- * @param {Category} [category] Fresh category
7892
+ * Create a comment.
7893
+ * @param {CommentRequest} commentRequest
7457
7894
  * @param {*} [options] Override http request option.
7458
7895
  * @throws {RequiredError}
7459
7896
  */
7460
- createcontentHaloRunV1alpha1Category: (category?: Category, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7897
+ createComment1: (commentRequest: CommentRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7461
7898
  /**
7462
- * Delete content.halo.run/v1alpha1/Category
7463
- * @param {string} name Name of category
7899
+ * Create a reply.
7900
+ * @param {string} name
7901
+ * @param {ReplyRequest} replyRequest
7464
7902
  * @param {*} [options] Override http request option.
7465
7903
  * @throws {RequiredError}
7466
7904
  */
7467
- deletecontentHaloRunV1alpha1Category: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7905
+ createReply1: (name: string, replyRequest: ReplyRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7468
7906
  /**
7469
- * Get content.halo.run/v1alpha1/Category
7470
- * @param {string} name Name of category
7907
+ * Get a comment.
7908
+ * @param {string} name
7471
7909
  * @param {*} [options] Override http request option.
7472
7910
  * @throws {RequiredError}
7473
7911
  */
7474
- getcontentHaloRunV1alpha1Category: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7912
+ getComment: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7475
7913
  /**
7476
- * List content.halo.run/v1alpha1/Category
7477
- * @param {number} [page] The page number. Zero indicates no page.
7914
+ * List comment replies.
7915
+ * @param {string} name
7478
7916
  * @param {number} [size] Size of one page. Zero indicates no limit.
7479
- * @param {Array<string>} [labelSelector] Label selector for filtering.
7480
- * @param {Array<string>} [fieldSelector] Field selector for filtering.
7917
+ * @param {number} [page] The page number. Zero indicates no page.
7481
7918
  * @param {*} [options] Override http request option.
7482
7919
  * @throws {RequiredError}
7483
7920
  */
7484
- listcontentHaloRunV1alpha1Category: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7921
+ listCommentReplies: (name: string, size?: number, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7485
7922
  /**
7486
- * Update content.halo.run/v1alpha1/Category
7487
- * @param {string} name Name of category
7488
- * @param {Category} [category] Updated category
7923
+ * List comments.
7924
+ * @param {string} name The comment subject name.
7925
+ * @param {string} version The comment subject version.
7926
+ * @param {string} kind The comment subject kind.
7927
+ * @param {string} [group] The comment subject group.
7928
+ * @param {number} [size] Size of one page. Zero indicates no limit.
7929
+ * @param {number} [page] The page number. Zero indicates no page.
7489
7930
  * @param {*} [options] Override http request option.
7490
7931
  * @throws {RequiredError}
7491
7932
  */
7492
- updatecontentHaloRunV1alpha1Category: (name: string, category?: Category, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7933
+ listComments1: (name: string, version: string, kind: string, group?: string, size?: number, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7493
7934
  };
7494
7935
  /**
7495
- * ContentHaloRunV1alpha1CategoryApi - functional programming interface
7936
+ * ApiHaloRunV1alpha1CommentApi - functional programming interface
7496
7937
  * @export
7497
7938
  */
7498
- declare const ContentHaloRunV1alpha1CategoryApiFp: (configuration?: Configuration) => {
7939
+ declare const ApiHaloRunV1alpha1CommentApiFp: (configuration?: Configuration) => {
7499
7940
  /**
7500
- * Create content.halo.run/v1alpha1/Category
7501
- * @param {Category} [category] Fresh category
7941
+ * Create a comment.
7942
+ * @param {CommentRequest} commentRequest
7502
7943
  * @param {*} [options] Override http request option.
7503
7944
  * @throws {RequiredError}
7504
7945
  */
7505
- createcontentHaloRunV1alpha1Category(category?: Category, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Category>>;
7946
+ createComment1(commentRequest: CommentRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Comment>>;
7506
7947
  /**
7507
- * Delete content.halo.run/v1alpha1/Category
7508
- * @param {string} name Name of category
7948
+ * Create a reply.
7949
+ * @param {string} name
7950
+ * @param {ReplyRequest} replyRequest
7509
7951
  * @param {*} [options] Override http request option.
7510
7952
  * @throws {RequiredError}
7511
7953
  */
7512
- deletecontentHaloRunV1alpha1Category(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
7954
+ createReply1(name: string, replyRequest: ReplyRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Reply>>;
7513
7955
  /**
7514
- * Get content.halo.run/v1alpha1/Category
7515
- * @param {string} name Name of category
7956
+ * Get a comment.
7957
+ * @param {string} name
7516
7958
  * @param {*} [options] Override http request option.
7517
7959
  * @throws {RequiredError}
7518
7960
  */
7519
- getcontentHaloRunV1alpha1Category(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Category>>;
7961
+ getComment(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CommentVoList>>;
7520
7962
  /**
7521
- * List content.halo.run/v1alpha1/Category
7522
- * @param {number} [page] The page number. Zero indicates no page.
7963
+ * List comment replies.
7964
+ * @param {string} name
7523
7965
  * @param {number} [size] Size of one page. Zero indicates no limit.
7524
- * @param {Array<string>} [labelSelector] Label selector for filtering.
7525
- * @param {Array<string>} [fieldSelector] Field selector for filtering.
7966
+ * @param {number} [page] The page number. Zero indicates no page.
7526
7967
  * @param {*} [options] Override http request option.
7527
7968
  * @throws {RequiredError}
7528
7969
  */
7529
- listcontentHaloRunV1alpha1Category(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CategoryList>>;
7970
+ listCommentReplies(name: string, size?: number, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReplyVoList>>;
7530
7971
  /**
7531
- * Update content.halo.run/v1alpha1/Category
7532
- * @param {string} name Name of category
7533
- * @param {Category} [category] Updated category
7972
+ * List comments.
7973
+ * @param {string} name The comment subject name.
7974
+ * @param {string} version The comment subject version.
7975
+ * @param {string} kind The comment subject kind.
7976
+ * @param {string} [group] The comment subject group.
7977
+ * @param {number} [size] Size of one page. Zero indicates no limit.
7978
+ * @param {number} [page] The page number. Zero indicates no page.
7534
7979
  * @param {*} [options] Override http request option.
7535
7980
  * @throws {RequiredError}
7536
7981
  */
7537
- updatecontentHaloRunV1alpha1Category(name: string, category?: Category, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Category>>;
7982
+ listComments1(name: string, version: string, kind: string, group?: string, size?: number, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CommentVoList>>;
7538
7983
  };
7539
7984
  /**
7540
- * ContentHaloRunV1alpha1CategoryApi - factory interface
7985
+ * ApiHaloRunV1alpha1CommentApi - factory interface
7541
7986
  * @export
7542
7987
  */
7543
- declare const ContentHaloRunV1alpha1CategoryApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
7988
+ declare const ApiHaloRunV1alpha1CommentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
7544
7989
  /**
7545
- * Create content.halo.run/v1alpha1/Category
7546
- * @param {Category} [category] Fresh category
7990
+ * Create a comment.
7991
+ * @param {CommentRequest} commentRequest
7547
7992
  * @param {*} [options] Override http request option.
7548
7993
  * @throws {RequiredError}
7549
7994
  */
7550
- createcontentHaloRunV1alpha1Category(category?: Category, options?: any): AxiosPromise<Category>;
7995
+ createComment1(commentRequest: CommentRequest, options?: any): AxiosPromise<Comment>;
7551
7996
  /**
7552
- * Delete content.halo.run/v1alpha1/Category
7553
- * @param {string} name Name of category
7997
+ * Create a reply.
7998
+ * @param {string} name
7999
+ * @param {ReplyRequest} replyRequest
7554
8000
  * @param {*} [options] Override http request option.
7555
8001
  * @throws {RequiredError}
7556
8002
  */
7557
- deletecontentHaloRunV1alpha1Category(name: string, options?: any): AxiosPromise<void>;
8003
+ createReply1(name: string, replyRequest: ReplyRequest, options?: any): AxiosPromise<Reply>;
7558
8004
  /**
7559
- * Get content.halo.run/v1alpha1/Category
7560
- * @param {string} name Name of category
8005
+ * Get a comment.
8006
+ * @param {string} name
7561
8007
  * @param {*} [options] Override http request option.
7562
8008
  * @throws {RequiredError}
7563
8009
  */
7564
- getcontentHaloRunV1alpha1Category(name: string, options?: any): AxiosPromise<Category>;
8010
+ getComment(name: string, options?: any): AxiosPromise<CommentVoList>;
7565
8011
  /**
7566
- * List content.halo.run/v1alpha1/Category
7567
- * @param {number} [page] The page number. Zero indicates no page.
8012
+ * List comment replies.
8013
+ * @param {string} name
7568
8014
  * @param {number} [size] Size of one page. Zero indicates no limit.
7569
- * @param {Array<string>} [labelSelector] Label selector for filtering.
7570
- * @param {Array<string>} [fieldSelector] Field selector for filtering.
8015
+ * @param {number} [page] The page number. Zero indicates no page.
7571
8016
  * @param {*} [options] Override http request option.
7572
8017
  * @throws {RequiredError}
7573
8018
  */
7574
- listcontentHaloRunV1alpha1Category(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<CategoryList>;
8019
+ listCommentReplies(name: string, size?: number, page?: number, options?: any): AxiosPromise<ReplyVoList>;
7575
8020
  /**
7576
- * Update content.halo.run/v1alpha1/Category
7577
- * @param {string} name Name of category
7578
- * @param {Category} [category] Updated category
8021
+ * List comments.
8022
+ * @param {string} name The comment subject name.
8023
+ * @param {string} version The comment subject version.
8024
+ * @param {string} kind The comment subject kind.
8025
+ * @param {string} [group] The comment subject group.
8026
+ * @param {number} [size] Size of one page. Zero indicates no limit.
8027
+ * @param {number} [page] The page number. Zero indicates no page.
7579
8028
  * @param {*} [options] Override http request option.
7580
8029
  * @throws {RequiredError}
7581
8030
  */
7582
- updatecontentHaloRunV1alpha1Category(name: string, category?: Category, options?: any): AxiosPromise<Category>;
8031
+ listComments1(name: string, version: string, kind: string, group?: string, size?: number, page?: number, options?: any): AxiosPromise<CommentVoList>;
7583
8032
  };
7584
8033
  /**
7585
- * Request parameters for createcontentHaloRunV1alpha1Category operation in ContentHaloRunV1alpha1CategoryApi.
8034
+ * Request parameters for createComment1 operation in ApiHaloRunV1alpha1CommentApi.
7586
8035
  * @export
7587
- * @interface ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest
8036
+ * @interface ApiHaloRunV1alpha1CommentApiCreateComment1Request
7588
8037
  */
7589
- interface ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest {
8038
+ interface ApiHaloRunV1alpha1CommentApiCreateComment1Request {
7590
8039
  /**
7591
- * Fresh category
7592
- * @type {Category}
7593
- * @memberof ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1Category
8040
+ *
8041
+ * @type {CommentRequest}
8042
+ * @memberof ApiHaloRunV1alpha1CommentApiCreateComment1
7594
8043
  */
7595
- readonly category?: Category;
8044
+ readonly commentRequest: CommentRequest;
7596
8045
  }
7597
8046
  /**
7598
- * Request parameters for deletecontentHaloRunV1alpha1Category operation in ContentHaloRunV1alpha1CategoryApi.
8047
+ * Request parameters for createReply1 operation in ApiHaloRunV1alpha1CommentApi.
7599
8048
  * @export
7600
- * @interface ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest
8049
+ * @interface ApiHaloRunV1alpha1CommentApiCreateReply1Request
7601
8050
  */
7602
- interface ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest {
8051
+ interface ApiHaloRunV1alpha1CommentApiCreateReply1Request {
7603
8052
  /**
7604
- * Name of category
8053
+ *
7605
8054
  * @type {string}
7606
- * @memberof ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1Category
8055
+ * @memberof ApiHaloRunV1alpha1CommentApiCreateReply1
7607
8056
  */
7608
8057
  readonly name: string;
8058
+ /**
8059
+ *
8060
+ * @type {ReplyRequest}
8061
+ * @memberof ApiHaloRunV1alpha1CommentApiCreateReply1
8062
+ */
8063
+ readonly replyRequest: ReplyRequest;
7609
8064
  }
7610
8065
  /**
7611
- * Request parameters for getcontentHaloRunV1alpha1Category operation in ContentHaloRunV1alpha1CategoryApi.
8066
+ * Request parameters for getComment operation in ApiHaloRunV1alpha1CommentApi.
7612
8067
  * @export
7613
- * @interface ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest
8068
+ * @interface ApiHaloRunV1alpha1CommentApiGetCommentRequest
7614
8069
  */
7615
- interface ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest {
8070
+ interface ApiHaloRunV1alpha1CommentApiGetCommentRequest {
7616
8071
  /**
7617
- * Name of category
8072
+ *
7618
8073
  * @type {string}
7619
- * @memberof ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1Category
8074
+ * @memberof ApiHaloRunV1alpha1CommentApiGetComment
7620
8075
  */
7621
8076
  readonly name: string;
7622
8077
  }
7623
8078
  /**
7624
- * Request parameters for listcontentHaloRunV1alpha1Category operation in ContentHaloRunV1alpha1CategoryApi.
8079
+ * Request parameters for listCommentReplies operation in ApiHaloRunV1alpha1CommentApi.
7625
8080
  * @export
7626
- * @interface ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest
8081
+ * @interface ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest
7627
8082
  */
7628
- interface ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest {
8083
+ interface ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest {
7629
8084
  /**
7630
- * The page number. Zero indicates no page.
7631
- * @type {number}
7632
- * @memberof ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1Category
8085
+ *
8086
+ * @type {string}
8087
+ * @memberof ApiHaloRunV1alpha1CommentApiListCommentReplies
7633
8088
  */
7634
- readonly page?: number;
8089
+ readonly name: string;
7635
8090
  /**
7636
8091
  * Size of one page. Zero indicates no limit.
7637
8092
  * @type {number}
7638
- * @memberof ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1Category
8093
+ * @memberof ApiHaloRunV1alpha1CommentApiListCommentReplies
7639
8094
  */
7640
8095
  readonly size?: number;
7641
8096
  /**
7642
- * Label selector for filtering.
7643
- * @type {Array<string>}
7644
- * @memberof ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1Category
7645
- */
7646
- readonly labelSelector?: Array<string>;
7647
- /**
7648
- * Field selector for filtering.
7649
- * @type {Array<string>}
7650
- * @memberof ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1Category
8097
+ * The page number. Zero indicates no page.
8098
+ * @type {number}
8099
+ * @memberof ApiHaloRunV1alpha1CommentApiListCommentReplies
7651
8100
  */
7652
- readonly fieldSelector?: Array<string>;
8101
+ readonly page?: number;
7653
8102
  }
7654
8103
  /**
7655
- * Request parameters for updatecontentHaloRunV1alpha1Category operation in ContentHaloRunV1alpha1CategoryApi.
8104
+ * Request parameters for listComments1 operation in ApiHaloRunV1alpha1CommentApi.
7656
8105
  * @export
7657
- * @interface ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest
8106
+ * @interface ApiHaloRunV1alpha1CommentApiListComments1Request
7658
8107
  */
7659
- interface ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest {
8108
+ interface ApiHaloRunV1alpha1CommentApiListComments1Request {
7660
8109
  /**
7661
- * Name of category
8110
+ * The comment subject name.
7662
8111
  * @type {string}
7663
- * @memberof ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1Category
8112
+ * @memberof ApiHaloRunV1alpha1CommentApiListComments1
7664
8113
  */
7665
8114
  readonly name: string;
7666
8115
  /**
7667
- * Updated category
7668
- * @type {Category}
7669
- * @memberof ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1Category
8116
+ * The comment subject version.
8117
+ * @type {string}
8118
+ * @memberof ApiHaloRunV1alpha1CommentApiListComments1
7670
8119
  */
7671
- readonly category?: Category;
7672
- }
7673
- /**
7674
- * ContentHaloRunV1alpha1CategoryApi - object-oriented interface
7675
- * @export
7676
- * @class ContentHaloRunV1alpha1CategoryApi
7677
- * @extends {BaseAPI}
7678
- */
7679
- declare class ContentHaloRunV1alpha1CategoryApi extends BaseAPI {
8120
+ readonly version: string;
7680
8121
  /**
7681
- * Create content.halo.run/v1alpha1/Category
7682
- * @param {ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest} requestParameters Request parameters.
7683
- * @param {*} [options] Override http request option.
7684
- * @throws {RequiredError}
7685
- * @memberof ContentHaloRunV1alpha1CategoryApi
8122
+ * The comment subject kind.
8123
+ * @type {string}
8124
+ * @memberof ApiHaloRunV1alpha1CommentApiListComments1
7686
8125
  */
7687
- createcontentHaloRunV1alpha1Category(requestParameters?: ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Category, any>>;
8126
+ readonly kind: string;
8127
+ /**
8128
+ * The comment subject group.
8129
+ * @type {string}
8130
+ * @memberof ApiHaloRunV1alpha1CommentApiListComments1
8131
+ */
8132
+ readonly group?: string;
8133
+ /**
8134
+ * Size of one page. Zero indicates no limit.
8135
+ * @type {number}
8136
+ * @memberof ApiHaloRunV1alpha1CommentApiListComments1
8137
+ */
8138
+ readonly size?: number;
8139
+ /**
8140
+ * The page number. Zero indicates no page.
8141
+ * @type {number}
8142
+ * @memberof ApiHaloRunV1alpha1CommentApiListComments1
8143
+ */
8144
+ readonly page?: number;
8145
+ }
8146
+ /**
8147
+ * ApiHaloRunV1alpha1CommentApi - object-oriented interface
8148
+ * @export
8149
+ * @class ApiHaloRunV1alpha1CommentApi
8150
+ * @extends {BaseAPI}
8151
+ */
8152
+ declare class ApiHaloRunV1alpha1CommentApi extends BaseAPI {
8153
+ /**
8154
+ * Create a comment.
8155
+ * @param {ApiHaloRunV1alpha1CommentApiCreateComment1Request} requestParameters Request parameters.
8156
+ * @param {*} [options] Override http request option.
8157
+ * @throws {RequiredError}
8158
+ * @memberof ApiHaloRunV1alpha1CommentApi
8159
+ */
8160
+ createComment1(requestParameters: ApiHaloRunV1alpha1CommentApiCreateComment1Request, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Comment, any>>;
8161
+ /**
8162
+ * Create a reply.
8163
+ * @param {ApiHaloRunV1alpha1CommentApiCreateReply1Request} requestParameters Request parameters.
8164
+ * @param {*} [options] Override http request option.
8165
+ * @throws {RequiredError}
8166
+ * @memberof ApiHaloRunV1alpha1CommentApi
8167
+ */
8168
+ createReply1(requestParameters: ApiHaloRunV1alpha1CommentApiCreateReply1Request, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Reply, any>>;
8169
+ /**
8170
+ * Get a comment.
8171
+ * @param {ApiHaloRunV1alpha1CommentApiGetCommentRequest} requestParameters Request parameters.
8172
+ * @param {*} [options] Override http request option.
8173
+ * @throws {RequiredError}
8174
+ * @memberof ApiHaloRunV1alpha1CommentApi
8175
+ */
8176
+ getComment(requestParameters: ApiHaloRunV1alpha1CommentApiGetCommentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<CommentVoList, any>>;
8177
+ /**
8178
+ * List comment replies.
8179
+ * @param {ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest} requestParameters Request parameters.
8180
+ * @param {*} [options] Override http request option.
8181
+ * @throws {RequiredError}
8182
+ * @memberof ApiHaloRunV1alpha1CommentApi
8183
+ */
8184
+ listCommentReplies(requestParameters: ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ReplyVoList, any>>;
8185
+ /**
8186
+ * List comments.
8187
+ * @param {ApiHaloRunV1alpha1CommentApiListComments1Request} requestParameters Request parameters.
8188
+ * @param {*} [options] Override http request option.
8189
+ * @throws {RequiredError}
8190
+ * @memberof ApiHaloRunV1alpha1CommentApi
8191
+ */
8192
+ listComments1(requestParameters: ApiHaloRunV1alpha1CommentApiListComments1Request, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<CommentVoList, any>>;
8193
+ }
8194
+
8195
+ /**
8196
+ * ContentHaloRunV1alpha1CategoryApi - axios parameter creator
8197
+ * @export
8198
+ */
8199
+ declare const ContentHaloRunV1alpha1CategoryApiAxiosParamCreator: (configuration?: Configuration) => {
8200
+ /**
8201
+ * Create content.halo.run/v1alpha1/Category
8202
+ * @param {Category} [category] Fresh category
8203
+ * @param {*} [options] Override http request option.
8204
+ * @throws {RequiredError}
8205
+ */
8206
+ createcontentHaloRunV1alpha1Category: (category?: Category, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7688
8207
  /**
7689
8208
  * Delete content.halo.run/v1alpha1/Category
7690
- * @param {ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest} requestParameters Request parameters.
8209
+ * @param {string} name Name of category
7691
8210
  * @param {*} [options] Override http request option.
7692
8211
  * @throws {RequiredError}
7693
- * @memberof ContentHaloRunV1alpha1CategoryApi
7694
8212
  */
7695
- deletecontentHaloRunV1alpha1Category(requestParameters: ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
8213
+ deletecontentHaloRunV1alpha1Category: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7696
8214
  /**
7697
8215
  * Get content.halo.run/v1alpha1/Category
7698
- * @param {ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest} requestParameters Request parameters.
8216
+ * @param {string} name Name of category
7699
8217
  * @param {*} [options] Override http request option.
7700
8218
  * @throws {RequiredError}
7701
- * @memberof ContentHaloRunV1alpha1CategoryApi
7702
8219
  */
7703
- getcontentHaloRunV1alpha1Category(requestParameters: ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Category, any>>;
8220
+ getcontentHaloRunV1alpha1Category: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7704
8221
  /**
7705
8222
  * List content.halo.run/v1alpha1/Category
7706
- * @param {ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest} requestParameters Request parameters.
8223
+ * @param {number} [page] The page number. Zero indicates no page.
8224
+ * @param {number} [size] Size of one page. Zero indicates no limit.
8225
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
8226
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
7707
8227
  * @param {*} [options] Override http request option.
7708
8228
  * @throws {RequiredError}
7709
- * @memberof ContentHaloRunV1alpha1CategoryApi
7710
8229
  */
7711
- listcontentHaloRunV1alpha1Category(requestParameters?: ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<CategoryList, any>>;
8230
+ listcontentHaloRunV1alpha1Category: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7712
8231
  /**
7713
8232
  * Update content.halo.run/v1alpha1/Category
7714
- * @param {ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest} requestParameters Request parameters.
8233
+ * @param {string} name Name of category
8234
+ * @param {Category} [category] Updated category
7715
8235
  * @param {*} [options] Override http request option.
7716
8236
  * @throws {RequiredError}
7717
- * @memberof ContentHaloRunV1alpha1CategoryApi
7718
8237
  */
7719
- updatecontentHaloRunV1alpha1Category(requestParameters: ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Category, any>>;
7720
- }
7721
-
8238
+ updatecontentHaloRunV1alpha1Category: (name: string, category?: Category, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8239
+ };
7722
8240
  /**
7723
- * ContentHaloRunV1alpha1CommentApi - axios parameter creator
8241
+ * ContentHaloRunV1alpha1CategoryApi - functional programming interface
7724
8242
  * @export
7725
8243
  */
7726
- declare const ContentHaloRunV1alpha1CommentApiAxiosParamCreator: (configuration?: Configuration) => {
8244
+ declare const ContentHaloRunV1alpha1CategoryApiFp: (configuration?: Configuration) => {
7727
8245
  /**
7728
- * Create content.halo.run/v1alpha1/Comment
7729
- * @param {Comment} [comment] Fresh comment
8246
+ * Create content.halo.run/v1alpha1/Category
8247
+ * @param {Category} [category] Fresh category
7730
8248
  * @param {*} [options] Override http request option.
7731
8249
  * @throws {RequiredError}
7732
8250
  */
7733
- createcontentHaloRunV1alpha1Comment: (comment?: Comment, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8251
+ createcontentHaloRunV1alpha1Category(category?: Category, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Category>>;
7734
8252
  /**
7735
- * Delete content.halo.run/v1alpha1/Comment
7736
- * @param {string} name Name of comment
8253
+ * Delete content.halo.run/v1alpha1/Category
8254
+ * @param {string} name Name of category
7737
8255
  * @param {*} [options] Override http request option.
7738
8256
  * @throws {RequiredError}
7739
8257
  */
7740
- deletecontentHaloRunV1alpha1Comment: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8258
+ deletecontentHaloRunV1alpha1Category(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
7741
8259
  /**
7742
- * Get content.halo.run/v1alpha1/Comment
7743
- * @param {string} name Name of comment
8260
+ * Get content.halo.run/v1alpha1/Category
8261
+ * @param {string} name Name of category
7744
8262
  * @param {*} [options] Override http request option.
7745
8263
  * @throws {RequiredError}
7746
8264
  */
7747
- getcontentHaloRunV1alpha1Comment: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8265
+ getcontentHaloRunV1alpha1Category(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Category>>;
7748
8266
  /**
7749
- * List content.halo.run/v1alpha1/Comment
8267
+ * List content.halo.run/v1alpha1/Category
7750
8268
  * @param {number} [page] The page number. Zero indicates no page.
7751
8269
  * @param {number} [size] Size of one page. Zero indicates no limit.
7752
8270
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -7754,44 +8272,44 @@ declare const ContentHaloRunV1alpha1CommentApiAxiosParamCreator: (configuration?
7754
8272
  * @param {*} [options] Override http request option.
7755
8273
  * @throws {RequiredError}
7756
8274
  */
7757
- listcontentHaloRunV1alpha1Comment: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8275
+ listcontentHaloRunV1alpha1Category(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CategoryList>>;
7758
8276
  /**
7759
- * Update content.halo.run/v1alpha1/Comment
7760
- * @param {string} name Name of comment
7761
- * @param {Comment} [comment] Updated comment
8277
+ * Update content.halo.run/v1alpha1/Category
8278
+ * @param {string} name Name of category
8279
+ * @param {Category} [category] Updated category
7762
8280
  * @param {*} [options] Override http request option.
7763
8281
  * @throws {RequiredError}
7764
8282
  */
7765
- updatecontentHaloRunV1alpha1Comment: (name: string, comment?: Comment, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8283
+ updatecontentHaloRunV1alpha1Category(name: string, category?: Category, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Category>>;
7766
8284
  };
7767
8285
  /**
7768
- * ContentHaloRunV1alpha1CommentApi - functional programming interface
8286
+ * ContentHaloRunV1alpha1CategoryApi - factory interface
7769
8287
  * @export
7770
8288
  */
7771
- declare const ContentHaloRunV1alpha1CommentApiFp: (configuration?: Configuration) => {
8289
+ declare const ContentHaloRunV1alpha1CategoryApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
7772
8290
  /**
7773
- * Create content.halo.run/v1alpha1/Comment
7774
- * @param {Comment} [comment] Fresh comment
8291
+ * Create content.halo.run/v1alpha1/Category
8292
+ * @param {Category} [category] Fresh category
7775
8293
  * @param {*} [options] Override http request option.
7776
8294
  * @throws {RequiredError}
7777
8295
  */
7778
- createcontentHaloRunV1alpha1Comment(comment?: Comment, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Comment>>;
8296
+ createcontentHaloRunV1alpha1Category(category?: Category, options?: any): AxiosPromise<Category>;
7779
8297
  /**
7780
- * Delete content.halo.run/v1alpha1/Comment
7781
- * @param {string} name Name of comment
8298
+ * Delete content.halo.run/v1alpha1/Category
8299
+ * @param {string} name Name of category
7782
8300
  * @param {*} [options] Override http request option.
7783
8301
  * @throws {RequiredError}
7784
8302
  */
7785
- deletecontentHaloRunV1alpha1Comment(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8303
+ deletecontentHaloRunV1alpha1Category(name: string, options?: any): AxiosPromise<void>;
7786
8304
  /**
7787
- * Get content.halo.run/v1alpha1/Comment
7788
- * @param {string} name Name of comment
8305
+ * Get content.halo.run/v1alpha1/Category
8306
+ * @param {string} name Name of category
7789
8307
  * @param {*} [options] Override http request option.
7790
8308
  * @throws {RequiredError}
7791
8309
  */
7792
- getcontentHaloRunV1alpha1Comment(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Comment>>;
8310
+ getcontentHaloRunV1alpha1Category(name: string, options?: any): AxiosPromise<Category>;
7793
8311
  /**
7794
- * List content.halo.run/v1alpha1/Comment
8312
+ * List content.halo.run/v1alpha1/Category
7795
8313
  * @param {number} [page] The page number. Zero indicates no page.
7796
8314
  * @param {number} [size] Size of one page. Zero indicates no limit.
7797
8315
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -7799,44 +8317,818 @@ declare const ContentHaloRunV1alpha1CommentApiFp: (configuration?: Configuration
7799
8317
  * @param {*} [options] Override http request option.
7800
8318
  * @throws {RequiredError}
7801
8319
  */
7802
- listcontentHaloRunV1alpha1Comment(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CommentList>>;
8320
+ listcontentHaloRunV1alpha1Category(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<CategoryList>;
8321
+ /**
8322
+ * Update content.halo.run/v1alpha1/Category
8323
+ * @param {string} name Name of category
8324
+ * @param {Category} [category] Updated category
8325
+ * @param {*} [options] Override http request option.
8326
+ * @throws {RequiredError}
8327
+ */
8328
+ updatecontentHaloRunV1alpha1Category(name: string, category?: Category, options?: any): AxiosPromise<Category>;
8329
+ };
8330
+ /**
8331
+ * Request parameters for createcontentHaloRunV1alpha1Category operation in ContentHaloRunV1alpha1CategoryApi.
8332
+ * @export
8333
+ * @interface ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest
8334
+ */
8335
+ interface ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest {
8336
+ /**
8337
+ * Fresh category
8338
+ * @type {Category}
8339
+ * @memberof ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1Category
8340
+ */
8341
+ readonly category?: Category;
8342
+ }
8343
+ /**
8344
+ * Request parameters for deletecontentHaloRunV1alpha1Category operation in ContentHaloRunV1alpha1CategoryApi.
8345
+ * @export
8346
+ * @interface ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest
8347
+ */
8348
+ interface ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest {
8349
+ /**
8350
+ * Name of category
8351
+ * @type {string}
8352
+ * @memberof ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1Category
8353
+ */
8354
+ readonly name: string;
8355
+ }
8356
+ /**
8357
+ * Request parameters for getcontentHaloRunV1alpha1Category operation in ContentHaloRunV1alpha1CategoryApi.
8358
+ * @export
8359
+ * @interface ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest
8360
+ */
8361
+ interface ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest {
8362
+ /**
8363
+ * Name of category
8364
+ * @type {string}
8365
+ * @memberof ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1Category
8366
+ */
8367
+ readonly name: string;
8368
+ }
8369
+ /**
8370
+ * Request parameters for listcontentHaloRunV1alpha1Category operation in ContentHaloRunV1alpha1CategoryApi.
8371
+ * @export
8372
+ * @interface ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest
8373
+ */
8374
+ interface ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest {
8375
+ /**
8376
+ * The page number. Zero indicates no page.
8377
+ * @type {number}
8378
+ * @memberof ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1Category
8379
+ */
8380
+ readonly page?: number;
8381
+ /**
8382
+ * Size of one page. Zero indicates no limit.
8383
+ * @type {number}
8384
+ * @memberof ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1Category
8385
+ */
8386
+ readonly size?: number;
8387
+ /**
8388
+ * Label selector for filtering.
8389
+ * @type {Array<string>}
8390
+ * @memberof ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1Category
8391
+ */
8392
+ readonly labelSelector?: Array<string>;
8393
+ /**
8394
+ * Field selector for filtering.
8395
+ * @type {Array<string>}
8396
+ * @memberof ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1Category
8397
+ */
8398
+ readonly fieldSelector?: Array<string>;
8399
+ }
8400
+ /**
8401
+ * Request parameters for updatecontentHaloRunV1alpha1Category operation in ContentHaloRunV1alpha1CategoryApi.
8402
+ * @export
8403
+ * @interface ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest
8404
+ */
8405
+ interface ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest {
8406
+ /**
8407
+ * Name of category
8408
+ * @type {string}
8409
+ * @memberof ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1Category
8410
+ */
8411
+ readonly name: string;
8412
+ /**
8413
+ * Updated category
8414
+ * @type {Category}
8415
+ * @memberof ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1Category
8416
+ */
8417
+ readonly category?: Category;
8418
+ }
8419
+ /**
8420
+ * ContentHaloRunV1alpha1CategoryApi - object-oriented interface
8421
+ * @export
8422
+ * @class ContentHaloRunV1alpha1CategoryApi
8423
+ * @extends {BaseAPI}
8424
+ */
8425
+ declare class ContentHaloRunV1alpha1CategoryApi extends BaseAPI {
8426
+ /**
8427
+ * Create content.halo.run/v1alpha1/Category
8428
+ * @param {ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest} requestParameters Request parameters.
8429
+ * @param {*} [options] Override http request option.
8430
+ * @throws {RequiredError}
8431
+ * @memberof ContentHaloRunV1alpha1CategoryApi
8432
+ */
8433
+ createcontentHaloRunV1alpha1Category(requestParameters?: ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Category, any>>;
8434
+ /**
8435
+ * Delete content.halo.run/v1alpha1/Category
8436
+ * @param {ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest} requestParameters Request parameters.
8437
+ * @param {*} [options] Override http request option.
8438
+ * @throws {RequiredError}
8439
+ * @memberof ContentHaloRunV1alpha1CategoryApi
8440
+ */
8441
+ deletecontentHaloRunV1alpha1Category(requestParameters: ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
8442
+ /**
8443
+ * Get content.halo.run/v1alpha1/Category
8444
+ * @param {ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest} requestParameters Request parameters.
8445
+ * @param {*} [options] Override http request option.
8446
+ * @throws {RequiredError}
8447
+ * @memberof ContentHaloRunV1alpha1CategoryApi
8448
+ */
8449
+ getcontentHaloRunV1alpha1Category(requestParameters: ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Category, any>>;
8450
+ /**
8451
+ * List content.halo.run/v1alpha1/Category
8452
+ * @param {ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest} requestParameters Request parameters.
8453
+ * @param {*} [options] Override http request option.
8454
+ * @throws {RequiredError}
8455
+ * @memberof ContentHaloRunV1alpha1CategoryApi
8456
+ */
8457
+ listcontentHaloRunV1alpha1Category(requestParameters?: ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<CategoryList, any>>;
8458
+ /**
8459
+ * Update content.halo.run/v1alpha1/Category
8460
+ * @param {ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest} requestParameters Request parameters.
8461
+ * @param {*} [options] Override http request option.
8462
+ * @throws {RequiredError}
8463
+ * @memberof ContentHaloRunV1alpha1CategoryApi
8464
+ */
8465
+ updatecontentHaloRunV1alpha1Category(requestParameters: ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Category, any>>;
8466
+ }
8467
+
8468
+ /**
8469
+ * ContentHaloRunV1alpha1CommentApi - axios parameter creator
8470
+ * @export
8471
+ */
8472
+ declare const ContentHaloRunV1alpha1CommentApiAxiosParamCreator: (configuration?: Configuration) => {
8473
+ /**
8474
+ * Create content.halo.run/v1alpha1/Comment
8475
+ * @param {Comment} [comment] Fresh comment
8476
+ * @param {*} [options] Override http request option.
8477
+ * @throws {RequiredError}
8478
+ */
8479
+ createcontentHaloRunV1alpha1Comment: (comment?: Comment, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8480
+ /**
8481
+ * Delete content.halo.run/v1alpha1/Comment
8482
+ * @param {string} name Name of comment
8483
+ * @param {*} [options] Override http request option.
8484
+ * @throws {RequiredError}
8485
+ */
8486
+ deletecontentHaloRunV1alpha1Comment: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8487
+ /**
8488
+ * Get content.halo.run/v1alpha1/Comment
8489
+ * @param {string} name Name of comment
8490
+ * @param {*} [options] Override http request option.
8491
+ * @throws {RequiredError}
8492
+ */
8493
+ getcontentHaloRunV1alpha1Comment: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8494
+ /**
8495
+ * List content.halo.run/v1alpha1/Comment
8496
+ * @param {number} [page] The page number. Zero indicates no page.
8497
+ * @param {number} [size] Size of one page. Zero indicates no limit.
8498
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
8499
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
8500
+ * @param {*} [options] Override http request option.
8501
+ * @throws {RequiredError}
8502
+ */
8503
+ listcontentHaloRunV1alpha1Comment: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8504
+ /**
8505
+ * Update content.halo.run/v1alpha1/Comment
8506
+ * @param {string} name Name of comment
8507
+ * @param {Comment} [comment] Updated comment
8508
+ * @param {*} [options] Override http request option.
8509
+ * @throws {RequiredError}
8510
+ */
8511
+ updatecontentHaloRunV1alpha1Comment: (name: string, comment?: Comment, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8512
+ };
8513
+ /**
8514
+ * ContentHaloRunV1alpha1CommentApi - functional programming interface
8515
+ * @export
8516
+ */
8517
+ declare const ContentHaloRunV1alpha1CommentApiFp: (configuration?: Configuration) => {
8518
+ /**
8519
+ * Create content.halo.run/v1alpha1/Comment
8520
+ * @param {Comment} [comment] Fresh comment
8521
+ * @param {*} [options] Override http request option.
8522
+ * @throws {RequiredError}
8523
+ */
8524
+ createcontentHaloRunV1alpha1Comment(comment?: Comment, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Comment>>;
8525
+ /**
8526
+ * Delete content.halo.run/v1alpha1/Comment
8527
+ * @param {string} name Name of comment
8528
+ * @param {*} [options] Override http request option.
8529
+ * @throws {RequiredError}
8530
+ */
8531
+ deletecontentHaloRunV1alpha1Comment(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8532
+ /**
8533
+ * Get content.halo.run/v1alpha1/Comment
8534
+ * @param {string} name Name of comment
8535
+ * @param {*} [options] Override http request option.
8536
+ * @throws {RequiredError}
8537
+ */
8538
+ getcontentHaloRunV1alpha1Comment(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Comment>>;
8539
+ /**
8540
+ * List content.halo.run/v1alpha1/Comment
8541
+ * @param {number} [page] The page number. Zero indicates no page.
8542
+ * @param {number} [size] Size of one page. Zero indicates no limit.
8543
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
8544
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
8545
+ * @param {*} [options] Override http request option.
8546
+ * @throws {RequiredError}
8547
+ */
8548
+ listcontentHaloRunV1alpha1Comment(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CommentList>>;
8549
+ /**
8550
+ * Update content.halo.run/v1alpha1/Comment
8551
+ * @param {string} name Name of comment
8552
+ * @param {Comment} [comment] Updated comment
8553
+ * @param {*} [options] Override http request option.
8554
+ * @throws {RequiredError}
8555
+ */
8556
+ updatecontentHaloRunV1alpha1Comment(name: string, comment?: Comment, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Comment>>;
8557
+ };
8558
+ /**
8559
+ * ContentHaloRunV1alpha1CommentApi - factory interface
8560
+ * @export
8561
+ */
8562
+ declare const ContentHaloRunV1alpha1CommentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
8563
+ /**
8564
+ * Create content.halo.run/v1alpha1/Comment
8565
+ * @param {Comment} [comment] Fresh comment
8566
+ * @param {*} [options] Override http request option.
8567
+ * @throws {RequiredError}
8568
+ */
8569
+ createcontentHaloRunV1alpha1Comment(comment?: Comment, options?: any): AxiosPromise<Comment>;
8570
+ /**
8571
+ * Delete content.halo.run/v1alpha1/Comment
8572
+ * @param {string} name Name of comment
8573
+ * @param {*} [options] Override http request option.
8574
+ * @throws {RequiredError}
8575
+ */
8576
+ deletecontentHaloRunV1alpha1Comment(name: string, options?: any): AxiosPromise<void>;
8577
+ /**
8578
+ * Get content.halo.run/v1alpha1/Comment
8579
+ * @param {string} name Name of comment
8580
+ * @param {*} [options] Override http request option.
8581
+ * @throws {RequiredError}
8582
+ */
8583
+ getcontentHaloRunV1alpha1Comment(name: string, options?: any): AxiosPromise<Comment>;
8584
+ /**
8585
+ * List content.halo.run/v1alpha1/Comment
8586
+ * @param {number} [page] The page number. Zero indicates no page.
8587
+ * @param {number} [size] Size of one page. Zero indicates no limit.
8588
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
8589
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
8590
+ * @param {*} [options] Override http request option.
8591
+ * @throws {RequiredError}
8592
+ */
8593
+ listcontentHaloRunV1alpha1Comment(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<CommentList>;
8594
+ /**
8595
+ * Update content.halo.run/v1alpha1/Comment
8596
+ * @param {string} name Name of comment
8597
+ * @param {Comment} [comment] Updated comment
8598
+ * @param {*} [options] Override http request option.
8599
+ * @throws {RequiredError}
8600
+ */
8601
+ updatecontentHaloRunV1alpha1Comment(name: string, comment?: Comment, options?: any): AxiosPromise<Comment>;
8602
+ };
8603
+ /**
8604
+ * Request parameters for createcontentHaloRunV1alpha1Comment operation in ContentHaloRunV1alpha1CommentApi.
8605
+ * @export
8606
+ * @interface ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest
8607
+ */
8608
+ interface ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest {
8609
+ /**
8610
+ * Fresh comment
8611
+ * @type {Comment}
8612
+ * @memberof ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1Comment
8613
+ */
8614
+ readonly comment?: Comment;
8615
+ }
8616
+ /**
8617
+ * Request parameters for deletecontentHaloRunV1alpha1Comment operation in ContentHaloRunV1alpha1CommentApi.
8618
+ * @export
8619
+ * @interface ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest
8620
+ */
8621
+ interface ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest {
8622
+ /**
8623
+ * Name of comment
8624
+ * @type {string}
8625
+ * @memberof ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1Comment
8626
+ */
8627
+ readonly name: string;
8628
+ }
8629
+ /**
8630
+ * Request parameters for getcontentHaloRunV1alpha1Comment operation in ContentHaloRunV1alpha1CommentApi.
8631
+ * @export
8632
+ * @interface ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest
8633
+ */
8634
+ interface ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest {
8635
+ /**
8636
+ * Name of comment
8637
+ * @type {string}
8638
+ * @memberof ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1Comment
8639
+ */
8640
+ readonly name: string;
8641
+ }
8642
+ /**
8643
+ * Request parameters for listcontentHaloRunV1alpha1Comment operation in ContentHaloRunV1alpha1CommentApi.
8644
+ * @export
8645
+ * @interface ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest
8646
+ */
8647
+ interface ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest {
8648
+ /**
8649
+ * The page number. Zero indicates no page.
8650
+ * @type {number}
8651
+ * @memberof ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1Comment
8652
+ */
8653
+ readonly page?: number;
8654
+ /**
8655
+ * Size of one page. Zero indicates no limit.
8656
+ * @type {number}
8657
+ * @memberof ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1Comment
8658
+ */
8659
+ readonly size?: number;
8660
+ /**
8661
+ * Label selector for filtering.
8662
+ * @type {Array<string>}
8663
+ * @memberof ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1Comment
8664
+ */
8665
+ readonly labelSelector?: Array<string>;
8666
+ /**
8667
+ * Field selector for filtering.
8668
+ * @type {Array<string>}
8669
+ * @memberof ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1Comment
8670
+ */
8671
+ readonly fieldSelector?: Array<string>;
8672
+ }
8673
+ /**
8674
+ * Request parameters for updatecontentHaloRunV1alpha1Comment operation in ContentHaloRunV1alpha1CommentApi.
8675
+ * @export
8676
+ * @interface ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest
8677
+ */
8678
+ interface ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest {
8679
+ /**
8680
+ * Name of comment
8681
+ * @type {string}
8682
+ * @memberof ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1Comment
8683
+ */
8684
+ readonly name: string;
8685
+ /**
8686
+ * Updated comment
8687
+ * @type {Comment}
8688
+ * @memberof ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1Comment
8689
+ */
8690
+ readonly comment?: Comment;
8691
+ }
8692
+ /**
8693
+ * ContentHaloRunV1alpha1CommentApi - object-oriented interface
8694
+ * @export
8695
+ * @class ContentHaloRunV1alpha1CommentApi
8696
+ * @extends {BaseAPI}
8697
+ */
8698
+ declare class ContentHaloRunV1alpha1CommentApi extends BaseAPI {
8699
+ /**
8700
+ * Create content.halo.run/v1alpha1/Comment
8701
+ * @param {ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest} requestParameters Request parameters.
8702
+ * @param {*} [options] Override http request option.
8703
+ * @throws {RequiredError}
8704
+ * @memberof ContentHaloRunV1alpha1CommentApi
8705
+ */
8706
+ createcontentHaloRunV1alpha1Comment(requestParameters?: ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Comment, any>>;
8707
+ /**
8708
+ * Delete content.halo.run/v1alpha1/Comment
8709
+ * @param {ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest} requestParameters Request parameters.
8710
+ * @param {*} [options] Override http request option.
8711
+ * @throws {RequiredError}
8712
+ * @memberof ContentHaloRunV1alpha1CommentApi
8713
+ */
8714
+ deletecontentHaloRunV1alpha1Comment(requestParameters: ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
8715
+ /**
8716
+ * Get content.halo.run/v1alpha1/Comment
8717
+ * @param {ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest} requestParameters Request parameters.
8718
+ * @param {*} [options] Override http request option.
8719
+ * @throws {RequiredError}
8720
+ * @memberof ContentHaloRunV1alpha1CommentApi
8721
+ */
8722
+ getcontentHaloRunV1alpha1Comment(requestParameters: ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Comment, any>>;
8723
+ /**
8724
+ * List content.halo.run/v1alpha1/Comment
8725
+ * @param {ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest} requestParameters Request parameters.
8726
+ * @param {*} [options] Override http request option.
8727
+ * @throws {RequiredError}
8728
+ * @memberof ContentHaloRunV1alpha1CommentApi
8729
+ */
8730
+ listcontentHaloRunV1alpha1Comment(requestParameters?: ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<CommentList, any>>;
8731
+ /**
8732
+ * Update content.halo.run/v1alpha1/Comment
8733
+ * @param {ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest} requestParameters Request parameters.
8734
+ * @param {*} [options] Override http request option.
8735
+ * @throws {RequiredError}
8736
+ * @memberof ContentHaloRunV1alpha1CommentApi
8737
+ */
8738
+ updatecontentHaloRunV1alpha1Comment(requestParameters: ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Comment, any>>;
8739
+ }
8740
+
8741
+ /**
8742
+ * ContentHaloRunV1alpha1PostApi - axios parameter creator
8743
+ * @export
8744
+ */
8745
+ declare const ContentHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Configuration) => {
8746
+ /**
8747
+ * Create content.halo.run/v1alpha1/Post
8748
+ * @param {Post} [post] Fresh post
8749
+ * @param {*} [options] Override http request option.
8750
+ * @throws {RequiredError}
8751
+ */
8752
+ createcontentHaloRunV1alpha1Post: (post?: Post, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8753
+ /**
8754
+ * Delete content.halo.run/v1alpha1/Post
8755
+ * @param {string} name Name of post
8756
+ * @param {*} [options] Override http request option.
8757
+ * @throws {RequiredError}
8758
+ */
8759
+ deletecontentHaloRunV1alpha1Post: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8760
+ /**
8761
+ * Get content.halo.run/v1alpha1/Post
8762
+ * @param {string} name Name of post
8763
+ * @param {*} [options] Override http request option.
8764
+ * @throws {RequiredError}
8765
+ */
8766
+ getcontentHaloRunV1alpha1Post: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8767
+ /**
8768
+ * List content.halo.run/v1alpha1/Post
8769
+ * @param {number} [page] The page number. Zero indicates no page.
8770
+ * @param {number} [size] Size of one page. Zero indicates no limit.
8771
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
8772
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
8773
+ * @param {*} [options] Override http request option.
8774
+ * @throws {RequiredError}
8775
+ */
8776
+ listcontentHaloRunV1alpha1Post: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8777
+ /**
8778
+ * Update content.halo.run/v1alpha1/Post
8779
+ * @param {string} name Name of post
8780
+ * @param {Post} [post] Updated post
8781
+ * @param {*} [options] Override http request option.
8782
+ * @throws {RequiredError}
8783
+ */
8784
+ updatecontentHaloRunV1alpha1Post: (name: string, post?: Post, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8785
+ };
8786
+ /**
8787
+ * ContentHaloRunV1alpha1PostApi - functional programming interface
8788
+ * @export
8789
+ */
8790
+ declare const ContentHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
8791
+ /**
8792
+ * Create content.halo.run/v1alpha1/Post
8793
+ * @param {Post} [post] Fresh post
8794
+ * @param {*} [options] Override http request option.
8795
+ * @throws {RequiredError}
8796
+ */
8797
+ createcontentHaloRunV1alpha1Post(post?: Post, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
8798
+ /**
8799
+ * Delete content.halo.run/v1alpha1/Post
8800
+ * @param {string} name Name of post
8801
+ * @param {*} [options] Override http request option.
8802
+ * @throws {RequiredError}
8803
+ */
8804
+ deletecontentHaloRunV1alpha1Post(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8805
+ /**
8806
+ * Get content.halo.run/v1alpha1/Post
8807
+ * @param {string} name Name of post
8808
+ * @param {*} [options] Override http request option.
8809
+ * @throws {RequiredError}
8810
+ */
8811
+ getcontentHaloRunV1alpha1Post(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
8812
+ /**
8813
+ * List content.halo.run/v1alpha1/Post
8814
+ * @param {number} [page] The page number. Zero indicates no page.
8815
+ * @param {number} [size] Size of one page. Zero indicates no limit.
8816
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
8817
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
8818
+ * @param {*} [options] Override http request option.
8819
+ * @throws {RequiredError}
8820
+ */
8821
+ listcontentHaloRunV1alpha1Post(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PostList>>;
8822
+ /**
8823
+ * Update content.halo.run/v1alpha1/Post
8824
+ * @param {string} name Name of post
8825
+ * @param {Post} [post] Updated post
8826
+ * @param {*} [options] Override http request option.
8827
+ * @throws {RequiredError}
8828
+ */
8829
+ updatecontentHaloRunV1alpha1Post(name: string, post?: Post, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
8830
+ };
8831
+ /**
8832
+ * ContentHaloRunV1alpha1PostApi - factory interface
8833
+ * @export
8834
+ */
8835
+ declare const ContentHaloRunV1alpha1PostApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
8836
+ /**
8837
+ * Create content.halo.run/v1alpha1/Post
8838
+ * @param {Post} [post] Fresh post
8839
+ * @param {*} [options] Override http request option.
8840
+ * @throws {RequiredError}
8841
+ */
8842
+ createcontentHaloRunV1alpha1Post(post?: Post, options?: any): AxiosPromise<Post>;
8843
+ /**
8844
+ * Delete content.halo.run/v1alpha1/Post
8845
+ * @param {string} name Name of post
8846
+ * @param {*} [options] Override http request option.
8847
+ * @throws {RequiredError}
8848
+ */
8849
+ deletecontentHaloRunV1alpha1Post(name: string, options?: any): AxiosPromise<void>;
8850
+ /**
8851
+ * Get content.halo.run/v1alpha1/Post
8852
+ * @param {string} name Name of post
8853
+ * @param {*} [options] Override http request option.
8854
+ * @throws {RequiredError}
8855
+ */
8856
+ getcontentHaloRunV1alpha1Post(name: string, options?: any): AxiosPromise<Post>;
8857
+ /**
8858
+ * List content.halo.run/v1alpha1/Post
8859
+ * @param {number} [page] The page number. Zero indicates no page.
8860
+ * @param {number} [size] Size of one page. Zero indicates no limit.
8861
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
8862
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
8863
+ * @param {*} [options] Override http request option.
8864
+ * @throws {RequiredError}
8865
+ */
8866
+ listcontentHaloRunV1alpha1Post(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PostList>;
8867
+ /**
8868
+ * Update content.halo.run/v1alpha1/Post
8869
+ * @param {string} name Name of post
8870
+ * @param {Post} [post] Updated post
8871
+ * @param {*} [options] Override http request option.
8872
+ * @throws {RequiredError}
8873
+ */
8874
+ updatecontentHaloRunV1alpha1Post(name: string, post?: Post, options?: any): AxiosPromise<Post>;
8875
+ };
8876
+ /**
8877
+ * Request parameters for createcontentHaloRunV1alpha1Post operation in ContentHaloRunV1alpha1PostApi.
8878
+ * @export
8879
+ * @interface ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest
8880
+ */
8881
+ interface ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest {
8882
+ /**
8883
+ * Fresh post
8884
+ * @type {Post}
8885
+ * @memberof ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1Post
8886
+ */
8887
+ readonly post?: Post;
8888
+ }
8889
+ /**
8890
+ * Request parameters for deletecontentHaloRunV1alpha1Post operation in ContentHaloRunV1alpha1PostApi.
8891
+ * @export
8892
+ * @interface ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest
8893
+ */
8894
+ interface ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest {
8895
+ /**
8896
+ * Name of post
8897
+ * @type {string}
8898
+ * @memberof ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1Post
8899
+ */
8900
+ readonly name: string;
8901
+ }
8902
+ /**
8903
+ * Request parameters for getcontentHaloRunV1alpha1Post operation in ContentHaloRunV1alpha1PostApi.
8904
+ * @export
8905
+ * @interface ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest
8906
+ */
8907
+ interface ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest {
8908
+ /**
8909
+ * Name of post
8910
+ * @type {string}
8911
+ * @memberof ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1Post
8912
+ */
8913
+ readonly name: string;
8914
+ }
8915
+ /**
8916
+ * Request parameters for listcontentHaloRunV1alpha1Post operation in ContentHaloRunV1alpha1PostApi.
8917
+ * @export
8918
+ * @interface ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest
8919
+ */
8920
+ interface ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest {
8921
+ /**
8922
+ * The page number. Zero indicates no page.
8923
+ * @type {number}
8924
+ * @memberof ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1Post
8925
+ */
8926
+ readonly page?: number;
8927
+ /**
8928
+ * Size of one page. Zero indicates no limit.
8929
+ * @type {number}
8930
+ * @memberof ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1Post
8931
+ */
8932
+ readonly size?: number;
8933
+ /**
8934
+ * Label selector for filtering.
8935
+ * @type {Array<string>}
8936
+ * @memberof ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1Post
8937
+ */
8938
+ readonly labelSelector?: Array<string>;
8939
+ /**
8940
+ * Field selector for filtering.
8941
+ * @type {Array<string>}
8942
+ * @memberof ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1Post
8943
+ */
8944
+ readonly fieldSelector?: Array<string>;
8945
+ }
8946
+ /**
8947
+ * Request parameters for updatecontentHaloRunV1alpha1Post operation in ContentHaloRunV1alpha1PostApi.
8948
+ * @export
8949
+ * @interface ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest
8950
+ */
8951
+ interface ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest {
8952
+ /**
8953
+ * Name of post
8954
+ * @type {string}
8955
+ * @memberof ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1Post
8956
+ */
8957
+ readonly name: string;
8958
+ /**
8959
+ * Updated post
8960
+ * @type {Post}
8961
+ * @memberof ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1Post
8962
+ */
8963
+ readonly post?: Post;
8964
+ }
8965
+ /**
8966
+ * ContentHaloRunV1alpha1PostApi - object-oriented interface
8967
+ * @export
8968
+ * @class ContentHaloRunV1alpha1PostApi
8969
+ * @extends {BaseAPI}
8970
+ */
8971
+ declare class ContentHaloRunV1alpha1PostApi extends BaseAPI {
8972
+ /**
8973
+ * Create content.halo.run/v1alpha1/Post
8974
+ * @param {ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest} requestParameters Request parameters.
8975
+ * @param {*} [options] Override http request option.
8976
+ * @throws {RequiredError}
8977
+ * @memberof ContentHaloRunV1alpha1PostApi
8978
+ */
8979
+ createcontentHaloRunV1alpha1Post(requestParameters?: ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
8980
+ /**
8981
+ * Delete content.halo.run/v1alpha1/Post
8982
+ * @param {ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest} requestParameters Request parameters.
8983
+ * @param {*} [options] Override http request option.
8984
+ * @throws {RequiredError}
8985
+ * @memberof ContentHaloRunV1alpha1PostApi
8986
+ */
8987
+ deletecontentHaloRunV1alpha1Post(requestParameters: ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
8988
+ /**
8989
+ * Get content.halo.run/v1alpha1/Post
8990
+ * @param {ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest} requestParameters Request parameters.
8991
+ * @param {*} [options] Override http request option.
8992
+ * @throws {RequiredError}
8993
+ * @memberof ContentHaloRunV1alpha1PostApi
8994
+ */
8995
+ getcontentHaloRunV1alpha1Post(requestParameters: ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
8996
+ /**
8997
+ * List content.halo.run/v1alpha1/Post
8998
+ * @param {ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest} requestParameters Request parameters.
8999
+ * @param {*} [options] Override http request option.
9000
+ * @throws {RequiredError}
9001
+ * @memberof ContentHaloRunV1alpha1PostApi
9002
+ */
9003
+ listcontentHaloRunV1alpha1Post(requestParameters?: ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PostList, any>>;
9004
+ /**
9005
+ * Update content.halo.run/v1alpha1/Post
9006
+ * @param {ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest} requestParameters Request parameters.
9007
+ * @param {*} [options] Override http request option.
9008
+ * @throws {RequiredError}
9009
+ * @memberof ContentHaloRunV1alpha1PostApi
9010
+ */
9011
+ updatecontentHaloRunV1alpha1Post(requestParameters: ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
9012
+ }
9013
+
9014
+ /**
9015
+ * ContentHaloRunV1alpha1ReplyApi - axios parameter creator
9016
+ * @export
9017
+ */
9018
+ declare const ContentHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration?: Configuration) => {
9019
+ /**
9020
+ * Create content.halo.run/v1alpha1/Reply
9021
+ * @param {Reply} [reply] Fresh reply
9022
+ * @param {*} [options] Override http request option.
9023
+ * @throws {RequiredError}
9024
+ */
9025
+ createcontentHaloRunV1alpha1Reply: (reply?: Reply, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9026
+ /**
9027
+ * Delete content.halo.run/v1alpha1/Reply
9028
+ * @param {string} name Name of reply
9029
+ * @param {*} [options] Override http request option.
9030
+ * @throws {RequiredError}
9031
+ */
9032
+ deletecontentHaloRunV1alpha1Reply: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9033
+ /**
9034
+ * Get content.halo.run/v1alpha1/Reply
9035
+ * @param {string} name Name of reply
9036
+ * @param {*} [options] Override http request option.
9037
+ * @throws {RequiredError}
9038
+ */
9039
+ getcontentHaloRunV1alpha1Reply: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9040
+ /**
9041
+ * List content.halo.run/v1alpha1/Reply
9042
+ * @param {number} [page] The page number. Zero indicates no page.
9043
+ * @param {number} [size] Size of one page. Zero indicates no limit.
9044
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
9045
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
9046
+ * @param {*} [options] Override http request option.
9047
+ * @throws {RequiredError}
9048
+ */
9049
+ listcontentHaloRunV1alpha1Reply: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9050
+ /**
9051
+ * Update content.halo.run/v1alpha1/Reply
9052
+ * @param {string} name Name of reply
9053
+ * @param {Reply} [reply] Updated reply
9054
+ * @param {*} [options] Override http request option.
9055
+ * @throws {RequiredError}
9056
+ */
9057
+ updatecontentHaloRunV1alpha1Reply: (name: string, reply?: Reply, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9058
+ };
9059
+ /**
9060
+ * ContentHaloRunV1alpha1ReplyApi - functional programming interface
9061
+ * @export
9062
+ */
9063
+ declare const ContentHaloRunV1alpha1ReplyApiFp: (configuration?: Configuration) => {
9064
+ /**
9065
+ * Create content.halo.run/v1alpha1/Reply
9066
+ * @param {Reply} [reply] Fresh reply
9067
+ * @param {*} [options] Override http request option.
9068
+ * @throws {RequiredError}
9069
+ */
9070
+ createcontentHaloRunV1alpha1Reply(reply?: Reply, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Reply>>;
9071
+ /**
9072
+ * Delete content.halo.run/v1alpha1/Reply
9073
+ * @param {string} name Name of reply
9074
+ * @param {*} [options] Override http request option.
9075
+ * @throws {RequiredError}
9076
+ */
9077
+ deletecontentHaloRunV1alpha1Reply(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
9078
+ /**
9079
+ * Get content.halo.run/v1alpha1/Reply
9080
+ * @param {string} name Name of reply
9081
+ * @param {*} [options] Override http request option.
9082
+ * @throws {RequiredError}
9083
+ */
9084
+ getcontentHaloRunV1alpha1Reply(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Reply>>;
9085
+ /**
9086
+ * List content.halo.run/v1alpha1/Reply
9087
+ * @param {number} [page] The page number. Zero indicates no page.
9088
+ * @param {number} [size] Size of one page. Zero indicates no limit.
9089
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
9090
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
9091
+ * @param {*} [options] Override http request option.
9092
+ * @throws {RequiredError}
9093
+ */
9094
+ listcontentHaloRunV1alpha1Reply(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReplyList>>;
7803
9095
  /**
7804
- * Update content.halo.run/v1alpha1/Comment
7805
- * @param {string} name Name of comment
7806
- * @param {Comment} [comment] Updated comment
9096
+ * Update content.halo.run/v1alpha1/Reply
9097
+ * @param {string} name Name of reply
9098
+ * @param {Reply} [reply] Updated reply
7807
9099
  * @param {*} [options] Override http request option.
7808
9100
  * @throws {RequiredError}
7809
9101
  */
7810
- updatecontentHaloRunV1alpha1Comment(name: string, comment?: Comment, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Comment>>;
9102
+ updatecontentHaloRunV1alpha1Reply(name: string, reply?: Reply, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Reply>>;
7811
9103
  };
7812
9104
  /**
7813
- * ContentHaloRunV1alpha1CommentApi - factory interface
9105
+ * ContentHaloRunV1alpha1ReplyApi - factory interface
7814
9106
  * @export
7815
9107
  */
7816
- declare const ContentHaloRunV1alpha1CommentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
9108
+ declare const ContentHaloRunV1alpha1ReplyApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
7817
9109
  /**
7818
- * Create content.halo.run/v1alpha1/Comment
7819
- * @param {Comment} [comment] Fresh comment
9110
+ * Create content.halo.run/v1alpha1/Reply
9111
+ * @param {Reply} [reply] Fresh reply
7820
9112
  * @param {*} [options] Override http request option.
7821
9113
  * @throws {RequiredError}
7822
9114
  */
7823
- createcontentHaloRunV1alpha1Comment(comment?: Comment, options?: any): AxiosPromise<Comment>;
9115
+ createcontentHaloRunV1alpha1Reply(reply?: Reply, options?: any): AxiosPromise<Reply>;
7824
9116
  /**
7825
- * Delete content.halo.run/v1alpha1/Comment
7826
- * @param {string} name Name of comment
9117
+ * Delete content.halo.run/v1alpha1/Reply
9118
+ * @param {string} name Name of reply
7827
9119
  * @param {*} [options] Override http request option.
7828
9120
  * @throws {RequiredError}
7829
9121
  */
7830
- deletecontentHaloRunV1alpha1Comment(name: string, options?: any): AxiosPromise<void>;
9122
+ deletecontentHaloRunV1alpha1Reply(name: string, options?: any): AxiosPromise<void>;
7831
9123
  /**
7832
- * Get content.halo.run/v1alpha1/Comment
7833
- * @param {string} name Name of comment
9124
+ * Get content.halo.run/v1alpha1/Reply
9125
+ * @param {string} name Name of reply
7834
9126
  * @param {*} [options] Override http request option.
7835
9127
  * @throws {RequiredError}
7836
9128
  */
7837
- getcontentHaloRunV1alpha1Comment(name: string, options?: any): AxiosPromise<Comment>;
9129
+ getcontentHaloRunV1alpha1Reply(name: string, options?: any): AxiosPromise<Reply>;
7838
9130
  /**
7839
- * List content.halo.run/v1alpha1/Comment
9131
+ * List content.halo.run/v1alpha1/Reply
7840
9132
  * @param {number} [page] The page number. Zero indicates no page.
7841
9133
  * @param {number} [size] Size of one page. Zero indicates no limit.
7842
9134
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -7844,182 +9136,182 @@ declare const ContentHaloRunV1alpha1CommentApiFactory: (configuration?: Configur
7844
9136
  * @param {*} [options] Override http request option.
7845
9137
  * @throws {RequiredError}
7846
9138
  */
7847
- listcontentHaloRunV1alpha1Comment(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<CommentList>;
9139
+ listcontentHaloRunV1alpha1Reply(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ReplyList>;
7848
9140
  /**
7849
- * Update content.halo.run/v1alpha1/Comment
7850
- * @param {string} name Name of comment
7851
- * @param {Comment} [comment] Updated comment
9141
+ * Update content.halo.run/v1alpha1/Reply
9142
+ * @param {string} name Name of reply
9143
+ * @param {Reply} [reply] Updated reply
7852
9144
  * @param {*} [options] Override http request option.
7853
9145
  * @throws {RequiredError}
7854
9146
  */
7855
- updatecontentHaloRunV1alpha1Comment(name: string, comment?: Comment, options?: any): AxiosPromise<Comment>;
9147
+ updatecontentHaloRunV1alpha1Reply(name: string, reply?: Reply, options?: any): AxiosPromise<Reply>;
7856
9148
  };
7857
9149
  /**
7858
- * Request parameters for createcontentHaloRunV1alpha1Comment operation in ContentHaloRunV1alpha1CommentApi.
9150
+ * Request parameters for createcontentHaloRunV1alpha1Reply operation in ContentHaloRunV1alpha1ReplyApi.
7859
9151
  * @export
7860
- * @interface ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest
9152
+ * @interface ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest
7861
9153
  */
7862
- interface ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest {
9154
+ interface ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest {
7863
9155
  /**
7864
- * Fresh comment
7865
- * @type {Comment}
7866
- * @memberof ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1Comment
9156
+ * Fresh reply
9157
+ * @type {Reply}
9158
+ * @memberof ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1Reply
7867
9159
  */
7868
- readonly comment?: Comment;
9160
+ readonly reply?: Reply;
7869
9161
  }
7870
9162
  /**
7871
- * Request parameters for deletecontentHaloRunV1alpha1Comment operation in ContentHaloRunV1alpha1CommentApi.
9163
+ * Request parameters for deletecontentHaloRunV1alpha1Reply operation in ContentHaloRunV1alpha1ReplyApi.
7872
9164
  * @export
7873
- * @interface ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest
9165
+ * @interface ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest
7874
9166
  */
7875
- interface ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest {
9167
+ interface ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest {
7876
9168
  /**
7877
- * Name of comment
9169
+ * Name of reply
7878
9170
  * @type {string}
7879
- * @memberof ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1Comment
9171
+ * @memberof ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1Reply
7880
9172
  */
7881
9173
  readonly name: string;
7882
9174
  }
7883
9175
  /**
7884
- * Request parameters for getcontentHaloRunV1alpha1Comment operation in ContentHaloRunV1alpha1CommentApi.
9176
+ * Request parameters for getcontentHaloRunV1alpha1Reply operation in ContentHaloRunV1alpha1ReplyApi.
7885
9177
  * @export
7886
- * @interface ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest
9178
+ * @interface ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest
7887
9179
  */
7888
- interface ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest {
9180
+ interface ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest {
7889
9181
  /**
7890
- * Name of comment
9182
+ * Name of reply
7891
9183
  * @type {string}
7892
- * @memberof ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1Comment
9184
+ * @memberof ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1Reply
7893
9185
  */
7894
9186
  readonly name: string;
7895
9187
  }
7896
9188
  /**
7897
- * Request parameters for listcontentHaloRunV1alpha1Comment operation in ContentHaloRunV1alpha1CommentApi.
9189
+ * Request parameters for listcontentHaloRunV1alpha1Reply operation in ContentHaloRunV1alpha1ReplyApi.
7898
9190
  * @export
7899
- * @interface ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest
9191
+ * @interface ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest
7900
9192
  */
7901
- interface ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest {
9193
+ interface ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest {
7902
9194
  /**
7903
9195
  * The page number. Zero indicates no page.
7904
9196
  * @type {number}
7905
- * @memberof ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1Comment
9197
+ * @memberof ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1Reply
7906
9198
  */
7907
9199
  readonly page?: number;
7908
9200
  /**
7909
9201
  * Size of one page. Zero indicates no limit.
7910
9202
  * @type {number}
7911
- * @memberof ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1Comment
9203
+ * @memberof ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1Reply
7912
9204
  */
7913
9205
  readonly size?: number;
7914
9206
  /**
7915
9207
  * Label selector for filtering.
7916
9208
  * @type {Array<string>}
7917
- * @memberof ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1Comment
9209
+ * @memberof ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1Reply
7918
9210
  */
7919
9211
  readonly labelSelector?: Array<string>;
7920
9212
  /**
7921
9213
  * Field selector for filtering.
7922
9214
  * @type {Array<string>}
7923
- * @memberof ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1Comment
9215
+ * @memberof ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1Reply
7924
9216
  */
7925
9217
  readonly fieldSelector?: Array<string>;
7926
9218
  }
7927
9219
  /**
7928
- * Request parameters for updatecontentHaloRunV1alpha1Comment operation in ContentHaloRunV1alpha1CommentApi.
9220
+ * Request parameters for updatecontentHaloRunV1alpha1Reply operation in ContentHaloRunV1alpha1ReplyApi.
7929
9221
  * @export
7930
- * @interface ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest
9222
+ * @interface ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest
7931
9223
  */
7932
- interface ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest {
9224
+ interface ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest {
7933
9225
  /**
7934
- * Name of comment
9226
+ * Name of reply
7935
9227
  * @type {string}
7936
- * @memberof ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1Comment
9228
+ * @memberof ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1Reply
7937
9229
  */
7938
9230
  readonly name: string;
7939
9231
  /**
7940
- * Updated comment
7941
- * @type {Comment}
7942
- * @memberof ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1Comment
9232
+ * Updated reply
9233
+ * @type {Reply}
9234
+ * @memberof ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1Reply
7943
9235
  */
7944
- readonly comment?: Comment;
9236
+ readonly reply?: Reply;
7945
9237
  }
7946
9238
  /**
7947
- * ContentHaloRunV1alpha1CommentApi - object-oriented interface
9239
+ * ContentHaloRunV1alpha1ReplyApi - object-oriented interface
7948
9240
  * @export
7949
- * @class ContentHaloRunV1alpha1CommentApi
9241
+ * @class ContentHaloRunV1alpha1ReplyApi
7950
9242
  * @extends {BaseAPI}
7951
9243
  */
7952
- declare class ContentHaloRunV1alpha1CommentApi extends BaseAPI {
9244
+ declare class ContentHaloRunV1alpha1ReplyApi extends BaseAPI {
7953
9245
  /**
7954
- * Create content.halo.run/v1alpha1/Comment
7955
- * @param {ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest} requestParameters Request parameters.
9246
+ * Create content.halo.run/v1alpha1/Reply
9247
+ * @param {ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest} requestParameters Request parameters.
7956
9248
  * @param {*} [options] Override http request option.
7957
9249
  * @throws {RequiredError}
7958
- * @memberof ContentHaloRunV1alpha1CommentApi
9250
+ * @memberof ContentHaloRunV1alpha1ReplyApi
7959
9251
  */
7960
- createcontentHaloRunV1alpha1Comment(requestParameters?: ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Comment, any>>;
9252
+ createcontentHaloRunV1alpha1Reply(requestParameters?: ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Reply, any>>;
7961
9253
  /**
7962
- * Delete content.halo.run/v1alpha1/Comment
7963
- * @param {ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest} requestParameters Request parameters.
9254
+ * Delete content.halo.run/v1alpha1/Reply
9255
+ * @param {ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest} requestParameters Request parameters.
7964
9256
  * @param {*} [options] Override http request option.
7965
9257
  * @throws {RequiredError}
7966
- * @memberof ContentHaloRunV1alpha1CommentApi
9258
+ * @memberof ContentHaloRunV1alpha1ReplyApi
7967
9259
  */
7968
- deletecontentHaloRunV1alpha1Comment(requestParameters: ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
9260
+ deletecontentHaloRunV1alpha1Reply(requestParameters: ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
7969
9261
  /**
7970
- * Get content.halo.run/v1alpha1/Comment
7971
- * @param {ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest} requestParameters Request parameters.
9262
+ * Get content.halo.run/v1alpha1/Reply
9263
+ * @param {ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest} requestParameters Request parameters.
7972
9264
  * @param {*} [options] Override http request option.
7973
9265
  * @throws {RequiredError}
7974
- * @memberof ContentHaloRunV1alpha1CommentApi
9266
+ * @memberof ContentHaloRunV1alpha1ReplyApi
7975
9267
  */
7976
- getcontentHaloRunV1alpha1Comment(requestParameters: ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Comment, any>>;
9268
+ getcontentHaloRunV1alpha1Reply(requestParameters: ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Reply, any>>;
7977
9269
  /**
7978
- * List content.halo.run/v1alpha1/Comment
7979
- * @param {ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest} requestParameters Request parameters.
9270
+ * List content.halo.run/v1alpha1/Reply
9271
+ * @param {ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest} requestParameters Request parameters.
7980
9272
  * @param {*} [options] Override http request option.
7981
9273
  * @throws {RequiredError}
7982
- * @memberof ContentHaloRunV1alpha1CommentApi
9274
+ * @memberof ContentHaloRunV1alpha1ReplyApi
7983
9275
  */
7984
- listcontentHaloRunV1alpha1Comment(requestParameters?: ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<CommentList, any>>;
9276
+ listcontentHaloRunV1alpha1Reply(requestParameters?: ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ReplyList, any>>;
7985
9277
  /**
7986
- * Update content.halo.run/v1alpha1/Comment
7987
- * @param {ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest} requestParameters Request parameters.
9278
+ * Update content.halo.run/v1alpha1/Reply
9279
+ * @param {ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest} requestParameters Request parameters.
7988
9280
  * @param {*} [options] Override http request option.
7989
9281
  * @throws {RequiredError}
7990
- * @memberof ContentHaloRunV1alpha1CommentApi
9282
+ * @memberof ContentHaloRunV1alpha1ReplyApi
7991
9283
  */
7992
- updatecontentHaloRunV1alpha1Comment(requestParameters: ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Comment, any>>;
9284
+ updatecontentHaloRunV1alpha1Reply(requestParameters: ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Reply, any>>;
7993
9285
  }
7994
9286
 
7995
9287
  /**
7996
- * ContentHaloRunV1alpha1PostApi - axios parameter creator
9288
+ * ContentHaloRunV1alpha1SinglePageApi - axios parameter creator
7997
9289
  * @export
7998
9290
  */
7999
- declare const ContentHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Configuration) => {
9291
+ declare const ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configuration?: Configuration) => {
8000
9292
  /**
8001
- * Create content.halo.run/v1alpha1/Post
8002
- * @param {Post} [post] Fresh post
9293
+ * Create content.halo.run/v1alpha1/SinglePage
9294
+ * @param {SinglePage} [singlePage] Fresh singlepage
8003
9295
  * @param {*} [options] Override http request option.
8004
9296
  * @throws {RequiredError}
8005
9297
  */
8006
- createcontentHaloRunV1alpha1Post: (post?: Post, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9298
+ createcontentHaloRunV1alpha1SinglePage: (singlePage?: SinglePage, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8007
9299
  /**
8008
- * Delete content.halo.run/v1alpha1/Post
8009
- * @param {string} name Name of post
9300
+ * Delete content.halo.run/v1alpha1/SinglePage
9301
+ * @param {string} name Name of singlepage
8010
9302
  * @param {*} [options] Override http request option.
8011
9303
  * @throws {RequiredError}
8012
9304
  */
8013
- deletecontentHaloRunV1alpha1Post: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9305
+ deletecontentHaloRunV1alpha1SinglePage: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8014
9306
  /**
8015
- * Get content.halo.run/v1alpha1/Post
8016
- * @param {string} name Name of post
9307
+ * Get content.halo.run/v1alpha1/SinglePage
9308
+ * @param {string} name Name of singlepage
8017
9309
  * @param {*} [options] Override http request option.
8018
9310
  * @throws {RequiredError}
8019
9311
  */
8020
- getcontentHaloRunV1alpha1Post: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9312
+ getcontentHaloRunV1alpha1SinglePage: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8021
9313
  /**
8022
- * List content.halo.run/v1alpha1/Post
9314
+ * List content.halo.run/v1alpha1/SinglePage
8023
9315
  * @param {number} [page] The page number. Zero indicates no page.
8024
9316
  * @param {number} [size] Size of one page. Zero indicates no limit.
8025
9317
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -8027,44 +9319,44 @@ declare const ContentHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: C
8027
9319
  * @param {*} [options] Override http request option.
8028
9320
  * @throws {RequiredError}
8029
9321
  */
8030
- listcontentHaloRunV1alpha1Post: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9322
+ listcontentHaloRunV1alpha1SinglePage: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8031
9323
  /**
8032
- * Update content.halo.run/v1alpha1/Post
8033
- * @param {string} name Name of post
8034
- * @param {Post} [post] Updated post
9324
+ * Update content.halo.run/v1alpha1/SinglePage
9325
+ * @param {string} name Name of singlepage
9326
+ * @param {SinglePage} [singlePage] Updated singlepage
8035
9327
  * @param {*} [options] Override http request option.
8036
9328
  * @throws {RequiredError}
8037
9329
  */
8038
- updatecontentHaloRunV1alpha1Post: (name: string, post?: Post, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9330
+ updatecontentHaloRunV1alpha1SinglePage: (name: string, singlePage?: SinglePage, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8039
9331
  };
8040
9332
  /**
8041
- * ContentHaloRunV1alpha1PostApi - functional programming interface
9333
+ * ContentHaloRunV1alpha1SinglePageApi - functional programming interface
8042
9334
  * @export
8043
9335
  */
8044
- declare const ContentHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
9336
+ declare const ContentHaloRunV1alpha1SinglePageApiFp: (configuration?: Configuration) => {
8045
9337
  /**
8046
- * Create content.halo.run/v1alpha1/Post
8047
- * @param {Post} [post] Fresh post
9338
+ * Create content.halo.run/v1alpha1/SinglePage
9339
+ * @param {SinglePage} [singlePage] Fresh singlepage
8048
9340
  * @param {*} [options] Override http request option.
8049
9341
  * @throws {RequiredError}
8050
9342
  */
8051
- createcontentHaloRunV1alpha1Post(post?: Post, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
9343
+ createcontentHaloRunV1alpha1SinglePage(singlePage?: SinglePage, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
8052
9344
  /**
8053
- * Delete content.halo.run/v1alpha1/Post
8054
- * @param {string} name Name of post
9345
+ * Delete content.halo.run/v1alpha1/SinglePage
9346
+ * @param {string} name Name of singlepage
8055
9347
  * @param {*} [options] Override http request option.
8056
9348
  * @throws {RequiredError}
8057
9349
  */
8058
- deletecontentHaloRunV1alpha1Post(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
9350
+ deletecontentHaloRunV1alpha1SinglePage(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8059
9351
  /**
8060
- * Get content.halo.run/v1alpha1/Post
8061
- * @param {string} name Name of post
9352
+ * Get content.halo.run/v1alpha1/SinglePage
9353
+ * @param {string} name Name of singlepage
8062
9354
  * @param {*} [options] Override http request option.
8063
9355
  * @throws {RequiredError}
8064
9356
  */
8065
- getcontentHaloRunV1alpha1Post(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
9357
+ getcontentHaloRunV1alpha1SinglePage(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
8066
9358
  /**
8067
- * List content.halo.run/v1alpha1/Post
9359
+ * List content.halo.run/v1alpha1/SinglePage
8068
9360
  * @param {number} [page] The page number. Zero indicates no page.
8069
9361
  * @param {number} [size] Size of one page. Zero indicates no limit.
8070
9362
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -8072,44 +9364,44 @@ declare const ContentHaloRunV1alpha1PostApiFp: (configuration?: Configuration) =
8072
9364
  * @param {*} [options] Override http request option.
8073
9365
  * @throws {RequiredError}
8074
9366
  */
8075
- listcontentHaloRunV1alpha1Post(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PostList>>;
9367
+ listcontentHaloRunV1alpha1SinglePage(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePageList>>;
8076
9368
  /**
8077
- * Update content.halo.run/v1alpha1/Post
8078
- * @param {string} name Name of post
8079
- * @param {Post} [post] Updated post
9369
+ * Update content.halo.run/v1alpha1/SinglePage
9370
+ * @param {string} name Name of singlepage
9371
+ * @param {SinglePage} [singlePage] Updated singlepage
8080
9372
  * @param {*} [options] Override http request option.
8081
9373
  * @throws {RequiredError}
8082
9374
  */
8083
- updatecontentHaloRunV1alpha1Post(name: string, post?: Post, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
9375
+ updatecontentHaloRunV1alpha1SinglePage(name: string, singlePage?: SinglePage, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
8084
9376
  };
8085
9377
  /**
8086
- * ContentHaloRunV1alpha1PostApi - factory interface
9378
+ * ContentHaloRunV1alpha1SinglePageApi - factory interface
8087
9379
  * @export
8088
9380
  */
8089
- declare const ContentHaloRunV1alpha1PostApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
9381
+ declare const ContentHaloRunV1alpha1SinglePageApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
8090
9382
  /**
8091
- * Create content.halo.run/v1alpha1/Post
8092
- * @param {Post} [post] Fresh post
9383
+ * Create content.halo.run/v1alpha1/SinglePage
9384
+ * @param {SinglePage} [singlePage] Fresh singlepage
8093
9385
  * @param {*} [options] Override http request option.
8094
9386
  * @throws {RequiredError}
8095
9387
  */
8096
- createcontentHaloRunV1alpha1Post(post?: Post, options?: any): AxiosPromise<Post>;
9388
+ createcontentHaloRunV1alpha1SinglePage(singlePage?: SinglePage, options?: any): AxiosPromise<SinglePage>;
8097
9389
  /**
8098
- * Delete content.halo.run/v1alpha1/Post
8099
- * @param {string} name Name of post
9390
+ * Delete content.halo.run/v1alpha1/SinglePage
9391
+ * @param {string} name Name of singlepage
8100
9392
  * @param {*} [options] Override http request option.
8101
9393
  * @throws {RequiredError}
8102
9394
  */
8103
- deletecontentHaloRunV1alpha1Post(name: string, options?: any): AxiosPromise<void>;
9395
+ deletecontentHaloRunV1alpha1SinglePage(name: string, options?: any): AxiosPromise<void>;
8104
9396
  /**
8105
- * Get content.halo.run/v1alpha1/Post
8106
- * @param {string} name Name of post
9397
+ * Get content.halo.run/v1alpha1/SinglePage
9398
+ * @param {string} name Name of singlepage
8107
9399
  * @param {*} [options] Override http request option.
8108
9400
  * @throws {RequiredError}
8109
9401
  */
8110
- getcontentHaloRunV1alpha1Post(name: string, options?: any): AxiosPromise<Post>;
9402
+ getcontentHaloRunV1alpha1SinglePage(name: string, options?: any): AxiosPromise<SinglePage>;
8111
9403
  /**
8112
- * List content.halo.run/v1alpha1/Post
9404
+ * List content.halo.run/v1alpha1/SinglePage
8113
9405
  * @param {number} [page] The page number. Zero indicates no page.
8114
9406
  * @param {number} [size] Size of one page. Zero indicates no limit.
8115
9407
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -8117,182 +9409,182 @@ declare const ContentHaloRunV1alpha1PostApiFactory: (configuration?: Configurati
8117
9409
  * @param {*} [options] Override http request option.
8118
9410
  * @throws {RequiredError}
8119
9411
  */
8120
- listcontentHaloRunV1alpha1Post(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PostList>;
9412
+ listcontentHaloRunV1alpha1SinglePage(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<SinglePageList>;
8121
9413
  /**
8122
- * Update content.halo.run/v1alpha1/Post
8123
- * @param {string} name Name of post
8124
- * @param {Post} [post] Updated post
9414
+ * Update content.halo.run/v1alpha1/SinglePage
9415
+ * @param {string} name Name of singlepage
9416
+ * @param {SinglePage} [singlePage] Updated singlepage
8125
9417
  * @param {*} [options] Override http request option.
8126
9418
  * @throws {RequiredError}
8127
9419
  */
8128
- updatecontentHaloRunV1alpha1Post(name: string, post?: Post, options?: any): AxiosPromise<Post>;
9420
+ updatecontentHaloRunV1alpha1SinglePage(name: string, singlePage?: SinglePage, options?: any): AxiosPromise<SinglePage>;
8129
9421
  };
8130
9422
  /**
8131
- * Request parameters for createcontentHaloRunV1alpha1Post operation in ContentHaloRunV1alpha1PostApi.
9423
+ * Request parameters for createcontentHaloRunV1alpha1SinglePage operation in ContentHaloRunV1alpha1SinglePageApi.
8132
9424
  * @export
8133
- * @interface ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest
9425
+ * @interface ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest
8134
9426
  */
8135
- interface ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest {
9427
+ interface ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest {
8136
9428
  /**
8137
- * Fresh post
8138
- * @type {Post}
8139
- * @memberof ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1Post
9429
+ * Fresh singlepage
9430
+ * @type {SinglePage}
9431
+ * @memberof ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePage
8140
9432
  */
8141
- readonly post?: Post;
9433
+ readonly singlePage?: SinglePage;
8142
9434
  }
8143
9435
  /**
8144
- * Request parameters for deletecontentHaloRunV1alpha1Post operation in ContentHaloRunV1alpha1PostApi.
9436
+ * Request parameters for deletecontentHaloRunV1alpha1SinglePage operation in ContentHaloRunV1alpha1SinglePageApi.
8145
9437
  * @export
8146
- * @interface ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest
9438
+ * @interface ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest
8147
9439
  */
8148
- interface ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest {
9440
+ interface ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest {
8149
9441
  /**
8150
- * Name of post
9442
+ * Name of singlepage
8151
9443
  * @type {string}
8152
- * @memberof ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1Post
9444
+ * @memberof ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePage
8153
9445
  */
8154
9446
  readonly name: string;
8155
9447
  }
8156
9448
  /**
8157
- * Request parameters for getcontentHaloRunV1alpha1Post operation in ContentHaloRunV1alpha1PostApi.
9449
+ * Request parameters for getcontentHaloRunV1alpha1SinglePage operation in ContentHaloRunV1alpha1SinglePageApi.
8158
9450
  * @export
8159
- * @interface ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest
9451
+ * @interface ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest
8160
9452
  */
8161
- interface ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest {
9453
+ interface ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest {
8162
9454
  /**
8163
- * Name of post
9455
+ * Name of singlepage
8164
9456
  * @type {string}
8165
- * @memberof ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1Post
9457
+ * @memberof ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePage
8166
9458
  */
8167
9459
  readonly name: string;
8168
9460
  }
8169
9461
  /**
8170
- * Request parameters for listcontentHaloRunV1alpha1Post operation in ContentHaloRunV1alpha1PostApi.
9462
+ * Request parameters for listcontentHaloRunV1alpha1SinglePage operation in ContentHaloRunV1alpha1SinglePageApi.
8171
9463
  * @export
8172
- * @interface ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest
9464
+ * @interface ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest
8173
9465
  */
8174
- interface ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest {
9466
+ interface ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest {
8175
9467
  /**
8176
9468
  * The page number. Zero indicates no page.
8177
9469
  * @type {number}
8178
- * @memberof ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1Post
9470
+ * @memberof ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePage
8179
9471
  */
8180
9472
  readonly page?: number;
8181
9473
  /**
8182
9474
  * Size of one page. Zero indicates no limit.
8183
9475
  * @type {number}
8184
- * @memberof ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1Post
9476
+ * @memberof ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePage
8185
9477
  */
8186
9478
  readonly size?: number;
8187
9479
  /**
8188
9480
  * Label selector for filtering.
8189
9481
  * @type {Array<string>}
8190
- * @memberof ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1Post
9482
+ * @memberof ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePage
8191
9483
  */
8192
9484
  readonly labelSelector?: Array<string>;
8193
9485
  /**
8194
9486
  * Field selector for filtering.
8195
9487
  * @type {Array<string>}
8196
- * @memberof ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1Post
9488
+ * @memberof ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePage
8197
9489
  */
8198
9490
  readonly fieldSelector?: Array<string>;
8199
9491
  }
8200
9492
  /**
8201
- * Request parameters for updatecontentHaloRunV1alpha1Post operation in ContentHaloRunV1alpha1PostApi.
9493
+ * Request parameters for updatecontentHaloRunV1alpha1SinglePage operation in ContentHaloRunV1alpha1SinglePageApi.
8202
9494
  * @export
8203
- * @interface ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest
9495
+ * @interface ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest
8204
9496
  */
8205
- interface ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest {
9497
+ interface ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest {
8206
9498
  /**
8207
- * Name of post
9499
+ * Name of singlepage
8208
9500
  * @type {string}
8209
- * @memberof ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1Post
9501
+ * @memberof ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePage
8210
9502
  */
8211
9503
  readonly name: string;
8212
9504
  /**
8213
- * Updated post
8214
- * @type {Post}
8215
- * @memberof ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1Post
9505
+ * Updated singlepage
9506
+ * @type {SinglePage}
9507
+ * @memberof ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePage
8216
9508
  */
8217
- readonly post?: Post;
9509
+ readonly singlePage?: SinglePage;
8218
9510
  }
8219
9511
  /**
8220
- * ContentHaloRunV1alpha1PostApi - object-oriented interface
9512
+ * ContentHaloRunV1alpha1SinglePageApi - object-oriented interface
8221
9513
  * @export
8222
- * @class ContentHaloRunV1alpha1PostApi
9514
+ * @class ContentHaloRunV1alpha1SinglePageApi
8223
9515
  * @extends {BaseAPI}
8224
9516
  */
8225
- declare class ContentHaloRunV1alpha1PostApi extends BaseAPI {
9517
+ declare class ContentHaloRunV1alpha1SinglePageApi extends BaseAPI {
8226
9518
  /**
8227
- * Create content.halo.run/v1alpha1/Post
8228
- * @param {ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest} requestParameters Request parameters.
9519
+ * Create content.halo.run/v1alpha1/SinglePage
9520
+ * @param {ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest} requestParameters Request parameters.
8229
9521
  * @param {*} [options] Override http request option.
8230
9522
  * @throws {RequiredError}
8231
- * @memberof ContentHaloRunV1alpha1PostApi
9523
+ * @memberof ContentHaloRunV1alpha1SinglePageApi
8232
9524
  */
8233
- createcontentHaloRunV1alpha1Post(requestParameters?: ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
9525
+ createcontentHaloRunV1alpha1SinglePage(requestParameters?: ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
8234
9526
  /**
8235
- * Delete content.halo.run/v1alpha1/Post
8236
- * @param {ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest} requestParameters Request parameters.
9527
+ * Delete content.halo.run/v1alpha1/SinglePage
9528
+ * @param {ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest} requestParameters Request parameters.
8237
9529
  * @param {*} [options] Override http request option.
8238
9530
  * @throws {RequiredError}
8239
- * @memberof ContentHaloRunV1alpha1PostApi
9531
+ * @memberof ContentHaloRunV1alpha1SinglePageApi
8240
9532
  */
8241
- deletecontentHaloRunV1alpha1Post(requestParameters: ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
9533
+ deletecontentHaloRunV1alpha1SinglePage(requestParameters: ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
8242
9534
  /**
8243
- * Get content.halo.run/v1alpha1/Post
8244
- * @param {ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest} requestParameters Request parameters.
9535
+ * Get content.halo.run/v1alpha1/SinglePage
9536
+ * @param {ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest} requestParameters Request parameters.
8245
9537
  * @param {*} [options] Override http request option.
8246
9538
  * @throws {RequiredError}
8247
- * @memberof ContentHaloRunV1alpha1PostApi
9539
+ * @memberof ContentHaloRunV1alpha1SinglePageApi
8248
9540
  */
8249
- getcontentHaloRunV1alpha1Post(requestParameters: ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
9541
+ getcontentHaloRunV1alpha1SinglePage(requestParameters: ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
8250
9542
  /**
8251
- * List content.halo.run/v1alpha1/Post
8252
- * @param {ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest} requestParameters Request parameters.
9543
+ * List content.halo.run/v1alpha1/SinglePage
9544
+ * @param {ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest} requestParameters Request parameters.
8253
9545
  * @param {*} [options] Override http request option.
8254
9546
  * @throws {RequiredError}
8255
- * @memberof ContentHaloRunV1alpha1PostApi
9547
+ * @memberof ContentHaloRunV1alpha1SinglePageApi
8256
9548
  */
8257
- listcontentHaloRunV1alpha1Post(requestParameters?: ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PostList, any>>;
9549
+ listcontentHaloRunV1alpha1SinglePage(requestParameters?: ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePageList, any>>;
8258
9550
  /**
8259
- * Update content.halo.run/v1alpha1/Post
8260
- * @param {ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest} requestParameters Request parameters.
9551
+ * Update content.halo.run/v1alpha1/SinglePage
9552
+ * @param {ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest} requestParameters Request parameters.
8261
9553
  * @param {*} [options] Override http request option.
8262
9554
  * @throws {RequiredError}
8263
- * @memberof ContentHaloRunV1alpha1PostApi
9555
+ * @memberof ContentHaloRunV1alpha1SinglePageApi
8264
9556
  */
8265
- updatecontentHaloRunV1alpha1Post(requestParameters: ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
9557
+ updatecontentHaloRunV1alpha1SinglePage(requestParameters: ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
8266
9558
  }
8267
9559
 
8268
9560
  /**
8269
- * ContentHaloRunV1alpha1ReplyApi - axios parameter creator
9561
+ * ContentHaloRunV1alpha1SnapshotApi - axios parameter creator
8270
9562
  * @export
8271
9563
  */
8272
- declare const ContentHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration?: Configuration) => {
9564
+ declare const ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator: (configuration?: Configuration) => {
8273
9565
  /**
8274
- * Create content.halo.run/v1alpha1/Reply
8275
- * @param {Reply} [reply] Fresh reply
9566
+ * Create content.halo.run/v1alpha1/Snapshot
9567
+ * @param {Snapshot} [snapshot] Fresh snapshot
8276
9568
  * @param {*} [options] Override http request option.
8277
9569
  * @throws {RequiredError}
8278
9570
  */
8279
- createcontentHaloRunV1alpha1Reply: (reply?: Reply, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9571
+ createcontentHaloRunV1alpha1Snapshot: (snapshot?: Snapshot, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8280
9572
  /**
8281
- * Delete content.halo.run/v1alpha1/Reply
8282
- * @param {string} name Name of reply
9573
+ * Delete content.halo.run/v1alpha1/Snapshot
9574
+ * @param {string} name Name of snapshot
8283
9575
  * @param {*} [options] Override http request option.
8284
9576
  * @throws {RequiredError}
8285
9577
  */
8286
- deletecontentHaloRunV1alpha1Reply: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9578
+ deletecontentHaloRunV1alpha1Snapshot: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8287
9579
  /**
8288
- * Get content.halo.run/v1alpha1/Reply
8289
- * @param {string} name Name of reply
9580
+ * Get content.halo.run/v1alpha1/Snapshot
9581
+ * @param {string} name Name of snapshot
8290
9582
  * @param {*} [options] Override http request option.
8291
9583
  * @throws {RequiredError}
8292
9584
  */
8293
- getcontentHaloRunV1alpha1Reply: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9585
+ getcontentHaloRunV1alpha1Snapshot: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8294
9586
  /**
8295
- * List content.halo.run/v1alpha1/Reply
9587
+ * List content.halo.run/v1alpha1/Snapshot
8296
9588
  * @param {number} [page] The page number. Zero indicates no page.
8297
9589
  * @param {number} [size] Size of one page. Zero indicates no limit.
8298
9590
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -8300,44 +9592,44 @@ declare const ContentHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration?:
8300
9592
  * @param {*} [options] Override http request option.
8301
9593
  * @throws {RequiredError}
8302
9594
  */
8303
- listcontentHaloRunV1alpha1Reply: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9595
+ listcontentHaloRunV1alpha1Snapshot: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8304
9596
  /**
8305
- * Update content.halo.run/v1alpha1/Reply
8306
- * @param {string} name Name of reply
8307
- * @param {Reply} [reply] Updated reply
9597
+ * Update content.halo.run/v1alpha1/Snapshot
9598
+ * @param {string} name Name of snapshot
9599
+ * @param {Snapshot} [snapshot] Updated snapshot
8308
9600
  * @param {*} [options] Override http request option.
8309
9601
  * @throws {RequiredError}
8310
9602
  */
8311
- updatecontentHaloRunV1alpha1Reply: (name: string, reply?: Reply, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9603
+ updatecontentHaloRunV1alpha1Snapshot: (name: string, snapshot?: Snapshot, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8312
9604
  };
8313
9605
  /**
8314
- * ContentHaloRunV1alpha1ReplyApi - functional programming interface
9606
+ * ContentHaloRunV1alpha1SnapshotApi - functional programming interface
8315
9607
  * @export
8316
9608
  */
8317
- declare const ContentHaloRunV1alpha1ReplyApiFp: (configuration?: Configuration) => {
9609
+ declare const ContentHaloRunV1alpha1SnapshotApiFp: (configuration?: Configuration) => {
8318
9610
  /**
8319
- * Create content.halo.run/v1alpha1/Reply
8320
- * @param {Reply} [reply] Fresh reply
9611
+ * Create content.halo.run/v1alpha1/Snapshot
9612
+ * @param {Snapshot} [snapshot] Fresh snapshot
8321
9613
  * @param {*} [options] Override http request option.
8322
9614
  * @throws {RequiredError}
8323
9615
  */
8324
- createcontentHaloRunV1alpha1Reply(reply?: Reply, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Reply>>;
9616
+ createcontentHaloRunV1alpha1Snapshot(snapshot?: Snapshot, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Snapshot>>;
8325
9617
  /**
8326
- * Delete content.halo.run/v1alpha1/Reply
8327
- * @param {string} name Name of reply
9618
+ * Delete content.halo.run/v1alpha1/Snapshot
9619
+ * @param {string} name Name of snapshot
8328
9620
  * @param {*} [options] Override http request option.
8329
9621
  * @throws {RequiredError}
8330
9622
  */
8331
- deletecontentHaloRunV1alpha1Reply(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
9623
+ deletecontentHaloRunV1alpha1Snapshot(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8332
9624
  /**
8333
- * Get content.halo.run/v1alpha1/Reply
8334
- * @param {string} name Name of reply
9625
+ * Get content.halo.run/v1alpha1/Snapshot
9626
+ * @param {string} name Name of snapshot
8335
9627
  * @param {*} [options] Override http request option.
8336
9628
  * @throws {RequiredError}
8337
9629
  */
8338
- getcontentHaloRunV1alpha1Reply(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Reply>>;
9630
+ getcontentHaloRunV1alpha1Snapshot(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Snapshot>>;
8339
9631
  /**
8340
- * List content.halo.run/v1alpha1/Reply
9632
+ * List content.halo.run/v1alpha1/Snapshot
8341
9633
  * @param {number} [page] The page number. Zero indicates no page.
8342
9634
  * @param {number} [size] Size of one page. Zero indicates no limit.
8343
9635
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -8345,44 +9637,44 @@ declare const ContentHaloRunV1alpha1ReplyApiFp: (configuration?: Configuration)
8345
9637
  * @param {*} [options] Override http request option.
8346
9638
  * @throws {RequiredError}
8347
9639
  */
8348
- listcontentHaloRunV1alpha1Reply(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReplyList>>;
9640
+ listcontentHaloRunV1alpha1Snapshot(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SnapshotList>>;
8349
9641
  /**
8350
- * Update content.halo.run/v1alpha1/Reply
8351
- * @param {string} name Name of reply
8352
- * @param {Reply} [reply] Updated reply
9642
+ * Update content.halo.run/v1alpha1/Snapshot
9643
+ * @param {string} name Name of snapshot
9644
+ * @param {Snapshot} [snapshot] Updated snapshot
8353
9645
  * @param {*} [options] Override http request option.
8354
9646
  * @throws {RequiredError}
8355
9647
  */
8356
- updatecontentHaloRunV1alpha1Reply(name: string, reply?: Reply, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Reply>>;
9648
+ updatecontentHaloRunV1alpha1Snapshot(name: string, snapshot?: Snapshot, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Snapshot>>;
8357
9649
  };
8358
9650
  /**
8359
- * ContentHaloRunV1alpha1ReplyApi - factory interface
9651
+ * ContentHaloRunV1alpha1SnapshotApi - factory interface
8360
9652
  * @export
8361
9653
  */
8362
- declare const ContentHaloRunV1alpha1ReplyApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
9654
+ declare const ContentHaloRunV1alpha1SnapshotApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
8363
9655
  /**
8364
- * Create content.halo.run/v1alpha1/Reply
8365
- * @param {Reply} [reply] Fresh reply
9656
+ * Create content.halo.run/v1alpha1/Snapshot
9657
+ * @param {Snapshot} [snapshot] Fresh snapshot
8366
9658
  * @param {*} [options] Override http request option.
8367
9659
  * @throws {RequiredError}
8368
9660
  */
8369
- createcontentHaloRunV1alpha1Reply(reply?: Reply, options?: any): AxiosPromise<Reply>;
9661
+ createcontentHaloRunV1alpha1Snapshot(snapshot?: Snapshot, options?: any): AxiosPromise<Snapshot>;
8370
9662
  /**
8371
- * Delete content.halo.run/v1alpha1/Reply
8372
- * @param {string} name Name of reply
9663
+ * Delete content.halo.run/v1alpha1/Snapshot
9664
+ * @param {string} name Name of snapshot
8373
9665
  * @param {*} [options] Override http request option.
8374
9666
  * @throws {RequiredError}
8375
9667
  */
8376
- deletecontentHaloRunV1alpha1Reply(name: string, options?: any): AxiosPromise<void>;
9668
+ deletecontentHaloRunV1alpha1Snapshot(name: string, options?: any): AxiosPromise<void>;
8377
9669
  /**
8378
- * Get content.halo.run/v1alpha1/Reply
8379
- * @param {string} name Name of reply
9670
+ * Get content.halo.run/v1alpha1/Snapshot
9671
+ * @param {string} name Name of snapshot
8380
9672
  * @param {*} [options] Override http request option.
8381
9673
  * @throws {RequiredError}
8382
9674
  */
8383
- getcontentHaloRunV1alpha1Reply(name: string, options?: any): AxiosPromise<Reply>;
9675
+ getcontentHaloRunV1alpha1Snapshot(name: string, options?: any): AxiosPromise<Snapshot>;
8384
9676
  /**
8385
- * List content.halo.run/v1alpha1/Reply
9677
+ * List content.halo.run/v1alpha1/Snapshot
8386
9678
  * @param {number} [page] The page number. Zero indicates no page.
8387
9679
  * @param {number} [size] Size of one page. Zero indicates no limit.
8388
9680
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -8390,182 +9682,182 @@ declare const ContentHaloRunV1alpha1ReplyApiFactory: (configuration?: Configurat
8390
9682
  * @param {*} [options] Override http request option.
8391
9683
  * @throws {RequiredError}
8392
9684
  */
8393
- listcontentHaloRunV1alpha1Reply(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ReplyList>;
9685
+ listcontentHaloRunV1alpha1Snapshot(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<SnapshotList>;
8394
9686
  /**
8395
- * Update content.halo.run/v1alpha1/Reply
8396
- * @param {string} name Name of reply
8397
- * @param {Reply} [reply] Updated reply
9687
+ * Update content.halo.run/v1alpha1/Snapshot
9688
+ * @param {string} name Name of snapshot
9689
+ * @param {Snapshot} [snapshot] Updated snapshot
8398
9690
  * @param {*} [options] Override http request option.
8399
9691
  * @throws {RequiredError}
8400
9692
  */
8401
- updatecontentHaloRunV1alpha1Reply(name: string, reply?: Reply, options?: any): AxiosPromise<Reply>;
9693
+ updatecontentHaloRunV1alpha1Snapshot(name: string, snapshot?: Snapshot, options?: any): AxiosPromise<Snapshot>;
8402
9694
  };
8403
9695
  /**
8404
- * Request parameters for createcontentHaloRunV1alpha1Reply operation in ContentHaloRunV1alpha1ReplyApi.
9696
+ * Request parameters for createcontentHaloRunV1alpha1Snapshot operation in ContentHaloRunV1alpha1SnapshotApi.
8405
9697
  * @export
8406
- * @interface ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest
9698
+ * @interface ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest
8407
9699
  */
8408
- interface ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest {
9700
+ interface ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest {
8409
9701
  /**
8410
- * Fresh reply
8411
- * @type {Reply}
8412
- * @memberof ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1Reply
9702
+ * Fresh snapshot
9703
+ * @type {Snapshot}
9704
+ * @memberof ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1Snapshot
8413
9705
  */
8414
- readonly reply?: Reply;
9706
+ readonly snapshot?: Snapshot;
8415
9707
  }
8416
9708
  /**
8417
- * Request parameters for deletecontentHaloRunV1alpha1Reply operation in ContentHaloRunV1alpha1ReplyApi.
9709
+ * Request parameters for deletecontentHaloRunV1alpha1Snapshot operation in ContentHaloRunV1alpha1SnapshotApi.
8418
9710
  * @export
8419
- * @interface ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest
9711
+ * @interface ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest
8420
9712
  */
8421
- interface ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest {
9713
+ interface ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest {
8422
9714
  /**
8423
- * Name of reply
9715
+ * Name of snapshot
8424
9716
  * @type {string}
8425
- * @memberof ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1Reply
9717
+ * @memberof ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1Snapshot
8426
9718
  */
8427
9719
  readonly name: string;
8428
9720
  }
8429
9721
  /**
8430
- * Request parameters for getcontentHaloRunV1alpha1Reply operation in ContentHaloRunV1alpha1ReplyApi.
9722
+ * Request parameters for getcontentHaloRunV1alpha1Snapshot operation in ContentHaloRunV1alpha1SnapshotApi.
8431
9723
  * @export
8432
- * @interface ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest
9724
+ * @interface ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest
8433
9725
  */
8434
- interface ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest {
9726
+ interface ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest {
8435
9727
  /**
8436
- * Name of reply
9728
+ * Name of snapshot
8437
9729
  * @type {string}
8438
- * @memberof ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1Reply
9730
+ * @memberof ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1Snapshot
8439
9731
  */
8440
9732
  readonly name: string;
8441
9733
  }
8442
9734
  /**
8443
- * Request parameters for listcontentHaloRunV1alpha1Reply operation in ContentHaloRunV1alpha1ReplyApi.
9735
+ * Request parameters for listcontentHaloRunV1alpha1Snapshot operation in ContentHaloRunV1alpha1SnapshotApi.
8444
9736
  * @export
8445
- * @interface ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest
9737
+ * @interface ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest
8446
9738
  */
8447
- interface ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest {
9739
+ interface ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest {
8448
9740
  /**
8449
9741
  * The page number. Zero indicates no page.
8450
9742
  * @type {number}
8451
- * @memberof ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1Reply
9743
+ * @memberof ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1Snapshot
8452
9744
  */
8453
9745
  readonly page?: number;
8454
9746
  /**
8455
9747
  * Size of one page. Zero indicates no limit.
8456
9748
  * @type {number}
8457
- * @memberof ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1Reply
9749
+ * @memberof ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1Snapshot
8458
9750
  */
8459
9751
  readonly size?: number;
8460
9752
  /**
8461
9753
  * Label selector for filtering.
8462
9754
  * @type {Array<string>}
8463
- * @memberof ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1Reply
9755
+ * @memberof ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1Snapshot
8464
9756
  */
8465
9757
  readonly labelSelector?: Array<string>;
8466
9758
  /**
8467
9759
  * Field selector for filtering.
8468
9760
  * @type {Array<string>}
8469
- * @memberof ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1Reply
9761
+ * @memberof ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1Snapshot
8470
9762
  */
8471
9763
  readonly fieldSelector?: Array<string>;
8472
9764
  }
8473
9765
  /**
8474
- * Request parameters for updatecontentHaloRunV1alpha1Reply operation in ContentHaloRunV1alpha1ReplyApi.
9766
+ * Request parameters for updatecontentHaloRunV1alpha1Snapshot operation in ContentHaloRunV1alpha1SnapshotApi.
8475
9767
  * @export
8476
- * @interface ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest
9768
+ * @interface ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest
8477
9769
  */
8478
- interface ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest {
9770
+ interface ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest {
8479
9771
  /**
8480
- * Name of reply
9772
+ * Name of snapshot
8481
9773
  * @type {string}
8482
- * @memberof ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1Reply
9774
+ * @memberof ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1Snapshot
8483
9775
  */
8484
9776
  readonly name: string;
8485
9777
  /**
8486
- * Updated reply
8487
- * @type {Reply}
8488
- * @memberof ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1Reply
9778
+ * Updated snapshot
9779
+ * @type {Snapshot}
9780
+ * @memberof ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1Snapshot
8489
9781
  */
8490
- readonly reply?: Reply;
9782
+ readonly snapshot?: Snapshot;
8491
9783
  }
8492
9784
  /**
8493
- * ContentHaloRunV1alpha1ReplyApi - object-oriented interface
9785
+ * ContentHaloRunV1alpha1SnapshotApi - object-oriented interface
8494
9786
  * @export
8495
- * @class ContentHaloRunV1alpha1ReplyApi
9787
+ * @class ContentHaloRunV1alpha1SnapshotApi
8496
9788
  * @extends {BaseAPI}
8497
9789
  */
8498
- declare class ContentHaloRunV1alpha1ReplyApi extends BaseAPI {
9790
+ declare class ContentHaloRunV1alpha1SnapshotApi extends BaseAPI {
8499
9791
  /**
8500
- * Create content.halo.run/v1alpha1/Reply
8501
- * @param {ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest} requestParameters Request parameters.
9792
+ * Create content.halo.run/v1alpha1/Snapshot
9793
+ * @param {ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest} requestParameters Request parameters.
8502
9794
  * @param {*} [options] Override http request option.
8503
9795
  * @throws {RequiredError}
8504
- * @memberof ContentHaloRunV1alpha1ReplyApi
9796
+ * @memberof ContentHaloRunV1alpha1SnapshotApi
8505
9797
  */
8506
- createcontentHaloRunV1alpha1Reply(requestParameters?: ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Reply, any>>;
9798
+ createcontentHaloRunV1alpha1Snapshot(requestParameters?: ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Snapshot, any>>;
8507
9799
  /**
8508
- * Delete content.halo.run/v1alpha1/Reply
8509
- * @param {ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest} requestParameters Request parameters.
9800
+ * Delete content.halo.run/v1alpha1/Snapshot
9801
+ * @param {ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest} requestParameters Request parameters.
8510
9802
  * @param {*} [options] Override http request option.
8511
9803
  * @throws {RequiredError}
8512
- * @memberof ContentHaloRunV1alpha1ReplyApi
9804
+ * @memberof ContentHaloRunV1alpha1SnapshotApi
8513
9805
  */
8514
- deletecontentHaloRunV1alpha1Reply(requestParameters: ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
9806
+ deletecontentHaloRunV1alpha1Snapshot(requestParameters: ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
8515
9807
  /**
8516
- * Get content.halo.run/v1alpha1/Reply
8517
- * @param {ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest} requestParameters Request parameters.
9808
+ * Get content.halo.run/v1alpha1/Snapshot
9809
+ * @param {ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest} requestParameters Request parameters.
8518
9810
  * @param {*} [options] Override http request option.
8519
9811
  * @throws {RequiredError}
8520
- * @memberof ContentHaloRunV1alpha1ReplyApi
9812
+ * @memberof ContentHaloRunV1alpha1SnapshotApi
8521
9813
  */
8522
- getcontentHaloRunV1alpha1Reply(requestParameters: ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Reply, any>>;
9814
+ getcontentHaloRunV1alpha1Snapshot(requestParameters: ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Snapshot, any>>;
8523
9815
  /**
8524
- * List content.halo.run/v1alpha1/Reply
8525
- * @param {ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest} requestParameters Request parameters.
9816
+ * List content.halo.run/v1alpha1/Snapshot
9817
+ * @param {ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest} requestParameters Request parameters.
8526
9818
  * @param {*} [options] Override http request option.
8527
9819
  * @throws {RequiredError}
8528
- * @memberof ContentHaloRunV1alpha1ReplyApi
9820
+ * @memberof ContentHaloRunV1alpha1SnapshotApi
8529
9821
  */
8530
- listcontentHaloRunV1alpha1Reply(requestParameters?: ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ReplyList, any>>;
9822
+ listcontentHaloRunV1alpha1Snapshot(requestParameters?: ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SnapshotList, any>>;
8531
9823
  /**
8532
- * Update content.halo.run/v1alpha1/Reply
8533
- * @param {ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest} requestParameters Request parameters.
9824
+ * Update content.halo.run/v1alpha1/Snapshot
9825
+ * @param {ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest} requestParameters Request parameters.
8534
9826
  * @param {*} [options] Override http request option.
8535
9827
  * @throws {RequiredError}
8536
- * @memberof ContentHaloRunV1alpha1ReplyApi
9828
+ * @memberof ContentHaloRunV1alpha1SnapshotApi
8537
9829
  */
8538
- updatecontentHaloRunV1alpha1Reply(requestParameters: ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Reply, any>>;
9830
+ updatecontentHaloRunV1alpha1Snapshot(requestParameters: ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Snapshot, any>>;
8539
9831
  }
8540
9832
 
8541
9833
  /**
8542
- * ContentHaloRunV1alpha1SinglePageApi - axios parameter creator
9834
+ * ContentHaloRunV1alpha1TagApi - axios parameter creator
8543
9835
  * @export
8544
9836
  */
8545
- declare const ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configuration?: Configuration) => {
9837
+ declare const ContentHaloRunV1alpha1TagApiAxiosParamCreator: (configuration?: Configuration) => {
8546
9838
  /**
8547
- * Create content.halo.run/v1alpha1/SinglePage
8548
- * @param {SinglePage} [singlePage] Fresh singlepage
9839
+ * Create content.halo.run/v1alpha1/Tag
9840
+ * @param {Tag} [tag] Fresh tag
8549
9841
  * @param {*} [options] Override http request option.
8550
9842
  * @throws {RequiredError}
8551
9843
  */
8552
- createcontentHaloRunV1alpha1SinglePage: (singlePage?: SinglePage, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9844
+ createcontentHaloRunV1alpha1Tag: (tag?: Tag, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8553
9845
  /**
8554
- * Delete content.halo.run/v1alpha1/SinglePage
8555
- * @param {string} name Name of singlepage
9846
+ * Delete content.halo.run/v1alpha1/Tag
9847
+ * @param {string} name Name of tag
8556
9848
  * @param {*} [options] Override http request option.
8557
9849
  * @throws {RequiredError}
8558
9850
  */
8559
- deletecontentHaloRunV1alpha1SinglePage: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9851
+ deletecontentHaloRunV1alpha1Tag: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8560
9852
  /**
8561
- * Get content.halo.run/v1alpha1/SinglePage
8562
- * @param {string} name Name of singlepage
9853
+ * Get content.halo.run/v1alpha1/Tag
9854
+ * @param {string} name Name of tag
8563
9855
  * @param {*} [options] Override http request option.
8564
9856
  * @throws {RequiredError}
8565
9857
  */
8566
- getcontentHaloRunV1alpha1SinglePage: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9858
+ getcontentHaloRunV1alpha1Tag: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8567
9859
  /**
8568
- * List content.halo.run/v1alpha1/SinglePage
9860
+ * List content.halo.run/v1alpha1/Tag
8569
9861
  * @param {number} [page] The page number. Zero indicates no page.
8570
9862
  * @param {number} [size] Size of one page. Zero indicates no limit.
8571
9863
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -8573,44 +9865,44 @@ declare const ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configurati
8573
9865
  * @param {*} [options] Override http request option.
8574
9866
  * @throws {RequiredError}
8575
9867
  */
8576
- listcontentHaloRunV1alpha1SinglePage: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9868
+ listcontentHaloRunV1alpha1Tag: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8577
9869
  /**
8578
- * Update content.halo.run/v1alpha1/SinglePage
8579
- * @param {string} name Name of singlepage
8580
- * @param {SinglePage} [singlePage] Updated singlepage
9870
+ * Update content.halo.run/v1alpha1/Tag
9871
+ * @param {string} name Name of tag
9872
+ * @param {Tag} [tag] Updated tag
8581
9873
  * @param {*} [options] Override http request option.
8582
9874
  * @throws {RequiredError}
8583
9875
  */
8584
- updatecontentHaloRunV1alpha1SinglePage: (name: string, singlePage?: SinglePage, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9876
+ updatecontentHaloRunV1alpha1Tag: (name: string, tag?: Tag, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8585
9877
  };
8586
9878
  /**
8587
- * ContentHaloRunV1alpha1SinglePageApi - functional programming interface
9879
+ * ContentHaloRunV1alpha1TagApi - functional programming interface
8588
9880
  * @export
8589
9881
  */
8590
- declare const ContentHaloRunV1alpha1SinglePageApiFp: (configuration?: Configuration) => {
9882
+ declare const ContentHaloRunV1alpha1TagApiFp: (configuration?: Configuration) => {
8591
9883
  /**
8592
- * Create content.halo.run/v1alpha1/SinglePage
8593
- * @param {SinglePage} [singlePage] Fresh singlepage
9884
+ * Create content.halo.run/v1alpha1/Tag
9885
+ * @param {Tag} [tag] Fresh tag
8594
9886
  * @param {*} [options] Override http request option.
8595
9887
  * @throws {RequiredError}
8596
9888
  */
8597
- createcontentHaloRunV1alpha1SinglePage(singlePage?: SinglePage, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
9889
+ createcontentHaloRunV1alpha1Tag(tag?: Tag, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tag>>;
8598
9890
  /**
8599
- * Delete content.halo.run/v1alpha1/SinglePage
8600
- * @param {string} name Name of singlepage
9891
+ * Delete content.halo.run/v1alpha1/Tag
9892
+ * @param {string} name Name of tag
8601
9893
  * @param {*} [options] Override http request option.
8602
9894
  * @throws {RequiredError}
8603
9895
  */
8604
- deletecontentHaloRunV1alpha1SinglePage(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
9896
+ deletecontentHaloRunV1alpha1Tag(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8605
9897
  /**
8606
- * Get content.halo.run/v1alpha1/SinglePage
8607
- * @param {string} name Name of singlepage
9898
+ * Get content.halo.run/v1alpha1/Tag
9899
+ * @param {string} name Name of tag
8608
9900
  * @param {*} [options] Override http request option.
8609
9901
  * @throws {RequiredError}
8610
9902
  */
8611
- getcontentHaloRunV1alpha1SinglePage(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
9903
+ getcontentHaloRunV1alpha1Tag(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tag>>;
8612
9904
  /**
8613
- * List content.halo.run/v1alpha1/SinglePage
9905
+ * List content.halo.run/v1alpha1/Tag
8614
9906
  * @param {number} [page] The page number. Zero indicates no page.
8615
9907
  * @param {number} [size] Size of one page. Zero indicates no limit.
8616
9908
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -8618,44 +9910,44 @@ declare const ContentHaloRunV1alpha1SinglePageApiFp: (configuration?: Configurat
8618
9910
  * @param {*} [options] Override http request option.
8619
9911
  * @throws {RequiredError}
8620
9912
  */
8621
- listcontentHaloRunV1alpha1SinglePage(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePageList>>;
9913
+ listcontentHaloRunV1alpha1Tag(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TagList>>;
8622
9914
  /**
8623
- * Update content.halo.run/v1alpha1/SinglePage
8624
- * @param {string} name Name of singlepage
8625
- * @param {SinglePage} [singlePage] Updated singlepage
9915
+ * Update content.halo.run/v1alpha1/Tag
9916
+ * @param {string} name Name of tag
9917
+ * @param {Tag} [tag] Updated tag
8626
9918
  * @param {*} [options] Override http request option.
8627
9919
  * @throws {RequiredError}
8628
9920
  */
8629
- updatecontentHaloRunV1alpha1SinglePage(name: string, singlePage?: SinglePage, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
9921
+ updatecontentHaloRunV1alpha1Tag(name: string, tag?: Tag, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tag>>;
8630
9922
  };
8631
9923
  /**
8632
- * ContentHaloRunV1alpha1SinglePageApi - factory interface
9924
+ * ContentHaloRunV1alpha1TagApi - factory interface
8633
9925
  * @export
8634
9926
  */
8635
- declare const ContentHaloRunV1alpha1SinglePageApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
9927
+ declare const ContentHaloRunV1alpha1TagApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
8636
9928
  /**
8637
- * Create content.halo.run/v1alpha1/SinglePage
8638
- * @param {SinglePage} [singlePage] Fresh singlepage
9929
+ * Create content.halo.run/v1alpha1/Tag
9930
+ * @param {Tag} [tag] Fresh tag
8639
9931
  * @param {*} [options] Override http request option.
8640
9932
  * @throws {RequiredError}
8641
9933
  */
8642
- createcontentHaloRunV1alpha1SinglePage(singlePage?: SinglePage, options?: any): AxiosPromise<SinglePage>;
9934
+ createcontentHaloRunV1alpha1Tag(tag?: Tag, options?: any): AxiosPromise<Tag>;
8643
9935
  /**
8644
- * Delete content.halo.run/v1alpha1/SinglePage
8645
- * @param {string} name Name of singlepage
9936
+ * Delete content.halo.run/v1alpha1/Tag
9937
+ * @param {string} name Name of tag
8646
9938
  * @param {*} [options] Override http request option.
8647
9939
  * @throws {RequiredError}
8648
9940
  */
8649
- deletecontentHaloRunV1alpha1SinglePage(name: string, options?: any): AxiosPromise<void>;
9941
+ deletecontentHaloRunV1alpha1Tag(name: string, options?: any): AxiosPromise<void>;
8650
9942
  /**
8651
- * Get content.halo.run/v1alpha1/SinglePage
8652
- * @param {string} name Name of singlepage
9943
+ * Get content.halo.run/v1alpha1/Tag
9944
+ * @param {string} name Name of tag
8653
9945
  * @param {*} [options] Override http request option.
8654
9946
  * @throws {RequiredError}
8655
9947
  */
8656
- getcontentHaloRunV1alpha1SinglePage(name: string, options?: any): AxiosPromise<SinglePage>;
9948
+ getcontentHaloRunV1alpha1Tag(name: string, options?: any): AxiosPromise<Tag>;
8657
9949
  /**
8658
- * List content.halo.run/v1alpha1/SinglePage
9950
+ * List content.halo.run/v1alpha1/Tag
8659
9951
  * @param {number} [page] The page number. Zero indicates no page.
8660
9952
  * @param {number} [size] Size of one page. Zero indicates no limit.
8661
9953
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -8663,182 +9955,182 @@ declare const ContentHaloRunV1alpha1SinglePageApiFactory: (configuration?: Confi
8663
9955
  * @param {*} [options] Override http request option.
8664
9956
  * @throws {RequiredError}
8665
9957
  */
8666
- listcontentHaloRunV1alpha1SinglePage(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<SinglePageList>;
9958
+ listcontentHaloRunV1alpha1Tag(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<TagList>;
8667
9959
  /**
8668
- * Update content.halo.run/v1alpha1/SinglePage
8669
- * @param {string} name Name of singlepage
8670
- * @param {SinglePage} [singlePage] Updated singlepage
9960
+ * Update content.halo.run/v1alpha1/Tag
9961
+ * @param {string} name Name of tag
9962
+ * @param {Tag} [tag] Updated tag
8671
9963
  * @param {*} [options] Override http request option.
8672
9964
  * @throws {RequiredError}
8673
9965
  */
8674
- updatecontentHaloRunV1alpha1SinglePage(name: string, singlePage?: SinglePage, options?: any): AxiosPromise<SinglePage>;
9966
+ updatecontentHaloRunV1alpha1Tag(name: string, tag?: Tag, options?: any): AxiosPromise<Tag>;
8675
9967
  };
8676
9968
  /**
8677
- * Request parameters for createcontentHaloRunV1alpha1SinglePage operation in ContentHaloRunV1alpha1SinglePageApi.
9969
+ * Request parameters for createcontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
8678
9970
  * @export
8679
- * @interface ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest
9971
+ * @interface ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest
8680
9972
  */
8681
- interface ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest {
9973
+ interface ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest {
8682
9974
  /**
8683
- * Fresh singlepage
8684
- * @type {SinglePage}
8685
- * @memberof ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePage
9975
+ * Fresh tag
9976
+ * @type {Tag}
9977
+ * @memberof ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1Tag
8686
9978
  */
8687
- readonly singlePage?: SinglePage;
9979
+ readonly tag?: Tag;
8688
9980
  }
8689
9981
  /**
8690
- * Request parameters for deletecontentHaloRunV1alpha1SinglePage operation in ContentHaloRunV1alpha1SinglePageApi.
9982
+ * Request parameters for deletecontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
8691
9983
  * @export
8692
- * @interface ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest
9984
+ * @interface ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest
8693
9985
  */
8694
- interface ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest {
9986
+ interface ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest {
8695
9987
  /**
8696
- * Name of singlepage
9988
+ * Name of tag
8697
9989
  * @type {string}
8698
- * @memberof ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePage
9990
+ * @memberof ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1Tag
8699
9991
  */
8700
9992
  readonly name: string;
8701
9993
  }
8702
9994
  /**
8703
- * Request parameters for getcontentHaloRunV1alpha1SinglePage operation in ContentHaloRunV1alpha1SinglePageApi.
9995
+ * Request parameters for getcontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
8704
9996
  * @export
8705
- * @interface ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest
9997
+ * @interface ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest
8706
9998
  */
8707
- interface ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest {
9999
+ interface ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest {
8708
10000
  /**
8709
- * Name of singlepage
10001
+ * Name of tag
8710
10002
  * @type {string}
8711
- * @memberof ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePage
10003
+ * @memberof ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1Tag
8712
10004
  */
8713
10005
  readonly name: string;
8714
10006
  }
8715
10007
  /**
8716
- * Request parameters for listcontentHaloRunV1alpha1SinglePage operation in ContentHaloRunV1alpha1SinglePageApi.
10008
+ * Request parameters for listcontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
8717
10009
  * @export
8718
- * @interface ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest
10010
+ * @interface ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest
8719
10011
  */
8720
- interface ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest {
10012
+ interface ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest {
8721
10013
  /**
8722
10014
  * The page number. Zero indicates no page.
8723
10015
  * @type {number}
8724
- * @memberof ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePage
10016
+ * @memberof ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1Tag
8725
10017
  */
8726
10018
  readonly page?: number;
8727
10019
  /**
8728
10020
  * Size of one page. Zero indicates no limit.
8729
10021
  * @type {number}
8730
- * @memberof ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePage
10022
+ * @memberof ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1Tag
8731
10023
  */
8732
10024
  readonly size?: number;
8733
10025
  /**
8734
10026
  * Label selector for filtering.
8735
10027
  * @type {Array<string>}
8736
- * @memberof ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePage
10028
+ * @memberof ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1Tag
8737
10029
  */
8738
10030
  readonly labelSelector?: Array<string>;
8739
10031
  /**
8740
10032
  * Field selector for filtering.
8741
10033
  * @type {Array<string>}
8742
- * @memberof ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePage
10034
+ * @memberof ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1Tag
8743
10035
  */
8744
10036
  readonly fieldSelector?: Array<string>;
8745
10037
  }
8746
10038
  /**
8747
- * Request parameters for updatecontentHaloRunV1alpha1SinglePage operation in ContentHaloRunV1alpha1SinglePageApi.
10039
+ * Request parameters for updatecontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
8748
10040
  * @export
8749
- * @interface ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest
10041
+ * @interface ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest
8750
10042
  */
8751
- interface ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest {
10043
+ interface ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest {
8752
10044
  /**
8753
- * Name of singlepage
10045
+ * Name of tag
8754
10046
  * @type {string}
8755
- * @memberof ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePage
10047
+ * @memberof ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1Tag
8756
10048
  */
8757
10049
  readonly name: string;
8758
10050
  /**
8759
- * Updated singlepage
8760
- * @type {SinglePage}
8761
- * @memberof ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePage
10051
+ * Updated tag
10052
+ * @type {Tag}
10053
+ * @memberof ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1Tag
8762
10054
  */
8763
- readonly singlePage?: SinglePage;
10055
+ readonly tag?: Tag;
8764
10056
  }
8765
10057
  /**
8766
- * ContentHaloRunV1alpha1SinglePageApi - object-oriented interface
10058
+ * ContentHaloRunV1alpha1TagApi - object-oriented interface
8767
10059
  * @export
8768
- * @class ContentHaloRunV1alpha1SinglePageApi
10060
+ * @class ContentHaloRunV1alpha1TagApi
8769
10061
  * @extends {BaseAPI}
8770
10062
  */
8771
- declare class ContentHaloRunV1alpha1SinglePageApi extends BaseAPI {
10063
+ declare class ContentHaloRunV1alpha1TagApi extends BaseAPI {
8772
10064
  /**
8773
- * Create content.halo.run/v1alpha1/SinglePage
8774
- * @param {ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest} requestParameters Request parameters.
10065
+ * Create content.halo.run/v1alpha1/Tag
10066
+ * @param {ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest} requestParameters Request parameters.
8775
10067
  * @param {*} [options] Override http request option.
8776
10068
  * @throws {RequiredError}
8777
- * @memberof ContentHaloRunV1alpha1SinglePageApi
10069
+ * @memberof ContentHaloRunV1alpha1TagApi
8778
10070
  */
8779
- createcontentHaloRunV1alpha1SinglePage(requestParameters?: ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
10071
+ createcontentHaloRunV1alpha1Tag(requestParameters?: ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Tag, any>>;
8780
10072
  /**
8781
- * Delete content.halo.run/v1alpha1/SinglePage
8782
- * @param {ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest} requestParameters Request parameters.
10073
+ * Delete content.halo.run/v1alpha1/Tag
10074
+ * @param {ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest} requestParameters Request parameters.
8783
10075
  * @param {*} [options] Override http request option.
8784
10076
  * @throws {RequiredError}
8785
- * @memberof ContentHaloRunV1alpha1SinglePageApi
10077
+ * @memberof ContentHaloRunV1alpha1TagApi
8786
10078
  */
8787
- deletecontentHaloRunV1alpha1SinglePage(requestParameters: ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
10079
+ deletecontentHaloRunV1alpha1Tag(requestParameters: ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
8788
10080
  /**
8789
- * Get content.halo.run/v1alpha1/SinglePage
8790
- * @param {ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest} requestParameters Request parameters.
10081
+ * Get content.halo.run/v1alpha1/Tag
10082
+ * @param {ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest} requestParameters Request parameters.
8791
10083
  * @param {*} [options] Override http request option.
8792
10084
  * @throws {RequiredError}
8793
- * @memberof ContentHaloRunV1alpha1SinglePageApi
10085
+ * @memberof ContentHaloRunV1alpha1TagApi
8794
10086
  */
8795
- getcontentHaloRunV1alpha1SinglePage(requestParameters: ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
10087
+ getcontentHaloRunV1alpha1Tag(requestParameters: ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Tag, any>>;
8796
10088
  /**
8797
- * List content.halo.run/v1alpha1/SinglePage
8798
- * @param {ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest} requestParameters Request parameters.
10089
+ * List content.halo.run/v1alpha1/Tag
10090
+ * @param {ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest} requestParameters Request parameters.
8799
10091
  * @param {*} [options] Override http request option.
8800
10092
  * @throws {RequiredError}
8801
- * @memberof ContentHaloRunV1alpha1SinglePageApi
10093
+ * @memberof ContentHaloRunV1alpha1TagApi
8802
10094
  */
8803
- listcontentHaloRunV1alpha1SinglePage(requestParameters?: ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePageList, any>>;
10095
+ listcontentHaloRunV1alpha1Tag(requestParameters?: ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<TagList, any>>;
8804
10096
  /**
8805
- * Update content.halo.run/v1alpha1/SinglePage
8806
- * @param {ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest} requestParameters Request parameters.
10097
+ * Update content.halo.run/v1alpha1/Tag
10098
+ * @param {ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest} requestParameters Request parameters.
8807
10099
  * @param {*} [options] Override http request option.
8808
10100
  * @throws {RequiredError}
8809
- * @memberof ContentHaloRunV1alpha1SinglePageApi
10101
+ * @memberof ContentHaloRunV1alpha1TagApi
8810
10102
  */
8811
- updatecontentHaloRunV1alpha1SinglePage(requestParameters: ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
10103
+ updatecontentHaloRunV1alpha1Tag(requestParameters: ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Tag, any>>;
8812
10104
  }
8813
10105
 
8814
10106
  /**
8815
- * ContentHaloRunV1alpha1SnapshotApi - axios parameter creator
10107
+ * CoreHaloRunV1alpha1LinkApi - axios parameter creator
8816
10108
  * @export
8817
10109
  */
8818
- declare const ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator: (configuration?: Configuration) => {
10110
+ declare const CoreHaloRunV1alpha1LinkApiAxiosParamCreator: (configuration?: Configuration) => {
8819
10111
  /**
8820
- * Create content.halo.run/v1alpha1/Snapshot
8821
- * @param {Snapshot} [snapshot] Fresh snapshot
10112
+ * Create core.halo.run/v1alpha1/Link
10113
+ * @param {Link} [link] Fresh link
8822
10114
  * @param {*} [options] Override http request option.
8823
10115
  * @throws {RequiredError}
8824
10116
  */
8825
- createcontentHaloRunV1alpha1Snapshot: (snapshot?: Snapshot, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10117
+ createcoreHaloRunV1alpha1Link: (link?: Link, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8826
10118
  /**
8827
- * Delete content.halo.run/v1alpha1/Snapshot
8828
- * @param {string} name Name of snapshot
10119
+ * Delete core.halo.run/v1alpha1/Link
10120
+ * @param {string} name Name of link
8829
10121
  * @param {*} [options] Override http request option.
8830
10122
  * @throws {RequiredError}
8831
10123
  */
8832
- deletecontentHaloRunV1alpha1Snapshot: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10124
+ deletecoreHaloRunV1alpha1Link: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8833
10125
  /**
8834
- * Get content.halo.run/v1alpha1/Snapshot
8835
- * @param {string} name Name of snapshot
10126
+ * Get core.halo.run/v1alpha1/Link
10127
+ * @param {string} name Name of link
8836
10128
  * @param {*} [options] Override http request option.
8837
10129
  * @throws {RequiredError}
8838
10130
  */
8839
- getcontentHaloRunV1alpha1Snapshot: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10131
+ getcoreHaloRunV1alpha1Link: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8840
10132
  /**
8841
- * List content.halo.run/v1alpha1/Snapshot
10133
+ * List core.halo.run/v1alpha1/Link
8842
10134
  * @param {number} [page] The page number. Zero indicates no page.
8843
10135
  * @param {number} [size] Size of one page. Zero indicates no limit.
8844
10136
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -8846,44 +10138,44 @@ declare const ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator: (configuration
8846
10138
  * @param {*} [options] Override http request option.
8847
10139
  * @throws {RequiredError}
8848
10140
  */
8849
- listcontentHaloRunV1alpha1Snapshot: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10141
+ listcoreHaloRunV1alpha1Link: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8850
10142
  /**
8851
- * Update content.halo.run/v1alpha1/Snapshot
8852
- * @param {string} name Name of snapshot
8853
- * @param {Snapshot} [snapshot] Updated snapshot
10143
+ * Update core.halo.run/v1alpha1/Link
10144
+ * @param {string} name Name of link
10145
+ * @param {Link} [link] Updated link
8854
10146
  * @param {*} [options] Override http request option.
8855
10147
  * @throws {RequiredError}
8856
10148
  */
8857
- updatecontentHaloRunV1alpha1Snapshot: (name: string, snapshot?: Snapshot, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10149
+ updatecoreHaloRunV1alpha1Link: (name: string, link?: Link, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8858
10150
  };
8859
10151
  /**
8860
- * ContentHaloRunV1alpha1SnapshotApi - functional programming interface
10152
+ * CoreHaloRunV1alpha1LinkApi - functional programming interface
8861
10153
  * @export
8862
10154
  */
8863
- declare const ContentHaloRunV1alpha1SnapshotApiFp: (configuration?: Configuration) => {
10155
+ declare const CoreHaloRunV1alpha1LinkApiFp: (configuration?: Configuration) => {
8864
10156
  /**
8865
- * Create content.halo.run/v1alpha1/Snapshot
8866
- * @param {Snapshot} [snapshot] Fresh snapshot
10157
+ * Create core.halo.run/v1alpha1/Link
10158
+ * @param {Link} [link] Fresh link
8867
10159
  * @param {*} [options] Override http request option.
8868
10160
  * @throws {RequiredError}
8869
10161
  */
8870
- createcontentHaloRunV1alpha1Snapshot(snapshot?: Snapshot, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Snapshot>>;
10162
+ createcoreHaloRunV1alpha1Link(link?: Link, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
8871
10163
  /**
8872
- * Delete content.halo.run/v1alpha1/Snapshot
8873
- * @param {string} name Name of snapshot
10164
+ * Delete core.halo.run/v1alpha1/Link
10165
+ * @param {string} name Name of link
8874
10166
  * @param {*} [options] Override http request option.
8875
10167
  * @throws {RequiredError}
8876
10168
  */
8877
- deletecontentHaloRunV1alpha1Snapshot(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
10169
+ deletecoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8878
10170
  /**
8879
- * Get content.halo.run/v1alpha1/Snapshot
8880
- * @param {string} name Name of snapshot
10171
+ * Get core.halo.run/v1alpha1/Link
10172
+ * @param {string} name Name of link
8881
10173
  * @param {*} [options] Override http request option.
8882
10174
  * @throws {RequiredError}
8883
10175
  */
8884
- getcontentHaloRunV1alpha1Snapshot(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Snapshot>>;
10176
+ getcoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
8885
10177
  /**
8886
- * List content.halo.run/v1alpha1/Snapshot
10178
+ * List core.halo.run/v1alpha1/Link
8887
10179
  * @param {number} [page] The page number. Zero indicates no page.
8888
10180
  * @param {number} [size] Size of one page. Zero indicates no limit.
8889
10181
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -8891,44 +10183,44 @@ declare const ContentHaloRunV1alpha1SnapshotApiFp: (configuration?: Configuratio
8891
10183
  * @param {*} [options] Override http request option.
8892
10184
  * @throws {RequiredError}
8893
10185
  */
8894
- listcontentHaloRunV1alpha1Snapshot(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SnapshotList>>;
10186
+ listcoreHaloRunV1alpha1Link(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
8895
10187
  /**
8896
- * Update content.halo.run/v1alpha1/Snapshot
8897
- * @param {string} name Name of snapshot
8898
- * @param {Snapshot} [snapshot] Updated snapshot
10188
+ * Update core.halo.run/v1alpha1/Link
10189
+ * @param {string} name Name of link
10190
+ * @param {Link} [link] Updated link
8899
10191
  * @param {*} [options] Override http request option.
8900
10192
  * @throws {RequiredError}
8901
10193
  */
8902
- updatecontentHaloRunV1alpha1Snapshot(name: string, snapshot?: Snapshot, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Snapshot>>;
10194
+ updatecoreHaloRunV1alpha1Link(name: string, link?: Link, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
8903
10195
  };
8904
10196
  /**
8905
- * ContentHaloRunV1alpha1SnapshotApi - factory interface
10197
+ * CoreHaloRunV1alpha1LinkApi - factory interface
8906
10198
  * @export
8907
10199
  */
8908
- declare const ContentHaloRunV1alpha1SnapshotApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
10200
+ declare const CoreHaloRunV1alpha1LinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
8909
10201
  /**
8910
- * Create content.halo.run/v1alpha1/Snapshot
8911
- * @param {Snapshot} [snapshot] Fresh snapshot
10202
+ * Create core.halo.run/v1alpha1/Link
10203
+ * @param {Link} [link] Fresh link
8912
10204
  * @param {*} [options] Override http request option.
8913
10205
  * @throws {RequiredError}
8914
10206
  */
8915
- createcontentHaloRunV1alpha1Snapshot(snapshot?: Snapshot, options?: any): AxiosPromise<Snapshot>;
10207
+ createcoreHaloRunV1alpha1Link(link?: Link, options?: any): AxiosPromise<Link>;
8916
10208
  /**
8917
- * Delete content.halo.run/v1alpha1/Snapshot
8918
- * @param {string} name Name of snapshot
10209
+ * Delete core.halo.run/v1alpha1/Link
10210
+ * @param {string} name Name of link
8919
10211
  * @param {*} [options] Override http request option.
8920
10212
  * @throws {RequiredError}
8921
10213
  */
8922
- deletecontentHaloRunV1alpha1Snapshot(name: string, options?: any): AxiosPromise<void>;
10214
+ deletecoreHaloRunV1alpha1Link(name: string, options?: any): AxiosPromise<void>;
8923
10215
  /**
8924
- * Get content.halo.run/v1alpha1/Snapshot
8925
- * @param {string} name Name of snapshot
10216
+ * Get core.halo.run/v1alpha1/Link
10217
+ * @param {string} name Name of link
8926
10218
  * @param {*} [options] Override http request option.
8927
10219
  * @throws {RequiredError}
8928
10220
  */
8929
- getcontentHaloRunV1alpha1Snapshot(name: string, options?: any): AxiosPromise<Snapshot>;
10221
+ getcoreHaloRunV1alpha1Link(name: string, options?: any): AxiosPromise<Link>;
8930
10222
  /**
8931
- * List content.halo.run/v1alpha1/Snapshot
10223
+ * List core.halo.run/v1alpha1/Link
8932
10224
  * @param {number} [page] The page number. Zero indicates no page.
8933
10225
  * @param {number} [size] Size of one page. Zero indicates no limit.
8934
10226
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -8936,182 +10228,182 @@ declare const ContentHaloRunV1alpha1SnapshotApiFactory: (configuration?: Configu
8936
10228
  * @param {*} [options] Override http request option.
8937
10229
  * @throws {RequiredError}
8938
10230
  */
8939
- listcontentHaloRunV1alpha1Snapshot(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<SnapshotList>;
10231
+ listcoreHaloRunV1alpha1Link(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<string>;
8940
10232
  /**
8941
- * Update content.halo.run/v1alpha1/Snapshot
8942
- * @param {string} name Name of snapshot
8943
- * @param {Snapshot} [snapshot] Updated snapshot
10233
+ * Update core.halo.run/v1alpha1/Link
10234
+ * @param {string} name Name of link
10235
+ * @param {Link} [link] Updated link
8944
10236
  * @param {*} [options] Override http request option.
8945
10237
  * @throws {RequiredError}
8946
10238
  */
8947
- updatecontentHaloRunV1alpha1Snapshot(name: string, snapshot?: Snapshot, options?: any): AxiosPromise<Snapshot>;
10239
+ updatecoreHaloRunV1alpha1Link(name: string, link?: Link, options?: any): AxiosPromise<Link>;
8948
10240
  };
8949
10241
  /**
8950
- * Request parameters for createcontentHaloRunV1alpha1Snapshot operation in ContentHaloRunV1alpha1SnapshotApi.
10242
+ * Request parameters for createcoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
8951
10243
  * @export
8952
- * @interface ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest
10244
+ * @interface CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest
8953
10245
  */
8954
- interface ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest {
10246
+ interface CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest {
8955
10247
  /**
8956
- * Fresh snapshot
8957
- * @type {Snapshot}
8958
- * @memberof ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1Snapshot
10248
+ * Fresh link
10249
+ * @type {Link}
10250
+ * @memberof CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1Link
8959
10251
  */
8960
- readonly snapshot?: Snapshot;
10252
+ readonly link?: Link;
8961
10253
  }
8962
10254
  /**
8963
- * Request parameters for deletecontentHaloRunV1alpha1Snapshot operation in ContentHaloRunV1alpha1SnapshotApi.
10255
+ * Request parameters for deletecoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
8964
10256
  * @export
8965
- * @interface ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest
10257
+ * @interface CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest
8966
10258
  */
8967
- interface ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest {
10259
+ interface CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest {
8968
10260
  /**
8969
- * Name of snapshot
10261
+ * Name of link
8970
10262
  * @type {string}
8971
- * @memberof ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1Snapshot
10263
+ * @memberof CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1Link
8972
10264
  */
8973
10265
  readonly name: string;
8974
10266
  }
8975
10267
  /**
8976
- * Request parameters for getcontentHaloRunV1alpha1Snapshot operation in ContentHaloRunV1alpha1SnapshotApi.
10268
+ * Request parameters for getcoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
8977
10269
  * @export
8978
- * @interface ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest
10270
+ * @interface CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest
8979
10271
  */
8980
- interface ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest {
10272
+ interface CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest {
8981
10273
  /**
8982
- * Name of snapshot
10274
+ * Name of link
8983
10275
  * @type {string}
8984
- * @memberof ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1Snapshot
10276
+ * @memberof CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1Link
8985
10277
  */
8986
10278
  readonly name: string;
8987
10279
  }
8988
10280
  /**
8989
- * Request parameters for listcontentHaloRunV1alpha1Snapshot operation in ContentHaloRunV1alpha1SnapshotApi.
10281
+ * Request parameters for listcoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
8990
10282
  * @export
8991
- * @interface ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest
10283
+ * @interface CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest
8992
10284
  */
8993
- interface ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest {
10285
+ interface CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest {
8994
10286
  /**
8995
10287
  * The page number. Zero indicates no page.
8996
10288
  * @type {number}
8997
- * @memberof ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1Snapshot
10289
+ * @memberof CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1Link
8998
10290
  */
8999
10291
  readonly page?: number;
9000
10292
  /**
9001
10293
  * Size of one page. Zero indicates no limit.
9002
10294
  * @type {number}
9003
- * @memberof ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1Snapshot
10295
+ * @memberof CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1Link
9004
10296
  */
9005
10297
  readonly size?: number;
9006
10298
  /**
9007
10299
  * Label selector for filtering.
9008
10300
  * @type {Array<string>}
9009
- * @memberof ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1Snapshot
10301
+ * @memberof CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1Link
9010
10302
  */
9011
10303
  readonly labelSelector?: Array<string>;
9012
10304
  /**
9013
10305
  * Field selector for filtering.
9014
10306
  * @type {Array<string>}
9015
- * @memberof ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1Snapshot
10307
+ * @memberof CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1Link
9016
10308
  */
9017
10309
  readonly fieldSelector?: Array<string>;
9018
10310
  }
9019
10311
  /**
9020
- * Request parameters for updatecontentHaloRunV1alpha1Snapshot operation in ContentHaloRunV1alpha1SnapshotApi.
10312
+ * Request parameters for updatecoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
9021
10313
  * @export
9022
- * @interface ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest
10314
+ * @interface CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest
9023
10315
  */
9024
- interface ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest {
10316
+ interface CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest {
9025
10317
  /**
9026
- * Name of snapshot
10318
+ * Name of link
9027
10319
  * @type {string}
9028
- * @memberof ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1Snapshot
10320
+ * @memberof CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1Link
9029
10321
  */
9030
10322
  readonly name: string;
9031
10323
  /**
9032
- * Updated snapshot
9033
- * @type {Snapshot}
9034
- * @memberof ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1Snapshot
10324
+ * Updated link
10325
+ * @type {Link}
10326
+ * @memberof CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1Link
9035
10327
  */
9036
- readonly snapshot?: Snapshot;
10328
+ readonly link?: Link;
9037
10329
  }
9038
10330
  /**
9039
- * ContentHaloRunV1alpha1SnapshotApi - object-oriented interface
10331
+ * CoreHaloRunV1alpha1LinkApi - object-oriented interface
9040
10332
  * @export
9041
- * @class ContentHaloRunV1alpha1SnapshotApi
10333
+ * @class CoreHaloRunV1alpha1LinkApi
9042
10334
  * @extends {BaseAPI}
9043
10335
  */
9044
- declare class ContentHaloRunV1alpha1SnapshotApi extends BaseAPI {
10336
+ declare class CoreHaloRunV1alpha1LinkApi extends BaseAPI {
9045
10337
  /**
9046
- * Create content.halo.run/v1alpha1/Snapshot
9047
- * @param {ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest} requestParameters Request parameters.
10338
+ * Create core.halo.run/v1alpha1/Link
10339
+ * @param {CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest} requestParameters Request parameters.
9048
10340
  * @param {*} [options] Override http request option.
9049
10341
  * @throws {RequiredError}
9050
- * @memberof ContentHaloRunV1alpha1SnapshotApi
10342
+ * @memberof CoreHaloRunV1alpha1LinkApi
9051
10343
  */
9052
- createcontentHaloRunV1alpha1Snapshot(requestParameters?: ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Snapshot, any>>;
10344
+ createcoreHaloRunV1alpha1Link(requestParameters?: CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
9053
10345
  /**
9054
- * Delete content.halo.run/v1alpha1/Snapshot
9055
- * @param {ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest} requestParameters Request parameters.
10346
+ * Delete core.halo.run/v1alpha1/Link
10347
+ * @param {CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest} requestParameters Request parameters.
9056
10348
  * @param {*} [options] Override http request option.
9057
10349
  * @throws {RequiredError}
9058
- * @memberof ContentHaloRunV1alpha1SnapshotApi
10350
+ * @memberof CoreHaloRunV1alpha1LinkApi
9059
10351
  */
9060
- deletecontentHaloRunV1alpha1Snapshot(requestParameters: ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
10352
+ deletecoreHaloRunV1alpha1Link(requestParameters: CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
9061
10353
  /**
9062
- * Get content.halo.run/v1alpha1/Snapshot
9063
- * @param {ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest} requestParameters Request parameters.
10354
+ * Get core.halo.run/v1alpha1/Link
10355
+ * @param {CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest} requestParameters Request parameters.
9064
10356
  * @param {*} [options] Override http request option.
9065
10357
  * @throws {RequiredError}
9066
- * @memberof ContentHaloRunV1alpha1SnapshotApi
10358
+ * @memberof CoreHaloRunV1alpha1LinkApi
9067
10359
  */
9068
- getcontentHaloRunV1alpha1Snapshot(requestParameters: ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Snapshot, any>>;
10360
+ getcoreHaloRunV1alpha1Link(requestParameters: CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
9069
10361
  /**
9070
- * List content.halo.run/v1alpha1/Snapshot
9071
- * @param {ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest} requestParameters Request parameters.
10362
+ * List core.halo.run/v1alpha1/Link
10363
+ * @param {CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest} requestParameters Request parameters.
9072
10364
  * @param {*} [options] Override http request option.
9073
10365
  * @throws {RequiredError}
9074
- * @memberof ContentHaloRunV1alpha1SnapshotApi
10366
+ * @memberof CoreHaloRunV1alpha1LinkApi
9075
10367
  */
9076
- listcontentHaloRunV1alpha1Snapshot(requestParameters?: ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SnapshotList, any>>;
10368
+ listcoreHaloRunV1alpha1Link(requestParameters?: CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
9077
10369
  /**
9078
- * Update content.halo.run/v1alpha1/Snapshot
9079
- * @param {ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest} requestParameters Request parameters.
10370
+ * Update core.halo.run/v1alpha1/Link
10371
+ * @param {CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest} requestParameters Request parameters.
9080
10372
  * @param {*} [options] Override http request option.
9081
10373
  * @throws {RequiredError}
9082
- * @memberof ContentHaloRunV1alpha1SnapshotApi
10374
+ * @memberof CoreHaloRunV1alpha1LinkApi
9083
10375
  */
9084
- updatecontentHaloRunV1alpha1Snapshot(requestParameters: ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Snapshot, any>>;
10376
+ updatecoreHaloRunV1alpha1Link(requestParameters: CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
9085
10377
  }
9086
10378
 
9087
10379
  /**
9088
- * ContentHaloRunV1alpha1TagApi - axios parameter creator
10380
+ * CoreHaloRunV1alpha1LinkGroupApi - axios parameter creator
9089
10381
  * @export
9090
10382
  */
9091
- declare const ContentHaloRunV1alpha1TagApiAxiosParamCreator: (configuration?: Configuration) => {
10383
+ declare const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator: (configuration?: Configuration) => {
9092
10384
  /**
9093
- * Create content.halo.run/v1alpha1/Tag
9094
- * @param {Tag} [tag] Fresh tag
10385
+ * Create core.halo.run/v1alpha1/LinkGroup
10386
+ * @param {LinkGroup} [linkGroup] Fresh linkgroup
9095
10387
  * @param {*} [options] Override http request option.
9096
10388
  * @throws {RequiredError}
9097
10389
  */
9098
- createcontentHaloRunV1alpha1Tag: (tag?: Tag, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10390
+ createcoreHaloRunV1alpha1LinkGroup: (linkGroup?: LinkGroup, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9099
10391
  /**
9100
- * Delete content.halo.run/v1alpha1/Tag
9101
- * @param {string} name Name of tag
10392
+ * Delete core.halo.run/v1alpha1/LinkGroup
10393
+ * @param {string} name Name of linkgroup
9102
10394
  * @param {*} [options] Override http request option.
9103
10395
  * @throws {RequiredError}
9104
10396
  */
9105
- deletecontentHaloRunV1alpha1Tag: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10397
+ deletecoreHaloRunV1alpha1LinkGroup: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9106
10398
  /**
9107
- * Get content.halo.run/v1alpha1/Tag
9108
- * @param {string} name Name of tag
10399
+ * Get core.halo.run/v1alpha1/LinkGroup
10400
+ * @param {string} name Name of linkgroup
9109
10401
  * @param {*} [options] Override http request option.
9110
10402
  * @throws {RequiredError}
9111
10403
  */
9112
- getcontentHaloRunV1alpha1Tag: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10404
+ getcoreHaloRunV1alpha1LinkGroup: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9113
10405
  /**
9114
- * List content.halo.run/v1alpha1/Tag
10406
+ * List core.halo.run/v1alpha1/LinkGroup
9115
10407
  * @param {number} [page] The page number. Zero indicates no page.
9116
10408
  * @param {number} [size] Size of one page. Zero indicates no limit.
9117
10409
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -9119,44 +10411,44 @@ declare const ContentHaloRunV1alpha1TagApiAxiosParamCreator: (configuration?: Co
9119
10411
  * @param {*} [options] Override http request option.
9120
10412
  * @throws {RequiredError}
9121
10413
  */
9122
- listcontentHaloRunV1alpha1Tag: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10414
+ listcoreHaloRunV1alpha1LinkGroup: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9123
10415
  /**
9124
- * Update content.halo.run/v1alpha1/Tag
9125
- * @param {string} name Name of tag
9126
- * @param {Tag} [tag] Updated tag
10416
+ * Update core.halo.run/v1alpha1/LinkGroup
10417
+ * @param {string} name Name of linkgroup
10418
+ * @param {LinkGroup} [linkGroup] Updated linkgroup
9127
10419
  * @param {*} [options] Override http request option.
9128
10420
  * @throws {RequiredError}
9129
10421
  */
9130
- updatecontentHaloRunV1alpha1Tag: (name: string, tag?: Tag, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10422
+ updatecoreHaloRunV1alpha1LinkGroup: (name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9131
10423
  };
9132
10424
  /**
9133
- * ContentHaloRunV1alpha1TagApi - functional programming interface
10425
+ * CoreHaloRunV1alpha1LinkGroupApi - functional programming interface
9134
10426
  * @export
9135
10427
  */
9136
- declare const ContentHaloRunV1alpha1TagApiFp: (configuration?: Configuration) => {
10428
+ declare const CoreHaloRunV1alpha1LinkGroupApiFp: (configuration?: Configuration) => {
9137
10429
  /**
9138
- * Create content.halo.run/v1alpha1/Tag
9139
- * @param {Tag} [tag] Fresh tag
10430
+ * Create core.halo.run/v1alpha1/LinkGroup
10431
+ * @param {LinkGroup} [linkGroup] Fresh linkgroup
9140
10432
  * @param {*} [options] Override http request option.
9141
10433
  * @throws {RequiredError}
9142
10434
  */
9143
- createcontentHaloRunV1alpha1Tag(tag?: Tag, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tag>>;
10435
+ createcoreHaloRunV1alpha1LinkGroup(linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
9144
10436
  /**
9145
- * Delete content.halo.run/v1alpha1/Tag
9146
- * @param {string} name Name of tag
10437
+ * Delete core.halo.run/v1alpha1/LinkGroup
10438
+ * @param {string} name Name of linkgroup
9147
10439
  * @param {*} [options] Override http request option.
9148
10440
  * @throws {RequiredError}
9149
10441
  */
9150
- deletecontentHaloRunV1alpha1Tag(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
10442
+ deletecoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
9151
10443
  /**
9152
- * Get content.halo.run/v1alpha1/Tag
9153
- * @param {string} name Name of tag
10444
+ * Get core.halo.run/v1alpha1/LinkGroup
10445
+ * @param {string} name Name of linkgroup
9154
10446
  * @param {*} [options] Override http request option.
9155
10447
  * @throws {RequiredError}
9156
10448
  */
9157
- getcontentHaloRunV1alpha1Tag(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tag>>;
10449
+ getcoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
9158
10450
  /**
9159
- * List content.halo.run/v1alpha1/Tag
10451
+ * List core.halo.run/v1alpha1/LinkGroup
9160
10452
  * @param {number} [page] The page number. Zero indicates no page.
9161
10453
  * @param {number} [size] Size of one page. Zero indicates no limit.
9162
10454
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -9164,44 +10456,44 @@ declare const ContentHaloRunV1alpha1TagApiFp: (configuration?: Configuration) =>
9164
10456
  * @param {*} [options] Override http request option.
9165
10457
  * @throws {RequiredError}
9166
10458
  */
9167
- listcontentHaloRunV1alpha1Tag(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TagList>>;
10459
+ listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
9168
10460
  /**
9169
- * Update content.halo.run/v1alpha1/Tag
9170
- * @param {string} name Name of tag
9171
- * @param {Tag} [tag] Updated tag
10461
+ * Update core.halo.run/v1alpha1/LinkGroup
10462
+ * @param {string} name Name of linkgroup
10463
+ * @param {LinkGroup} [linkGroup] Updated linkgroup
9172
10464
  * @param {*} [options] Override http request option.
9173
10465
  * @throws {RequiredError}
9174
10466
  */
9175
- updatecontentHaloRunV1alpha1Tag(name: string, tag?: Tag, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tag>>;
10467
+ updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
9176
10468
  };
9177
10469
  /**
9178
- * ContentHaloRunV1alpha1TagApi - factory interface
10470
+ * CoreHaloRunV1alpha1LinkGroupApi - factory interface
9179
10471
  * @export
9180
10472
  */
9181
- declare const ContentHaloRunV1alpha1TagApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
10473
+ declare const CoreHaloRunV1alpha1LinkGroupApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
9182
10474
  /**
9183
- * Create content.halo.run/v1alpha1/Tag
9184
- * @param {Tag} [tag] Fresh tag
10475
+ * Create core.halo.run/v1alpha1/LinkGroup
10476
+ * @param {LinkGroup} [linkGroup] Fresh linkgroup
9185
10477
  * @param {*} [options] Override http request option.
9186
10478
  * @throws {RequiredError}
9187
10479
  */
9188
- createcontentHaloRunV1alpha1Tag(tag?: Tag, options?: any): AxiosPromise<Tag>;
10480
+ createcoreHaloRunV1alpha1LinkGroup(linkGroup?: LinkGroup, options?: any): AxiosPromise<LinkGroup>;
9189
10481
  /**
9190
- * Delete content.halo.run/v1alpha1/Tag
9191
- * @param {string} name Name of tag
10482
+ * Delete core.halo.run/v1alpha1/LinkGroup
10483
+ * @param {string} name Name of linkgroup
9192
10484
  * @param {*} [options] Override http request option.
9193
10485
  * @throws {RequiredError}
9194
10486
  */
9195
- deletecontentHaloRunV1alpha1Tag(name: string, options?: any): AxiosPromise<void>;
10487
+ deletecoreHaloRunV1alpha1LinkGroup(name: string, options?: any): AxiosPromise<void>;
9196
10488
  /**
9197
- * Get content.halo.run/v1alpha1/Tag
9198
- * @param {string} name Name of tag
10489
+ * Get core.halo.run/v1alpha1/LinkGroup
10490
+ * @param {string} name Name of linkgroup
9199
10491
  * @param {*} [options] Override http request option.
9200
10492
  * @throws {RequiredError}
9201
10493
  */
9202
- getcontentHaloRunV1alpha1Tag(name: string, options?: any): AxiosPromise<Tag>;
10494
+ getcoreHaloRunV1alpha1LinkGroup(name: string, options?: any): AxiosPromise<LinkGroup>;
9203
10495
  /**
9204
- * List content.halo.run/v1alpha1/Tag
10496
+ * List core.halo.run/v1alpha1/LinkGroup
9205
10497
  * @param {number} [page] The page number. Zero indicates no page.
9206
10498
  * @param {number} [size] Size of one page. Zero indicates no limit.
9207
10499
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -9209,152 +10501,152 @@ declare const ContentHaloRunV1alpha1TagApiFactory: (configuration?: Configuratio
9209
10501
  * @param {*} [options] Override http request option.
9210
10502
  * @throws {RequiredError}
9211
10503
  */
9212
- listcontentHaloRunV1alpha1Tag(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<TagList>;
10504
+ listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<string>;
9213
10505
  /**
9214
- * Update content.halo.run/v1alpha1/Tag
9215
- * @param {string} name Name of tag
9216
- * @param {Tag} [tag] Updated tag
10506
+ * Update core.halo.run/v1alpha1/LinkGroup
10507
+ * @param {string} name Name of linkgroup
10508
+ * @param {LinkGroup} [linkGroup] Updated linkgroup
9217
10509
  * @param {*} [options] Override http request option.
9218
10510
  * @throws {RequiredError}
9219
10511
  */
9220
- updatecontentHaloRunV1alpha1Tag(name: string, tag?: Tag, options?: any): AxiosPromise<Tag>;
10512
+ updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: any): AxiosPromise<LinkGroup>;
9221
10513
  };
9222
10514
  /**
9223
- * Request parameters for createcontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
10515
+ * Request parameters for createcoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
9224
10516
  * @export
9225
- * @interface ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest
10517
+ * @interface CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest
9226
10518
  */
9227
- interface ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest {
10519
+ interface CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest {
9228
10520
  /**
9229
- * Fresh tag
9230
- * @type {Tag}
9231
- * @memberof ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1Tag
10521
+ * Fresh linkgroup
10522
+ * @type {LinkGroup}
10523
+ * @memberof CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroup
9232
10524
  */
9233
- readonly tag?: Tag;
10525
+ readonly linkGroup?: LinkGroup;
9234
10526
  }
9235
10527
  /**
9236
- * Request parameters for deletecontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
10528
+ * Request parameters for deletecoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
9237
10529
  * @export
9238
- * @interface ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest
10530
+ * @interface CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest
9239
10531
  */
9240
- interface ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest {
10532
+ interface CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest {
9241
10533
  /**
9242
- * Name of tag
10534
+ * Name of linkgroup
9243
10535
  * @type {string}
9244
- * @memberof ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1Tag
10536
+ * @memberof CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroup
9245
10537
  */
9246
10538
  readonly name: string;
9247
10539
  }
9248
10540
  /**
9249
- * Request parameters for getcontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
10541
+ * Request parameters for getcoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
9250
10542
  * @export
9251
- * @interface ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest
10543
+ * @interface CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest
9252
10544
  */
9253
- interface ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest {
10545
+ interface CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest {
9254
10546
  /**
9255
- * Name of tag
10547
+ * Name of linkgroup
9256
10548
  * @type {string}
9257
- * @memberof ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1Tag
10549
+ * @memberof CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroup
9258
10550
  */
9259
10551
  readonly name: string;
9260
10552
  }
9261
10553
  /**
9262
- * Request parameters for listcontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
10554
+ * Request parameters for listcoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
9263
10555
  * @export
9264
- * @interface ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest
10556
+ * @interface CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest
9265
10557
  */
9266
- interface ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest {
10558
+ interface CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest {
9267
10559
  /**
9268
10560
  * The page number. Zero indicates no page.
9269
10561
  * @type {number}
9270
- * @memberof ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1Tag
10562
+ * @memberof CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroup
9271
10563
  */
9272
10564
  readonly page?: number;
9273
10565
  /**
9274
10566
  * Size of one page. Zero indicates no limit.
9275
10567
  * @type {number}
9276
- * @memberof ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1Tag
10568
+ * @memberof CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroup
9277
10569
  */
9278
10570
  readonly size?: number;
9279
10571
  /**
9280
10572
  * Label selector for filtering.
9281
10573
  * @type {Array<string>}
9282
- * @memberof ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1Tag
10574
+ * @memberof CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroup
9283
10575
  */
9284
10576
  readonly labelSelector?: Array<string>;
9285
10577
  /**
9286
10578
  * Field selector for filtering.
9287
10579
  * @type {Array<string>}
9288
- * @memberof ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1Tag
10580
+ * @memberof CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroup
9289
10581
  */
9290
10582
  readonly fieldSelector?: Array<string>;
9291
10583
  }
9292
10584
  /**
9293
- * Request parameters for updatecontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
10585
+ * Request parameters for updatecoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
9294
10586
  * @export
9295
- * @interface ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest
10587
+ * @interface CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest
9296
10588
  */
9297
- interface ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest {
10589
+ interface CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest {
9298
10590
  /**
9299
- * Name of tag
10591
+ * Name of linkgroup
9300
10592
  * @type {string}
9301
- * @memberof ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1Tag
10593
+ * @memberof CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroup
9302
10594
  */
9303
10595
  readonly name: string;
9304
10596
  /**
9305
- * Updated tag
9306
- * @type {Tag}
9307
- * @memberof ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1Tag
10597
+ * Updated linkgroup
10598
+ * @type {LinkGroup}
10599
+ * @memberof CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroup
9308
10600
  */
9309
- readonly tag?: Tag;
10601
+ readonly linkGroup?: LinkGroup;
9310
10602
  }
9311
10603
  /**
9312
- * ContentHaloRunV1alpha1TagApi - object-oriented interface
10604
+ * CoreHaloRunV1alpha1LinkGroupApi - object-oriented interface
9313
10605
  * @export
9314
- * @class ContentHaloRunV1alpha1TagApi
10606
+ * @class CoreHaloRunV1alpha1LinkGroupApi
9315
10607
  * @extends {BaseAPI}
9316
10608
  */
9317
- declare class ContentHaloRunV1alpha1TagApi extends BaseAPI {
10609
+ declare class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
9318
10610
  /**
9319
- * Create content.halo.run/v1alpha1/Tag
9320
- * @param {ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest} requestParameters Request parameters.
10611
+ * Create core.halo.run/v1alpha1/LinkGroup
10612
+ * @param {CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest} requestParameters Request parameters.
9321
10613
  * @param {*} [options] Override http request option.
9322
10614
  * @throws {RequiredError}
9323
- * @memberof ContentHaloRunV1alpha1TagApi
10615
+ * @memberof CoreHaloRunV1alpha1LinkGroupApi
9324
10616
  */
9325
- createcontentHaloRunV1alpha1Tag(requestParameters?: ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Tag, any>>;
10617
+ createcoreHaloRunV1alpha1LinkGroup(requestParameters?: CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
9326
10618
  /**
9327
- * Delete content.halo.run/v1alpha1/Tag
9328
- * @param {ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest} requestParameters Request parameters.
10619
+ * Delete core.halo.run/v1alpha1/LinkGroup
10620
+ * @param {CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest} requestParameters Request parameters.
9329
10621
  * @param {*} [options] Override http request option.
9330
10622
  * @throws {RequiredError}
9331
- * @memberof ContentHaloRunV1alpha1TagApi
10623
+ * @memberof CoreHaloRunV1alpha1LinkGroupApi
9332
10624
  */
9333
- deletecontentHaloRunV1alpha1Tag(requestParameters: ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
10625
+ deletecoreHaloRunV1alpha1LinkGroup(requestParameters: CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
9334
10626
  /**
9335
- * Get content.halo.run/v1alpha1/Tag
9336
- * @param {ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest} requestParameters Request parameters.
10627
+ * Get core.halo.run/v1alpha1/LinkGroup
10628
+ * @param {CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest} requestParameters Request parameters.
9337
10629
  * @param {*} [options] Override http request option.
9338
10630
  * @throws {RequiredError}
9339
- * @memberof ContentHaloRunV1alpha1TagApi
10631
+ * @memberof CoreHaloRunV1alpha1LinkGroupApi
9340
10632
  */
9341
- getcontentHaloRunV1alpha1Tag(requestParameters: ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Tag, any>>;
10633
+ getcoreHaloRunV1alpha1LinkGroup(requestParameters: CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
9342
10634
  /**
9343
- * List content.halo.run/v1alpha1/Tag
9344
- * @param {ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest} requestParameters Request parameters.
10635
+ * List core.halo.run/v1alpha1/LinkGroup
10636
+ * @param {CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest} requestParameters Request parameters.
9345
10637
  * @param {*} [options] Override http request option.
9346
10638
  * @throws {RequiredError}
9347
- * @memberof ContentHaloRunV1alpha1TagApi
10639
+ * @memberof CoreHaloRunV1alpha1LinkGroupApi
9348
10640
  */
9349
- listcontentHaloRunV1alpha1Tag(requestParameters?: ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<TagList, any>>;
10641
+ listcoreHaloRunV1alpha1LinkGroup(requestParameters?: CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
9350
10642
  /**
9351
- * Update content.halo.run/v1alpha1/Tag
9352
- * @param {ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest} requestParameters Request parameters.
10643
+ * Update core.halo.run/v1alpha1/LinkGroup
10644
+ * @param {CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest} requestParameters Request parameters.
9353
10645
  * @param {*} [options] Override http request option.
9354
10646
  * @throws {RequiredError}
9355
- * @memberof ContentHaloRunV1alpha1TagApi
10647
+ * @memberof CoreHaloRunV1alpha1LinkGroupApi
9356
10648
  */
9357
- updatecontentHaloRunV1alpha1Tag(requestParameters: ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Tag, any>>;
10649
+ updatecoreHaloRunV1alpha1LinkGroup(requestParameters: CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
9358
10650
  }
9359
10651
 
9360
10652
  /**
@@ -9943,8 +11235,8 @@ declare const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configurati
9943
11235
  *
9944
11236
  * @param {string} [policy] Name of policy
9945
11237
  * @param {string} [displayName] Display name of attachment
9946
- * @param {string} [uploadedBy] Name of user who uploaded the attachment
9947
11238
  * @param {string} [group] Name of group
11239
+ * @param {string} [uploadedBy] Name of user who uploaded the attachment
9948
11240
  * @param {number} [size] Size of one page. Zero indicates no limit.
9949
11241
  * @param {Array<string>} [labelSelector] Label selector for filtering.
9950
11242
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
@@ -9952,7 +11244,7 @@ declare const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configurati
9952
11244
  * @param {*} [options] Override http request option.
9953
11245
  * @throws {RequiredError}
9954
11246
  */
9955
- searchAttachments: (policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11247
+ searchAttachments: (policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9956
11248
  /**
9957
11249
  * Update storage.halo.run/v1alpha1/Attachment
9958
11250
  * @param {string} name Name of attachment
@@ -10011,8 +11303,8 @@ declare const StorageHaloRunV1alpha1AttachmentApiFp: (configuration?: Configurat
10011
11303
  *
10012
11304
  * @param {string} [policy] Name of policy
10013
11305
  * @param {string} [displayName] Display name of attachment
10014
- * @param {string} [uploadedBy] Name of user who uploaded the attachment
10015
11306
  * @param {string} [group] Name of group
11307
+ * @param {string} [uploadedBy] Name of user who uploaded the attachment
10016
11308
  * @param {number} [size] Size of one page. Zero indicates no limit.
10017
11309
  * @param {Array<string>} [labelSelector] Label selector for filtering.
10018
11310
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
@@ -10020,7 +11312,7 @@ declare const StorageHaloRunV1alpha1AttachmentApiFp: (configuration?: Configurat
10020
11312
  * @param {*} [options] Override http request option.
10021
11313
  * @throws {RequiredError}
10022
11314
  */
10023
- searchAttachments(policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
11315
+ 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>>;
10024
11316
  /**
10025
11317
  * Update storage.halo.run/v1alpha1/Attachment
10026
11318
  * @param {string} name Name of attachment
@@ -10079,8 +11371,8 @@ declare const StorageHaloRunV1alpha1AttachmentApiFactory: (configuration?: Confi
10079
11371
  *
10080
11372
  * @param {string} [policy] Name of policy
10081
11373
  * @param {string} [displayName] Display name of attachment
10082
- * @param {string} [uploadedBy] Name of user who uploaded the attachment
10083
11374
  * @param {string} [group] Name of group
11375
+ * @param {string} [uploadedBy] Name of user who uploaded the attachment
10084
11376
  * @param {number} [size] Size of one page. Zero indicates no limit.
10085
11377
  * @param {Array<string>} [labelSelector] Label selector for filtering.
10086
11378
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
@@ -10088,7 +11380,7 @@ declare const StorageHaloRunV1alpha1AttachmentApiFactory: (configuration?: Confi
10088
11380
  * @param {*} [options] Override http request option.
10089
11381
  * @throws {RequiredError}
10090
11382
  */
10091
- searchAttachments(policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<AttachmentList>;
11383
+ searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<AttachmentList>;
10092
11384
  /**
10093
11385
  * Update storage.halo.run/v1alpha1/Attachment
10094
11386
  * @param {string} name Name of attachment
@@ -10196,17 +11488,17 @@ interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
10196
11488
  */
10197
11489
  readonly displayName?: string;
10198
11490
  /**
10199
- * Name of user who uploaded the attachment
11491
+ * Name of group
10200
11492
  * @type {string}
10201
11493
  * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
10202
11494
  */
10203
- readonly uploadedBy?: string;
11495
+ readonly group?: string;
10204
11496
  /**
10205
- * Name of group
11497
+ * Name of user who uploaded the attachment
10206
11498
  * @type {string}
10207
11499
  * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
10208
11500
  */
10209
- readonly group?: string;
11501
+ readonly uploadedBy?: string;
10210
11502
  /**
10211
11503
  * Size of one page. Zero indicates no limit.
10212
11504
  * @type {number}
@@ -13617,4 +14909,4 @@ declare class V1alpha1UserApi extends BaseAPI {
13617
14909
  updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
13618
14910
  }
13619
14911
 
13620
- export { ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CompactPost, CompactPostVisibleEnum, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentWrapper, Contributor, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, 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, 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 };
14912
+ export { ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CommentVo, CommentVoList, CompactPost, CompactPostVisibleEnum, 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, 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 };