@halo-dev/api-client 0.0.19 → 0.0.21

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
@@ -742,37 +742,6 @@ interface CommentOwner {
742
742
  };
743
743
  }
744
744
 
745
- /**
746
- * Halo Next API
747
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
748
- *
749
- * The version of the OpenAPI document: 2.0.0
750
- *
751
- *
752
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
753
- * https://openapi-generator.tech
754
- * Do not edit the class manually.
755
- */
756
- /**
757
- *
758
- * @export
759
- * @interface CommentSubjectRef
760
- */
761
- interface CommentSubjectRef {
762
- /**
763
- *
764
- * @type {string}
765
- * @memberof CommentSubjectRef
766
- */
767
- kind: string;
768
- /**
769
- *
770
- * @type {string}
771
- * @memberof CommentSubjectRef
772
- */
773
- name: string;
774
- }
775
-
776
745
  /**
777
746
  * Halo Next API
778
747
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -853,10 +822,59 @@ interface CommentSpec {
853
822
  hidden: boolean;
854
823
  /**
855
824
  *
856
- * @type {CommentSubjectRef}
825
+ * @type {Ref}
826
+ * @memberof CommentSpec
827
+ */
828
+ subjectRef: Ref;
829
+ /**
830
+ *
831
+ * @type {string}
857
832
  * @memberof CommentSpec
858
833
  */
859
- subjectRef: CommentSubjectRef;
834
+ lastReadTime?: string;
835
+ }
836
+
837
+ /**
838
+ * Halo Next API
839
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
840
+ *
841
+ * The version of the OpenAPI document: 2.0.0
842
+ *
843
+ *
844
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
845
+ * https://openapi-generator.tech
846
+ * Do not edit the class manually.
847
+ */
848
+ /**
849
+ *
850
+ * @export
851
+ * @interface CommentStatus
852
+ */
853
+ interface CommentStatus {
854
+ /**
855
+ *
856
+ * @type {string}
857
+ * @memberof CommentStatus
858
+ */
859
+ lastReplyTime?: string;
860
+ /**
861
+ *
862
+ * @type {number}
863
+ * @memberof CommentStatus
864
+ */
865
+ replyCount?: number;
866
+ /**
867
+ *
868
+ * @type {number}
869
+ * @memberof CommentStatus
870
+ */
871
+ unreadReplyCount?: number;
872
+ /**
873
+ *
874
+ * @type {boolean}
875
+ * @memberof CommentStatus
876
+ */
877
+ hasNewReply?: boolean;
860
878
  }
861
879
 
862
880
  /**
@@ -883,6 +901,12 @@ interface Comment {
883
901
  * @memberof Comment
884
902
  */
885
903
  spec: CommentSpec;
904
+ /**
905
+ *
906
+ * @type {CommentStatus}
907
+ * @memberof Comment
908
+ */
909
+ status?: CommentStatus;
886
910
  /**
887
911
  *
888
912
  * @type {string}
@@ -903,6 +927,49 @@ interface Comment {
903
927
  metadata: Metadata;
904
928
  }
905
929
 
930
+ /**
931
+ * Halo Next API
932
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
933
+ *
934
+ * The version of the OpenAPI document: 2.0.0
935
+ *
936
+ *
937
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
938
+ * https://openapi-generator.tech
939
+ * Do not edit the class manually.
940
+ */
941
+ /**
942
+ *
943
+ * @export
944
+ * @interface CommentEmailOwner
945
+ */
946
+ interface CommentEmailOwner {
947
+ /**
948
+ *
949
+ * @type {string}
950
+ * @memberof CommentEmailOwner
951
+ */
952
+ email?: string;
953
+ /**
954
+ *
955
+ * @type {string}
956
+ * @memberof CommentEmailOwner
957
+ */
958
+ avatar?: string;
959
+ /**
960
+ *
961
+ * @type {string}
962
+ * @memberof CommentEmailOwner
963
+ */
964
+ displayName?: string;
965
+ /**
966
+ *
967
+ * @type {string}
968
+ * @memberof CommentEmailOwner
969
+ */
970
+ website?: string;
971
+ }
972
+
906
973
  /**
907
974
  * Halo Next API
908
975
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -971,6 +1038,56 @@ interface CommentList {
971
1038
  hasPrevious: boolean;
972
1039
  }
973
1040
 
1041
+ /**
1042
+ * Halo Next API
1043
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
1044
+ *
1045
+ * The version of the OpenAPI document: 2.0.0
1046
+ *
1047
+ *
1048
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1049
+ * https://openapi-generator.tech
1050
+ * Do not edit the class manually.
1051
+ */
1052
+
1053
+ /**
1054
+ *
1055
+ * @export
1056
+ * @interface CommentRequest
1057
+ */
1058
+ interface CommentRequest {
1059
+ /**
1060
+ *
1061
+ * @type {Ref}
1062
+ * @memberof CommentRequest
1063
+ */
1064
+ subjectRef: Ref;
1065
+ /**
1066
+ *
1067
+ * @type {CommentEmailOwner}
1068
+ * @memberof CommentRequest
1069
+ */
1070
+ owner?: CommentEmailOwner;
1071
+ /**
1072
+ *
1073
+ * @type {string}
1074
+ * @memberof CommentRequest
1075
+ */
1076
+ raw: string;
1077
+ /**
1078
+ *
1079
+ * @type {string}
1080
+ * @memberof CommentRequest
1081
+ */
1082
+ content: string;
1083
+ /**
1084
+ *
1085
+ * @type {boolean}
1086
+ * @memberof CommentRequest
1087
+ */
1088
+ allowNotification?: boolean;
1089
+ }
1090
+
974
1091
  /**
975
1092
  * Halo Next API
976
1093
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -1369,6 +1486,44 @@ interface Excerpt {
1369
1486
  raw?: string;
1370
1487
  }
1371
1488
 
1489
+ /**
1490
+ * Halo Next API
1491
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
1492
+ *
1493
+ * The version of the OpenAPI document: 2.0.0
1494
+ *
1495
+ *
1496
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1497
+ * https://openapi-generator.tech
1498
+ * Do not edit the class manually.
1499
+ */
1500
+
1501
+ /**
1502
+ *
1503
+ * @export
1504
+ * @interface Extension
1505
+ */
1506
+ interface Extension {
1507
+ /**
1508
+ *
1509
+ * @type {string}
1510
+ * @memberof Extension
1511
+ */
1512
+ kind: string;
1513
+ /**
1514
+ *
1515
+ * @type {Metadata}
1516
+ * @memberof Extension
1517
+ */
1518
+ metadata: Metadata;
1519
+ /**
1520
+ *
1521
+ * @type {string}
1522
+ * @memberof Extension
1523
+ */
1524
+ apiVersion: string;
1525
+ }
1526
+
1372
1527
  /**
1373
1528
  * Halo Next API
1374
1529
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -1630,6 +1785,161 @@ interface License {
1630
1785
  url?: string;
1631
1786
  }
1632
1787
 
1788
+ /**
1789
+ * Halo Next API
1790
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
1791
+ *
1792
+ * The version of the OpenAPI document: 2.0.0
1793
+ *
1794
+ *
1795
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1796
+ * https://openapi-generator.tech
1797
+ * Do not edit the class manually.
1798
+ */
1799
+ /**
1800
+ *
1801
+ * @export
1802
+ * @interface OwnerInfo
1803
+ */
1804
+ interface OwnerInfo {
1805
+ /**
1806
+ *
1807
+ * @type {string}
1808
+ * @memberof OwnerInfo
1809
+ */
1810
+ kind?: string;
1811
+ /**
1812
+ *
1813
+ * @type {string}
1814
+ * @memberof OwnerInfo
1815
+ */
1816
+ name?: string;
1817
+ /**
1818
+ *
1819
+ * @type {string}
1820
+ * @memberof OwnerInfo
1821
+ */
1822
+ displayName?: string;
1823
+ /**
1824
+ *
1825
+ * @type {string}
1826
+ * @memberof OwnerInfo
1827
+ */
1828
+ avatar?: string;
1829
+ /**
1830
+ *
1831
+ * @type {string}
1832
+ * @memberof OwnerInfo
1833
+ */
1834
+ email?: string;
1835
+ }
1836
+
1837
+ /**
1838
+ * Halo Next API
1839
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
1840
+ *
1841
+ * The version of the OpenAPI document: 2.0.0
1842
+ *
1843
+ *
1844
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1845
+ * https://openapi-generator.tech
1846
+ * Do not edit the class manually.
1847
+ */
1848
+
1849
+ /**
1850
+ * A chunk of items.
1851
+ * @export
1852
+ * @interface ListedComment
1853
+ */
1854
+ interface ListedComment {
1855
+ /**
1856
+ *
1857
+ * @type {Comment}
1858
+ * @memberof ListedComment
1859
+ */
1860
+ comment: Comment;
1861
+ /**
1862
+ *
1863
+ * @type {OwnerInfo}
1864
+ * @memberof ListedComment
1865
+ */
1866
+ owner?: OwnerInfo;
1867
+ /**
1868
+ *
1869
+ * @type {Extension}
1870
+ * @memberof ListedComment
1871
+ */
1872
+ subject?: Extension;
1873
+ }
1874
+
1875
+ /**
1876
+ * Halo Next API
1877
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
1878
+ *
1879
+ * The version of the OpenAPI document: 2.0.0
1880
+ *
1881
+ *
1882
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1883
+ * https://openapi-generator.tech
1884
+ * Do not edit the class manually.
1885
+ */
1886
+
1887
+ /**
1888
+ *
1889
+ * @export
1890
+ * @interface ListedCommentList
1891
+ */
1892
+ interface ListedCommentList {
1893
+ /**
1894
+ * Page number, starts from 1. If not set or equal to 0, it means no pagination.
1895
+ * @type {number}
1896
+ * @memberof ListedCommentList
1897
+ */
1898
+ page: number;
1899
+ /**
1900
+ * Size of each page. If not set or equal to 0, it means no pagination.
1901
+ * @type {number}
1902
+ * @memberof ListedCommentList
1903
+ */
1904
+ size: number;
1905
+ /**
1906
+ * Total elements.
1907
+ * @type {number}
1908
+ * @memberof ListedCommentList
1909
+ */
1910
+ total: number;
1911
+ /**
1912
+ * A chunk of items.
1913
+ * @type {Array<ListedComment>}
1914
+ * @memberof ListedCommentList
1915
+ */
1916
+ items: Array<ListedComment>;
1917
+ /**
1918
+ * Indicates whether current page is the first page.
1919
+ * @type {boolean}
1920
+ * @memberof ListedCommentList
1921
+ */
1922
+ first: boolean;
1923
+ /**
1924
+ * Indicates whether current page is the last page.
1925
+ * @type {boolean}
1926
+ * @memberof ListedCommentList
1927
+ */
1928
+ last: boolean;
1929
+ /**
1930
+ * Indicates whether current page has previous page.
1931
+ * @type {boolean}
1932
+ * @memberof ListedCommentList
1933
+ */
1934
+ hasNext: boolean;
1935
+ /**
1936
+ * Indicates whether current page has previous page.
1937
+ * @type {boolean}
1938
+ * @memberof ListedCommentList
1939
+ */
1940
+ hasPrevious: boolean;
1941
+ }
1942
+
1633
1943
  /**
1634
1944
  * Halo Next API
1635
1945
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -3955,23 +4265,73 @@ interface ReplyList {
3955
4265
  */
3956
4266
  first: boolean;
3957
4267
  /**
3958
- * Indicates whether current page is the last page.
4268
+ * Indicates whether current page is the last page.
4269
+ * @type {boolean}
4270
+ * @memberof ReplyList
4271
+ */
4272
+ last: boolean;
4273
+ /**
4274
+ * Indicates whether current page has previous page.
4275
+ * @type {boolean}
4276
+ * @memberof ReplyList
4277
+ */
4278
+ hasNext: boolean;
4279
+ /**
4280
+ * Indicates whether current page has previous page.
4281
+ * @type {boolean}
4282
+ * @memberof ReplyList
4283
+ */
4284
+ hasPrevious: boolean;
4285
+ }
4286
+
4287
+ /**
4288
+ * Halo Next API
4289
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4290
+ *
4291
+ * The version of the OpenAPI document: 2.0.0
4292
+ *
4293
+ *
4294
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4295
+ * https://openapi-generator.tech
4296
+ * Do not edit the class manually.
4297
+ */
4298
+
4299
+ /**
4300
+ *
4301
+ * @export
4302
+ * @interface ReplyRequest
4303
+ */
4304
+ interface ReplyRequest {
4305
+ /**
4306
+ *
4307
+ * @type {string}
4308
+ * @memberof ReplyRequest
4309
+ */
4310
+ raw: string;
4311
+ /**
4312
+ *
4313
+ * @type {string}
4314
+ * @memberof ReplyRequest
4315
+ */
4316
+ content: string;
4317
+ /**
4318
+ *
3959
4319
  * @type {boolean}
3960
- * @memberof ReplyList
4320
+ * @memberof ReplyRequest
3961
4321
  */
3962
- last: boolean;
4322
+ allowNotification?: boolean;
3963
4323
  /**
3964
- * Indicates whether current page has previous page.
3965
- * @type {boolean}
3966
- * @memberof ReplyList
4324
+ *
4325
+ * @type {CommentEmailOwner}
4326
+ * @memberof ReplyRequest
3967
4327
  */
3968
- hasNext: boolean;
4328
+ owner?: CommentEmailOwner;
3969
4329
  /**
3970
- * Indicates whether current page has previous page.
3971
- * @type {boolean}
3972
- * @memberof ReplyList
4330
+ *
4331
+ * @type {string}
4332
+ * @memberof ReplyRequest
3973
4333
  */
3974
- hasPrevious: boolean;
4334
+ quoteReply?: string;
3975
4335
  }
3976
4336
 
3977
4337
  /**
@@ -5378,6 +5738,294 @@ interface UserPermission {
5378
5738
  uiPermissions: Array<string>;
5379
5739
  }
5380
5740
 
5741
+ /**
5742
+ * ApiHaloRunV1alpha1CommentApi - axios parameter creator
5743
+ * @export
5744
+ */
5745
+ declare const ApiHaloRunV1alpha1CommentApiAxiosParamCreator: (configuration?: Configuration) => {
5746
+ /**
5747
+ * Create a comment.
5748
+ * @param {CommentRequest} commentRequest
5749
+ * @param {*} [options] Override http request option.
5750
+ * @throws {RequiredError}
5751
+ */
5752
+ createComment: (commentRequest: CommentRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5753
+ /**
5754
+ * Create a reply.
5755
+ * @param {string} name
5756
+ * @param {ReplyRequest} replyRequest
5757
+ * @param {*} [options] Override http request option.
5758
+ * @throws {RequiredError}
5759
+ */
5760
+ createReply: (name: string, replyRequest: ReplyRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5761
+ /**
5762
+ * List comments.
5763
+ * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
5764
+ * @param {string} [keyword] Comments filtered by keyword.
5765
+ * @param {boolean} [hidden] The comment is hidden from the theme side.
5766
+ * @param {boolean} [top] Comment top display.
5767
+ * @param {boolean} [approved] Comments approved.
5768
+ * @param {boolean} [allowNotification] Send notifications when there are new replies.
5769
+ * @param {string} [ownerKind] Commenter kind.
5770
+ * @param {string} [ownerName] Commenter name.
5771
+ * @param {string} [subjectKind] Comment subject kind.
5772
+ * @param {string} [subjectName] Comment subject name.
5773
+ * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
5774
+ * @param {number} [size] Size of one page. Zero indicates no limit.
5775
+ * @param {number} [page] The page number. Zero indicates no page.
5776
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
5777
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
5778
+ * @param {*} [options] Override http request option.
5779
+ * @throws {RequiredError}
5780
+ */
5781
+ listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, sortOrder?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5782
+ };
5783
+ /**
5784
+ * ApiHaloRunV1alpha1CommentApi - functional programming interface
5785
+ * @export
5786
+ */
5787
+ declare const ApiHaloRunV1alpha1CommentApiFp: (configuration?: Configuration) => {
5788
+ /**
5789
+ * Create a comment.
5790
+ * @param {CommentRequest} commentRequest
5791
+ * @param {*} [options] Override http request option.
5792
+ * @throws {RequiredError}
5793
+ */
5794
+ createComment(commentRequest: CommentRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Comment>>;
5795
+ /**
5796
+ * Create a reply.
5797
+ * @param {string} name
5798
+ * @param {ReplyRequest} replyRequest
5799
+ * @param {*} [options] Override http request option.
5800
+ * @throws {RequiredError}
5801
+ */
5802
+ createReply(name: string, replyRequest: ReplyRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Reply>>;
5803
+ /**
5804
+ * List comments.
5805
+ * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
5806
+ * @param {string} [keyword] Comments filtered by keyword.
5807
+ * @param {boolean} [hidden] The comment is hidden from the theme side.
5808
+ * @param {boolean} [top] Comment top display.
5809
+ * @param {boolean} [approved] Comments approved.
5810
+ * @param {boolean} [allowNotification] Send notifications when there are new replies.
5811
+ * @param {string} [ownerKind] Commenter kind.
5812
+ * @param {string} [ownerName] Commenter name.
5813
+ * @param {string} [subjectKind] Comment subject kind.
5814
+ * @param {string} [subjectName] Comment subject name.
5815
+ * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
5816
+ * @param {number} [size] Size of one page. Zero indicates no limit.
5817
+ * @param {number} [page] The page number. Zero indicates no page.
5818
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
5819
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
5820
+ * @param {*} [options] Override http request option.
5821
+ * @throws {RequiredError}
5822
+ */
5823
+ listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, sortOrder?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedCommentList>>;
5824
+ };
5825
+ /**
5826
+ * ApiHaloRunV1alpha1CommentApi - factory interface
5827
+ * @export
5828
+ */
5829
+ declare const ApiHaloRunV1alpha1CommentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5830
+ /**
5831
+ * Create a comment.
5832
+ * @param {CommentRequest} commentRequest
5833
+ * @param {*} [options] Override http request option.
5834
+ * @throws {RequiredError}
5835
+ */
5836
+ createComment(commentRequest: CommentRequest, options?: any): AxiosPromise<Comment>;
5837
+ /**
5838
+ * Create a reply.
5839
+ * @param {string} name
5840
+ * @param {ReplyRequest} replyRequest
5841
+ * @param {*} [options] Override http request option.
5842
+ * @throws {RequiredError}
5843
+ */
5844
+ createReply(name: string, replyRequest: ReplyRequest, options?: any): AxiosPromise<Reply>;
5845
+ /**
5846
+ * List comments.
5847
+ * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
5848
+ * @param {string} [keyword] Comments filtered by keyword.
5849
+ * @param {boolean} [hidden] The comment is hidden from the theme side.
5850
+ * @param {boolean} [top] Comment top display.
5851
+ * @param {boolean} [approved] Comments approved.
5852
+ * @param {boolean} [allowNotification] Send notifications when there are new replies.
5853
+ * @param {string} [ownerKind] Commenter kind.
5854
+ * @param {string} [ownerName] Commenter name.
5855
+ * @param {string} [subjectKind] Comment subject kind.
5856
+ * @param {string} [subjectName] Comment subject name.
5857
+ * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
5858
+ * @param {number} [size] Size of one page. Zero indicates no limit.
5859
+ * @param {number} [page] The page number. Zero indicates no page.
5860
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
5861
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
5862
+ * @param {*} [options] Override http request option.
5863
+ * @throws {RequiredError}
5864
+ */
5865
+ listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, sortOrder?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedCommentList>;
5866
+ };
5867
+ /**
5868
+ * Request parameters for createComment operation in ApiHaloRunV1alpha1CommentApi.
5869
+ * @export
5870
+ * @interface ApiHaloRunV1alpha1CommentApiCreateCommentRequest
5871
+ */
5872
+ interface ApiHaloRunV1alpha1CommentApiCreateCommentRequest {
5873
+ /**
5874
+ *
5875
+ * @type {CommentRequest}
5876
+ * @memberof ApiHaloRunV1alpha1CommentApiCreateComment
5877
+ */
5878
+ readonly commentRequest: CommentRequest;
5879
+ }
5880
+ /**
5881
+ * Request parameters for createReply operation in ApiHaloRunV1alpha1CommentApi.
5882
+ * @export
5883
+ * @interface ApiHaloRunV1alpha1CommentApiCreateReplyRequest
5884
+ */
5885
+ interface ApiHaloRunV1alpha1CommentApiCreateReplyRequest {
5886
+ /**
5887
+ *
5888
+ * @type {string}
5889
+ * @memberof ApiHaloRunV1alpha1CommentApiCreateReply
5890
+ */
5891
+ readonly name: string;
5892
+ /**
5893
+ *
5894
+ * @type {ReplyRequest}
5895
+ * @memberof ApiHaloRunV1alpha1CommentApiCreateReply
5896
+ */
5897
+ readonly replyRequest: ReplyRequest;
5898
+ }
5899
+ /**
5900
+ * Request parameters for listComments operation in ApiHaloRunV1alpha1CommentApi.
5901
+ * @export
5902
+ * @interface ApiHaloRunV1alpha1CommentApiListCommentsRequest
5903
+ */
5904
+ interface ApiHaloRunV1alpha1CommentApiListCommentsRequest {
5905
+ /**
5906
+ * Comment collation.
5907
+ * @type {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'}
5908
+ * @memberof ApiHaloRunV1alpha1CommentApiListComments
5909
+ */
5910
+ readonly sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME';
5911
+ /**
5912
+ * Comments filtered by keyword.
5913
+ * @type {string}
5914
+ * @memberof ApiHaloRunV1alpha1CommentApiListComments
5915
+ */
5916
+ readonly keyword?: string;
5917
+ /**
5918
+ * The comment is hidden from the theme side.
5919
+ * @type {boolean}
5920
+ * @memberof ApiHaloRunV1alpha1CommentApiListComments
5921
+ */
5922
+ readonly hidden?: boolean;
5923
+ /**
5924
+ * Comment top display.
5925
+ * @type {boolean}
5926
+ * @memberof ApiHaloRunV1alpha1CommentApiListComments
5927
+ */
5928
+ readonly top?: boolean;
5929
+ /**
5930
+ * Comments approved.
5931
+ * @type {boolean}
5932
+ * @memberof ApiHaloRunV1alpha1CommentApiListComments
5933
+ */
5934
+ readonly approved?: boolean;
5935
+ /**
5936
+ * Send notifications when there are new replies.
5937
+ * @type {boolean}
5938
+ * @memberof ApiHaloRunV1alpha1CommentApiListComments
5939
+ */
5940
+ readonly allowNotification?: boolean;
5941
+ /**
5942
+ * Commenter kind.
5943
+ * @type {string}
5944
+ * @memberof ApiHaloRunV1alpha1CommentApiListComments
5945
+ */
5946
+ readonly ownerKind?: string;
5947
+ /**
5948
+ * Commenter name.
5949
+ * @type {string}
5950
+ * @memberof ApiHaloRunV1alpha1CommentApiListComments
5951
+ */
5952
+ readonly ownerName?: string;
5953
+ /**
5954
+ * Comment subject kind.
5955
+ * @type {string}
5956
+ * @memberof ApiHaloRunV1alpha1CommentApiListComments
5957
+ */
5958
+ readonly subjectKind?: string;
5959
+ /**
5960
+ * Comment subject name.
5961
+ * @type {string}
5962
+ * @memberof ApiHaloRunV1alpha1CommentApiListComments
5963
+ */
5964
+ readonly subjectName?: string;
5965
+ /**
5966
+ * ascending order If it is true; otherwise, it is in descending order.
5967
+ * @type {boolean}
5968
+ * @memberof ApiHaloRunV1alpha1CommentApiListComments
5969
+ */
5970
+ readonly sortOrder?: boolean;
5971
+ /**
5972
+ * Size of one page. Zero indicates no limit.
5973
+ * @type {number}
5974
+ * @memberof ApiHaloRunV1alpha1CommentApiListComments
5975
+ */
5976
+ readonly size?: number;
5977
+ /**
5978
+ * The page number. Zero indicates no page.
5979
+ * @type {number}
5980
+ * @memberof ApiHaloRunV1alpha1CommentApiListComments
5981
+ */
5982
+ readonly page?: number;
5983
+ /**
5984
+ * Label selector for filtering.
5985
+ * @type {Array<string>}
5986
+ * @memberof ApiHaloRunV1alpha1CommentApiListComments
5987
+ */
5988
+ readonly labelSelector?: Array<string>;
5989
+ /**
5990
+ * Field selector for filtering.
5991
+ * @type {Array<string>}
5992
+ * @memberof ApiHaloRunV1alpha1CommentApiListComments
5993
+ */
5994
+ readonly fieldSelector?: Array<string>;
5995
+ }
5996
+ /**
5997
+ * ApiHaloRunV1alpha1CommentApi - object-oriented interface
5998
+ * @export
5999
+ * @class ApiHaloRunV1alpha1CommentApi
6000
+ * @extends {BaseAPI}
6001
+ */
6002
+ declare class ApiHaloRunV1alpha1CommentApi extends BaseAPI {
6003
+ /**
6004
+ * Create a comment.
6005
+ * @param {ApiHaloRunV1alpha1CommentApiCreateCommentRequest} requestParameters Request parameters.
6006
+ * @param {*} [options] Override http request option.
6007
+ * @throws {RequiredError}
6008
+ * @memberof ApiHaloRunV1alpha1CommentApi
6009
+ */
6010
+ createComment(requestParameters: ApiHaloRunV1alpha1CommentApiCreateCommentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Comment, any>>;
6011
+ /**
6012
+ * Create a reply.
6013
+ * @param {ApiHaloRunV1alpha1CommentApiCreateReplyRequest} requestParameters Request parameters.
6014
+ * @param {*} [options] Override http request option.
6015
+ * @throws {RequiredError}
6016
+ * @memberof ApiHaloRunV1alpha1CommentApi
6017
+ */
6018
+ createReply(requestParameters: ApiHaloRunV1alpha1CommentApiCreateReplyRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Reply, any>>;
6019
+ /**
6020
+ * List comments.
6021
+ * @param {ApiHaloRunV1alpha1CommentApiListCommentsRequest} requestParameters Request parameters.
6022
+ * @param {*} [options] Override http request option.
6023
+ * @throws {RequiredError}
6024
+ * @memberof ApiHaloRunV1alpha1CommentApi
6025
+ */
6026
+ listComments(requestParameters?: ApiHaloRunV1alpha1CommentApiListCommentsRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ListedCommentList, any>>;
6027
+ }
6028
+
5381
6029
  /**
5382
6030
  * ApiHaloRunV1alpha1ContentApi - axios parameter creator
5383
6031
  * @export
@@ -5674,17 +6322,17 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
5674
6322
  draftPost: (postRequest: PostRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5675
6323
  /**
5676
6324
  * List posts.
5677
- * @param {Array<string>} [contributors]
5678
- * @param {Array<string>} [categories]
5679
6325
  * @param {Array<string>} [tags]
6326
+ * @param {Array<string>} [categories]
6327
+ * @param {Array<string>} [contributors]
5680
6328
  * @param {number} [size] Size of one page. Zero indicates no limit.
6329
+ * @param {number} [page] The page number. Zero indicates no page.
5681
6330
  * @param {Array<string>} [labelSelector] Label selector for filtering.
5682
6331
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
5683
- * @param {number} [page] The page number. Zero indicates no page.
5684
6332
  * @param {*} [options] Override http request option.
5685
6333
  * @throws {RequiredError}
5686
6334
  */
5687
- listPosts: (contributors?: Array<string>, categories?: Array<string>, tags?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6335
+ listPosts: (tags?: Array<string>, categories?: Array<string>, contributors?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5688
6336
  /**
5689
6337
  * Publish a post.
5690
6338
  * @param {string} name
@@ -5715,17 +6363,17 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
5715
6363
  draftPost(postRequest: PostRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
5716
6364
  /**
5717
6365
  * List posts.
5718
- * @param {Array<string>} [contributors]
5719
- * @param {Array<string>} [categories]
5720
6366
  * @param {Array<string>} [tags]
6367
+ * @param {Array<string>} [categories]
6368
+ * @param {Array<string>} [contributors]
5721
6369
  * @param {number} [size] Size of one page. Zero indicates no limit.
6370
+ * @param {number} [page] The page number. Zero indicates no page.
5722
6371
  * @param {Array<string>} [labelSelector] Label selector for filtering.
5723
6372
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
5724
- * @param {number} [page] The page number. Zero indicates no page.
5725
6373
  * @param {*} [options] Override http request option.
5726
6374
  * @throws {RequiredError}
5727
6375
  */
5728
- listPosts(contributors?: Array<string>, categories?: Array<string>, tags?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
6376
+ listPosts(tags?: Array<string>, categories?: Array<string>, contributors?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
5729
6377
  /**
5730
6378
  * Publish a post.
5731
6379
  * @param {string} name
@@ -5756,17 +6404,17 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
5756
6404
  draftPost(postRequest: PostRequest, options?: any): AxiosPromise<Post>;
5757
6405
  /**
5758
6406
  * List posts.
5759
- * @param {Array<string>} [contributors]
5760
- * @param {Array<string>} [categories]
5761
6407
  * @param {Array<string>} [tags]
6408
+ * @param {Array<string>} [categories]
6409
+ * @param {Array<string>} [contributors]
5762
6410
  * @param {number} [size] Size of one page. Zero indicates no limit.
6411
+ * @param {number} [page] The page number. Zero indicates no page.
5763
6412
  * @param {Array<string>} [labelSelector] Label selector for filtering.
5764
6413
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
5765
- * @param {number} [page] The page number. Zero indicates no page.
5766
6414
  * @param {*} [options] Override http request option.
5767
6415
  * @throws {RequiredError}
5768
6416
  */
5769
- listPosts(contributors?: Array<string>, categories?: Array<string>, tags?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedPostList>;
6417
+ listPosts(tags?: Array<string>, categories?: Array<string>, contributors?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedPostList>;
5770
6418
  /**
5771
6419
  * Publish a post.
5772
6420
  * @param {string} name
@@ -5807,7 +6455,7 @@ interface ApiHaloRunV1alpha1PostApiListPostsRequest {
5807
6455
  * @type {Array<string>}
5808
6456
  * @memberof ApiHaloRunV1alpha1PostApiListPosts
5809
6457
  */
5810
- readonly contributors?: Array<string>;
6458
+ readonly tags?: Array<string>;
5811
6459
  /**
5812
6460
  *
5813
6461
  * @type {Array<string>}
@@ -5819,13 +6467,19 @@ interface ApiHaloRunV1alpha1PostApiListPostsRequest {
5819
6467
  * @type {Array<string>}
5820
6468
  * @memberof ApiHaloRunV1alpha1PostApiListPosts
5821
6469
  */
5822
- readonly tags?: Array<string>;
6470
+ readonly contributors?: Array<string>;
5823
6471
  /**
5824
6472
  * Size of one page. Zero indicates no limit.
5825
6473
  * @type {number}
5826
6474
  * @memberof ApiHaloRunV1alpha1PostApiListPosts
5827
6475
  */
5828
6476
  readonly size?: number;
6477
+ /**
6478
+ * The page number. Zero indicates no page.
6479
+ * @type {number}
6480
+ * @memberof ApiHaloRunV1alpha1PostApiListPosts
6481
+ */
6482
+ readonly page?: number;
5829
6483
  /**
5830
6484
  * Label selector for filtering.
5831
6485
  * @type {Array<string>}
@@ -5838,12 +6492,6 @@ interface ApiHaloRunV1alpha1PostApiListPostsRequest {
5838
6492
  * @memberof ApiHaloRunV1alpha1PostApiListPosts
5839
6493
  */
5840
6494
  readonly fieldSelector?: Array<string>;
5841
- /**
5842
- * The page number. Zero indicates no page.
5843
- * @type {number}
5844
- * @memberof ApiHaloRunV1alpha1PostApiListPosts
5845
- */
5846
- readonly page?: number;
5847
6495
  }
5848
6496
  /**
5849
6497
  * Request parameters for publishPost operation in ApiHaloRunV1alpha1PostApi.
@@ -5934,13 +6582,13 @@ declare const ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configuration?:
5934
6582
  * List single pages.
5935
6583
  * @param {Array<string>} [contributors]
5936
6584
  * @param {number} [size] Size of one page. Zero indicates no limit.
6585
+ * @param {number} [page] The page number. Zero indicates no page.
5937
6586
  * @param {Array<string>} [labelSelector] Label selector for filtering.
5938
6587
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
5939
- * @param {number} [page] The page number. Zero indicates no page.
5940
6588
  * @param {*} [options] Override http request option.
5941
6589
  * @throws {RequiredError}
5942
6590
  */
5943
- listSinglePages: (contributors?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6591
+ listSinglePages: (contributors?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5944
6592
  /**
5945
6593
  * Publish a single page.
5946
6594
  * @param {string} name
@@ -5973,13 +6621,13 @@ declare const ApiHaloRunV1alpha1SinglePageApiFp: (configuration?: Configuration)
5973
6621
  * List single pages.
5974
6622
  * @param {Array<string>} [contributors]
5975
6623
  * @param {number} [size] Size of one page. Zero indicates no limit.
6624
+ * @param {number} [page] The page number. Zero indicates no page.
5976
6625
  * @param {Array<string>} [labelSelector] Label selector for filtering.
5977
6626
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
5978
- * @param {number} [page] The page number. Zero indicates no page.
5979
6627
  * @param {*} [options] Override http request option.
5980
6628
  * @throws {RequiredError}
5981
6629
  */
5982
- listSinglePages(contributors?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
6630
+ listSinglePages(contributors?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
5983
6631
  /**
5984
6632
  * Publish a single page.
5985
6633
  * @param {string} name
@@ -6012,13 +6660,13 @@ declare const ApiHaloRunV1alpha1SinglePageApiFactory: (configuration?: Configura
6012
6660
  * List single pages.
6013
6661
  * @param {Array<string>} [contributors]
6014
6662
  * @param {number} [size] Size of one page. Zero indicates no limit.
6663
+ * @param {number} [page] The page number. Zero indicates no page.
6015
6664
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6016
6665
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
6017
- * @param {number} [page] The page number. Zero indicates no page.
6018
6666
  * @param {*} [options] Override http request option.
6019
6667
  * @throws {RequiredError}
6020
6668
  */
6021
- listSinglePages(contributors?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedSinglePageList>;
6669
+ listSinglePages(contributors?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedSinglePageList>;
6022
6670
  /**
6023
6671
  * Publish a single page.
6024
6672
  * @param {string} name
@@ -6066,6 +6714,12 @@ interface ApiHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
6066
6714
  * @memberof ApiHaloRunV1alpha1SinglePageApiListSinglePages
6067
6715
  */
6068
6716
  readonly size?: number;
6717
+ /**
6718
+ * The page number. Zero indicates no page.
6719
+ * @type {number}
6720
+ * @memberof ApiHaloRunV1alpha1SinglePageApiListSinglePages
6721
+ */
6722
+ readonly page?: number;
6069
6723
  /**
6070
6724
  * Label selector for filtering.
6071
6725
  * @type {Array<string>}
@@ -6078,12 +6732,6 @@ interface ApiHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
6078
6732
  * @memberof ApiHaloRunV1alpha1SinglePageApiListSinglePages
6079
6733
  */
6080
6734
  readonly fieldSelector?: Array<string>;
6081
- /**
6082
- * The page number. Zero indicates no page.
6083
- * @type {number}
6084
- * @memberof ApiHaloRunV1alpha1SinglePageApiListSinglePages
6085
- */
6086
- readonly page?: number;
6087
6735
  }
6088
6736
  /**
6089
6737
  * Request parameters for publishSinglePage operation in ApiHaloRunV1alpha1SinglePageApi.
@@ -8920,16 +9568,16 @@ declare const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configurati
8920
9568
  *
8921
9569
  * @param {string} [policy] Name of policy
8922
9570
  * @param {string} [displayName] Display name of attachment
8923
- * @param {string} [uploadedBy] Name of user who uploaded the attachment
8924
9571
  * @param {string} [group] Name of group
9572
+ * @param {string} [uploadedBy] Name of user who uploaded the attachment
8925
9573
  * @param {number} [size] Size of one page. Zero indicates no limit.
9574
+ * @param {number} [page] The page number. Zero indicates no page.
8926
9575
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8927
9576
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8928
- * @param {number} [page] The page number. Zero indicates no page.
8929
9577
  * @param {*} [options] Override http request option.
8930
9578
  * @throws {RequiredError}
8931
9579
  */
8932
- searchAttachments: (policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9580
+ searchAttachments: (policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8933
9581
  /**
8934
9582
  * Update storage.halo.run/v1alpha1/Attachment
8935
9583
  * @param {string} name Name of attachment
@@ -8988,16 +9636,16 @@ declare const StorageHaloRunV1alpha1AttachmentApiFp: (configuration?: Configurat
8988
9636
  *
8989
9637
  * @param {string} [policy] Name of policy
8990
9638
  * @param {string} [displayName] Display name of attachment
8991
- * @param {string} [uploadedBy] Name of user who uploaded the attachment
8992
9639
  * @param {string} [group] Name of group
9640
+ * @param {string} [uploadedBy] Name of user who uploaded the attachment
8993
9641
  * @param {number} [size] Size of one page. Zero indicates no limit.
9642
+ * @param {number} [page] The page number. Zero indicates no page.
8994
9643
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8995
9644
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8996
- * @param {number} [page] The page number. Zero indicates no page.
8997
9645
  * @param {*} [options] Override http request option.
8998
9646
  * @throws {RequiredError}
8999
9647
  */
9000
- 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>>;
9648
+ searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
9001
9649
  /**
9002
9650
  * Update storage.halo.run/v1alpha1/Attachment
9003
9651
  * @param {string} name Name of attachment
@@ -9056,16 +9704,16 @@ declare const StorageHaloRunV1alpha1AttachmentApiFactory: (configuration?: Confi
9056
9704
  *
9057
9705
  * @param {string} [policy] Name of policy
9058
9706
  * @param {string} [displayName] Display name of attachment
9059
- * @param {string} [uploadedBy] Name of user who uploaded the attachment
9060
9707
  * @param {string} [group] Name of group
9708
+ * @param {string} [uploadedBy] Name of user who uploaded the attachment
9061
9709
  * @param {number} [size] Size of one page. Zero indicates no limit.
9710
+ * @param {number} [page] The page number. Zero indicates no page.
9062
9711
  * @param {Array<string>} [labelSelector] Label selector for filtering.
9063
9712
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
9064
- * @param {number} [page] The page number. Zero indicates no page.
9065
9713
  * @param {*} [options] Override http request option.
9066
9714
  * @throws {RequiredError}
9067
9715
  */
9068
- searchAttachments(policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<AttachmentList>;
9716
+ searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<AttachmentList>;
9069
9717
  /**
9070
9718
  * Update storage.halo.run/v1alpha1/Attachment
9071
9719
  * @param {string} name Name of attachment
@@ -9173,23 +9821,29 @@ interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
9173
9821
  */
9174
9822
  readonly displayName?: string;
9175
9823
  /**
9176
- * Name of user who uploaded the attachment
9824
+ * Name of group
9177
9825
  * @type {string}
9178
9826
  * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
9179
9827
  */
9180
- readonly uploadedBy?: string;
9828
+ readonly group?: string;
9181
9829
  /**
9182
- * Name of group
9830
+ * Name of user who uploaded the attachment
9183
9831
  * @type {string}
9184
9832
  * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
9185
9833
  */
9186
- readonly group?: string;
9834
+ readonly uploadedBy?: string;
9187
9835
  /**
9188
9836
  * Size of one page. Zero indicates no limit.
9189
9837
  * @type {number}
9190
9838
  * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
9191
9839
  */
9192
9840
  readonly size?: number;
9841
+ /**
9842
+ * The page number. Zero indicates no page.
9843
+ * @type {number}
9844
+ * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
9845
+ */
9846
+ readonly page?: number;
9193
9847
  /**
9194
9848
  * Label selector for filtering.
9195
9849
  * @type {Array<string>}
@@ -9202,12 +9856,6 @@ interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
9202
9856
  * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
9203
9857
  */
9204
9858
  readonly fieldSelector?: Array<string>;
9205
- /**
9206
- * The page number. Zero indicates no page.
9207
- * @type {number}
9208
- * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
9209
- */
9210
- readonly page?: number;
9211
9859
  }
9212
9860
  /**
9213
9861
  * Request parameters for updatestorageHaloRunV1alpha1Attachment operation in StorageHaloRunV1alpha1AttachmentApi.
@@ -12594,4 +13242,4 @@ declare class V1alpha1UserApi extends BaseAPI {
12594
13242
  updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
12595
13243
  }
12596
13244
 
12597
- export { ApiHaloRunV1alpha1ContentApi, ApiHaloRunV1alpha1ContentApiAxiosParamCreator, ApiHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiFactory, ApiHaloRunV1alpha1ContentApiFp, ApiHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1PluginApiInstallPluginRequest, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiDraftPostRequest, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1PostApiListPostsRequest, ApiHaloRunV1alpha1PostApiPublishPostRequest, ApiHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiHaloRunV1alpha1SinglePageApi, ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiHaloRunV1alpha1SinglePageApiFactory, ApiHaloRunV1alpha1SinglePageApiFp, ApiHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiHaloRunV1alpha1ThemeApi, ApiHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiHaloRunV1alpha1ThemeApiFactory, ApiHaloRunV1alpha1ThemeApiFp, ApiHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiChangePasswordRequest, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, ApiHaloRunV1alpha1UserApiGetPermissionsRequest, ApiHaloRunV1alpha1UserApiGrantPermissionRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentList, CommentOwner, CommentSpec, CommentSubjectRef, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentWrapper, Contributor, Excerpt, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, ListedPost, ListedPostList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplySpec, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, SubjectRef, Tag, TagList, TagSpec, TagStatus, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest };
13245
+ export { ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateCommentRequest, ApiHaloRunV1alpha1CommentApiCreateReplyRequest, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiListCommentsRequest, ApiHaloRunV1alpha1ContentApi, ApiHaloRunV1alpha1ContentApiAxiosParamCreator, ApiHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiFactory, ApiHaloRunV1alpha1ContentApiFp, ApiHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1PluginApiInstallPluginRequest, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiDraftPostRequest, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1PostApiListPostsRequest, ApiHaloRunV1alpha1PostApiPublishPostRequest, ApiHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiHaloRunV1alpha1SinglePageApi, ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiHaloRunV1alpha1SinglePageApiFactory, ApiHaloRunV1alpha1SinglePageApiFp, ApiHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiHaloRunV1alpha1ThemeApi, ApiHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiHaloRunV1alpha1ThemeApiFactory, ApiHaloRunV1alpha1ThemeApiFp, ApiHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiChangePasswordRequest, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, ApiHaloRunV1alpha1UserApiGetPermissionsRequest, ApiHaloRunV1alpha1UserApiGrantPermissionRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentWrapper, Contributor, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, SubjectRef, Tag, TagList, TagSpec, TagStatus, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest };