@halo-dev/api-client 0.0.18 → 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 +241 -127
- package/dist/index.d.ts +712 -282
- package/dist/index.mjs +234 -128
- 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)
|
|
@@ -5379,29 +5596,215 @@ interface UserPermission {
|
|
|
5379
5596
|
}
|
|
5380
5597
|
|
|
5381
5598
|
/**
|
|
5382
|
-
*
|
|
5599
|
+
* ApiHaloRunV1alpha1CommentApi - axios parameter creator
|
|
5383
5600
|
* @export
|
|
5384
5601
|
*/
|
|
5385
|
-
declare const
|
|
5602
|
+
declare const ApiHaloRunV1alpha1CommentApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5386
5603
|
/**
|
|
5387
|
-
*
|
|
5388
|
-
* @param {
|
|
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.
|
|
5389
5619
|
* @param {*} [options] Override http request option.
|
|
5390
5620
|
* @throws {RequiredError}
|
|
5391
5621
|
*/
|
|
5392
|
-
|
|
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) => {
|
|
5393
5629
|
/**
|
|
5394
|
-
*
|
|
5395
|
-
* @param {
|
|
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.
|
|
5396
5645
|
* @param {*} [options] Override http request option.
|
|
5397
5646
|
* @throws {RequiredError}
|
|
5398
5647
|
*/
|
|
5399
|
-
|
|
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) => {
|
|
5400
5655
|
/**
|
|
5401
|
-
*
|
|
5402
|
-
* @param {
|
|
5403
|
-
* @param {
|
|
5404
|
-
* @param {
|
|
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
|
+
|
|
5784
|
+
/**
|
|
5785
|
+
* ApiHaloRunV1alpha1ContentApi - axios parameter creator
|
|
5786
|
+
* @export
|
|
5787
|
+
*/
|
|
5788
|
+
declare const ApiHaloRunV1alpha1ContentApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5789
|
+
/**
|
|
5790
|
+
* Draft a snapshot content.
|
|
5791
|
+
* @param {ContentRequest} contentRequest
|
|
5792
|
+
* @param {*} [options] Override http request option.
|
|
5793
|
+
* @throws {RequiredError}
|
|
5794
|
+
*/
|
|
5795
|
+
draftSnapshotContent: (contentRequest: ContentRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5796
|
+
/**
|
|
5797
|
+
* Obtain a snapshot content.
|
|
5798
|
+
* @param {string} snapshotName
|
|
5799
|
+
* @param {*} [options] Override http request option.
|
|
5800
|
+
* @throws {RequiredError}
|
|
5801
|
+
*/
|
|
5802
|
+
obtainSnapshotContent: (snapshotName: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5803
|
+
/**
|
|
5804
|
+
* Publish a snapshot content.
|
|
5805
|
+
* @param {string} snapshotName
|
|
5806
|
+
* @param {SubjectRef} subjectRef
|
|
5807
|
+
* @param {*} [options] Override http request option.
|
|
5405
5808
|
* @throws {RequiredError}
|
|
5406
5809
|
*/
|
|
5407
5810
|
publishSnapshotContent: (snapshotName: string, subjectRef: SubjectRef, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -5672,37 +6075,19 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
|
|
|
5672
6075
|
* @throws {RequiredError}
|
|
5673
6076
|
*/
|
|
5674
6077
|
draftPost: (postRequest: PostRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5675
|
-
/**
|
|
5676
|
-
* Draft a single page.
|
|
5677
|
-
* @param {SinglePageRequest} singlePageRequest
|
|
5678
|
-
* @param {*} [options] Override http request option.
|
|
5679
|
-
* @throws {RequiredError}
|
|
5680
|
-
*/
|
|
5681
|
-
draftSinglePage: (singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5682
6078
|
/**
|
|
5683
6079
|
* List posts.
|
|
5684
|
-
* @param {Array<string>} [contributors]
|
|
5685
|
-
* @param {Array<string>} [categories]
|
|
5686
6080
|
* @param {Array<string>} [tags]
|
|
5687
|
-
* @param {
|
|
5688
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5689
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5690
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
5691
|
-
* @param {*} [options] Override http request option.
|
|
5692
|
-
* @throws {RequiredError}
|
|
5693
|
-
*/
|
|
5694
|
-
listPosts: (contributors?: Array<string>, categories?: Array<string>, tags?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5695
|
-
/**
|
|
5696
|
-
* List single pages.
|
|
6081
|
+
* @param {Array<string>} [categories]
|
|
5697
6082
|
* @param {Array<string>} [contributors]
|
|
5698
6083
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6084
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
5699
6085
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5700
6086
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5701
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
5702
6087
|
* @param {*} [options] Override http request option.
|
|
5703
6088
|
* @throws {RequiredError}
|
|
5704
6089
|
*/
|
|
5705
|
-
|
|
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>;
|
|
5706
6091
|
/**
|
|
5707
6092
|
* Publish a post.
|
|
5708
6093
|
* @param {string} name
|
|
@@ -5710,13 +6095,6 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
|
|
|
5710
6095
|
* @throws {RequiredError}
|
|
5711
6096
|
*/
|
|
5712
6097
|
publishPost: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5713
|
-
/**
|
|
5714
|
-
* Publish a single page.
|
|
5715
|
-
* @param {string} name
|
|
5716
|
-
* @param {*} [options] Override http request option.
|
|
5717
|
-
* @throws {RequiredError}
|
|
5718
|
-
*/
|
|
5719
|
-
publishSinglePage: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5720
6098
|
/**
|
|
5721
6099
|
* Update a post.
|
|
5722
6100
|
* @param {string} name
|
|
@@ -5725,14 +6103,6 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
|
|
|
5725
6103
|
* @throws {RequiredError}
|
|
5726
6104
|
*/
|
|
5727
6105
|
updateDraftPost: (name: string, postRequest: PostRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5728
|
-
/**
|
|
5729
|
-
* Update a single page.
|
|
5730
|
-
* @param {string} name
|
|
5731
|
-
* @param {SinglePageRequest} singlePageRequest
|
|
5732
|
-
* @param {*} [options] Override http request option.
|
|
5733
|
-
* @throws {RequiredError}
|
|
5734
|
-
*/
|
|
5735
|
-
updateDraftSinglePage: (name: string, singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5736
6106
|
};
|
|
5737
6107
|
/**
|
|
5738
6108
|
* ApiHaloRunV1alpha1PostApi - functional programming interface
|
|
@@ -5746,37 +6116,19 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
|
|
|
5746
6116
|
* @throws {RequiredError}
|
|
5747
6117
|
*/
|
|
5748
6118
|
draftPost(postRequest: PostRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
|
|
5749
|
-
/**
|
|
5750
|
-
* Draft a single page.
|
|
5751
|
-
* @param {SinglePageRequest} singlePageRequest
|
|
5752
|
-
* @param {*} [options] Override http request option.
|
|
5753
|
-
* @throws {RequiredError}
|
|
5754
|
-
*/
|
|
5755
|
-
draftSinglePage(singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
|
|
5756
6119
|
/**
|
|
5757
6120
|
* List posts.
|
|
5758
|
-
* @param {Array<string>} [contributors]
|
|
5759
|
-
* @param {Array<string>} [categories]
|
|
5760
6121
|
* @param {Array<string>} [tags]
|
|
5761
|
-
* @param {
|
|
5762
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5763
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5764
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
5765
|
-
* @param {*} [options] Override http request option.
|
|
5766
|
-
* @throws {RequiredError}
|
|
5767
|
-
*/
|
|
5768
|
-
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>>;
|
|
5769
|
-
/**
|
|
5770
|
-
* List single pages.
|
|
6122
|
+
* @param {Array<string>} [categories]
|
|
5771
6123
|
* @param {Array<string>} [contributors]
|
|
5772
6124
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6125
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
5773
6126
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5774
6127
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5775
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
5776
6128
|
* @param {*} [options] Override http request option.
|
|
5777
6129
|
* @throws {RequiredError}
|
|
5778
6130
|
*/
|
|
5779
|
-
|
|
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>>;
|
|
5780
6132
|
/**
|
|
5781
6133
|
* Publish a post.
|
|
5782
6134
|
* @param {string} name
|
|
@@ -5784,13 +6136,6 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
|
|
|
5784
6136
|
* @throws {RequiredError}
|
|
5785
6137
|
*/
|
|
5786
6138
|
publishPost(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
|
|
5787
|
-
/**
|
|
5788
|
-
* Publish a single page.
|
|
5789
|
-
* @param {string} name
|
|
5790
|
-
* @param {*} [options] Override http request option.
|
|
5791
|
-
* @throws {RequiredError}
|
|
5792
|
-
*/
|
|
5793
|
-
publishSinglePage(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
|
|
5794
6139
|
/**
|
|
5795
6140
|
* Update a post.
|
|
5796
6141
|
* @param {string} name
|
|
@@ -5799,14 +6144,6 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
|
|
|
5799
6144
|
* @throws {RequiredError}
|
|
5800
6145
|
*/
|
|
5801
6146
|
updateDraftPost(name: string, postRequest: PostRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
|
|
5802
|
-
/**
|
|
5803
|
-
* Update a single page.
|
|
5804
|
-
* @param {string} name
|
|
5805
|
-
* @param {SinglePageRequest} singlePageRequest
|
|
5806
|
-
* @param {*} [options] Override http request option.
|
|
5807
|
-
* @throws {RequiredError}
|
|
5808
|
-
*/
|
|
5809
|
-
updateDraftSinglePage(name: string, singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
|
|
5810
6147
|
};
|
|
5811
6148
|
/**
|
|
5812
6149
|
* ApiHaloRunV1alpha1PostApi - factory interface
|
|
@@ -5820,37 +6157,19 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
|
|
|
5820
6157
|
* @throws {RequiredError}
|
|
5821
6158
|
*/
|
|
5822
6159
|
draftPost(postRequest: PostRequest, options?: any): AxiosPromise<Post>;
|
|
5823
|
-
/**
|
|
5824
|
-
* Draft a single page.
|
|
5825
|
-
* @param {SinglePageRequest} singlePageRequest
|
|
5826
|
-
* @param {*} [options] Override http request option.
|
|
5827
|
-
* @throws {RequiredError}
|
|
5828
|
-
*/
|
|
5829
|
-
draftSinglePage(singlePageRequest: SinglePageRequest, options?: any): AxiosPromise<SinglePage>;
|
|
5830
6160
|
/**
|
|
5831
6161
|
* List posts.
|
|
5832
|
-
* @param {Array<string>} [contributors]
|
|
5833
|
-
* @param {Array<string>} [categories]
|
|
5834
6162
|
* @param {Array<string>} [tags]
|
|
5835
|
-
* @param {
|
|
5836
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5837
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5838
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
5839
|
-
* @param {*} [options] Override http request option.
|
|
5840
|
-
* @throws {RequiredError}
|
|
5841
|
-
*/
|
|
5842
|
-
listPosts(contributors?: Array<string>, categories?: Array<string>, tags?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedPostList>;
|
|
5843
|
-
/**
|
|
5844
|
-
* List single pages.
|
|
6163
|
+
* @param {Array<string>} [categories]
|
|
5845
6164
|
* @param {Array<string>} [contributors]
|
|
5846
6165
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6166
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
5847
6167
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5848
6168
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5849
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
5850
6169
|
* @param {*} [options] Override http request option.
|
|
5851
6170
|
* @throws {RequiredError}
|
|
5852
6171
|
*/
|
|
5853
|
-
|
|
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>;
|
|
5854
6173
|
/**
|
|
5855
6174
|
* Publish a post.
|
|
5856
6175
|
* @param {string} name
|
|
@@ -5858,13 +6177,6 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
|
|
|
5858
6177
|
* @throws {RequiredError}
|
|
5859
6178
|
*/
|
|
5860
6179
|
publishPost(name: string, options?: any): AxiosPromise<Post>;
|
|
5861
|
-
/**
|
|
5862
|
-
* Publish a single page.
|
|
5863
|
-
* @param {string} name
|
|
5864
|
-
* @param {*} [options] Override http request option.
|
|
5865
|
-
* @throws {RequiredError}
|
|
5866
|
-
*/
|
|
5867
|
-
publishSinglePage(name: string, options?: any): AxiosPromise<SinglePage>;
|
|
5868
6180
|
/**
|
|
5869
6181
|
* Update a post.
|
|
5870
6182
|
* @param {string} name
|
|
@@ -5873,14 +6185,6 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
|
|
|
5873
6185
|
* @throws {RequiredError}
|
|
5874
6186
|
*/
|
|
5875
6187
|
updateDraftPost(name: string, postRequest: PostRequest, options?: any): AxiosPromise<Post>;
|
|
5876
|
-
/**
|
|
5877
|
-
* Update a single page.
|
|
5878
|
-
* @param {string} name
|
|
5879
|
-
* @param {SinglePageRequest} singlePageRequest
|
|
5880
|
-
* @param {*} [options] Override http request option.
|
|
5881
|
-
* @throws {RequiredError}
|
|
5882
|
-
*/
|
|
5883
|
-
updateDraftSinglePage(name: string, singlePageRequest: SinglePageRequest, options?: any): AxiosPromise<SinglePage>;
|
|
5884
6188
|
};
|
|
5885
6189
|
/**
|
|
5886
6190
|
* Request parameters for draftPost operation in ApiHaloRunV1alpha1PostApi.
|
|
@@ -5895,19 +6199,6 @@ interface ApiHaloRunV1alpha1PostApiDraftPostRequest {
|
|
|
5895
6199
|
*/
|
|
5896
6200
|
readonly postRequest: PostRequest;
|
|
5897
6201
|
}
|
|
5898
|
-
/**
|
|
5899
|
-
* Request parameters for draftSinglePage operation in ApiHaloRunV1alpha1PostApi.
|
|
5900
|
-
* @export
|
|
5901
|
-
* @interface ApiHaloRunV1alpha1PostApiDraftSinglePageRequest
|
|
5902
|
-
*/
|
|
5903
|
-
interface ApiHaloRunV1alpha1PostApiDraftSinglePageRequest {
|
|
5904
|
-
/**
|
|
5905
|
-
*
|
|
5906
|
-
* @type {SinglePageRequest}
|
|
5907
|
-
* @memberof ApiHaloRunV1alpha1PostApiDraftSinglePage
|
|
5908
|
-
*/
|
|
5909
|
-
readonly singlePageRequest: SinglePageRequest;
|
|
5910
|
-
}
|
|
5911
6202
|
/**
|
|
5912
6203
|
* Request parameters for listPosts operation in ApiHaloRunV1alpha1PostApi.
|
|
5913
6204
|
* @export
|
|
@@ -5919,7 +6210,7 @@ interface ApiHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
5919
6210
|
* @type {Array<string>}
|
|
5920
6211
|
* @memberof ApiHaloRunV1alpha1PostApiListPosts
|
|
5921
6212
|
*/
|
|
5922
|
-
readonly
|
|
6213
|
+
readonly tags?: Array<string>;
|
|
5923
6214
|
/**
|
|
5924
6215
|
*
|
|
5925
6216
|
* @type {Array<string>}
|
|
@@ -5931,68 +6222,31 @@ interface ApiHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
5931
6222
|
* @type {Array<string>}
|
|
5932
6223
|
* @memberof ApiHaloRunV1alpha1PostApiListPosts
|
|
5933
6224
|
*/
|
|
5934
|
-
readonly
|
|
6225
|
+
readonly contributors?: Array<string>;
|
|
5935
6226
|
/**
|
|
5936
6227
|
* Size of one page. Zero indicates no limit.
|
|
5937
6228
|
* @type {number}
|
|
5938
6229
|
* @memberof ApiHaloRunV1alpha1PostApiListPosts
|
|
5939
6230
|
*/
|
|
5940
6231
|
readonly size?: number;
|
|
5941
|
-
/**
|
|
5942
|
-
* Label selector for filtering.
|
|
5943
|
-
* @type {Array<string>}
|
|
5944
|
-
* @memberof ApiHaloRunV1alpha1PostApiListPosts
|
|
5945
|
-
*/
|
|
5946
|
-
readonly labelSelector?: Array<string>;
|
|
5947
|
-
/**
|
|
5948
|
-
* Field selector for filtering.
|
|
5949
|
-
* @type {Array<string>}
|
|
5950
|
-
* @memberof ApiHaloRunV1alpha1PostApiListPosts
|
|
5951
|
-
*/
|
|
5952
|
-
readonly fieldSelector?: Array<string>;
|
|
5953
6232
|
/**
|
|
5954
6233
|
* The page number. Zero indicates no page.
|
|
5955
6234
|
* @type {number}
|
|
5956
6235
|
* @memberof ApiHaloRunV1alpha1PostApiListPosts
|
|
5957
6236
|
*/
|
|
5958
6237
|
readonly page?: number;
|
|
5959
|
-
}
|
|
5960
|
-
/**
|
|
5961
|
-
* Request parameters for listSinglePages operation in ApiHaloRunV1alpha1PostApi.
|
|
5962
|
-
* @export
|
|
5963
|
-
* @interface ApiHaloRunV1alpha1PostApiListSinglePagesRequest
|
|
5964
|
-
*/
|
|
5965
|
-
interface ApiHaloRunV1alpha1PostApiListSinglePagesRequest {
|
|
5966
|
-
/**
|
|
5967
|
-
*
|
|
5968
|
-
* @type {Array<string>}
|
|
5969
|
-
* @memberof ApiHaloRunV1alpha1PostApiListSinglePages
|
|
5970
|
-
*/
|
|
5971
|
-
readonly contributors?: Array<string>;
|
|
5972
|
-
/**
|
|
5973
|
-
* Size of one page. Zero indicates no limit.
|
|
5974
|
-
* @type {number}
|
|
5975
|
-
* @memberof ApiHaloRunV1alpha1PostApiListSinglePages
|
|
5976
|
-
*/
|
|
5977
|
-
readonly size?: number;
|
|
5978
6238
|
/**
|
|
5979
6239
|
* Label selector for filtering.
|
|
5980
6240
|
* @type {Array<string>}
|
|
5981
|
-
* @memberof
|
|
6241
|
+
* @memberof ApiHaloRunV1alpha1PostApiListPosts
|
|
5982
6242
|
*/
|
|
5983
6243
|
readonly labelSelector?: Array<string>;
|
|
5984
6244
|
/**
|
|
5985
6245
|
* Field selector for filtering.
|
|
5986
6246
|
* @type {Array<string>}
|
|
5987
|
-
* @memberof
|
|
6247
|
+
* @memberof ApiHaloRunV1alpha1PostApiListPosts
|
|
5988
6248
|
*/
|
|
5989
6249
|
readonly fieldSelector?: Array<string>;
|
|
5990
|
-
/**
|
|
5991
|
-
* The page number. Zero indicates no page.
|
|
5992
|
-
* @type {number}
|
|
5993
|
-
* @memberof ApiHaloRunV1alpha1PostApiListSinglePages
|
|
5994
|
-
*/
|
|
5995
|
-
readonly page?: number;
|
|
5996
6250
|
}
|
|
5997
6251
|
/**
|
|
5998
6252
|
* Request parameters for publishPost operation in ApiHaloRunV1alpha1PostApi.
|
|
@@ -6007,19 +6261,6 @@ interface ApiHaloRunV1alpha1PostApiPublishPostRequest {
|
|
|
6007
6261
|
*/
|
|
6008
6262
|
readonly name: string;
|
|
6009
6263
|
}
|
|
6010
|
-
/**
|
|
6011
|
-
* Request parameters for publishSinglePage operation in ApiHaloRunV1alpha1PostApi.
|
|
6012
|
-
* @export
|
|
6013
|
-
* @interface ApiHaloRunV1alpha1PostApiPublishSinglePageRequest
|
|
6014
|
-
*/
|
|
6015
|
-
interface ApiHaloRunV1alpha1PostApiPublishSinglePageRequest {
|
|
6016
|
-
/**
|
|
6017
|
-
*
|
|
6018
|
-
* @type {string}
|
|
6019
|
-
* @memberof ApiHaloRunV1alpha1PostApiPublishSinglePage
|
|
6020
|
-
*/
|
|
6021
|
-
readonly name: string;
|
|
6022
|
-
}
|
|
6023
6264
|
/**
|
|
6024
6265
|
* Request parameters for updateDraftPost operation in ApiHaloRunV1alpha1PostApi.
|
|
6025
6266
|
* @export
|
|
@@ -6039,25 +6280,6 @@ interface ApiHaloRunV1alpha1PostApiUpdateDraftPostRequest {
|
|
|
6039
6280
|
*/
|
|
6040
6281
|
readonly postRequest: PostRequest;
|
|
6041
6282
|
}
|
|
6042
|
-
/**
|
|
6043
|
-
* Request parameters for updateDraftSinglePage operation in ApiHaloRunV1alpha1PostApi.
|
|
6044
|
-
* @export
|
|
6045
|
-
* @interface ApiHaloRunV1alpha1PostApiUpdateDraftSinglePageRequest
|
|
6046
|
-
*/
|
|
6047
|
-
interface ApiHaloRunV1alpha1PostApiUpdateDraftSinglePageRequest {
|
|
6048
|
-
/**
|
|
6049
|
-
*
|
|
6050
|
-
* @type {string}
|
|
6051
|
-
* @memberof ApiHaloRunV1alpha1PostApiUpdateDraftSinglePage
|
|
6052
|
-
*/
|
|
6053
|
-
readonly name: string;
|
|
6054
|
-
/**
|
|
6055
|
-
*
|
|
6056
|
-
* @type {SinglePageRequest}
|
|
6057
|
-
* @memberof ApiHaloRunV1alpha1PostApiUpdateDraftSinglePage
|
|
6058
|
-
*/
|
|
6059
|
-
readonly singlePageRequest: SinglePageRequest;
|
|
6060
|
-
}
|
|
6061
6283
|
/**
|
|
6062
6284
|
* ApiHaloRunV1alpha1PostApi - object-oriented interface
|
|
6063
6285
|
* @export
|
|
@@ -6074,61 +6296,269 @@ declare class ApiHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
6074
6296
|
*/
|
|
6075
6297
|
draftPost(requestParameters: ApiHaloRunV1alpha1PostApiDraftPostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
|
|
6076
6298
|
/**
|
|
6077
|
-
*
|
|
6078
|
-
* @param {
|
|
6299
|
+
* List posts.
|
|
6300
|
+
* @param {ApiHaloRunV1alpha1PostApiListPostsRequest} requestParameters Request parameters.
|
|
6079
6301
|
* @param {*} [options] Override http request option.
|
|
6080
6302
|
* @throws {RequiredError}
|
|
6081
6303
|
* @memberof ApiHaloRunV1alpha1PostApi
|
|
6082
6304
|
*/
|
|
6083
|
-
|
|
6305
|
+
listPosts(requestParameters?: ApiHaloRunV1alpha1PostApiListPostsRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ListedPostList, any>>;
|
|
6084
6306
|
/**
|
|
6085
|
-
*
|
|
6086
|
-
* @param {
|
|
6307
|
+
* Publish a post.
|
|
6308
|
+
* @param {ApiHaloRunV1alpha1PostApiPublishPostRequest} requestParameters Request parameters.
|
|
6087
6309
|
* @param {*} [options] Override http request option.
|
|
6088
6310
|
* @throws {RequiredError}
|
|
6089
6311
|
* @memberof ApiHaloRunV1alpha1PostApi
|
|
6090
6312
|
*/
|
|
6091
|
-
|
|
6313
|
+
publishPost(requestParameters: ApiHaloRunV1alpha1PostApiPublishPostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
|
|
6092
6314
|
/**
|
|
6093
|
-
*
|
|
6094
|
-
* @param {
|
|
6315
|
+
* Update a post.
|
|
6316
|
+
* @param {ApiHaloRunV1alpha1PostApiUpdateDraftPostRequest} requestParameters Request parameters.
|
|
6095
6317
|
* @param {*} [options] Override http request option.
|
|
6096
6318
|
* @throws {RequiredError}
|
|
6097
6319
|
* @memberof ApiHaloRunV1alpha1PostApi
|
|
6098
6320
|
*/
|
|
6099
|
-
|
|
6321
|
+
updateDraftPost(requestParameters: ApiHaloRunV1alpha1PostApiUpdateDraftPostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
|
|
6322
|
+
}
|
|
6323
|
+
|
|
6324
|
+
/**
|
|
6325
|
+
* ApiHaloRunV1alpha1SinglePageApi - axios parameter creator
|
|
6326
|
+
* @export
|
|
6327
|
+
*/
|
|
6328
|
+
declare const ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6100
6329
|
/**
|
|
6101
|
-
*
|
|
6102
|
-
* @param {
|
|
6330
|
+
* Draft a single page.
|
|
6331
|
+
* @param {SinglePageRequest} singlePageRequest
|
|
6103
6332
|
* @param {*} [options] Override http request option.
|
|
6104
6333
|
* @throws {RequiredError}
|
|
6105
|
-
* @memberof ApiHaloRunV1alpha1PostApi
|
|
6106
6334
|
*/
|
|
6107
|
-
|
|
6335
|
+
draftSinglePage: (singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6336
|
+
/**
|
|
6337
|
+
* List single pages.
|
|
6338
|
+
* @param {Array<string>} [contributors]
|
|
6339
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6340
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6341
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6342
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6343
|
+
* @param {*} [options] Override http request option.
|
|
6344
|
+
* @throws {RequiredError}
|
|
6345
|
+
*/
|
|
6346
|
+
listSinglePages: (contributors?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6108
6347
|
/**
|
|
6109
6348
|
* Publish a single page.
|
|
6110
|
-
* @param {
|
|
6349
|
+
* @param {string} name
|
|
6111
6350
|
* @param {*} [options] Override http request option.
|
|
6112
6351
|
* @throws {RequiredError}
|
|
6113
|
-
* @memberof ApiHaloRunV1alpha1PostApi
|
|
6114
6352
|
*/
|
|
6115
|
-
publishSinglePage(
|
|
6353
|
+
publishSinglePage: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6116
6354
|
/**
|
|
6117
|
-
* Update a
|
|
6118
|
-
* @param {
|
|
6355
|
+
* Update a single page.
|
|
6356
|
+
* @param {string} name
|
|
6357
|
+
* @param {SinglePageRequest} singlePageRequest
|
|
6119
6358
|
* @param {*} [options] Override http request option.
|
|
6120
6359
|
* @throws {RequiredError}
|
|
6121
|
-
* @memberof ApiHaloRunV1alpha1PostApi
|
|
6122
6360
|
*/
|
|
6123
|
-
|
|
6361
|
+
updateDraftSinglePage: (name: string, singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6362
|
+
};
|
|
6363
|
+
/**
|
|
6364
|
+
* ApiHaloRunV1alpha1SinglePageApi - functional programming interface
|
|
6365
|
+
* @export
|
|
6366
|
+
*/
|
|
6367
|
+
declare const ApiHaloRunV1alpha1SinglePageApiFp: (configuration?: Configuration) => {
|
|
6368
|
+
/**
|
|
6369
|
+
* Draft a single page.
|
|
6370
|
+
* @param {SinglePageRequest} singlePageRequest
|
|
6371
|
+
* @param {*} [options] Override http request option.
|
|
6372
|
+
* @throws {RequiredError}
|
|
6373
|
+
*/
|
|
6374
|
+
draftSinglePage(singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
|
|
6375
|
+
/**
|
|
6376
|
+
* List single pages.
|
|
6377
|
+
* @param {Array<string>} [contributors]
|
|
6378
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6379
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6380
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6381
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6382
|
+
* @param {*} [options] Override http request option.
|
|
6383
|
+
* @throws {RequiredError}
|
|
6384
|
+
*/
|
|
6385
|
+
listSinglePages(contributors?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
|
|
6386
|
+
/**
|
|
6387
|
+
* Publish a single page.
|
|
6388
|
+
* @param {string} name
|
|
6389
|
+
* @param {*} [options] Override http request option.
|
|
6390
|
+
* @throws {RequiredError}
|
|
6391
|
+
*/
|
|
6392
|
+
publishSinglePage(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
|
|
6124
6393
|
/**
|
|
6125
6394
|
* Update a single page.
|
|
6126
|
-
* @param {
|
|
6395
|
+
* @param {string} name
|
|
6396
|
+
* @param {SinglePageRequest} singlePageRequest
|
|
6127
6397
|
* @param {*} [options] Override http request option.
|
|
6128
6398
|
* @throws {RequiredError}
|
|
6129
|
-
* @memberof ApiHaloRunV1alpha1PostApi
|
|
6130
6399
|
*/
|
|
6131
|
-
updateDraftSinglePage(
|
|
6400
|
+
updateDraftSinglePage(name: string, singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
|
|
6401
|
+
};
|
|
6402
|
+
/**
|
|
6403
|
+
* ApiHaloRunV1alpha1SinglePageApi - factory interface
|
|
6404
|
+
* @export
|
|
6405
|
+
*/
|
|
6406
|
+
declare const ApiHaloRunV1alpha1SinglePageApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6407
|
+
/**
|
|
6408
|
+
* Draft a single page.
|
|
6409
|
+
* @param {SinglePageRequest} singlePageRequest
|
|
6410
|
+
* @param {*} [options] Override http request option.
|
|
6411
|
+
* @throws {RequiredError}
|
|
6412
|
+
*/
|
|
6413
|
+
draftSinglePage(singlePageRequest: SinglePageRequest, options?: any): AxiosPromise<SinglePage>;
|
|
6414
|
+
/**
|
|
6415
|
+
* List single pages.
|
|
6416
|
+
* @param {Array<string>} [contributors]
|
|
6417
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6418
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6419
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6420
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6421
|
+
* @param {*} [options] Override http request option.
|
|
6422
|
+
* @throws {RequiredError}
|
|
6423
|
+
*/
|
|
6424
|
+
listSinglePages(contributors?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedSinglePageList>;
|
|
6425
|
+
/**
|
|
6426
|
+
* Publish a single page.
|
|
6427
|
+
* @param {string} name
|
|
6428
|
+
* @param {*} [options] Override http request option.
|
|
6429
|
+
* @throws {RequiredError}
|
|
6430
|
+
*/
|
|
6431
|
+
publishSinglePage(name: string, options?: any): AxiosPromise<SinglePage>;
|
|
6432
|
+
/**
|
|
6433
|
+
* Update a single page.
|
|
6434
|
+
* @param {string} name
|
|
6435
|
+
* @param {SinglePageRequest} singlePageRequest
|
|
6436
|
+
* @param {*} [options] Override http request option.
|
|
6437
|
+
* @throws {RequiredError}
|
|
6438
|
+
*/
|
|
6439
|
+
updateDraftSinglePage(name: string, singlePageRequest: SinglePageRequest, options?: any): AxiosPromise<SinglePage>;
|
|
6440
|
+
};
|
|
6441
|
+
/**
|
|
6442
|
+
* Request parameters for draftSinglePage operation in ApiHaloRunV1alpha1SinglePageApi.
|
|
6443
|
+
* @export
|
|
6444
|
+
* @interface ApiHaloRunV1alpha1SinglePageApiDraftSinglePageRequest
|
|
6445
|
+
*/
|
|
6446
|
+
interface ApiHaloRunV1alpha1SinglePageApiDraftSinglePageRequest {
|
|
6447
|
+
/**
|
|
6448
|
+
*
|
|
6449
|
+
* @type {SinglePageRequest}
|
|
6450
|
+
* @memberof ApiHaloRunV1alpha1SinglePageApiDraftSinglePage
|
|
6451
|
+
*/
|
|
6452
|
+
readonly singlePageRequest: SinglePageRequest;
|
|
6453
|
+
}
|
|
6454
|
+
/**
|
|
6455
|
+
* Request parameters for listSinglePages operation in ApiHaloRunV1alpha1SinglePageApi.
|
|
6456
|
+
* @export
|
|
6457
|
+
* @interface ApiHaloRunV1alpha1SinglePageApiListSinglePagesRequest
|
|
6458
|
+
*/
|
|
6459
|
+
interface ApiHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
6460
|
+
/**
|
|
6461
|
+
*
|
|
6462
|
+
* @type {Array<string>}
|
|
6463
|
+
* @memberof ApiHaloRunV1alpha1SinglePageApiListSinglePages
|
|
6464
|
+
*/
|
|
6465
|
+
readonly contributors?: Array<string>;
|
|
6466
|
+
/**
|
|
6467
|
+
* Size of one page. Zero indicates no limit.
|
|
6468
|
+
* @type {number}
|
|
6469
|
+
* @memberof ApiHaloRunV1alpha1SinglePageApiListSinglePages
|
|
6470
|
+
*/
|
|
6471
|
+
readonly size?: number;
|
|
6472
|
+
/**
|
|
6473
|
+
* The page number. Zero indicates no page.
|
|
6474
|
+
* @type {number}
|
|
6475
|
+
* @memberof ApiHaloRunV1alpha1SinglePageApiListSinglePages
|
|
6476
|
+
*/
|
|
6477
|
+
readonly page?: number;
|
|
6478
|
+
/**
|
|
6479
|
+
* Label selector for filtering.
|
|
6480
|
+
* @type {Array<string>}
|
|
6481
|
+
* @memberof ApiHaloRunV1alpha1SinglePageApiListSinglePages
|
|
6482
|
+
*/
|
|
6483
|
+
readonly labelSelector?: Array<string>;
|
|
6484
|
+
/**
|
|
6485
|
+
* Field selector for filtering.
|
|
6486
|
+
* @type {Array<string>}
|
|
6487
|
+
* @memberof ApiHaloRunV1alpha1SinglePageApiListSinglePages
|
|
6488
|
+
*/
|
|
6489
|
+
readonly fieldSelector?: Array<string>;
|
|
6490
|
+
}
|
|
6491
|
+
/**
|
|
6492
|
+
* Request parameters for publishSinglePage operation in ApiHaloRunV1alpha1SinglePageApi.
|
|
6493
|
+
* @export
|
|
6494
|
+
* @interface ApiHaloRunV1alpha1SinglePageApiPublishSinglePageRequest
|
|
6495
|
+
*/
|
|
6496
|
+
interface ApiHaloRunV1alpha1SinglePageApiPublishSinglePageRequest {
|
|
6497
|
+
/**
|
|
6498
|
+
*
|
|
6499
|
+
* @type {string}
|
|
6500
|
+
* @memberof ApiHaloRunV1alpha1SinglePageApiPublishSinglePage
|
|
6501
|
+
*/
|
|
6502
|
+
readonly name: string;
|
|
6503
|
+
}
|
|
6504
|
+
/**
|
|
6505
|
+
* Request parameters for updateDraftSinglePage operation in ApiHaloRunV1alpha1SinglePageApi.
|
|
6506
|
+
* @export
|
|
6507
|
+
* @interface ApiHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest
|
|
6508
|
+
*/
|
|
6509
|
+
interface ApiHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest {
|
|
6510
|
+
/**
|
|
6511
|
+
*
|
|
6512
|
+
* @type {string}
|
|
6513
|
+
* @memberof ApiHaloRunV1alpha1SinglePageApiUpdateDraftSinglePage
|
|
6514
|
+
*/
|
|
6515
|
+
readonly name: string;
|
|
6516
|
+
/**
|
|
6517
|
+
*
|
|
6518
|
+
* @type {SinglePageRequest}
|
|
6519
|
+
* @memberof ApiHaloRunV1alpha1SinglePageApiUpdateDraftSinglePage
|
|
6520
|
+
*/
|
|
6521
|
+
readonly singlePageRequest: SinglePageRequest;
|
|
6522
|
+
}
|
|
6523
|
+
/**
|
|
6524
|
+
* ApiHaloRunV1alpha1SinglePageApi - object-oriented interface
|
|
6525
|
+
* @export
|
|
6526
|
+
* @class ApiHaloRunV1alpha1SinglePageApi
|
|
6527
|
+
* @extends {BaseAPI}
|
|
6528
|
+
*/
|
|
6529
|
+
declare class ApiHaloRunV1alpha1SinglePageApi extends BaseAPI {
|
|
6530
|
+
/**
|
|
6531
|
+
* Draft a single page.
|
|
6532
|
+
* @param {ApiHaloRunV1alpha1SinglePageApiDraftSinglePageRequest} requestParameters Request parameters.
|
|
6533
|
+
* @param {*} [options] Override http request option.
|
|
6534
|
+
* @throws {RequiredError}
|
|
6535
|
+
* @memberof ApiHaloRunV1alpha1SinglePageApi
|
|
6536
|
+
*/
|
|
6537
|
+
draftSinglePage(requestParameters: ApiHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
|
|
6538
|
+
/**
|
|
6539
|
+
* List single pages.
|
|
6540
|
+
* @param {ApiHaloRunV1alpha1SinglePageApiListSinglePagesRequest} requestParameters Request parameters.
|
|
6541
|
+
* @param {*} [options] Override http request option.
|
|
6542
|
+
* @throws {RequiredError}
|
|
6543
|
+
* @memberof ApiHaloRunV1alpha1SinglePageApi
|
|
6544
|
+
*/
|
|
6545
|
+
listSinglePages(requestParameters?: ApiHaloRunV1alpha1SinglePageApiListSinglePagesRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ListedSinglePageList, any>>;
|
|
6546
|
+
/**
|
|
6547
|
+
* Publish a single page.
|
|
6548
|
+
* @param {ApiHaloRunV1alpha1SinglePageApiPublishSinglePageRequest} requestParameters Request parameters.
|
|
6549
|
+
* @param {*} [options] Override http request option.
|
|
6550
|
+
* @throws {RequiredError}
|
|
6551
|
+
* @memberof ApiHaloRunV1alpha1SinglePageApi
|
|
6552
|
+
*/
|
|
6553
|
+
publishSinglePage(requestParameters: ApiHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
|
|
6554
|
+
/**
|
|
6555
|
+
* Update a single page.
|
|
6556
|
+
* @param {ApiHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest} requestParameters Request parameters.
|
|
6557
|
+
* @param {*} [options] Override http request option.
|
|
6558
|
+
* @throws {RequiredError}
|
|
6559
|
+
* @memberof ApiHaloRunV1alpha1SinglePageApi
|
|
6560
|
+
*/
|
|
6561
|
+
updateDraftSinglePage(requestParameters: ApiHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
|
|
6132
6562
|
}
|
|
6133
6563
|
|
|
6134
6564
|
/**
|
|
@@ -8893,16 +9323,16 @@ declare const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configurati
|
|
|
8893
9323
|
*
|
|
8894
9324
|
* @param {string} [policy] Name of policy
|
|
8895
9325
|
* @param {string} [displayName] Display name of attachment
|
|
8896
|
-
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
8897
9326
|
* @param {string} [group] Name of group
|
|
9327
|
+
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
8898
9328
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9329
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8899
9330
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8900
9331
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8901
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8902
9332
|
* @param {*} [options] Override http request option.
|
|
8903
9333
|
* @throws {RequiredError}
|
|
8904
9334
|
*/
|
|
8905
|
-
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>;
|
|
8906
9336
|
/**
|
|
8907
9337
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
8908
9338
|
* @param {string} name Name of attachment
|
|
@@ -8961,16 +9391,16 @@ declare const StorageHaloRunV1alpha1AttachmentApiFp: (configuration?: Configurat
|
|
|
8961
9391
|
*
|
|
8962
9392
|
* @param {string} [policy] Name of policy
|
|
8963
9393
|
* @param {string} [displayName] Display name of attachment
|
|
8964
|
-
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
8965
9394
|
* @param {string} [group] Name of group
|
|
9395
|
+
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
8966
9396
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9397
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8967
9398
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8968
9399
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8969
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8970
9400
|
* @param {*} [options] Override http request option.
|
|
8971
9401
|
* @throws {RequiredError}
|
|
8972
9402
|
*/
|
|
8973
|
-
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>>;
|
|
8974
9404
|
/**
|
|
8975
9405
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
8976
9406
|
* @param {string} name Name of attachment
|
|
@@ -9029,16 +9459,16 @@ declare const StorageHaloRunV1alpha1AttachmentApiFactory: (configuration?: Confi
|
|
|
9029
9459
|
*
|
|
9030
9460
|
* @param {string} [policy] Name of policy
|
|
9031
9461
|
* @param {string} [displayName] Display name of attachment
|
|
9032
|
-
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
9033
9462
|
* @param {string} [group] Name of group
|
|
9463
|
+
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
9034
9464
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9465
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
9035
9466
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9036
9467
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
9037
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
9038
9468
|
* @param {*} [options] Override http request option.
|
|
9039
9469
|
* @throws {RequiredError}
|
|
9040
9470
|
*/
|
|
9041
|
-
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>;
|
|
9042
9472
|
/**
|
|
9043
9473
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
9044
9474
|
* @param {string} name Name of attachment
|
|
@@ -9146,23 +9576,29 @@ interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
9146
9576
|
*/
|
|
9147
9577
|
readonly displayName?: string;
|
|
9148
9578
|
/**
|
|
9149
|
-
* Name of
|
|
9579
|
+
* Name of group
|
|
9150
9580
|
* @type {string}
|
|
9151
9581
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
9152
9582
|
*/
|
|
9153
|
-
readonly
|
|
9583
|
+
readonly group?: string;
|
|
9154
9584
|
/**
|
|
9155
|
-
* Name of
|
|
9585
|
+
* Name of user who uploaded the attachment
|
|
9156
9586
|
* @type {string}
|
|
9157
9587
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
9158
9588
|
*/
|
|
9159
|
-
readonly
|
|
9589
|
+
readonly uploadedBy?: string;
|
|
9160
9590
|
/**
|
|
9161
9591
|
* Size of one page. Zero indicates no limit.
|
|
9162
9592
|
* @type {number}
|
|
9163
9593
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
9164
9594
|
*/
|
|
9165
9595
|
readonly size?: number;
|
|
9596
|
+
/**
|
|
9597
|
+
* The page number. Zero indicates no page.
|
|
9598
|
+
* @type {number}
|
|
9599
|
+
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
9600
|
+
*/
|
|
9601
|
+
readonly page?: number;
|
|
9166
9602
|
/**
|
|
9167
9603
|
* Label selector for filtering.
|
|
9168
9604
|
* @type {Array<string>}
|
|
@@ -9175,12 +9611,6 @@ interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
9175
9611
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
9176
9612
|
*/
|
|
9177
9613
|
readonly fieldSelector?: Array<string>;
|
|
9178
|
-
/**
|
|
9179
|
-
* The page number. Zero indicates no page.
|
|
9180
|
-
* @type {number}
|
|
9181
|
-
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
9182
|
-
*/
|
|
9183
|
-
readonly page?: number;
|
|
9184
9614
|
}
|
|
9185
9615
|
/**
|
|
9186
9616
|
* Request parameters for updatestorageHaloRunV1alpha1Attachment operation in StorageHaloRunV1alpha1AttachmentApi.
|
|
@@ -12567,4 +12997,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
12567
12997
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
12568
12998
|
}
|
|
12569
12999
|
|
|
12570
|
-
export { ApiHaloRunV1alpha1ContentApi, ApiHaloRunV1alpha1ContentApiAxiosParamCreator, ApiHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiFactory, ApiHaloRunV1alpha1ContentApiFp, ApiHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1PluginApiInstallPluginRequest, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiDraftPostRequest, ApiHaloRunV1alpha1PostApiDraftSinglePageRequest, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1PostApiListPostsRequest, ApiHaloRunV1alpha1PostApiListSinglePagesRequest, ApiHaloRunV1alpha1PostApiPublishPostRequest, ApiHaloRunV1alpha1PostApiPublishSinglePageRequest, ApiHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiHaloRunV1alpha1PostApiUpdateDraftSinglePageRequest, 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 };
|