@halo-dev/api-client 0.0.69 → 0.0.71

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1694,86 +1694,36 @@ interface Content {
1694
1694
  * https://openapi-generator.tech
1695
1695
  * Do not edit the class manually.
1696
1696
  */
1697
-
1698
1697
  /**
1699
1698
  *
1700
1699
  * @export
1701
- * @interface ContentRequest
1700
+ * @interface ContentWrapper
1702
1701
  */
1703
- interface ContentRequest {
1704
- /**
1705
- *
1706
- * @type {Ref}
1707
- * @memberof ContentRequest
1708
- */
1709
- subjectRef: Ref;
1710
- /**
1711
- *
1712
- * @type {string}
1713
- * @memberof ContentRequest
1714
- */
1715
- headSnapshotName?: string;
1716
- /**
1717
- *
1718
- * @type {string}
1719
- * @memberof ContentRequest
1720
- */
1721
- raw: string;
1722
- /**
1723
- *
1724
- * @type {string}
1725
- * @memberof ContentRequest
1726
- */
1727
- content: string;
1702
+ interface ContentWrapper {
1728
1703
  /**
1729
1704
  *
1730
1705
  * @type {string}
1731
- * @memberof ContentRequest
1732
- */
1733
- rawType: string;
1734
- }
1735
-
1736
- /**
1737
- * Halo Next API
1738
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
1739
- *
1740
- * The version of the OpenAPI document: 2.0.0
1741
- *
1742
- *
1743
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1744
- * https://openapi-generator.tech
1745
- * Do not edit the class manually.
1746
- */
1747
- /**
1748
- *
1749
- * @export
1750
- * @interface ContentResponse
1751
- */
1752
- interface ContentResponse {
1753
- /**
1754
- * The headSnapshotName if updated or new name if created.
1755
- * @type {string}
1756
- * @memberof ContentResponse
1706
+ * @memberof ContentWrapper
1757
1707
  */
1758
- snapshotName: string;
1708
+ snapshotName?: string;
1759
1709
  /**
1760
1710
  *
1761
1711
  * @type {string}
1762
- * @memberof ContentResponse
1712
+ * @memberof ContentWrapper
1763
1713
  */
1764
- raw: string;
1714
+ raw?: string;
1765
1715
  /**
1766
1716
  *
1767
1717
  * @type {string}
1768
- * @memberof ContentResponse
1718
+ * @memberof ContentWrapper
1769
1719
  */
1770
- content: string;
1720
+ content?: string;
1771
1721
  /**
1772
1722
  *
1773
1723
  * @type {string}
1774
- * @memberof ContentResponse
1724
+ * @memberof ContentWrapper
1775
1725
  */
1776
- rawType: string;
1726
+ rawType?: string;
1777
1727
  }
1778
1728
 
1779
1729
  /**
@@ -2203,22 +2153,22 @@ interface Excerpt {
2203
2153
  interface Extension {
2204
2154
  /**
2205
2155
  *
2206
- * @type {string}
2156
+ * @type {Metadata}
2207
2157
  * @memberof Extension
2208
2158
  */
2209
- kind: string;
2159
+ metadata: Metadata;
2210
2160
  /**
2211
2161
  *
2212
- * @type {Metadata}
2162
+ * @type {string}
2213
2163
  * @memberof Extension
2214
2164
  */
2215
- metadata: Metadata;
2165
+ apiVersion: string;
2216
2166
  /**
2217
2167
  *
2218
2168
  * @type {string}
2219
2169
  * @memberof Extension
2220
2170
  */
2221
- apiVersion: string;
2171
+ kind: string;
2222
2172
  }
2223
2173
 
2224
2174
  /**
@@ -6739,12 +6689,19 @@ interface ThemeSpec {
6739
6689
  * @memberof ThemeSpec
6740
6690
  */
6741
6691
  version: string;
6692
+ /**
6693
+ * Deprecated, use `requires` instead.
6694
+ * @type {string}
6695
+ * @memberof ThemeSpec
6696
+ * @deprecated
6697
+ */
6698
+ require?: string;
6742
6699
  /**
6743
6700
  *
6744
6701
  * @type {string}
6745
6702
  * @memberof ThemeSpec
6746
6703
  */
6747
- require: string;
6704
+ requires: string;
6748
6705
  /**
6749
6706
  *
6750
6707
  * @type {string}
@@ -6776,12 +6733,25 @@ interface ThemeSpec {
6776
6733
  * https://openapi-generator.tech
6777
6734
  * Do not edit the class manually.
6778
6735
  */
6736
+
6779
6737
  /**
6780
6738
  *
6781
6739
  * @export
6782
6740
  * @interface ThemeStatus
6783
6741
  */
6784
6742
  interface ThemeStatus {
6743
+ /**
6744
+ *
6745
+ * @type {string}
6746
+ * @memberof ThemeStatus
6747
+ */
6748
+ phase?: ThemeStatusPhaseEnum;
6749
+ /**
6750
+ *
6751
+ * @type {Array<Condition>}
6752
+ * @memberof ThemeStatus
6753
+ */
6754
+ conditions?: Array<Condition>;
6785
6755
  /**
6786
6756
  *
6787
6757
  * @type {string}
@@ -6789,6 +6759,12 @@ interface ThemeStatus {
6789
6759
  */
6790
6760
  location?: string;
6791
6761
  }
6762
+ declare const ThemeStatusPhaseEnum: {
6763
+ readonly Ready: "READY";
6764
+ readonly Failed: "FAILED";
6765
+ readonly Unknown: "UNKNOWN";
6766
+ };
6767
+ declare type ThemeStatusPhaseEnum = typeof ThemeStatusPhaseEnum[keyof typeof ThemeStatusPhaseEnum];
6792
6768
 
6793
6769
  /**
6794
6770
  * Halo Next API
@@ -7234,17 +7210,17 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configur
7234
7210
  * @param {string} [policy] Name of policy
7235
7211
  * @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
7236
7212
  * @param {string} [displayName] Display name of attachment
7237
- * @param {string} [group] Name of group
7238
7213
  * @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
7239
7214
  * @param {string} [uploadedBy] Name of user who uploaded the attachment
7215
+ * @param {string} [group] Name of group
7240
7216
  * @param {number} [size] Size of one page. Zero indicates no limit.
7241
- * @param {number} [page] The page number. Zero indicates no page.
7242
7217
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7243
7218
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7219
+ * @param {number} [page] The page number. Zero indicates no page.
7244
7220
  * @param {*} [options] Override http request option.
7245
7221
  * @throws {RequiredError}
7246
7222
  */
7247
- searchAttachments: (policy?: string, sort?: Array<string>, displayName?: string, group?: string, ungrouped?: boolean, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7223
+ searchAttachments: (policy?: string, sort?: Array<string>, displayName?: string, ungrouped?: boolean, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7248
7224
  /**
7249
7225
  *
7250
7226
  * @param {any} file
@@ -7265,17 +7241,17 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFp: (configuration?: Configu
7265
7241
  * @param {string} [policy] Name of policy
7266
7242
  * @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
7267
7243
  * @param {string} [displayName] Display name of attachment
7268
- * @param {string} [group] Name of group
7269
7244
  * @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
7270
7245
  * @param {string} [uploadedBy] Name of user who uploaded the attachment
7246
+ * @param {string} [group] Name of group
7271
7247
  * @param {number} [size] Size of one page. Zero indicates no limit.
7272
- * @param {number} [page] The page number. Zero indicates no page.
7273
7248
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7274
7249
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7250
+ * @param {number} [page] The page number. Zero indicates no page.
7275
7251
  * @param {*} [options] Override http request option.
7276
7252
  * @throws {RequiredError}
7277
7253
  */
7278
- searchAttachments(policy?: string, sort?: Array<string>, displayName?: string, group?: string, ungrouped?: boolean, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
7254
+ searchAttachments(policy?: string, sort?: Array<string>, displayName?: string, ungrouped?: boolean, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
7279
7255
  /**
7280
7256
  *
7281
7257
  * @param {any} file
@@ -7296,17 +7272,17 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFactory: (configuration?: Co
7296
7272
  * @param {string} [policy] Name of policy
7297
7273
  * @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
7298
7274
  * @param {string} [displayName] Display name of attachment
7299
- * @param {string} [group] Name of group
7300
7275
  * @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
7301
7276
  * @param {string} [uploadedBy] Name of user who uploaded the attachment
7277
+ * @param {string} [group] Name of group
7302
7278
  * @param {number} [size] Size of one page. Zero indicates no limit.
7303
- * @param {number} [page] The page number. Zero indicates no page.
7304
7279
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7305
7280
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7281
+ * @param {number} [page] The page number. Zero indicates no page.
7306
7282
  * @param {*} [options] Override http request option.
7307
7283
  * @throws {RequiredError}
7308
7284
  */
7309
- searchAttachments(policy?: string, sort?: Array<string>, displayName?: string, group?: string, ungrouped?: boolean, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<AttachmentList>;
7285
+ searchAttachments(policy?: string, sort?: Array<string>, displayName?: string, ungrouped?: boolean, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<AttachmentList>;
7310
7286
  /**
7311
7287
  *
7312
7288
  * @param {any} file
@@ -7341,12 +7317,6 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
7341
7317
  * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
7342
7318
  */
7343
7319
  readonly displayName?: string;
7344
- /**
7345
- * Name of group
7346
- * @type {string}
7347
- * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
7348
- */
7349
- readonly group?: string;
7350
7320
  /**
7351
7321
  * Filter attachments without group. This parameter will ignore group parameter.
7352
7322
  * @type {boolean}
@@ -7360,17 +7330,17 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
7360
7330
  */
7361
7331
  readonly uploadedBy?: string;
7362
7332
  /**
7363
- * Size of one page. Zero indicates no limit.
7364
- * @type {number}
7333
+ * Name of group
7334
+ * @type {string}
7365
7335
  * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
7366
7336
  */
7367
- readonly size?: number;
7337
+ readonly group?: string;
7368
7338
  /**
7369
- * The page number. Zero indicates no page.
7339
+ * Size of one page. Zero indicates no limit.
7370
7340
  * @type {number}
7371
7341
  * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
7372
7342
  */
7373
- readonly page?: number;
7343
+ readonly size?: number;
7374
7344
  /**
7375
7345
  * Label selector for filtering.
7376
7346
  * @type {Array<string>}
@@ -7383,6 +7353,12 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
7383
7353
  * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
7384
7354
  */
7385
7355
  readonly fieldSelector?: Array<string>;
7356
+ /**
7357
+ * The page number. Zero indicates no page.
7358
+ * @type {number}
7359
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
7360
+ */
7361
+ readonly page?: number;
7386
7362
  }
7387
7363
  /**
7388
7364
  * Request parameters for uploadAttachment operation in ApiConsoleHaloRunV1alpha1AttachmentApi.
@@ -7457,9 +7433,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
7457
7433
  /**
7458
7434
  * List comments.
7459
7435
  * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
7460
- * @param {string} [keyword] Comments filtered by keyword.
7461
- * @param {boolean} [hidden] The comment is hidden from the theme side.
7462
- * @param {boolean} [top] Comment top display.
7463
7436
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7464
7437
  * @param {boolean} [approved] Comments approved.
7465
7438
  * @param {boolean} [allowNotification] Send notifications when there are new replies.
@@ -7467,14 +7440,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
7467
7440
  * @param {string} [ownerName] Commenter name.
7468
7441
  * @param {string} [subjectKind] Comment subject kind.
7469
7442
  * @param {string} [subjectName] Comment subject name.
7443
+ * @param {string} [keyword] Comments filtered by keyword.
7444
+ * @param {boolean} [hidden] The comment is hidden from the theme side.
7445
+ * @param {boolean} [top] Comment top display.
7470
7446
  * @param {number} [size] Size of one page. Zero indicates no limit.
7471
- * @param {number} [page] The page number. Zero indicates no page.
7472
7447
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7473
7448
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7449
+ * @param {number} [page] The page number. Zero indicates no page.
7474
7450
  * @param {*} [options] Override http request option.
7475
7451
  * @throws {RequiredError}
7476
7452
  */
7477
- listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7453
+ listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, keyword?: string, hidden?: boolean, top?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7478
7454
  };
7479
7455
  /**
7480
7456
  * ApiConsoleHaloRunV1alpha1CommentApi - functional programming interface
@@ -7499,9 +7475,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
7499
7475
  /**
7500
7476
  * List comments.
7501
7477
  * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
7502
- * @param {string} [keyword] Comments filtered by keyword.
7503
- * @param {boolean} [hidden] The comment is hidden from the theme side.
7504
- * @param {boolean} [top] Comment top display.
7505
7478
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7506
7479
  * @param {boolean} [approved] Comments approved.
7507
7480
  * @param {boolean} [allowNotification] Send notifications when there are new replies.
@@ -7509,14 +7482,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
7509
7482
  * @param {string} [ownerName] Commenter name.
7510
7483
  * @param {string} [subjectKind] Comment subject kind.
7511
7484
  * @param {string} [subjectName] Comment subject name.
7485
+ * @param {string} [keyword] Comments filtered by keyword.
7486
+ * @param {boolean} [hidden] The comment is hidden from the theme side.
7487
+ * @param {boolean} [top] Comment top display.
7512
7488
  * @param {number} [size] Size of one page. Zero indicates no limit.
7513
- * @param {number} [page] The page number. Zero indicates no page.
7514
7489
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7515
7490
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7491
+ * @param {number} [page] The page number. Zero indicates no page.
7516
7492
  * @param {*} [options] Override http request option.
7517
7493
  * @throws {RequiredError}
7518
7494
  */
7519
- listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedCommentList>>;
7495
+ listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, keyword?: string, hidden?: boolean, top?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedCommentList>>;
7520
7496
  };
7521
7497
  /**
7522
7498
  * ApiConsoleHaloRunV1alpha1CommentApi - factory interface
@@ -7541,9 +7517,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
7541
7517
  /**
7542
7518
  * List comments.
7543
7519
  * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
7544
- * @param {string} [keyword] Comments filtered by keyword.
7545
- * @param {boolean} [hidden] The comment is hidden from the theme side.
7546
- * @param {boolean} [top] Comment top display.
7547
7520
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7548
7521
  * @param {boolean} [approved] Comments approved.
7549
7522
  * @param {boolean} [allowNotification] Send notifications when there are new replies.
@@ -7551,14 +7524,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
7551
7524
  * @param {string} [ownerName] Commenter name.
7552
7525
  * @param {string} [subjectKind] Comment subject kind.
7553
7526
  * @param {string} [subjectName] Comment subject name.
7527
+ * @param {string} [keyword] Comments filtered by keyword.
7528
+ * @param {boolean} [hidden] The comment is hidden from the theme side.
7529
+ * @param {boolean} [top] Comment top display.
7554
7530
  * @param {number} [size] Size of one page. Zero indicates no limit.
7555
- * @param {number} [page] The page number. Zero indicates no page.
7556
7531
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7557
7532
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7533
+ * @param {number} [page] The page number. Zero indicates no page.
7558
7534
  * @param {*} [options] Override http request option.
7559
7535
  * @throws {RequiredError}
7560
7536
  */
7561
- listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedCommentList>;
7537
+ listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, keyword?: string, hidden?: boolean, top?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedCommentList>;
7562
7538
  };
7563
7539
  /**
7564
7540
  * Request parameters for createComment operation in ApiConsoleHaloRunV1alpha1CommentApi.
@@ -7604,24 +7580,6 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
7604
7580
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7605
7581
  */
7606
7582
  readonly sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME';
7607
- /**
7608
- * Comments filtered by keyword.
7609
- * @type {string}
7610
- * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7611
- */
7612
- readonly keyword?: string;
7613
- /**
7614
- * The comment is hidden from the theme side.
7615
- * @type {boolean}
7616
- * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7617
- */
7618
- readonly hidden?: boolean;
7619
- /**
7620
- * Comment top display.
7621
- * @type {boolean}
7622
- * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7623
- */
7624
- readonly top?: boolean;
7625
7583
  /**
7626
7584
  * ascending order If it is true; otherwise, it is in descending order.
7627
7585
  * @type {boolean}
@@ -7665,17 +7623,29 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
7665
7623
  */
7666
7624
  readonly subjectName?: string;
7667
7625
  /**
7668
- * Size of one page. Zero indicates no limit.
7669
- * @type {number}
7626
+ * Comments filtered by keyword.
7627
+ * @type {string}
7670
7628
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7671
7629
  */
7672
- readonly size?: number;
7630
+ readonly keyword?: string;
7673
7631
  /**
7674
- * The page number. Zero indicates no page.
7632
+ * The comment is hidden from the theme side.
7633
+ * @type {boolean}
7634
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7635
+ */
7636
+ readonly hidden?: boolean;
7637
+ /**
7638
+ * Comment top display.
7639
+ * @type {boolean}
7640
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7641
+ */
7642
+ readonly top?: boolean;
7643
+ /**
7644
+ * Size of one page. Zero indicates no limit.
7675
7645
  * @type {number}
7676
7646
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7677
7647
  */
7678
- readonly page?: number;
7648
+ readonly size?: number;
7679
7649
  /**
7680
7650
  * Label selector for filtering.
7681
7651
  * @type {Array<string>}
@@ -7688,6 +7658,12 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
7688
7658
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7689
7659
  */
7690
7660
  readonly fieldSelector?: Array<string>;
7661
+ /**
7662
+ * The page number. Zero indicates no page.
7663
+ * @type {number}
7664
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7665
+ */
7666
+ readonly page?: number;
7691
7667
  }
7692
7668
  /**
7693
7669
  * ApiConsoleHaloRunV1alpha1CommentApi - object-oriented interface
@@ -7723,284 +7699,122 @@ declare class ApiConsoleHaloRunV1alpha1CommentApi extends BaseAPI {
7723
7699
  }
7724
7700
 
7725
7701
  /**
7726
- * ApiConsoleHaloRunV1alpha1ContentApi - axios parameter creator
7702
+ * ApiConsoleHaloRunV1alpha1IndicesApi - axios parameter creator
7727
7703
  * @export
7728
7704
  */
7729
- declare const ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator: (configuration?: Configuration) => {
7705
+ declare const ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator: (configuration?: Configuration) => {
7730
7706
  /**
7731
- * Draft a snapshot content.
7732
- * @param {ContentRequest} contentRequest
7707
+ * Build or rebuild post indices for full text search
7733
7708
  * @param {*} [options] Override http request option.
7734
7709
  * @throws {RequiredError}
7735
7710
  */
7736
- draftSnapshotContent: (contentRequest: ContentRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7711
+ buildPostIndices: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
7712
+ };
7713
+ /**
7714
+ * ApiConsoleHaloRunV1alpha1IndicesApi - functional programming interface
7715
+ * @export
7716
+ */
7717
+ declare const ApiConsoleHaloRunV1alpha1IndicesApiFp: (configuration?: Configuration) => {
7737
7718
  /**
7738
- * Obtain a snapshot content.
7739
- * @param {string} snapshotName
7719
+ * Build or rebuild post indices for full text search
7740
7720
  * @param {*} [options] Override http request option.
7741
7721
  * @throws {RequiredError}
7742
7722
  */
7743
- obtainSnapshotContent: (snapshotName: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7723
+ buildPostIndices(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
7724
+ };
7725
+ /**
7726
+ * ApiConsoleHaloRunV1alpha1IndicesApi - factory interface
7727
+ * @export
7728
+ */
7729
+ declare const ApiConsoleHaloRunV1alpha1IndicesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
7744
7730
  /**
7745
- * Update a snapshot content.
7746
- * @param {string} snapshotName
7747
- * @param {ContentRequest} contentRequest
7731
+ * Build or rebuild post indices for full text search
7748
7732
  * @param {*} [options] Override http request option.
7749
7733
  * @throws {RequiredError}
7750
7734
  */
7751
- updateSnapshotContent: (snapshotName: string, contentRequest: ContentRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7735
+ buildPostIndices(options?: any): AxiosPromise<void>;
7752
7736
  };
7753
7737
  /**
7754
- * ApiConsoleHaloRunV1alpha1ContentApi - functional programming interface
7738
+ * ApiConsoleHaloRunV1alpha1IndicesApi - object-oriented interface
7755
7739
  * @export
7740
+ * @class ApiConsoleHaloRunV1alpha1IndicesApi
7741
+ * @extends {BaseAPI}
7756
7742
  */
7757
- declare const ApiConsoleHaloRunV1alpha1ContentApiFp: (configuration?: Configuration) => {
7743
+ declare class ApiConsoleHaloRunV1alpha1IndicesApi extends BaseAPI {
7758
7744
  /**
7759
- * Draft a snapshot content.
7760
- * @param {ContentRequest} contentRequest
7745
+ * Build or rebuild post indices for full text search
7761
7746
  * @param {*} [options] Override http request option.
7762
7747
  * @throws {RequiredError}
7748
+ * @memberof ApiConsoleHaloRunV1alpha1IndicesApi
7763
7749
  */
7764
- draftSnapshotContent(contentRequest: ContentRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContentResponse>>;
7750
+ buildPostIndices(options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
7751
+ }
7752
+
7753
+ /**
7754
+ * ApiConsoleHaloRunV1alpha1PluginApi - axios parameter creator
7755
+ * @export
7756
+ */
7757
+ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuration?: Configuration) => {
7765
7758
  /**
7766
- * Obtain a snapshot content.
7767
- * @param {string} snapshotName
7759
+ * Fetch configMap of plugin by configured configMapName.
7760
+ * @param {string} name
7768
7761
  * @param {*} [options] Override http request option.
7769
7762
  * @throws {RequiredError}
7770
7763
  */
7771
- obtainSnapshotContent(snapshotName: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContentResponse>>;
7764
+ fetchPluginConfig: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7772
7765
  /**
7773
- * Update a snapshot content.
7774
- * @param {string} snapshotName
7775
- * @param {ContentRequest} contentRequest
7766
+ * Fetch setting of plugin.
7767
+ * @param {string} name
7776
7768
  * @param {*} [options] Override http request option.
7777
7769
  * @throws {RequiredError}
7778
7770
  */
7779
- updateSnapshotContent(snapshotName: string, contentRequest: ContentRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContentResponse>>;
7780
- };
7781
- /**
7782
- * ApiConsoleHaloRunV1alpha1ContentApi - factory interface
7783
- * @export
7784
- */
7785
- declare const ApiConsoleHaloRunV1alpha1ContentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
7771
+ fetchPluginSetting: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7772
+ /**
7773
+ * Install a plugin by uploading a Jar file.
7774
+ * @param {any} file
7775
+ * @param {*} [options] Override http request option.
7776
+ * @throws {RequiredError}
7777
+ */
7778
+ installPlugin: (file: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7779
+ /**
7780
+ * List plugins using query criteria and sort params
7781
+ * @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
7782
+ * @param {boolean} [enabled] Whether the plugin is enabled
7783
+ * @param {string} [keyword] Keyword of plugin name or description
7784
+ * @param {number} [size] Size of one page. Zero indicates no limit.
7785
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
7786
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
7787
+ * @param {number} [page] The page number. Zero indicates no page.
7788
+ * @param {*} [options] Override http request option.
7789
+ * @throws {RequiredError}
7790
+ */
7791
+ listPlugins: (sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7786
7792
  /**
7787
- * Draft a snapshot content.
7788
- * @param {ContentRequest} contentRequest
7793
+ * Reset the configMap of plugin setting.
7794
+ * @param {string} name
7789
7795
  * @param {*} [options] Override http request option.
7790
7796
  * @throws {RequiredError}
7791
7797
  */
7792
- draftSnapshotContent(contentRequest: ContentRequest, options?: any): AxiosPromise<ContentResponse>;
7798
+ resetPluginConfig: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7793
7799
  /**
7794
- * Obtain a snapshot content.
7795
- * @param {string} snapshotName
7800
+ * Update the configMap of plugin setting.
7801
+ * @param {string} name
7802
+ * @param {ConfigMap} configMap
7796
7803
  * @param {*} [options] Override http request option.
7797
7804
  * @throws {RequiredError}
7798
7805
  */
7799
- obtainSnapshotContent(snapshotName: string, options?: any): AxiosPromise<ContentResponse>;
7806
+ updatePluginConfig: (name: string, configMap: ConfigMap, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7800
7807
  /**
7801
- * Update a snapshot content.
7802
- * @param {string} snapshotName
7803
- * @param {ContentRequest} contentRequest
7808
+ * Upgrade a plugin by uploading a Jar file
7809
+ * @param {string} name
7810
+ * @param {any} file
7804
7811
  * @param {*} [options] Override http request option.
7805
7812
  * @throws {RequiredError}
7806
7813
  */
7807
- updateSnapshotContent(snapshotName: string, contentRequest: ContentRequest, options?: any): AxiosPromise<ContentResponse>;
7814
+ upgradePlugin: (name: string, file: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7808
7815
  };
7809
7816
  /**
7810
- * Request parameters for draftSnapshotContent operation in ApiConsoleHaloRunV1alpha1ContentApi.
7811
- * @export
7812
- * @interface ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest
7813
- */
7814
- interface ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest {
7815
- /**
7816
- *
7817
- * @type {ContentRequest}
7818
- * @memberof ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContent
7819
- */
7820
- readonly contentRequest: ContentRequest;
7821
- }
7822
- /**
7823
- * Request parameters for obtainSnapshotContent operation in ApiConsoleHaloRunV1alpha1ContentApi.
7824
- * @export
7825
- * @interface ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest
7826
- */
7827
- interface ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest {
7828
- /**
7829
- *
7830
- * @type {string}
7831
- * @memberof ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContent
7832
- */
7833
- readonly snapshotName: string;
7834
- }
7835
- /**
7836
- * Request parameters for updateSnapshotContent operation in ApiConsoleHaloRunV1alpha1ContentApi.
7837
- * @export
7838
- * @interface ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest
7839
- */
7840
- interface ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest {
7841
- /**
7842
- *
7843
- * @type {string}
7844
- * @memberof ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContent
7845
- */
7846
- readonly snapshotName: string;
7847
- /**
7848
- *
7849
- * @type {ContentRequest}
7850
- * @memberof ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContent
7851
- */
7852
- readonly contentRequest: ContentRequest;
7853
- }
7854
- /**
7855
- * ApiConsoleHaloRunV1alpha1ContentApi - object-oriented interface
7856
- * @export
7857
- * @class ApiConsoleHaloRunV1alpha1ContentApi
7858
- * @extends {BaseAPI}
7859
- */
7860
- declare class ApiConsoleHaloRunV1alpha1ContentApi extends BaseAPI {
7861
- /**
7862
- * Draft a snapshot content.
7863
- * @param {ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest} requestParameters Request parameters.
7864
- * @param {*} [options] Override http request option.
7865
- * @throws {RequiredError}
7866
- * @memberof ApiConsoleHaloRunV1alpha1ContentApi
7867
- */
7868
- draftSnapshotContent(requestParameters: ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ContentResponse, any>>;
7869
- /**
7870
- * Obtain a snapshot content.
7871
- * @param {ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest} requestParameters Request parameters.
7872
- * @param {*} [options] Override http request option.
7873
- * @throws {RequiredError}
7874
- * @memberof ApiConsoleHaloRunV1alpha1ContentApi
7875
- */
7876
- obtainSnapshotContent(requestParameters: ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ContentResponse, any>>;
7877
- /**
7878
- * Update a snapshot content.
7879
- * @param {ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest} requestParameters Request parameters.
7880
- * @param {*} [options] Override http request option.
7881
- * @throws {RequiredError}
7882
- * @memberof ApiConsoleHaloRunV1alpha1ContentApi
7883
- */
7884
- updateSnapshotContent(requestParameters: ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ContentResponse, any>>;
7885
- }
7886
-
7887
- /**
7888
- * ApiConsoleHaloRunV1alpha1IndicesApi - axios parameter creator
7889
- * @export
7890
- */
7891
- declare const ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator: (configuration?: Configuration) => {
7892
- /**
7893
- * Build or rebuild post indices for full text search
7894
- * @param {*} [options] Override http request option.
7895
- * @throws {RequiredError}
7896
- */
7897
- buildPostIndices: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
7898
- };
7899
- /**
7900
- * ApiConsoleHaloRunV1alpha1IndicesApi - functional programming interface
7901
- * @export
7902
- */
7903
- declare const ApiConsoleHaloRunV1alpha1IndicesApiFp: (configuration?: Configuration) => {
7904
- /**
7905
- * Build or rebuild post indices for full text search
7906
- * @param {*} [options] Override http request option.
7907
- * @throws {RequiredError}
7908
- */
7909
- buildPostIndices(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
7910
- };
7911
- /**
7912
- * ApiConsoleHaloRunV1alpha1IndicesApi - factory interface
7913
- * @export
7914
- */
7915
- declare const ApiConsoleHaloRunV1alpha1IndicesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
7916
- /**
7917
- * Build or rebuild post indices for full text search
7918
- * @param {*} [options] Override http request option.
7919
- * @throws {RequiredError}
7920
- */
7921
- buildPostIndices(options?: any): AxiosPromise<void>;
7922
- };
7923
- /**
7924
- * ApiConsoleHaloRunV1alpha1IndicesApi - object-oriented interface
7925
- * @export
7926
- * @class ApiConsoleHaloRunV1alpha1IndicesApi
7927
- * @extends {BaseAPI}
7928
- */
7929
- declare class ApiConsoleHaloRunV1alpha1IndicesApi extends BaseAPI {
7930
- /**
7931
- * Build or rebuild post indices for full text search
7932
- * @param {*} [options] Override http request option.
7933
- * @throws {RequiredError}
7934
- * @memberof ApiConsoleHaloRunV1alpha1IndicesApi
7935
- */
7936
- buildPostIndices(options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
7937
- }
7938
-
7939
- /**
7940
- * ApiConsoleHaloRunV1alpha1PluginApi - axios parameter creator
7941
- * @export
7942
- */
7943
- declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuration?: Configuration) => {
7944
- /**
7945
- * Fetch configMap of plugin by configured configMapName.
7946
- * @param {string} name
7947
- * @param {*} [options] Override http request option.
7948
- * @throws {RequiredError}
7949
- */
7950
- fetchPluginConfig: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7951
- /**
7952
- * Fetch setting of plugin.
7953
- * @param {string} name
7954
- * @param {*} [options] Override http request option.
7955
- * @throws {RequiredError}
7956
- */
7957
- fetchPluginSetting: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7958
- /**
7959
- * Install a plugin by uploading a Jar file.
7960
- * @param {any} file
7961
- * @param {*} [options] Override http request option.
7962
- * @throws {RequiredError}
7963
- */
7964
- installPlugin: (file: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7965
- /**
7966
- * List plugins using query criteria and sort params
7967
- * @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
7968
- * @param {boolean} [enabled] Whether the plugin is enabled
7969
- * @param {string} [keyword] Keyword of plugin name or description
7970
- * @param {number} [size] Size of one page. Zero indicates no limit.
7971
- * @param {number} [page] The page number. Zero indicates no page.
7972
- * @param {Array<string>} [labelSelector] Label selector for filtering.
7973
- * @param {Array<string>} [fieldSelector] Field selector for filtering.
7974
- * @param {*} [options] Override http request option.
7975
- * @throws {RequiredError}
7976
- */
7977
- listPlugins: (sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7978
- /**
7979
- * Reset the configMap of plugin setting.
7980
- * @param {string} name
7981
- * @param {*} [options] Override http request option.
7982
- * @throws {RequiredError}
7983
- */
7984
- resetPluginConfig: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7985
- /**
7986
- * Update the configMap of plugin setting.
7987
- * @param {string} name
7988
- * @param {ConfigMap} configMap
7989
- * @param {*} [options] Override http request option.
7990
- * @throws {RequiredError}
7991
- */
7992
- updatePluginConfig: (name: string, configMap: ConfigMap, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7993
- /**
7994
- * Upgrade a plugin by uploading a Jar file
7995
- * @param {string} name
7996
- * @param {any} file
7997
- * @param {*} [options] Override http request option.
7998
- * @throws {RequiredError}
7999
- */
8000
- upgradePlugin: (name: string, file: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8001
- };
8002
- /**
8003
- * ApiConsoleHaloRunV1alpha1PluginApi - functional programming interface
7817
+ * ApiConsoleHaloRunV1alpha1PluginApi - functional programming interface
8004
7818
  * @export
8005
7819
  */
8006
7820
  declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configuration) => {
@@ -8031,13 +7845,13 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
8031
7845
  * @param {boolean} [enabled] Whether the plugin is enabled
8032
7846
  * @param {string} [keyword] Keyword of plugin name or description
8033
7847
  * @param {number} [size] Size of one page. Zero indicates no limit.
8034
- * @param {number} [page] The page number. Zero indicates no page.
8035
7848
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8036
7849
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7850
+ * @param {number} [page] The page number. Zero indicates no page.
8037
7851
  * @param {*} [options] Override http request option.
8038
7852
  * @throws {RequiredError}
8039
7853
  */
8040
- listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
7854
+ listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
8041
7855
  /**
8042
7856
  * Reset the configMap of plugin setting.
8043
7857
  * @param {string} name
@@ -8094,13 +7908,13 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
8094
7908
  * @param {boolean} [enabled] Whether the plugin is enabled
8095
7909
  * @param {string} [keyword] Keyword of plugin name or description
8096
7910
  * @param {number} [size] Size of one page. Zero indicates no limit.
8097
- * @param {number} [page] The page number. Zero indicates no page.
8098
7911
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8099
7912
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7913
+ * @param {number} [page] The page number. Zero indicates no page.
8100
7914
  * @param {*} [options] Override http request option.
8101
7915
  * @throws {RequiredError}
8102
7916
  */
8103
- listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PluginList>;
7917
+ listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<PluginList>;
8104
7918
  /**
8105
7919
  * Reset the configMap of plugin setting.
8106
7920
  * @param {string} name
@@ -8194,12 +8008,6 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
8194
8008
  * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
8195
8009
  */
8196
8010
  readonly size?: number;
8197
- /**
8198
- * The page number. Zero indicates no page.
8199
- * @type {number}
8200
- * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
8201
- */
8202
- readonly page?: number;
8203
8011
  /**
8204
8012
  * Label selector for filtering.
8205
8013
  * @type {Array<string>}
@@ -8212,6 +8020,12 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
8212
8020
  * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
8213
8021
  */
8214
8022
  readonly fieldSelector?: Array<string>;
8023
+ /**
8024
+ * The page number. Zero indicates no page.
8025
+ * @type {number}
8026
+ * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
8027
+ */
8028
+ readonly page?: number;
8215
8029
  }
8216
8030
  /**
8217
8031
  * Request parameters for resetPluginConfig operation in ApiConsoleHaloRunV1alpha1PluginApi.
@@ -8341,24 +8155,38 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
8341
8155
  * @throws {RequiredError}
8342
8156
  */
8343
8157
  draftPost: (postRequest: PostRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8158
+ /**
8159
+ * Fetch head content of post.
8160
+ * @param {string} name
8161
+ * @param {*} [options] Override http request option.
8162
+ * @throws {RequiredError}
8163
+ */
8164
+ fetchPostHeadContent: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8165
+ /**
8166
+ * Fetch release content of post.
8167
+ * @param {string} name
8168
+ * @param {*} [options] Override http request option.
8169
+ * @throws {RequiredError}
8170
+ */
8171
+ fetchPostReleaseContent: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8344
8172
  /**
8345
8173
  * List posts.
8346
8174
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
8347
- * @param {Array<string>} [tag]
8348
- * @param {string} [keyword] Posts filtered by keyword.
8349
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8350
8175
  * @param {Array<string>} [contributor]
8351
8176
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8352
8177
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
8353
8178
  * @param {Array<string>} [category]
8179
+ * @param {Array<string>} [tag]
8180
+ * @param {string} [keyword] Posts filtered by keyword.
8181
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8354
8182
  * @param {number} [size] Size of one page. Zero indicates no limit.
8355
- * @param {number} [page] The page number. Zero indicates no page.
8356
8183
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8357
8184
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8185
+ * @param {number} [page] The page number. Zero indicates no page.
8358
8186
  * @param {*} [options] Override http request option.
8359
8187
  * @throws {RequiredError}
8360
8188
  */
8361
- listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8189
+ listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8362
8190
  /**
8363
8191
  * Publish a post.
8364
8192
  * @param {string} name
@@ -8410,24 +8238,38 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
8410
8238
  * @throws {RequiredError}
8411
8239
  */
8412
8240
  draftPost(postRequest: PostRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
8241
+ /**
8242
+ * Fetch head content of post.
8243
+ * @param {string} name
8244
+ * @param {*} [options] Override http request option.
8245
+ * @throws {RequiredError}
8246
+ */
8247
+ fetchPostHeadContent(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContentWrapper>>;
8248
+ /**
8249
+ * Fetch release content of post.
8250
+ * @param {string} name
8251
+ * @param {*} [options] Override http request option.
8252
+ * @throws {RequiredError}
8253
+ */
8254
+ fetchPostReleaseContent(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContentWrapper>>;
8413
8255
  /**
8414
8256
  * List posts.
8415
8257
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
8416
- * @param {Array<string>} [tag]
8417
- * @param {string} [keyword] Posts filtered by keyword.
8418
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8419
8258
  * @param {Array<string>} [contributor]
8420
8259
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8421
8260
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
8422
8261
  * @param {Array<string>} [category]
8262
+ * @param {Array<string>} [tag]
8263
+ * @param {string} [keyword] Posts filtered by keyword.
8264
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8423
8265
  * @param {number} [size] Size of one page. Zero indicates no limit.
8424
- * @param {number} [page] The page number. Zero indicates no page.
8425
8266
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8426
8267
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8268
+ * @param {number} [page] The page number. Zero indicates no page.
8427
8269
  * @param {*} [options] Override http request option.
8428
8270
  * @throws {RequiredError}
8429
8271
  */
8430
- listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
8272
+ listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
8431
8273
  /**
8432
8274
  * Publish a post.
8433
8275
  * @param {string} name
@@ -8479,24 +8321,38 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
8479
8321
  * @throws {RequiredError}
8480
8322
  */
8481
8323
  draftPost(postRequest: PostRequest, options?: any): AxiosPromise<Post>;
8324
+ /**
8325
+ * Fetch head content of post.
8326
+ * @param {string} name
8327
+ * @param {*} [options] Override http request option.
8328
+ * @throws {RequiredError}
8329
+ */
8330
+ fetchPostHeadContent(name: string, options?: any): AxiosPromise<ContentWrapper>;
8331
+ /**
8332
+ * Fetch release content of post.
8333
+ * @param {string} name
8334
+ * @param {*} [options] Override http request option.
8335
+ * @throws {RequiredError}
8336
+ */
8337
+ fetchPostReleaseContent(name: string, options?: any): AxiosPromise<ContentWrapper>;
8482
8338
  /**
8483
8339
  * List posts.
8484
8340
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
8485
- * @param {Array<string>} [tag]
8486
- * @param {string} [keyword] Posts filtered by keyword.
8487
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8488
8341
  * @param {Array<string>} [contributor]
8489
8342
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8490
8343
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
8491
8344
  * @param {Array<string>} [category]
8345
+ * @param {Array<string>} [tag]
8346
+ * @param {string} [keyword] Posts filtered by keyword.
8347
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8492
8348
  * @param {number} [size] Size of one page. Zero indicates no limit.
8493
- * @param {number} [page] The page number. Zero indicates no page.
8494
8349
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8495
8350
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8351
+ * @param {number} [page] The page number. Zero indicates no page.
8496
8352
  * @param {*} [options] Override http request option.
8497
8353
  * @throws {RequiredError}
8498
8354
  */
8499
- listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedPostList>;
8355
+ listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedPostList>;
8500
8356
  /**
8501
8357
  * Publish a post.
8502
8358
  * @param {string} name
@@ -8549,6 +8405,32 @@ interface ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest {
8549
8405
  */
8550
8406
  readonly postRequest: PostRequest;
8551
8407
  }
8408
+ /**
8409
+ * Request parameters for fetchPostHeadContent operation in ApiConsoleHaloRunV1alpha1PostApi.
8410
+ * @export
8411
+ * @interface ApiConsoleHaloRunV1alpha1PostApiFetchPostHeadContentRequest
8412
+ */
8413
+ interface ApiConsoleHaloRunV1alpha1PostApiFetchPostHeadContentRequest {
8414
+ /**
8415
+ *
8416
+ * @type {string}
8417
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiFetchPostHeadContent
8418
+ */
8419
+ readonly name: string;
8420
+ }
8421
+ /**
8422
+ * Request parameters for fetchPostReleaseContent operation in ApiConsoleHaloRunV1alpha1PostApi.
8423
+ * @export
8424
+ * @interface ApiConsoleHaloRunV1alpha1PostApiFetchPostReleaseContentRequest
8425
+ */
8426
+ interface ApiConsoleHaloRunV1alpha1PostApiFetchPostReleaseContentRequest {
8427
+ /**
8428
+ *
8429
+ * @type {string}
8430
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiFetchPostReleaseContent
8431
+ */
8432
+ readonly name: string;
8433
+ }
8552
8434
  /**
8553
8435
  * Request parameters for listPosts operation in ApiConsoleHaloRunV1alpha1PostApi.
8554
8436
  * @export
@@ -8566,55 +8448,49 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
8566
8448
  * @type {Array<string>}
8567
8449
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8568
8450
  */
8569
- readonly tag?: Array<string>;
8451
+ readonly contributor?: Array<string>;
8570
8452
  /**
8571
- * Posts filtered by keyword.
8572
- * @type {string}
8453
+ * ascending order If it is true; otherwise, it is in descending order.
8454
+ * @type {boolean}
8573
8455
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8574
8456
  */
8575
- readonly keyword?: string;
8457
+ readonly sortOrder?: boolean;
8576
8458
  /**
8577
8459
  *
8578
- * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
8460
+ * @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
8579
8461
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8580
8462
  */
8581
- readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
8463
+ readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
8582
8464
  /**
8583
8465
  *
8584
8466
  * @type {Array<string>}
8585
8467
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8586
8468
  */
8587
- readonly contributor?: Array<string>;
8469
+ readonly category?: Array<string>;
8588
8470
  /**
8589
- * ascending order If it is true; otherwise, it is in descending order.
8590
- * @type {boolean}
8471
+ *
8472
+ * @type {Array<string>}
8591
8473
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8592
8474
  */
8593
- readonly sortOrder?: boolean;
8475
+ readonly tag?: Array<string>;
8594
8476
  /**
8595
- *
8596
- * @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
8477
+ * Posts filtered by keyword.
8478
+ * @type {string}
8597
8479
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8598
8480
  */
8599
- readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
8481
+ readonly keyword?: string;
8600
8482
  /**
8601
8483
  *
8602
- * @type {Array<string>}
8484
+ * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
8603
8485
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8604
8486
  */
8605
- readonly category?: Array<string>;
8487
+ readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
8606
8488
  /**
8607
8489
  * Size of one page. Zero indicates no limit.
8608
8490
  * @type {number}
8609
8491
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8610
8492
  */
8611
8493
  readonly size?: number;
8612
- /**
8613
- * The page number. Zero indicates no page.
8614
- * @type {number}
8615
- * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8616
- */
8617
- readonly page?: number;
8618
8494
  /**
8619
8495
  * Label selector for filtering.
8620
8496
  * @type {Array<string>}
@@ -8627,6 +8503,12 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
8627
8503
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8628
8504
  */
8629
8505
  readonly fieldSelector?: Array<string>;
8506
+ /**
8507
+ * The page number. Zero indicates no page.
8508
+ * @type {number}
8509
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8510
+ */
8511
+ readonly page?: number;
8630
8512
  }
8631
8513
  /**
8632
8514
  * Request parameters for publishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
@@ -8726,6 +8608,22 @@ declare class ApiConsoleHaloRunV1alpha1PostApi extends BaseAPI {
8726
8608
  * @memberof ApiConsoleHaloRunV1alpha1PostApi
8727
8609
  */
8728
8610
  draftPost(requestParameters: ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
8611
+ /**
8612
+ * Fetch head content of post.
8613
+ * @param {ApiConsoleHaloRunV1alpha1PostApiFetchPostHeadContentRequest} requestParameters Request parameters.
8614
+ * @param {*} [options] Override http request option.
8615
+ * @throws {RequiredError}
8616
+ * @memberof ApiConsoleHaloRunV1alpha1PostApi
8617
+ */
8618
+ fetchPostHeadContent(requestParameters: ApiConsoleHaloRunV1alpha1PostApiFetchPostHeadContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ContentWrapper, any>>;
8619
+ /**
8620
+ * Fetch release content of post.
8621
+ * @param {ApiConsoleHaloRunV1alpha1PostApiFetchPostReleaseContentRequest} requestParameters Request parameters.
8622
+ * @param {*} [options] Override http request option.
8623
+ * @throws {RequiredError}
8624
+ * @memberof ApiConsoleHaloRunV1alpha1PostApi
8625
+ */
8626
+ fetchPostReleaseContent(requestParameters: ApiConsoleHaloRunV1alpha1PostApiFetchPostReleaseContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ContentWrapper, any>>;
8729
8627
  /**
8730
8628
  * List posts.
8731
8629
  * @param {ApiConsoleHaloRunV1alpha1PostApiListPostsRequest} requestParameters Request parameters.
@@ -8785,13 +8683,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration
8785
8683
  * List replies.
8786
8684
  * @param {string} [commentName] Replies filtered by commentName.
8787
8685
  * @param {number} [size] Size of one page. Zero indicates no limit.
8788
- * @param {number} [page] The page number. Zero indicates no page.
8789
8686
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8790
8687
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8688
+ * @param {number} [page] The page number. Zero indicates no page.
8791
8689
  * @param {*} [options] Override http request option.
8792
8690
  * @throws {RequiredError}
8793
8691
  */
8794
- listReplies: (commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8692
+ listReplies: (commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8795
8693
  };
8796
8694
  /**
8797
8695
  * ApiConsoleHaloRunV1alpha1ReplyApi - functional programming interface
@@ -8802,13 +8700,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFp: (configuration?: Configuratio
8802
8700
  * List replies.
8803
8701
  * @param {string} [commentName] Replies filtered by commentName.
8804
8702
  * @param {number} [size] Size of one page. Zero indicates no limit.
8805
- * @param {number} [page] The page number. Zero indicates no page.
8806
8703
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8807
8704
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8705
+ * @param {number} [page] The page number. Zero indicates no page.
8808
8706
  * @param {*} [options] Override http request option.
8809
8707
  * @throws {RequiredError}
8810
8708
  */
8811
- listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
8709
+ listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
8812
8710
  };
8813
8711
  /**
8814
8712
  * ApiConsoleHaloRunV1alpha1ReplyApi - factory interface
@@ -8819,13 +8717,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFactory: (configuration?: Configu
8819
8717
  * List replies.
8820
8718
  * @param {string} [commentName] Replies filtered by commentName.
8821
8719
  * @param {number} [size] Size of one page. Zero indicates no limit.
8822
- * @param {number} [page] The page number. Zero indicates no page.
8823
8720
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8824
8721
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8722
+ * @param {number} [page] The page number. Zero indicates no page.
8825
8723
  * @param {*} [options] Override http request option.
8826
8724
  * @throws {RequiredError}
8827
8725
  */
8828
- listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedReplyList>;
8726
+ listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedReplyList>;
8829
8727
  };
8830
8728
  /**
8831
8729
  * Request parameters for listReplies operation in ApiConsoleHaloRunV1alpha1ReplyApi.
@@ -8845,12 +8743,6 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
8845
8743
  * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
8846
8744
  */
8847
8745
  readonly size?: number;
8848
- /**
8849
- * The page number. Zero indicates no page.
8850
- * @type {number}
8851
- * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
8852
- */
8853
- readonly page?: number;
8854
8746
  /**
8855
8747
  * Label selector for filtering.
8856
8748
  * @type {Array<string>}
@@ -8863,6 +8755,12 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
8863
8755
  * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
8864
8756
  */
8865
8757
  readonly fieldSelector?: Array<string>;
8758
+ /**
8759
+ * The page number. Zero indicates no page.
8760
+ * @type {number}
8761
+ * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
8762
+ */
8763
+ readonly page?: number;
8866
8764
  }
8867
8765
  /**
8868
8766
  * ApiConsoleHaloRunV1alpha1ReplyApi - object-oriented interface
@@ -8893,22 +8791,36 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
8893
8791
  * @throws {RequiredError}
8894
8792
  */
8895
8793
  draftSinglePage: (singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8794
+ /**
8795
+ * Fetch head content of single page.
8796
+ * @param {string} name
8797
+ * @param {*} [options] Override http request option.
8798
+ * @throws {RequiredError}
8799
+ */
8800
+ fetchSinglePageHeadContent: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8801
+ /**
8802
+ * Fetch release content of single page.
8803
+ * @param {string} name
8804
+ * @param {*} [options] Override http request option.
8805
+ * @throws {RequiredError}
8806
+ */
8807
+ fetchSinglePageReleaseContent: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8896
8808
  /**
8897
8809
  * List single pages.
8898
8810
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
8899
- * @param {string} [keyword] SinglePages filtered by keyword.
8900
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8901
8811
  * @param {Array<string>} [contributor]
8902
8812
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8903
8813
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
8814
+ * @param {string} [keyword] SinglePages filtered by keyword.
8815
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8904
8816
  * @param {number} [size] Size of one page. Zero indicates no limit.
8905
- * @param {number} [page] The page number. Zero indicates no page.
8906
8817
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8907
8818
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8819
+ * @param {number} [page] The page number. Zero indicates no page.
8908
8820
  * @param {*} [options] Override http request option.
8909
8821
  * @throws {RequiredError}
8910
8822
  */
8911
- listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8823
+ listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8912
8824
  /**
8913
8825
  * Publish a single page.
8914
8826
  * @param {string} name
@@ -8945,22 +8857,36 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
8945
8857
  * @throws {RequiredError}
8946
8858
  */
8947
8859
  draftSinglePage(singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
8860
+ /**
8861
+ * Fetch head content of single page.
8862
+ * @param {string} name
8863
+ * @param {*} [options] Override http request option.
8864
+ * @throws {RequiredError}
8865
+ */
8866
+ fetchSinglePageHeadContent(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContentWrapper>>;
8867
+ /**
8868
+ * Fetch release content of single page.
8869
+ * @param {string} name
8870
+ * @param {*} [options] Override http request option.
8871
+ * @throws {RequiredError}
8872
+ */
8873
+ fetchSinglePageReleaseContent(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContentWrapper>>;
8948
8874
  /**
8949
8875
  * List single pages.
8950
8876
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
8951
- * @param {string} [keyword] SinglePages filtered by keyword.
8952
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8953
8877
  * @param {Array<string>} [contributor]
8954
8878
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8955
8879
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
8880
+ * @param {string} [keyword] SinglePages filtered by keyword.
8881
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8956
8882
  * @param {number} [size] Size of one page. Zero indicates no limit.
8957
- * @param {number} [page] The page number. Zero indicates no page.
8958
8883
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8959
8884
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8885
+ * @param {number} [page] The page number. Zero indicates no page.
8960
8886
  * @param {*} [options] Override http request option.
8961
8887
  * @throws {RequiredError}
8962
8888
  */
8963
- listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
8889
+ listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
8964
8890
  /**
8965
8891
  * Publish a single page.
8966
8892
  * @param {string} name
@@ -8997,22 +8923,36 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
8997
8923
  * @throws {RequiredError}
8998
8924
  */
8999
8925
  draftSinglePage(singlePageRequest: SinglePageRequest, options?: any): AxiosPromise<SinglePage>;
8926
+ /**
8927
+ * Fetch head content of single page.
8928
+ * @param {string} name
8929
+ * @param {*} [options] Override http request option.
8930
+ * @throws {RequiredError}
8931
+ */
8932
+ fetchSinglePageHeadContent(name: string, options?: any): AxiosPromise<ContentWrapper>;
8933
+ /**
8934
+ * Fetch release content of single page.
8935
+ * @param {string} name
8936
+ * @param {*} [options] Override http request option.
8937
+ * @throws {RequiredError}
8938
+ */
8939
+ fetchSinglePageReleaseContent(name: string, options?: any): AxiosPromise<ContentWrapper>;
9000
8940
  /**
9001
8941
  * List single pages.
9002
8942
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
9003
- * @param {string} [keyword] SinglePages filtered by keyword.
9004
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
9005
8943
  * @param {Array<string>} [contributor]
9006
8944
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
9007
8945
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
8946
+ * @param {string} [keyword] SinglePages filtered by keyword.
8947
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
9008
8948
  * @param {number} [size] Size of one page. Zero indicates no limit.
9009
- * @param {number} [page] The page number. Zero indicates no page.
9010
8949
  * @param {Array<string>} [labelSelector] Label selector for filtering.
9011
8950
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8951
+ * @param {number} [page] The page number. Zero indicates no page.
9012
8952
  * @param {*} [options] Override http request option.
9013
8953
  * @throws {RequiredError}
9014
8954
  */
9015
- listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedSinglePageList>;
8955
+ listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedSinglePageList>;
9016
8956
  /**
9017
8957
  * Publish a single page.
9018
8958
  * @param {string} name
@@ -9050,6 +8990,32 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest {
9050
8990
  */
9051
8991
  readonly singlePageRequest: SinglePageRequest;
9052
8992
  }
8993
+ /**
8994
+ * Request parameters for fetchSinglePageHeadContent operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
8995
+ * @export
8996
+ * @interface ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageHeadContentRequest
8997
+ */
8998
+ interface ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageHeadContentRequest {
8999
+ /**
9000
+ *
9001
+ * @type {string}
9002
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageHeadContent
9003
+ */
9004
+ readonly name: string;
9005
+ }
9006
+ /**
9007
+ * Request parameters for fetchSinglePageReleaseContent operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
9008
+ * @export
9009
+ * @interface ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageReleaseContentRequest
9010
+ */
9011
+ interface ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageReleaseContentRequest {
9012
+ /**
9013
+ *
9014
+ * @type {string}
9015
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageReleaseContent
9016
+ */
9017
+ readonly name: string;
9018
+ }
9053
9019
  /**
9054
9020
  * Request parameters for listSinglePages operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
9055
9021
  * @export
@@ -9062,18 +9028,6 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
9062
9028
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
9063
9029
  */
9064
9030
  readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
9065
- /**
9066
- * SinglePages filtered by keyword.
9067
- * @type {string}
9068
- * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
9069
- */
9070
- readonly keyword?: string;
9071
- /**
9072
- *
9073
- * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
9074
- * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
9075
- */
9076
- readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
9077
9031
  /**
9078
9032
  *
9079
9033
  * @type {Array<string>}
@@ -9093,17 +9047,23 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
9093
9047
  */
9094
9048
  readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
9095
9049
  /**
9096
- * Size of one page. Zero indicates no limit.
9097
- * @type {number}
9050
+ * SinglePages filtered by keyword.
9051
+ * @type {string}
9098
9052
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
9099
9053
  */
9100
- readonly size?: number;
9054
+ readonly keyword?: string;
9101
9055
  /**
9102
- * The page number. Zero indicates no page.
9056
+ *
9057
+ * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
9058
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
9059
+ */
9060
+ readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
9061
+ /**
9062
+ * Size of one page. Zero indicates no limit.
9103
9063
  * @type {number}
9104
9064
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
9105
9065
  */
9106
- readonly page?: number;
9066
+ readonly size?: number;
9107
9067
  /**
9108
9068
  * Label selector for filtering.
9109
9069
  * @type {Array<string>}
@@ -9116,6 +9076,12 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
9116
9076
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
9117
9077
  */
9118
9078
  readonly fieldSelector?: Array<string>;
9079
+ /**
9080
+ * The page number. Zero indicates no page.
9081
+ * @type {number}
9082
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
9083
+ */
9084
+ readonly page?: number;
9119
9085
  }
9120
9086
  /**
9121
9087
  * Request parameters for publishSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
@@ -9183,6 +9149,22 @@ declare class ApiConsoleHaloRunV1alpha1SinglePageApi extends BaseAPI {
9183
9149
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApi
9184
9150
  */
9185
9151
  draftSinglePage(requestParameters: ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
9152
+ /**
9153
+ * Fetch head content of single page.
9154
+ * @param {ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageHeadContentRequest} requestParameters Request parameters.
9155
+ * @param {*} [options] Override http request option.
9156
+ * @throws {RequiredError}
9157
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApi
9158
+ */
9159
+ fetchSinglePageHeadContent(requestParameters: ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageHeadContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ContentWrapper, any>>;
9160
+ /**
9161
+ * Fetch release content of single page.
9162
+ * @param {ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageReleaseContentRequest} requestParameters Request parameters.
9163
+ * @param {*} [options] Override http request option.
9164
+ * @throws {RequiredError}
9165
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApi
9166
+ */
9167
+ fetchSinglePageReleaseContent(requestParameters: ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageReleaseContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ContentWrapper, any>>;
9186
9168
  /**
9187
9169
  * List single pages.
9188
9170
  * @param {ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest} requestParameters Request parameters.
@@ -9312,13 +9294,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
9312
9294
  * List themes.
9313
9295
  * @param {boolean} uninstalled
9314
9296
  * @param {number} [size] Size of one page. Zero indicates no limit.
9315
- * @param {number} [page] The page number. Zero indicates no page.
9316
9297
  * @param {Array<string>} [labelSelector] Label selector for filtering.
9317
9298
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
9299
+ * @param {number} [page] The page number. Zero indicates no page.
9318
9300
  * @param {*} [options] Override http request option.
9319
9301
  * @throws {RequiredError}
9320
9302
  */
9321
- listThemes: (uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9303
+ listThemes: (uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9322
9304
  /**
9323
9305
  * Reload theme setting.
9324
9306
  * @param {string} name
@@ -9393,13 +9375,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
9393
9375
  * List themes.
9394
9376
  * @param {boolean} uninstalled
9395
9377
  * @param {number} [size] Size of one page. Zero indicates no limit.
9396
- * @param {number} [page] The page number. Zero indicates no page.
9397
9378
  * @param {Array<string>} [labelSelector] Label selector for filtering.
9398
9379
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
9380
+ * @param {number} [page] The page number. Zero indicates no page.
9399
9381
  * @param {*} [options] Override http request option.
9400
9382
  * @throws {RequiredError}
9401
9383
  */
9402
- listThemes(uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ThemeList>>;
9384
+ listThemes(uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ThemeList>>;
9403
9385
  /**
9404
9386
  * Reload theme setting.
9405
9387
  * @param {string} name
@@ -9474,13 +9456,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
9474
9456
  * List themes.
9475
9457
  * @param {boolean} uninstalled
9476
9458
  * @param {number} [size] Size of one page. Zero indicates no limit.
9477
- * @param {number} [page] The page number. Zero indicates no page.
9478
9459
  * @param {Array<string>} [labelSelector] Label selector for filtering.
9479
9460
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
9461
+ * @param {number} [page] The page number. Zero indicates no page.
9480
9462
  * @param {*} [options] Override http request option.
9481
9463
  * @throws {RequiredError}
9482
9464
  */
9483
- listThemes(uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ThemeList>;
9465
+ listThemes(uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ThemeList>;
9484
9466
  /**
9485
9467
  * Reload theme setting.
9486
9468
  * @param {string} name
@@ -9582,12 +9564,6 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
9582
9564
  * @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
9583
9565
  */
9584
9566
  readonly size?: number;
9585
- /**
9586
- * The page number. Zero indicates no page.
9587
- * @type {number}
9588
- * @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
9589
- */
9590
- readonly page?: number;
9591
9567
  /**
9592
9568
  * Label selector for filtering.
9593
9569
  * @type {Array<string>}
@@ -9600,6 +9576,12 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
9600
9576
  * @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
9601
9577
  */
9602
9578
  readonly fieldSelector?: Array<string>;
9579
+ /**
9580
+ * The page number. Zero indicates no page.
9581
+ * @type {number}
9582
+ * @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
9583
+ */
9584
+ readonly page?: number;
9603
9585
  }
9604
9586
  /**
9605
9587
  * Request parameters for reload operation in ApiConsoleHaloRunV1alpha1ThemeApi.
@@ -10308,13 +10290,13 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
10308
10290
  /**
10309
10291
  * Search posts with fuzzy query
10310
10292
  * @param {string} keyword
10311
- * @param {number} [limit]
10312
10293
  * @param {string} [highlightPreTag]
10313
10294
  * @param {string} [highlightPostTag]
10295
+ * @param {number} [limit]
10314
10296
  * @param {*} [options] Override http request option.
10315
10297
  * @throws {RequiredError}
10316
10298
  */
10317
- searchPost: (keyword: string, limit?: number, highlightPreTag?: string, highlightPostTag?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10299
+ searchPost: (keyword: string, highlightPreTag?: string, highlightPostTag?: string, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10318
10300
  };
10319
10301
  /**
10320
10302
  * ApiHaloRunV1alpha1PostApi - functional programming interface
@@ -10324,13 +10306,13 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
10324
10306
  /**
10325
10307
  * Search posts with fuzzy query
10326
10308
  * @param {string} keyword
10327
- * @param {number} [limit]
10328
10309
  * @param {string} [highlightPreTag]
10329
10310
  * @param {string} [highlightPostTag]
10311
+ * @param {number} [limit]
10330
10312
  * @param {*} [options] Override http request option.
10331
10313
  * @throws {RequiredError}
10332
10314
  */
10333
- searchPost(keyword: string, limit?: number, highlightPreTag?: string, highlightPostTag?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PostHits>>;
10315
+ searchPost(keyword: string, highlightPreTag?: string, highlightPostTag?: string, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PostHits>>;
10334
10316
  };
10335
10317
  /**
10336
10318
  * ApiHaloRunV1alpha1PostApi - factory interface
@@ -10340,13 +10322,13 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
10340
10322
  /**
10341
10323
  * Search posts with fuzzy query
10342
10324
  * @param {string} keyword
10343
- * @param {number} [limit]
10344
10325
  * @param {string} [highlightPreTag]
10345
10326
  * @param {string} [highlightPostTag]
10327
+ * @param {number} [limit]
10346
10328
  * @param {*} [options] Override http request option.
10347
10329
  * @throws {RequiredError}
10348
10330
  */
10349
- searchPost(keyword: string, limit?: number, highlightPreTag?: string, highlightPostTag?: string, options?: any): AxiosPromise<PostHits>;
10331
+ searchPost(keyword: string, highlightPreTag?: string, highlightPostTag?: string, limit?: number, options?: any): AxiosPromise<PostHits>;
10350
10332
  };
10351
10333
  /**
10352
10334
  * Request parameters for searchPost operation in ApiHaloRunV1alpha1PostApi.
@@ -10362,22 +10344,22 @@ interface ApiHaloRunV1alpha1PostApiSearchPostRequest {
10362
10344
  readonly keyword: string;
10363
10345
  /**
10364
10346
  *
10365
- * @type {number}
10347
+ * @type {string}
10366
10348
  * @memberof ApiHaloRunV1alpha1PostApiSearchPost
10367
10349
  */
10368
- readonly limit?: number;
10350
+ readonly highlightPreTag?: string;
10369
10351
  /**
10370
10352
  *
10371
10353
  * @type {string}
10372
10354
  * @memberof ApiHaloRunV1alpha1PostApiSearchPost
10373
10355
  */
10374
- readonly highlightPreTag?: string;
10356
+ readonly highlightPostTag?: string;
10375
10357
  /**
10376
10358
  *
10377
- * @type {string}
10359
+ * @type {number}
10378
10360
  * @memberof ApiHaloRunV1alpha1PostApiSearchPost
10379
10361
  */
10380
- readonly highlightPostTag?: string;
10362
+ readonly limit?: number;
10381
10363
  }
10382
10364
  /**
10383
10365
  * ApiHaloRunV1alpha1PostApi - object-oriented interface
@@ -12733,75 +12715,6 @@ declare class MetricsHaloRunV1alpha1CounterApi extends BaseAPI {
12733
12715
  updatemetricsHaloRunV1alpha1Counter(requestParameters: MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Counter, any>>;
12734
12716
  }
12735
12717
 
12736
- /**
12737
- * MigrationControllerApi - axios parameter creator
12738
- * @export
12739
- */
12740
- declare const MigrationControllerApiAxiosParamCreator: (configuration?: Configuration) => {
12741
- /**
12742
- * Import migration data file.
12743
- * @param {any} file
12744
- * @param {*} [options] Override http request option.
12745
- * @throws {RequiredError}
12746
- */
12747
- importMigrationData: (file: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12748
- };
12749
- /**
12750
- * MigrationControllerApi - functional programming interface
12751
- * @export
12752
- */
12753
- declare const MigrationControllerApiFp: (configuration?: Configuration) => {
12754
- /**
12755
- * Import migration data file.
12756
- * @param {any} file
12757
- * @param {*} [options] Override http request option.
12758
- * @throws {RequiredError}
12759
- */
12760
- importMigrationData(file: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
12761
- };
12762
- /**
12763
- * MigrationControllerApi - factory interface
12764
- * @export
12765
- */
12766
- declare const MigrationControllerApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
12767
- /**
12768
- * Import migration data file.
12769
- * @param {any} file
12770
- * @param {*} [options] Override http request option.
12771
- * @throws {RequiredError}
12772
- */
12773
- importMigrationData(file: any, options?: any): AxiosPromise<object>;
12774
- };
12775
- /**
12776
- * Request parameters for importMigrationData operation in MigrationControllerApi.
12777
- * @export
12778
- * @interface MigrationControllerApiImportMigrationDataRequest
12779
- */
12780
- interface MigrationControllerApiImportMigrationDataRequest {
12781
- /**
12782
- *
12783
- * @type {any}
12784
- * @memberof MigrationControllerApiImportMigrationData
12785
- */
12786
- readonly file: any;
12787
- }
12788
- /**
12789
- * MigrationControllerApi - object-oriented interface
12790
- * @export
12791
- * @class MigrationControllerApi
12792
- * @extends {BaseAPI}
12793
- */
12794
- declare class MigrationControllerApi extends BaseAPI {
12795
- /**
12796
- * Import migration data file.
12797
- * @param {MigrationControllerApiImportMigrationDataRequest} requestParameters Request parameters.
12798
- * @param {*} [options] Override http request option.
12799
- * @throws {RequiredError}
12800
- * @memberof MigrationControllerApi
12801
- */
12802
- importMigrationData(requestParameters: MigrationControllerApiImportMigrationDataRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
12803
- }
12804
-
12805
12718
  /**
12806
12719
  * PluginHaloRunV1alpha1PluginApi - axios parameter creator
12807
12720
  * @export
@@ -17443,4 +17356,4 @@ declare class V1alpha1UserApi extends BaseAPI {
17443
17356
  updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
17444
17357
  }
17445
17358
 
17446
- export { AnnotationSetting, AnnotationSettingList, AnnotationSettingSpec, ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1IndicesApi, ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1IndicesApiFactory, ApiConsoleHaloRunV1alpha1IndicesApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFetchPluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiFetchPluginSettingRequest, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiUpdatePluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiRecyclePostRequest, ApiConsoleHaloRunV1alpha1PostApiUnpublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdatePostContentRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateSinglePageContentRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiActivateThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeSettingRequest, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest, ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpdateThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiConsoleHaloRunV1alpha1UserApiUpdateCurrentUserRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1PostApiSearchPostRequest, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiCountRequest, ApiHaloRunV1alpha1TrackerApiDownvoteRequest, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ApiHaloRunV1alpha1TrackerApiUpvoteRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CommentVo, CommentVoList, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentResponse, Contributor, Counter, CounterList, CounterRequest, CustomTemplates, DashboardStats, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupKind, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemSpecTargetEnum, MenuItemStatus, MenuList, MenuSpec, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, MigrationControllerApi, MigrationControllerApiAxiosParamCreator, MigrationControllerApiFactory, MigrationControllerApiFp, MigrationControllerApiImportMigrationDataRequest, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginAuthor, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1SearchEngineApi, PluginHaloRunV1alpha1SearchEngineApiAxiosParamCreator, PluginHaloRunV1alpha1SearchEngineApiCreatepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiDeletepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiFactory, PluginHaloRunV1alpha1SearchEngineApiFp, PluginHaloRunV1alpha1SearchEngineApiGetpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiUpdatepluginHaloRunV1alpha1SearchEngineRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostHit, PostHits, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, SearchEngine, SearchEngineList, SearchEngineSpec, Setting, SettingForm, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, Stats, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, Tag, TagList, TagSpec, TagStatus, TemplateDescriptor, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, ThemeStatus, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1AnnotationSettingApi, V1alpha1AnnotationSettingApiAxiosParamCreator, V1alpha1AnnotationSettingApiCreatev1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiDeletev1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiFactory, V1alpha1AnnotationSettingApiFp, V1alpha1AnnotationSettingApiGetv1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiListv1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiUpdatev1alpha1AnnotationSettingRequest, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest, VoteRequest };
17359
+ export { AnnotationSetting, AnnotationSettingList, AnnotationSettingSpec, ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1IndicesApi, ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1IndicesApiFactory, ApiConsoleHaloRunV1alpha1IndicesApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFetchPluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiFetchPluginSettingRequest, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiUpdatePluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFetchPostHeadContentRequest, ApiConsoleHaloRunV1alpha1PostApiFetchPostReleaseContentRequest, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiRecyclePostRequest, ApiConsoleHaloRunV1alpha1PostApiUnpublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdatePostContentRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageHeadContentRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageReleaseContentRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateSinglePageContentRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiActivateThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeSettingRequest, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest, ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpdateThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiConsoleHaloRunV1alpha1UserApiUpdateCurrentUserRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1PostApiSearchPostRequest, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiCountRequest, ApiHaloRunV1alpha1TrackerApiDownvoteRequest, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ApiHaloRunV1alpha1TrackerApiUpvoteRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CommentVo, CommentVoList, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentWrapper, Contributor, Counter, CounterList, CounterRequest, CustomTemplates, DashboardStats, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupKind, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemSpecTargetEnum, MenuItemStatus, MenuList, MenuSpec, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginAuthor, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1SearchEngineApi, PluginHaloRunV1alpha1SearchEngineApiAxiosParamCreator, PluginHaloRunV1alpha1SearchEngineApiCreatepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiDeletepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiFactory, PluginHaloRunV1alpha1SearchEngineApiFp, PluginHaloRunV1alpha1SearchEngineApiGetpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiUpdatepluginHaloRunV1alpha1SearchEngineRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostHit, PostHits, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, SearchEngine, SearchEngineList, SearchEngineSpec, Setting, SettingForm, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, Stats, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, Tag, TagList, TagSpec, TagStatus, TemplateDescriptor, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, ThemeStatus, ThemeStatusPhaseEnum, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1AnnotationSettingApi, V1alpha1AnnotationSettingApiAxiosParamCreator, V1alpha1AnnotationSettingApiCreatev1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiDeletev1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiFactory, V1alpha1AnnotationSettingApiFp, V1alpha1AnnotationSettingApiGetv1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiListv1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiUpdatev1alpha1AnnotationSettingRequest, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest, VoteRequest };