@halo-dev/api-client 0.0.19 → 0.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +127 -34
- package/dist/index.d.ts +488 -85
- package/dist/index.mjs +124 -35
- package/package.json +1 -1
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 {
|
|
825
|
+
* @type {Ref}
|
|
826
|
+
* @memberof CommentSpec
|
|
827
|
+
*/
|
|
828
|
+
subjectRef: Ref;
|
|
829
|
+
/**
|
|
830
|
+
*
|
|
831
|
+
* @type {string}
|
|
857
832
|
* @memberof CommentSpec
|
|
858
833
|
*/
|
|
859
|
-
|
|
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}
|
|
@@ -1369,6 +1393,44 @@ interface Excerpt {
|
|
|
1369
1393
|
raw?: string;
|
|
1370
1394
|
}
|
|
1371
1395
|
|
|
1396
|
+
/**
|
|
1397
|
+
* Halo Next API
|
|
1398
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
1399
|
+
*
|
|
1400
|
+
* The version of the OpenAPI document: 2.0.0
|
|
1401
|
+
*
|
|
1402
|
+
*
|
|
1403
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1404
|
+
* https://openapi-generator.tech
|
|
1405
|
+
* Do not edit the class manually.
|
|
1406
|
+
*/
|
|
1407
|
+
|
|
1408
|
+
/**
|
|
1409
|
+
*
|
|
1410
|
+
* @export
|
|
1411
|
+
* @interface Extension
|
|
1412
|
+
*/
|
|
1413
|
+
interface Extension {
|
|
1414
|
+
/**
|
|
1415
|
+
*
|
|
1416
|
+
* @type {string}
|
|
1417
|
+
* @memberof Extension
|
|
1418
|
+
*/
|
|
1419
|
+
kind: string;
|
|
1420
|
+
/**
|
|
1421
|
+
*
|
|
1422
|
+
* @type {string}
|
|
1423
|
+
* @memberof Extension
|
|
1424
|
+
*/
|
|
1425
|
+
apiVersion: string;
|
|
1426
|
+
/**
|
|
1427
|
+
*
|
|
1428
|
+
* @type {Metadata}
|
|
1429
|
+
* @memberof Extension
|
|
1430
|
+
*/
|
|
1431
|
+
metadata: Metadata;
|
|
1432
|
+
}
|
|
1433
|
+
|
|
1372
1434
|
/**
|
|
1373
1435
|
* Halo Next API
|
|
1374
1436
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -1630,6 +1692,161 @@ interface License {
|
|
|
1630
1692
|
url?: string;
|
|
1631
1693
|
}
|
|
1632
1694
|
|
|
1695
|
+
/**
|
|
1696
|
+
* Halo Next API
|
|
1697
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
1698
|
+
*
|
|
1699
|
+
* The version of the OpenAPI document: 2.0.0
|
|
1700
|
+
*
|
|
1701
|
+
*
|
|
1702
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1703
|
+
* https://openapi-generator.tech
|
|
1704
|
+
* Do not edit the class manually.
|
|
1705
|
+
*/
|
|
1706
|
+
/**
|
|
1707
|
+
*
|
|
1708
|
+
* @export
|
|
1709
|
+
* @interface OwnerInfo
|
|
1710
|
+
*/
|
|
1711
|
+
interface OwnerInfo {
|
|
1712
|
+
/**
|
|
1713
|
+
*
|
|
1714
|
+
* @type {string}
|
|
1715
|
+
* @memberof OwnerInfo
|
|
1716
|
+
*/
|
|
1717
|
+
kind?: string;
|
|
1718
|
+
/**
|
|
1719
|
+
*
|
|
1720
|
+
* @type {string}
|
|
1721
|
+
* @memberof OwnerInfo
|
|
1722
|
+
*/
|
|
1723
|
+
name?: string;
|
|
1724
|
+
/**
|
|
1725
|
+
*
|
|
1726
|
+
* @type {string}
|
|
1727
|
+
* @memberof OwnerInfo
|
|
1728
|
+
*/
|
|
1729
|
+
displayName?: string;
|
|
1730
|
+
/**
|
|
1731
|
+
*
|
|
1732
|
+
* @type {string}
|
|
1733
|
+
* @memberof OwnerInfo
|
|
1734
|
+
*/
|
|
1735
|
+
avatar?: string;
|
|
1736
|
+
/**
|
|
1737
|
+
*
|
|
1738
|
+
* @type {string}
|
|
1739
|
+
* @memberof OwnerInfo
|
|
1740
|
+
*/
|
|
1741
|
+
email?: string;
|
|
1742
|
+
}
|
|
1743
|
+
|
|
1744
|
+
/**
|
|
1745
|
+
* Halo Next API
|
|
1746
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
1747
|
+
*
|
|
1748
|
+
* The version of the OpenAPI document: 2.0.0
|
|
1749
|
+
*
|
|
1750
|
+
*
|
|
1751
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1752
|
+
* https://openapi-generator.tech
|
|
1753
|
+
* Do not edit the class manually.
|
|
1754
|
+
*/
|
|
1755
|
+
|
|
1756
|
+
/**
|
|
1757
|
+
* A chunk of items.
|
|
1758
|
+
* @export
|
|
1759
|
+
* @interface ListedComment
|
|
1760
|
+
*/
|
|
1761
|
+
interface ListedComment {
|
|
1762
|
+
/**
|
|
1763
|
+
*
|
|
1764
|
+
* @type {Comment}
|
|
1765
|
+
* @memberof ListedComment
|
|
1766
|
+
*/
|
|
1767
|
+
comment: Comment;
|
|
1768
|
+
/**
|
|
1769
|
+
*
|
|
1770
|
+
* @type {OwnerInfo}
|
|
1771
|
+
* @memberof ListedComment
|
|
1772
|
+
*/
|
|
1773
|
+
owner?: OwnerInfo;
|
|
1774
|
+
/**
|
|
1775
|
+
*
|
|
1776
|
+
* @type {Extension}
|
|
1777
|
+
* @memberof ListedComment
|
|
1778
|
+
*/
|
|
1779
|
+
subject?: Extension;
|
|
1780
|
+
}
|
|
1781
|
+
|
|
1782
|
+
/**
|
|
1783
|
+
* Halo Next API
|
|
1784
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
1785
|
+
*
|
|
1786
|
+
* The version of the OpenAPI document: 2.0.0
|
|
1787
|
+
*
|
|
1788
|
+
*
|
|
1789
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1790
|
+
* https://openapi-generator.tech
|
|
1791
|
+
* Do not edit the class manually.
|
|
1792
|
+
*/
|
|
1793
|
+
|
|
1794
|
+
/**
|
|
1795
|
+
*
|
|
1796
|
+
* @export
|
|
1797
|
+
* @interface ListedCommentList
|
|
1798
|
+
*/
|
|
1799
|
+
interface ListedCommentList {
|
|
1800
|
+
/**
|
|
1801
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
1802
|
+
* @type {number}
|
|
1803
|
+
* @memberof ListedCommentList
|
|
1804
|
+
*/
|
|
1805
|
+
page: number;
|
|
1806
|
+
/**
|
|
1807
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
1808
|
+
* @type {number}
|
|
1809
|
+
* @memberof ListedCommentList
|
|
1810
|
+
*/
|
|
1811
|
+
size: number;
|
|
1812
|
+
/**
|
|
1813
|
+
* Total elements.
|
|
1814
|
+
* @type {number}
|
|
1815
|
+
* @memberof ListedCommentList
|
|
1816
|
+
*/
|
|
1817
|
+
total: number;
|
|
1818
|
+
/**
|
|
1819
|
+
* A chunk of items.
|
|
1820
|
+
* @type {Array<ListedComment>}
|
|
1821
|
+
* @memberof ListedCommentList
|
|
1822
|
+
*/
|
|
1823
|
+
items: Array<ListedComment>;
|
|
1824
|
+
/**
|
|
1825
|
+
* Indicates whether current page is the first page.
|
|
1826
|
+
* @type {boolean}
|
|
1827
|
+
* @memberof ListedCommentList
|
|
1828
|
+
*/
|
|
1829
|
+
first: boolean;
|
|
1830
|
+
/**
|
|
1831
|
+
* Indicates whether current page is the last page.
|
|
1832
|
+
* @type {boolean}
|
|
1833
|
+
* @memberof ListedCommentList
|
|
1834
|
+
*/
|
|
1835
|
+
last: boolean;
|
|
1836
|
+
/**
|
|
1837
|
+
* Indicates whether current page has previous page.
|
|
1838
|
+
* @type {boolean}
|
|
1839
|
+
* @memberof ListedCommentList
|
|
1840
|
+
*/
|
|
1841
|
+
hasNext: boolean;
|
|
1842
|
+
/**
|
|
1843
|
+
* Indicates whether current page has previous page.
|
|
1844
|
+
* @type {boolean}
|
|
1845
|
+
* @memberof ListedCommentList
|
|
1846
|
+
*/
|
|
1847
|
+
hasPrevious: boolean;
|
|
1848
|
+
}
|
|
1849
|
+
|
|
1633
1850
|
/**
|
|
1634
1851
|
* Halo Next API
|
|
1635
1852
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -5378,6 +5595,192 @@ interface UserPermission {
|
|
|
5378
5595
|
uiPermissions: Array<string>;
|
|
5379
5596
|
}
|
|
5380
5597
|
|
|
5598
|
+
/**
|
|
5599
|
+
* ApiHaloRunV1alpha1CommentApi - axios parameter creator
|
|
5600
|
+
* @export
|
|
5601
|
+
*/
|
|
5602
|
+
declare const ApiHaloRunV1alpha1CommentApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5603
|
+
/**
|
|
5604
|
+
* List comments.
|
|
5605
|
+
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
5606
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
5607
|
+
* @param {boolean} [top] Comment top display.
|
|
5608
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
5609
|
+
* @param {boolean} [approved] Comments approved.
|
|
5610
|
+
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
5611
|
+
* @param {string} [ownerKind] Commenter kind.
|
|
5612
|
+
* @param {string} [ownerName] Commenter name.
|
|
5613
|
+
* @param {string} [subjectKind] Comment subject kind.
|
|
5614
|
+
* @param {string} [subjectName] Comment subject name.
|
|
5615
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5616
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
5617
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5618
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5619
|
+
* @param {*} [options] Override http request option.
|
|
5620
|
+
* @throws {RequiredError}
|
|
5621
|
+
*/
|
|
5622
|
+
listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', 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>;
|
|
5623
|
+
};
|
|
5624
|
+
/**
|
|
5625
|
+
* ApiHaloRunV1alpha1CommentApi - functional programming interface
|
|
5626
|
+
* @export
|
|
5627
|
+
*/
|
|
5628
|
+
declare const ApiHaloRunV1alpha1CommentApiFp: (configuration?: Configuration) => {
|
|
5629
|
+
/**
|
|
5630
|
+
* List comments.
|
|
5631
|
+
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
5632
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
5633
|
+
* @param {boolean} [top] Comment top display.
|
|
5634
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
5635
|
+
* @param {boolean} [approved] Comments approved.
|
|
5636
|
+
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
5637
|
+
* @param {string} [ownerKind] Commenter kind.
|
|
5638
|
+
* @param {string} [ownerName] Commenter name.
|
|
5639
|
+
* @param {string} [subjectKind] Comment subject kind.
|
|
5640
|
+
* @param {string} [subjectName] Comment subject name.
|
|
5641
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5642
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
5643
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5644
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5645
|
+
* @param {*} [options] Override http request option.
|
|
5646
|
+
* @throws {RequiredError}
|
|
5647
|
+
*/
|
|
5648
|
+
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', 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>>;
|
|
5649
|
+
};
|
|
5650
|
+
/**
|
|
5651
|
+
* ApiHaloRunV1alpha1CommentApi - factory interface
|
|
5652
|
+
* @export
|
|
5653
|
+
*/
|
|
5654
|
+
declare const ApiHaloRunV1alpha1CommentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5655
|
+
/**
|
|
5656
|
+
* List comments.
|
|
5657
|
+
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
5658
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
5659
|
+
* @param {boolean} [top] Comment top display.
|
|
5660
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
5661
|
+
* @param {boolean} [approved] Comments approved.
|
|
5662
|
+
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
5663
|
+
* @param {string} [ownerKind] Commenter kind.
|
|
5664
|
+
* @param {string} [ownerName] Commenter name.
|
|
5665
|
+
* @param {string} [subjectKind] Comment subject kind.
|
|
5666
|
+
* @param {string} [subjectName] Comment subject name.
|
|
5667
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5668
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
5669
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5670
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5671
|
+
* @param {*} [options] Override http request option.
|
|
5672
|
+
* @throws {RequiredError}
|
|
5673
|
+
*/
|
|
5674
|
+
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', 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>;
|
|
5675
|
+
};
|
|
5676
|
+
/**
|
|
5677
|
+
* Request parameters for listComments operation in ApiHaloRunV1alpha1CommentApi.
|
|
5678
|
+
* @export
|
|
5679
|
+
* @interface ApiHaloRunV1alpha1CommentApiListCommentsRequest
|
|
5680
|
+
*/
|
|
5681
|
+
interface ApiHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
5682
|
+
/**
|
|
5683
|
+
* Comment collation.
|
|
5684
|
+
* @type {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'}
|
|
5685
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListComments
|
|
5686
|
+
*/
|
|
5687
|
+
readonly sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME';
|
|
5688
|
+
/**
|
|
5689
|
+
* The comment is hidden from the theme side.
|
|
5690
|
+
* @type {boolean}
|
|
5691
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListComments
|
|
5692
|
+
*/
|
|
5693
|
+
readonly hidden?: boolean;
|
|
5694
|
+
/**
|
|
5695
|
+
* Comment top display.
|
|
5696
|
+
* @type {boolean}
|
|
5697
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListComments
|
|
5698
|
+
*/
|
|
5699
|
+
readonly top?: boolean;
|
|
5700
|
+
/**
|
|
5701
|
+
* ascending order If it is true; otherwise, it is in descending order.
|
|
5702
|
+
* @type {boolean}
|
|
5703
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListComments
|
|
5704
|
+
*/
|
|
5705
|
+
readonly sortOrder?: boolean;
|
|
5706
|
+
/**
|
|
5707
|
+
* Comments approved.
|
|
5708
|
+
* @type {boolean}
|
|
5709
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListComments
|
|
5710
|
+
*/
|
|
5711
|
+
readonly approved?: boolean;
|
|
5712
|
+
/**
|
|
5713
|
+
* Send notifications when there are new replies.
|
|
5714
|
+
* @type {boolean}
|
|
5715
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListComments
|
|
5716
|
+
*/
|
|
5717
|
+
readonly allowNotification?: boolean;
|
|
5718
|
+
/**
|
|
5719
|
+
* Commenter kind.
|
|
5720
|
+
* @type {string}
|
|
5721
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListComments
|
|
5722
|
+
*/
|
|
5723
|
+
readonly ownerKind?: string;
|
|
5724
|
+
/**
|
|
5725
|
+
* Commenter name.
|
|
5726
|
+
* @type {string}
|
|
5727
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListComments
|
|
5728
|
+
*/
|
|
5729
|
+
readonly ownerName?: string;
|
|
5730
|
+
/**
|
|
5731
|
+
* Comment subject kind.
|
|
5732
|
+
* @type {string}
|
|
5733
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListComments
|
|
5734
|
+
*/
|
|
5735
|
+
readonly subjectKind?: string;
|
|
5736
|
+
/**
|
|
5737
|
+
* Comment subject name.
|
|
5738
|
+
* @type {string}
|
|
5739
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListComments
|
|
5740
|
+
*/
|
|
5741
|
+
readonly subjectName?: string;
|
|
5742
|
+
/**
|
|
5743
|
+
* Size of one page. Zero indicates no limit.
|
|
5744
|
+
* @type {number}
|
|
5745
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListComments
|
|
5746
|
+
*/
|
|
5747
|
+
readonly size?: number;
|
|
5748
|
+
/**
|
|
5749
|
+
* The page number. Zero indicates no page.
|
|
5750
|
+
* @type {number}
|
|
5751
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListComments
|
|
5752
|
+
*/
|
|
5753
|
+
readonly page?: number;
|
|
5754
|
+
/**
|
|
5755
|
+
* Label selector for filtering.
|
|
5756
|
+
* @type {Array<string>}
|
|
5757
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListComments
|
|
5758
|
+
*/
|
|
5759
|
+
readonly labelSelector?: Array<string>;
|
|
5760
|
+
/**
|
|
5761
|
+
* Field selector for filtering.
|
|
5762
|
+
* @type {Array<string>}
|
|
5763
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListComments
|
|
5764
|
+
*/
|
|
5765
|
+
readonly fieldSelector?: Array<string>;
|
|
5766
|
+
}
|
|
5767
|
+
/**
|
|
5768
|
+
* ApiHaloRunV1alpha1CommentApi - object-oriented interface
|
|
5769
|
+
* @export
|
|
5770
|
+
* @class ApiHaloRunV1alpha1CommentApi
|
|
5771
|
+
* @extends {BaseAPI}
|
|
5772
|
+
*/
|
|
5773
|
+
declare class ApiHaloRunV1alpha1CommentApi extends BaseAPI {
|
|
5774
|
+
/**
|
|
5775
|
+
* List comments.
|
|
5776
|
+
* @param {ApiHaloRunV1alpha1CommentApiListCommentsRequest} requestParameters Request parameters.
|
|
5777
|
+
* @param {*} [options] Override http request option.
|
|
5778
|
+
* @throws {RequiredError}
|
|
5779
|
+
* @memberof ApiHaloRunV1alpha1CommentApi
|
|
5780
|
+
*/
|
|
5781
|
+
listComments(requestParameters?: ApiHaloRunV1alpha1CommentApiListCommentsRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ListedCommentList, any>>;
|
|
5782
|
+
}
|
|
5783
|
+
|
|
5381
5784
|
/**
|
|
5382
5785
|
* ApiHaloRunV1alpha1ContentApi - axios parameter creator
|
|
5383
5786
|
* @export
|
|
@@ -5674,17 +6077,17 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
|
|
|
5674
6077
|
draftPost: (postRequest: PostRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5675
6078
|
/**
|
|
5676
6079
|
* List posts.
|
|
5677
|
-
* @param {Array<string>} [contributors]
|
|
5678
|
-
* @param {Array<string>} [categories]
|
|
5679
6080
|
* @param {Array<string>} [tags]
|
|
6081
|
+
* @param {Array<string>} [categories]
|
|
6082
|
+
* @param {Array<string>} [contributors]
|
|
5680
6083
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6084
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
5681
6085
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5682
6086
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5683
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
5684
6087
|
* @param {*} [options] Override http request option.
|
|
5685
6088
|
* @throws {RequiredError}
|
|
5686
6089
|
*/
|
|
5687
|
-
listPosts: (
|
|
6090
|
+
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
6091
|
/**
|
|
5689
6092
|
* Publish a post.
|
|
5690
6093
|
* @param {string} name
|
|
@@ -5715,17 +6118,17 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
|
|
|
5715
6118
|
draftPost(postRequest: PostRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
|
|
5716
6119
|
/**
|
|
5717
6120
|
* List posts.
|
|
5718
|
-
* @param {Array<string>} [contributors]
|
|
5719
|
-
* @param {Array<string>} [categories]
|
|
5720
6121
|
* @param {Array<string>} [tags]
|
|
6122
|
+
* @param {Array<string>} [categories]
|
|
6123
|
+
* @param {Array<string>} [contributors]
|
|
5721
6124
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6125
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
5722
6126
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5723
6127
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5724
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
5725
6128
|
* @param {*} [options] Override http request option.
|
|
5726
6129
|
* @throws {RequiredError}
|
|
5727
6130
|
*/
|
|
5728
|
-
listPosts(
|
|
6131
|
+
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
6132
|
/**
|
|
5730
6133
|
* Publish a post.
|
|
5731
6134
|
* @param {string} name
|
|
@@ -5756,17 +6159,17 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
|
|
|
5756
6159
|
draftPost(postRequest: PostRequest, options?: any): AxiosPromise<Post>;
|
|
5757
6160
|
/**
|
|
5758
6161
|
* List posts.
|
|
5759
|
-
* @param {Array<string>} [contributors]
|
|
5760
|
-
* @param {Array<string>} [categories]
|
|
5761
6162
|
* @param {Array<string>} [tags]
|
|
6163
|
+
* @param {Array<string>} [categories]
|
|
6164
|
+
* @param {Array<string>} [contributors]
|
|
5762
6165
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6166
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
5763
6167
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5764
6168
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5765
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
5766
6169
|
* @param {*} [options] Override http request option.
|
|
5767
6170
|
* @throws {RequiredError}
|
|
5768
6171
|
*/
|
|
5769
|
-
listPosts(
|
|
6172
|
+
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
6173
|
/**
|
|
5771
6174
|
* Publish a post.
|
|
5772
6175
|
* @param {string} name
|
|
@@ -5807,7 +6210,7 @@ interface ApiHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
5807
6210
|
* @type {Array<string>}
|
|
5808
6211
|
* @memberof ApiHaloRunV1alpha1PostApiListPosts
|
|
5809
6212
|
*/
|
|
5810
|
-
readonly
|
|
6213
|
+
readonly tags?: Array<string>;
|
|
5811
6214
|
/**
|
|
5812
6215
|
*
|
|
5813
6216
|
* @type {Array<string>}
|
|
@@ -5819,13 +6222,19 @@ interface ApiHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
5819
6222
|
* @type {Array<string>}
|
|
5820
6223
|
* @memberof ApiHaloRunV1alpha1PostApiListPosts
|
|
5821
6224
|
*/
|
|
5822
|
-
readonly
|
|
6225
|
+
readonly contributors?: Array<string>;
|
|
5823
6226
|
/**
|
|
5824
6227
|
* Size of one page. Zero indicates no limit.
|
|
5825
6228
|
* @type {number}
|
|
5826
6229
|
* @memberof ApiHaloRunV1alpha1PostApiListPosts
|
|
5827
6230
|
*/
|
|
5828
6231
|
readonly size?: number;
|
|
6232
|
+
/**
|
|
6233
|
+
* The page number. Zero indicates no page.
|
|
6234
|
+
* @type {number}
|
|
6235
|
+
* @memberof ApiHaloRunV1alpha1PostApiListPosts
|
|
6236
|
+
*/
|
|
6237
|
+
readonly page?: number;
|
|
5829
6238
|
/**
|
|
5830
6239
|
* Label selector for filtering.
|
|
5831
6240
|
* @type {Array<string>}
|
|
@@ -5838,12 +6247,6 @@ interface ApiHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
5838
6247
|
* @memberof ApiHaloRunV1alpha1PostApiListPosts
|
|
5839
6248
|
*/
|
|
5840
6249
|
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
6250
|
}
|
|
5848
6251
|
/**
|
|
5849
6252
|
* Request parameters for publishPost operation in ApiHaloRunV1alpha1PostApi.
|
|
@@ -5934,13 +6337,13 @@ declare const ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configuration?:
|
|
|
5934
6337
|
* List single pages.
|
|
5935
6338
|
* @param {Array<string>} [contributors]
|
|
5936
6339
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6340
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
5937
6341
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5938
6342
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5939
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
5940
6343
|
* @param {*} [options] Override http request option.
|
|
5941
6344
|
* @throws {RequiredError}
|
|
5942
6345
|
*/
|
|
5943
|
-
listSinglePages: (contributors?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
6346
|
+
listSinglePages: (contributors?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5944
6347
|
/**
|
|
5945
6348
|
* Publish a single page.
|
|
5946
6349
|
* @param {string} name
|
|
@@ -5973,13 +6376,13 @@ declare const ApiHaloRunV1alpha1SinglePageApiFp: (configuration?: Configuration)
|
|
|
5973
6376
|
* List single pages.
|
|
5974
6377
|
* @param {Array<string>} [contributors]
|
|
5975
6378
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6379
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
5976
6380
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5977
6381
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5978
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
5979
6382
|
* @param {*} [options] Override http request option.
|
|
5980
6383
|
* @throws {RequiredError}
|
|
5981
6384
|
*/
|
|
5982
|
-
listSinglePages(contributors?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
6385
|
+
listSinglePages(contributors?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
|
|
5983
6386
|
/**
|
|
5984
6387
|
* Publish a single page.
|
|
5985
6388
|
* @param {string} name
|
|
@@ -6012,13 +6415,13 @@ declare const ApiHaloRunV1alpha1SinglePageApiFactory: (configuration?: Configura
|
|
|
6012
6415
|
* List single pages.
|
|
6013
6416
|
* @param {Array<string>} [contributors]
|
|
6014
6417
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6418
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6015
6419
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6016
6420
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6017
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6018
6421
|
* @param {*} [options] Override http request option.
|
|
6019
6422
|
* @throws {RequiredError}
|
|
6020
6423
|
*/
|
|
6021
|
-
listSinglePages(contributors?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
6424
|
+
listSinglePages(contributors?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedSinglePageList>;
|
|
6022
6425
|
/**
|
|
6023
6426
|
* Publish a single page.
|
|
6024
6427
|
* @param {string} name
|
|
@@ -6066,6 +6469,12 @@ interface ApiHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
6066
6469
|
* @memberof ApiHaloRunV1alpha1SinglePageApiListSinglePages
|
|
6067
6470
|
*/
|
|
6068
6471
|
readonly size?: number;
|
|
6472
|
+
/**
|
|
6473
|
+
* The page number. Zero indicates no page.
|
|
6474
|
+
* @type {number}
|
|
6475
|
+
* @memberof ApiHaloRunV1alpha1SinglePageApiListSinglePages
|
|
6476
|
+
*/
|
|
6477
|
+
readonly page?: number;
|
|
6069
6478
|
/**
|
|
6070
6479
|
* Label selector for filtering.
|
|
6071
6480
|
* @type {Array<string>}
|
|
@@ -6078,12 +6487,6 @@ interface ApiHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
6078
6487
|
* @memberof ApiHaloRunV1alpha1SinglePageApiListSinglePages
|
|
6079
6488
|
*/
|
|
6080
6489
|
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
6490
|
}
|
|
6088
6491
|
/**
|
|
6089
6492
|
* Request parameters for publishSinglePage operation in ApiHaloRunV1alpha1SinglePageApi.
|
|
@@ -8920,16 +9323,16 @@ declare const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configurati
|
|
|
8920
9323
|
*
|
|
8921
9324
|
* @param {string} [policy] Name of policy
|
|
8922
9325
|
* @param {string} [displayName] Display name of attachment
|
|
8923
|
-
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
8924
9326
|
* @param {string} [group] Name of group
|
|
9327
|
+
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
8925
9328
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9329
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8926
9330
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8927
9331
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8928
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8929
9332
|
* @param {*} [options] Override http request option.
|
|
8930
9333
|
* @throws {RequiredError}
|
|
8931
9334
|
*/
|
|
8932
|
-
searchAttachments: (policy?: string, displayName?: string,
|
|
9335
|
+
searchAttachments: (policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8933
9336
|
/**
|
|
8934
9337
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
8935
9338
|
* @param {string} name Name of attachment
|
|
@@ -8988,16 +9391,16 @@ declare const StorageHaloRunV1alpha1AttachmentApiFp: (configuration?: Configurat
|
|
|
8988
9391
|
*
|
|
8989
9392
|
* @param {string} [policy] Name of policy
|
|
8990
9393
|
* @param {string} [displayName] Display name of attachment
|
|
8991
|
-
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
8992
9394
|
* @param {string} [group] Name of group
|
|
9395
|
+
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
8993
9396
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9397
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8994
9398
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8995
9399
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8996
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8997
9400
|
* @param {*} [options] Override http request option.
|
|
8998
9401
|
* @throws {RequiredError}
|
|
8999
9402
|
*/
|
|
9000
|
-
searchAttachments(policy?: string, displayName?: string,
|
|
9403
|
+
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
9404
|
/**
|
|
9002
9405
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
9003
9406
|
* @param {string} name Name of attachment
|
|
@@ -9056,16 +9459,16 @@ declare const StorageHaloRunV1alpha1AttachmentApiFactory: (configuration?: Confi
|
|
|
9056
9459
|
*
|
|
9057
9460
|
* @param {string} [policy] Name of policy
|
|
9058
9461
|
* @param {string} [displayName] Display name of attachment
|
|
9059
|
-
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
9060
9462
|
* @param {string} [group] Name of group
|
|
9463
|
+
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
9061
9464
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9465
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
9062
9466
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9063
9467
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
9064
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
9065
9468
|
* @param {*} [options] Override http request option.
|
|
9066
9469
|
* @throws {RequiredError}
|
|
9067
9470
|
*/
|
|
9068
|
-
searchAttachments(policy?: string, displayName?: string,
|
|
9471
|
+
searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<AttachmentList>;
|
|
9069
9472
|
/**
|
|
9070
9473
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
9071
9474
|
* @param {string} name Name of attachment
|
|
@@ -9173,23 +9576,29 @@ interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
9173
9576
|
*/
|
|
9174
9577
|
readonly displayName?: string;
|
|
9175
9578
|
/**
|
|
9176
|
-
* Name of
|
|
9579
|
+
* Name of group
|
|
9177
9580
|
* @type {string}
|
|
9178
9581
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
9179
9582
|
*/
|
|
9180
|
-
readonly
|
|
9583
|
+
readonly group?: string;
|
|
9181
9584
|
/**
|
|
9182
|
-
* Name of
|
|
9585
|
+
* Name of user who uploaded the attachment
|
|
9183
9586
|
* @type {string}
|
|
9184
9587
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
9185
9588
|
*/
|
|
9186
|
-
readonly
|
|
9589
|
+
readonly uploadedBy?: string;
|
|
9187
9590
|
/**
|
|
9188
9591
|
* Size of one page. Zero indicates no limit.
|
|
9189
9592
|
* @type {number}
|
|
9190
9593
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
9191
9594
|
*/
|
|
9192
9595
|
readonly size?: number;
|
|
9596
|
+
/**
|
|
9597
|
+
* The page number. Zero indicates no page.
|
|
9598
|
+
* @type {number}
|
|
9599
|
+
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
9600
|
+
*/
|
|
9601
|
+
readonly page?: number;
|
|
9193
9602
|
/**
|
|
9194
9603
|
* Label selector for filtering.
|
|
9195
9604
|
* @type {Array<string>}
|
|
@@ -9202,12 +9611,6 @@ interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
9202
9611
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
9203
9612
|
*/
|
|
9204
9613
|
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
9614
|
}
|
|
9212
9615
|
/**
|
|
9213
9616
|
* Request parameters for updatestorageHaloRunV1alpha1Attachment operation in StorageHaloRunV1alpha1AttachmentApi.
|
|
@@ -12594,4 +12997,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
12594
12997
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
12595
12998
|
}
|
|
12596
12999
|
|
|
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 };
|
|
13000
|
+
export { ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, 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, CommentList, CommentOwner, 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, 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 };
|