@djvlc/openapi-user-client 1.8.2 → 1.8.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -832,49 +832,61 @@ declare function BatchQueryRequestToJSON(value?: BatchQueryRequest | null): any;
832
832
  * Do not edit the class manually.
833
833
  */
834
834
  /**
835
- * 被阻断的组件(BlockedComponentVo
835
+ * 被阻断的组件(BlockedComponentItemVo
836
836
  * @export
837
- * @interface BlockedComponent
837
+ * @interface BlockedComponentItem
838
838
  */
839
- interface BlockedComponent {
839
+ interface BlockedComponentItem {
840
840
  /**
841
841
  * 组件名称
842
842
  * @type {string}
843
- * @memberof BlockedComponent
843
+ * @memberof BlockedComponentItem
844
844
  */
845
845
  name: string;
846
846
  /**
847
- * 组件版本(不填则阻断所有版本)
847
+ * 组件版本(不指定则阻断所有版本)
848
848
  * @type {string}
849
- * @memberof BlockedComponent
849
+ * @memberof BlockedComponentItem
850
850
  */
851
851
  version?: string;
852
852
  /**
853
853
  * 阻断原因
854
854
  * @type {string}
855
- * @memberof BlockedComponent
855
+ * @memberof BlockedComponentItem
856
856
  */
857
857
  reason: string;
858
858
  /**
859
859
  * 阻断时间
860
- * @type {string}
861
- * @memberof BlockedComponent
860
+ * @type {Date}
861
+ * @memberof BlockedComponentItem
862
862
  */
863
- blockedAt: string;
863
+ blockedAt: Date;
864
864
  /**
865
- * 操作者
865
+ * 阻断操作者
866
866
  * @type {string}
867
- * @memberof BlockedComponent
867
+ * @memberof BlockedComponentItem
868
868
  */
869
869
  blockedBy: string;
870
+ /**
871
+ * 降级版本
872
+ * @type {string}
873
+ * @memberof BlockedComponentItem
874
+ */
875
+ fallbackVersion?: string;
876
+ /**
877
+ * 是否紧急阻断
878
+ * @type {boolean}
879
+ * @memberof BlockedComponentItem
880
+ */
881
+ urgent: boolean;
870
882
  }
871
883
  /**
872
- * Check if a given object implements the BlockedComponent interface.
884
+ * Check if a given object implements the BlockedComponentItem interface.
873
885
  */
874
- declare function instanceOfBlockedComponent(value: object): boolean;
875
- declare function BlockedComponentFromJSON(json: any): BlockedComponent;
876
- declare function BlockedComponentFromJSONTyped(json: any, ignoreDiscriminator: boolean): BlockedComponent;
877
- declare function BlockedComponentToJSON(value?: BlockedComponent | null): any;
886
+ declare function instanceOfBlockedComponentItem(value: object): boolean;
887
+ declare function BlockedComponentItemFromJSON(json: any): BlockedComponentItem;
888
+ declare function BlockedComponentItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): BlockedComponentItem;
889
+ declare function BlockedComponentItemToJSON(value?: BlockedComponentItem | null): any;
878
890
 
879
891
  /**
880
892
  * 平台用户端 API
@@ -970,59 +982,6 @@ declare function CursorPaginationMetaFromJSON(json: any): CursorPaginationMeta;
970
982
  declare function CursorPaginationMetaFromJSONTyped(json: any, ignoreDiscriminator: boolean): CursorPaginationMeta;
971
983
  declare function CursorPaginationMetaToJSON(value?: CursorPaginationMeta | null): any;
972
984
 
973
- /**
974
- * 平台用户端 API
975
- * 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
976
- *
977
- * The version of the OpenAPI document: 1.0.0
978
- * Contact: dev@djvlc.com
979
- *
980
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
981
- * https://openapi-generator.tech
982
- * Do not edit the class manually.
983
- */
984
- /**
985
- * 降级配置(DegradeConfigVo)
986
- * @export
987
- * @interface DegradeConfig
988
- */
989
- interface DegradeConfig {
990
- /**
991
- * 是否启用降级
992
- * @type {boolean}
993
- * @memberof DegradeConfig
994
- */
995
- enabled: boolean;
996
- /**
997
- * 降级模式
998
- * @type {string}
999
- * @memberof DegradeConfig
1000
- */
1001
- mode: DegradeConfigModeEnum;
1002
- /**
1003
- * 降级消息
1004
- * @type {string}
1005
- * @memberof DegradeConfig
1006
- */
1007
- message?: string;
1008
- }
1009
- /**
1010
- * @export
1011
- */
1012
- declare const DegradeConfigModeEnum: {
1013
- readonly FALLBACK: "fallback";
1014
- readonly STATIC: "static";
1015
- readonly ERROR: "error";
1016
- };
1017
- type DegradeConfigModeEnum = typeof DegradeConfigModeEnum[keyof typeof DegradeConfigModeEnum];
1018
- /**
1019
- * Check if a given object implements the DegradeConfig interface.
1020
- */
1021
- declare function instanceOfDegradeConfig(value: object): boolean;
1022
- declare function DegradeConfigFromJSON(json: any): DegradeConfig;
1023
- declare function DegradeConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): DegradeConfig;
1024
- declare function DegradeConfigToJSON(value?: DegradeConfig | null): any;
1025
-
1026
985
  /**
1027
986
  * 平台用户端 API
1028
987
  * 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
@@ -1741,6 +1700,125 @@ declare function GetClaimStatus200ResponseFromJSON(json: any): GetClaimStatus200
1741
1700
  declare function GetClaimStatus200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetClaimStatus200Response;
1742
1701
  declare function GetClaimStatus200ResponseToJSON(value?: GetClaimStatus200Response | null): any;
1743
1702
 
1703
+ /**
1704
+ * 平台用户端 API
1705
+ * 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
1706
+ *
1707
+ * The version of the OpenAPI document: 1.0.0
1708
+ * Contact: dev@djvlc.com
1709
+ *
1710
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1711
+ * https://openapi-generator.tech
1712
+ * Do not edit the class manually.
1713
+ */
1714
+ /**
1715
+ * Kill-Switch 项(KillSwitchItemVo)
1716
+ * @export
1717
+ * @interface KillSwitchItem
1718
+ */
1719
+ interface KillSwitchItem {
1720
+ /**
1721
+ * 目标类型
1722
+ * @type {string}
1723
+ * @memberof KillSwitchItem
1724
+ */
1725
+ targetType: KillSwitchItemTargetTypeEnum;
1726
+ /**
1727
+ * 目标 ID
1728
+ * @type {string}
1729
+ * @memberof KillSwitchItem
1730
+ */
1731
+ targetId: string;
1732
+ /**
1733
+ * 是否启用(true = 被关闭)
1734
+ * @type {boolean}
1735
+ * @memberof KillSwitchItem
1736
+ */
1737
+ enabled: boolean;
1738
+ /**
1739
+ * 关闭原因
1740
+ * @type {string}
1741
+ * @memberof KillSwitchItem
1742
+ */
1743
+ reason?: string;
1744
+ /**
1745
+ * 关闭时间
1746
+ * @type {Date}
1747
+ * @memberof KillSwitchItem
1748
+ */
1749
+ enabledAt?: Date;
1750
+ /**
1751
+ * 关闭操作者
1752
+ * @type {string}
1753
+ * @memberof KillSwitchItem
1754
+ */
1755
+ enabledBy?: string;
1756
+ /**
1757
+ * 用户提示消息
1758
+ * @type {string}
1759
+ * @memberof KillSwitchItem
1760
+ */
1761
+ userMessage?: string;
1762
+ }
1763
+ /**
1764
+ * @export
1765
+ */
1766
+ declare const KillSwitchItemTargetTypeEnum: {
1767
+ readonly ACTION: "action";
1768
+ readonly COMPONENT: "component";
1769
+ readonly FEATURE: "feature";
1770
+ readonly PAGE: "page";
1771
+ readonly QUERY: "query";
1772
+ };
1773
+ type KillSwitchItemTargetTypeEnum = typeof KillSwitchItemTargetTypeEnum[keyof typeof KillSwitchItemTargetTypeEnum];
1774
+ /**
1775
+ * Check if a given object implements the KillSwitchItem interface.
1776
+ */
1777
+ declare function instanceOfKillSwitchItem(value: object): boolean;
1778
+ declare function KillSwitchItemFromJSON(json: any): KillSwitchItem;
1779
+ declare function KillSwitchItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): KillSwitchItem;
1780
+ declare function KillSwitchItemToJSON(value?: KillSwitchItem | null): any;
1781
+
1782
+ /**
1783
+ * 平台用户端 API
1784
+ * 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
1785
+ *
1786
+ * The version of the OpenAPI document: 1.0.0
1787
+ * Contact: dev@djvlc.com
1788
+ *
1789
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1790
+ * https://openapi-generator.tech
1791
+ * Do not edit the class manually.
1792
+ */
1793
+ /**
1794
+ * 限流配置(RateLimitConfigVo)
1795
+ * @export
1796
+ * @interface RateLimitConfig
1797
+ */
1798
+ interface RateLimitConfig {
1799
+ /**
1800
+ * 全局 QPS 限制
1801
+ * @type {number}
1802
+ * @memberof RateLimitConfig
1803
+ */
1804
+ globalQps?: number;
1805
+ /**
1806
+ * 按动作类型的 QPS 限制
1807
+ * @type {{ [key: string]: number; }}
1808
+ * @memberof RateLimitConfig
1809
+ */
1810
+ actionQps?: {
1811
+ [key: string]: number;
1812
+ };
1813
+ }
1814
+ /**
1815
+ * Check if a given object implements the RateLimitConfig interface.
1816
+ */
1817
+ declare function instanceOfRateLimitConfig(value: object): boolean;
1818
+ declare function RateLimitConfigFromJSON(json: any): RateLimitConfig;
1819
+ declare function RateLimitConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): RateLimitConfig;
1820
+ declare function RateLimitConfigToJSON(value?: RateLimitConfig | null): any;
1821
+
1744
1822
  /**
1745
1823
  * 平台用户端 API
1746
1824
  * 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
@@ -1760,37 +1838,43 @@ declare function GetClaimStatus200ResponseToJSON(value?: GetClaimStatus200Respon
1760
1838
  */
1761
1839
  interface OpsConfig {
1762
1840
  /**
1763
- * 全局 kill-switch
1764
- * @type {boolean}
1841
+ * 配置版本 ID(用于缓存失效)
1842
+ * @type {string}
1765
1843
  * @memberof OpsConfig
1766
1844
  */
1767
- killSwitch: boolean;
1845
+ configVersionId?: string;
1768
1846
  /**
1769
- * 被阻断的组件列表
1770
- * @type {Array<BlockedComponent>}
1847
+ * Kill-Switch 列表
1848
+ * @type {Array<KillSwitchItem>}
1771
1849
  * @memberof OpsConfig
1772
1850
  */
1773
- blockedComponents: Array<BlockedComponent>;
1851
+ killSwitch: Array<KillSwitchItem>;
1774
1852
  /**
1775
- * 被阻断的页面列表
1776
- * @type {Array<string>}
1853
+ * 被阻断的组件列表
1854
+ * @type {Array<BlockedComponentItem>}
1777
1855
  * @memberof OpsConfig
1778
1856
  */
1779
- blockedPages: Array<string>;
1857
+ blockedComponents: Array<BlockedComponentItem>;
1780
1858
  /**
1781
1859
  * 功能开关
1782
1860
  * @type {{ [key: string]: boolean; }}
1783
1861
  * @memberof OpsConfig
1784
1862
  */
1785
- featureFlags: {
1863
+ flags: {
1786
1864
  [key: string]: boolean;
1787
1865
  };
1788
1866
  /**
1789
1867
  *
1790
- * @type {DegradeConfig}
1868
+ * @type {RateLimitConfig}
1869
+ * @memberof OpsConfig
1870
+ */
1871
+ rateLimit?: RateLimitConfig;
1872
+ /**
1873
+ * 配置过期时间
1874
+ * @type {Date}
1791
1875
  * @memberof OpsConfig
1792
1876
  */
1793
- degradeConfig: DegradeConfig;
1877
+ expiresAt?: Date;
1794
1878
  }
1795
1879
  /**
1796
1880
  * Check if a given object implements the OpsConfig interface.
@@ -3449,6 +3533,50 @@ declare function ReadinessCheck200ResponseFromJSON(json: any): ReadinessCheck200
3449
3533
  declare function ReadinessCheck200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReadinessCheck200Response;
3450
3534
  declare function ReadinessCheck200ResponseToJSON(value?: ReadinessCheck200Response | null): any;
3451
3535
 
3536
+ /**
3537
+ * 平台用户端 API
3538
+ * 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
3539
+ *
3540
+ * The version of the OpenAPI document: 1.0.0
3541
+ * Contact: dev@djvlc.com
3542
+ *
3543
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3544
+ * https://openapi-generator.tech
3545
+ * Do not edit the class manually.
3546
+ */
3547
+ /**
3548
+ * 灰度匹配信息(RolloutMatchVo)
3549
+ * @export
3550
+ * @interface RolloutMatch
3551
+ */
3552
+ interface RolloutMatch {
3553
+ /**
3554
+ * 匹配的策略 ID
3555
+ * @type {string}
3556
+ * @memberof RolloutMatch
3557
+ */
3558
+ strategyId?: string;
3559
+ /**
3560
+ * 匹配的策略名称
3561
+ * @type {string}
3562
+ * @memberof RolloutMatch
3563
+ */
3564
+ strategyName?: string;
3565
+ /**
3566
+ * 是否使用默认版本
3567
+ * @type {boolean}
3568
+ * @memberof RolloutMatch
3569
+ */
3570
+ isDefault: boolean;
3571
+ }
3572
+ /**
3573
+ * Check if a given object implements the RolloutMatch interface.
3574
+ */
3575
+ declare function instanceOfRolloutMatch(value: object): boolean;
3576
+ declare function RolloutMatchFromJSON(json: any): RolloutMatch;
3577
+ declare function RolloutMatchFromJSONTyped(json: any, ignoreDiscriminator: boolean): RolloutMatch;
3578
+ declare function RolloutMatchToJSON(value?: RolloutMatch | null): any;
3579
+
3452
3580
  /**
3453
3581
  * 平台用户端 API
3454
3582
  * 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
@@ -3527,6 +3655,12 @@ interface ResolvePageResponse {
3527
3655
  * @memberof ResolvePageResponse
3528
3656
  */
3529
3657
  runtimeVersion?: string;
3658
+ /**
3659
+ *
3660
+ * @type {RolloutMatch}
3661
+ * @memberof ResolvePageResponse
3662
+ */
3663
+ rolloutMatch?: RolloutMatch;
3530
3664
  }
3531
3665
  /**
3532
3666
  * Check if a given object implements the ResolvePageResponse interface.
@@ -5442,4 +5576,4 @@ declare function createUserConfiguration(config?: UserClientConfig): Configurati
5442
5576
  /** 客户端版本 */
5443
5577
  declare const VERSION = "1.0.0";
5444
5578
 
5445
- export { type ActionClientContext, ActionClientContextFromJSON, ActionClientContextFromJSONTyped, ActionClientContextToJSON, type ActionDefinitionVersionResponse, ActionDefinitionVersionResponseFromJSON, ActionDefinitionVersionResponseFromJSONTyped, ActionDefinitionVersionResponseStatusEnum, ActionDefinitionVersionResponseToJSON, ActionsApi, ActivitiesApi, type ActivityInfoData, ActivityInfoDataFromJSON, ActivityInfoDataFromJSONTyped, ActivityInfoDataToJSON, type ActivityInfoResponse, ActivityInfoResponseFromJSON, ActivityInfoResponseFromJSONTyped, ActivityInfoResponseToJSON, type ActivityStatus, ActivityStatusFromJSON, ActivityStatusFromJSONTyped, type ActivityStatusResponse, ActivityStatusResponseFromJSON, ActivityStatusResponseFromJSONTyped, ActivityStatusResponseToJSON, ActivityStatusResponseTypeEnum, ActivityStatusToJSON, ActivityStatusTypeEnum, BaseAPI, type BatchQueryData200Response, BatchQueryData200ResponseFromJSON, BatchQueryData200ResponseFromJSONTyped, BatchQueryData200ResponseToJSON, type BatchQueryItemRequest, BatchQueryItemRequestFromJSON, BatchQueryItemRequestFromJSONTyped, BatchQueryItemRequestToJSON, type BatchQueryRequest, BatchQueryRequestFromJSON, BatchQueryRequestFromJSONTyped, BatchQueryRequestToJSON, type BatchQueryResponse, BatchQueryResponseFromJSON, BatchQueryResponseFromJSONTyped, BatchQueryResponseToJSON, type BlockedComponent, BlockedComponentFromJSON, BlockedComponentFromJSONTyped, BlockedComponentToJSON, type ClaimStatusResponse, ClaimStatusResponseFromJSON, ClaimStatusResponseFromJSONTyped, ClaimStatusResponseToJSON, Configuration, type ConfigurationParameters, type CursorPaginationMeta, CursorPaginationMetaFromJSON, CursorPaginationMetaFromJSONTyped, CursorPaginationMetaToJSON, type DegradeConfig, DegradeConfigFromJSON, DegradeConfigFromJSONTyped, DegradeConfigModeEnum, DegradeConfigToJSON, type ErrorResponse, ErrorResponseFromJSON, ErrorResponseFromJSONTyped, ErrorResponseToJSON, type ExecuteAction200Response, ExecuteAction200ResponseFromJSON, ExecuteAction200ResponseFromJSONTyped, ExecuteAction200ResponseToJSON, type ExecuteActionRequest, ExecuteActionRequestFromJSON, ExecuteActionRequestFromJSONTyped, ExecuteActionRequestToJSON, type ExecuteActionResponse, ExecuteActionResponseFromJSON, ExecuteActionResponseFromJSONTyped, ExecuteActionResponseToJSON, type FetchAPI, FetchError, type FetchParams, type GetActionDefinition200Response, GetActionDefinition200ResponseFromJSON, GetActionDefinition200ResponseFromJSONTyped, GetActionDefinition200ResponseToJSON, type GetActivityInfo200Response, GetActivityInfo200ResponseFromJSON, GetActivityInfo200ResponseFromJSONTyped, GetActivityInfo200ResponseToJSON, type GetActivityState200Response, GetActivityState200ResponseFromJSON, GetActivityState200ResponseFromJSONTyped, GetActivityState200ResponseToJSON, type GetClaimRecords200Response, GetClaimRecords200ResponseFromJSON, GetClaimRecords200ResponseFromJSONTyped, GetClaimRecords200ResponseToJSON, type GetClaimStatus200Response, GetClaimStatus200ResponseFromJSON, GetClaimStatus200ResponseFromJSONTyped, GetClaimStatus200ResponseToJSON, type GetPageConfig200Response, GetPageConfig200ResponseFromJSON, GetPageConfig200ResponseFromJSONTyped, GetPageConfig200ResponseToJSON, type GetPageManifest200Response, GetPageManifest200ResponseFromJSON, GetPageManifest200ResponseFromJSONTyped, GetPageManifest200ResponseToJSON, type GetQueryDefinition200Response, GetQueryDefinition200ResponseFromJSON, GetQueryDefinition200ResponseFromJSONTyped, GetQueryDefinition200ResponseToJSON, type GetSigninCalendar200Response, GetSigninCalendar200ResponseFromJSON, GetSigninCalendar200ResponseFromJSONTyped, GetSigninCalendar200ResponseToJSON, type GetSigninStatus200Response, GetSigninStatus200ResponseFromJSON, GetSigninStatus200ResponseFromJSONTyped, GetSigninStatus200ResponseToJSON, type GetTenantConfig200Response, GetTenantConfig200ResponseFromJSON, GetTenantConfig200ResponseFromJSONTyped, GetTenantConfig200ResponseToJSON, HealthApi, type HealthCheck200Response, HealthCheck200ResponseFromJSON, HealthCheck200ResponseFromJSONTyped, HealthCheck200ResponseToJSON, type HealthCheckItem, HealthCheckItemFromJSON, HealthCheckItemFromJSONTyped, HealthCheckItemToJSON, type HealthCheckResponse, HealthCheckResponseFromJSON, HealthCheckResponseFromJSONTyped, HealthCheckResponseToJSON, type LivenessCheck200Response, LivenessCheck200ResponseFromJSON, LivenessCheck200ResponseFromJSONTyped, LivenessCheck200ResponseToJSON, type LivenessResponse, LivenessResponseFromJSON, LivenessResponseFromJSONTyped, LivenessResponseToJSON, type ManifestComponent, ManifestComponentFromJSON, ManifestComponentFromJSONTyped, ManifestComponentSourceEnum, ManifestComponentToJSON, type ManifestResponse, ManifestResponseFromJSON, ManifestResponseFromJSONTyped, ManifestResponseToJSON, type ManifestRuntime, ManifestRuntimeFromJSON, ManifestRuntimeFromJSONTyped, ManifestRuntimeToJSON, type Middleware, type MilestoneInfo, MilestoneInfoFromJSON, MilestoneInfoFromJSONTyped, MilestoneInfoToJSON, type OpsConfig, OpsConfigFromJSON, OpsConfigFromJSONTyped, OpsConfigToJSON, PagesApi, type PaginatedRecordsResponse, PaginatedRecordsResponseFromJSON, PaginatedRecordsResponseFromJSONTyped, PaginatedRecordsResponseToJSON, type PaginationMeta, PaginationMetaFromJSON, PaginationMetaFromJSONTyped, PaginationMetaToJSON, QueriesApi, type QueryContext, QueryContextFromJSON, QueryContextFromJSONTyped, QueryContextToJSON, type QueryData200Response, QueryData200ResponseFromJSON, QueryData200ResponseFromJSONTyped, QueryData200ResponseToJSON, type QueryDataRequest, QueryDataRequestFromJSON, QueryDataRequestFromJSONTyped, QueryDataRequestToJSON, type QueryDataResponse, QueryDataResponseFromJSON, QueryDataResponseFromJSONTyped, QueryDataResponseToJSON, type QueryDefinitionResponse, QueryDefinitionResponseFromJSON, QueryDefinitionResponseFromJSONTyped, QueryDefinitionResponseStatusEnum, QueryDefinitionResponseToJSON, type QueryMetadata, QueryMetadataFromJSON, QueryMetadataFromJSONTyped, QueryMetadataToJSON, type ReadinessCheck200Response, ReadinessCheck200ResponseFromJSON, ReadinessCheck200ResponseFromJSONTyped, ReadinessCheck200ResponseToJSON, type ReadinessResponse, ReadinessResponseFromJSON, ReadinessResponseFromJSONTyped, ReadinessResponseToJSON, type RequestContext, RequiredError, type ResolvePage200Response, ResolvePage200ResponseFromJSON, ResolvePage200ResponseFromJSONTyped, ResolvePage200ResponseToJSON, type ResolvePageResponse, ResolvePageResponseFromJSON, ResolvePageResponseFromJSONTyped, ResolvePageResponseToJSON, type ResolveTenant200Response, ResolveTenant200ResponseFromJSON, ResolveTenant200ResponseFromJSONTyped, ResolveTenant200ResponseToJSON, type ResolveTenantData, ResolveTenantDataFromJSON, ResolveTenantDataFromJSONTyped, ResolveTenantDataToJSON, type ResolveTenantRequest, ResolveTenantRequestFromJSON, ResolveTenantRequestFromJSONTyped, ResolveTenantRequestToJSON, type ResolveTenantResponse, ResolveTenantResponseFromJSON, ResolveTenantResponseFromJSONTyped, ResolveTenantResponseToJSON, ResponseError, type RewardInfo, RewardInfoFromJSON, RewardInfoFromJSONTyped, RewardInfoToJSON, type SigninCalendarData, SigninCalendarDataFromJSON, SigninCalendarDataFromJSONTyped, SigninCalendarDataToJSON, type SigninCalendarResponse, SigninCalendarResponseFromJSON, SigninCalendarResponseFromJSONTyped, SigninCalendarResponseToJSON, type SigninStatusResponse, SigninStatusResponseFromJSON, SigninStatusResponseFromJSONTyped, SigninStatusResponseToJSON, type SuccessResponse, SuccessResponseFromJSON, SuccessResponseFromJSONTyped, SuccessResponseToJSON, TenantApi, type TenantConfigData, TenantConfigDataFromJSON, TenantConfigDataFromJSONTyped, TenantConfigDataToJSON, type TenantConfigResponse, TenantConfigResponseFromJSON, TenantConfigResponseFromJSONTyped, TenantConfigResponseToJSON, TrackApi, type TrackBatchError, TrackBatchErrorFromJSON, TrackBatchErrorFromJSONTyped, TrackBatchErrorToJSON, type TrackBatchRequest, TrackBatchRequestFromJSON, TrackBatchRequestFromJSONTyped, TrackBatchRequestToJSON, type TrackBatchResponse, type TrackBatchResponseData, TrackBatchResponseDataFromJSON, TrackBatchResponseDataFromJSONTyped, TrackBatchResponseDataToJSON, TrackBatchResponseFromJSON, TrackBatchResponseFromJSONTyped, TrackBatchResponseToJSON, type TrackContext, TrackContextFromJSON, TrackContextFromJSONTyped, TrackContextToJSON, type TrackEvent, TrackEventFromJSON, TrackEventFromJSONTyped, TrackEventToJSON, type TrackSingleRequest, TrackSingleRequestFromJSON, TrackSingleRequestFromJSONTyped, TrackSingleRequestToJSON, type TrackSingleResponse, type TrackSingleResponseData, TrackSingleResponseDataFromJSON, TrackSingleResponseDataFromJSONTyped, TrackSingleResponseDataToJSON, TrackSingleResponseFromJSON, TrackSingleResponseFromJSONTyped, TrackSingleResponseToJSON, UserClient, type UserClientConfig, VERSION, type ValidateActionParams200Response, ValidateActionParams200ResponseFromJSON, ValidateActionParams200ResponseFromJSONTyped, ValidateActionParams200ResponseToJSON, type ValidateActionRequest, ValidateActionRequestFromJSON, ValidateActionRequestFromJSONTyped, ValidateActionRequestToJSON, type ValidateActionResponse, ValidateActionResponseFromJSON, ValidateActionResponseFromJSONTyped, ValidateActionResponseToJSON, createUserClient, createUserConfiguration, instanceOfActionClientContext, instanceOfActionDefinitionVersionResponse, instanceOfActivityInfoData, instanceOfActivityInfoResponse, instanceOfActivityStatus, instanceOfActivityStatusResponse, instanceOfBatchQueryData200Response, instanceOfBatchQueryItemRequest, instanceOfBatchQueryRequest, instanceOfBatchQueryResponse, instanceOfBlockedComponent, instanceOfClaimStatusResponse, instanceOfCursorPaginationMeta, instanceOfDegradeConfig, instanceOfErrorResponse, instanceOfExecuteAction200Response, instanceOfExecuteActionRequest, instanceOfExecuteActionResponse, instanceOfGetActionDefinition200Response, instanceOfGetActivityInfo200Response, instanceOfGetActivityState200Response, instanceOfGetClaimRecords200Response, instanceOfGetClaimStatus200Response, instanceOfGetPageConfig200Response, instanceOfGetPageManifest200Response, instanceOfGetQueryDefinition200Response, instanceOfGetSigninCalendar200Response, instanceOfGetSigninStatus200Response, instanceOfGetTenantConfig200Response, instanceOfHealthCheck200Response, instanceOfHealthCheckItem, instanceOfHealthCheckResponse, instanceOfLivenessCheck200Response, instanceOfLivenessResponse, instanceOfManifestComponent, instanceOfManifestResponse, instanceOfManifestRuntime, instanceOfMilestoneInfo, instanceOfOpsConfig, instanceOfPaginatedRecordsResponse, instanceOfPaginationMeta, instanceOfQueryContext, instanceOfQueryData200Response, instanceOfQueryDataRequest, instanceOfQueryDataResponse, instanceOfQueryDefinitionResponse, instanceOfQueryMetadata, instanceOfReadinessCheck200Response, instanceOfReadinessResponse, instanceOfResolvePage200Response, instanceOfResolvePageResponse, instanceOfResolveTenant200Response, instanceOfResolveTenantData, instanceOfResolveTenantRequest, instanceOfResolveTenantResponse, instanceOfRewardInfo, instanceOfSigninCalendarData, instanceOfSigninCalendarResponse, instanceOfSigninStatusResponse, instanceOfSuccessResponse, instanceOfTenantConfigData, instanceOfTenantConfigResponse, instanceOfTrackBatchError, instanceOfTrackBatchRequest, instanceOfTrackBatchResponse, instanceOfTrackBatchResponseData, instanceOfTrackContext, instanceOfTrackEvent, instanceOfTrackSingleRequest, instanceOfTrackSingleResponse, instanceOfTrackSingleResponseData, instanceOfValidateActionParams200Response, instanceOfValidateActionRequest, instanceOfValidateActionResponse };
5579
+ export { type ActionClientContext, ActionClientContextFromJSON, ActionClientContextFromJSONTyped, ActionClientContextToJSON, type ActionDefinitionVersionResponse, ActionDefinitionVersionResponseFromJSON, ActionDefinitionVersionResponseFromJSONTyped, ActionDefinitionVersionResponseStatusEnum, ActionDefinitionVersionResponseToJSON, ActionsApi, ActivitiesApi, type ActivityInfoData, ActivityInfoDataFromJSON, ActivityInfoDataFromJSONTyped, ActivityInfoDataToJSON, type ActivityInfoResponse, ActivityInfoResponseFromJSON, ActivityInfoResponseFromJSONTyped, ActivityInfoResponseToJSON, type ActivityStatus, ActivityStatusFromJSON, ActivityStatusFromJSONTyped, type ActivityStatusResponse, ActivityStatusResponseFromJSON, ActivityStatusResponseFromJSONTyped, ActivityStatusResponseToJSON, ActivityStatusResponseTypeEnum, ActivityStatusToJSON, ActivityStatusTypeEnum, BaseAPI, type BatchQueryData200Response, BatchQueryData200ResponseFromJSON, BatchQueryData200ResponseFromJSONTyped, BatchQueryData200ResponseToJSON, type BatchQueryItemRequest, BatchQueryItemRequestFromJSON, BatchQueryItemRequestFromJSONTyped, BatchQueryItemRequestToJSON, type BatchQueryRequest, BatchQueryRequestFromJSON, BatchQueryRequestFromJSONTyped, BatchQueryRequestToJSON, type BatchQueryResponse, BatchQueryResponseFromJSON, BatchQueryResponseFromJSONTyped, BatchQueryResponseToJSON, type BlockedComponentItem, BlockedComponentItemFromJSON, BlockedComponentItemFromJSONTyped, BlockedComponentItemToJSON, type ClaimStatusResponse, ClaimStatusResponseFromJSON, ClaimStatusResponseFromJSONTyped, ClaimStatusResponseToJSON, Configuration, type ConfigurationParameters, type CursorPaginationMeta, CursorPaginationMetaFromJSON, CursorPaginationMetaFromJSONTyped, CursorPaginationMetaToJSON, type ErrorResponse, ErrorResponseFromJSON, ErrorResponseFromJSONTyped, ErrorResponseToJSON, type ExecuteAction200Response, ExecuteAction200ResponseFromJSON, ExecuteAction200ResponseFromJSONTyped, ExecuteAction200ResponseToJSON, type ExecuteActionRequest, ExecuteActionRequestFromJSON, ExecuteActionRequestFromJSONTyped, ExecuteActionRequestToJSON, type ExecuteActionResponse, ExecuteActionResponseFromJSON, ExecuteActionResponseFromJSONTyped, ExecuteActionResponseToJSON, type FetchAPI, FetchError, type FetchParams, type GetActionDefinition200Response, GetActionDefinition200ResponseFromJSON, GetActionDefinition200ResponseFromJSONTyped, GetActionDefinition200ResponseToJSON, type GetActivityInfo200Response, GetActivityInfo200ResponseFromJSON, GetActivityInfo200ResponseFromJSONTyped, GetActivityInfo200ResponseToJSON, type GetActivityState200Response, GetActivityState200ResponseFromJSON, GetActivityState200ResponseFromJSONTyped, GetActivityState200ResponseToJSON, type GetClaimRecords200Response, GetClaimRecords200ResponseFromJSON, GetClaimRecords200ResponseFromJSONTyped, GetClaimRecords200ResponseToJSON, type GetClaimStatus200Response, GetClaimStatus200ResponseFromJSON, GetClaimStatus200ResponseFromJSONTyped, GetClaimStatus200ResponseToJSON, type GetPageConfig200Response, GetPageConfig200ResponseFromJSON, GetPageConfig200ResponseFromJSONTyped, GetPageConfig200ResponseToJSON, type GetPageManifest200Response, GetPageManifest200ResponseFromJSON, GetPageManifest200ResponseFromJSONTyped, GetPageManifest200ResponseToJSON, type GetQueryDefinition200Response, GetQueryDefinition200ResponseFromJSON, GetQueryDefinition200ResponseFromJSONTyped, GetQueryDefinition200ResponseToJSON, type GetSigninCalendar200Response, GetSigninCalendar200ResponseFromJSON, GetSigninCalendar200ResponseFromJSONTyped, GetSigninCalendar200ResponseToJSON, type GetSigninStatus200Response, GetSigninStatus200ResponseFromJSON, GetSigninStatus200ResponseFromJSONTyped, GetSigninStatus200ResponseToJSON, type GetTenantConfig200Response, GetTenantConfig200ResponseFromJSON, GetTenantConfig200ResponseFromJSONTyped, GetTenantConfig200ResponseToJSON, HealthApi, type HealthCheck200Response, HealthCheck200ResponseFromJSON, HealthCheck200ResponseFromJSONTyped, HealthCheck200ResponseToJSON, type HealthCheckItem, HealthCheckItemFromJSON, HealthCheckItemFromJSONTyped, HealthCheckItemToJSON, type HealthCheckResponse, HealthCheckResponseFromJSON, HealthCheckResponseFromJSONTyped, HealthCheckResponseToJSON, type KillSwitchItem, KillSwitchItemFromJSON, KillSwitchItemFromJSONTyped, KillSwitchItemTargetTypeEnum, KillSwitchItemToJSON, type LivenessCheck200Response, LivenessCheck200ResponseFromJSON, LivenessCheck200ResponseFromJSONTyped, LivenessCheck200ResponseToJSON, type LivenessResponse, LivenessResponseFromJSON, LivenessResponseFromJSONTyped, LivenessResponseToJSON, type ManifestComponent, ManifestComponentFromJSON, ManifestComponentFromJSONTyped, ManifestComponentSourceEnum, ManifestComponentToJSON, type ManifestResponse, ManifestResponseFromJSON, ManifestResponseFromJSONTyped, ManifestResponseToJSON, type ManifestRuntime, ManifestRuntimeFromJSON, ManifestRuntimeFromJSONTyped, ManifestRuntimeToJSON, type Middleware, type MilestoneInfo, MilestoneInfoFromJSON, MilestoneInfoFromJSONTyped, MilestoneInfoToJSON, type OpsConfig, OpsConfigFromJSON, OpsConfigFromJSONTyped, OpsConfigToJSON, PagesApi, type PaginatedRecordsResponse, PaginatedRecordsResponseFromJSON, PaginatedRecordsResponseFromJSONTyped, PaginatedRecordsResponseToJSON, type PaginationMeta, PaginationMetaFromJSON, PaginationMetaFromJSONTyped, PaginationMetaToJSON, QueriesApi, type QueryContext, QueryContextFromJSON, QueryContextFromJSONTyped, QueryContextToJSON, type QueryData200Response, QueryData200ResponseFromJSON, QueryData200ResponseFromJSONTyped, QueryData200ResponseToJSON, type QueryDataRequest, QueryDataRequestFromJSON, QueryDataRequestFromJSONTyped, QueryDataRequestToJSON, type QueryDataResponse, QueryDataResponseFromJSON, QueryDataResponseFromJSONTyped, QueryDataResponseToJSON, type QueryDefinitionResponse, QueryDefinitionResponseFromJSON, QueryDefinitionResponseFromJSONTyped, QueryDefinitionResponseStatusEnum, QueryDefinitionResponseToJSON, type QueryMetadata, QueryMetadataFromJSON, QueryMetadataFromJSONTyped, QueryMetadataToJSON, type RateLimitConfig, RateLimitConfigFromJSON, RateLimitConfigFromJSONTyped, RateLimitConfigToJSON, type ReadinessCheck200Response, ReadinessCheck200ResponseFromJSON, ReadinessCheck200ResponseFromJSONTyped, ReadinessCheck200ResponseToJSON, type ReadinessResponse, ReadinessResponseFromJSON, ReadinessResponseFromJSONTyped, ReadinessResponseToJSON, type RequestContext, RequiredError, type ResolvePage200Response, ResolvePage200ResponseFromJSON, ResolvePage200ResponseFromJSONTyped, ResolvePage200ResponseToJSON, type ResolvePageResponse, ResolvePageResponseFromJSON, ResolvePageResponseFromJSONTyped, ResolvePageResponseToJSON, type ResolveTenant200Response, ResolveTenant200ResponseFromJSON, ResolveTenant200ResponseFromJSONTyped, ResolveTenant200ResponseToJSON, type ResolveTenantData, ResolveTenantDataFromJSON, ResolveTenantDataFromJSONTyped, ResolveTenantDataToJSON, type ResolveTenantRequest, ResolveTenantRequestFromJSON, ResolveTenantRequestFromJSONTyped, ResolveTenantRequestToJSON, type ResolveTenantResponse, ResolveTenantResponseFromJSON, ResolveTenantResponseFromJSONTyped, ResolveTenantResponseToJSON, ResponseError, type RewardInfo, RewardInfoFromJSON, RewardInfoFromJSONTyped, RewardInfoToJSON, type RolloutMatch, RolloutMatchFromJSON, RolloutMatchFromJSONTyped, RolloutMatchToJSON, type SigninCalendarData, SigninCalendarDataFromJSON, SigninCalendarDataFromJSONTyped, SigninCalendarDataToJSON, type SigninCalendarResponse, SigninCalendarResponseFromJSON, SigninCalendarResponseFromJSONTyped, SigninCalendarResponseToJSON, type SigninStatusResponse, SigninStatusResponseFromJSON, SigninStatusResponseFromJSONTyped, SigninStatusResponseToJSON, type SuccessResponse, SuccessResponseFromJSON, SuccessResponseFromJSONTyped, SuccessResponseToJSON, TenantApi, type TenantConfigData, TenantConfigDataFromJSON, TenantConfigDataFromJSONTyped, TenantConfigDataToJSON, type TenantConfigResponse, TenantConfigResponseFromJSON, TenantConfigResponseFromJSONTyped, TenantConfigResponseToJSON, TrackApi, type TrackBatchError, TrackBatchErrorFromJSON, TrackBatchErrorFromJSONTyped, TrackBatchErrorToJSON, type TrackBatchRequest, TrackBatchRequestFromJSON, TrackBatchRequestFromJSONTyped, TrackBatchRequestToJSON, type TrackBatchResponse, type TrackBatchResponseData, TrackBatchResponseDataFromJSON, TrackBatchResponseDataFromJSONTyped, TrackBatchResponseDataToJSON, TrackBatchResponseFromJSON, TrackBatchResponseFromJSONTyped, TrackBatchResponseToJSON, type TrackContext, TrackContextFromJSON, TrackContextFromJSONTyped, TrackContextToJSON, type TrackEvent, TrackEventFromJSON, TrackEventFromJSONTyped, TrackEventToJSON, type TrackSingleRequest, TrackSingleRequestFromJSON, TrackSingleRequestFromJSONTyped, TrackSingleRequestToJSON, type TrackSingleResponse, type TrackSingleResponseData, TrackSingleResponseDataFromJSON, TrackSingleResponseDataFromJSONTyped, TrackSingleResponseDataToJSON, TrackSingleResponseFromJSON, TrackSingleResponseFromJSONTyped, TrackSingleResponseToJSON, UserClient, type UserClientConfig, VERSION, type ValidateActionParams200Response, ValidateActionParams200ResponseFromJSON, ValidateActionParams200ResponseFromJSONTyped, ValidateActionParams200ResponseToJSON, type ValidateActionRequest, ValidateActionRequestFromJSON, ValidateActionRequestFromJSONTyped, ValidateActionRequestToJSON, type ValidateActionResponse, ValidateActionResponseFromJSON, ValidateActionResponseFromJSONTyped, ValidateActionResponseToJSON, createUserClient, createUserConfiguration, instanceOfActionClientContext, instanceOfActionDefinitionVersionResponse, instanceOfActivityInfoData, instanceOfActivityInfoResponse, instanceOfActivityStatus, instanceOfActivityStatusResponse, instanceOfBatchQueryData200Response, instanceOfBatchQueryItemRequest, instanceOfBatchQueryRequest, instanceOfBatchQueryResponse, instanceOfBlockedComponentItem, instanceOfClaimStatusResponse, instanceOfCursorPaginationMeta, instanceOfErrorResponse, instanceOfExecuteAction200Response, instanceOfExecuteActionRequest, instanceOfExecuteActionResponse, instanceOfGetActionDefinition200Response, instanceOfGetActivityInfo200Response, instanceOfGetActivityState200Response, instanceOfGetClaimRecords200Response, instanceOfGetClaimStatus200Response, instanceOfGetPageConfig200Response, instanceOfGetPageManifest200Response, instanceOfGetQueryDefinition200Response, instanceOfGetSigninCalendar200Response, instanceOfGetSigninStatus200Response, instanceOfGetTenantConfig200Response, instanceOfHealthCheck200Response, instanceOfHealthCheckItem, instanceOfHealthCheckResponse, instanceOfKillSwitchItem, instanceOfLivenessCheck200Response, instanceOfLivenessResponse, instanceOfManifestComponent, instanceOfManifestResponse, instanceOfManifestRuntime, instanceOfMilestoneInfo, instanceOfOpsConfig, instanceOfPaginatedRecordsResponse, instanceOfPaginationMeta, instanceOfQueryContext, instanceOfQueryData200Response, instanceOfQueryDataRequest, instanceOfQueryDataResponse, instanceOfQueryDefinitionResponse, instanceOfQueryMetadata, instanceOfRateLimitConfig, instanceOfReadinessCheck200Response, instanceOfReadinessResponse, instanceOfResolvePage200Response, instanceOfResolvePageResponse, instanceOfResolveTenant200Response, instanceOfResolveTenantData, instanceOfResolveTenantRequest, instanceOfResolveTenantResponse, instanceOfRewardInfo, instanceOfRolloutMatch, instanceOfSigninCalendarData, instanceOfSigninCalendarResponse, instanceOfSigninStatusResponse, instanceOfSuccessResponse, instanceOfTenantConfigData, instanceOfTenantConfigResponse, instanceOfTrackBatchError, instanceOfTrackBatchRequest, instanceOfTrackBatchResponse, instanceOfTrackBatchResponseData, instanceOfTrackContext, instanceOfTrackEvent, instanceOfTrackSingleRequest, instanceOfTrackSingleResponse, instanceOfTrackSingleResponseData, instanceOfValidateActionParams200Response, instanceOfValidateActionRequest, instanceOfValidateActionResponse };