@djvlc/openapi-admin-client 1.6.14 → 1.6.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +1009 -223
- package/dist/index.d.ts +1009 -223
- package/dist/index.js +734 -154
- package/dist/index.mjs +686 -140
- package/openapi/dist/admin-api.yaml +484 -121
- package/openapi/src/components/parameters/_index.yaml +42 -3
- package/openapi/src/components/responses/_index.yaml +5 -4
- package/openapi/src/components/schemas/_index.yaml +241 -109
- package/openapi/src/components/schemas/templates.yaml +121 -0
- package/openapi/src/openapi.yaml +14 -0
- package/openapi/src/paths/components.yaml +2 -2
- package/openapi/src/paths/drafts.yaml +4 -0
- package/openapi/src/paths/pages.yaml +23 -1
- package/openapi/src/paths/templates.yaml +164 -0
- package/openapi/src/paths/versions.yaml +1 -63
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -1083,6 +1083,51 @@ declare function AuditLogDetailToJSON(value?: AuditLogDetail | null): any;
|
|
|
1083
1083
|
* https://openapi-generator.tech
|
|
1084
1084
|
* Do not edit the class manually.
|
|
1085
1085
|
*/
|
|
1086
|
+
/**
|
|
1087
|
+
* 操作者
|
|
1088
|
+
* @export
|
|
1089
|
+
* @interface AuditLogEntryActor
|
|
1090
|
+
*/
|
|
1091
|
+
interface AuditLogEntryActor {
|
|
1092
|
+
/**
|
|
1093
|
+
*
|
|
1094
|
+
* @type {string}
|
|
1095
|
+
* @memberof AuditLogEntryActor
|
|
1096
|
+
*/
|
|
1097
|
+
uid: string;
|
|
1098
|
+
/**
|
|
1099
|
+
*
|
|
1100
|
+
* @type {string}
|
|
1101
|
+
* @memberof AuditLogEntryActor
|
|
1102
|
+
*/
|
|
1103
|
+
username?: string;
|
|
1104
|
+
/**
|
|
1105
|
+
*
|
|
1106
|
+
* @type {string}
|
|
1107
|
+
* @memberof AuditLogEntryActor
|
|
1108
|
+
*/
|
|
1109
|
+
ip?: string;
|
|
1110
|
+
}
|
|
1111
|
+
/**
|
|
1112
|
+
* Check if a given object implements the AuditLogEntryActor interface.
|
|
1113
|
+
*/
|
|
1114
|
+
declare function instanceOfAuditLogEntryActor(value: object): boolean;
|
|
1115
|
+
declare function AuditLogEntryActorFromJSON(json: any): AuditLogEntryActor;
|
|
1116
|
+
declare function AuditLogEntryActorFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuditLogEntryActor;
|
|
1117
|
+
declare function AuditLogEntryActorToJSON(value?: AuditLogEntryActor | null): any;
|
|
1118
|
+
|
|
1119
|
+
/**
|
|
1120
|
+
* DJVLC Admin API
|
|
1121
|
+
* DJVLC 低代码平台管理端 API(控制面) 提供以下功能: - 页面管理(创建、更新、删除) - 草稿管理(保存、获取) - 版本管理(发布、回滚) - 预览管理(生成预览 Token) - 组件管理(状态控制) - 灰度发布(Rollout) - Definition 管理(Action/DataQuery) - 活动管理 - 审计日志 - 运维操作(Kill Switch) - 健康检查 ## API 设计规范 - 只使用 GET 和 POST 方法 - GET:查询操作 - POST:创建、更新、删除等变更操作 - 使用语义化路由(如 /update, /delete, /publish) 核心原则: - 控制面复杂,但可审计 - 所有写操作可追溯、可回滚、可审计 - Definition 版本化,确保回滚不失真
|
|
1122
|
+
*
|
|
1123
|
+
* The version of the OpenAPI document: 1.0.0
|
|
1124
|
+
* Contact: dev@djvlc.com
|
|
1125
|
+
*
|
|
1126
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1127
|
+
* https://openapi-generator.tech
|
|
1128
|
+
* Do not edit the class manually.
|
|
1129
|
+
*/
|
|
1130
|
+
|
|
1086
1131
|
/**
|
|
1087
1132
|
*
|
|
1088
1133
|
* @export
|
|
@@ -1102,29 +1147,37 @@ interface AuditLogEntry {
|
|
|
1102
1147
|
*/
|
|
1103
1148
|
action: string;
|
|
1104
1149
|
/**
|
|
1105
|
-
*
|
|
1106
|
-
* @type {
|
|
1150
|
+
*
|
|
1151
|
+
* @type {AuditLogEntryActor}
|
|
1107
1152
|
* @memberof AuditLogEntry
|
|
1108
1153
|
*/
|
|
1109
|
-
|
|
1154
|
+
actor: AuditLogEntryActor;
|
|
1110
1155
|
/**
|
|
1111
|
-
*
|
|
1156
|
+
* 目标类型
|
|
1112
1157
|
* @type {string}
|
|
1113
1158
|
* @memberof AuditLogEntry
|
|
1114
1159
|
*/
|
|
1115
|
-
|
|
1160
|
+
targetType: string;
|
|
1116
1161
|
/**
|
|
1117
|
-
*
|
|
1162
|
+
* 目标 ID
|
|
1118
1163
|
* @type {string}
|
|
1119
1164
|
* @memberof AuditLogEntry
|
|
1120
1165
|
*/
|
|
1121
|
-
|
|
1166
|
+
targetId: string;
|
|
1122
1167
|
/**
|
|
1123
|
-
*
|
|
1168
|
+
* 操作摘要
|
|
1169
|
+
* @type {{ [key: string]: any; }}
|
|
1170
|
+
* @memberof AuditLogEntry
|
|
1171
|
+
*/
|
|
1172
|
+
summary?: {
|
|
1173
|
+
[key: string]: any;
|
|
1174
|
+
};
|
|
1175
|
+
/**
|
|
1176
|
+
* 链路追踪 ID
|
|
1124
1177
|
* @type {string}
|
|
1125
1178
|
* @memberof AuditLogEntry
|
|
1126
1179
|
*/
|
|
1127
|
-
|
|
1180
|
+
traceId?: string;
|
|
1128
1181
|
/**
|
|
1129
1182
|
* 操作时间
|
|
1130
1183
|
* @type {Date}
|
|
@@ -1132,20 +1185,26 @@ interface AuditLogEntry {
|
|
|
1132
1185
|
*/
|
|
1133
1186
|
timestamp: Date;
|
|
1134
1187
|
/**
|
|
1135
|
-
*
|
|
1188
|
+
* 操作结果
|
|
1189
|
+
* @type {string}
|
|
1190
|
+
* @memberof AuditLogEntry
|
|
1191
|
+
*/
|
|
1192
|
+
result: AuditLogEntryResultEnum;
|
|
1193
|
+
/**
|
|
1194
|
+
* 错误信息
|
|
1136
1195
|
* @type {string}
|
|
1137
1196
|
* @memberof AuditLogEntry
|
|
1138
1197
|
*/
|
|
1139
|
-
|
|
1198
|
+
errorMessage?: string;
|
|
1140
1199
|
}
|
|
1141
1200
|
/**
|
|
1142
1201
|
* @export
|
|
1143
1202
|
*/
|
|
1144
|
-
declare const
|
|
1203
|
+
declare const AuditLogEntryResultEnum: {
|
|
1145
1204
|
readonly SUCCESS: "success";
|
|
1146
|
-
readonly
|
|
1205
|
+
readonly FAILURE: "failure";
|
|
1147
1206
|
};
|
|
1148
|
-
type
|
|
1207
|
+
type AuditLogEntryResultEnum = typeof AuditLogEntryResultEnum[keyof typeof AuditLogEntryResultEnum];
|
|
1149
1208
|
/**
|
|
1150
1209
|
* Check if a given object implements the AuditLogEntry interface.
|
|
1151
1210
|
*/
|
|
@@ -1549,7 +1608,7 @@ declare function ComponentInfoToJSON(value?: ComponentInfo | null): any;
|
|
|
1549
1608
|
* Do not edit the class manually.
|
|
1550
1609
|
*/
|
|
1551
1610
|
/**
|
|
1552
|
-
*
|
|
1611
|
+
* 分页元数据(PaginationMeta)
|
|
1553
1612
|
* @export
|
|
1554
1613
|
* @interface PaginationMeta
|
|
1555
1614
|
*/
|
|
@@ -1565,7 +1624,7 @@ interface PaginationMeta {
|
|
|
1565
1624
|
* @type {number}
|
|
1566
1625
|
* @memberof PaginationMeta
|
|
1567
1626
|
*/
|
|
1568
|
-
|
|
1627
|
+
pageSize: number;
|
|
1569
1628
|
/**
|
|
1570
1629
|
* 总记录数
|
|
1571
1630
|
* @type {number}
|
|
@@ -1578,6 +1637,18 @@ interface PaginationMeta {
|
|
|
1578
1637
|
* @memberof PaginationMeta
|
|
1579
1638
|
*/
|
|
1580
1639
|
totalPages: number;
|
|
1640
|
+
/**
|
|
1641
|
+
* 是否有下一页
|
|
1642
|
+
* @type {boolean}
|
|
1643
|
+
* @memberof PaginationMeta
|
|
1644
|
+
*/
|
|
1645
|
+
hasNext: boolean;
|
|
1646
|
+
/**
|
|
1647
|
+
* 是否有上一页
|
|
1648
|
+
* @type {boolean}
|
|
1649
|
+
* @memberof PaginationMeta
|
|
1650
|
+
*/
|
|
1651
|
+
hasPrev: boolean;
|
|
1581
1652
|
}
|
|
1582
1653
|
/**
|
|
1583
1654
|
* Check if a given object implements the PaginationMeta interface.
|
|
@@ -1602,22 +1673,91 @@ declare function PaginationMetaToJSON(value?: PaginationMeta | null): any;
|
|
|
1602
1673
|
/**
|
|
1603
1674
|
*
|
|
1604
1675
|
* @export
|
|
1605
|
-
* @interface
|
|
1676
|
+
* @interface ComponentListResponseAllOfData
|
|
1606
1677
|
*/
|
|
1607
|
-
interface
|
|
1678
|
+
interface ComponentListResponseAllOfData {
|
|
1608
1679
|
/**
|
|
1609
1680
|
*
|
|
1610
1681
|
* @type {Array<ComponentInfo>}
|
|
1611
|
-
* @memberof
|
|
1682
|
+
* @memberof ComponentListResponseAllOfData
|
|
1612
1683
|
*/
|
|
1613
|
-
|
|
1684
|
+
items: Array<ComponentInfo>;
|
|
1614
1685
|
/**
|
|
1615
1686
|
*
|
|
1616
1687
|
* @type {PaginationMeta}
|
|
1617
|
-
* @memberof
|
|
1688
|
+
* @memberof ComponentListResponseAllOfData
|
|
1618
1689
|
*/
|
|
1619
1690
|
meta: PaginationMeta;
|
|
1620
1691
|
}
|
|
1692
|
+
/**
|
|
1693
|
+
* Check if a given object implements the ComponentListResponseAllOfData interface.
|
|
1694
|
+
*/
|
|
1695
|
+
declare function instanceOfComponentListResponseAllOfData(value: object): boolean;
|
|
1696
|
+
declare function ComponentListResponseAllOfDataFromJSON(json: any): ComponentListResponseAllOfData;
|
|
1697
|
+
declare function ComponentListResponseAllOfDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): ComponentListResponseAllOfData;
|
|
1698
|
+
declare function ComponentListResponseAllOfDataToJSON(value?: ComponentListResponseAllOfData | null): any;
|
|
1699
|
+
|
|
1700
|
+
/**
|
|
1701
|
+
* DJVLC Admin API
|
|
1702
|
+
* DJVLC 低代码平台管理端 API(控制面) 提供以下功能: - 页面管理(创建、更新、删除) - 草稿管理(保存、获取) - 版本管理(发布、回滚) - 预览管理(生成预览 Token) - 组件管理(状态控制) - 灰度发布(Rollout) - Definition 管理(Action/DataQuery) - 活动管理 - 审计日志 - 运维操作(Kill Switch) - 健康检查 ## API 设计规范 - 只使用 GET 和 POST 方法 - GET:查询操作 - POST:创建、更新、删除等变更操作 - 使用语义化路由(如 /update, /delete, /publish) 核心原则: - 控制面复杂,但可审计 - 所有写操作可追溯、可回滚、可审计 - Definition 版本化,确保回滚不失真
|
|
1703
|
+
*
|
|
1704
|
+
* The version of the OpenAPI document: 1.0.0
|
|
1705
|
+
* Contact: dev@djvlc.com
|
|
1706
|
+
*
|
|
1707
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1708
|
+
* https://openapi-generator.tech
|
|
1709
|
+
* Do not edit the class manually.
|
|
1710
|
+
*/
|
|
1711
|
+
|
|
1712
|
+
/**
|
|
1713
|
+
*
|
|
1714
|
+
* @export
|
|
1715
|
+
* @interface ComponentListResponse
|
|
1716
|
+
*/
|
|
1717
|
+
interface ComponentListResponse {
|
|
1718
|
+
/**
|
|
1719
|
+
* 是否成功(固定为 true)
|
|
1720
|
+
* @type {boolean}
|
|
1721
|
+
* @memberof ComponentListResponse
|
|
1722
|
+
*/
|
|
1723
|
+
success: boolean;
|
|
1724
|
+
/**
|
|
1725
|
+
* 业务状态码
|
|
1726
|
+
* @type {string}
|
|
1727
|
+
* @memberof ComponentListResponse
|
|
1728
|
+
*/
|
|
1729
|
+
code: string;
|
|
1730
|
+
/**
|
|
1731
|
+
* 响应消息
|
|
1732
|
+
* @type {string}
|
|
1733
|
+
* @memberof ComponentListResponse
|
|
1734
|
+
*/
|
|
1735
|
+
message: string;
|
|
1736
|
+
/**
|
|
1737
|
+
*
|
|
1738
|
+
* @type {ComponentListResponseAllOfData}
|
|
1739
|
+
* @memberof ComponentListResponse
|
|
1740
|
+
*/
|
|
1741
|
+
data: ComponentListResponseAllOfData;
|
|
1742
|
+
/**
|
|
1743
|
+
* 响应时间戳(Unix 毫秒时间戳,number)
|
|
1744
|
+
* @type {number}
|
|
1745
|
+
* @memberof ComponentListResponse
|
|
1746
|
+
*/
|
|
1747
|
+
timestamp: number;
|
|
1748
|
+
/**
|
|
1749
|
+
* 请求路径
|
|
1750
|
+
* @type {string}
|
|
1751
|
+
* @memberof ComponentListResponse
|
|
1752
|
+
*/
|
|
1753
|
+
path: string;
|
|
1754
|
+
/**
|
|
1755
|
+
* 请求 ID(可选)
|
|
1756
|
+
* @type {string}
|
|
1757
|
+
* @memberof ComponentListResponse
|
|
1758
|
+
*/
|
|
1759
|
+
requestId?: string;
|
|
1760
|
+
}
|
|
1621
1761
|
/**
|
|
1622
1762
|
* Check if a given object implements the ComponentListResponse interface.
|
|
1623
1763
|
*/
|
|
@@ -1712,22 +1852,91 @@ declare function ComponentVersionInfoToJSON(value?: ComponentVersionInfo | null)
|
|
|
1712
1852
|
/**
|
|
1713
1853
|
*
|
|
1714
1854
|
* @export
|
|
1715
|
-
* @interface
|
|
1855
|
+
* @interface ComponentVersionListResponseAllOfData
|
|
1716
1856
|
*/
|
|
1717
|
-
interface
|
|
1857
|
+
interface ComponentVersionListResponseAllOfData {
|
|
1718
1858
|
/**
|
|
1719
1859
|
*
|
|
1720
1860
|
* @type {Array<ComponentVersionInfo>}
|
|
1721
|
-
* @memberof
|
|
1861
|
+
* @memberof ComponentVersionListResponseAllOfData
|
|
1722
1862
|
*/
|
|
1723
|
-
|
|
1863
|
+
items: Array<ComponentVersionInfo>;
|
|
1724
1864
|
/**
|
|
1725
1865
|
*
|
|
1726
1866
|
* @type {PaginationMeta}
|
|
1727
|
-
* @memberof
|
|
1867
|
+
* @memberof ComponentVersionListResponseAllOfData
|
|
1728
1868
|
*/
|
|
1729
1869
|
meta: PaginationMeta;
|
|
1730
1870
|
}
|
|
1871
|
+
/**
|
|
1872
|
+
* Check if a given object implements the ComponentVersionListResponseAllOfData interface.
|
|
1873
|
+
*/
|
|
1874
|
+
declare function instanceOfComponentVersionListResponseAllOfData(value: object): boolean;
|
|
1875
|
+
declare function ComponentVersionListResponseAllOfDataFromJSON(json: any): ComponentVersionListResponseAllOfData;
|
|
1876
|
+
declare function ComponentVersionListResponseAllOfDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): ComponentVersionListResponseAllOfData;
|
|
1877
|
+
declare function ComponentVersionListResponseAllOfDataToJSON(value?: ComponentVersionListResponseAllOfData | null): any;
|
|
1878
|
+
|
|
1879
|
+
/**
|
|
1880
|
+
* DJVLC Admin API
|
|
1881
|
+
* DJVLC 低代码平台管理端 API(控制面) 提供以下功能: - 页面管理(创建、更新、删除) - 草稿管理(保存、获取) - 版本管理(发布、回滚) - 预览管理(生成预览 Token) - 组件管理(状态控制) - 灰度发布(Rollout) - Definition 管理(Action/DataQuery) - 活动管理 - 审计日志 - 运维操作(Kill Switch) - 健康检查 ## API 设计规范 - 只使用 GET 和 POST 方法 - GET:查询操作 - POST:创建、更新、删除等变更操作 - 使用语义化路由(如 /update, /delete, /publish) 核心原则: - 控制面复杂,但可审计 - 所有写操作可追溯、可回滚、可审计 - Definition 版本化,确保回滚不失真
|
|
1882
|
+
*
|
|
1883
|
+
* The version of the OpenAPI document: 1.0.0
|
|
1884
|
+
* Contact: dev@djvlc.com
|
|
1885
|
+
*
|
|
1886
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1887
|
+
* https://openapi-generator.tech
|
|
1888
|
+
* Do not edit the class manually.
|
|
1889
|
+
*/
|
|
1890
|
+
|
|
1891
|
+
/**
|
|
1892
|
+
*
|
|
1893
|
+
* @export
|
|
1894
|
+
* @interface ComponentVersionListResponse
|
|
1895
|
+
*/
|
|
1896
|
+
interface ComponentVersionListResponse {
|
|
1897
|
+
/**
|
|
1898
|
+
* 是否成功(固定为 true)
|
|
1899
|
+
* @type {boolean}
|
|
1900
|
+
* @memberof ComponentVersionListResponse
|
|
1901
|
+
*/
|
|
1902
|
+
success: boolean;
|
|
1903
|
+
/**
|
|
1904
|
+
* 业务状态码
|
|
1905
|
+
* @type {string}
|
|
1906
|
+
* @memberof ComponentVersionListResponse
|
|
1907
|
+
*/
|
|
1908
|
+
code: string;
|
|
1909
|
+
/**
|
|
1910
|
+
* 响应消息
|
|
1911
|
+
* @type {string}
|
|
1912
|
+
* @memberof ComponentVersionListResponse
|
|
1913
|
+
*/
|
|
1914
|
+
message: string;
|
|
1915
|
+
/**
|
|
1916
|
+
*
|
|
1917
|
+
* @type {ComponentVersionListResponseAllOfData}
|
|
1918
|
+
* @memberof ComponentVersionListResponse
|
|
1919
|
+
*/
|
|
1920
|
+
data: ComponentVersionListResponseAllOfData;
|
|
1921
|
+
/**
|
|
1922
|
+
* 响应时间戳(Unix 毫秒时间戳,number)
|
|
1923
|
+
* @type {number}
|
|
1924
|
+
* @memberof ComponentVersionListResponse
|
|
1925
|
+
*/
|
|
1926
|
+
timestamp: number;
|
|
1927
|
+
/**
|
|
1928
|
+
* 请求路径
|
|
1929
|
+
* @type {string}
|
|
1930
|
+
* @memberof ComponentVersionListResponse
|
|
1931
|
+
*/
|
|
1932
|
+
path: string;
|
|
1933
|
+
/**
|
|
1934
|
+
* 请求 ID(可选)
|
|
1935
|
+
* @type {string}
|
|
1936
|
+
* @memberof ComponentVersionListResponse
|
|
1937
|
+
*/
|
|
1938
|
+
requestId?: string;
|
|
1939
|
+
}
|
|
1731
1940
|
/**
|
|
1732
1941
|
* Check if a given object implements the ComponentVersionListResponse interface.
|
|
1733
1942
|
*/
|
|
@@ -1754,12 +1963,48 @@ declare function ComponentVersionListResponseToJSON(value?: ComponentVersionList
|
|
|
1754
1963
|
* @interface ComponentVersionResponse
|
|
1755
1964
|
*/
|
|
1756
1965
|
interface ComponentVersionResponse {
|
|
1966
|
+
/**
|
|
1967
|
+
* 是否成功(固定为 true)
|
|
1968
|
+
* @type {boolean}
|
|
1969
|
+
* @memberof ComponentVersionResponse
|
|
1970
|
+
*/
|
|
1971
|
+
success: boolean;
|
|
1972
|
+
/**
|
|
1973
|
+
* 业务状态码
|
|
1974
|
+
* @type {string}
|
|
1975
|
+
* @memberof ComponentVersionResponse
|
|
1976
|
+
*/
|
|
1977
|
+
code: string;
|
|
1978
|
+
/**
|
|
1979
|
+
* 响应消息
|
|
1980
|
+
* @type {string}
|
|
1981
|
+
* @memberof ComponentVersionResponse
|
|
1982
|
+
*/
|
|
1983
|
+
message: string;
|
|
1757
1984
|
/**
|
|
1758
1985
|
*
|
|
1759
1986
|
* @type {ComponentVersionInfo}
|
|
1760
1987
|
* @memberof ComponentVersionResponse
|
|
1761
1988
|
*/
|
|
1762
1989
|
data: ComponentVersionInfo;
|
|
1990
|
+
/**
|
|
1991
|
+
* 响应时间戳(Unix 毫秒时间戳,number)
|
|
1992
|
+
* @type {number}
|
|
1993
|
+
* @memberof ComponentVersionResponse
|
|
1994
|
+
*/
|
|
1995
|
+
timestamp: number;
|
|
1996
|
+
/**
|
|
1997
|
+
* 请求路径
|
|
1998
|
+
* @type {string}
|
|
1999
|
+
* @memberof ComponentVersionResponse
|
|
2000
|
+
*/
|
|
2001
|
+
path: string;
|
|
2002
|
+
/**
|
|
2003
|
+
* 请求 ID(可选)
|
|
2004
|
+
* @type {string}
|
|
2005
|
+
* @memberof ComponentVersionResponse
|
|
2006
|
+
*/
|
|
2007
|
+
requestId?: string;
|
|
1763
2008
|
}
|
|
1764
2009
|
/**
|
|
1765
2010
|
* Check if a given object implements the ComponentVersionResponse interface.
|
|
@@ -2430,41 +2675,97 @@ declare function CreatePageRequestToJSON(value?: CreatePageRequest | null): any;
|
|
|
2430
2675
|
* https://openapi-generator.tech
|
|
2431
2676
|
* Do not edit the class manually.
|
|
2432
2677
|
*/
|
|
2433
|
-
|
|
2434
2678
|
/**
|
|
2435
2679
|
*
|
|
2436
2680
|
* @export
|
|
2437
|
-
* @interface
|
|
2681
|
+
* @interface CreateTemplateRequest
|
|
2438
2682
|
*/
|
|
2439
|
-
interface
|
|
2683
|
+
interface CreateTemplateRequest {
|
|
2440
2684
|
/**
|
|
2441
|
-
*
|
|
2685
|
+
* 模板名称
|
|
2442
2686
|
* @type {string}
|
|
2443
|
-
* @memberof
|
|
2687
|
+
* @memberof CreateTemplateRequest
|
|
2444
2688
|
*/
|
|
2445
|
-
|
|
2689
|
+
name: string;
|
|
2446
2690
|
/**
|
|
2447
|
-
*
|
|
2691
|
+
* 模板描述
|
|
2448
2692
|
* @type {string}
|
|
2449
|
-
* @memberof
|
|
2693
|
+
* @memberof CreateTemplateRequest
|
|
2450
2694
|
*/
|
|
2451
|
-
|
|
2695
|
+
description?: string;
|
|
2452
2696
|
/**
|
|
2453
|
-
*
|
|
2697
|
+
* 缩略图 URL
|
|
2454
2698
|
* @type {string}
|
|
2455
|
-
* @memberof
|
|
2699
|
+
* @memberof CreateTemplateRequest
|
|
2456
2700
|
*/
|
|
2457
|
-
|
|
2701
|
+
thumbnail?: string;
|
|
2458
2702
|
/**
|
|
2459
|
-
*
|
|
2460
|
-
* @type {string}
|
|
2461
|
-
* @memberof
|
|
2703
|
+
* 标签
|
|
2704
|
+
* @type {Array<string>}
|
|
2705
|
+
* @memberof CreateTemplateRequest
|
|
2462
2706
|
*/
|
|
2463
|
-
|
|
2707
|
+
tags?: Array<string>;
|
|
2464
2708
|
/**
|
|
2465
|
-
*
|
|
2709
|
+
* 来源页面 ID(可选,从页面创建模板)
|
|
2466
2710
|
* @type {string}
|
|
2467
|
-
* @memberof
|
|
2711
|
+
* @memberof CreateTemplateRequest
|
|
2712
|
+
*/
|
|
2713
|
+
pageId?: string;
|
|
2714
|
+
}
|
|
2715
|
+
/**
|
|
2716
|
+
* Check if a given object implements the CreateTemplateRequest interface.
|
|
2717
|
+
*/
|
|
2718
|
+
declare function instanceOfCreateTemplateRequest(value: object): boolean;
|
|
2719
|
+
declare function CreateTemplateRequestFromJSON(json: any): CreateTemplateRequest;
|
|
2720
|
+
declare function CreateTemplateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateTemplateRequest;
|
|
2721
|
+
declare function CreateTemplateRequestToJSON(value?: CreateTemplateRequest | null): any;
|
|
2722
|
+
|
|
2723
|
+
/**
|
|
2724
|
+
* DJVLC Admin API
|
|
2725
|
+
* DJVLC 低代码平台管理端 API(控制面) 提供以下功能: - 页面管理(创建、更新、删除) - 草稿管理(保存、获取) - 版本管理(发布、回滚) - 预览管理(生成预览 Token) - 组件管理(状态控制) - 灰度发布(Rollout) - Definition 管理(Action/DataQuery) - 活动管理 - 审计日志 - 运维操作(Kill Switch) - 健康检查 ## API 设计规范 - 只使用 GET 和 POST 方法 - GET:查询操作 - POST:创建、更新、删除等变更操作 - 使用语义化路由(如 /update, /delete, /publish) 核心原则: - 控制面复杂,但可审计 - 所有写操作可追溯、可回滚、可审计 - Definition 版本化,确保回滚不失真
|
|
2726
|
+
*
|
|
2727
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2728
|
+
* Contact: dev@djvlc.com
|
|
2729
|
+
*
|
|
2730
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2731
|
+
* https://openapi-generator.tech
|
|
2732
|
+
* Do not edit the class manually.
|
|
2733
|
+
*/
|
|
2734
|
+
|
|
2735
|
+
/**
|
|
2736
|
+
*
|
|
2737
|
+
* @export
|
|
2738
|
+
* @interface DataQueryDefinitionDetail
|
|
2739
|
+
*/
|
|
2740
|
+
interface DataQueryDefinitionDetail {
|
|
2741
|
+
/**
|
|
2742
|
+
* 定义 ID
|
|
2743
|
+
* @type {string}
|
|
2744
|
+
* @memberof DataQueryDefinitionDetail
|
|
2745
|
+
*/
|
|
2746
|
+
id: string;
|
|
2747
|
+
/**
|
|
2748
|
+
* 查询名称
|
|
2749
|
+
* @type {string}
|
|
2750
|
+
* @memberof DataQueryDefinitionDetail
|
|
2751
|
+
*/
|
|
2752
|
+
name: string;
|
|
2753
|
+
/**
|
|
2754
|
+
* 显示名称
|
|
2755
|
+
* @type {string}
|
|
2756
|
+
* @memberof DataQueryDefinitionDetail
|
|
2757
|
+
*/
|
|
2758
|
+
displayName?: string;
|
|
2759
|
+
/**
|
|
2760
|
+
* 数据源类型
|
|
2761
|
+
* @type {string}
|
|
2762
|
+
* @memberof DataQueryDefinitionDetail
|
|
2763
|
+
*/
|
|
2764
|
+
sourceType: DataQueryDefinitionDetailSourceTypeEnum;
|
|
2765
|
+
/**
|
|
2766
|
+
* 描述
|
|
2767
|
+
* @type {string}
|
|
2768
|
+
* @memberof DataQueryDefinitionDetail
|
|
2468
2769
|
*/
|
|
2469
2770
|
description?: string;
|
|
2470
2771
|
/**
|
|
@@ -2819,64 +3120,56 @@ declare function DraftDataToJSON(value?: DraftData | null): any;
|
|
|
2819
3120
|
* @interface DraftResponse
|
|
2820
3121
|
*/
|
|
2821
3122
|
interface DraftResponse {
|
|
3123
|
+
/**
|
|
3124
|
+
* 是否成功(固定为 true)
|
|
3125
|
+
* @type {boolean}
|
|
3126
|
+
* @memberof DraftResponse
|
|
3127
|
+
*/
|
|
3128
|
+
success: boolean;
|
|
3129
|
+
/**
|
|
3130
|
+
* 业务状态码
|
|
3131
|
+
* @type {string}
|
|
3132
|
+
* @memberof DraftResponse
|
|
3133
|
+
*/
|
|
3134
|
+
code: string;
|
|
3135
|
+
/**
|
|
3136
|
+
* 响应消息
|
|
3137
|
+
* @type {string}
|
|
3138
|
+
* @memberof DraftResponse
|
|
3139
|
+
*/
|
|
3140
|
+
message: string;
|
|
2822
3141
|
/**
|
|
2823
3142
|
*
|
|
2824
3143
|
* @type {DraftData}
|
|
2825
3144
|
* @memberof DraftResponse
|
|
2826
3145
|
*/
|
|
2827
3146
|
data: DraftData;
|
|
2828
|
-
}
|
|
2829
|
-
/**
|
|
2830
|
-
* Check if a given object implements the DraftResponse interface.
|
|
2831
|
-
*/
|
|
2832
|
-
declare function instanceOfDraftResponse(value: object): boolean;
|
|
2833
|
-
declare function DraftResponseFromJSON(json: any): DraftResponse;
|
|
2834
|
-
declare function DraftResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DraftResponse;
|
|
2835
|
-
declare function DraftResponseToJSON(value?: DraftResponse | null): any;
|
|
2836
|
-
|
|
2837
|
-
/**
|
|
2838
|
-
* DJVLC Admin API
|
|
2839
|
-
* DJVLC 低代码平台管理端 API(控制面) 提供以下功能: - 页面管理(创建、更新、删除) - 草稿管理(保存、获取) - 版本管理(发布、回滚) - 预览管理(生成预览 Token) - 组件管理(状态控制) - 灰度发布(Rollout) - Definition 管理(Action/DataQuery) - 活动管理 - 审计日志 - 运维操作(Kill Switch) - 健康检查 ## API 设计规范 - 只使用 GET 和 POST 方法 - GET:查询操作 - POST:创建、更新、删除等变更操作 - 使用语义化路由(如 /update, /delete, /publish) 核心原则: - 控制面复杂,但可审计 - 所有写操作可追溯、可回滚、可审计 - Definition 版本化,确保回滚不失真
|
|
2840
|
-
*
|
|
2841
|
-
* The version of the OpenAPI document: 1.0.0
|
|
2842
|
-
* Contact: dev@djvlc.com
|
|
2843
|
-
*
|
|
2844
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2845
|
-
* https://openapi-generator.tech
|
|
2846
|
-
* Do not edit the class manually.
|
|
2847
|
-
*/
|
|
2848
|
-
/**
|
|
2849
|
-
* 错误详情(ApiErrorDetail,与 types/src/common/api.ts 保持一致)
|
|
2850
|
-
* @export
|
|
2851
|
-
* @interface ErrorDetail
|
|
2852
|
-
*/
|
|
2853
|
-
interface ErrorDetail {
|
|
2854
3147
|
/**
|
|
2855
|
-
*
|
|
2856
|
-
* @type {
|
|
2857
|
-
* @memberof
|
|
3148
|
+
* 响应时间戳(Unix 毫秒时间戳,number)
|
|
3149
|
+
* @type {number}
|
|
3150
|
+
* @memberof DraftResponse
|
|
2858
3151
|
*/
|
|
2859
|
-
|
|
3152
|
+
timestamp: number;
|
|
2860
3153
|
/**
|
|
2861
|
-
*
|
|
3154
|
+
* 请求路径
|
|
2862
3155
|
* @type {string}
|
|
2863
|
-
* @memberof
|
|
3156
|
+
* @memberof DraftResponse
|
|
2864
3157
|
*/
|
|
2865
|
-
|
|
3158
|
+
path: string;
|
|
2866
3159
|
/**
|
|
2867
|
-
*
|
|
3160
|
+
* 请求 ID(可选)
|
|
2868
3161
|
* @type {string}
|
|
2869
|
-
* @memberof
|
|
3162
|
+
* @memberof DraftResponse
|
|
2870
3163
|
*/
|
|
2871
|
-
|
|
3164
|
+
requestId?: string;
|
|
2872
3165
|
}
|
|
2873
3166
|
/**
|
|
2874
|
-
* Check if a given object implements the
|
|
3167
|
+
* Check if a given object implements the DraftResponse interface.
|
|
2875
3168
|
*/
|
|
2876
|
-
declare function
|
|
2877
|
-
declare function
|
|
2878
|
-
declare function
|
|
2879
|
-
declare function
|
|
3169
|
+
declare function instanceOfDraftResponse(value: object): boolean;
|
|
3170
|
+
declare function DraftResponseFromJSON(json: any): DraftResponse;
|
|
3171
|
+
declare function DraftResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DraftResponse;
|
|
3172
|
+
declare function DraftResponseToJSON(value?: DraftResponse | null): any;
|
|
2880
3173
|
|
|
2881
3174
|
/**
|
|
2882
3175
|
* DJVLC Admin API
|
|
@@ -2914,11 +3207,13 @@ interface ErrorResponse {
|
|
|
2914
3207
|
*/
|
|
2915
3208
|
message: string;
|
|
2916
3209
|
/**
|
|
2917
|
-
*
|
|
2918
|
-
* @type {any}
|
|
3210
|
+
* 错误详情(Record<string, unknown>,与 types ApiErrorResponse.data 一致)
|
|
3211
|
+
* @type {{ [key: string]: any; }}
|
|
2919
3212
|
* @memberof ErrorResponse
|
|
2920
3213
|
*/
|
|
2921
|
-
data?:
|
|
3214
|
+
data?: {
|
|
3215
|
+
[key: string]: any;
|
|
3216
|
+
} | null;
|
|
2922
3217
|
/**
|
|
2923
3218
|
* 响应时间戳(Unix 毫秒时间戳,number)
|
|
2924
3219
|
* @type {number}
|
|
@@ -2952,39 +3247,6 @@ declare function ErrorResponseFromJSON(json: any): ErrorResponse;
|
|
|
2952
3247
|
declare function ErrorResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ErrorResponse;
|
|
2953
3248
|
declare function ErrorResponseToJSON(value?: ErrorResponse | null): any;
|
|
2954
3249
|
|
|
2955
|
-
/**
|
|
2956
|
-
* DJVLC Admin API
|
|
2957
|
-
* DJVLC 低代码平台管理端 API(控制面) 提供以下功能: - 页面管理(创建、更新、删除) - 草稿管理(保存、获取) - 版本管理(发布、回滚) - 预览管理(生成预览 Token) - 组件管理(状态控制) - 灰度发布(Rollout) - Definition 管理(Action/DataQuery) - 活动管理 - 审计日志 - 运维操作(Kill Switch) - 健康检查 ## API 设计规范 - 只使用 GET 和 POST 方法 - GET:查询操作 - POST:创建、更新、删除等变更操作 - 使用语义化路由(如 /update, /delete, /publish) 核心原则: - 控制面复杂,但可审计 - 所有写操作可追溯、可回滚、可审计 - Definition 版本化,确保回滚不失真
|
|
2958
|
-
*
|
|
2959
|
-
* The version of the OpenAPI document: 1.0.0
|
|
2960
|
-
* Contact: dev@djvlc.com
|
|
2961
|
-
*
|
|
2962
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2963
|
-
* https://openapi-generator.tech
|
|
2964
|
-
* Do not edit the class manually.
|
|
2965
|
-
*/
|
|
2966
|
-
/**
|
|
2967
|
-
* 错误响应 data 的非数组分支(任意结构)
|
|
2968
|
-
* @export
|
|
2969
|
-
* @interface ErrorResponseDataObject
|
|
2970
|
-
*/
|
|
2971
|
-
interface ErrorResponseDataObject {
|
|
2972
|
-
[key: string]: any | any;
|
|
2973
|
-
/**
|
|
2974
|
-
* 占位属性,确保生成器产出命名类型
|
|
2975
|
-
* @type {string}
|
|
2976
|
-
* @memberof ErrorResponseDataObject
|
|
2977
|
-
*/
|
|
2978
|
-
u?: string;
|
|
2979
|
-
}
|
|
2980
|
-
/**
|
|
2981
|
-
* Check if a given object implements the ErrorResponseDataObject interface.
|
|
2982
|
-
*/
|
|
2983
|
-
declare function instanceOfErrorResponseDataObject(value: object): boolean;
|
|
2984
|
-
declare function ErrorResponseDataObjectFromJSON(json: any): ErrorResponseDataObject;
|
|
2985
|
-
declare function ErrorResponseDataObjectFromJSONTyped(json: any, ignoreDiscriminator: boolean): ErrorResponseDataObject;
|
|
2986
|
-
declare function ErrorResponseDataObjectToJSON(value?: ErrorResponseDataObject | null): any;
|
|
2987
|
-
|
|
2988
3250
|
/**
|
|
2989
3251
|
* DJVLC Admin API
|
|
2990
3252
|
* DJVLC 低代码平台管理端 API(控制面) 提供以下功能: - 页面管理(创建、更新、删除) - 草稿管理(保存、获取) - 版本管理(发布、回滚) - 预览管理(生成预览 Token) - 组件管理(状态控制) - 灰度发布(Rollout) - Definition 管理(Action/DataQuery) - 活动管理 - 审计日志 - 运维操作(Kill Switch) - 健康检查 ## API 设计规范 - 只使用 GET 和 POST 方法 - GET:查询操作 - POST:创建、更新、删除等变更操作 - 使用语义化路由(如 /update, /delete, /publish) 核心原则: - 控制面复杂,但可审计 - 所有写操作可追溯、可回滚、可审计 - Definition 版本化,确保回滚不失真
|
|
@@ -4973,10 +5235,12 @@ interface PublishRequestPublishConfigRolloutStrategyOneOf3ConditionsInner {
|
|
|
4973
5235
|
operator?: PublishRequestPublishConfigRolloutStrategyOneOf3ConditionsInnerOperatorEnum;
|
|
4974
5236
|
/**
|
|
4975
5237
|
* 条件值(string | number | boolean | string[],运行时为 JSON 值)
|
|
4976
|
-
* @type {any}
|
|
5238
|
+
* @type {{ [key: string]: any; }}
|
|
4977
5239
|
* @memberof PublishRequestPublishConfigRolloutStrategyOneOf3ConditionsInner
|
|
4978
5240
|
*/
|
|
4979
|
-
value?:
|
|
5241
|
+
value?: {
|
|
5242
|
+
[key: string]: any;
|
|
5243
|
+
} | null;
|
|
4980
5244
|
}
|
|
4981
5245
|
/**
|
|
4982
5246
|
* @export
|
|
@@ -5719,12 +5983,48 @@ declare function VersionInfoToJSON(value?: VersionInfo | null): any;
|
|
|
5719
5983
|
* @interface PublishResponse
|
|
5720
5984
|
*/
|
|
5721
5985
|
interface PublishResponse {
|
|
5986
|
+
/**
|
|
5987
|
+
* 是否成功(固定为 true)
|
|
5988
|
+
* @type {boolean}
|
|
5989
|
+
* @memberof PublishResponse
|
|
5990
|
+
*/
|
|
5991
|
+
success: boolean;
|
|
5992
|
+
/**
|
|
5993
|
+
* 业务状态码
|
|
5994
|
+
* @type {string}
|
|
5995
|
+
* @memberof PublishResponse
|
|
5996
|
+
*/
|
|
5997
|
+
code: string;
|
|
5998
|
+
/**
|
|
5999
|
+
* 响应消息
|
|
6000
|
+
* @type {string}
|
|
6001
|
+
* @memberof PublishResponse
|
|
6002
|
+
*/
|
|
6003
|
+
message: string;
|
|
5722
6004
|
/**
|
|
5723
6005
|
*
|
|
5724
6006
|
* @type {VersionInfo}
|
|
5725
6007
|
* @memberof PublishResponse
|
|
5726
6008
|
*/
|
|
5727
6009
|
data: VersionInfo;
|
|
6010
|
+
/**
|
|
6011
|
+
* 响应时间戳(Unix 毫秒时间戳,number)
|
|
6012
|
+
* @type {number}
|
|
6013
|
+
* @memberof PublishResponse
|
|
6014
|
+
*/
|
|
6015
|
+
timestamp: number;
|
|
6016
|
+
/**
|
|
6017
|
+
* 请求路径
|
|
6018
|
+
* @type {string}
|
|
6019
|
+
* @memberof PublishResponse
|
|
6020
|
+
*/
|
|
6021
|
+
path: string;
|
|
6022
|
+
/**
|
|
6023
|
+
* 请求 ID(可选)
|
|
6024
|
+
* @type {string}
|
|
6025
|
+
* @memberof PublishResponse
|
|
6026
|
+
*/
|
|
6027
|
+
requestId?: string;
|
|
5728
6028
|
}
|
|
5729
6029
|
/**
|
|
5730
6030
|
* Check if a given object implements the PublishResponse interface.
|
|
@@ -5864,15 +6164,269 @@ interface RollbackRequest {
|
|
|
5864
6164
|
* @type {string}
|
|
5865
6165
|
* @memberof RollbackRequest
|
|
5866
6166
|
*/
|
|
5867
|
-
reason?: string;
|
|
6167
|
+
reason?: string;
|
|
6168
|
+
}
|
|
6169
|
+
/**
|
|
6170
|
+
* Check if a given object implements the RollbackRequest interface.
|
|
6171
|
+
*/
|
|
6172
|
+
declare function instanceOfRollbackRequest(value: object): boolean;
|
|
6173
|
+
declare function RollbackRequestFromJSON(json: any): RollbackRequest;
|
|
6174
|
+
declare function RollbackRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): RollbackRequest;
|
|
6175
|
+
declare function RollbackRequestToJSON(value?: RollbackRequest | null): any;
|
|
6176
|
+
|
|
6177
|
+
/**
|
|
6178
|
+
* DJVLC Admin API
|
|
6179
|
+
* DJVLC 低代码平台管理端 API(控制面) 提供以下功能: - 页面管理(创建、更新、删除) - 草稿管理(保存、获取) - 版本管理(发布、回滚) - 预览管理(生成预览 Token) - 组件管理(状态控制) - 灰度发布(Rollout) - Definition 管理(Action/DataQuery) - 活动管理 - 审计日志 - 运维操作(Kill Switch) - 健康检查 ## API 设计规范 - 只使用 GET 和 POST 方法 - GET:查询操作 - POST:创建、更新、删除等变更操作 - 使用语义化路由(如 /update, /delete, /publish) 核心原则: - 控制面复杂,但可审计 - 所有写操作可追溯、可回滚、可审计 - Definition 版本化,确保回滚不失真
|
|
6180
|
+
*
|
|
6181
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6182
|
+
* Contact: dev@djvlc.com
|
|
6183
|
+
*
|
|
6184
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6185
|
+
* https://openapi-generator.tech
|
|
6186
|
+
* Do not edit the class manually.
|
|
6187
|
+
*/
|
|
6188
|
+
/**
|
|
6189
|
+
* 保存草稿请求(根据 types/src/page/draft.ts)
|
|
6190
|
+
* @export
|
|
6191
|
+
* @interface SaveDraftRequest
|
|
6192
|
+
*/
|
|
6193
|
+
interface SaveDraftRequest {
|
|
6194
|
+
/**
|
|
6195
|
+
* 页面 Schema(PageSchema)。完整定义与校验见 packages/schemas/schemas/page-schema.json 与 types/src/page/schema.ts。
|
|
6196
|
+
*
|
|
6197
|
+
* @type {{ [key: string]: any; }}
|
|
6198
|
+
* @memberof SaveDraftRequest
|
|
6199
|
+
*/
|
|
6200
|
+
schema: {
|
|
6201
|
+
[key: string]: any;
|
|
6202
|
+
};
|
|
6203
|
+
/**
|
|
6204
|
+
* 基于的版本号(用于冲突检测,UniqueId)
|
|
6205
|
+
* @type {string}
|
|
6206
|
+
* @memberof SaveDraftRequest
|
|
6207
|
+
*/
|
|
6208
|
+
baseVersion?: string;
|
|
6209
|
+
/**
|
|
6210
|
+
* 是否强制保存(忽略冲突)
|
|
6211
|
+
* @type {boolean}
|
|
6212
|
+
* @memberof SaveDraftRequest
|
|
6213
|
+
*/
|
|
6214
|
+
force?: boolean;
|
|
6215
|
+
}
|
|
6216
|
+
/**
|
|
6217
|
+
* Check if a given object implements the SaveDraftRequest interface.
|
|
6218
|
+
*/
|
|
6219
|
+
declare function instanceOfSaveDraftRequest(value: object): boolean;
|
|
6220
|
+
declare function SaveDraftRequestFromJSON(json: any): SaveDraftRequest;
|
|
6221
|
+
declare function SaveDraftRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SaveDraftRequest;
|
|
6222
|
+
declare function SaveDraftRequestToJSON(value?: SaveDraftRequest | null): any;
|
|
6223
|
+
|
|
6224
|
+
/**
|
|
6225
|
+
* DJVLC Admin API
|
|
6226
|
+
* DJVLC 低代码平台管理端 API(控制面) 提供以下功能: - 页面管理(创建、更新、删除) - 草稿管理(保存、获取) - 版本管理(发布、回滚) - 预览管理(生成预览 Token) - 组件管理(状态控制) - 灰度发布(Rollout) - Definition 管理(Action/DataQuery) - 活动管理 - 审计日志 - 运维操作(Kill Switch) - 健康检查 ## API 设计规范 - 只使用 GET 和 POST 方法 - GET:查询操作 - POST:创建、更新、删除等变更操作 - 使用语义化路由(如 /update, /delete, /publish) 核心原则: - 控制面复杂,但可审计 - 所有写操作可追溯、可回滚、可审计 - Definition 版本化,确保回滚不失真
|
|
6227
|
+
*
|
|
6228
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6229
|
+
* Contact: dev@djvlc.com
|
|
6230
|
+
*
|
|
6231
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6232
|
+
* https://openapi-generator.tech
|
|
6233
|
+
* Do not edit the class manually.
|
|
6234
|
+
*/
|
|
6235
|
+
/**
|
|
6236
|
+
*
|
|
6237
|
+
* @export
|
|
6238
|
+
* @interface SetKillSwitchRequest
|
|
6239
|
+
*/
|
|
6240
|
+
interface SetKillSwitchRequest {
|
|
6241
|
+
/**
|
|
6242
|
+
* 是否启用 Kill Switch
|
|
6243
|
+
* @type {boolean}
|
|
6244
|
+
* @memberof SetKillSwitchRequest
|
|
6245
|
+
*/
|
|
6246
|
+
enabled: boolean;
|
|
6247
|
+
/**
|
|
6248
|
+
* 原因
|
|
6249
|
+
* @type {string}
|
|
6250
|
+
* @memberof SetKillSwitchRequest
|
|
6251
|
+
*/
|
|
6252
|
+
reason?: string;
|
|
6253
|
+
/**
|
|
6254
|
+
* 降级跳转 URL(仅页面级别)
|
|
6255
|
+
* @type {string}
|
|
6256
|
+
* @memberof SetKillSwitchRequest
|
|
6257
|
+
*/
|
|
6258
|
+
fallbackUrl?: string;
|
|
6259
|
+
}
|
|
6260
|
+
/**
|
|
6261
|
+
* Check if a given object implements the SetKillSwitchRequest interface.
|
|
6262
|
+
*/
|
|
6263
|
+
declare function instanceOfSetKillSwitchRequest(value: object): boolean;
|
|
6264
|
+
declare function SetKillSwitchRequestFromJSON(json: any): SetKillSwitchRequest;
|
|
6265
|
+
declare function SetKillSwitchRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SetKillSwitchRequest;
|
|
6266
|
+
declare function SetKillSwitchRequestToJSON(value?: SetKillSwitchRequest | null): any;
|
|
6267
|
+
|
|
6268
|
+
/**
|
|
6269
|
+
* DJVLC Admin API
|
|
6270
|
+
* DJVLC 低代码平台管理端 API(控制面) 提供以下功能: - 页面管理(创建、更新、删除) - 草稿管理(保存、获取) - 版本管理(发布、回滚) - 预览管理(生成预览 Token) - 组件管理(状态控制) - 灰度发布(Rollout) - Definition 管理(Action/DataQuery) - 活动管理 - 审计日志 - 运维操作(Kill Switch) - 健康检查 ## API 设计规范 - 只使用 GET 和 POST 方法 - GET:查询操作 - POST:创建、更新、删除等变更操作 - 使用语义化路由(如 /update, /delete, /publish) 核心原则: - 控制面复杂,但可审计 - 所有写操作可追溯、可回滚、可审计 - Definition 版本化,确保回滚不失真
|
|
6271
|
+
*
|
|
6272
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6273
|
+
* Contact: dev@djvlc.com
|
|
6274
|
+
*
|
|
6275
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6276
|
+
* https://openapi-generator.tech
|
|
6277
|
+
* Do not edit the class manually.
|
|
6278
|
+
*/
|
|
6279
|
+
/**
|
|
6280
|
+
* 成功响应(ApiSuccessResponse,与 types/src/common/api.ts 保持一致)
|
|
6281
|
+
* @export
|
|
6282
|
+
* @interface SuccessResponse
|
|
6283
|
+
*/
|
|
6284
|
+
interface SuccessResponse {
|
|
6285
|
+
/**
|
|
6286
|
+
* 是否成功(固定为 true)
|
|
6287
|
+
* @type {boolean}
|
|
6288
|
+
* @memberof SuccessResponse
|
|
6289
|
+
*/
|
|
6290
|
+
success: boolean;
|
|
6291
|
+
/**
|
|
6292
|
+
* 业务状态码
|
|
6293
|
+
* @type {string}
|
|
6294
|
+
* @memberof SuccessResponse
|
|
6295
|
+
*/
|
|
6296
|
+
code: string;
|
|
6297
|
+
/**
|
|
6298
|
+
* 响应消息
|
|
6299
|
+
* @type {string}
|
|
6300
|
+
* @memberof SuccessResponse
|
|
6301
|
+
*/
|
|
6302
|
+
message: string;
|
|
6303
|
+
/**
|
|
6304
|
+
* 响应数据(泛型 T)
|
|
6305
|
+
* @type {any}
|
|
6306
|
+
* @memberof SuccessResponse
|
|
6307
|
+
*/
|
|
6308
|
+
data: any | null;
|
|
6309
|
+
/**
|
|
6310
|
+
* 响应时间戳(Unix 毫秒时间戳,number)
|
|
6311
|
+
* @type {number}
|
|
6312
|
+
* @memberof SuccessResponse
|
|
6313
|
+
*/
|
|
6314
|
+
timestamp: number;
|
|
6315
|
+
/**
|
|
6316
|
+
* 请求路径
|
|
6317
|
+
* @type {string}
|
|
6318
|
+
* @memberof SuccessResponse
|
|
6319
|
+
*/
|
|
6320
|
+
path: string;
|
|
6321
|
+
/**
|
|
6322
|
+
* 请求 ID(可选)
|
|
6323
|
+
* @type {string}
|
|
6324
|
+
* @memberof SuccessResponse
|
|
6325
|
+
*/
|
|
6326
|
+
requestId?: string;
|
|
6327
|
+
}
|
|
6328
|
+
/**
|
|
6329
|
+
* Check if a given object implements the SuccessResponse interface.
|
|
6330
|
+
*/
|
|
6331
|
+
declare function instanceOfSuccessResponse(value: object): boolean;
|
|
6332
|
+
declare function SuccessResponseFromJSON(json: any): SuccessResponse;
|
|
6333
|
+
declare function SuccessResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SuccessResponse;
|
|
6334
|
+
declare function SuccessResponseToJSON(value?: SuccessResponse | null): any;
|
|
6335
|
+
|
|
6336
|
+
/**
|
|
6337
|
+
* DJVLC Admin API
|
|
6338
|
+
* DJVLC 低代码平台管理端 API(控制面) 提供以下功能: - 页面管理(创建、更新、删除) - 草稿管理(保存、获取) - 版本管理(发布、回滚) - 预览管理(生成预览 Token) - 组件管理(状态控制) - 灰度发布(Rollout) - Definition 管理(Action/DataQuery) - 活动管理 - 审计日志 - 运维操作(Kill Switch) - 健康检查 ## API 设计规范 - 只使用 GET 和 POST 方法 - GET:查询操作 - POST:创建、更新、删除等变更操作 - 使用语义化路由(如 /update, /delete, /publish) 核心原则: - 控制面复杂,但可审计 - 所有写操作可追溯、可回滚、可审计 - Definition 版本化,确保回滚不失真
|
|
6339
|
+
*
|
|
6340
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6341
|
+
* Contact: dev@djvlc.com
|
|
6342
|
+
*
|
|
6343
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6344
|
+
* https://openapi-generator.tech
|
|
6345
|
+
* Do not edit the class manually.
|
|
6346
|
+
*/
|
|
6347
|
+
/**
|
|
6348
|
+
*
|
|
6349
|
+
* @export
|
|
6350
|
+
* @interface TemplateInfo
|
|
6351
|
+
*/
|
|
6352
|
+
interface TemplateInfo {
|
|
6353
|
+
/**
|
|
6354
|
+
* 模板 ID
|
|
6355
|
+
* @type {string}
|
|
6356
|
+
* @memberof TemplateInfo
|
|
6357
|
+
*/
|
|
6358
|
+
id: string;
|
|
6359
|
+
/**
|
|
6360
|
+
* 模板名称
|
|
6361
|
+
* @type {string}
|
|
6362
|
+
* @memberof TemplateInfo
|
|
6363
|
+
*/
|
|
6364
|
+
name: string;
|
|
6365
|
+
/**
|
|
6366
|
+
* 模板描述
|
|
6367
|
+
* @type {string}
|
|
6368
|
+
* @memberof TemplateInfo
|
|
6369
|
+
*/
|
|
6370
|
+
description?: string;
|
|
6371
|
+
/**
|
|
6372
|
+
* 缩略图 URL
|
|
6373
|
+
* @type {string}
|
|
6374
|
+
* @memberof TemplateInfo
|
|
6375
|
+
*/
|
|
6376
|
+
thumbnail?: string;
|
|
6377
|
+
/**
|
|
6378
|
+
* 模板状态
|
|
6379
|
+
* @type {string}
|
|
6380
|
+
* @memberof TemplateInfo
|
|
6381
|
+
*/
|
|
6382
|
+
status: TemplateInfoStatusEnum;
|
|
6383
|
+
/**
|
|
6384
|
+
* 标签
|
|
6385
|
+
* @type {Array<string>}
|
|
6386
|
+
* @memberof TemplateInfo
|
|
6387
|
+
*/
|
|
6388
|
+
tags?: Array<string>;
|
|
6389
|
+
/**
|
|
6390
|
+
* 创建时间
|
|
6391
|
+
* @type {Date}
|
|
6392
|
+
* @memberof TemplateInfo
|
|
6393
|
+
*/
|
|
6394
|
+
createdAt: Date;
|
|
6395
|
+
/**
|
|
6396
|
+
* 更新时间
|
|
6397
|
+
* @type {Date}
|
|
6398
|
+
* @memberof TemplateInfo
|
|
6399
|
+
*/
|
|
6400
|
+
updatedAt?: Date;
|
|
6401
|
+
/**
|
|
6402
|
+
* 创建者 ID
|
|
6403
|
+
* @type {string}
|
|
6404
|
+
* @memberof TemplateInfo
|
|
6405
|
+
*/
|
|
6406
|
+
createdBy?: string;
|
|
6407
|
+
/**
|
|
6408
|
+
* 更新者 ID
|
|
6409
|
+
* @type {string}
|
|
6410
|
+
* @memberof TemplateInfo
|
|
6411
|
+
*/
|
|
6412
|
+
updatedBy?: string;
|
|
5868
6413
|
}
|
|
5869
6414
|
/**
|
|
5870
|
-
*
|
|
6415
|
+
* @export
|
|
5871
6416
|
*/
|
|
5872
|
-
declare
|
|
5873
|
-
|
|
5874
|
-
|
|
5875
|
-
|
|
6417
|
+
declare const TemplateInfoStatusEnum: {
|
|
6418
|
+
readonly ACTIVE: "active";
|
|
6419
|
+
readonly INACTIVE: "inactive";
|
|
6420
|
+
readonly ARCHIVED: "archived";
|
|
6421
|
+
};
|
|
6422
|
+
type TemplateInfoStatusEnum = typeof TemplateInfoStatusEnum[keyof typeof TemplateInfoStatusEnum];
|
|
6423
|
+
/**
|
|
6424
|
+
* Check if a given object implements the TemplateInfo interface.
|
|
6425
|
+
*/
|
|
6426
|
+
declare function instanceOfTemplateInfo(value: object): boolean;
|
|
6427
|
+
declare function TemplateInfoFromJSON(json: any): TemplateInfo;
|
|
6428
|
+
declare function TemplateInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): TemplateInfo;
|
|
6429
|
+
declare function TemplateInfoToJSON(value?: TemplateInfo | null): any;
|
|
5876
6430
|
|
|
5877
6431
|
/**
|
|
5878
6432
|
* DJVLC Admin API
|
|
@@ -5885,41 +6439,33 @@ declare function RollbackRequestToJSON(value?: RollbackRequest | null): any;
|
|
|
5885
6439
|
* https://openapi-generator.tech
|
|
5886
6440
|
* Do not edit the class manually.
|
|
5887
6441
|
*/
|
|
6442
|
+
|
|
5888
6443
|
/**
|
|
5889
|
-
*
|
|
6444
|
+
*
|
|
5890
6445
|
* @export
|
|
5891
|
-
* @interface
|
|
6446
|
+
* @interface TemplateListResponseAllOfData
|
|
5892
6447
|
*/
|
|
5893
|
-
interface
|
|
6448
|
+
interface TemplateListResponseAllOfData {
|
|
5894
6449
|
/**
|
|
5895
|
-
* 页面 Schema(PageSchema)。完整定义与校验见 packages/schemas/schemas/page-schema.json 与 types/src/page/schema.ts。
|
|
5896
6450
|
*
|
|
5897
|
-
* @type {
|
|
5898
|
-
* @memberof
|
|
5899
|
-
*/
|
|
5900
|
-
schema: {
|
|
5901
|
-
[key: string]: any;
|
|
5902
|
-
};
|
|
5903
|
-
/**
|
|
5904
|
-
* 基于的版本号(用于冲突检测,UniqueId)
|
|
5905
|
-
* @type {string}
|
|
5906
|
-
* @memberof SaveDraftRequest
|
|
6451
|
+
* @type {Array<TemplateInfo>}
|
|
6452
|
+
* @memberof TemplateListResponseAllOfData
|
|
5907
6453
|
*/
|
|
5908
|
-
|
|
6454
|
+
items: Array<TemplateInfo>;
|
|
5909
6455
|
/**
|
|
5910
|
-
*
|
|
5911
|
-
* @type {
|
|
5912
|
-
* @memberof
|
|
6456
|
+
*
|
|
6457
|
+
* @type {PaginationMeta}
|
|
6458
|
+
* @memberof TemplateListResponseAllOfData
|
|
5913
6459
|
*/
|
|
5914
|
-
|
|
6460
|
+
meta: PaginationMeta;
|
|
5915
6461
|
}
|
|
5916
6462
|
/**
|
|
5917
|
-
* Check if a given object implements the
|
|
6463
|
+
* Check if a given object implements the TemplateListResponseAllOfData interface.
|
|
5918
6464
|
*/
|
|
5919
|
-
declare function
|
|
5920
|
-
declare function
|
|
5921
|
-
declare function
|
|
5922
|
-
declare function
|
|
6465
|
+
declare function instanceOfTemplateListResponseAllOfData(value: object): boolean;
|
|
6466
|
+
declare function TemplateListResponseAllOfDataFromJSON(json: any): TemplateListResponseAllOfData;
|
|
6467
|
+
declare function TemplateListResponseAllOfDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): TemplateListResponseAllOfData;
|
|
6468
|
+
declare function TemplateListResponseAllOfDataToJSON(value?: TemplateListResponseAllOfData | null): any;
|
|
5923
6469
|
|
|
5924
6470
|
/**
|
|
5925
6471
|
* DJVLC Admin API
|
|
@@ -5932,38 +6478,63 @@ declare function SaveDraftRequestToJSON(value?: SaveDraftRequest | null): any;
|
|
|
5932
6478
|
* https://openapi-generator.tech
|
|
5933
6479
|
* Do not edit the class manually.
|
|
5934
6480
|
*/
|
|
6481
|
+
|
|
5935
6482
|
/**
|
|
5936
6483
|
*
|
|
5937
6484
|
* @export
|
|
5938
|
-
* @interface
|
|
6485
|
+
* @interface TemplateListResponse
|
|
5939
6486
|
*/
|
|
5940
|
-
interface
|
|
6487
|
+
interface TemplateListResponse {
|
|
5941
6488
|
/**
|
|
5942
|
-
*
|
|
6489
|
+
* 是否成功(固定为 true)
|
|
5943
6490
|
* @type {boolean}
|
|
5944
|
-
* @memberof
|
|
6491
|
+
* @memberof TemplateListResponse
|
|
5945
6492
|
*/
|
|
5946
|
-
|
|
6493
|
+
success: boolean;
|
|
5947
6494
|
/**
|
|
5948
|
-
*
|
|
6495
|
+
* 业务状态码
|
|
5949
6496
|
* @type {string}
|
|
5950
|
-
* @memberof
|
|
6497
|
+
* @memberof TemplateListResponse
|
|
5951
6498
|
*/
|
|
5952
|
-
|
|
6499
|
+
code: string;
|
|
5953
6500
|
/**
|
|
5954
|
-
*
|
|
6501
|
+
* 响应消息
|
|
5955
6502
|
* @type {string}
|
|
5956
|
-
* @memberof
|
|
6503
|
+
* @memberof TemplateListResponse
|
|
5957
6504
|
*/
|
|
5958
|
-
|
|
6505
|
+
message: string;
|
|
6506
|
+
/**
|
|
6507
|
+
*
|
|
6508
|
+
* @type {TemplateListResponseAllOfData}
|
|
6509
|
+
* @memberof TemplateListResponse
|
|
6510
|
+
*/
|
|
6511
|
+
data: TemplateListResponseAllOfData;
|
|
6512
|
+
/**
|
|
6513
|
+
* 响应时间戳(Unix 毫秒时间戳,number)
|
|
6514
|
+
* @type {number}
|
|
6515
|
+
* @memberof TemplateListResponse
|
|
6516
|
+
*/
|
|
6517
|
+
timestamp: number;
|
|
6518
|
+
/**
|
|
6519
|
+
* 请求路径
|
|
6520
|
+
* @type {string}
|
|
6521
|
+
* @memberof TemplateListResponse
|
|
6522
|
+
*/
|
|
6523
|
+
path: string;
|
|
6524
|
+
/**
|
|
6525
|
+
* 请求 ID(可选)
|
|
6526
|
+
* @type {string}
|
|
6527
|
+
* @memberof TemplateListResponse
|
|
6528
|
+
*/
|
|
6529
|
+
requestId?: string;
|
|
5959
6530
|
}
|
|
5960
6531
|
/**
|
|
5961
|
-
* Check if a given object implements the
|
|
6532
|
+
* Check if a given object implements the TemplateListResponse interface.
|
|
5962
6533
|
*/
|
|
5963
|
-
declare function
|
|
5964
|
-
declare function
|
|
5965
|
-
declare function
|
|
5966
|
-
declare function
|
|
6534
|
+
declare function instanceOfTemplateListResponse(value: object): boolean;
|
|
6535
|
+
declare function TemplateListResponseFromJSON(json: any): TemplateListResponse;
|
|
6536
|
+
declare function TemplateListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TemplateListResponse;
|
|
6537
|
+
declare function TemplateListResponseToJSON(value?: TemplateListResponse | null): any;
|
|
5967
6538
|
|
|
5968
6539
|
/**
|
|
5969
6540
|
* DJVLC Admin API
|
|
@@ -5976,62 +6547,63 @@ declare function SetKillSwitchRequestToJSON(value?: SetKillSwitchRequest | null)
|
|
|
5976
6547
|
* https://openapi-generator.tech
|
|
5977
6548
|
* Do not edit the class manually.
|
|
5978
6549
|
*/
|
|
6550
|
+
|
|
5979
6551
|
/**
|
|
5980
|
-
*
|
|
6552
|
+
*
|
|
5981
6553
|
* @export
|
|
5982
|
-
* @interface
|
|
6554
|
+
* @interface TemplateResponse
|
|
5983
6555
|
*/
|
|
5984
|
-
interface
|
|
6556
|
+
interface TemplateResponse {
|
|
5985
6557
|
/**
|
|
5986
6558
|
* 是否成功(固定为 true)
|
|
5987
6559
|
* @type {boolean}
|
|
5988
|
-
* @memberof
|
|
6560
|
+
* @memberof TemplateResponse
|
|
5989
6561
|
*/
|
|
5990
6562
|
success: boolean;
|
|
5991
6563
|
/**
|
|
5992
6564
|
* 业务状态码
|
|
5993
6565
|
* @type {string}
|
|
5994
|
-
* @memberof
|
|
6566
|
+
* @memberof TemplateResponse
|
|
5995
6567
|
*/
|
|
5996
6568
|
code: string;
|
|
5997
6569
|
/**
|
|
5998
6570
|
* 响应消息
|
|
5999
6571
|
* @type {string}
|
|
6000
|
-
* @memberof
|
|
6572
|
+
* @memberof TemplateResponse
|
|
6001
6573
|
*/
|
|
6002
6574
|
message: string;
|
|
6003
6575
|
/**
|
|
6004
|
-
*
|
|
6005
|
-
* @type {
|
|
6006
|
-
* @memberof
|
|
6576
|
+
*
|
|
6577
|
+
* @type {TemplateInfo}
|
|
6578
|
+
* @memberof TemplateResponse
|
|
6007
6579
|
*/
|
|
6008
|
-
data:
|
|
6580
|
+
data: TemplateInfo;
|
|
6009
6581
|
/**
|
|
6010
6582
|
* 响应时间戳(Unix 毫秒时间戳,number)
|
|
6011
6583
|
* @type {number}
|
|
6012
|
-
* @memberof
|
|
6584
|
+
* @memberof TemplateResponse
|
|
6013
6585
|
*/
|
|
6014
6586
|
timestamp: number;
|
|
6015
6587
|
/**
|
|
6016
6588
|
* 请求路径
|
|
6017
6589
|
* @type {string}
|
|
6018
|
-
* @memberof
|
|
6590
|
+
* @memberof TemplateResponse
|
|
6019
6591
|
*/
|
|
6020
6592
|
path: string;
|
|
6021
6593
|
/**
|
|
6022
6594
|
* 请求 ID(可选)
|
|
6023
6595
|
* @type {string}
|
|
6024
|
-
* @memberof
|
|
6596
|
+
* @memberof TemplateResponse
|
|
6025
6597
|
*/
|
|
6026
6598
|
requestId?: string;
|
|
6027
6599
|
}
|
|
6028
6600
|
/**
|
|
6029
|
-
* Check if a given object implements the
|
|
6601
|
+
* Check if a given object implements the TemplateResponse interface.
|
|
6030
6602
|
*/
|
|
6031
|
-
declare function
|
|
6032
|
-
declare function
|
|
6033
|
-
declare function
|
|
6034
|
-
declare function
|
|
6603
|
+
declare function instanceOfTemplateResponse(value: object): boolean;
|
|
6604
|
+
declare function TemplateResponseFromJSON(json: any): TemplateResponse;
|
|
6605
|
+
declare function TemplateResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TemplateResponse;
|
|
6606
|
+
declare function TemplateResponseToJSON(value?: TemplateResponse | null): any;
|
|
6035
6607
|
|
|
6036
6608
|
/**
|
|
6037
6609
|
* DJVLC Admin API
|
|
@@ -6455,6 +7027,71 @@ declare function UpdateRolloutStrategyRequestFromJSON(json: any): UpdateRolloutS
|
|
|
6455
7027
|
declare function UpdateRolloutStrategyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateRolloutStrategyRequest;
|
|
6456
7028
|
declare function UpdateRolloutStrategyRequestToJSON(value?: UpdateRolloutStrategyRequest | null): any;
|
|
6457
7029
|
|
|
7030
|
+
/**
|
|
7031
|
+
* DJVLC Admin API
|
|
7032
|
+
* DJVLC 低代码平台管理端 API(控制面) 提供以下功能: - 页面管理(创建、更新、删除) - 草稿管理(保存、获取) - 版本管理(发布、回滚) - 预览管理(生成预览 Token) - 组件管理(状态控制) - 灰度发布(Rollout) - Definition 管理(Action/DataQuery) - 活动管理 - 审计日志 - 运维操作(Kill Switch) - 健康检查 ## API 设计规范 - 只使用 GET 和 POST 方法 - GET:查询操作 - POST:创建、更新、删除等变更操作 - 使用语义化路由(如 /update, /delete, /publish) 核心原则: - 控制面复杂,但可审计 - 所有写操作可追溯、可回滚、可审计 - Definition 版本化,确保回滚不失真
|
|
7033
|
+
*
|
|
7034
|
+
* The version of the OpenAPI document: 1.0.0
|
|
7035
|
+
* Contact: dev@djvlc.com
|
|
7036
|
+
*
|
|
7037
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7038
|
+
* https://openapi-generator.tech
|
|
7039
|
+
* Do not edit the class manually.
|
|
7040
|
+
*/
|
|
7041
|
+
/**
|
|
7042
|
+
*
|
|
7043
|
+
* @export
|
|
7044
|
+
* @interface UpdateTemplateRequest
|
|
7045
|
+
*/
|
|
7046
|
+
interface UpdateTemplateRequest {
|
|
7047
|
+
/**
|
|
7048
|
+
* 模板名称
|
|
7049
|
+
* @type {string}
|
|
7050
|
+
* @memberof UpdateTemplateRequest
|
|
7051
|
+
*/
|
|
7052
|
+
name?: string;
|
|
7053
|
+
/**
|
|
7054
|
+
* 模板描述
|
|
7055
|
+
* @type {string}
|
|
7056
|
+
* @memberof UpdateTemplateRequest
|
|
7057
|
+
*/
|
|
7058
|
+
description?: string;
|
|
7059
|
+
/**
|
|
7060
|
+
* 缩略图 URL
|
|
7061
|
+
* @type {string}
|
|
7062
|
+
* @memberof UpdateTemplateRequest
|
|
7063
|
+
*/
|
|
7064
|
+
thumbnail?: string;
|
|
7065
|
+
/**
|
|
7066
|
+
* 标签
|
|
7067
|
+
* @type {Array<string>}
|
|
7068
|
+
* @memberof UpdateTemplateRequest
|
|
7069
|
+
*/
|
|
7070
|
+
tags?: Array<string>;
|
|
7071
|
+
/**
|
|
7072
|
+
* 模板状态
|
|
7073
|
+
* @type {string}
|
|
7074
|
+
* @memberof UpdateTemplateRequest
|
|
7075
|
+
*/
|
|
7076
|
+
status?: UpdateTemplateRequestStatusEnum;
|
|
7077
|
+
}
|
|
7078
|
+
/**
|
|
7079
|
+
* @export
|
|
7080
|
+
*/
|
|
7081
|
+
declare const UpdateTemplateRequestStatusEnum: {
|
|
7082
|
+
readonly ACTIVE: "active";
|
|
7083
|
+
readonly INACTIVE: "inactive";
|
|
7084
|
+
readonly ARCHIVED: "archived";
|
|
7085
|
+
};
|
|
7086
|
+
type UpdateTemplateRequestStatusEnum = typeof UpdateTemplateRequestStatusEnum[keyof typeof UpdateTemplateRequestStatusEnum];
|
|
7087
|
+
/**
|
|
7088
|
+
* Check if a given object implements the UpdateTemplateRequest interface.
|
|
7089
|
+
*/
|
|
7090
|
+
declare function instanceOfUpdateTemplateRequest(value: object): boolean;
|
|
7091
|
+
declare function UpdateTemplateRequestFromJSON(json: any): UpdateTemplateRequest;
|
|
7092
|
+
declare function UpdateTemplateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateTemplateRequest;
|
|
7093
|
+
declare function UpdateTemplateRequestToJSON(value?: UpdateTemplateRequest | null): any;
|
|
7094
|
+
|
|
6458
7095
|
/**
|
|
6459
7096
|
* DJVLC Admin API
|
|
6460
7097
|
* DJVLC 低代码平台管理端 API(控制面) 提供以下功能: - 页面管理(创建、更新、删除) - 草稿管理(保存、获取) - 版本管理(发布、回滚) - 预览管理(生成预览 Token) - 组件管理(状态控制) - 灰度发布(Rollout) - Definition 管理(Action/DataQuery) - 活动管理 - 审计日志 - 运维操作(Kill Switch) - 健康检查 ## API 设计规范 - 只使用 GET 和 POST 方法 - GET:查询操作 - POST:创建、更新、删除等变更操作 - 使用语义化路由(如 /update, /delete, /publish) 核心原则: - 控制面复杂,但可审计 - 所有写操作可追溯、可回滚、可审计 - Definition 版本化,确保回滚不失真
|
|
@@ -6470,22 +7107,91 @@ declare function UpdateRolloutStrategyRequestToJSON(value?: UpdateRolloutStrateg
|
|
|
6470
7107
|
/**
|
|
6471
7108
|
*
|
|
6472
7109
|
* @export
|
|
6473
|
-
* @interface
|
|
7110
|
+
* @interface VersionListResponseAllOfData
|
|
6474
7111
|
*/
|
|
6475
|
-
interface
|
|
7112
|
+
interface VersionListResponseAllOfData {
|
|
6476
7113
|
/**
|
|
6477
7114
|
*
|
|
6478
7115
|
* @type {Array<VersionInfo>}
|
|
6479
|
-
* @memberof
|
|
7116
|
+
* @memberof VersionListResponseAllOfData
|
|
6480
7117
|
*/
|
|
6481
|
-
|
|
7118
|
+
items: Array<VersionInfo>;
|
|
6482
7119
|
/**
|
|
6483
7120
|
*
|
|
6484
7121
|
* @type {PaginationMeta}
|
|
6485
|
-
* @memberof
|
|
7122
|
+
* @memberof VersionListResponseAllOfData
|
|
6486
7123
|
*/
|
|
6487
7124
|
meta: PaginationMeta;
|
|
6488
7125
|
}
|
|
7126
|
+
/**
|
|
7127
|
+
* Check if a given object implements the VersionListResponseAllOfData interface.
|
|
7128
|
+
*/
|
|
7129
|
+
declare function instanceOfVersionListResponseAllOfData(value: object): boolean;
|
|
7130
|
+
declare function VersionListResponseAllOfDataFromJSON(json: any): VersionListResponseAllOfData;
|
|
7131
|
+
declare function VersionListResponseAllOfDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): VersionListResponseAllOfData;
|
|
7132
|
+
declare function VersionListResponseAllOfDataToJSON(value?: VersionListResponseAllOfData | null): any;
|
|
7133
|
+
|
|
7134
|
+
/**
|
|
7135
|
+
* DJVLC Admin API
|
|
7136
|
+
* DJVLC 低代码平台管理端 API(控制面) 提供以下功能: - 页面管理(创建、更新、删除) - 草稿管理(保存、获取) - 版本管理(发布、回滚) - 预览管理(生成预览 Token) - 组件管理(状态控制) - 灰度发布(Rollout) - Definition 管理(Action/DataQuery) - 活动管理 - 审计日志 - 运维操作(Kill Switch) - 健康检查 ## API 设计规范 - 只使用 GET 和 POST 方法 - GET:查询操作 - POST:创建、更新、删除等变更操作 - 使用语义化路由(如 /update, /delete, /publish) 核心原则: - 控制面复杂,但可审计 - 所有写操作可追溯、可回滚、可审计 - Definition 版本化,确保回滚不失真
|
|
7137
|
+
*
|
|
7138
|
+
* The version of the OpenAPI document: 1.0.0
|
|
7139
|
+
* Contact: dev@djvlc.com
|
|
7140
|
+
*
|
|
7141
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7142
|
+
* https://openapi-generator.tech
|
|
7143
|
+
* Do not edit the class manually.
|
|
7144
|
+
*/
|
|
7145
|
+
|
|
7146
|
+
/**
|
|
7147
|
+
*
|
|
7148
|
+
* @export
|
|
7149
|
+
* @interface VersionListResponse
|
|
7150
|
+
*/
|
|
7151
|
+
interface VersionListResponse {
|
|
7152
|
+
/**
|
|
7153
|
+
* 是否成功(固定为 true)
|
|
7154
|
+
* @type {boolean}
|
|
7155
|
+
* @memberof VersionListResponse
|
|
7156
|
+
*/
|
|
7157
|
+
success: boolean;
|
|
7158
|
+
/**
|
|
7159
|
+
* 业务状态码
|
|
7160
|
+
* @type {string}
|
|
7161
|
+
* @memberof VersionListResponse
|
|
7162
|
+
*/
|
|
7163
|
+
code: string;
|
|
7164
|
+
/**
|
|
7165
|
+
* 响应消息
|
|
7166
|
+
* @type {string}
|
|
7167
|
+
* @memberof VersionListResponse
|
|
7168
|
+
*/
|
|
7169
|
+
message: string;
|
|
7170
|
+
/**
|
|
7171
|
+
*
|
|
7172
|
+
* @type {VersionListResponseAllOfData}
|
|
7173
|
+
* @memberof VersionListResponse
|
|
7174
|
+
*/
|
|
7175
|
+
data: VersionListResponseAllOfData;
|
|
7176
|
+
/**
|
|
7177
|
+
* 响应时间戳(Unix 毫秒时间戳,number)
|
|
7178
|
+
* @type {number}
|
|
7179
|
+
* @memberof VersionListResponse
|
|
7180
|
+
*/
|
|
7181
|
+
timestamp: number;
|
|
7182
|
+
/**
|
|
7183
|
+
* 请求路径
|
|
7184
|
+
* @type {string}
|
|
7185
|
+
* @memberof VersionListResponse
|
|
7186
|
+
*/
|
|
7187
|
+
path: string;
|
|
7188
|
+
/**
|
|
7189
|
+
* 请求 ID(可选)
|
|
7190
|
+
* @type {string}
|
|
7191
|
+
* @memberof VersionListResponse
|
|
7192
|
+
*/
|
|
7193
|
+
requestId?: string;
|
|
7194
|
+
}
|
|
6489
7195
|
/**
|
|
6490
7196
|
* Check if a given object implements the VersionListResponse interface.
|
|
6491
7197
|
*/
|
|
@@ -6508,80 +7214,80 @@ declare function VersionListResponseToJSON(value?: VersionListResponse | null):
|
|
|
6508
7214
|
/**
|
|
6509
7215
|
*
|
|
6510
7216
|
* @export
|
|
6511
|
-
* @interface
|
|
7217
|
+
* @interface VersionResponseAllOfData
|
|
6512
7218
|
*/
|
|
6513
|
-
interface
|
|
7219
|
+
interface VersionResponseAllOfData {
|
|
6514
7220
|
/**
|
|
6515
7221
|
* 版本 ID
|
|
6516
7222
|
* @type {string}
|
|
6517
|
-
* @memberof
|
|
7223
|
+
* @memberof VersionResponseAllOfData
|
|
6518
7224
|
*/
|
|
6519
7225
|
id: string;
|
|
6520
7226
|
/**
|
|
6521
7227
|
* 语义化版本号
|
|
6522
7228
|
* @type {string}
|
|
6523
|
-
* @memberof
|
|
7229
|
+
* @memberof VersionResponseAllOfData
|
|
6524
7230
|
*/
|
|
6525
7231
|
version: string;
|
|
6526
7232
|
/**
|
|
6527
7233
|
* 版本状态
|
|
6528
7234
|
* @type {string}
|
|
6529
|
-
* @memberof
|
|
7235
|
+
* @memberof VersionResponseAllOfData
|
|
6530
7236
|
*/
|
|
6531
|
-
status:
|
|
7237
|
+
status: VersionResponseAllOfDataStatusEnum;
|
|
6532
7238
|
/**
|
|
6533
7239
|
* 变更日志
|
|
6534
7240
|
* @type {string}
|
|
6535
|
-
* @memberof
|
|
7241
|
+
* @memberof VersionResponseAllOfData
|
|
6536
7242
|
*/
|
|
6537
7243
|
changelog?: string;
|
|
6538
7244
|
/**
|
|
6539
7245
|
* 完整性哈希
|
|
6540
7246
|
* @type {string}
|
|
6541
|
-
* @memberof
|
|
7247
|
+
* @memberof VersionResponseAllOfData
|
|
6542
7248
|
*/
|
|
6543
7249
|
integrity?: string;
|
|
6544
7250
|
/**
|
|
6545
7251
|
* 创建时间
|
|
6546
7252
|
* @type {Date}
|
|
6547
|
-
* @memberof
|
|
7253
|
+
* @memberof VersionResponseAllOfData
|
|
6548
7254
|
*/
|
|
6549
7255
|
createdAt: Date;
|
|
6550
7256
|
/**
|
|
6551
7257
|
* 创建者 ID
|
|
6552
7258
|
* @type {string}
|
|
6553
|
-
* @memberof
|
|
7259
|
+
* @memberof VersionResponseAllOfData
|
|
6554
7260
|
*/
|
|
6555
7261
|
createdBy?: string;
|
|
6556
7262
|
/**
|
|
6557
7263
|
* 灰度发布百分比
|
|
6558
7264
|
* @type {number}
|
|
6559
|
-
* @memberof
|
|
7265
|
+
* @memberof VersionResponseAllOfData
|
|
6560
7266
|
*/
|
|
6561
7267
|
rolloutPercentage?: number;
|
|
6562
7268
|
/**
|
|
6563
|
-
* 页面 Schema
|
|
7269
|
+
* 页面 Schema 内容(PageSchema snapshot)
|
|
6564
7270
|
* @type {object}
|
|
6565
|
-
* @memberof
|
|
7271
|
+
* @memberof VersionResponseAllOfData
|
|
6566
7272
|
*/
|
|
6567
7273
|
content?: object;
|
|
6568
7274
|
}
|
|
6569
7275
|
/**
|
|
6570
7276
|
* @export
|
|
6571
7277
|
*/
|
|
6572
|
-
declare const
|
|
7278
|
+
declare const VersionResponseAllOfDataStatusEnum: {
|
|
6573
7279
|
readonly ACTIVE: "active";
|
|
6574
7280
|
readonly INACTIVE: "inactive";
|
|
6575
7281
|
readonly DEPRECATED: "deprecated";
|
|
6576
7282
|
};
|
|
6577
|
-
type
|
|
7283
|
+
type VersionResponseAllOfDataStatusEnum = typeof VersionResponseAllOfDataStatusEnum[keyof typeof VersionResponseAllOfDataStatusEnum];
|
|
6578
7284
|
/**
|
|
6579
|
-
* Check if a given object implements the
|
|
7285
|
+
* Check if a given object implements the VersionResponseAllOfData interface.
|
|
6580
7286
|
*/
|
|
6581
|
-
declare function
|
|
6582
|
-
declare function
|
|
6583
|
-
declare function
|
|
6584
|
-
declare function
|
|
7287
|
+
declare function instanceOfVersionResponseAllOfData(value: object): boolean;
|
|
7288
|
+
declare function VersionResponseAllOfDataFromJSON(json: any): VersionResponseAllOfData;
|
|
7289
|
+
declare function VersionResponseAllOfDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): VersionResponseAllOfData;
|
|
7290
|
+
declare function VersionResponseAllOfDataToJSON(value?: VersionResponseAllOfData | null): any;
|
|
6585
7291
|
|
|
6586
7292
|
/**
|
|
6587
7293
|
* DJVLC Admin API
|
|
@@ -6601,12 +7307,48 @@ declare function VersionResponseDataToJSON(value?: VersionResponseData | null):
|
|
|
6601
7307
|
* @interface VersionResponse
|
|
6602
7308
|
*/
|
|
6603
7309
|
interface VersionResponse {
|
|
7310
|
+
/**
|
|
7311
|
+
* 是否成功(固定为 true)
|
|
7312
|
+
* @type {boolean}
|
|
7313
|
+
* @memberof VersionResponse
|
|
7314
|
+
*/
|
|
7315
|
+
success: boolean;
|
|
7316
|
+
/**
|
|
7317
|
+
* 业务状态码
|
|
7318
|
+
* @type {string}
|
|
7319
|
+
* @memberof VersionResponse
|
|
7320
|
+
*/
|
|
7321
|
+
code: string;
|
|
7322
|
+
/**
|
|
7323
|
+
* 响应消息
|
|
7324
|
+
* @type {string}
|
|
7325
|
+
* @memberof VersionResponse
|
|
7326
|
+
*/
|
|
7327
|
+
message: string;
|
|
6604
7328
|
/**
|
|
6605
7329
|
*
|
|
6606
|
-
* @type {
|
|
7330
|
+
* @type {VersionResponseAllOfData}
|
|
7331
|
+
* @memberof VersionResponse
|
|
7332
|
+
*/
|
|
7333
|
+
data: VersionResponseAllOfData;
|
|
7334
|
+
/**
|
|
7335
|
+
* 响应时间戳(Unix 毫秒时间戳,number)
|
|
7336
|
+
* @type {number}
|
|
7337
|
+
* @memberof VersionResponse
|
|
7338
|
+
*/
|
|
7339
|
+
timestamp: number;
|
|
7340
|
+
/**
|
|
7341
|
+
* 请求路径
|
|
7342
|
+
* @type {string}
|
|
7343
|
+
* @memberof VersionResponse
|
|
7344
|
+
*/
|
|
7345
|
+
path: string;
|
|
7346
|
+
/**
|
|
7347
|
+
* 请求 ID(可选)
|
|
7348
|
+
* @type {string}
|
|
6607
7349
|
* @memberof VersionResponse
|
|
6608
7350
|
*/
|
|
6609
|
-
|
|
7351
|
+
requestId?: string;
|
|
6610
7352
|
}
|
|
6611
7353
|
/**
|
|
6612
7354
|
* Check if a given object implements the VersionResponse interface.
|
|
@@ -7037,11 +7779,11 @@ type ListAuditLogsRiskLevelEnum = typeof ListAuditLogsRiskLevelEnum[keyof typeof
|
|
|
7037
7779
|
interface ListComponentVersionsRequest {
|
|
7038
7780
|
componentId: string;
|
|
7039
7781
|
page?: number;
|
|
7040
|
-
|
|
7782
|
+
pageSize?: number;
|
|
7041
7783
|
}
|
|
7042
7784
|
interface ListComponentsRequest {
|
|
7043
7785
|
page?: number;
|
|
7044
|
-
|
|
7786
|
+
pageSize?: number;
|
|
7045
7787
|
category?: string;
|
|
7046
7788
|
status?: ListComponentsStatusEnum;
|
|
7047
7789
|
}
|
|
@@ -7062,7 +7804,7 @@ interface ComponentsApiInterface {
|
|
|
7062
7804
|
* @summary 获取组件版本列表
|
|
7063
7805
|
* @param {string} componentId 组件 ID
|
|
7064
7806
|
* @param {number} [page] 页码
|
|
7065
|
-
* @param {number} [
|
|
7807
|
+
* @param {number} [pageSize] 每页数量
|
|
7066
7808
|
* @param {*} [options] Override http request option.
|
|
7067
7809
|
* @throws {RequiredError}
|
|
7068
7810
|
* @memberof ComponentsApiInterface
|
|
@@ -7077,7 +7819,7 @@ interface ComponentsApiInterface {
|
|
|
7077
7819
|
* 获取平台中所有可用的组件
|
|
7078
7820
|
* @summary 获取组件列表
|
|
7079
7821
|
* @param {number} [page] 页码
|
|
7080
|
-
* @param {number} [
|
|
7822
|
+
* @param {number} [pageSize] 每页数量
|
|
7081
7823
|
* @param {string} [category] 按分类筛选
|
|
7082
7824
|
* @param {'active' | 'deprecated' | 'disabled'} [status] 按状态筛选
|
|
7083
7825
|
* @param {*} [options] Override http request option.
|
|
@@ -7635,6 +8377,8 @@ type ListDataQueryDefinitionsStatusEnum = typeof ListDataQueryDefinitionsStatusE
|
|
|
7635
8377
|
|
|
7636
8378
|
interface DiscardDraftOperationRequest {
|
|
7637
8379
|
pageId: string;
|
|
8380
|
+
idempotencyKey?: string;
|
|
8381
|
+
xTraceId?: string;
|
|
7638
8382
|
discardDraftRequest?: DiscardDraftRequest;
|
|
7639
8383
|
}
|
|
7640
8384
|
interface GetDraftRequest {
|
|
@@ -7643,6 +8387,8 @@ interface GetDraftRequest {
|
|
|
7643
8387
|
interface SaveDraftOperationRequest {
|
|
7644
8388
|
pageId: string;
|
|
7645
8389
|
saveDraftRequest: SaveDraftRequest;
|
|
8390
|
+
idempotencyKey?: string;
|
|
8391
|
+
xTraceId?: string;
|
|
7646
8392
|
}
|
|
7647
8393
|
/**
|
|
7648
8394
|
* DraftsApi - interface
|
|
@@ -7655,6 +8401,8 @@ interface DraftsApiInterface {
|
|
|
7655
8401
|
* 丢弃当前草稿,恢复到最后发布的版本
|
|
7656
8402
|
* @summary 丢弃草稿
|
|
7657
8403
|
* @param {string} pageId 页面 ID
|
|
8404
|
+
* @param {string} [idempotencyKey] 幂等键(写操作防重复提交,客户端生成唯一键)
|
|
8405
|
+
* @param {string} [xTraceId] 分布式追踪 ID(OTel traceparent 或 traceId,全链路贯穿)
|
|
7658
8406
|
* @param {DiscardDraftRequest} [discardDraftRequest]
|
|
7659
8407
|
* @param {*} [options] Override http request option.
|
|
7660
8408
|
* @throws {RequiredError}
|
|
@@ -7685,6 +8433,8 @@ interface DraftsApiInterface {
|
|
|
7685
8433
|
* @summary 保存页面草稿
|
|
7686
8434
|
* @param {string} pageId 页面 ID
|
|
7687
8435
|
* @param {SaveDraftRequest} saveDraftRequest
|
|
8436
|
+
* @param {string} [idempotencyKey] 幂等键(写操作防重复提交,客户端生成唯一键)
|
|
8437
|
+
* @param {string} [xTraceId] 分布式追踪 ID(OTel traceparent 或 traceId,全链路贯穿)
|
|
7688
8438
|
* @param {*} [options] Override http request option.
|
|
7689
8439
|
* @throws {RequiredError}
|
|
7690
8440
|
* @memberof DraftsApiInterface
|
|
@@ -7973,19 +8723,29 @@ declare class OperationsApi extends BaseAPI implements OperationsApiInterface {
|
|
|
7973
8723
|
|
|
7974
8724
|
interface ArchivePageRequest {
|
|
7975
8725
|
pageId: string;
|
|
8726
|
+
idempotencyKey?: string;
|
|
8727
|
+
xTraceId?: string;
|
|
7976
8728
|
}
|
|
7977
8729
|
interface BatchDeletePagesOperationRequest {
|
|
7978
8730
|
batchDeletePagesRequest: BatchDeletePagesRequest;
|
|
8731
|
+
idempotencyKey?: string;
|
|
8732
|
+
xTraceId?: string;
|
|
7979
8733
|
}
|
|
7980
8734
|
interface CreatePageOperationRequest {
|
|
7981
8735
|
createPageRequest: CreatePageRequest;
|
|
8736
|
+
idempotencyKey?: string;
|
|
8737
|
+
xTraceId?: string;
|
|
7982
8738
|
}
|
|
7983
8739
|
interface DeletePageOperationRequest {
|
|
7984
8740
|
pageId: string;
|
|
8741
|
+
idempotencyKey?: string;
|
|
8742
|
+
xTraceId?: string;
|
|
7985
8743
|
deletePageRequest?: DeletePageRequest;
|
|
7986
8744
|
}
|
|
7987
8745
|
interface DuplicatePageRequest {
|
|
7988
8746
|
pageId: string;
|
|
8747
|
+
idempotencyKey?: string;
|
|
8748
|
+
xTraceId?: string;
|
|
7989
8749
|
}
|
|
7990
8750
|
interface GetPageRequest {
|
|
7991
8751
|
pageId: string;
|
|
@@ -7995,16 +8755,20 @@ interface GetPageStatsRequest {
|
|
|
7995
8755
|
}
|
|
7996
8756
|
interface ListPagesRequest {
|
|
7997
8757
|
page?: number;
|
|
7998
|
-
|
|
8758
|
+
pageSize?: number;
|
|
7999
8759
|
status?: ListPagesStatusEnum;
|
|
8000
8760
|
search?: string;
|
|
8001
8761
|
}
|
|
8002
8762
|
interface RestorePageRequest {
|
|
8003
8763
|
pageId: string;
|
|
8764
|
+
idempotencyKey?: string;
|
|
8765
|
+
xTraceId?: string;
|
|
8004
8766
|
}
|
|
8005
8767
|
interface UpdatePageOperationRequest {
|
|
8006
8768
|
pageId: string;
|
|
8007
8769
|
updatePageRequest: UpdatePageRequest;
|
|
8770
|
+
idempotencyKey?: string;
|
|
8771
|
+
xTraceId?: string;
|
|
8008
8772
|
}
|
|
8009
8773
|
/**
|
|
8010
8774
|
* PagesApi - interface
|
|
@@ -8017,6 +8781,8 @@ interface PagesApiInterface {
|
|
|
8017
8781
|
* 将页面归档,归档后页面不可编辑和发布
|
|
8018
8782
|
* @summary 归档页面
|
|
8019
8783
|
* @param {string} pageId 页面 ID
|
|
8784
|
+
* @param {string} [idempotencyKey] 幂等键(写操作防重复提交,客户端生成唯一键)
|
|
8785
|
+
* @param {string} [xTraceId] 分布式追踪 ID(OTel traceparent 或 traceId,全链路贯穿)
|
|
8020
8786
|
* @param {*} [options] Override http request option.
|
|
8021
8787
|
* @throws {RequiredError}
|
|
8022
8788
|
* @memberof PagesApiInterface
|
|
@@ -8031,6 +8797,8 @@ interface PagesApiInterface {
|
|
|
8031
8797
|
* 批量软删除页面(可恢复)
|
|
8032
8798
|
* @summary 批量删除页面
|
|
8033
8799
|
* @param {BatchDeletePagesRequest} batchDeletePagesRequest
|
|
8800
|
+
* @param {string} [idempotencyKey] 幂等键(写操作防重复提交,客户端生成唯一键)
|
|
8801
|
+
* @param {string} [xTraceId] 分布式追踪 ID(OTel traceparent 或 traceId,全链路贯穿)
|
|
8034
8802
|
* @param {*} [options] Override http request option.
|
|
8035
8803
|
* @throws {RequiredError}
|
|
8036
8804
|
* @memberof PagesApiInterface
|
|
@@ -8045,6 +8813,8 @@ interface PagesApiInterface {
|
|
|
8045
8813
|
* 创建一个新的页面,返回页面 ID
|
|
8046
8814
|
* @summary 创建新页面
|
|
8047
8815
|
* @param {CreatePageRequest} createPageRequest
|
|
8816
|
+
* @param {string} [idempotencyKey] 幂等键(写操作防重复提交,客户端生成唯一键)
|
|
8817
|
+
* @param {string} [xTraceId] 分布式追踪 ID(OTel traceparent 或 traceId,全链路贯穿)
|
|
8048
8818
|
* @param {*} [options] Override http request option.
|
|
8049
8819
|
* @throws {RequiredError}
|
|
8050
8820
|
* @memberof PagesApiInterface
|
|
@@ -8059,6 +8829,8 @@ interface PagesApiInterface {
|
|
|
8059
8829
|
* 软删除页面(可恢复)
|
|
8060
8830
|
* @summary 删除页面
|
|
8061
8831
|
* @param {string} pageId 页面 ID
|
|
8832
|
+
* @param {string} [idempotencyKey] 幂等键(写操作防重复提交,客户端生成唯一键)
|
|
8833
|
+
* @param {string} [xTraceId] 分布式追踪 ID(OTel traceparent 或 traceId,全链路贯穿)
|
|
8062
8834
|
* @param {DeletePageRequest} [deletePageRequest]
|
|
8063
8835
|
* @param {*} [options] Override http request option.
|
|
8064
8836
|
* @throws {RequiredError}
|
|
@@ -8074,6 +8846,8 @@ interface PagesApiInterface {
|
|
|
8074
8846
|
* 复制一个页面,生成新的页面副本
|
|
8075
8847
|
* @summary 复制页面
|
|
8076
8848
|
* @param {string} pageId 页面 ID
|
|
8849
|
+
* @param {string} [idempotencyKey] 幂等键(写操作防重复提交,客户端生成唯一键)
|
|
8850
|
+
* @param {string} [xTraceId] 分布式追踪 ID(OTel traceparent 或 traceId,全链路贯穿)
|
|
8077
8851
|
* @param {*} [options] Override http request option.
|
|
8078
8852
|
* @throws {RequiredError}
|
|
8079
8853
|
* @memberof PagesApiInterface
|
|
@@ -8116,7 +8890,7 @@ interface PagesApiInterface {
|
|
|
8116
8890
|
* 分页获取所有页面的基本信息
|
|
8117
8891
|
* @summary 获取页面列表
|
|
8118
8892
|
* @param {number} [page] 页码
|
|
8119
|
-
* @param {number} [
|
|
8893
|
+
* @param {number} [pageSize] 每页数量
|
|
8120
8894
|
* @param {'draft' | 'published' | 'archived'} [status] 按状态筛选
|
|
8121
8895
|
* @param {string} [search] 搜索关键词
|
|
8122
8896
|
* @param {*} [options] Override http request option.
|
|
@@ -8133,6 +8907,8 @@ interface PagesApiInterface {
|
|
|
8133
8907
|
* 将已归档的页面恢复为正常状态
|
|
8134
8908
|
* @summary 恢复归档页面
|
|
8135
8909
|
* @param {string} pageId 页面 ID
|
|
8910
|
+
* @param {string} [idempotencyKey] 幂等键(写操作防重复提交,客户端生成唯一键)
|
|
8911
|
+
* @param {string} [xTraceId] 分布式追踪 ID(OTel traceparent 或 traceId,全链路贯穿)
|
|
8136
8912
|
* @param {*} [options] Override http request option.
|
|
8137
8913
|
* @throws {RequiredError}
|
|
8138
8914
|
* @memberof PagesApiInterface
|
|
@@ -8148,6 +8924,8 @@ interface PagesApiInterface {
|
|
|
8148
8924
|
* @summary 更新页面信息
|
|
8149
8925
|
* @param {string} pageId 页面 ID
|
|
8150
8926
|
* @param {UpdatePageRequest} updatePageRequest
|
|
8927
|
+
* @param {string} [idempotencyKey] 幂等键(写操作防重复提交,客户端生成唯一键)
|
|
8928
|
+
* @param {string} [xTraceId] 分布式追踪 ID(OTel traceparent 或 traceId,全链路贯穿)
|
|
8151
8929
|
* @param {*} [options] Override http request option.
|
|
8152
8930
|
* @throws {RequiredError}
|
|
8153
8931
|
* @memberof PagesApiInterface
|
|
@@ -8633,15 +9411,19 @@ interface GetVersionRequest {
|
|
|
8633
9411
|
interface ListVersionsRequest {
|
|
8634
9412
|
pageId: string;
|
|
8635
9413
|
page?: number;
|
|
8636
|
-
|
|
9414
|
+
pageSize?: number;
|
|
8637
9415
|
}
|
|
8638
9416
|
interface PublishPageRequest {
|
|
8639
9417
|
pageId: string;
|
|
8640
9418
|
publishRequest: PublishRequest;
|
|
9419
|
+
idempotencyKey?: string;
|
|
9420
|
+
xTraceId?: string;
|
|
8641
9421
|
}
|
|
8642
9422
|
interface RollbackPageRequest {
|
|
8643
9423
|
pageId: string;
|
|
8644
9424
|
rollbackRequest: RollbackRequest;
|
|
9425
|
+
idempotencyKey?: string;
|
|
9426
|
+
xTraceId?: string;
|
|
8645
9427
|
}
|
|
8646
9428
|
/**
|
|
8647
9429
|
* VersionsApi - interface
|
|
@@ -8686,7 +9468,7 @@ interface VersionsApiInterface {
|
|
|
8686
9468
|
* @summary 获取版本列表
|
|
8687
9469
|
* @param {string} pageId 页面 ID
|
|
8688
9470
|
* @param {number} [page] 页码
|
|
8689
|
-
* @param {number} [
|
|
9471
|
+
* @param {number} [pageSize] 每页数量
|
|
8690
9472
|
* @param {*} [options] Override http request option.
|
|
8691
9473
|
* @throws {RequiredError}
|
|
8692
9474
|
* @memberof VersionsApiInterface
|
|
@@ -8702,6 +9484,8 @@ interface VersionsApiInterface {
|
|
|
8702
9484
|
* @summary 发布页面
|
|
8703
9485
|
* @param {string} pageId 页面 ID
|
|
8704
9486
|
* @param {PublishRequest} publishRequest
|
|
9487
|
+
* @param {string} [idempotencyKey] 幂等键(写操作防重复提交,客户端生成唯一键)
|
|
9488
|
+
* @param {string} [xTraceId] 分布式追踪 ID(OTel traceparent 或 traceId,全链路贯穿)
|
|
8705
9489
|
* @param {*} [options] Override http request option.
|
|
8706
9490
|
* @throws {RequiredError}
|
|
8707
9491
|
* @memberof VersionsApiInterface
|
|
@@ -8717,6 +9501,8 @@ interface VersionsApiInterface {
|
|
|
8717
9501
|
* @summary 回滚到指定版本
|
|
8718
9502
|
* @param {string} pageId 页面 ID
|
|
8719
9503
|
* @param {RollbackRequest} rollbackRequest
|
|
9504
|
+
* @param {string} [idempotencyKey] 幂等键(写操作防重复提交,客户端生成唯一键)
|
|
9505
|
+
* @param {string} [xTraceId] 分布式追踪 ID(OTel traceparent 或 traceId,全链路贯穿)
|
|
8720
9506
|
* @param {*} [options] Override http request option.
|
|
8721
9507
|
* @throws {RequiredError}
|
|
8722
9508
|
* @memberof VersionsApiInterface
|
|
@@ -8980,4 +9766,4 @@ declare function createAdminConfiguration(config?: AdminClientConfig): Configura
|
|
|
8980
9766
|
/** 客户端版本 */
|
|
8981
9767
|
declare const VERSION = "1.0.0";
|
|
8982
9768
|
|
|
8983
|
-
export { type ActionDefinitionDetail, ActionDefinitionDetailActionTypeEnum, ActionDefinitionDetailFromJSON, ActionDefinitionDetailFromJSONTyped, ActionDefinitionDetailStatusEnum, ActionDefinitionDetailToJSON, type ActionDefinitionInfo, ActionDefinitionInfoActionTypeEnum, ActionDefinitionInfoFromJSON, ActionDefinitionInfoFromJSONTyped, ActionDefinitionInfoStatusEnum, ActionDefinitionInfoToJSON, ActivitiesApi, type ActivityDetail, ActivityDetailFromJSON, ActivityDetailFromJSONTyped, ActivityDetailStatusEnum, ActivityDetailToJSON, ActivityDetailTypeEnum, type ActivityInfo, ActivityInfoFromJSON, ActivityInfoFromJSONTyped, ActivityInfoStatusEnum, ActivityInfoToJSON, ActivityInfoTypeEnum, type ActivityStats, ActivityStatsFromJSON, ActivityStatsFromJSONTyped, ActivityStatsToJSON, type AddRolloutStrategy200Response, AddRolloutStrategy200ResponseFromJSON, AddRolloutStrategy200ResponseFromJSONTyped, AddRolloutStrategy200ResponseToJSON, type AddRolloutStrategyRequest, AddRolloutStrategyRequestFromJSON, AddRolloutStrategyRequestFromJSONTyped, AddRolloutStrategyRequestToJSON, AddRolloutStrategyRequestTypeEnum, AdminClient, type AdminClientConfig, AuditApi, type AuditLogDetail, type AuditLogDetailChanges, AuditLogDetailChangesFromJSON, AuditLogDetailChangesFromJSONTyped, AuditLogDetailChangesToJSON, AuditLogDetailFromJSON, AuditLogDetailFromJSONTyped, AuditLogDetailStatusEnum, AuditLogDetailToJSON, type AuditLogEntry, AuditLogEntryFromJSON, AuditLogEntryFromJSONTyped, AuditLogEntryStatusEnum, AuditLogEntryToJSON, type AuditStats, AuditStatsFromJSON, AuditStatsFromJSONTyped, AuditStatsToJSON, BaseAPI, type BatchDeletePages200Response, type BatchDeletePages200ResponseAllOfData, BatchDeletePages200ResponseAllOfDataFromJSON, BatchDeletePages200ResponseAllOfDataFromJSONTyped, BatchDeletePages200ResponseAllOfDataToJSON, BatchDeletePages200ResponseFromJSON, BatchDeletePages200ResponseFromJSONTyped, BatchDeletePages200ResponseToJSON, type BatchDeletePagesRequest, BatchDeletePagesRequestFromJSON, BatchDeletePagesRequestFromJSONTyped, BatchDeletePagesRequestToJSON, type CompareVersions200Response, type CompareVersions200ResponseAllOfData, CompareVersions200ResponseAllOfDataFromJSON, CompareVersions200ResponseAllOfDataFromJSONTyped, CompareVersions200ResponseAllOfDataToJSON, CompareVersions200ResponseFromJSON, CompareVersions200ResponseFromJSONTyped, CompareVersions200ResponseToJSON, type ComponentInfo, ComponentInfoFromJSON, ComponentInfoFromJSONTyped, ComponentInfoStatusEnum, ComponentInfoToJSON, type ComponentListResponse, ComponentListResponseFromJSON, ComponentListResponseFromJSONTyped, ComponentListResponseToJSON, type ComponentVersionInfo, ComponentVersionInfoFromJSON, ComponentVersionInfoFromJSONTyped, ComponentVersionInfoStatusEnum, ComponentVersionInfoToJSON, type ComponentVersionListResponse, ComponentVersionListResponseFromJSON, ComponentVersionListResponseFromJSONTyped, ComponentVersionListResponseToJSON, type ComponentVersionResponse, ComponentVersionResponseFromJSON, ComponentVersionResponseFromJSONTyped, ComponentVersionResponseToJSON, ComponentsApi, Configuration, type ConfigurationParameters, type CreateActionDefinition201Response, CreateActionDefinition201ResponseFromJSON, CreateActionDefinition201ResponseFromJSONTyped, CreateActionDefinition201ResponseToJSON, type CreateActionDefinitionRequest, CreateActionDefinitionRequestActionTypeEnum, CreateActionDefinitionRequestFromJSON, CreateActionDefinitionRequestFromJSONTyped, CreateActionDefinitionRequestToJSON, type CreateActivity201Response, CreateActivity201ResponseFromJSON, CreateActivity201ResponseFromJSONTyped, CreateActivity201ResponseToJSON, type CreateActivityRequest, CreateActivityRequestFromJSON, CreateActivityRequestFromJSONTyped, type CreateActivityRequestRule, CreateActivityRequestRuleFromJSON, CreateActivityRequestRuleFromJSONTyped, type CreateActivityRequestRuleParticipationLimit, CreateActivityRequestRuleParticipationLimitFromJSON, CreateActivityRequestRuleParticipationLimitFromJSONTyped, CreateActivityRequestRuleParticipationLimitToJSON, type CreateActivityRequestRulePreconditionsInner, CreateActivityRequestRulePreconditionsInnerFromJSON, CreateActivityRequestRulePreconditionsInnerFromJSONTyped, CreateActivityRequestRulePreconditionsInnerToJSON, CreateActivityRequestRulePreconditionsInnerTypeEnum, CreateActivityRequestRuleToJSON, CreateActivityRequestToJSON, CreateActivityRequestTypeEnum, type CreateDataQueryDefinition201Response, CreateDataQueryDefinition201ResponseFromJSON, CreateDataQueryDefinition201ResponseFromJSONTyped, CreateDataQueryDefinition201ResponseToJSON, type CreateDataQueryDefinitionRequest, CreateDataQueryDefinitionRequestFromJSON, CreateDataQueryDefinitionRequestFromJSONTyped, CreateDataQueryDefinitionRequestSourceTypeEnum, CreateDataQueryDefinitionRequestToJSON, type CreatePageRequest, CreatePageRequestFromJSON, CreatePageRequestFromJSONTyped, CreatePageRequestToJSON, type DataQueryDefinitionDetail, DataQueryDefinitionDetailFromJSON, DataQueryDefinitionDetailFromJSONTyped, DataQueryDefinitionDetailSourceTypeEnum, DataQueryDefinitionDetailStatusEnum, DataQueryDefinitionDetailToJSON, type DataQueryDefinitionInfo, DataQueryDefinitionInfoFromJSON, DataQueryDefinitionInfoFromJSONTyped, DataQueryDefinitionInfoSourceTypeEnum, DataQueryDefinitionInfoStatusEnum, DataQueryDefinitionInfoToJSON, type DefinitionVersionInfo, DefinitionVersionInfoFromJSON, DefinitionVersionInfoFromJSONTyped, DefinitionVersionInfoStatusEnum, DefinitionVersionInfoToJSON, DefinitionsApi, type DeletePage200Response, type DeletePage200ResponseAllOfData, DeletePage200ResponseAllOfDataFromJSON, DeletePage200ResponseAllOfDataFromJSONTyped, DeletePage200ResponseAllOfDataToJSON, DeletePage200ResponseFromJSON, DeletePage200ResponseFromJSONTyped, DeletePage200ResponseToJSON, type DeletePageRequest, DeletePageRequestFromJSON, DeletePageRequestFromJSONTyped, DeletePageRequestToJSON, type DiscardDraft200Response, DiscardDraft200ResponseFromJSON, DiscardDraft200ResponseFromJSONTyped, DiscardDraft200ResponseToJSON, type DiscardDraftRequest, DiscardDraftRequestFromJSON, DiscardDraftRequestFromJSONTyped, DiscardDraftRequestToJSON, type DraftData, DraftDataFromJSON, DraftDataFromJSONTyped, DraftDataToJSON, type DraftResponse, DraftResponseFromJSON, DraftResponseFromJSONTyped, DraftResponseToJSON, DraftsApi, type ErrorDetail, ErrorDetailFromJSON, ErrorDetailFromJSONTyped, ErrorDetailToJSON, type ErrorResponse, type ErrorResponseDataObject, ErrorResponseDataObjectFromJSON, ErrorResponseDataObjectFromJSONTyped, ErrorResponseDataObjectToJSON, ErrorResponseFromJSON, ErrorResponseFromJSONTyped, ErrorResponseToJSON, type FetchAPI, FetchError, type GetActionDefinition200Response, GetActionDefinition200ResponseFromJSON, GetActionDefinition200ResponseFromJSONTyped, GetActionDefinition200ResponseToJSON, type GetActivity200Response, GetActivity200ResponseFromJSON, GetActivity200ResponseFromJSONTyped, GetActivity200ResponseToJSON, type GetActivityStats200Response, GetActivityStats200ResponseFromJSON, GetActivityStats200ResponseFromJSONTyped, GetActivityStats200ResponseToJSON, type GetAuditLog200Response, GetAuditLog200ResponseFromJSON, GetAuditLog200ResponseFromJSONTyped, GetAuditLog200ResponseToJSON, type GetAuditStats200Response, GetAuditStats200ResponseFromJSON, GetAuditStats200ResponseFromJSONTyped, GetAuditStats200ResponseToJSON, type GetDataQueryDefinition200Response, GetDataQueryDefinition200ResponseFromJSON, GetDataQueryDefinition200ResponseFromJSONTyped, GetDataQueryDefinition200ResponseToJSON, type GetPageStats200Response, type GetPageStats200ResponseAllOfData, GetPageStats200ResponseAllOfDataFromJSON, GetPageStats200ResponseAllOfDataFromJSONTyped, GetPageStats200ResponseAllOfDataToJSON, GetPageStats200ResponseFromJSON, GetPageStats200ResponseFromJSONTyped, GetPageStats200ResponseToJSON, type GetPreview200Response, GetPreview200ResponseFromJSON, GetPreview200ResponseFromJSONTyped, GetPreview200ResponseToJSON, type GetPreviewToken200Response, GetPreviewToken200ResponseFromJSON, GetPreviewToken200ResponseFromJSONTyped, GetPreviewToken200ResponseToJSON, type GetRolloutConfig200Response, GetRolloutConfig200ResponseFromJSON, GetRolloutConfig200ResponseFromJSONTyped, GetRolloutConfig200ResponseToJSON, HealthApi, type HealthResponse, type HealthResponseDependenciesValue, HealthResponseDependenciesValueFromJSON, HealthResponseDependenciesValueFromJSONTyped, HealthResponseDependenciesValueStatusEnum, HealthResponseDependenciesValueToJSON, HealthResponseFromJSON, HealthResponseFromJSONTyped, HealthResponseStatusEnum, HealthResponseToJSON, type KillSwitchStatusResponse, type KillSwitchStatusResponseData, KillSwitchStatusResponseDataFromJSON, KillSwitchStatusResponseDataFromJSONTyped, KillSwitchStatusResponseDataToJSON, KillSwitchStatusResponseFromJSON, KillSwitchStatusResponseFromJSONTyped, KillSwitchStatusResponseToJSON, type ListActionDefinitionVersions200Response, ListActionDefinitionVersions200ResponseFromJSON, ListActionDefinitionVersions200ResponseFromJSONTyped, ListActionDefinitionVersions200ResponseToJSON, type ListActionDefinitions200Response, ListActionDefinitions200ResponseFromJSON, ListActionDefinitions200ResponseFromJSONTyped, ListActionDefinitions200ResponseToJSON, type ListActivities200Response, ListActivities200ResponseFromJSON, ListActivities200ResponseFromJSONTyped, ListActivities200ResponseToJSON, type ListAuditLogs200Response, ListAuditLogs200ResponseFromJSON, ListAuditLogs200ResponseFromJSONTyped, ListAuditLogs200ResponseToJSON, type ListDataQueryDefinitionVersions200Response, ListDataQueryDefinitionVersions200ResponseFromJSON, ListDataQueryDefinitionVersions200ResponseFromJSONTyped, ListDataQueryDefinitionVersions200ResponseToJSON, type ListDataQueryDefinitions200Response, ListDataQueryDefinitions200ResponseFromJSON, ListDataQueryDefinitions200ResponseFromJSONTyped, ListDataQueryDefinitions200ResponseToJSON, type ListPreviewTokens200Response, ListPreviewTokens200ResponseFromJSON, ListPreviewTokens200ResponseFromJSONTyped, ListPreviewTokens200ResponseToJSON, type LivenessCheck200Response, LivenessCheck200ResponseFromJSON, LivenessCheck200ResponseFromJSONTyped, LivenessCheck200ResponseToJSON, type LockInfo, LockInfoFromJSON, LockInfoFromJSONTyped, LockInfoToJSON, type Middleware, OperationsApi, type PageInfo, PageInfoFromJSON, PageInfoFromJSONTyped, PageInfoStatusEnum, PageInfoToJSON, type PageKillSwitchStatusResponse, type PageKillSwitchStatusResponseData, PageKillSwitchStatusResponseDataFromJSON, PageKillSwitchStatusResponseDataFromJSONTyped, PageKillSwitchStatusResponseDataToJSON, PageKillSwitchStatusResponseFromJSON, PageKillSwitchStatusResponseFromJSONTyped, PageKillSwitchStatusResponseToJSON, type PageListResponse, type PageListResponseAllOfData, PageListResponseAllOfDataFromJSON, PageListResponseAllOfDataFromJSONTyped, PageListResponseAllOfDataToJSON, PageListResponseFromJSON, PageListResponseFromJSONTyped, PageListResponseToJSON, type PageResponse, PageResponseFromJSON, PageResponseFromJSONTyped, PageResponseToJSON, PagesApi, type PaginationMeta, PaginationMetaFromJSON, PaginationMetaFromJSONTyped, PaginationMetaToJSON, PreviewApi, type PreviewTokenInfo, PreviewTokenInfoDeviceTypeEnum, PreviewTokenInfoFromJSON, PreviewTokenInfoFromJSONTyped, PreviewTokenInfoToJSON, type PublishActionDefinitionVersion201Response, PublishActionDefinitionVersion201ResponseFromJSON, PublishActionDefinitionVersion201ResponseFromJSONTyped, PublishActionDefinitionVersion201ResponseToJSON, type PublishDefinitionVersionRequest, PublishDefinitionVersionRequestFromJSON, PublishDefinitionVersionRequestFromJSONTyped, PublishDefinitionVersionRequestToJSON, PublishDefinitionVersionRequestVersionBumpEnum, type PublishRequest, PublishRequestChannelEnum, PublishRequestFromJSON, PublishRequestFromJSONTyped, type PublishRequestPublishConfig, type PublishRequestPublishConfigCdn, PublishRequestPublishConfigCdnFromJSON, PublishRequestPublishConfigCdnFromJSONTyped, PublishRequestPublishConfigCdnPriorityEnum, PublishRequestPublishConfigCdnToJSON, PublishRequestPublishConfigFromJSON, PublishRequestPublishConfigFromJSONTyped, type PublishRequestPublishConfigNotification, PublishRequestPublishConfigNotificationChannelsEnum, PublishRequestPublishConfigNotificationFromJSON, PublishRequestPublishConfigNotificationFromJSONTyped, PublishRequestPublishConfigNotificationToJSON, type PublishRequestPublishConfigRollout, PublishRequestPublishConfigRolloutFromJSON, PublishRequestPublishConfigRolloutFromJSONTyped, type PublishRequestPublishConfigRolloutStrategy, PublishRequestPublishConfigRolloutStrategyFromJSON, PublishRequestPublishConfigRolloutStrategyFromJSONTyped, type PublishRequestPublishConfigRolloutStrategyOneOf, type PublishRequestPublishConfigRolloutStrategyOneOf1, PublishRequestPublishConfigRolloutStrategyOneOf1FromJSON, PublishRequestPublishConfigRolloutStrategyOneOf1FromJSONTyped, PublishRequestPublishConfigRolloutStrategyOneOf1ToJSON, PublishRequestPublishConfigRolloutStrategyOneOf1TypeEnum, type PublishRequestPublishConfigRolloutStrategyOneOf2, PublishRequestPublishConfigRolloutStrategyOneOf2FromJSON, PublishRequestPublishConfigRolloutStrategyOneOf2FromJSONTyped, PublishRequestPublishConfigRolloutStrategyOneOf2ToJSON, PublishRequestPublishConfigRolloutStrategyOneOf2TypeEnum, type PublishRequestPublishConfigRolloutStrategyOneOf3, type PublishRequestPublishConfigRolloutStrategyOneOf3ConditionsInner, PublishRequestPublishConfigRolloutStrategyOneOf3ConditionsInnerFromJSON, PublishRequestPublishConfigRolloutStrategyOneOf3ConditionsInnerFromJSONTyped, PublishRequestPublishConfigRolloutStrategyOneOf3ConditionsInnerOperatorEnum, PublishRequestPublishConfigRolloutStrategyOneOf3ConditionsInnerToJSON, PublishRequestPublishConfigRolloutStrategyOneOf3FromJSON, PublishRequestPublishConfigRolloutStrategyOneOf3FromJSONTyped, PublishRequestPublishConfigRolloutStrategyOneOf3LogicEnum, PublishRequestPublishConfigRolloutStrategyOneOf3ToJSON, PublishRequestPublishConfigRolloutStrategyOneOf3TypeEnum, type PublishRequestPublishConfigRolloutStrategyOneOf4, PublishRequestPublishConfigRolloutStrategyOneOf4FromJSON, PublishRequestPublishConfigRolloutStrategyOneOf4FromJSONTyped, PublishRequestPublishConfigRolloutStrategyOneOf4ToJSON, PublishRequestPublishConfigRolloutStrategyOneOf4TypeEnum, type PublishRequestPublishConfigRolloutStrategyOneOf5, PublishRequestPublishConfigRolloutStrategyOneOf5FromJSON, PublishRequestPublishConfigRolloutStrategyOneOf5FromJSONTyped, PublishRequestPublishConfigRolloutStrategyOneOf5ToJSON, PublishRequestPublishConfigRolloutStrategyOneOf5TypeEnum, type PublishRequestPublishConfigRolloutStrategyOneOf5VariantsInner, PublishRequestPublishConfigRolloutStrategyOneOf5VariantsInnerFromJSON, PublishRequestPublishConfigRolloutStrategyOneOf5VariantsInnerFromJSONTyped, PublishRequestPublishConfigRolloutStrategyOneOf5VariantsInnerToJSON, type PublishRequestPublishConfigRolloutStrategyOneOf6, type PublishRequestPublishConfigRolloutStrategyOneOf6AutoAdvance, PublishRequestPublishConfigRolloutStrategyOneOf6AutoAdvanceFromJSON, PublishRequestPublishConfigRolloutStrategyOneOf6AutoAdvanceFromJSONTyped, type PublishRequestPublishConfigRolloutStrategyOneOf6AutoAdvanceHealthCheck, PublishRequestPublishConfigRolloutStrategyOneOf6AutoAdvanceHealthCheckFromJSON, PublishRequestPublishConfigRolloutStrategyOneOf6AutoAdvanceHealthCheckFromJSONTyped, PublishRequestPublishConfigRolloutStrategyOneOf6AutoAdvanceHealthCheckToJSON, PublishRequestPublishConfigRolloutStrategyOneOf6AutoAdvanceToJSON, PublishRequestPublishConfigRolloutStrategyOneOf6FromJSON, PublishRequestPublishConfigRolloutStrategyOneOf6FromJSONTyped, type PublishRequestPublishConfigRolloutStrategyOneOf6StagesInner, PublishRequestPublishConfigRolloutStrategyOneOf6StagesInnerFromJSON, PublishRequestPublishConfigRolloutStrategyOneOf6StagesInnerFromJSONTyped, PublishRequestPublishConfigRolloutStrategyOneOf6StagesInnerToJSON, PublishRequestPublishConfigRolloutStrategyOneOf6ToJSON, PublishRequestPublishConfigRolloutStrategyOneOf6TypeEnum, PublishRequestPublishConfigRolloutStrategyOneOfBucketKeyEnum, PublishRequestPublishConfigRolloutStrategyOneOfFromJSON, PublishRequestPublishConfigRolloutStrategyOneOfFromJSONTyped, PublishRequestPublishConfigRolloutStrategyOneOfToJSON, PublishRequestPublishConfigRolloutStrategyOneOfTypeEnum, PublishRequestPublishConfigRolloutStrategyToJSON, PublishRequestPublishConfigRolloutToJSON, PublishRequestPublishConfigToJSON, PublishRequestToJSON, type PublishResponse, PublishResponseFromJSON, PublishResponseFromJSONTyped, PublishResponseToJSON, type ReadinessCheck200Response, ReadinessCheck200ResponseFromJSON, ReadinessCheck200ResponseFromJSONTyped, ReadinessCheck200ResponseToJSON, type ReadinessCheck503Response, ReadinessCheck503ResponseFromJSON, ReadinessCheck503ResponseFromJSONTyped, ReadinessCheck503ResponseToJSON, RequiredError, ResponseError, type RevokePreviewTokenRequest, RevokePreviewTokenRequestFromJSON, RevokePreviewTokenRequestFromJSONTyped, RevokePreviewTokenRequestToJSON, type RollbackRequest, RollbackRequestFromJSON, RollbackRequestFromJSONTyped, RollbackRequestToJSON, RolloutApi, type RolloutConfig, RolloutConfigFromJSON, RolloutConfigFromJSONTyped, RolloutConfigToJSON, type RolloutStrategy, RolloutStrategyFromJSON, RolloutStrategyFromJSONTyped, RolloutStrategyToJSON, RolloutStrategyTypeEnum, type SaveDraftRequest, SaveDraftRequestFromJSON, SaveDraftRequestFromJSONTyped, SaveDraftRequestToJSON, type SetKillSwitchRequest, SetKillSwitchRequestFromJSON, SetKillSwitchRequestFromJSONTyped, SetKillSwitchRequestToJSON, type SuccessResponse, SuccessResponseFromJSON, SuccessResponseFromJSONTyped, SuccessResponseToJSON, type UpdateActionDefinitionRequest, UpdateActionDefinitionRequestFromJSON, UpdateActionDefinitionRequestFromJSONTyped, UpdateActionDefinitionRequestStatusEnum, UpdateActionDefinitionRequestToJSON, type UpdateActivityRequest, UpdateActivityRequestFromJSON, UpdateActivityRequestFromJSONTyped, UpdateActivityRequestToJSON, type UpdateActivityStatusRequest, UpdateActivityStatusRequestFromJSON, UpdateActivityStatusRequestFromJSONTyped, UpdateActivityStatusRequestStatusEnum, UpdateActivityStatusRequestToJSON, type UpdateComponentStatusRequest, UpdateComponentStatusRequestFromJSON, UpdateComponentStatusRequestFromJSONTyped, UpdateComponentStatusRequestStatusEnum, UpdateComponentStatusRequestToJSON, type UpdateDataQueryDefinitionRequest, UpdateDataQueryDefinitionRequestFromJSON, UpdateDataQueryDefinitionRequestFromJSONTyped, UpdateDataQueryDefinitionRequestStatusEnum, UpdateDataQueryDefinitionRequestToJSON, type UpdatePageRequest, UpdatePageRequestFromJSON, UpdatePageRequestFromJSONTyped, UpdatePageRequestToJSON, type UpdateRolloutRequest, UpdateRolloutRequestFromJSON, UpdateRolloutRequestFromJSONTyped, UpdateRolloutRequestToJSON, type UpdateRolloutStrategyRequest, UpdateRolloutStrategyRequestFromJSON, UpdateRolloutStrategyRequestFromJSONTyped, UpdateRolloutStrategyRequestToJSON, VERSION, type VersionInfo, VersionInfoFromJSON, VersionInfoFromJSONTyped, VersionInfoStatusEnum, VersionInfoToJSON, type VersionListResponse, VersionListResponseFromJSON, VersionListResponseFromJSONTyped, VersionListResponseToJSON, type VersionResponse, type VersionResponseData, VersionResponseDataFromJSON, VersionResponseDataFromJSONTyped, VersionResponseDataStatusEnum, VersionResponseDataToJSON, VersionResponseFromJSON, VersionResponseFromJSONTyped, VersionResponseToJSON, VersionsApi, createAdminClient, createAdminConfiguration, instanceOfActionDefinitionDetail, instanceOfActionDefinitionInfo, instanceOfActivityDetail, instanceOfActivityInfo, instanceOfActivityStats, instanceOfAddRolloutStrategy200Response, instanceOfAddRolloutStrategyRequest, instanceOfAuditLogDetail, instanceOfAuditLogDetailChanges, instanceOfAuditLogEntry, instanceOfAuditStats, instanceOfBatchDeletePages200Response, instanceOfBatchDeletePages200ResponseAllOfData, instanceOfBatchDeletePagesRequest, instanceOfCompareVersions200Response, instanceOfCompareVersions200ResponseAllOfData, instanceOfComponentInfo, instanceOfComponentListResponse, instanceOfComponentVersionInfo, instanceOfComponentVersionListResponse, instanceOfComponentVersionResponse, instanceOfCreateActionDefinition201Response, instanceOfCreateActionDefinitionRequest, instanceOfCreateActivity201Response, instanceOfCreateActivityRequest, instanceOfCreateActivityRequestRule, instanceOfCreateActivityRequestRuleParticipationLimit, instanceOfCreateActivityRequestRulePreconditionsInner, instanceOfCreateDataQueryDefinition201Response, instanceOfCreateDataQueryDefinitionRequest, instanceOfCreatePageRequest, instanceOfDataQueryDefinitionDetail, instanceOfDataQueryDefinitionInfo, instanceOfDefinitionVersionInfo, instanceOfDeletePage200Response, instanceOfDeletePage200ResponseAllOfData, instanceOfDeletePageRequest, instanceOfDiscardDraft200Response, instanceOfDiscardDraftRequest, instanceOfDraftData, instanceOfDraftResponse, instanceOfErrorDetail, instanceOfErrorResponse, instanceOfErrorResponseDataObject, instanceOfGetActionDefinition200Response, instanceOfGetActivity200Response, instanceOfGetActivityStats200Response, instanceOfGetAuditLog200Response, instanceOfGetAuditStats200Response, instanceOfGetDataQueryDefinition200Response, instanceOfGetPageStats200Response, instanceOfGetPageStats200ResponseAllOfData, instanceOfGetPreview200Response, instanceOfGetPreviewToken200Response, instanceOfGetRolloutConfig200Response, instanceOfHealthResponse, instanceOfHealthResponseDependenciesValue, instanceOfKillSwitchStatusResponse, instanceOfKillSwitchStatusResponseData, instanceOfListActionDefinitionVersions200Response, instanceOfListActionDefinitions200Response, instanceOfListActivities200Response, instanceOfListAuditLogs200Response, instanceOfListDataQueryDefinitionVersions200Response, instanceOfListDataQueryDefinitions200Response, instanceOfListPreviewTokens200Response, instanceOfLivenessCheck200Response, instanceOfLockInfo, instanceOfPageInfo, instanceOfPageKillSwitchStatusResponse, instanceOfPageKillSwitchStatusResponseData, instanceOfPageListResponse, instanceOfPageListResponseAllOfData, instanceOfPageResponse, instanceOfPaginationMeta, instanceOfPreviewTokenInfo, instanceOfPublishActionDefinitionVersion201Response, instanceOfPublishDefinitionVersionRequest, instanceOfPublishRequest, instanceOfPublishRequestPublishConfig, instanceOfPublishRequestPublishConfigCdn, instanceOfPublishRequestPublishConfigNotification, instanceOfPublishRequestPublishConfigRollout, instanceOfPublishRequestPublishConfigRolloutStrategyOneOf, instanceOfPublishRequestPublishConfigRolloutStrategyOneOf1, instanceOfPublishRequestPublishConfigRolloutStrategyOneOf2, instanceOfPublishRequestPublishConfigRolloutStrategyOneOf3, instanceOfPublishRequestPublishConfigRolloutStrategyOneOf3ConditionsInner, instanceOfPublishRequestPublishConfigRolloutStrategyOneOf4, instanceOfPublishRequestPublishConfigRolloutStrategyOneOf5, instanceOfPublishRequestPublishConfigRolloutStrategyOneOf5VariantsInner, instanceOfPublishRequestPublishConfigRolloutStrategyOneOf6, instanceOfPublishRequestPublishConfigRolloutStrategyOneOf6AutoAdvance, instanceOfPublishRequestPublishConfigRolloutStrategyOneOf6AutoAdvanceHealthCheck, instanceOfPublishRequestPublishConfigRolloutStrategyOneOf6StagesInner, instanceOfPublishResponse, instanceOfReadinessCheck200Response, instanceOfReadinessCheck503Response, instanceOfRevokePreviewTokenRequest, instanceOfRollbackRequest, instanceOfRolloutConfig, instanceOfRolloutStrategy, instanceOfSaveDraftRequest, instanceOfSetKillSwitchRequest, instanceOfSuccessResponse, instanceOfUpdateActionDefinitionRequest, instanceOfUpdateActivityRequest, instanceOfUpdateActivityStatusRequest, instanceOfUpdateComponentStatusRequest, instanceOfUpdateDataQueryDefinitionRequest, instanceOfUpdatePageRequest, instanceOfUpdateRolloutRequest, instanceOfUpdateRolloutStrategyRequest, instanceOfVersionInfo, instanceOfVersionListResponse, instanceOfVersionResponse, instanceOfVersionResponseData };
|
|
9769
|
+
export { type ActionDefinitionDetail, ActionDefinitionDetailActionTypeEnum, ActionDefinitionDetailFromJSON, ActionDefinitionDetailFromJSONTyped, ActionDefinitionDetailStatusEnum, ActionDefinitionDetailToJSON, type ActionDefinitionInfo, ActionDefinitionInfoActionTypeEnum, ActionDefinitionInfoFromJSON, ActionDefinitionInfoFromJSONTyped, ActionDefinitionInfoStatusEnum, ActionDefinitionInfoToJSON, ActivitiesApi, type ActivityDetail, ActivityDetailFromJSON, ActivityDetailFromJSONTyped, ActivityDetailStatusEnum, ActivityDetailToJSON, ActivityDetailTypeEnum, type ActivityInfo, ActivityInfoFromJSON, ActivityInfoFromJSONTyped, ActivityInfoStatusEnum, ActivityInfoToJSON, ActivityInfoTypeEnum, type ActivityStats, ActivityStatsFromJSON, ActivityStatsFromJSONTyped, ActivityStatsToJSON, type AddRolloutStrategy200Response, AddRolloutStrategy200ResponseFromJSON, AddRolloutStrategy200ResponseFromJSONTyped, AddRolloutStrategy200ResponseToJSON, type AddRolloutStrategyRequest, AddRolloutStrategyRequestFromJSON, AddRolloutStrategyRequestFromJSONTyped, AddRolloutStrategyRequestToJSON, AddRolloutStrategyRequestTypeEnum, AdminClient, type AdminClientConfig, AuditApi, type AuditLogDetail, type AuditLogDetailChanges, AuditLogDetailChangesFromJSON, AuditLogDetailChangesFromJSONTyped, AuditLogDetailChangesToJSON, AuditLogDetailFromJSON, AuditLogDetailFromJSONTyped, AuditLogDetailStatusEnum, AuditLogDetailToJSON, type AuditLogEntry, type AuditLogEntryActor, AuditLogEntryActorFromJSON, AuditLogEntryActorFromJSONTyped, AuditLogEntryActorToJSON, AuditLogEntryFromJSON, AuditLogEntryFromJSONTyped, AuditLogEntryResultEnum, AuditLogEntryToJSON, type AuditStats, AuditStatsFromJSON, AuditStatsFromJSONTyped, AuditStatsToJSON, BaseAPI, type BatchDeletePages200Response, type BatchDeletePages200ResponseAllOfData, BatchDeletePages200ResponseAllOfDataFromJSON, BatchDeletePages200ResponseAllOfDataFromJSONTyped, BatchDeletePages200ResponseAllOfDataToJSON, BatchDeletePages200ResponseFromJSON, BatchDeletePages200ResponseFromJSONTyped, BatchDeletePages200ResponseToJSON, type BatchDeletePagesRequest, BatchDeletePagesRequestFromJSON, BatchDeletePagesRequestFromJSONTyped, BatchDeletePagesRequestToJSON, type CompareVersions200Response, type CompareVersions200ResponseAllOfData, CompareVersions200ResponseAllOfDataFromJSON, CompareVersions200ResponseAllOfDataFromJSONTyped, CompareVersions200ResponseAllOfDataToJSON, CompareVersions200ResponseFromJSON, CompareVersions200ResponseFromJSONTyped, CompareVersions200ResponseToJSON, type ComponentInfo, ComponentInfoFromJSON, ComponentInfoFromJSONTyped, ComponentInfoStatusEnum, ComponentInfoToJSON, type ComponentListResponse, type ComponentListResponseAllOfData, ComponentListResponseAllOfDataFromJSON, ComponentListResponseAllOfDataFromJSONTyped, ComponentListResponseAllOfDataToJSON, ComponentListResponseFromJSON, ComponentListResponseFromJSONTyped, ComponentListResponseToJSON, type ComponentVersionInfo, ComponentVersionInfoFromJSON, ComponentVersionInfoFromJSONTyped, ComponentVersionInfoStatusEnum, ComponentVersionInfoToJSON, type ComponentVersionListResponse, type ComponentVersionListResponseAllOfData, ComponentVersionListResponseAllOfDataFromJSON, ComponentVersionListResponseAllOfDataFromJSONTyped, ComponentVersionListResponseAllOfDataToJSON, ComponentVersionListResponseFromJSON, ComponentVersionListResponseFromJSONTyped, ComponentVersionListResponseToJSON, type ComponentVersionResponse, ComponentVersionResponseFromJSON, ComponentVersionResponseFromJSONTyped, ComponentVersionResponseToJSON, ComponentsApi, Configuration, type ConfigurationParameters, type CreateActionDefinition201Response, CreateActionDefinition201ResponseFromJSON, CreateActionDefinition201ResponseFromJSONTyped, CreateActionDefinition201ResponseToJSON, type CreateActionDefinitionRequest, CreateActionDefinitionRequestActionTypeEnum, CreateActionDefinitionRequestFromJSON, CreateActionDefinitionRequestFromJSONTyped, CreateActionDefinitionRequestToJSON, type CreateActivity201Response, CreateActivity201ResponseFromJSON, CreateActivity201ResponseFromJSONTyped, CreateActivity201ResponseToJSON, type CreateActivityRequest, CreateActivityRequestFromJSON, CreateActivityRequestFromJSONTyped, type CreateActivityRequestRule, CreateActivityRequestRuleFromJSON, CreateActivityRequestRuleFromJSONTyped, type CreateActivityRequestRuleParticipationLimit, CreateActivityRequestRuleParticipationLimitFromJSON, CreateActivityRequestRuleParticipationLimitFromJSONTyped, CreateActivityRequestRuleParticipationLimitToJSON, type CreateActivityRequestRulePreconditionsInner, CreateActivityRequestRulePreconditionsInnerFromJSON, CreateActivityRequestRulePreconditionsInnerFromJSONTyped, CreateActivityRequestRulePreconditionsInnerToJSON, CreateActivityRequestRulePreconditionsInnerTypeEnum, CreateActivityRequestRuleToJSON, CreateActivityRequestToJSON, CreateActivityRequestTypeEnum, type CreateDataQueryDefinition201Response, CreateDataQueryDefinition201ResponseFromJSON, CreateDataQueryDefinition201ResponseFromJSONTyped, CreateDataQueryDefinition201ResponseToJSON, type CreateDataQueryDefinitionRequest, CreateDataQueryDefinitionRequestFromJSON, CreateDataQueryDefinitionRequestFromJSONTyped, CreateDataQueryDefinitionRequestSourceTypeEnum, CreateDataQueryDefinitionRequestToJSON, type CreatePageRequest, CreatePageRequestFromJSON, CreatePageRequestFromJSONTyped, CreatePageRequestToJSON, type CreateTemplateRequest, CreateTemplateRequestFromJSON, CreateTemplateRequestFromJSONTyped, CreateTemplateRequestToJSON, type DataQueryDefinitionDetail, DataQueryDefinitionDetailFromJSON, DataQueryDefinitionDetailFromJSONTyped, DataQueryDefinitionDetailSourceTypeEnum, DataQueryDefinitionDetailStatusEnum, DataQueryDefinitionDetailToJSON, type DataQueryDefinitionInfo, DataQueryDefinitionInfoFromJSON, DataQueryDefinitionInfoFromJSONTyped, DataQueryDefinitionInfoSourceTypeEnum, DataQueryDefinitionInfoStatusEnum, DataQueryDefinitionInfoToJSON, type DefinitionVersionInfo, DefinitionVersionInfoFromJSON, DefinitionVersionInfoFromJSONTyped, DefinitionVersionInfoStatusEnum, DefinitionVersionInfoToJSON, DefinitionsApi, type DeletePage200Response, type DeletePage200ResponseAllOfData, DeletePage200ResponseAllOfDataFromJSON, DeletePage200ResponseAllOfDataFromJSONTyped, DeletePage200ResponseAllOfDataToJSON, DeletePage200ResponseFromJSON, DeletePage200ResponseFromJSONTyped, DeletePage200ResponseToJSON, type DeletePageRequest, DeletePageRequestFromJSON, DeletePageRequestFromJSONTyped, DeletePageRequestToJSON, type DiscardDraft200Response, DiscardDraft200ResponseFromJSON, DiscardDraft200ResponseFromJSONTyped, DiscardDraft200ResponseToJSON, type DiscardDraftRequest, DiscardDraftRequestFromJSON, DiscardDraftRequestFromJSONTyped, DiscardDraftRequestToJSON, type DraftData, DraftDataFromJSON, DraftDataFromJSONTyped, DraftDataToJSON, type DraftResponse, DraftResponseFromJSON, DraftResponseFromJSONTyped, DraftResponseToJSON, DraftsApi, type ErrorResponse, ErrorResponseFromJSON, ErrorResponseFromJSONTyped, ErrorResponseToJSON, type FetchAPI, FetchError, type FetchParams, type GetActionDefinition200Response, GetActionDefinition200ResponseFromJSON, GetActionDefinition200ResponseFromJSONTyped, GetActionDefinition200ResponseToJSON, type GetActivity200Response, GetActivity200ResponseFromJSON, GetActivity200ResponseFromJSONTyped, GetActivity200ResponseToJSON, type GetActivityStats200Response, GetActivityStats200ResponseFromJSON, GetActivityStats200ResponseFromJSONTyped, GetActivityStats200ResponseToJSON, type GetAuditLog200Response, GetAuditLog200ResponseFromJSON, GetAuditLog200ResponseFromJSONTyped, GetAuditLog200ResponseToJSON, type GetAuditStats200Response, GetAuditStats200ResponseFromJSON, GetAuditStats200ResponseFromJSONTyped, GetAuditStats200ResponseToJSON, type GetDataQueryDefinition200Response, GetDataQueryDefinition200ResponseFromJSON, GetDataQueryDefinition200ResponseFromJSONTyped, GetDataQueryDefinition200ResponseToJSON, type GetPageStats200Response, type GetPageStats200ResponseAllOfData, GetPageStats200ResponseAllOfDataFromJSON, GetPageStats200ResponseAllOfDataFromJSONTyped, GetPageStats200ResponseAllOfDataToJSON, GetPageStats200ResponseFromJSON, GetPageStats200ResponseFromJSONTyped, GetPageStats200ResponseToJSON, type GetPreview200Response, GetPreview200ResponseFromJSON, GetPreview200ResponseFromJSONTyped, GetPreview200ResponseToJSON, type GetPreviewToken200Response, GetPreviewToken200ResponseFromJSON, GetPreviewToken200ResponseFromJSONTyped, GetPreviewToken200ResponseToJSON, type GetRolloutConfig200Response, GetRolloutConfig200ResponseFromJSON, GetRolloutConfig200ResponseFromJSONTyped, GetRolloutConfig200ResponseToJSON, HealthApi, type HealthResponse, type HealthResponseDependenciesValue, HealthResponseDependenciesValueFromJSON, HealthResponseDependenciesValueFromJSONTyped, HealthResponseDependenciesValueStatusEnum, HealthResponseDependenciesValueToJSON, HealthResponseFromJSON, HealthResponseFromJSONTyped, HealthResponseStatusEnum, HealthResponseToJSON, type KillSwitchStatusResponse, type KillSwitchStatusResponseData, KillSwitchStatusResponseDataFromJSON, KillSwitchStatusResponseDataFromJSONTyped, KillSwitchStatusResponseDataToJSON, KillSwitchStatusResponseFromJSON, KillSwitchStatusResponseFromJSONTyped, KillSwitchStatusResponseToJSON, type ListActionDefinitionVersions200Response, ListActionDefinitionVersions200ResponseFromJSON, ListActionDefinitionVersions200ResponseFromJSONTyped, ListActionDefinitionVersions200ResponseToJSON, type ListActionDefinitions200Response, ListActionDefinitions200ResponseFromJSON, ListActionDefinitions200ResponseFromJSONTyped, ListActionDefinitions200ResponseToJSON, type ListActivities200Response, ListActivities200ResponseFromJSON, ListActivities200ResponseFromJSONTyped, ListActivities200ResponseToJSON, type ListAuditLogs200Response, ListAuditLogs200ResponseFromJSON, ListAuditLogs200ResponseFromJSONTyped, ListAuditLogs200ResponseToJSON, type ListDataQueryDefinitionVersions200Response, ListDataQueryDefinitionVersions200ResponseFromJSON, ListDataQueryDefinitionVersions200ResponseFromJSONTyped, ListDataQueryDefinitionVersions200ResponseToJSON, type ListDataQueryDefinitions200Response, ListDataQueryDefinitions200ResponseFromJSON, ListDataQueryDefinitions200ResponseFromJSONTyped, ListDataQueryDefinitions200ResponseToJSON, type ListPreviewTokens200Response, ListPreviewTokens200ResponseFromJSON, ListPreviewTokens200ResponseFromJSONTyped, ListPreviewTokens200ResponseToJSON, type LivenessCheck200Response, LivenessCheck200ResponseFromJSON, LivenessCheck200ResponseFromJSONTyped, LivenessCheck200ResponseToJSON, type LockInfo, LockInfoFromJSON, LockInfoFromJSONTyped, LockInfoToJSON, type Middleware, OperationsApi, type PageInfo, PageInfoFromJSON, PageInfoFromJSONTyped, PageInfoStatusEnum, PageInfoToJSON, type PageKillSwitchStatusResponse, type PageKillSwitchStatusResponseData, PageKillSwitchStatusResponseDataFromJSON, PageKillSwitchStatusResponseDataFromJSONTyped, PageKillSwitchStatusResponseDataToJSON, PageKillSwitchStatusResponseFromJSON, PageKillSwitchStatusResponseFromJSONTyped, PageKillSwitchStatusResponseToJSON, type PageListResponse, type PageListResponseAllOfData, PageListResponseAllOfDataFromJSON, PageListResponseAllOfDataFromJSONTyped, PageListResponseAllOfDataToJSON, PageListResponseFromJSON, PageListResponseFromJSONTyped, PageListResponseToJSON, type PageResponse, PageResponseFromJSON, PageResponseFromJSONTyped, PageResponseToJSON, PagesApi, type PaginationMeta, PaginationMetaFromJSON, PaginationMetaFromJSONTyped, PaginationMetaToJSON, PreviewApi, type PreviewTokenInfo, PreviewTokenInfoDeviceTypeEnum, PreviewTokenInfoFromJSON, PreviewTokenInfoFromJSONTyped, PreviewTokenInfoToJSON, type PublishActionDefinitionVersion201Response, PublishActionDefinitionVersion201ResponseFromJSON, PublishActionDefinitionVersion201ResponseFromJSONTyped, PublishActionDefinitionVersion201ResponseToJSON, type PublishDefinitionVersionRequest, PublishDefinitionVersionRequestFromJSON, PublishDefinitionVersionRequestFromJSONTyped, PublishDefinitionVersionRequestToJSON, PublishDefinitionVersionRequestVersionBumpEnum, type PublishRequest, PublishRequestChannelEnum, PublishRequestFromJSON, PublishRequestFromJSONTyped, type PublishRequestPublishConfig, type PublishRequestPublishConfigCdn, PublishRequestPublishConfigCdnFromJSON, PublishRequestPublishConfigCdnFromJSONTyped, PublishRequestPublishConfigCdnPriorityEnum, PublishRequestPublishConfigCdnToJSON, PublishRequestPublishConfigFromJSON, PublishRequestPublishConfigFromJSONTyped, type PublishRequestPublishConfigNotification, PublishRequestPublishConfigNotificationChannelsEnum, PublishRequestPublishConfigNotificationFromJSON, PublishRequestPublishConfigNotificationFromJSONTyped, PublishRequestPublishConfigNotificationToJSON, type PublishRequestPublishConfigRollout, PublishRequestPublishConfigRolloutFromJSON, PublishRequestPublishConfigRolloutFromJSONTyped, type PublishRequestPublishConfigRolloutStrategy, PublishRequestPublishConfigRolloutStrategyFromJSON, PublishRequestPublishConfigRolloutStrategyFromJSONTyped, type PublishRequestPublishConfigRolloutStrategyOneOf, type PublishRequestPublishConfigRolloutStrategyOneOf1, PublishRequestPublishConfigRolloutStrategyOneOf1FromJSON, PublishRequestPublishConfigRolloutStrategyOneOf1FromJSONTyped, PublishRequestPublishConfigRolloutStrategyOneOf1ToJSON, PublishRequestPublishConfigRolloutStrategyOneOf1TypeEnum, type PublishRequestPublishConfigRolloutStrategyOneOf2, PublishRequestPublishConfigRolloutStrategyOneOf2FromJSON, PublishRequestPublishConfigRolloutStrategyOneOf2FromJSONTyped, PublishRequestPublishConfigRolloutStrategyOneOf2ToJSON, PublishRequestPublishConfigRolloutStrategyOneOf2TypeEnum, type PublishRequestPublishConfigRolloutStrategyOneOf3, type PublishRequestPublishConfigRolloutStrategyOneOf3ConditionsInner, PublishRequestPublishConfigRolloutStrategyOneOf3ConditionsInnerFromJSON, PublishRequestPublishConfigRolloutStrategyOneOf3ConditionsInnerFromJSONTyped, PublishRequestPublishConfigRolloutStrategyOneOf3ConditionsInnerOperatorEnum, PublishRequestPublishConfigRolloutStrategyOneOf3ConditionsInnerToJSON, PublishRequestPublishConfigRolloutStrategyOneOf3FromJSON, PublishRequestPublishConfigRolloutStrategyOneOf3FromJSONTyped, PublishRequestPublishConfigRolloutStrategyOneOf3LogicEnum, PublishRequestPublishConfigRolloutStrategyOneOf3ToJSON, PublishRequestPublishConfigRolloutStrategyOneOf3TypeEnum, type PublishRequestPublishConfigRolloutStrategyOneOf4, PublishRequestPublishConfigRolloutStrategyOneOf4FromJSON, PublishRequestPublishConfigRolloutStrategyOneOf4FromJSONTyped, PublishRequestPublishConfigRolloutStrategyOneOf4ToJSON, PublishRequestPublishConfigRolloutStrategyOneOf4TypeEnum, type PublishRequestPublishConfigRolloutStrategyOneOf5, PublishRequestPublishConfigRolloutStrategyOneOf5FromJSON, PublishRequestPublishConfigRolloutStrategyOneOf5FromJSONTyped, PublishRequestPublishConfigRolloutStrategyOneOf5ToJSON, PublishRequestPublishConfigRolloutStrategyOneOf5TypeEnum, type PublishRequestPublishConfigRolloutStrategyOneOf5VariantsInner, PublishRequestPublishConfigRolloutStrategyOneOf5VariantsInnerFromJSON, PublishRequestPublishConfigRolloutStrategyOneOf5VariantsInnerFromJSONTyped, PublishRequestPublishConfigRolloutStrategyOneOf5VariantsInnerToJSON, type PublishRequestPublishConfigRolloutStrategyOneOf6, type PublishRequestPublishConfigRolloutStrategyOneOf6AutoAdvance, PublishRequestPublishConfigRolloutStrategyOneOf6AutoAdvanceFromJSON, PublishRequestPublishConfigRolloutStrategyOneOf6AutoAdvanceFromJSONTyped, type PublishRequestPublishConfigRolloutStrategyOneOf6AutoAdvanceHealthCheck, PublishRequestPublishConfigRolloutStrategyOneOf6AutoAdvanceHealthCheckFromJSON, PublishRequestPublishConfigRolloutStrategyOneOf6AutoAdvanceHealthCheckFromJSONTyped, PublishRequestPublishConfigRolloutStrategyOneOf6AutoAdvanceHealthCheckToJSON, PublishRequestPublishConfigRolloutStrategyOneOf6AutoAdvanceToJSON, PublishRequestPublishConfigRolloutStrategyOneOf6FromJSON, PublishRequestPublishConfigRolloutStrategyOneOf6FromJSONTyped, type PublishRequestPublishConfigRolloutStrategyOneOf6StagesInner, PublishRequestPublishConfigRolloutStrategyOneOf6StagesInnerFromJSON, PublishRequestPublishConfigRolloutStrategyOneOf6StagesInnerFromJSONTyped, PublishRequestPublishConfigRolloutStrategyOneOf6StagesInnerToJSON, PublishRequestPublishConfigRolloutStrategyOneOf6ToJSON, PublishRequestPublishConfigRolloutStrategyOneOf6TypeEnum, PublishRequestPublishConfigRolloutStrategyOneOfBucketKeyEnum, PublishRequestPublishConfigRolloutStrategyOneOfFromJSON, PublishRequestPublishConfigRolloutStrategyOneOfFromJSONTyped, PublishRequestPublishConfigRolloutStrategyOneOfToJSON, PublishRequestPublishConfigRolloutStrategyOneOfTypeEnum, PublishRequestPublishConfigRolloutStrategyToJSON, PublishRequestPublishConfigRolloutToJSON, PublishRequestPublishConfigToJSON, PublishRequestToJSON, type PublishResponse, PublishResponseFromJSON, PublishResponseFromJSONTyped, PublishResponseToJSON, type ReadinessCheck200Response, ReadinessCheck200ResponseFromJSON, ReadinessCheck200ResponseFromJSONTyped, ReadinessCheck200ResponseToJSON, type ReadinessCheck503Response, ReadinessCheck503ResponseFromJSON, ReadinessCheck503ResponseFromJSONTyped, ReadinessCheck503ResponseToJSON, type RequestContext, RequiredError, ResponseError, type RevokePreviewTokenRequest, RevokePreviewTokenRequestFromJSON, RevokePreviewTokenRequestFromJSONTyped, RevokePreviewTokenRequestToJSON, type RollbackRequest, RollbackRequestFromJSON, RollbackRequestFromJSONTyped, RollbackRequestToJSON, RolloutApi, type RolloutConfig, RolloutConfigFromJSON, RolloutConfigFromJSONTyped, RolloutConfigToJSON, type RolloutStrategy, RolloutStrategyFromJSON, RolloutStrategyFromJSONTyped, RolloutStrategyToJSON, RolloutStrategyTypeEnum, type SaveDraftRequest, SaveDraftRequestFromJSON, SaveDraftRequestFromJSONTyped, SaveDraftRequestToJSON, type SetKillSwitchRequest, SetKillSwitchRequestFromJSON, SetKillSwitchRequestFromJSONTyped, SetKillSwitchRequestToJSON, type SuccessResponse, SuccessResponseFromJSON, SuccessResponseFromJSONTyped, SuccessResponseToJSON, type TemplateInfo, TemplateInfoFromJSON, TemplateInfoFromJSONTyped, TemplateInfoStatusEnum, TemplateInfoToJSON, type TemplateListResponse, type TemplateListResponseAllOfData, TemplateListResponseAllOfDataFromJSON, TemplateListResponseAllOfDataFromJSONTyped, TemplateListResponseAllOfDataToJSON, TemplateListResponseFromJSON, TemplateListResponseFromJSONTyped, TemplateListResponseToJSON, type TemplateResponse, TemplateResponseFromJSON, TemplateResponseFromJSONTyped, TemplateResponseToJSON, type UpdateActionDefinitionRequest, UpdateActionDefinitionRequestFromJSON, UpdateActionDefinitionRequestFromJSONTyped, UpdateActionDefinitionRequestStatusEnum, UpdateActionDefinitionRequestToJSON, type UpdateActivityRequest, UpdateActivityRequestFromJSON, UpdateActivityRequestFromJSONTyped, UpdateActivityRequestToJSON, type UpdateActivityStatusRequest, UpdateActivityStatusRequestFromJSON, UpdateActivityStatusRequestFromJSONTyped, UpdateActivityStatusRequestStatusEnum, UpdateActivityStatusRequestToJSON, type UpdateComponentStatusRequest, UpdateComponentStatusRequestFromJSON, UpdateComponentStatusRequestFromJSONTyped, UpdateComponentStatusRequestStatusEnum, UpdateComponentStatusRequestToJSON, type UpdateDataQueryDefinitionRequest, UpdateDataQueryDefinitionRequestFromJSON, UpdateDataQueryDefinitionRequestFromJSONTyped, UpdateDataQueryDefinitionRequestStatusEnum, UpdateDataQueryDefinitionRequestToJSON, type UpdatePageRequest, UpdatePageRequestFromJSON, UpdatePageRequestFromJSONTyped, UpdatePageRequestToJSON, type UpdateRolloutRequest, UpdateRolloutRequestFromJSON, UpdateRolloutRequestFromJSONTyped, UpdateRolloutRequestToJSON, type UpdateRolloutStrategyRequest, UpdateRolloutStrategyRequestFromJSON, UpdateRolloutStrategyRequestFromJSONTyped, UpdateRolloutStrategyRequestToJSON, type UpdateTemplateRequest, UpdateTemplateRequestFromJSON, UpdateTemplateRequestFromJSONTyped, UpdateTemplateRequestStatusEnum, UpdateTemplateRequestToJSON, VERSION, type VersionInfo, VersionInfoFromJSON, VersionInfoFromJSONTyped, VersionInfoStatusEnum, VersionInfoToJSON, type VersionListResponse, type VersionListResponseAllOfData, VersionListResponseAllOfDataFromJSON, VersionListResponseAllOfDataFromJSONTyped, VersionListResponseAllOfDataToJSON, VersionListResponseFromJSON, VersionListResponseFromJSONTyped, VersionListResponseToJSON, type VersionResponse, type VersionResponseAllOfData, VersionResponseAllOfDataFromJSON, VersionResponseAllOfDataFromJSONTyped, VersionResponseAllOfDataStatusEnum, VersionResponseAllOfDataToJSON, VersionResponseFromJSON, VersionResponseFromJSONTyped, VersionResponseToJSON, VersionsApi, createAdminClient, createAdminConfiguration, instanceOfActionDefinitionDetail, instanceOfActionDefinitionInfo, instanceOfActivityDetail, instanceOfActivityInfo, instanceOfActivityStats, instanceOfAddRolloutStrategy200Response, instanceOfAddRolloutStrategyRequest, instanceOfAuditLogDetail, instanceOfAuditLogDetailChanges, instanceOfAuditLogEntry, instanceOfAuditLogEntryActor, instanceOfAuditStats, instanceOfBatchDeletePages200Response, instanceOfBatchDeletePages200ResponseAllOfData, instanceOfBatchDeletePagesRequest, instanceOfCompareVersions200Response, instanceOfCompareVersions200ResponseAllOfData, instanceOfComponentInfo, instanceOfComponentListResponse, instanceOfComponentListResponseAllOfData, instanceOfComponentVersionInfo, instanceOfComponentVersionListResponse, instanceOfComponentVersionListResponseAllOfData, instanceOfComponentVersionResponse, instanceOfCreateActionDefinition201Response, instanceOfCreateActionDefinitionRequest, instanceOfCreateActivity201Response, instanceOfCreateActivityRequest, instanceOfCreateActivityRequestRule, instanceOfCreateActivityRequestRuleParticipationLimit, instanceOfCreateActivityRequestRulePreconditionsInner, instanceOfCreateDataQueryDefinition201Response, instanceOfCreateDataQueryDefinitionRequest, instanceOfCreatePageRequest, instanceOfCreateTemplateRequest, instanceOfDataQueryDefinitionDetail, instanceOfDataQueryDefinitionInfo, instanceOfDefinitionVersionInfo, instanceOfDeletePage200Response, instanceOfDeletePage200ResponseAllOfData, instanceOfDeletePageRequest, instanceOfDiscardDraft200Response, instanceOfDiscardDraftRequest, instanceOfDraftData, instanceOfDraftResponse, instanceOfErrorResponse, instanceOfGetActionDefinition200Response, instanceOfGetActivity200Response, instanceOfGetActivityStats200Response, instanceOfGetAuditLog200Response, instanceOfGetAuditStats200Response, instanceOfGetDataQueryDefinition200Response, instanceOfGetPageStats200Response, instanceOfGetPageStats200ResponseAllOfData, instanceOfGetPreview200Response, instanceOfGetPreviewToken200Response, instanceOfGetRolloutConfig200Response, instanceOfHealthResponse, instanceOfHealthResponseDependenciesValue, instanceOfKillSwitchStatusResponse, instanceOfKillSwitchStatusResponseData, instanceOfListActionDefinitionVersions200Response, instanceOfListActionDefinitions200Response, instanceOfListActivities200Response, instanceOfListAuditLogs200Response, instanceOfListDataQueryDefinitionVersions200Response, instanceOfListDataQueryDefinitions200Response, instanceOfListPreviewTokens200Response, instanceOfLivenessCheck200Response, instanceOfLockInfo, instanceOfPageInfo, instanceOfPageKillSwitchStatusResponse, instanceOfPageKillSwitchStatusResponseData, instanceOfPageListResponse, instanceOfPageListResponseAllOfData, instanceOfPageResponse, instanceOfPaginationMeta, instanceOfPreviewTokenInfo, instanceOfPublishActionDefinitionVersion201Response, instanceOfPublishDefinitionVersionRequest, instanceOfPublishRequest, instanceOfPublishRequestPublishConfig, instanceOfPublishRequestPublishConfigCdn, instanceOfPublishRequestPublishConfigNotification, instanceOfPublishRequestPublishConfigRollout, instanceOfPublishRequestPublishConfigRolloutStrategyOneOf, instanceOfPublishRequestPublishConfigRolloutStrategyOneOf1, instanceOfPublishRequestPublishConfigRolloutStrategyOneOf2, instanceOfPublishRequestPublishConfigRolloutStrategyOneOf3, instanceOfPublishRequestPublishConfigRolloutStrategyOneOf3ConditionsInner, instanceOfPublishRequestPublishConfigRolloutStrategyOneOf4, instanceOfPublishRequestPublishConfigRolloutStrategyOneOf5, instanceOfPublishRequestPublishConfigRolloutStrategyOneOf5VariantsInner, instanceOfPublishRequestPublishConfigRolloutStrategyOneOf6, instanceOfPublishRequestPublishConfigRolloutStrategyOneOf6AutoAdvance, instanceOfPublishRequestPublishConfigRolloutStrategyOneOf6AutoAdvanceHealthCheck, instanceOfPublishRequestPublishConfigRolloutStrategyOneOf6StagesInner, instanceOfPublishResponse, instanceOfReadinessCheck200Response, instanceOfReadinessCheck503Response, instanceOfRevokePreviewTokenRequest, instanceOfRollbackRequest, instanceOfRolloutConfig, instanceOfRolloutStrategy, instanceOfSaveDraftRequest, instanceOfSetKillSwitchRequest, instanceOfSuccessResponse, instanceOfTemplateInfo, instanceOfTemplateListResponse, instanceOfTemplateListResponseAllOfData, instanceOfTemplateResponse, instanceOfUpdateActionDefinitionRequest, instanceOfUpdateActivityRequest, instanceOfUpdateActivityStatusRequest, instanceOfUpdateComponentStatusRequest, instanceOfUpdateDataQueryDefinitionRequest, instanceOfUpdatePageRequest, instanceOfUpdateRolloutRequest, instanceOfUpdateRolloutStrategyRequest, instanceOfUpdateTemplateRequest, instanceOfVersionInfo, instanceOfVersionListResponse, instanceOfVersionListResponseAllOfData, instanceOfVersionResponse, instanceOfVersionResponseAllOfData };
|