@halo-dev/api-client 0.0.44 → 0.0.46

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
@@ -2017,10 +2017,10 @@ interface Excerpt {
2017
2017
  interface Extension {
2018
2018
  /**
2019
2019
  *
2020
- * @type {string}
2020
+ * @type {Metadata}
2021
2021
  * @memberof Extension
2022
2022
  */
2023
- kind: string;
2023
+ metadata: Metadata;
2024
2024
  /**
2025
2025
  *
2026
2026
  * @type {string}
@@ -2029,10 +2029,10 @@ interface Extension {
2029
2029
  apiVersion: string;
2030
2030
  /**
2031
2031
  *
2032
- * @type {Metadata}
2032
+ * @type {string}
2033
2033
  * @memberof Extension
2034
2034
  */
2035
- metadata: Metadata;
2035
+ kind: string;
2036
2036
  }
2037
2037
 
2038
2038
  /**
@@ -7032,13 +7032,13 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configur
7032
7032
  * @param {string} [uploadedBy] Name of user who uploaded the attachment
7033
7033
  * @param {string} [group] Name of group
7034
7034
  * @param {number} [size] Size of one page. Zero indicates no limit.
7035
- * @param {number} [page] The page number. Zero indicates no page.
7036
7035
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7037
7036
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7037
+ * @param {number} [page] The page number. Zero indicates no page.
7038
7038
  * @param {*} [options] Override http request option.
7039
7039
  * @throws {RequiredError}
7040
7040
  */
7041
- searchAttachments: (policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7041
+ searchAttachments: (policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7042
7042
  /**
7043
7043
  *
7044
7044
  * @param {any} file
@@ -7061,13 +7061,13 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFp: (configuration?: Configu
7061
7061
  * @param {string} [uploadedBy] Name of user who uploaded the attachment
7062
7062
  * @param {string} [group] Name of group
7063
7063
  * @param {number} [size] Size of one page. Zero indicates no limit.
7064
- * @param {number} [page] The page number. Zero indicates no page.
7065
7064
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7066
7065
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7066
+ * @param {number} [page] The page number. Zero indicates no page.
7067
7067
  * @param {*} [options] Override http request option.
7068
7068
  * @throws {RequiredError}
7069
7069
  */
7070
- searchAttachments(policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
7070
+ searchAttachments(policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
7071
7071
  /**
7072
7072
  *
7073
7073
  * @param {any} file
@@ -7090,13 +7090,13 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFactory: (configuration?: Co
7090
7090
  * @param {string} [uploadedBy] Name of user who uploaded the attachment
7091
7091
  * @param {string} [group] Name of group
7092
7092
  * @param {number} [size] Size of one page. Zero indicates no limit.
7093
- * @param {number} [page] The page number. Zero indicates no page.
7094
7093
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7095
7094
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7095
+ * @param {number} [page] The page number. Zero indicates no page.
7096
7096
  * @param {*} [options] Override http request option.
7097
7097
  * @throws {RequiredError}
7098
7098
  */
7099
- searchAttachments(policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<AttachmentList>;
7099
+ searchAttachments(policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<AttachmentList>;
7100
7100
  /**
7101
7101
  *
7102
7102
  * @param {any} file
@@ -7143,12 +7143,6 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
7143
7143
  * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
7144
7144
  */
7145
7145
  readonly size?: number;
7146
- /**
7147
- * The page number. Zero indicates no page.
7148
- * @type {number}
7149
- * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
7150
- */
7151
- readonly page?: number;
7152
7146
  /**
7153
7147
  * Label selector for filtering.
7154
7148
  * @type {Array<string>}
@@ -7161,6 +7155,12 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
7161
7155
  * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
7162
7156
  */
7163
7157
  readonly fieldSelector?: Array<string>;
7158
+ /**
7159
+ * The page number. Zero indicates no page.
7160
+ * @type {number}
7161
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
7162
+ */
7163
+ readonly page?: number;
7164
7164
  }
7165
7165
  /**
7166
7166
  * Request parameters for uploadAttachment operation in ApiConsoleHaloRunV1alpha1AttachmentApi.
@@ -7235,9 +7235,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
7235
7235
  /**
7236
7236
  * List comments.
7237
7237
  * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
7238
- * @param {string} [keyword] Comments filtered by keyword.
7239
- * @param {boolean} [hidden] The comment is hidden from the theme side.
7240
- * @param {boolean} [top] Comment top display.
7241
7238
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7242
7239
  * @param {boolean} [approved] Comments approved.
7243
7240
  * @param {boolean} [allowNotification] Send notifications when there are new replies.
@@ -7245,14 +7242,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
7245
7242
  * @param {string} [ownerName] Commenter name.
7246
7243
  * @param {string} [subjectKind] Comment subject kind.
7247
7244
  * @param {string} [subjectName] Comment subject name.
7245
+ * @param {string} [keyword] Comments filtered by keyword.
7246
+ * @param {boolean} [hidden] The comment is hidden from the theme side.
7247
+ * @param {boolean} [top] Comment top display.
7248
7248
  * @param {number} [size] Size of one page. Zero indicates no limit.
7249
- * @param {number} [page] The page number. Zero indicates no page.
7250
7249
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7251
7250
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7251
+ * @param {number} [page] The page number. Zero indicates no page.
7252
7252
  * @param {*} [options] Override http request option.
7253
7253
  * @throws {RequiredError}
7254
7254
  */
7255
- 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>;
7255
+ 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>;
7256
7256
  };
7257
7257
  /**
7258
7258
  * ApiConsoleHaloRunV1alpha1CommentApi - functional programming interface
@@ -7277,9 +7277,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
7277
7277
  /**
7278
7278
  * List comments.
7279
7279
  * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
7280
- * @param {string} [keyword] Comments filtered by keyword.
7281
- * @param {boolean} [hidden] The comment is hidden from the theme side.
7282
- * @param {boolean} [top] Comment top display.
7283
7280
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7284
7281
  * @param {boolean} [approved] Comments approved.
7285
7282
  * @param {boolean} [allowNotification] Send notifications when there are new replies.
@@ -7287,14 +7284,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
7287
7284
  * @param {string} [ownerName] Commenter name.
7288
7285
  * @param {string} [subjectKind] Comment subject kind.
7289
7286
  * @param {string} [subjectName] Comment subject name.
7287
+ * @param {string} [keyword] Comments filtered by keyword.
7288
+ * @param {boolean} [hidden] The comment is hidden from the theme side.
7289
+ * @param {boolean} [top] Comment top display.
7290
7290
  * @param {number} [size] Size of one page. Zero indicates no limit.
7291
- * @param {number} [page] The page number. Zero indicates no page.
7292
7291
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7293
7292
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7293
+ * @param {number} [page] The page number. Zero indicates no page.
7294
7294
  * @param {*} [options] Override http request option.
7295
7295
  * @throws {RequiredError}
7296
7296
  */
7297
- 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>>;
7297
+ 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>>;
7298
7298
  };
7299
7299
  /**
7300
7300
  * ApiConsoleHaloRunV1alpha1CommentApi - factory interface
@@ -7319,9 +7319,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
7319
7319
  /**
7320
7320
  * List comments.
7321
7321
  * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
7322
- * @param {string} [keyword] Comments filtered by keyword.
7323
- * @param {boolean} [hidden] The comment is hidden from the theme side.
7324
- * @param {boolean} [top] Comment top display.
7325
7322
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7326
7323
  * @param {boolean} [approved] Comments approved.
7327
7324
  * @param {boolean} [allowNotification] Send notifications when there are new replies.
@@ -7329,14 +7326,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
7329
7326
  * @param {string} [ownerName] Commenter name.
7330
7327
  * @param {string} [subjectKind] Comment subject kind.
7331
7328
  * @param {string} [subjectName] Comment subject name.
7329
+ * @param {string} [keyword] Comments filtered by keyword.
7330
+ * @param {boolean} [hidden] The comment is hidden from the theme side.
7331
+ * @param {boolean} [top] Comment top display.
7332
7332
  * @param {number} [size] Size of one page. Zero indicates no limit.
7333
- * @param {number} [page] The page number. Zero indicates no page.
7334
7333
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7335
7334
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7335
+ * @param {number} [page] The page number. Zero indicates no page.
7336
7336
  * @param {*} [options] Override http request option.
7337
7337
  * @throws {RequiredError}
7338
7338
  */
7339
- 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>;
7339
+ 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>;
7340
7340
  };
7341
7341
  /**
7342
7342
  * Request parameters for createComment operation in ApiConsoleHaloRunV1alpha1CommentApi.
@@ -7382,24 +7382,6 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
7382
7382
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7383
7383
  */
7384
7384
  readonly sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME';
7385
- /**
7386
- * Comments filtered by keyword.
7387
- * @type {string}
7388
- * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7389
- */
7390
- readonly keyword?: string;
7391
- /**
7392
- * The comment is hidden from the theme side.
7393
- * @type {boolean}
7394
- * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7395
- */
7396
- readonly hidden?: boolean;
7397
- /**
7398
- * Comment top display.
7399
- * @type {boolean}
7400
- * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7401
- */
7402
- readonly top?: boolean;
7403
7385
  /**
7404
7386
  * ascending order If it is true; otherwise, it is in descending order.
7405
7387
  * @type {boolean}
@@ -7443,17 +7425,29 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
7443
7425
  */
7444
7426
  readonly subjectName?: string;
7445
7427
  /**
7446
- * Size of one page. Zero indicates no limit.
7447
- * @type {number}
7428
+ * Comments filtered by keyword.
7429
+ * @type {string}
7448
7430
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7449
7431
  */
7450
- readonly size?: number;
7432
+ readonly keyword?: string;
7451
7433
  /**
7452
- * The page number. Zero indicates no page.
7434
+ * The comment is hidden from the theme side.
7435
+ * @type {boolean}
7436
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7437
+ */
7438
+ readonly hidden?: boolean;
7439
+ /**
7440
+ * Comment top display.
7441
+ * @type {boolean}
7442
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7443
+ */
7444
+ readonly top?: boolean;
7445
+ /**
7446
+ * Size of one page. Zero indicates no limit.
7453
7447
  * @type {number}
7454
7448
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7455
7449
  */
7456
- readonly page?: number;
7450
+ readonly size?: number;
7457
7451
  /**
7458
7452
  * Label selector for filtering.
7459
7453
  * @type {Array<string>}
@@ -7466,6 +7460,12 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
7466
7460
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7467
7461
  */
7468
7462
  readonly fieldSelector?: Array<string>;
7463
+ /**
7464
+ * The page number. Zero indicates no page.
7465
+ * @type {number}
7466
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7467
+ */
7468
+ readonly page?: number;
7469
7469
  }
7470
7470
  /**
7471
7471
  * ApiConsoleHaloRunV1alpha1CommentApi - object-oriented interface
@@ -7732,13 +7732,13 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
7732
7732
  * @param {string} [keyword] Keyword of plugin name or description
7733
7733
  * @param {boolean} [enabled] Whether the plugin is enabled
7734
7734
  * @param {number} [size] Size of one page. Zero indicates no limit.
7735
- * @param {number} [page] The page number. Zero indicates no page.
7736
7735
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7737
7736
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7737
+ * @param {number} [page] The page number. Zero indicates no page.
7738
7738
  * @param {*} [options] Override http request option.
7739
7739
  * @throws {RequiredError}
7740
7740
  */
7741
- listPlugins: (sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7741
+ listPlugins: (sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7742
7742
  /**
7743
7743
  * Upgrade a plugin by uploading a Jar file
7744
7744
  * @param {string} name
@@ -7766,13 +7766,13 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
7766
7766
  * @param {string} [keyword] Keyword of plugin name or description
7767
7767
  * @param {boolean} [enabled] Whether the plugin is enabled
7768
7768
  * @param {number} [size] Size of one page. Zero indicates no limit.
7769
- * @param {number} [page] The page number. Zero indicates no page.
7770
7769
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7771
7770
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7771
+ * @param {number} [page] The page number. Zero indicates no page.
7772
7772
  * @param {*} [options] Override http request option.
7773
7773
  * @throws {RequiredError}
7774
7774
  */
7775
- listPlugins(sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
7775
+ listPlugins(sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
7776
7776
  /**
7777
7777
  * Upgrade a plugin by uploading a Jar file
7778
7778
  * @param {string} name
@@ -7800,13 +7800,13 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
7800
7800
  * @param {string} [keyword] Keyword of plugin name or description
7801
7801
  * @param {boolean} [enabled] Whether the plugin is enabled
7802
7802
  * @param {number} [size] Size of one page. Zero indicates no limit.
7803
- * @param {number} [page] The page number. Zero indicates no page.
7804
7803
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7805
7804
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7805
+ * @param {number} [page] The page number. Zero indicates no page.
7806
7806
  * @param {*} [options] Override http request option.
7807
7807
  * @throws {RequiredError}
7808
7808
  */
7809
- listPlugins(sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PluginList>;
7809
+ listPlugins(sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<PluginList>;
7810
7810
  /**
7811
7811
  * Upgrade a plugin by uploading a Jar file
7812
7812
  * @param {string} name
@@ -7859,12 +7859,6 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
7859
7859
  * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
7860
7860
  */
7861
7861
  readonly size?: number;
7862
- /**
7863
- * The page number. Zero indicates no page.
7864
- * @type {number}
7865
- * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
7866
- */
7867
- readonly page?: number;
7868
7862
  /**
7869
7863
  * Label selector for filtering.
7870
7864
  * @type {Array<string>}
@@ -7877,6 +7871,12 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
7877
7871
  * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
7878
7872
  */
7879
7873
  readonly fieldSelector?: Array<string>;
7874
+ /**
7875
+ * The page number. Zero indicates no page.
7876
+ * @type {number}
7877
+ * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
7878
+ */
7879
+ readonly page?: number;
7880
7880
  }
7881
7881
  /**
7882
7882
  * Request parameters for upgradePlugin operation in ApiConsoleHaloRunV1alpha1PluginApi.
@@ -7945,28 +7945,29 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
7945
7945
  /**
7946
7946
  * List posts.
7947
7947
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
7948
- * @param {string} [keyword] Posts filtered by keyword.
7949
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7950
- * @param {Array<string>} [tag]
7951
7948
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7952
7949
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
7953
7950
  * @param {Array<string>} [category]
7954
7951
  * @param {Array<string>} [contributor]
7952
+ * @param {string} [keyword] Posts filtered by keyword.
7953
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7954
+ * @param {Array<string>} [tag]
7955
7955
  * @param {number} [size] Size of one page. Zero indicates no limit.
7956
- * @param {number} [page] The page number. Zero indicates no page.
7957
7956
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7958
7957
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7958
+ * @param {number} [page] The page number. Zero indicates no page.
7959
7959
  * @param {*} [options] Override http request option.
7960
7960
  * @throws {RequiredError}
7961
7961
  */
7962
- listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7962
+ listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, contributor?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7963
7963
  /**
7964
7964
  * Publish a post.
7965
7965
  * @param {string} name
7966
+ * @param {string} [headSnapshot] Head snapshot name of content.
7966
7967
  * @param {*} [options] Override http request option.
7967
7968
  * @throws {RequiredError}
7968
7969
  */
7969
- publishPost: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7970
+ publishPost: (name: string, headSnapshot?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7970
7971
  /**
7971
7972
  * Recycle a post.
7972
7973
  * @param {string} name
@@ -8005,28 +8006,29 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
8005
8006
  /**
8006
8007
  * List posts.
8007
8008
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
8008
- * @param {string} [keyword] Posts filtered by keyword.
8009
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8010
- * @param {Array<string>} [tag]
8011
8009
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8012
8010
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
8013
8011
  * @param {Array<string>} [category]
8014
8012
  * @param {Array<string>} [contributor]
8013
+ * @param {string} [keyword] Posts filtered by keyword.
8014
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8015
+ * @param {Array<string>} [tag]
8015
8016
  * @param {number} [size] Size of one page. Zero indicates no limit.
8016
- * @param {number} [page] The page number. Zero indicates no page.
8017
8017
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8018
8018
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8019
+ * @param {number} [page] The page number. Zero indicates no page.
8019
8020
  * @param {*} [options] Override http request option.
8020
8021
  * @throws {RequiredError}
8021
8022
  */
8022
- listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
8023
+ listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, contributor?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
8023
8024
  /**
8024
8025
  * Publish a post.
8025
8026
  * @param {string} name
8027
+ * @param {string} [headSnapshot] Head snapshot name of content.
8026
8028
  * @param {*} [options] Override http request option.
8027
8029
  * @throws {RequiredError}
8028
8030
  */
8029
- publishPost(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
8031
+ publishPost(name: string, headSnapshot?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
8030
8032
  /**
8031
8033
  * Recycle a post.
8032
8034
  * @param {string} name
@@ -8065,28 +8067,29 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
8065
8067
  /**
8066
8068
  * List posts.
8067
8069
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
8068
- * @param {string} [keyword] Posts filtered by keyword.
8069
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8070
- * @param {Array<string>} [tag]
8071
8070
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8072
8071
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
8073
8072
  * @param {Array<string>} [category]
8074
8073
  * @param {Array<string>} [contributor]
8074
+ * @param {string} [keyword] Posts filtered by keyword.
8075
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8076
+ * @param {Array<string>} [tag]
8075
8077
  * @param {number} [size] Size of one page. Zero indicates no limit.
8076
- * @param {number} [page] The page number. Zero indicates no page.
8077
8078
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8078
8079
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8080
+ * @param {number} [page] The page number. Zero indicates no page.
8079
8081
  * @param {*} [options] Override http request option.
8080
8082
  * @throws {RequiredError}
8081
8083
  */
8082
- listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedPostList>;
8084
+ listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, contributor?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedPostList>;
8083
8085
  /**
8084
8086
  * Publish a post.
8085
8087
  * @param {string} name
8088
+ * @param {string} [headSnapshot] Head snapshot name of content.
8086
8089
  * @param {*} [options] Override http request option.
8087
8090
  * @throws {RequiredError}
8088
8091
  */
8089
- publishPost(name: string, options?: any): AxiosPromise<Post>;
8092
+ publishPost(name: string, headSnapshot?: string, options?: any): AxiosPromise<Post>;
8090
8093
  /**
8091
8094
  * Recycle a post.
8092
8095
  * @param {string} name
@@ -8136,59 +8139,53 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
8136
8139
  */
8137
8140
  readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
8138
8141
  /**
8139
- * Posts filtered by keyword.
8140
- * @type {string}
8142
+ * ascending order If it is true; otherwise, it is in descending order.
8143
+ * @type {boolean}
8141
8144
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8142
8145
  */
8143
- readonly keyword?: string;
8146
+ readonly sortOrder?: boolean;
8144
8147
  /**
8145
8148
  *
8146
- * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
8149
+ * @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
8147
8150
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8148
8151
  */
8149
- readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
8152
+ readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
8150
8153
  /**
8151
8154
  *
8152
8155
  * @type {Array<string>}
8153
8156
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8154
8157
  */
8155
- readonly tag?: Array<string>;
8158
+ readonly category?: Array<string>;
8156
8159
  /**
8157
- * ascending order If it is true; otherwise, it is in descending order.
8158
- * @type {boolean}
8160
+ *
8161
+ * @type {Array<string>}
8159
8162
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8160
8163
  */
8161
- readonly sortOrder?: boolean;
8164
+ readonly contributor?: Array<string>;
8162
8165
  /**
8163
- *
8164
- * @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
8166
+ * Posts filtered by keyword.
8167
+ * @type {string}
8165
8168
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8166
8169
  */
8167
- readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
8170
+ readonly keyword?: string;
8168
8171
  /**
8169
8172
  *
8170
- * @type {Array<string>}
8173
+ * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
8171
8174
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8172
8175
  */
8173
- readonly category?: Array<string>;
8176
+ readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
8174
8177
  /**
8175
8178
  *
8176
8179
  * @type {Array<string>}
8177
8180
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8178
8181
  */
8179
- readonly contributor?: Array<string>;
8182
+ readonly tag?: Array<string>;
8180
8183
  /**
8181
8184
  * Size of one page. Zero indicates no limit.
8182
8185
  * @type {number}
8183
8186
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8184
8187
  */
8185
8188
  readonly size?: number;
8186
- /**
8187
- * The page number. Zero indicates no page.
8188
- * @type {number}
8189
- * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8190
- */
8191
- readonly page?: number;
8192
8189
  /**
8193
8190
  * Label selector for filtering.
8194
8191
  * @type {Array<string>}
@@ -8201,6 +8198,12 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
8201
8198
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8202
8199
  */
8203
8200
  readonly fieldSelector?: Array<string>;
8201
+ /**
8202
+ * The page number. Zero indicates no page.
8203
+ * @type {number}
8204
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8205
+ */
8206
+ readonly page?: number;
8204
8207
  }
8205
8208
  /**
8206
8209
  * Request parameters for publishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
@@ -8214,6 +8217,12 @@ interface ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest {
8214
8217
  * @memberof ApiConsoleHaloRunV1alpha1PostApiPublishPost
8215
8218
  */
8216
8219
  readonly name: string;
8220
+ /**
8221
+ * Head snapshot name of content.
8222
+ * @type {string}
8223
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiPublishPost
8224
+ */
8225
+ readonly headSnapshot?: string;
8217
8226
  }
8218
8227
  /**
8219
8228
  * Request parameters for recyclePost operation in ApiConsoleHaloRunV1alpha1PostApi.
@@ -8326,13 +8335,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration
8326
8335
  * List replies.
8327
8336
  * @param {string} [commentName] Replies filtered by commentName.
8328
8337
  * @param {number} [size] Size of one page. Zero indicates no limit.
8329
- * @param {number} [page] The page number. Zero indicates no page.
8330
8338
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8331
8339
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8340
+ * @param {number} [page] The page number. Zero indicates no page.
8332
8341
  * @param {*} [options] Override http request option.
8333
8342
  * @throws {RequiredError}
8334
8343
  */
8335
- listReplies: (commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8344
+ listReplies: (commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8336
8345
  };
8337
8346
  /**
8338
8347
  * ApiConsoleHaloRunV1alpha1ReplyApi - functional programming interface
@@ -8343,13 +8352,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFp: (configuration?: Configuratio
8343
8352
  * List replies.
8344
8353
  * @param {string} [commentName] Replies filtered by commentName.
8345
8354
  * @param {number} [size] Size of one page. Zero indicates no limit.
8346
- * @param {number} [page] The page number. Zero indicates no page.
8347
8355
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8348
8356
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8357
+ * @param {number} [page] The page number. Zero indicates no page.
8349
8358
  * @param {*} [options] Override http request option.
8350
8359
  * @throws {RequiredError}
8351
8360
  */
8352
- listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
8361
+ listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
8353
8362
  };
8354
8363
  /**
8355
8364
  * ApiConsoleHaloRunV1alpha1ReplyApi - factory interface
@@ -8360,13 +8369,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFactory: (configuration?: Configu
8360
8369
  * List replies.
8361
8370
  * @param {string} [commentName] Replies filtered by commentName.
8362
8371
  * @param {number} [size] Size of one page. Zero indicates no limit.
8363
- * @param {number} [page] The page number. Zero indicates no page.
8364
8372
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8365
8373
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8374
+ * @param {number} [page] The page number. Zero indicates no page.
8366
8375
  * @param {*} [options] Override http request option.
8367
8376
  * @throws {RequiredError}
8368
8377
  */
8369
- listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedReplyList>;
8378
+ listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedReplyList>;
8370
8379
  };
8371
8380
  /**
8372
8381
  * Request parameters for listReplies operation in ApiConsoleHaloRunV1alpha1ReplyApi.
@@ -8386,12 +8395,6 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
8386
8395
  * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
8387
8396
  */
8388
8397
  readonly size?: number;
8389
- /**
8390
- * The page number. Zero indicates no page.
8391
- * @type {number}
8392
- * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
8393
- */
8394
- readonly page?: number;
8395
8398
  /**
8396
8399
  * Label selector for filtering.
8397
8400
  * @type {Array<string>}
@@ -8404,6 +8407,12 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
8404
8407
  * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
8405
8408
  */
8406
8409
  readonly fieldSelector?: Array<string>;
8410
+ /**
8411
+ * The page number. Zero indicates no page.
8412
+ * @type {number}
8413
+ * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
8414
+ */
8415
+ readonly page?: number;
8407
8416
  }
8408
8417
  /**
8409
8418
  * ApiConsoleHaloRunV1alpha1ReplyApi - object-oriented interface
@@ -8437,19 +8446,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
8437
8446
  /**
8438
8447
  * List single pages.
8439
8448
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
8440
- * @param {string} [keyword] SinglePages filtered by keyword.
8441
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8442
8449
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8443
8450
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
8444
8451
  * @param {Array<string>} [contributor]
8452
+ * @param {string} [keyword] SinglePages filtered by keyword.
8453
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8445
8454
  * @param {number} [size] Size of one page. Zero indicates no limit.
8446
- * @param {number} [page] The page number. Zero indicates no page.
8447
8455
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8448
8456
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8457
+ * @param {number} [page] The page number. Zero indicates no page.
8449
8458
  * @param {*} [options] Override http request option.
8450
8459
  * @throws {RequiredError}
8451
8460
  */
8452
- listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8461
+ listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', contributor?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8453
8462
  /**
8454
8463
  * Publish a single page.
8455
8464
  * @param {string} name
@@ -8481,19 +8490,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
8481
8490
  /**
8482
8491
  * List single pages.
8483
8492
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
8484
- * @param {string} [keyword] SinglePages filtered by keyword.
8485
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8486
8493
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8487
8494
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
8488
8495
  * @param {Array<string>} [contributor]
8496
+ * @param {string} [keyword] SinglePages filtered by keyword.
8497
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8489
8498
  * @param {number} [size] Size of one page. Zero indicates no limit.
8490
- * @param {number} [page] The page number. Zero indicates no page.
8491
8499
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8492
8500
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8501
+ * @param {number} [page] The page number. Zero indicates no page.
8493
8502
  * @param {*} [options] Override http request option.
8494
8503
  * @throws {RequiredError}
8495
8504
  */
8496
- listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
8505
+ listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', contributor?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
8497
8506
  /**
8498
8507
  * Publish a single page.
8499
8508
  * @param {string} name
@@ -8525,19 +8534,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
8525
8534
  /**
8526
8535
  * List single pages.
8527
8536
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
8528
- * @param {string} [keyword] SinglePages filtered by keyword.
8529
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8530
8537
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8531
8538
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
8532
8539
  * @param {Array<string>} [contributor]
8540
+ * @param {string} [keyword] SinglePages filtered by keyword.
8541
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8533
8542
  * @param {number} [size] Size of one page. Zero indicates no limit.
8534
- * @param {number} [page] The page number. Zero indicates no page.
8535
8543
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8536
8544
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8545
+ * @param {number} [page] The page number. Zero indicates no page.
8537
8546
  * @param {*} [options] Override http request option.
8538
8547
  * @throws {RequiredError}
8539
8548
  */
8540
- listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedSinglePageList>;
8549
+ listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', contributor?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedSinglePageList>;
8541
8550
  /**
8542
8551
  * Publish a single page.
8543
8552
  * @param {string} name
@@ -8579,18 +8588,6 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
8579
8588
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8580
8589
  */
8581
8590
  readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
8582
- /**
8583
- * SinglePages filtered by keyword.
8584
- * @type {string}
8585
- * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8586
- */
8587
- readonly keyword?: string;
8588
- /**
8589
- *
8590
- * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
8591
- * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8592
- */
8593
- readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
8594
8591
  /**
8595
8592
  * ascending order If it is true; otherwise, it is in descending order.
8596
8593
  * @type {boolean}
@@ -8610,17 +8607,23 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
8610
8607
  */
8611
8608
  readonly contributor?: Array<string>;
8612
8609
  /**
8613
- * Size of one page. Zero indicates no limit.
8614
- * @type {number}
8610
+ * SinglePages filtered by keyword.
8611
+ * @type {string}
8615
8612
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8616
8613
  */
8617
- readonly size?: number;
8614
+ readonly keyword?: string;
8618
8615
  /**
8619
- * The page number. Zero indicates no page.
8616
+ *
8617
+ * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
8618
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8619
+ */
8620
+ readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
8621
+ /**
8622
+ * Size of one page. Zero indicates no limit.
8620
8623
  * @type {number}
8621
8624
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8622
8625
  */
8623
- readonly page?: number;
8626
+ readonly size?: number;
8624
8627
  /**
8625
8628
  * Label selector for filtering.
8626
8629
  * @type {Array<string>}
@@ -8633,6 +8636,12 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
8633
8636
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8634
8637
  */
8635
8638
  readonly fieldSelector?: Array<string>;
8639
+ /**
8640
+ * The page number. Zero indicates no page.
8641
+ * @type {number}
8642
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8643
+ */
8644
+ readonly page?: number;
8636
8645
  }
8637
8646
  /**
8638
8647
  * Request parameters for publishSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
@@ -8775,13 +8784,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
8775
8784
  * List themes.
8776
8785
  * @param {boolean} uninstalled
8777
8786
  * @param {number} [size] Size of one page. Zero indicates no limit.
8778
- * @param {number} [page] The page number. Zero indicates no page.
8779
8787
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8780
8788
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8789
+ * @param {number} [page] The page number. Zero indicates no page.
8781
8790
  * @param {*} [options] Override http request option.
8782
8791
  * @throws {RequiredError}
8783
8792
  */
8784
- listThemes: (uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8793
+ listThemes: (uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8785
8794
  /**
8786
8795
  * Reload theme setting.
8787
8796
  * @param {string} name
@@ -8814,13 +8823,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
8814
8823
  * List themes.
8815
8824
  * @param {boolean} uninstalled
8816
8825
  * @param {number} [size] Size of one page. Zero indicates no limit.
8817
- * @param {number} [page] The page number. Zero indicates no page.
8818
8826
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8819
8827
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8828
+ * @param {number} [page] The page number. Zero indicates no page.
8820
8829
  * @param {*} [options] Override http request option.
8821
8830
  * @throws {RequiredError}
8822
8831
  */
8823
- listThemes(uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ThemeList>>;
8832
+ listThemes(uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ThemeList>>;
8824
8833
  /**
8825
8834
  * Reload theme setting.
8826
8835
  * @param {string} name
@@ -8853,13 +8862,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
8853
8862
  * List themes.
8854
8863
  * @param {boolean} uninstalled
8855
8864
  * @param {number} [size] Size of one page. Zero indicates no limit.
8856
- * @param {number} [page] The page number. Zero indicates no page.
8857
8865
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8858
8866
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8867
+ * @param {number} [page] The page number. Zero indicates no page.
8859
8868
  * @param {*} [options] Override http request option.
8860
8869
  * @throws {RequiredError}
8861
8870
  */
8862
- listThemes(uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ThemeList>;
8871
+ listThemes(uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ThemeList>;
8863
8872
  /**
8864
8873
  * Reload theme setting.
8865
8874
  * @param {string} name
@@ -8907,12 +8916,6 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
8907
8916
  * @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
8908
8917
  */
8909
8918
  readonly size?: number;
8910
- /**
8911
- * The page number. Zero indicates no page.
8912
- * @type {number}
8913
- * @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
8914
- */
8915
- readonly page?: number;
8916
8919
  /**
8917
8920
  * Label selector for filtering.
8918
8921
  * @type {Array<string>}
@@ -8925,6 +8928,12 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
8925
8928
  * @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
8926
8929
  */
8927
8930
  readonly fieldSelector?: Array<string>;
8931
+ /**
8932
+ * The page number. Zero indicates no page.
8933
+ * @type {number}
8934
+ * @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
8935
+ */
8936
+ readonly page?: number;
8928
8937
  }
8929
8938
  /**
8930
8939
  * Request parameters for reloadThemeSetting operation in ApiConsoleHaloRunV1alpha1ThemeApi.
@@ -9512,13 +9521,13 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
9512
9521
  /**
9513
9522
  * Search posts with fuzzy query
9514
9523
  * @param {string} keyword
9515
- * @param {number} [limit]
9516
9524
  * @param {string} [highlightPreTag]
9517
9525
  * @param {string} [highlightPostTag]
9526
+ * @param {number} [limit]
9518
9527
  * @param {*} [options] Override http request option.
9519
9528
  * @throws {RequiredError}
9520
9529
  */
9521
- searchPost: (keyword: string, limit?: number, highlightPreTag?: string, highlightPostTag?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9530
+ searchPost: (keyword: string, highlightPreTag?: string, highlightPostTag?: string, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9522
9531
  };
9523
9532
  /**
9524
9533
  * ApiHaloRunV1alpha1PostApi - functional programming interface
@@ -9528,13 +9537,13 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
9528
9537
  /**
9529
9538
  * Search posts with fuzzy query
9530
9539
  * @param {string} keyword
9531
- * @param {number} [limit]
9532
9540
  * @param {string} [highlightPreTag]
9533
9541
  * @param {string} [highlightPostTag]
9542
+ * @param {number} [limit]
9534
9543
  * @param {*} [options] Override http request option.
9535
9544
  * @throws {RequiredError}
9536
9545
  */
9537
- searchPost(keyword: string, limit?: number, highlightPreTag?: string, highlightPostTag?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PostHits>>;
9546
+ searchPost(keyword: string, highlightPreTag?: string, highlightPostTag?: string, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PostHits>>;
9538
9547
  };
9539
9548
  /**
9540
9549
  * ApiHaloRunV1alpha1PostApi - factory interface
@@ -9544,13 +9553,13 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
9544
9553
  /**
9545
9554
  * Search posts with fuzzy query
9546
9555
  * @param {string} keyword
9547
- * @param {number} [limit]
9548
9556
  * @param {string} [highlightPreTag]
9549
9557
  * @param {string} [highlightPostTag]
9558
+ * @param {number} [limit]
9550
9559
  * @param {*} [options] Override http request option.
9551
9560
  * @throws {RequiredError}
9552
9561
  */
9553
- searchPost(keyword: string, limit?: number, highlightPreTag?: string, highlightPostTag?: string, options?: any): AxiosPromise<PostHits>;
9562
+ searchPost(keyword: string, highlightPreTag?: string, highlightPostTag?: string, limit?: number, options?: any): AxiosPromise<PostHits>;
9554
9563
  };
9555
9564
  /**
9556
9565
  * Request parameters for searchPost operation in ApiHaloRunV1alpha1PostApi.
@@ -9566,22 +9575,22 @@ interface ApiHaloRunV1alpha1PostApiSearchPostRequest {
9566
9575
  readonly keyword: string;
9567
9576
  /**
9568
9577
  *
9569
- * @type {number}
9578
+ * @type {string}
9570
9579
  * @memberof ApiHaloRunV1alpha1PostApiSearchPost
9571
9580
  */
9572
- readonly limit?: number;
9581
+ readonly highlightPreTag?: string;
9573
9582
  /**
9574
9583
  *
9575
9584
  * @type {string}
9576
9585
  * @memberof ApiHaloRunV1alpha1PostApiSearchPost
9577
9586
  */
9578
- readonly highlightPreTag?: string;
9587
+ readonly highlightPostTag?: string;
9579
9588
  /**
9580
9589
  *
9581
- * @type {string}
9590
+ * @type {number}
9582
9591
  * @memberof ApiHaloRunV1alpha1PostApiSearchPost
9583
9592
  */
9584
- readonly highlightPostTag?: string;
9593
+ readonly limit?: number;
9585
9594
  }
9586
9595
  /**
9587
9596
  * ApiHaloRunV1alpha1PostApi - object-oriented interface