@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.cjs +635 -33
- package/dist/index.d.ts +2203 -911
- package/dist/index.mjs +624 -34
- package/package.json +1 -1
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
|
|
2007
|
+
* @interface LinkSpec
|
|
1847
2008
|
*/
|
|
1848
|
-
interface
|
|
2009
|
+
interface LinkSpec {
|
|
1849
2010
|
/**
|
|
1850
2011
|
*
|
|
1851
2012
|
* @type {string}
|
|
1852
|
-
* @memberof
|
|
2013
|
+
* @memberof LinkSpec
|
|
1853
2014
|
*/
|
|
1854
|
-
|
|
2015
|
+
url: string;
|
|
1855
2016
|
/**
|
|
1856
2017
|
*
|
|
1857
2018
|
* @type {string}
|
|
1858
|
-
* @memberof
|
|
2019
|
+
* @memberof LinkSpec
|
|
1859
2020
|
*/
|
|
1860
|
-
|
|
2021
|
+
displayName: string;
|
|
1861
2022
|
/**
|
|
1862
2023
|
*
|
|
1863
2024
|
* @type {string}
|
|
1864
|
-
* @memberof
|
|
2025
|
+
* @memberof LinkSpec
|
|
1865
2026
|
*/
|
|
1866
|
-
|
|
2027
|
+
logo?: string;
|
|
1867
2028
|
/**
|
|
1868
2029
|
*
|
|
1869
2030
|
* @type {string}
|
|
1870
|
-
* @memberof
|
|
2031
|
+
* @memberof LinkSpec
|
|
1871
2032
|
*/
|
|
1872
|
-
|
|
2033
|
+
description?: string;
|
|
1873
2034
|
/**
|
|
1874
2035
|
*
|
|
1875
|
-
* @type {
|
|
1876
|
-
* @memberof
|
|
2036
|
+
* @type {number}
|
|
2037
|
+
* @memberof LinkSpec
|
|
1877
2038
|
*/
|
|
1878
|
-
|
|
2039
|
+
priority?: number;
|
|
1879
2040
|
}
|
|
1880
2041
|
|
|
1881
2042
|
/**
|
|
@@ -1891,29 +2052,35 @@ interface OwnerInfo {
|
|
|
1891
2052
|
*/
|
|
1892
2053
|
|
|
1893
2054
|
/**
|
|
1894
|
-
*
|
|
2055
|
+
*
|
|
1895
2056
|
* @export
|
|
1896
|
-
* @interface
|
|
2057
|
+
* @interface Link
|
|
1897
2058
|
*/
|
|
1898
|
-
interface
|
|
2059
|
+
interface Link {
|
|
1899
2060
|
/**
|
|
1900
2061
|
*
|
|
1901
|
-
* @type {
|
|
1902
|
-
* @memberof
|
|
2062
|
+
* @type {LinkSpec}
|
|
2063
|
+
* @memberof Link
|
|
1903
2064
|
*/
|
|
1904
|
-
|
|
2065
|
+
spec?: LinkSpec;
|
|
1905
2066
|
/**
|
|
1906
2067
|
*
|
|
1907
|
-
* @type {
|
|
1908
|
-
* @memberof
|
|
2068
|
+
* @type {string}
|
|
2069
|
+
* @memberof Link
|
|
1909
2070
|
*/
|
|
1910
|
-
|
|
2071
|
+
apiVersion: string;
|
|
1911
2072
|
/**
|
|
1912
2073
|
*
|
|
1913
|
-
* @type {
|
|
1914
|
-
* @memberof
|
|
2074
|
+
* @type {string}
|
|
2075
|
+
* @memberof Link
|
|
1915
2076
|
*/
|
|
1916
|
-
|
|
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
|
|
2100
|
+
* @interface LinkGroupSpec
|
|
1935
2101
|
*/
|
|
1936
|
-
interface
|
|
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
|
-
*
|
|
1945
|
-
* @type {
|
|
1946
|
-
* @memberof
|
|
2104
|
+
*
|
|
2105
|
+
* @type {string}
|
|
2106
|
+
* @memberof LinkGroupSpec
|
|
1947
2107
|
*/
|
|
1948
|
-
|
|
2108
|
+
displayName: string;
|
|
1949
2109
|
/**
|
|
1950
|
-
*
|
|
2110
|
+
*
|
|
1951
2111
|
* @type {number}
|
|
1952
|
-
* @memberof
|
|
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
|
-
|
|
2114
|
+
priority?: number;
|
|
1979
2115
|
/**
|
|
1980
|
-
*
|
|
1981
|
-
* @type {
|
|
1982
|
-
* @memberof
|
|
2116
|
+
* Names of links below this group.
|
|
2117
|
+
* @type {Array<string>}
|
|
2118
|
+
* @memberof LinkGroupSpec
|
|
1983
2119
|
*/
|
|
1984
|
-
|
|
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
|
|
2138
|
+
* @interface LinkGroup
|
|
2003
2139
|
*/
|
|
2004
|
-
interface
|
|
2005
|
-
/**
|
|
2006
|
-
*
|
|
2007
|
-
* @type {string}
|
|
2008
|
-
* @memberof PostSpec
|
|
2009
|
-
*/
|
|
2010
|
-
title: string;
|
|
2140
|
+
interface LinkGroup {
|
|
2011
2141
|
/**
|
|
2012
2142
|
*
|
|
2013
|
-
* @type {
|
|
2014
|
-
* @memberof
|
|
2143
|
+
* @type {LinkGroupSpec}
|
|
2144
|
+
* @memberof LinkGroup
|
|
2015
2145
|
*/
|
|
2016
|
-
|
|
2146
|
+
spec?: LinkGroupSpec;
|
|
2017
2147
|
/**
|
|
2018
2148
|
*
|
|
2019
2149
|
* @type {string}
|
|
2020
|
-
* @memberof
|
|
2150
|
+
* @memberof LinkGroup
|
|
2021
2151
|
*/
|
|
2022
|
-
|
|
2152
|
+
apiVersion: string;
|
|
2023
2153
|
/**
|
|
2024
2154
|
*
|
|
2025
2155
|
* @type {string}
|
|
2026
|
-
* @memberof
|
|
2156
|
+
* @memberof LinkGroup
|
|
2027
2157
|
*/
|
|
2028
|
-
|
|
2158
|
+
kind: string;
|
|
2029
2159
|
/**
|
|
2030
2160
|
*
|
|
2031
|
-
* @type {
|
|
2032
|
-
* @memberof
|
|
2161
|
+
* @type {Metadata}
|
|
2162
|
+
* @memberof LinkGroup
|
|
2033
2163
|
*/
|
|
2034
|
-
|
|
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 {
|
|
6514
|
-
* @param {
|
|
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>,
|
|
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 {
|
|
6560
|
-
* @param {
|
|
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>,
|
|
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 {
|
|
6606
|
-
* @param {
|
|
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>,
|
|
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 {
|
|
7051
|
+
* @type {Array<string>}
|
|
6660
7052
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6661
7053
|
*/
|
|
6662
|
-
readonly
|
|
7054
|
+
readonly contributor?: Array<string>;
|
|
6663
7055
|
/**
|
|
6664
|
-
*
|
|
6665
|
-
* @type {
|
|
7056
|
+
* ascending order If it is true; otherwise, it is in descending order.
|
|
7057
|
+
* @type {boolean}
|
|
6666
7058
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6667
7059
|
*/
|
|
6668
|
-
readonly
|
|
7060
|
+
readonly sortOrder?: boolean;
|
|
6669
7061
|
/**
|
|
6670
7062
|
*
|
|
6671
|
-
* @type {
|
|
7063
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'}
|
|
6672
7064
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6673
7065
|
*/
|
|
6674
|
-
readonly
|
|
7066
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED';
|
|
6675
7067
|
/**
|
|
6676
|
-
*
|
|
6677
|
-
* @type {
|
|
7068
|
+
*
|
|
7069
|
+
* @type {Array<string>}
|
|
6678
7070
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6679
7071
|
*/
|
|
6680
|
-
readonly
|
|
7072
|
+
readonly category?: Array<string>;
|
|
6681
7073
|
/**
|
|
6682
|
-
*
|
|
6683
|
-
* @type {string}
|
|
7074
|
+
*
|
|
7075
|
+
* @type {Array<string>}
|
|
6684
7076
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6685
7077
|
*/
|
|
6686
|
-
readonly
|
|
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 {
|
|
7086
|
+
* Posts filtered by keyword.
|
|
7087
|
+
* @type {string}
|
|
6696
7088
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6697
7089
|
*/
|
|
6698
|
-
readonly
|
|
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 {
|
|
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: (
|
|
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 {
|
|
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(
|
|
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 {
|
|
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(
|
|
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
|
|
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
|
-
*
|
|
7887
|
+
* ApiHaloRunV1alpha1CommentApi - axios parameter creator
|
|
7451
7888
|
* @export
|
|
7452
7889
|
*/
|
|
7453
|
-
declare const
|
|
7890
|
+
declare const ApiHaloRunV1alpha1CommentApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
7454
7891
|
/**
|
|
7455
|
-
* Create
|
|
7456
|
-
* @param {
|
|
7892
|
+
* Create a comment.
|
|
7893
|
+
* @param {CommentRequest} commentRequest
|
|
7457
7894
|
* @param {*} [options] Override http request option.
|
|
7458
7895
|
* @throws {RequiredError}
|
|
7459
7896
|
*/
|
|
7460
|
-
|
|
7897
|
+
createComment1: (commentRequest: CommentRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7461
7898
|
/**
|
|
7462
|
-
*
|
|
7463
|
-
* @param {string} name
|
|
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
|
-
|
|
7905
|
+
createReply1: (name: string, replyRequest: ReplyRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7468
7906
|
/**
|
|
7469
|
-
* Get
|
|
7470
|
-
* @param {string} name
|
|
7907
|
+
* Get a comment.
|
|
7908
|
+
* @param {string} name
|
|
7471
7909
|
* @param {*} [options] Override http request option.
|
|
7472
7910
|
* @throws {RequiredError}
|
|
7473
7911
|
*/
|
|
7474
|
-
|
|
7912
|
+
getComment: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7475
7913
|
/**
|
|
7476
|
-
* List
|
|
7477
|
-
* @param {
|
|
7914
|
+
* List comment replies.
|
|
7915
|
+
* @param {string} name
|
|
7478
7916
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7479
|
-
* @param {
|
|
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
|
-
|
|
7921
|
+
listCommentReplies: (name: string, size?: number, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7485
7922
|
/**
|
|
7486
|
-
*
|
|
7487
|
-
* @param {string} name
|
|
7488
|
-
* @param {
|
|
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
|
-
|
|
7933
|
+
listComments1: (name: string, version: string, kind: string, group?: string, size?: number, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7493
7934
|
};
|
|
7494
7935
|
/**
|
|
7495
|
-
*
|
|
7936
|
+
* ApiHaloRunV1alpha1CommentApi - functional programming interface
|
|
7496
7937
|
* @export
|
|
7497
7938
|
*/
|
|
7498
|
-
declare const
|
|
7939
|
+
declare const ApiHaloRunV1alpha1CommentApiFp: (configuration?: Configuration) => {
|
|
7499
7940
|
/**
|
|
7500
|
-
* Create
|
|
7501
|
-
* @param {
|
|
7941
|
+
* Create a comment.
|
|
7942
|
+
* @param {CommentRequest} commentRequest
|
|
7502
7943
|
* @param {*} [options] Override http request option.
|
|
7503
7944
|
* @throws {RequiredError}
|
|
7504
7945
|
*/
|
|
7505
|
-
|
|
7946
|
+
createComment1(commentRequest: CommentRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Comment>>;
|
|
7506
7947
|
/**
|
|
7507
|
-
*
|
|
7508
|
-
* @param {string} name
|
|
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
|
-
|
|
7954
|
+
createReply1(name: string, replyRequest: ReplyRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Reply>>;
|
|
7513
7955
|
/**
|
|
7514
|
-
* Get
|
|
7515
|
-
* @param {string} name
|
|
7956
|
+
* Get a comment.
|
|
7957
|
+
* @param {string} name
|
|
7516
7958
|
* @param {*} [options] Override http request option.
|
|
7517
7959
|
* @throws {RequiredError}
|
|
7518
7960
|
*/
|
|
7519
|
-
|
|
7961
|
+
getComment(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CommentVoList>>;
|
|
7520
7962
|
/**
|
|
7521
|
-
* List
|
|
7522
|
-
* @param {
|
|
7963
|
+
* List comment replies.
|
|
7964
|
+
* @param {string} name
|
|
7523
7965
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7524
|
-
* @param {
|
|
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
|
-
|
|
7970
|
+
listCommentReplies(name: string, size?: number, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReplyVoList>>;
|
|
7530
7971
|
/**
|
|
7531
|
-
*
|
|
7532
|
-
* @param {string} name
|
|
7533
|
-
* @param {
|
|
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
|
-
|
|
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
|
-
*
|
|
7985
|
+
* ApiHaloRunV1alpha1CommentApi - factory interface
|
|
7541
7986
|
* @export
|
|
7542
7987
|
*/
|
|
7543
|
-
declare const
|
|
7988
|
+
declare const ApiHaloRunV1alpha1CommentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
7544
7989
|
/**
|
|
7545
|
-
* Create
|
|
7546
|
-
* @param {
|
|
7990
|
+
* Create a comment.
|
|
7991
|
+
* @param {CommentRequest} commentRequest
|
|
7547
7992
|
* @param {*} [options] Override http request option.
|
|
7548
7993
|
* @throws {RequiredError}
|
|
7549
7994
|
*/
|
|
7550
|
-
|
|
7995
|
+
createComment1(commentRequest: CommentRequest, options?: any): AxiosPromise<Comment>;
|
|
7551
7996
|
/**
|
|
7552
|
-
*
|
|
7553
|
-
* @param {string} name
|
|
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
|
-
|
|
8003
|
+
createReply1(name: string, replyRequest: ReplyRequest, options?: any): AxiosPromise<Reply>;
|
|
7558
8004
|
/**
|
|
7559
|
-
* Get
|
|
7560
|
-
* @param {string} name
|
|
8005
|
+
* Get a comment.
|
|
8006
|
+
* @param {string} name
|
|
7561
8007
|
* @param {*} [options] Override http request option.
|
|
7562
8008
|
* @throws {RequiredError}
|
|
7563
8009
|
*/
|
|
7564
|
-
|
|
8010
|
+
getComment(name: string, options?: any): AxiosPromise<CommentVoList>;
|
|
7565
8011
|
/**
|
|
7566
|
-
* List
|
|
7567
|
-
* @param {
|
|
8012
|
+
* List comment replies.
|
|
8013
|
+
* @param {string} name
|
|
7568
8014
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7569
|
-
* @param {
|
|
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
|
-
|
|
8019
|
+
listCommentReplies(name: string, size?: number, page?: number, options?: any): AxiosPromise<ReplyVoList>;
|
|
7575
8020
|
/**
|
|
7576
|
-
*
|
|
7577
|
-
* @param {string} name
|
|
7578
|
-
* @param {
|
|
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
|
-
|
|
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
|
|
8034
|
+
* Request parameters for createComment1 operation in ApiHaloRunV1alpha1CommentApi.
|
|
7586
8035
|
* @export
|
|
7587
|
-
* @interface
|
|
8036
|
+
* @interface ApiHaloRunV1alpha1CommentApiCreateComment1Request
|
|
7588
8037
|
*/
|
|
7589
|
-
interface
|
|
8038
|
+
interface ApiHaloRunV1alpha1CommentApiCreateComment1Request {
|
|
7590
8039
|
/**
|
|
7591
|
-
*
|
|
7592
|
-
* @type {
|
|
7593
|
-
* @memberof
|
|
8040
|
+
*
|
|
8041
|
+
* @type {CommentRequest}
|
|
8042
|
+
* @memberof ApiHaloRunV1alpha1CommentApiCreateComment1
|
|
7594
8043
|
*/
|
|
7595
|
-
readonly
|
|
8044
|
+
readonly commentRequest: CommentRequest;
|
|
7596
8045
|
}
|
|
7597
8046
|
/**
|
|
7598
|
-
* Request parameters for
|
|
8047
|
+
* Request parameters for createReply1 operation in ApiHaloRunV1alpha1CommentApi.
|
|
7599
8048
|
* @export
|
|
7600
|
-
* @interface
|
|
8049
|
+
* @interface ApiHaloRunV1alpha1CommentApiCreateReply1Request
|
|
7601
8050
|
*/
|
|
7602
|
-
interface
|
|
8051
|
+
interface ApiHaloRunV1alpha1CommentApiCreateReply1Request {
|
|
7603
8052
|
/**
|
|
7604
|
-
*
|
|
8053
|
+
*
|
|
7605
8054
|
* @type {string}
|
|
7606
|
-
* @memberof
|
|
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
|
|
8066
|
+
* Request parameters for getComment operation in ApiHaloRunV1alpha1CommentApi.
|
|
7612
8067
|
* @export
|
|
7613
|
-
* @interface
|
|
8068
|
+
* @interface ApiHaloRunV1alpha1CommentApiGetCommentRequest
|
|
7614
8069
|
*/
|
|
7615
|
-
interface
|
|
8070
|
+
interface ApiHaloRunV1alpha1CommentApiGetCommentRequest {
|
|
7616
8071
|
/**
|
|
7617
|
-
*
|
|
8072
|
+
*
|
|
7618
8073
|
* @type {string}
|
|
7619
|
-
* @memberof
|
|
8074
|
+
* @memberof ApiHaloRunV1alpha1CommentApiGetComment
|
|
7620
8075
|
*/
|
|
7621
8076
|
readonly name: string;
|
|
7622
8077
|
}
|
|
7623
8078
|
/**
|
|
7624
|
-
* Request parameters for
|
|
8079
|
+
* Request parameters for listCommentReplies operation in ApiHaloRunV1alpha1CommentApi.
|
|
7625
8080
|
* @export
|
|
7626
|
-
* @interface
|
|
8081
|
+
* @interface ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest
|
|
7627
8082
|
*/
|
|
7628
|
-
interface
|
|
8083
|
+
interface ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest {
|
|
7629
8084
|
/**
|
|
7630
|
-
*
|
|
7631
|
-
* @type {
|
|
7632
|
-
* @memberof
|
|
8085
|
+
*
|
|
8086
|
+
* @type {string}
|
|
8087
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListCommentReplies
|
|
7633
8088
|
*/
|
|
7634
|
-
readonly
|
|
8089
|
+
readonly name: string;
|
|
7635
8090
|
/**
|
|
7636
8091
|
* Size of one page. Zero indicates no limit.
|
|
7637
8092
|
* @type {number}
|
|
7638
|
-
* @memberof
|
|
8093
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListCommentReplies
|
|
7639
8094
|
*/
|
|
7640
8095
|
readonly size?: number;
|
|
7641
8096
|
/**
|
|
7642
|
-
*
|
|
7643
|
-
* @type {
|
|
7644
|
-
* @memberof
|
|
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
|
|
8101
|
+
readonly page?: number;
|
|
7653
8102
|
}
|
|
7654
8103
|
/**
|
|
7655
|
-
* Request parameters for
|
|
8104
|
+
* Request parameters for listComments1 operation in ApiHaloRunV1alpha1CommentApi.
|
|
7656
8105
|
* @export
|
|
7657
|
-
* @interface
|
|
8106
|
+
* @interface ApiHaloRunV1alpha1CommentApiListComments1Request
|
|
7658
8107
|
*/
|
|
7659
|
-
interface
|
|
8108
|
+
interface ApiHaloRunV1alpha1CommentApiListComments1Request {
|
|
7660
8109
|
/**
|
|
7661
|
-
*
|
|
8110
|
+
* The comment subject name.
|
|
7662
8111
|
* @type {string}
|
|
7663
|
-
* @memberof
|
|
8112
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListComments1
|
|
7664
8113
|
*/
|
|
7665
8114
|
readonly name: string;
|
|
7666
8115
|
/**
|
|
7667
|
-
*
|
|
7668
|
-
* @type {
|
|
7669
|
-
* @memberof
|
|
8116
|
+
* The comment subject version.
|
|
8117
|
+
* @type {string}
|
|
8118
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListComments1
|
|
7670
8119
|
*/
|
|
7671
|
-
readonly
|
|
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
|
-
*
|
|
7682
|
-
* @
|
|
7683
|
-
* @
|
|
7684
|
-
* @throws {RequiredError}
|
|
7685
|
-
* @memberof ContentHaloRunV1alpha1CategoryApi
|
|
8122
|
+
* The comment subject kind.
|
|
8123
|
+
* @type {string}
|
|
8124
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListComments1
|
|
7686
8125
|
*/
|
|
7687
|
-
|
|
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 {
|
|
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(
|
|
8213
|
+
deletecontentHaloRunV1alpha1Category: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7696
8214
|
/**
|
|
7697
8215
|
* Get content.halo.run/v1alpha1/Category
|
|
7698
|
-
* @param {
|
|
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(
|
|
8220
|
+
getcontentHaloRunV1alpha1Category: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7704
8221
|
/**
|
|
7705
8222
|
* List content.halo.run/v1alpha1/Category
|
|
7706
|
-
* @param {
|
|
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(
|
|
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 {
|
|
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(
|
|
7720
|
-
}
|
|
7721
|
-
|
|
8238
|
+
updatecontentHaloRunV1alpha1Category: (name: string, category?: Category, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8239
|
+
};
|
|
7722
8240
|
/**
|
|
7723
|
-
*
|
|
8241
|
+
* ContentHaloRunV1alpha1CategoryApi - functional programming interface
|
|
7724
8242
|
* @export
|
|
7725
8243
|
*/
|
|
7726
|
-
declare const
|
|
8244
|
+
declare const ContentHaloRunV1alpha1CategoryApiFp: (configuration?: Configuration) => {
|
|
7727
8245
|
/**
|
|
7728
|
-
* Create content.halo.run/v1alpha1/
|
|
7729
|
-
* @param {
|
|
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
|
-
|
|
8251
|
+
createcontentHaloRunV1alpha1Category(category?: Category, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Category>>;
|
|
7734
8252
|
/**
|
|
7735
|
-
* Delete content.halo.run/v1alpha1/
|
|
7736
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
8258
|
+
deletecontentHaloRunV1alpha1Category(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
7741
8259
|
/**
|
|
7742
|
-
* Get content.halo.run/v1alpha1/
|
|
7743
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
8265
|
+
getcontentHaloRunV1alpha1Category(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Category>>;
|
|
7748
8266
|
/**
|
|
7749
|
-
* List content.halo.run/v1alpha1/
|
|
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
|
-
|
|
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/
|
|
7760
|
-
* @param {string} name Name of
|
|
7761
|
-
* @param {
|
|
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
|
-
|
|
8283
|
+
updatecontentHaloRunV1alpha1Category(name: string, category?: Category, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Category>>;
|
|
7766
8284
|
};
|
|
7767
8285
|
/**
|
|
7768
|
-
*
|
|
8286
|
+
* ContentHaloRunV1alpha1CategoryApi - factory interface
|
|
7769
8287
|
* @export
|
|
7770
8288
|
*/
|
|
7771
|
-
declare const
|
|
8289
|
+
declare const ContentHaloRunV1alpha1CategoryApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
7772
8290
|
/**
|
|
7773
|
-
* Create content.halo.run/v1alpha1/
|
|
7774
|
-
* @param {
|
|
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
|
-
|
|
8296
|
+
createcontentHaloRunV1alpha1Category(category?: Category, options?: any): AxiosPromise<Category>;
|
|
7779
8297
|
/**
|
|
7780
|
-
* Delete content.halo.run/v1alpha1/
|
|
7781
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
8303
|
+
deletecontentHaloRunV1alpha1Category(name: string, options?: any): AxiosPromise<void>;
|
|
7786
8304
|
/**
|
|
7787
|
-
* Get content.halo.run/v1alpha1/
|
|
7788
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
8310
|
+
getcontentHaloRunV1alpha1Category(name: string, options?: any): AxiosPromise<Category>;
|
|
7793
8311
|
/**
|
|
7794
|
-
* List content.halo.run/v1alpha1/
|
|
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
|
-
|
|
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/
|
|
7805
|
-
* @param {string} name Name of
|
|
7806
|
-
* @param {
|
|
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
|
-
|
|
9102
|
+
updatecontentHaloRunV1alpha1Reply(name: string, reply?: Reply, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Reply>>;
|
|
7811
9103
|
};
|
|
7812
9104
|
/**
|
|
7813
|
-
*
|
|
9105
|
+
* ContentHaloRunV1alpha1ReplyApi - factory interface
|
|
7814
9106
|
* @export
|
|
7815
9107
|
*/
|
|
7816
|
-
declare const
|
|
9108
|
+
declare const ContentHaloRunV1alpha1ReplyApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
7817
9109
|
/**
|
|
7818
|
-
* Create content.halo.run/v1alpha1/
|
|
7819
|
-
* @param {
|
|
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
|
-
|
|
9115
|
+
createcontentHaloRunV1alpha1Reply(reply?: Reply, options?: any): AxiosPromise<Reply>;
|
|
7824
9116
|
/**
|
|
7825
|
-
* Delete content.halo.run/v1alpha1/
|
|
7826
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
9122
|
+
deletecontentHaloRunV1alpha1Reply(name: string, options?: any): AxiosPromise<void>;
|
|
7831
9123
|
/**
|
|
7832
|
-
* Get content.halo.run/v1alpha1/
|
|
7833
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
9129
|
+
getcontentHaloRunV1alpha1Reply(name: string, options?: any): AxiosPromise<Reply>;
|
|
7838
9130
|
/**
|
|
7839
|
-
* List content.halo.run/v1alpha1/
|
|
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
|
-
|
|
9139
|
+
listcontentHaloRunV1alpha1Reply(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ReplyList>;
|
|
7848
9140
|
/**
|
|
7849
|
-
* Update content.halo.run/v1alpha1/
|
|
7850
|
-
* @param {string} name Name of
|
|
7851
|
-
* @param {
|
|
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
|
-
|
|
9147
|
+
updatecontentHaloRunV1alpha1Reply(name: string, reply?: Reply, options?: any): AxiosPromise<Reply>;
|
|
7856
9148
|
};
|
|
7857
9149
|
/**
|
|
7858
|
-
* Request parameters for
|
|
9150
|
+
* Request parameters for createcontentHaloRunV1alpha1Reply operation in ContentHaloRunV1alpha1ReplyApi.
|
|
7859
9151
|
* @export
|
|
7860
|
-
* @interface
|
|
9152
|
+
* @interface ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest
|
|
7861
9153
|
*/
|
|
7862
|
-
interface
|
|
9154
|
+
interface ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest {
|
|
7863
9155
|
/**
|
|
7864
|
-
* Fresh
|
|
7865
|
-
* @type {
|
|
7866
|
-
* @memberof
|
|
9156
|
+
* Fresh reply
|
|
9157
|
+
* @type {Reply}
|
|
9158
|
+
* @memberof ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1Reply
|
|
7867
9159
|
*/
|
|
7868
|
-
readonly
|
|
9160
|
+
readonly reply?: Reply;
|
|
7869
9161
|
}
|
|
7870
9162
|
/**
|
|
7871
|
-
* Request parameters for
|
|
9163
|
+
* Request parameters for deletecontentHaloRunV1alpha1Reply operation in ContentHaloRunV1alpha1ReplyApi.
|
|
7872
9164
|
* @export
|
|
7873
|
-
* @interface
|
|
9165
|
+
* @interface ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest
|
|
7874
9166
|
*/
|
|
7875
|
-
interface
|
|
9167
|
+
interface ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest {
|
|
7876
9168
|
/**
|
|
7877
|
-
* Name of
|
|
9169
|
+
* Name of reply
|
|
7878
9170
|
* @type {string}
|
|
7879
|
-
* @memberof
|
|
9171
|
+
* @memberof ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1Reply
|
|
7880
9172
|
*/
|
|
7881
9173
|
readonly name: string;
|
|
7882
9174
|
}
|
|
7883
9175
|
/**
|
|
7884
|
-
* Request parameters for
|
|
9176
|
+
* Request parameters for getcontentHaloRunV1alpha1Reply operation in ContentHaloRunV1alpha1ReplyApi.
|
|
7885
9177
|
* @export
|
|
7886
|
-
* @interface
|
|
9178
|
+
* @interface ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest
|
|
7887
9179
|
*/
|
|
7888
|
-
interface
|
|
9180
|
+
interface ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest {
|
|
7889
9181
|
/**
|
|
7890
|
-
* Name of
|
|
9182
|
+
* Name of reply
|
|
7891
9183
|
* @type {string}
|
|
7892
|
-
* @memberof
|
|
9184
|
+
* @memberof ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1Reply
|
|
7893
9185
|
*/
|
|
7894
9186
|
readonly name: string;
|
|
7895
9187
|
}
|
|
7896
9188
|
/**
|
|
7897
|
-
* Request parameters for
|
|
9189
|
+
* Request parameters for listcontentHaloRunV1alpha1Reply operation in ContentHaloRunV1alpha1ReplyApi.
|
|
7898
9190
|
* @export
|
|
7899
|
-
* @interface
|
|
9191
|
+
* @interface ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest
|
|
7900
9192
|
*/
|
|
7901
|
-
interface
|
|
9193
|
+
interface ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest {
|
|
7902
9194
|
/**
|
|
7903
9195
|
* The page number. Zero indicates no page.
|
|
7904
9196
|
* @type {number}
|
|
7905
|
-
* @memberof
|
|
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
|
|
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
|
|
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
|
|
9215
|
+
* @memberof ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1Reply
|
|
7924
9216
|
*/
|
|
7925
9217
|
readonly fieldSelector?: Array<string>;
|
|
7926
9218
|
}
|
|
7927
9219
|
/**
|
|
7928
|
-
* Request parameters for
|
|
9220
|
+
* Request parameters for updatecontentHaloRunV1alpha1Reply operation in ContentHaloRunV1alpha1ReplyApi.
|
|
7929
9221
|
* @export
|
|
7930
|
-
* @interface
|
|
9222
|
+
* @interface ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest
|
|
7931
9223
|
*/
|
|
7932
|
-
interface
|
|
9224
|
+
interface ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest {
|
|
7933
9225
|
/**
|
|
7934
|
-
* Name of
|
|
9226
|
+
* Name of reply
|
|
7935
9227
|
* @type {string}
|
|
7936
|
-
* @memberof
|
|
9228
|
+
* @memberof ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1Reply
|
|
7937
9229
|
*/
|
|
7938
9230
|
readonly name: string;
|
|
7939
9231
|
/**
|
|
7940
|
-
* Updated
|
|
7941
|
-
* @type {
|
|
7942
|
-
* @memberof
|
|
9232
|
+
* Updated reply
|
|
9233
|
+
* @type {Reply}
|
|
9234
|
+
* @memberof ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1Reply
|
|
7943
9235
|
*/
|
|
7944
|
-
readonly
|
|
9236
|
+
readonly reply?: Reply;
|
|
7945
9237
|
}
|
|
7946
9238
|
/**
|
|
7947
|
-
*
|
|
9239
|
+
* ContentHaloRunV1alpha1ReplyApi - object-oriented interface
|
|
7948
9240
|
* @export
|
|
7949
|
-
* @class
|
|
9241
|
+
* @class ContentHaloRunV1alpha1ReplyApi
|
|
7950
9242
|
* @extends {BaseAPI}
|
|
7951
9243
|
*/
|
|
7952
|
-
declare class
|
|
9244
|
+
declare class ContentHaloRunV1alpha1ReplyApi extends BaseAPI {
|
|
7953
9245
|
/**
|
|
7954
|
-
* Create content.halo.run/v1alpha1/
|
|
7955
|
-
* @param {
|
|
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
|
|
9250
|
+
* @memberof ContentHaloRunV1alpha1ReplyApi
|
|
7959
9251
|
*/
|
|
7960
|
-
|
|
9252
|
+
createcontentHaloRunV1alpha1Reply(requestParameters?: ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Reply, any>>;
|
|
7961
9253
|
/**
|
|
7962
|
-
* Delete content.halo.run/v1alpha1/
|
|
7963
|
-
* @param {
|
|
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
|
|
9258
|
+
* @memberof ContentHaloRunV1alpha1ReplyApi
|
|
7967
9259
|
*/
|
|
7968
|
-
|
|
9260
|
+
deletecontentHaloRunV1alpha1Reply(requestParameters: ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
7969
9261
|
/**
|
|
7970
|
-
* Get content.halo.run/v1alpha1/
|
|
7971
|
-
* @param {
|
|
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
|
|
9266
|
+
* @memberof ContentHaloRunV1alpha1ReplyApi
|
|
7975
9267
|
*/
|
|
7976
|
-
|
|
9268
|
+
getcontentHaloRunV1alpha1Reply(requestParameters: ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Reply, any>>;
|
|
7977
9269
|
/**
|
|
7978
|
-
* List content.halo.run/v1alpha1/
|
|
7979
|
-
* @param {
|
|
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
|
|
9274
|
+
* @memberof ContentHaloRunV1alpha1ReplyApi
|
|
7983
9275
|
*/
|
|
7984
|
-
|
|
9276
|
+
listcontentHaloRunV1alpha1Reply(requestParameters?: ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ReplyList, any>>;
|
|
7985
9277
|
/**
|
|
7986
|
-
* Update content.halo.run/v1alpha1/
|
|
7987
|
-
* @param {
|
|
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
|
|
9282
|
+
* @memberof ContentHaloRunV1alpha1ReplyApi
|
|
7991
9283
|
*/
|
|
7992
|
-
|
|
9284
|
+
updatecontentHaloRunV1alpha1Reply(requestParameters: ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Reply, any>>;
|
|
7993
9285
|
}
|
|
7994
9286
|
|
|
7995
9287
|
/**
|
|
7996
|
-
*
|
|
9288
|
+
* ContentHaloRunV1alpha1SinglePageApi - axios parameter creator
|
|
7997
9289
|
* @export
|
|
7998
9290
|
*/
|
|
7999
|
-
declare const
|
|
9291
|
+
declare const ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
8000
9292
|
/**
|
|
8001
|
-
* Create content.halo.run/v1alpha1/
|
|
8002
|
-
* @param {
|
|
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
|
-
|
|
9298
|
+
createcontentHaloRunV1alpha1SinglePage: (singlePage?: SinglePage, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8007
9299
|
/**
|
|
8008
|
-
* Delete content.halo.run/v1alpha1/
|
|
8009
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
9305
|
+
deletecontentHaloRunV1alpha1SinglePage: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8014
9306
|
/**
|
|
8015
|
-
* Get content.halo.run/v1alpha1/
|
|
8016
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
9312
|
+
getcontentHaloRunV1alpha1SinglePage: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8021
9313
|
/**
|
|
8022
|
-
* List content.halo.run/v1alpha1/
|
|
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
|
-
|
|
9322
|
+
listcontentHaloRunV1alpha1SinglePage: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8031
9323
|
/**
|
|
8032
|
-
* Update content.halo.run/v1alpha1/
|
|
8033
|
-
* @param {string} name Name of
|
|
8034
|
-
* @param {
|
|
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
|
-
|
|
9330
|
+
updatecontentHaloRunV1alpha1SinglePage: (name: string, singlePage?: SinglePage, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8039
9331
|
};
|
|
8040
9332
|
/**
|
|
8041
|
-
*
|
|
9333
|
+
* ContentHaloRunV1alpha1SinglePageApi - functional programming interface
|
|
8042
9334
|
* @export
|
|
8043
9335
|
*/
|
|
8044
|
-
declare const
|
|
9336
|
+
declare const ContentHaloRunV1alpha1SinglePageApiFp: (configuration?: Configuration) => {
|
|
8045
9337
|
/**
|
|
8046
|
-
* Create content.halo.run/v1alpha1/
|
|
8047
|
-
* @param {
|
|
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
|
-
|
|
9343
|
+
createcontentHaloRunV1alpha1SinglePage(singlePage?: SinglePage, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
|
|
8052
9344
|
/**
|
|
8053
|
-
* Delete content.halo.run/v1alpha1/
|
|
8054
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
9350
|
+
deletecontentHaloRunV1alpha1SinglePage(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8059
9351
|
/**
|
|
8060
|
-
* Get content.halo.run/v1alpha1/
|
|
8061
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
9357
|
+
getcontentHaloRunV1alpha1SinglePage(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
|
|
8066
9358
|
/**
|
|
8067
|
-
* List content.halo.run/v1alpha1/
|
|
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
|
-
|
|
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/
|
|
8078
|
-
* @param {string} name Name of
|
|
8079
|
-
* @param {
|
|
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
|
-
|
|
9375
|
+
updatecontentHaloRunV1alpha1SinglePage(name: string, singlePage?: SinglePage, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
|
|
8084
9376
|
};
|
|
8085
9377
|
/**
|
|
8086
|
-
*
|
|
9378
|
+
* ContentHaloRunV1alpha1SinglePageApi - factory interface
|
|
8087
9379
|
* @export
|
|
8088
9380
|
*/
|
|
8089
|
-
declare const
|
|
9381
|
+
declare const ContentHaloRunV1alpha1SinglePageApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
8090
9382
|
/**
|
|
8091
|
-
* Create content.halo.run/v1alpha1/
|
|
8092
|
-
* @param {
|
|
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
|
-
|
|
9388
|
+
createcontentHaloRunV1alpha1SinglePage(singlePage?: SinglePage, options?: any): AxiosPromise<SinglePage>;
|
|
8097
9389
|
/**
|
|
8098
|
-
* Delete content.halo.run/v1alpha1/
|
|
8099
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
9395
|
+
deletecontentHaloRunV1alpha1SinglePage(name: string, options?: any): AxiosPromise<void>;
|
|
8104
9396
|
/**
|
|
8105
|
-
* Get content.halo.run/v1alpha1/
|
|
8106
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
9402
|
+
getcontentHaloRunV1alpha1SinglePage(name: string, options?: any): AxiosPromise<SinglePage>;
|
|
8111
9403
|
/**
|
|
8112
|
-
* List content.halo.run/v1alpha1/
|
|
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
|
-
|
|
9412
|
+
listcontentHaloRunV1alpha1SinglePage(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<SinglePageList>;
|
|
8121
9413
|
/**
|
|
8122
|
-
* Update content.halo.run/v1alpha1/
|
|
8123
|
-
* @param {string} name Name of
|
|
8124
|
-
* @param {
|
|
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
|
-
|
|
9420
|
+
updatecontentHaloRunV1alpha1SinglePage(name: string, singlePage?: SinglePage, options?: any): AxiosPromise<SinglePage>;
|
|
8129
9421
|
};
|
|
8130
9422
|
/**
|
|
8131
|
-
* Request parameters for
|
|
9423
|
+
* Request parameters for createcontentHaloRunV1alpha1SinglePage operation in ContentHaloRunV1alpha1SinglePageApi.
|
|
8132
9424
|
* @export
|
|
8133
|
-
* @interface
|
|
9425
|
+
* @interface ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest
|
|
8134
9426
|
*/
|
|
8135
|
-
interface
|
|
9427
|
+
interface ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest {
|
|
8136
9428
|
/**
|
|
8137
|
-
* Fresh
|
|
8138
|
-
* @type {
|
|
8139
|
-
* @memberof
|
|
9429
|
+
* Fresh singlepage
|
|
9430
|
+
* @type {SinglePage}
|
|
9431
|
+
* @memberof ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePage
|
|
8140
9432
|
*/
|
|
8141
|
-
readonly
|
|
9433
|
+
readonly singlePage?: SinglePage;
|
|
8142
9434
|
}
|
|
8143
9435
|
/**
|
|
8144
|
-
* Request parameters for
|
|
9436
|
+
* Request parameters for deletecontentHaloRunV1alpha1SinglePage operation in ContentHaloRunV1alpha1SinglePageApi.
|
|
8145
9437
|
* @export
|
|
8146
|
-
* @interface
|
|
9438
|
+
* @interface ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest
|
|
8147
9439
|
*/
|
|
8148
|
-
interface
|
|
9440
|
+
interface ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest {
|
|
8149
9441
|
/**
|
|
8150
|
-
* Name of
|
|
9442
|
+
* Name of singlepage
|
|
8151
9443
|
* @type {string}
|
|
8152
|
-
* @memberof
|
|
9444
|
+
* @memberof ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePage
|
|
8153
9445
|
*/
|
|
8154
9446
|
readonly name: string;
|
|
8155
9447
|
}
|
|
8156
9448
|
/**
|
|
8157
|
-
* Request parameters for
|
|
9449
|
+
* Request parameters for getcontentHaloRunV1alpha1SinglePage operation in ContentHaloRunV1alpha1SinglePageApi.
|
|
8158
9450
|
* @export
|
|
8159
|
-
* @interface
|
|
9451
|
+
* @interface ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest
|
|
8160
9452
|
*/
|
|
8161
|
-
interface
|
|
9453
|
+
interface ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest {
|
|
8162
9454
|
/**
|
|
8163
|
-
* Name of
|
|
9455
|
+
* Name of singlepage
|
|
8164
9456
|
* @type {string}
|
|
8165
|
-
* @memberof
|
|
9457
|
+
* @memberof ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePage
|
|
8166
9458
|
*/
|
|
8167
9459
|
readonly name: string;
|
|
8168
9460
|
}
|
|
8169
9461
|
/**
|
|
8170
|
-
* Request parameters for
|
|
9462
|
+
* Request parameters for listcontentHaloRunV1alpha1SinglePage operation in ContentHaloRunV1alpha1SinglePageApi.
|
|
8171
9463
|
* @export
|
|
8172
|
-
* @interface
|
|
9464
|
+
* @interface ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest
|
|
8173
9465
|
*/
|
|
8174
|
-
interface
|
|
9466
|
+
interface ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest {
|
|
8175
9467
|
/**
|
|
8176
9468
|
* The page number. Zero indicates no page.
|
|
8177
9469
|
* @type {number}
|
|
8178
|
-
* @memberof
|
|
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
|
|
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
|
|
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
|
|
9488
|
+
* @memberof ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePage
|
|
8197
9489
|
*/
|
|
8198
9490
|
readonly fieldSelector?: Array<string>;
|
|
8199
9491
|
}
|
|
8200
9492
|
/**
|
|
8201
|
-
* Request parameters for
|
|
9493
|
+
* Request parameters for updatecontentHaloRunV1alpha1SinglePage operation in ContentHaloRunV1alpha1SinglePageApi.
|
|
8202
9494
|
* @export
|
|
8203
|
-
* @interface
|
|
9495
|
+
* @interface ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest
|
|
8204
9496
|
*/
|
|
8205
|
-
interface
|
|
9497
|
+
interface ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest {
|
|
8206
9498
|
/**
|
|
8207
|
-
* Name of
|
|
9499
|
+
* Name of singlepage
|
|
8208
9500
|
* @type {string}
|
|
8209
|
-
* @memberof
|
|
9501
|
+
* @memberof ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePage
|
|
8210
9502
|
*/
|
|
8211
9503
|
readonly name: string;
|
|
8212
9504
|
/**
|
|
8213
|
-
* Updated
|
|
8214
|
-
* @type {
|
|
8215
|
-
* @memberof
|
|
9505
|
+
* Updated singlepage
|
|
9506
|
+
* @type {SinglePage}
|
|
9507
|
+
* @memberof ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePage
|
|
8216
9508
|
*/
|
|
8217
|
-
readonly
|
|
9509
|
+
readonly singlePage?: SinglePage;
|
|
8218
9510
|
}
|
|
8219
9511
|
/**
|
|
8220
|
-
*
|
|
9512
|
+
* ContentHaloRunV1alpha1SinglePageApi - object-oriented interface
|
|
8221
9513
|
* @export
|
|
8222
|
-
* @class
|
|
9514
|
+
* @class ContentHaloRunV1alpha1SinglePageApi
|
|
8223
9515
|
* @extends {BaseAPI}
|
|
8224
9516
|
*/
|
|
8225
|
-
declare class
|
|
9517
|
+
declare class ContentHaloRunV1alpha1SinglePageApi extends BaseAPI {
|
|
8226
9518
|
/**
|
|
8227
|
-
* Create content.halo.run/v1alpha1/
|
|
8228
|
-
* @param {
|
|
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
|
|
9523
|
+
* @memberof ContentHaloRunV1alpha1SinglePageApi
|
|
8232
9524
|
*/
|
|
8233
|
-
|
|
9525
|
+
createcontentHaloRunV1alpha1SinglePage(requestParameters?: ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
|
|
8234
9526
|
/**
|
|
8235
|
-
* Delete content.halo.run/v1alpha1/
|
|
8236
|
-
* @param {
|
|
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
|
|
9531
|
+
* @memberof ContentHaloRunV1alpha1SinglePageApi
|
|
8240
9532
|
*/
|
|
8241
|
-
|
|
9533
|
+
deletecontentHaloRunV1alpha1SinglePage(requestParameters: ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
8242
9534
|
/**
|
|
8243
|
-
* Get content.halo.run/v1alpha1/
|
|
8244
|
-
* @param {
|
|
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
|
|
9539
|
+
* @memberof ContentHaloRunV1alpha1SinglePageApi
|
|
8248
9540
|
*/
|
|
8249
|
-
|
|
9541
|
+
getcontentHaloRunV1alpha1SinglePage(requestParameters: ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
|
|
8250
9542
|
/**
|
|
8251
|
-
* List content.halo.run/v1alpha1/
|
|
8252
|
-
* @param {
|
|
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
|
|
9547
|
+
* @memberof ContentHaloRunV1alpha1SinglePageApi
|
|
8256
9548
|
*/
|
|
8257
|
-
|
|
9549
|
+
listcontentHaloRunV1alpha1SinglePage(requestParameters?: ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePageList, any>>;
|
|
8258
9550
|
/**
|
|
8259
|
-
* Update content.halo.run/v1alpha1/
|
|
8260
|
-
* @param {
|
|
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
|
|
9555
|
+
* @memberof ContentHaloRunV1alpha1SinglePageApi
|
|
8264
9556
|
*/
|
|
8265
|
-
|
|
9557
|
+
updatecontentHaloRunV1alpha1SinglePage(requestParameters: ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
|
|
8266
9558
|
}
|
|
8267
9559
|
|
|
8268
9560
|
/**
|
|
8269
|
-
*
|
|
9561
|
+
* ContentHaloRunV1alpha1SnapshotApi - axios parameter creator
|
|
8270
9562
|
* @export
|
|
8271
9563
|
*/
|
|
8272
|
-
declare const
|
|
9564
|
+
declare const ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
8273
9565
|
/**
|
|
8274
|
-
* Create content.halo.run/v1alpha1/
|
|
8275
|
-
* @param {
|
|
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
|
-
|
|
9571
|
+
createcontentHaloRunV1alpha1Snapshot: (snapshot?: Snapshot, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8280
9572
|
/**
|
|
8281
|
-
* Delete content.halo.run/v1alpha1/
|
|
8282
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
9578
|
+
deletecontentHaloRunV1alpha1Snapshot: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8287
9579
|
/**
|
|
8288
|
-
* Get content.halo.run/v1alpha1/
|
|
8289
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
9585
|
+
getcontentHaloRunV1alpha1Snapshot: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8294
9586
|
/**
|
|
8295
|
-
* List content.halo.run/v1alpha1/
|
|
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
|
-
|
|
9595
|
+
listcontentHaloRunV1alpha1Snapshot: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8304
9596
|
/**
|
|
8305
|
-
* Update content.halo.run/v1alpha1/
|
|
8306
|
-
* @param {string} name Name of
|
|
8307
|
-
* @param {
|
|
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
|
-
|
|
9603
|
+
updatecontentHaloRunV1alpha1Snapshot: (name: string, snapshot?: Snapshot, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8312
9604
|
};
|
|
8313
9605
|
/**
|
|
8314
|
-
*
|
|
9606
|
+
* ContentHaloRunV1alpha1SnapshotApi - functional programming interface
|
|
8315
9607
|
* @export
|
|
8316
9608
|
*/
|
|
8317
|
-
declare const
|
|
9609
|
+
declare const ContentHaloRunV1alpha1SnapshotApiFp: (configuration?: Configuration) => {
|
|
8318
9610
|
/**
|
|
8319
|
-
* Create content.halo.run/v1alpha1/
|
|
8320
|
-
* @param {
|
|
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
|
-
|
|
9616
|
+
createcontentHaloRunV1alpha1Snapshot(snapshot?: Snapshot, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Snapshot>>;
|
|
8325
9617
|
/**
|
|
8326
|
-
* Delete content.halo.run/v1alpha1/
|
|
8327
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
9623
|
+
deletecontentHaloRunV1alpha1Snapshot(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8332
9624
|
/**
|
|
8333
|
-
* Get content.halo.run/v1alpha1/
|
|
8334
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
9630
|
+
getcontentHaloRunV1alpha1Snapshot(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Snapshot>>;
|
|
8339
9631
|
/**
|
|
8340
|
-
* List content.halo.run/v1alpha1/
|
|
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
|
-
|
|
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/
|
|
8351
|
-
* @param {string} name Name of
|
|
8352
|
-
* @param {
|
|
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
|
-
|
|
9648
|
+
updatecontentHaloRunV1alpha1Snapshot(name: string, snapshot?: Snapshot, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Snapshot>>;
|
|
8357
9649
|
};
|
|
8358
9650
|
/**
|
|
8359
|
-
*
|
|
9651
|
+
* ContentHaloRunV1alpha1SnapshotApi - factory interface
|
|
8360
9652
|
* @export
|
|
8361
9653
|
*/
|
|
8362
|
-
declare const
|
|
9654
|
+
declare const ContentHaloRunV1alpha1SnapshotApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
8363
9655
|
/**
|
|
8364
|
-
* Create content.halo.run/v1alpha1/
|
|
8365
|
-
* @param {
|
|
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
|
-
|
|
9661
|
+
createcontentHaloRunV1alpha1Snapshot(snapshot?: Snapshot, options?: any): AxiosPromise<Snapshot>;
|
|
8370
9662
|
/**
|
|
8371
|
-
* Delete content.halo.run/v1alpha1/
|
|
8372
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
9668
|
+
deletecontentHaloRunV1alpha1Snapshot(name: string, options?: any): AxiosPromise<void>;
|
|
8377
9669
|
/**
|
|
8378
|
-
* Get content.halo.run/v1alpha1/
|
|
8379
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
9675
|
+
getcontentHaloRunV1alpha1Snapshot(name: string, options?: any): AxiosPromise<Snapshot>;
|
|
8384
9676
|
/**
|
|
8385
|
-
* List content.halo.run/v1alpha1/
|
|
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
|
-
|
|
9685
|
+
listcontentHaloRunV1alpha1Snapshot(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<SnapshotList>;
|
|
8394
9686
|
/**
|
|
8395
|
-
* Update content.halo.run/v1alpha1/
|
|
8396
|
-
* @param {string} name Name of
|
|
8397
|
-
* @param {
|
|
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
|
-
|
|
9693
|
+
updatecontentHaloRunV1alpha1Snapshot(name: string, snapshot?: Snapshot, options?: any): AxiosPromise<Snapshot>;
|
|
8402
9694
|
};
|
|
8403
9695
|
/**
|
|
8404
|
-
* Request parameters for
|
|
9696
|
+
* Request parameters for createcontentHaloRunV1alpha1Snapshot operation in ContentHaloRunV1alpha1SnapshotApi.
|
|
8405
9697
|
* @export
|
|
8406
|
-
* @interface
|
|
9698
|
+
* @interface ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest
|
|
8407
9699
|
*/
|
|
8408
|
-
interface
|
|
9700
|
+
interface ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest {
|
|
8409
9701
|
/**
|
|
8410
|
-
* Fresh
|
|
8411
|
-
* @type {
|
|
8412
|
-
* @memberof
|
|
9702
|
+
* Fresh snapshot
|
|
9703
|
+
* @type {Snapshot}
|
|
9704
|
+
* @memberof ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1Snapshot
|
|
8413
9705
|
*/
|
|
8414
|
-
readonly
|
|
9706
|
+
readonly snapshot?: Snapshot;
|
|
8415
9707
|
}
|
|
8416
9708
|
/**
|
|
8417
|
-
* Request parameters for
|
|
9709
|
+
* Request parameters for deletecontentHaloRunV1alpha1Snapshot operation in ContentHaloRunV1alpha1SnapshotApi.
|
|
8418
9710
|
* @export
|
|
8419
|
-
* @interface
|
|
9711
|
+
* @interface ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest
|
|
8420
9712
|
*/
|
|
8421
|
-
interface
|
|
9713
|
+
interface ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest {
|
|
8422
9714
|
/**
|
|
8423
|
-
* Name of
|
|
9715
|
+
* Name of snapshot
|
|
8424
9716
|
* @type {string}
|
|
8425
|
-
* @memberof
|
|
9717
|
+
* @memberof ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1Snapshot
|
|
8426
9718
|
*/
|
|
8427
9719
|
readonly name: string;
|
|
8428
9720
|
}
|
|
8429
9721
|
/**
|
|
8430
|
-
* Request parameters for
|
|
9722
|
+
* Request parameters for getcontentHaloRunV1alpha1Snapshot operation in ContentHaloRunV1alpha1SnapshotApi.
|
|
8431
9723
|
* @export
|
|
8432
|
-
* @interface
|
|
9724
|
+
* @interface ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest
|
|
8433
9725
|
*/
|
|
8434
|
-
interface
|
|
9726
|
+
interface ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest {
|
|
8435
9727
|
/**
|
|
8436
|
-
* Name of
|
|
9728
|
+
* Name of snapshot
|
|
8437
9729
|
* @type {string}
|
|
8438
|
-
* @memberof
|
|
9730
|
+
* @memberof ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1Snapshot
|
|
8439
9731
|
*/
|
|
8440
9732
|
readonly name: string;
|
|
8441
9733
|
}
|
|
8442
9734
|
/**
|
|
8443
|
-
* Request parameters for
|
|
9735
|
+
* Request parameters for listcontentHaloRunV1alpha1Snapshot operation in ContentHaloRunV1alpha1SnapshotApi.
|
|
8444
9736
|
* @export
|
|
8445
|
-
* @interface
|
|
9737
|
+
* @interface ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest
|
|
8446
9738
|
*/
|
|
8447
|
-
interface
|
|
9739
|
+
interface ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest {
|
|
8448
9740
|
/**
|
|
8449
9741
|
* The page number. Zero indicates no page.
|
|
8450
9742
|
* @type {number}
|
|
8451
|
-
* @memberof
|
|
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
|
|
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
|
|
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
|
|
9761
|
+
* @memberof ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1Snapshot
|
|
8470
9762
|
*/
|
|
8471
9763
|
readonly fieldSelector?: Array<string>;
|
|
8472
9764
|
}
|
|
8473
9765
|
/**
|
|
8474
|
-
* Request parameters for
|
|
9766
|
+
* Request parameters for updatecontentHaloRunV1alpha1Snapshot operation in ContentHaloRunV1alpha1SnapshotApi.
|
|
8475
9767
|
* @export
|
|
8476
|
-
* @interface
|
|
9768
|
+
* @interface ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest
|
|
8477
9769
|
*/
|
|
8478
|
-
interface
|
|
9770
|
+
interface ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest {
|
|
8479
9771
|
/**
|
|
8480
|
-
* Name of
|
|
9772
|
+
* Name of snapshot
|
|
8481
9773
|
* @type {string}
|
|
8482
|
-
* @memberof
|
|
9774
|
+
* @memberof ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1Snapshot
|
|
8483
9775
|
*/
|
|
8484
9776
|
readonly name: string;
|
|
8485
9777
|
/**
|
|
8486
|
-
* Updated
|
|
8487
|
-
* @type {
|
|
8488
|
-
* @memberof
|
|
9778
|
+
* Updated snapshot
|
|
9779
|
+
* @type {Snapshot}
|
|
9780
|
+
* @memberof ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1Snapshot
|
|
8489
9781
|
*/
|
|
8490
|
-
readonly
|
|
9782
|
+
readonly snapshot?: Snapshot;
|
|
8491
9783
|
}
|
|
8492
9784
|
/**
|
|
8493
|
-
*
|
|
9785
|
+
* ContentHaloRunV1alpha1SnapshotApi - object-oriented interface
|
|
8494
9786
|
* @export
|
|
8495
|
-
* @class
|
|
9787
|
+
* @class ContentHaloRunV1alpha1SnapshotApi
|
|
8496
9788
|
* @extends {BaseAPI}
|
|
8497
9789
|
*/
|
|
8498
|
-
declare class
|
|
9790
|
+
declare class ContentHaloRunV1alpha1SnapshotApi extends BaseAPI {
|
|
8499
9791
|
/**
|
|
8500
|
-
* Create content.halo.run/v1alpha1/
|
|
8501
|
-
* @param {
|
|
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
|
|
9796
|
+
* @memberof ContentHaloRunV1alpha1SnapshotApi
|
|
8505
9797
|
*/
|
|
8506
|
-
|
|
9798
|
+
createcontentHaloRunV1alpha1Snapshot(requestParameters?: ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Snapshot, any>>;
|
|
8507
9799
|
/**
|
|
8508
|
-
* Delete content.halo.run/v1alpha1/
|
|
8509
|
-
* @param {
|
|
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
|
|
9804
|
+
* @memberof ContentHaloRunV1alpha1SnapshotApi
|
|
8513
9805
|
*/
|
|
8514
|
-
|
|
9806
|
+
deletecontentHaloRunV1alpha1Snapshot(requestParameters: ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
8515
9807
|
/**
|
|
8516
|
-
* Get content.halo.run/v1alpha1/
|
|
8517
|
-
* @param {
|
|
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
|
|
9812
|
+
* @memberof ContentHaloRunV1alpha1SnapshotApi
|
|
8521
9813
|
*/
|
|
8522
|
-
|
|
9814
|
+
getcontentHaloRunV1alpha1Snapshot(requestParameters: ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Snapshot, any>>;
|
|
8523
9815
|
/**
|
|
8524
|
-
* List content.halo.run/v1alpha1/
|
|
8525
|
-
* @param {
|
|
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
|
|
9820
|
+
* @memberof ContentHaloRunV1alpha1SnapshotApi
|
|
8529
9821
|
*/
|
|
8530
|
-
|
|
9822
|
+
listcontentHaloRunV1alpha1Snapshot(requestParameters?: ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SnapshotList, any>>;
|
|
8531
9823
|
/**
|
|
8532
|
-
* Update content.halo.run/v1alpha1/
|
|
8533
|
-
* @param {
|
|
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
|
|
9828
|
+
* @memberof ContentHaloRunV1alpha1SnapshotApi
|
|
8537
9829
|
*/
|
|
8538
|
-
|
|
9830
|
+
updatecontentHaloRunV1alpha1Snapshot(requestParameters: ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Snapshot, any>>;
|
|
8539
9831
|
}
|
|
8540
9832
|
|
|
8541
9833
|
/**
|
|
8542
|
-
*
|
|
9834
|
+
* ContentHaloRunV1alpha1TagApi - axios parameter creator
|
|
8543
9835
|
* @export
|
|
8544
9836
|
*/
|
|
8545
|
-
declare const
|
|
9837
|
+
declare const ContentHaloRunV1alpha1TagApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
8546
9838
|
/**
|
|
8547
|
-
* Create content.halo.run/v1alpha1/
|
|
8548
|
-
* @param {
|
|
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
|
-
|
|
9844
|
+
createcontentHaloRunV1alpha1Tag: (tag?: Tag, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8553
9845
|
/**
|
|
8554
|
-
* Delete content.halo.run/v1alpha1/
|
|
8555
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
9851
|
+
deletecontentHaloRunV1alpha1Tag: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8560
9852
|
/**
|
|
8561
|
-
* Get content.halo.run/v1alpha1/
|
|
8562
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
9858
|
+
getcontentHaloRunV1alpha1Tag: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8567
9859
|
/**
|
|
8568
|
-
* List content.halo.run/v1alpha1/
|
|
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
|
-
|
|
9868
|
+
listcontentHaloRunV1alpha1Tag: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8577
9869
|
/**
|
|
8578
|
-
* Update content.halo.run/v1alpha1/
|
|
8579
|
-
* @param {string} name Name of
|
|
8580
|
-
* @param {
|
|
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
|
-
|
|
9876
|
+
updatecontentHaloRunV1alpha1Tag: (name: string, tag?: Tag, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8585
9877
|
};
|
|
8586
9878
|
/**
|
|
8587
|
-
*
|
|
9879
|
+
* ContentHaloRunV1alpha1TagApi - functional programming interface
|
|
8588
9880
|
* @export
|
|
8589
9881
|
*/
|
|
8590
|
-
declare const
|
|
9882
|
+
declare const ContentHaloRunV1alpha1TagApiFp: (configuration?: Configuration) => {
|
|
8591
9883
|
/**
|
|
8592
|
-
* Create content.halo.run/v1alpha1/
|
|
8593
|
-
* @param {
|
|
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
|
-
|
|
9889
|
+
createcontentHaloRunV1alpha1Tag(tag?: Tag, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tag>>;
|
|
8598
9890
|
/**
|
|
8599
|
-
* Delete content.halo.run/v1alpha1/
|
|
8600
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
9896
|
+
deletecontentHaloRunV1alpha1Tag(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8605
9897
|
/**
|
|
8606
|
-
* Get content.halo.run/v1alpha1/
|
|
8607
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
9903
|
+
getcontentHaloRunV1alpha1Tag(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tag>>;
|
|
8612
9904
|
/**
|
|
8613
|
-
* List content.halo.run/v1alpha1/
|
|
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
|
-
|
|
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/
|
|
8624
|
-
* @param {string} name Name of
|
|
8625
|
-
* @param {
|
|
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
|
-
|
|
9921
|
+
updatecontentHaloRunV1alpha1Tag(name: string, tag?: Tag, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tag>>;
|
|
8630
9922
|
};
|
|
8631
9923
|
/**
|
|
8632
|
-
*
|
|
9924
|
+
* ContentHaloRunV1alpha1TagApi - factory interface
|
|
8633
9925
|
* @export
|
|
8634
9926
|
*/
|
|
8635
|
-
declare const
|
|
9927
|
+
declare const ContentHaloRunV1alpha1TagApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
8636
9928
|
/**
|
|
8637
|
-
* Create content.halo.run/v1alpha1/
|
|
8638
|
-
* @param {
|
|
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
|
-
|
|
9934
|
+
createcontentHaloRunV1alpha1Tag(tag?: Tag, options?: any): AxiosPromise<Tag>;
|
|
8643
9935
|
/**
|
|
8644
|
-
* Delete content.halo.run/v1alpha1/
|
|
8645
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
9941
|
+
deletecontentHaloRunV1alpha1Tag(name: string, options?: any): AxiosPromise<void>;
|
|
8650
9942
|
/**
|
|
8651
|
-
* Get content.halo.run/v1alpha1/
|
|
8652
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
9948
|
+
getcontentHaloRunV1alpha1Tag(name: string, options?: any): AxiosPromise<Tag>;
|
|
8657
9949
|
/**
|
|
8658
|
-
* List content.halo.run/v1alpha1/
|
|
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
|
-
|
|
9958
|
+
listcontentHaloRunV1alpha1Tag(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<TagList>;
|
|
8667
9959
|
/**
|
|
8668
|
-
* Update content.halo.run/v1alpha1/
|
|
8669
|
-
* @param {string} name Name of
|
|
8670
|
-
* @param {
|
|
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
|
-
|
|
9966
|
+
updatecontentHaloRunV1alpha1Tag(name: string, tag?: Tag, options?: any): AxiosPromise<Tag>;
|
|
8675
9967
|
};
|
|
8676
9968
|
/**
|
|
8677
|
-
* Request parameters for
|
|
9969
|
+
* Request parameters for createcontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
|
|
8678
9970
|
* @export
|
|
8679
|
-
* @interface
|
|
9971
|
+
* @interface ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest
|
|
8680
9972
|
*/
|
|
8681
|
-
interface
|
|
9973
|
+
interface ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest {
|
|
8682
9974
|
/**
|
|
8683
|
-
* Fresh
|
|
8684
|
-
* @type {
|
|
8685
|
-
* @memberof
|
|
9975
|
+
* Fresh tag
|
|
9976
|
+
* @type {Tag}
|
|
9977
|
+
* @memberof ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1Tag
|
|
8686
9978
|
*/
|
|
8687
|
-
readonly
|
|
9979
|
+
readonly tag?: Tag;
|
|
8688
9980
|
}
|
|
8689
9981
|
/**
|
|
8690
|
-
* Request parameters for
|
|
9982
|
+
* Request parameters for deletecontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
|
|
8691
9983
|
* @export
|
|
8692
|
-
* @interface
|
|
9984
|
+
* @interface ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest
|
|
8693
9985
|
*/
|
|
8694
|
-
interface
|
|
9986
|
+
interface ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest {
|
|
8695
9987
|
/**
|
|
8696
|
-
* Name of
|
|
9988
|
+
* Name of tag
|
|
8697
9989
|
* @type {string}
|
|
8698
|
-
* @memberof
|
|
9990
|
+
* @memberof ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1Tag
|
|
8699
9991
|
*/
|
|
8700
9992
|
readonly name: string;
|
|
8701
9993
|
}
|
|
8702
9994
|
/**
|
|
8703
|
-
* Request parameters for
|
|
9995
|
+
* Request parameters for getcontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
|
|
8704
9996
|
* @export
|
|
8705
|
-
* @interface
|
|
9997
|
+
* @interface ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest
|
|
8706
9998
|
*/
|
|
8707
|
-
interface
|
|
9999
|
+
interface ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest {
|
|
8708
10000
|
/**
|
|
8709
|
-
* Name of
|
|
10001
|
+
* Name of tag
|
|
8710
10002
|
* @type {string}
|
|
8711
|
-
* @memberof
|
|
10003
|
+
* @memberof ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1Tag
|
|
8712
10004
|
*/
|
|
8713
10005
|
readonly name: string;
|
|
8714
10006
|
}
|
|
8715
10007
|
/**
|
|
8716
|
-
* Request parameters for
|
|
10008
|
+
* Request parameters for listcontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
|
|
8717
10009
|
* @export
|
|
8718
|
-
* @interface
|
|
10010
|
+
* @interface ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest
|
|
8719
10011
|
*/
|
|
8720
|
-
interface
|
|
10012
|
+
interface ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest {
|
|
8721
10013
|
/**
|
|
8722
10014
|
* The page number. Zero indicates no page.
|
|
8723
10015
|
* @type {number}
|
|
8724
|
-
* @memberof
|
|
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
|
|
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
|
|
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
|
|
10034
|
+
* @memberof ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1Tag
|
|
8743
10035
|
*/
|
|
8744
10036
|
readonly fieldSelector?: Array<string>;
|
|
8745
10037
|
}
|
|
8746
10038
|
/**
|
|
8747
|
-
* Request parameters for
|
|
10039
|
+
* Request parameters for updatecontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
|
|
8748
10040
|
* @export
|
|
8749
|
-
* @interface
|
|
10041
|
+
* @interface ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest
|
|
8750
10042
|
*/
|
|
8751
|
-
interface
|
|
10043
|
+
interface ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest {
|
|
8752
10044
|
/**
|
|
8753
|
-
* Name of
|
|
10045
|
+
* Name of tag
|
|
8754
10046
|
* @type {string}
|
|
8755
|
-
* @memberof
|
|
10047
|
+
* @memberof ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1Tag
|
|
8756
10048
|
*/
|
|
8757
10049
|
readonly name: string;
|
|
8758
10050
|
/**
|
|
8759
|
-
* Updated
|
|
8760
|
-
* @type {
|
|
8761
|
-
* @memberof
|
|
10051
|
+
* Updated tag
|
|
10052
|
+
* @type {Tag}
|
|
10053
|
+
* @memberof ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1Tag
|
|
8762
10054
|
*/
|
|
8763
|
-
readonly
|
|
10055
|
+
readonly tag?: Tag;
|
|
8764
10056
|
}
|
|
8765
10057
|
/**
|
|
8766
|
-
*
|
|
10058
|
+
* ContentHaloRunV1alpha1TagApi - object-oriented interface
|
|
8767
10059
|
* @export
|
|
8768
|
-
* @class
|
|
10060
|
+
* @class ContentHaloRunV1alpha1TagApi
|
|
8769
10061
|
* @extends {BaseAPI}
|
|
8770
10062
|
*/
|
|
8771
|
-
declare class
|
|
10063
|
+
declare class ContentHaloRunV1alpha1TagApi extends BaseAPI {
|
|
8772
10064
|
/**
|
|
8773
|
-
* Create content.halo.run/v1alpha1/
|
|
8774
|
-
* @param {
|
|
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
|
|
10069
|
+
* @memberof ContentHaloRunV1alpha1TagApi
|
|
8778
10070
|
*/
|
|
8779
|
-
|
|
10071
|
+
createcontentHaloRunV1alpha1Tag(requestParameters?: ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Tag, any>>;
|
|
8780
10072
|
/**
|
|
8781
|
-
* Delete content.halo.run/v1alpha1/
|
|
8782
|
-
* @param {
|
|
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
|
|
10077
|
+
* @memberof ContentHaloRunV1alpha1TagApi
|
|
8786
10078
|
*/
|
|
8787
|
-
|
|
10079
|
+
deletecontentHaloRunV1alpha1Tag(requestParameters: ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
8788
10080
|
/**
|
|
8789
|
-
* Get content.halo.run/v1alpha1/
|
|
8790
|
-
* @param {
|
|
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
|
|
10085
|
+
* @memberof ContentHaloRunV1alpha1TagApi
|
|
8794
10086
|
*/
|
|
8795
|
-
|
|
10087
|
+
getcontentHaloRunV1alpha1Tag(requestParameters: ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Tag, any>>;
|
|
8796
10088
|
/**
|
|
8797
|
-
* List content.halo.run/v1alpha1/
|
|
8798
|
-
* @param {
|
|
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
|
|
10093
|
+
* @memberof ContentHaloRunV1alpha1TagApi
|
|
8802
10094
|
*/
|
|
8803
|
-
|
|
10095
|
+
listcontentHaloRunV1alpha1Tag(requestParameters?: ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<TagList, any>>;
|
|
8804
10096
|
/**
|
|
8805
|
-
* Update content.halo.run/v1alpha1/
|
|
8806
|
-
* @param {
|
|
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
|
|
10101
|
+
* @memberof ContentHaloRunV1alpha1TagApi
|
|
8810
10102
|
*/
|
|
8811
|
-
|
|
10103
|
+
updatecontentHaloRunV1alpha1Tag(requestParameters: ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Tag, any>>;
|
|
8812
10104
|
}
|
|
8813
10105
|
|
|
8814
10106
|
/**
|
|
8815
|
-
*
|
|
10107
|
+
* CoreHaloRunV1alpha1LinkApi - axios parameter creator
|
|
8816
10108
|
* @export
|
|
8817
10109
|
*/
|
|
8818
|
-
declare const
|
|
10110
|
+
declare const CoreHaloRunV1alpha1LinkApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
8819
10111
|
/**
|
|
8820
|
-
* Create
|
|
8821
|
-
* @param {
|
|
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
|
-
|
|
10117
|
+
createcoreHaloRunV1alpha1Link: (link?: Link, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8826
10118
|
/**
|
|
8827
|
-
* Delete
|
|
8828
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
10124
|
+
deletecoreHaloRunV1alpha1Link: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8833
10125
|
/**
|
|
8834
|
-
* Get
|
|
8835
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
10131
|
+
getcoreHaloRunV1alpha1Link: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8840
10132
|
/**
|
|
8841
|
-
* List
|
|
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
|
-
|
|
10141
|
+
listcoreHaloRunV1alpha1Link: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8850
10142
|
/**
|
|
8851
|
-
* Update
|
|
8852
|
-
* @param {string} name Name of
|
|
8853
|
-
* @param {
|
|
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
|
-
|
|
10149
|
+
updatecoreHaloRunV1alpha1Link: (name: string, link?: Link, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8858
10150
|
};
|
|
8859
10151
|
/**
|
|
8860
|
-
*
|
|
10152
|
+
* CoreHaloRunV1alpha1LinkApi - functional programming interface
|
|
8861
10153
|
* @export
|
|
8862
10154
|
*/
|
|
8863
|
-
declare const
|
|
10155
|
+
declare const CoreHaloRunV1alpha1LinkApiFp: (configuration?: Configuration) => {
|
|
8864
10156
|
/**
|
|
8865
|
-
* Create
|
|
8866
|
-
* @param {
|
|
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
|
-
|
|
10162
|
+
createcoreHaloRunV1alpha1Link(link?: Link, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
|
|
8871
10163
|
/**
|
|
8872
|
-
* Delete
|
|
8873
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
10169
|
+
deletecoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8878
10170
|
/**
|
|
8879
|
-
* Get
|
|
8880
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
10176
|
+
getcoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
|
|
8885
10177
|
/**
|
|
8886
|
-
* List
|
|
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
|
-
|
|
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
|
|
8897
|
-
* @param {string} name Name of
|
|
8898
|
-
* @param {
|
|
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
|
-
|
|
10194
|
+
updatecoreHaloRunV1alpha1Link(name: string, link?: Link, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
|
|
8903
10195
|
};
|
|
8904
10196
|
/**
|
|
8905
|
-
*
|
|
10197
|
+
* CoreHaloRunV1alpha1LinkApi - factory interface
|
|
8906
10198
|
* @export
|
|
8907
10199
|
*/
|
|
8908
|
-
declare const
|
|
10200
|
+
declare const CoreHaloRunV1alpha1LinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
8909
10201
|
/**
|
|
8910
|
-
* Create
|
|
8911
|
-
* @param {
|
|
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
|
-
|
|
10207
|
+
createcoreHaloRunV1alpha1Link(link?: Link, options?: any): AxiosPromise<Link>;
|
|
8916
10208
|
/**
|
|
8917
|
-
* Delete
|
|
8918
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
10214
|
+
deletecoreHaloRunV1alpha1Link(name: string, options?: any): AxiosPromise<void>;
|
|
8923
10215
|
/**
|
|
8924
|
-
* Get
|
|
8925
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
10221
|
+
getcoreHaloRunV1alpha1Link(name: string, options?: any): AxiosPromise<Link>;
|
|
8930
10222
|
/**
|
|
8931
|
-
* List
|
|
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
|
-
|
|
10231
|
+
listcoreHaloRunV1alpha1Link(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<string>;
|
|
8940
10232
|
/**
|
|
8941
|
-
* Update
|
|
8942
|
-
* @param {string} name Name of
|
|
8943
|
-
* @param {
|
|
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
|
-
|
|
10239
|
+
updatecoreHaloRunV1alpha1Link(name: string, link?: Link, options?: any): AxiosPromise<Link>;
|
|
8948
10240
|
};
|
|
8949
10241
|
/**
|
|
8950
|
-
* Request parameters for
|
|
10242
|
+
* Request parameters for createcoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
|
|
8951
10243
|
* @export
|
|
8952
|
-
* @interface
|
|
10244
|
+
* @interface CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest
|
|
8953
10245
|
*/
|
|
8954
|
-
interface
|
|
10246
|
+
interface CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest {
|
|
8955
10247
|
/**
|
|
8956
|
-
* Fresh
|
|
8957
|
-
* @type {
|
|
8958
|
-
* @memberof
|
|
10248
|
+
* Fresh link
|
|
10249
|
+
* @type {Link}
|
|
10250
|
+
* @memberof CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1Link
|
|
8959
10251
|
*/
|
|
8960
|
-
readonly
|
|
10252
|
+
readonly link?: Link;
|
|
8961
10253
|
}
|
|
8962
10254
|
/**
|
|
8963
|
-
* Request parameters for
|
|
10255
|
+
* Request parameters for deletecoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
|
|
8964
10256
|
* @export
|
|
8965
|
-
* @interface
|
|
10257
|
+
* @interface CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest
|
|
8966
10258
|
*/
|
|
8967
|
-
interface
|
|
10259
|
+
interface CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest {
|
|
8968
10260
|
/**
|
|
8969
|
-
* Name of
|
|
10261
|
+
* Name of link
|
|
8970
10262
|
* @type {string}
|
|
8971
|
-
* @memberof
|
|
10263
|
+
* @memberof CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1Link
|
|
8972
10264
|
*/
|
|
8973
10265
|
readonly name: string;
|
|
8974
10266
|
}
|
|
8975
10267
|
/**
|
|
8976
|
-
* Request parameters for
|
|
10268
|
+
* Request parameters for getcoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
|
|
8977
10269
|
* @export
|
|
8978
|
-
* @interface
|
|
10270
|
+
* @interface CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest
|
|
8979
10271
|
*/
|
|
8980
|
-
interface
|
|
10272
|
+
interface CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest {
|
|
8981
10273
|
/**
|
|
8982
|
-
* Name of
|
|
10274
|
+
* Name of link
|
|
8983
10275
|
* @type {string}
|
|
8984
|
-
* @memberof
|
|
10276
|
+
* @memberof CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1Link
|
|
8985
10277
|
*/
|
|
8986
10278
|
readonly name: string;
|
|
8987
10279
|
}
|
|
8988
10280
|
/**
|
|
8989
|
-
* Request parameters for
|
|
10281
|
+
* Request parameters for listcoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
|
|
8990
10282
|
* @export
|
|
8991
|
-
* @interface
|
|
10283
|
+
* @interface CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest
|
|
8992
10284
|
*/
|
|
8993
|
-
interface
|
|
10285
|
+
interface CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest {
|
|
8994
10286
|
/**
|
|
8995
10287
|
* The page number. Zero indicates no page.
|
|
8996
10288
|
* @type {number}
|
|
8997
|
-
* @memberof
|
|
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
|
|
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
|
|
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
|
|
10307
|
+
* @memberof CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1Link
|
|
9016
10308
|
*/
|
|
9017
10309
|
readonly fieldSelector?: Array<string>;
|
|
9018
10310
|
}
|
|
9019
10311
|
/**
|
|
9020
|
-
* Request parameters for
|
|
10312
|
+
* Request parameters for updatecoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
|
|
9021
10313
|
* @export
|
|
9022
|
-
* @interface
|
|
10314
|
+
* @interface CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest
|
|
9023
10315
|
*/
|
|
9024
|
-
interface
|
|
10316
|
+
interface CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest {
|
|
9025
10317
|
/**
|
|
9026
|
-
* Name of
|
|
10318
|
+
* Name of link
|
|
9027
10319
|
* @type {string}
|
|
9028
|
-
* @memberof
|
|
10320
|
+
* @memberof CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1Link
|
|
9029
10321
|
*/
|
|
9030
10322
|
readonly name: string;
|
|
9031
10323
|
/**
|
|
9032
|
-
* Updated
|
|
9033
|
-
* @type {
|
|
9034
|
-
* @memberof
|
|
10324
|
+
* Updated link
|
|
10325
|
+
* @type {Link}
|
|
10326
|
+
* @memberof CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1Link
|
|
9035
10327
|
*/
|
|
9036
|
-
readonly
|
|
10328
|
+
readonly link?: Link;
|
|
9037
10329
|
}
|
|
9038
10330
|
/**
|
|
9039
|
-
*
|
|
10331
|
+
* CoreHaloRunV1alpha1LinkApi - object-oriented interface
|
|
9040
10332
|
* @export
|
|
9041
|
-
* @class
|
|
10333
|
+
* @class CoreHaloRunV1alpha1LinkApi
|
|
9042
10334
|
* @extends {BaseAPI}
|
|
9043
10335
|
*/
|
|
9044
|
-
declare class
|
|
10336
|
+
declare class CoreHaloRunV1alpha1LinkApi extends BaseAPI {
|
|
9045
10337
|
/**
|
|
9046
|
-
* Create
|
|
9047
|
-
* @param {
|
|
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
|
|
10342
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
9051
10343
|
*/
|
|
9052
|
-
|
|
10344
|
+
createcoreHaloRunV1alpha1Link(requestParameters?: CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
|
|
9053
10345
|
/**
|
|
9054
|
-
* Delete
|
|
9055
|
-
* @param {
|
|
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
|
|
10350
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
9059
10351
|
*/
|
|
9060
|
-
|
|
10352
|
+
deletecoreHaloRunV1alpha1Link(requestParameters: CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
9061
10353
|
/**
|
|
9062
|
-
* Get
|
|
9063
|
-
* @param {
|
|
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
|
|
10358
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
9067
10359
|
*/
|
|
9068
|
-
|
|
10360
|
+
getcoreHaloRunV1alpha1Link(requestParameters: CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
|
|
9069
10361
|
/**
|
|
9070
|
-
* List
|
|
9071
|
-
* @param {
|
|
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
|
|
10366
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
9075
10367
|
*/
|
|
9076
|
-
|
|
10368
|
+
listcoreHaloRunV1alpha1Link(requestParameters?: CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
9077
10369
|
/**
|
|
9078
|
-
* Update
|
|
9079
|
-
* @param {
|
|
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
|
|
10374
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
9083
10375
|
*/
|
|
9084
|
-
|
|
10376
|
+
updatecoreHaloRunV1alpha1Link(requestParameters: CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
|
|
9085
10377
|
}
|
|
9086
10378
|
|
|
9087
10379
|
/**
|
|
9088
|
-
*
|
|
10380
|
+
* CoreHaloRunV1alpha1LinkGroupApi - axios parameter creator
|
|
9089
10381
|
* @export
|
|
9090
10382
|
*/
|
|
9091
|
-
declare const
|
|
10383
|
+
declare const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
9092
10384
|
/**
|
|
9093
|
-
* Create
|
|
9094
|
-
* @param {
|
|
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
|
-
|
|
10390
|
+
createcoreHaloRunV1alpha1LinkGroup: (linkGroup?: LinkGroup, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9099
10391
|
/**
|
|
9100
|
-
* Delete
|
|
9101
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
10397
|
+
deletecoreHaloRunV1alpha1LinkGroup: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9106
10398
|
/**
|
|
9107
|
-
* Get
|
|
9108
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
10404
|
+
getcoreHaloRunV1alpha1LinkGroup: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9113
10405
|
/**
|
|
9114
|
-
* List
|
|
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
|
-
|
|
10414
|
+
listcoreHaloRunV1alpha1LinkGroup: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9123
10415
|
/**
|
|
9124
|
-
* Update
|
|
9125
|
-
* @param {string} name Name of
|
|
9126
|
-
* @param {
|
|
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
|
-
|
|
10422
|
+
updatecoreHaloRunV1alpha1LinkGroup: (name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9131
10423
|
};
|
|
9132
10424
|
/**
|
|
9133
|
-
*
|
|
10425
|
+
* CoreHaloRunV1alpha1LinkGroupApi - functional programming interface
|
|
9134
10426
|
* @export
|
|
9135
10427
|
*/
|
|
9136
|
-
declare const
|
|
10428
|
+
declare const CoreHaloRunV1alpha1LinkGroupApiFp: (configuration?: Configuration) => {
|
|
9137
10429
|
/**
|
|
9138
|
-
* Create
|
|
9139
|
-
* @param {
|
|
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
|
-
|
|
10435
|
+
createcoreHaloRunV1alpha1LinkGroup(linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
|
|
9144
10436
|
/**
|
|
9145
|
-
* Delete
|
|
9146
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
10442
|
+
deletecoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
9151
10443
|
/**
|
|
9152
|
-
* Get
|
|
9153
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
10449
|
+
getcoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
|
|
9158
10450
|
/**
|
|
9159
|
-
* List
|
|
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
|
-
|
|
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
|
|
9170
|
-
* @param {string} name Name of
|
|
9171
|
-
* @param {
|
|
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
|
-
|
|
10467
|
+
updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
|
|
9176
10468
|
};
|
|
9177
10469
|
/**
|
|
9178
|
-
*
|
|
10470
|
+
* CoreHaloRunV1alpha1LinkGroupApi - factory interface
|
|
9179
10471
|
* @export
|
|
9180
10472
|
*/
|
|
9181
|
-
declare const
|
|
10473
|
+
declare const CoreHaloRunV1alpha1LinkGroupApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
9182
10474
|
/**
|
|
9183
|
-
* Create
|
|
9184
|
-
* @param {
|
|
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
|
-
|
|
10480
|
+
createcoreHaloRunV1alpha1LinkGroup(linkGroup?: LinkGroup, options?: any): AxiosPromise<LinkGroup>;
|
|
9189
10481
|
/**
|
|
9190
|
-
* Delete
|
|
9191
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
10487
|
+
deletecoreHaloRunV1alpha1LinkGroup(name: string, options?: any): AxiosPromise<void>;
|
|
9196
10488
|
/**
|
|
9197
|
-
* Get
|
|
9198
|
-
* @param {string} name Name of
|
|
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
|
-
|
|
10494
|
+
getcoreHaloRunV1alpha1LinkGroup(name: string, options?: any): AxiosPromise<LinkGroup>;
|
|
9203
10495
|
/**
|
|
9204
|
-
* List
|
|
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
|
-
|
|
10504
|
+
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<string>;
|
|
9213
10505
|
/**
|
|
9214
|
-
* Update
|
|
9215
|
-
* @param {string} name Name of
|
|
9216
|
-
* @param {
|
|
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
|
-
|
|
10512
|
+
updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: any): AxiosPromise<LinkGroup>;
|
|
9221
10513
|
};
|
|
9222
10514
|
/**
|
|
9223
|
-
* Request parameters for
|
|
10515
|
+
* Request parameters for createcoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
|
|
9224
10516
|
* @export
|
|
9225
|
-
* @interface
|
|
10517
|
+
* @interface CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest
|
|
9226
10518
|
*/
|
|
9227
|
-
interface
|
|
10519
|
+
interface CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest {
|
|
9228
10520
|
/**
|
|
9229
|
-
* Fresh
|
|
9230
|
-
* @type {
|
|
9231
|
-
* @memberof
|
|
10521
|
+
* Fresh linkgroup
|
|
10522
|
+
* @type {LinkGroup}
|
|
10523
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroup
|
|
9232
10524
|
*/
|
|
9233
|
-
readonly
|
|
10525
|
+
readonly linkGroup?: LinkGroup;
|
|
9234
10526
|
}
|
|
9235
10527
|
/**
|
|
9236
|
-
* Request parameters for
|
|
10528
|
+
* Request parameters for deletecoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
|
|
9237
10529
|
* @export
|
|
9238
|
-
* @interface
|
|
10530
|
+
* @interface CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest
|
|
9239
10531
|
*/
|
|
9240
|
-
interface
|
|
10532
|
+
interface CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest {
|
|
9241
10533
|
/**
|
|
9242
|
-
* Name of
|
|
10534
|
+
* Name of linkgroup
|
|
9243
10535
|
* @type {string}
|
|
9244
|
-
* @memberof
|
|
10536
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroup
|
|
9245
10537
|
*/
|
|
9246
10538
|
readonly name: string;
|
|
9247
10539
|
}
|
|
9248
10540
|
/**
|
|
9249
|
-
* Request parameters for
|
|
10541
|
+
* Request parameters for getcoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
|
|
9250
10542
|
* @export
|
|
9251
|
-
* @interface
|
|
10543
|
+
* @interface CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest
|
|
9252
10544
|
*/
|
|
9253
|
-
interface
|
|
10545
|
+
interface CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest {
|
|
9254
10546
|
/**
|
|
9255
|
-
* Name of
|
|
10547
|
+
* Name of linkgroup
|
|
9256
10548
|
* @type {string}
|
|
9257
|
-
* @memberof
|
|
10549
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroup
|
|
9258
10550
|
*/
|
|
9259
10551
|
readonly name: string;
|
|
9260
10552
|
}
|
|
9261
10553
|
/**
|
|
9262
|
-
* Request parameters for
|
|
10554
|
+
* Request parameters for listcoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
|
|
9263
10555
|
* @export
|
|
9264
|
-
* @interface
|
|
10556
|
+
* @interface CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest
|
|
9265
10557
|
*/
|
|
9266
|
-
interface
|
|
10558
|
+
interface CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest {
|
|
9267
10559
|
/**
|
|
9268
10560
|
* The page number. Zero indicates no page.
|
|
9269
10561
|
* @type {number}
|
|
9270
|
-
* @memberof
|
|
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
|
|
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
|
|
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
|
|
10580
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroup
|
|
9289
10581
|
*/
|
|
9290
10582
|
readonly fieldSelector?: Array<string>;
|
|
9291
10583
|
}
|
|
9292
10584
|
/**
|
|
9293
|
-
* Request parameters for
|
|
10585
|
+
* Request parameters for updatecoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
|
|
9294
10586
|
* @export
|
|
9295
|
-
* @interface
|
|
10587
|
+
* @interface CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest
|
|
9296
10588
|
*/
|
|
9297
|
-
interface
|
|
10589
|
+
interface CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest {
|
|
9298
10590
|
/**
|
|
9299
|
-
* Name of
|
|
10591
|
+
* Name of linkgroup
|
|
9300
10592
|
* @type {string}
|
|
9301
|
-
* @memberof
|
|
10593
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroup
|
|
9302
10594
|
*/
|
|
9303
10595
|
readonly name: string;
|
|
9304
10596
|
/**
|
|
9305
|
-
* Updated
|
|
9306
|
-
* @type {
|
|
9307
|
-
* @memberof
|
|
10597
|
+
* Updated linkgroup
|
|
10598
|
+
* @type {LinkGroup}
|
|
10599
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroup
|
|
9308
10600
|
*/
|
|
9309
|
-
readonly
|
|
10601
|
+
readonly linkGroup?: LinkGroup;
|
|
9310
10602
|
}
|
|
9311
10603
|
/**
|
|
9312
|
-
*
|
|
10604
|
+
* CoreHaloRunV1alpha1LinkGroupApi - object-oriented interface
|
|
9313
10605
|
* @export
|
|
9314
|
-
* @class
|
|
10606
|
+
* @class CoreHaloRunV1alpha1LinkGroupApi
|
|
9315
10607
|
* @extends {BaseAPI}
|
|
9316
10608
|
*/
|
|
9317
|
-
declare class
|
|
10609
|
+
declare class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
|
|
9318
10610
|
/**
|
|
9319
|
-
* Create
|
|
9320
|
-
* @param {
|
|
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
|
|
10615
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
9324
10616
|
*/
|
|
9325
|
-
|
|
10617
|
+
createcoreHaloRunV1alpha1LinkGroup(requestParameters?: CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
9326
10618
|
/**
|
|
9327
|
-
* Delete
|
|
9328
|
-
* @param {
|
|
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
|
|
10623
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
9332
10624
|
*/
|
|
9333
|
-
|
|
10625
|
+
deletecoreHaloRunV1alpha1LinkGroup(requestParameters: CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
9334
10626
|
/**
|
|
9335
|
-
* Get
|
|
9336
|
-
* @param {
|
|
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
|
|
10631
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
9340
10632
|
*/
|
|
9341
|
-
|
|
10633
|
+
getcoreHaloRunV1alpha1LinkGroup(requestParameters: CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
9342
10634
|
/**
|
|
9343
|
-
* List
|
|
9344
|
-
* @param {
|
|
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
|
|
10639
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
9348
10640
|
*/
|
|
9349
|
-
|
|
10641
|
+
listcoreHaloRunV1alpha1LinkGroup(requestParameters?: CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
9350
10642
|
/**
|
|
9351
|
-
* Update
|
|
9352
|
-
* @param {
|
|
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
|
|
10647
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
9356
10648
|
*/
|
|
9357
|
-
|
|
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,
|
|
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,
|
|
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,
|
|
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
|
|
11491
|
+
* Name of group
|
|
10200
11492
|
* @type {string}
|
|
10201
11493
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
10202
11494
|
*/
|
|
10203
|
-
readonly
|
|
11495
|
+
readonly group?: string;
|
|
10204
11496
|
/**
|
|
10205
|
-
* Name of
|
|
11497
|
+
* Name of user who uploaded the attachment
|
|
10206
11498
|
* @type {string}
|
|
10207
11499
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
10208
11500
|
*/
|
|
10209
|
-
readonly
|
|
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 };
|