@djvlc/openapi-user-client 1.8.1 → 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.mts +2502 -868
- package/dist/index.d.ts +2502 -868
- package/dist/index.js +1808 -591
- package/dist/index.mjs +1711 -582
- package/openapi/dist/user-api.yaml +279 -114
- package/openapi/src/components/schemas/_index.yaml +87 -33
- package/openapi/src/paths/actions.yaml +18 -3
- package/openapi/src/paths/activities.yaml +56 -16
- package/openapi/src/paths/health.yaml +18 -3
- package/openapi/src/paths/pages.yaml +18 -3
- package/openapi/src/paths/queries.yaml +21 -6
- package/openapi/src/paths/tenant.yaml +12 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -542,79 +542,6 @@ declare function ActivityStatusResponseFromJSON(json: any): ActivityStatusRespon
|
|
|
542
542
|
declare function ActivityStatusResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ActivityStatusResponse;
|
|
543
543
|
declare function ActivityStatusResponseToJSON(value?: ActivityStatusResponse | null): any;
|
|
544
544
|
|
|
545
|
-
/**
|
|
546
|
-
* 平台用户端 API
|
|
547
|
-
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
548
|
-
*
|
|
549
|
-
* The version of the OpenAPI document: 1.0.0
|
|
550
|
-
* Contact: dev@djvlc.com
|
|
551
|
-
*
|
|
552
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
553
|
-
* https://openapi-generator.tech
|
|
554
|
-
* Do not edit the class manually.
|
|
555
|
-
*/
|
|
556
|
-
/**
|
|
557
|
-
* 批量查询项(DataQueryBatchItemDto)
|
|
558
|
-
* @export
|
|
559
|
-
* @interface BatchQueryItemRequest
|
|
560
|
-
*/
|
|
561
|
-
interface BatchQueryItemRequest {
|
|
562
|
-
/**
|
|
563
|
-
* 查询版本 ID
|
|
564
|
-
* @type {string}
|
|
565
|
-
* @memberof BatchQueryItemRequest
|
|
566
|
-
*/
|
|
567
|
-
queryVersionId: string;
|
|
568
|
-
/**
|
|
569
|
-
* 查询参数
|
|
570
|
-
* @type {{ [key: string]: any; }}
|
|
571
|
-
* @memberof BatchQueryItemRequest
|
|
572
|
-
*/
|
|
573
|
-
params?: {
|
|
574
|
-
[key: string]: any;
|
|
575
|
-
};
|
|
576
|
-
}
|
|
577
|
-
/**
|
|
578
|
-
* Check if a given object implements the BatchQueryItemRequest interface.
|
|
579
|
-
*/
|
|
580
|
-
declare function instanceOfBatchQueryItemRequest(value: object): boolean;
|
|
581
|
-
declare function BatchQueryItemRequestFromJSON(json: any): BatchQueryItemRequest;
|
|
582
|
-
declare function BatchQueryItemRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): BatchQueryItemRequest;
|
|
583
|
-
declare function BatchQueryItemRequestToJSON(value?: BatchQueryItemRequest | null): any;
|
|
584
|
-
|
|
585
|
-
/**
|
|
586
|
-
* 平台用户端 API
|
|
587
|
-
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
588
|
-
*
|
|
589
|
-
* The version of the OpenAPI document: 1.0.0
|
|
590
|
-
* Contact: dev@djvlc.com
|
|
591
|
-
*
|
|
592
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
593
|
-
* https://openapi-generator.tech
|
|
594
|
-
* Do not edit the class manually.
|
|
595
|
-
*/
|
|
596
|
-
|
|
597
|
-
/**
|
|
598
|
-
* 批量查询请求(DataQueryBatchDto)
|
|
599
|
-
* @export
|
|
600
|
-
* @interface BatchQueryRequest
|
|
601
|
-
*/
|
|
602
|
-
interface BatchQueryRequest {
|
|
603
|
-
/**
|
|
604
|
-
* 查询列表
|
|
605
|
-
* @type {Array<BatchQueryItemRequest>}
|
|
606
|
-
* @memberof BatchQueryRequest
|
|
607
|
-
*/
|
|
608
|
-
queries: Array<BatchQueryItemRequest>;
|
|
609
|
-
}
|
|
610
|
-
/**
|
|
611
|
-
* Check if a given object implements the BatchQueryRequest interface.
|
|
612
|
-
*/
|
|
613
|
-
declare function instanceOfBatchQueryRequest(value: object): boolean;
|
|
614
|
-
declare function BatchQueryRequestFromJSON(json: any): BatchQueryRequest;
|
|
615
|
-
declare function BatchQueryRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): BatchQueryRequest;
|
|
616
|
-
declare function BatchQueryRequestToJSON(value?: BatchQueryRequest | null): any;
|
|
617
|
-
|
|
618
545
|
/**
|
|
619
546
|
* 平台用户端 API
|
|
620
547
|
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
@@ -745,6 +672,154 @@ declare function BatchQueryResponseFromJSON(json: any): BatchQueryResponse;
|
|
|
745
672
|
declare function BatchQueryResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): BatchQueryResponse;
|
|
746
673
|
declare function BatchQueryResponseToJSON(value?: BatchQueryResponse | null): any;
|
|
747
674
|
|
|
675
|
+
/**
|
|
676
|
+
* 平台用户端 API
|
|
677
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
678
|
+
*
|
|
679
|
+
* The version of the OpenAPI document: 1.0.0
|
|
680
|
+
* Contact: dev@djvlc.com
|
|
681
|
+
*
|
|
682
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
683
|
+
* https://openapi-generator.tech
|
|
684
|
+
* Do not edit the class manually.
|
|
685
|
+
*/
|
|
686
|
+
|
|
687
|
+
/**
|
|
688
|
+
*
|
|
689
|
+
* @export
|
|
690
|
+
* @interface BatchQueryData200Response
|
|
691
|
+
*/
|
|
692
|
+
interface BatchQueryData200Response {
|
|
693
|
+
/**
|
|
694
|
+
* 请求是否成功
|
|
695
|
+
* @type {boolean}
|
|
696
|
+
* @memberof BatchQueryData200Response
|
|
697
|
+
*/
|
|
698
|
+
success: boolean;
|
|
699
|
+
/**
|
|
700
|
+
* 业务状态码
|
|
701
|
+
* @type {string}
|
|
702
|
+
* @memberof BatchQueryData200Response
|
|
703
|
+
*/
|
|
704
|
+
code: string;
|
|
705
|
+
/**
|
|
706
|
+
* 响应消息
|
|
707
|
+
* @type {string}
|
|
708
|
+
* @memberof BatchQueryData200Response
|
|
709
|
+
*/
|
|
710
|
+
message: string;
|
|
711
|
+
/**
|
|
712
|
+
*
|
|
713
|
+
* @type {BatchQueryResponse}
|
|
714
|
+
* @memberof BatchQueryData200Response
|
|
715
|
+
*/
|
|
716
|
+
data: BatchQueryResponse;
|
|
717
|
+
/**
|
|
718
|
+
* 响应时间戳
|
|
719
|
+
* @type {number}
|
|
720
|
+
* @memberof BatchQueryData200Response
|
|
721
|
+
*/
|
|
722
|
+
timestamp: number;
|
|
723
|
+
/**
|
|
724
|
+
* 请求路径
|
|
725
|
+
* @type {string}
|
|
726
|
+
* @memberof BatchQueryData200Response
|
|
727
|
+
*/
|
|
728
|
+
path: string;
|
|
729
|
+
/**
|
|
730
|
+
* 请求ID
|
|
731
|
+
* @type {string}
|
|
732
|
+
* @memberof BatchQueryData200Response
|
|
733
|
+
*/
|
|
734
|
+
requestId?: string;
|
|
735
|
+
/**
|
|
736
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
737
|
+
* @type {string}
|
|
738
|
+
* @memberof BatchQueryData200Response
|
|
739
|
+
*/
|
|
740
|
+
traceId?: string;
|
|
741
|
+
}
|
|
742
|
+
/**
|
|
743
|
+
* Check if a given object implements the BatchQueryData200Response interface.
|
|
744
|
+
*/
|
|
745
|
+
declare function instanceOfBatchQueryData200Response(value: object): boolean;
|
|
746
|
+
declare function BatchQueryData200ResponseFromJSON(json: any): BatchQueryData200Response;
|
|
747
|
+
declare function BatchQueryData200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): BatchQueryData200Response;
|
|
748
|
+
declare function BatchQueryData200ResponseToJSON(value?: BatchQueryData200Response | null): any;
|
|
749
|
+
|
|
750
|
+
/**
|
|
751
|
+
* 平台用户端 API
|
|
752
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
753
|
+
*
|
|
754
|
+
* The version of the OpenAPI document: 1.0.0
|
|
755
|
+
* Contact: dev@djvlc.com
|
|
756
|
+
*
|
|
757
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
758
|
+
* https://openapi-generator.tech
|
|
759
|
+
* Do not edit the class manually.
|
|
760
|
+
*/
|
|
761
|
+
/**
|
|
762
|
+
* 批量查询项(DataQueryBatchItemDto)
|
|
763
|
+
* @export
|
|
764
|
+
* @interface BatchQueryItemRequest
|
|
765
|
+
*/
|
|
766
|
+
interface BatchQueryItemRequest {
|
|
767
|
+
/**
|
|
768
|
+
* 查询版本 ID
|
|
769
|
+
* @type {string}
|
|
770
|
+
* @memberof BatchQueryItemRequest
|
|
771
|
+
*/
|
|
772
|
+
queryVersionId: string;
|
|
773
|
+
/**
|
|
774
|
+
* 查询参数
|
|
775
|
+
* @type {{ [key: string]: any; }}
|
|
776
|
+
* @memberof BatchQueryItemRequest
|
|
777
|
+
*/
|
|
778
|
+
params?: {
|
|
779
|
+
[key: string]: any;
|
|
780
|
+
};
|
|
781
|
+
}
|
|
782
|
+
/**
|
|
783
|
+
* Check if a given object implements the BatchQueryItemRequest interface.
|
|
784
|
+
*/
|
|
785
|
+
declare function instanceOfBatchQueryItemRequest(value: object): boolean;
|
|
786
|
+
declare function BatchQueryItemRequestFromJSON(json: any): BatchQueryItemRequest;
|
|
787
|
+
declare function BatchQueryItemRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): BatchQueryItemRequest;
|
|
788
|
+
declare function BatchQueryItemRequestToJSON(value?: BatchQueryItemRequest | null): any;
|
|
789
|
+
|
|
790
|
+
/**
|
|
791
|
+
* 平台用户端 API
|
|
792
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
793
|
+
*
|
|
794
|
+
* The version of the OpenAPI document: 1.0.0
|
|
795
|
+
* Contact: dev@djvlc.com
|
|
796
|
+
*
|
|
797
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
798
|
+
* https://openapi-generator.tech
|
|
799
|
+
* Do not edit the class manually.
|
|
800
|
+
*/
|
|
801
|
+
|
|
802
|
+
/**
|
|
803
|
+
* 批量查询请求(DataQueryBatchDto)
|
|
804
|
+
* @export
|
|
805
|
+
* @interface BatchQueryRequest
|
|
806
|
+
*/
|
|
807
|
+
interface BatchQueryRequest {
|
|
808
|
+
/**
|
|
809
|
+
* 查询列表
|
|
810
|
+
* @type {Array<BatchQueryItemRequest>}
|
|
811
|
+
* @memberof BatchQueryRequest
|
|
812
|
+
*/
|
|
813
|
+
queries: Array<BatchQueryItemRequest>;
|
|
814
|
+
}
|
|
815
|
+
/**
|
|
816
|
+
* Check if a given object implements the BatchQueryRequest interface.
|
|
817
|
+
*/
|
|
818
|
+
declare function instanceOfBatchQueryRequest(value: object): boolean;
|
|
819
|
+
declare function BatchQueryRequestFromJSON(json: any): BatchQueryRequest;
|
|
820
|
+
declare function BatchQueryRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): BatchQueryRequest;
|
|
821
|
+
declare function BatchQueryRequestToJSON(value?: BatchQueryRequest | null): any;
|
|
822
|
+
|
|
748
823
|
/**
|
|
749
824
|
* 平台用户端 API
|
|
750
825
|
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
@@ -757,49 +832,61 @@ declare function BatchQueryResponseToJSON(value?: BatchQueryResponse | null): an
|
|
|
757
832
|
* Do not edit the class manually.
|
|
758
833
|
*/
|
|
759
834
|
/**
|
|
760
|
-
* 被阻断的组件(
|
|
835
|
+
* 被阻断的组件(BlockedComponentItemVo)
|
|
761
836
|
* @export
|
|
762
|
-
* @interface
|
|
837
|
+
* @interface BlockedComponentItem
|
|
763
838
|
*/
|
|
764
|
-
interface
|
|
839
|
+
interface BlockedComponentItem {
|
|
765
840
|
/**
|
|
766
841
|
* 组件名称
|
|
767
842
|
* @type {string}
|
|
768
|
-
* @memberof
|
|
843
|
+
* @memberof BlockedComponentItem
|
|
769
844
|
*/
|
|
770
845
|
name: string;
|
|
771
846
|
/**
|
|
772
|
-
*
|
|
847
|
+
* 组件版本(不指定则阻断所有版本)
|
|
773
848
|
* @type {string}
|
|
774
|
-
* @memberof
|
|
849
|
+
* @memberof BlockedComponentItem
|
|
775
850
|
*/
|
|
776
851
|
version?: string;
|
|
777
852
|
/**
|
|
778
853
|
* 阻断原因
|
|
779
854
|
* @type {string}
|
|
780
|
-
* @memberof
|
|
855
|
+
* @memberof BlockedComponentItem
|
|
781
856
|
*/
|
|
782
857
|
reason: string;
|
|
783
858
|
/**
|
|
784
859
|
* 阻断时间
|
|
785
|
-
* @type {
|
|
786
|
-
* @memberof
|
|
860
|
+
* @type {Date}
|
|
861
|
+
* @memberof BlockedComponentItem
|
|
787
862
|
*/
|
|
788
|
-
blockedAt:
|
|
863
|
+
blockedAt: Date;
|
|
789
864
|
/**
|
|
790
|
-
*
|
|
865
|
+
* 阻断操作者
|
|
791
866
|
* @type {string}
|
|
792
|
-
* @memberof
|
|
867
|
+
* @memberof BlockedComponentItem
|
|
793
868
|
*/
|
|
794
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;
|
|
795
882
|
}
|
|
796
883
|
/**
|
|
797
|
-
* Check if a given object implements the
|
|
884
|
+
* Check if a given object implements the BlockedComponentItem interface.
|
|
798
885
|
*/
|
|
799
|
-
declare function
|
|
800
|
-
declare function
|
|
801
|
-
declare function
|
|
802
|
-
declare function
|
|
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;
|
|
803
890
|
|
|
804
891
|
/**
|
|
805
892
|
* 平台用户端 API
|
|
@@ -895,59 +982,6 @@ declare function CursorPaginationMetaFromJSON(json: any): CursorPaginationMeta;
|
|
|
895
982
|
declare function CursorPaginationMetaFromJSONTyped(json: any, ignoreDiscriminator: boolean): CursorPaginationMeta;
|
|
896
983
|
declare function CursorPaginationMetaToJSON(value?: CursorPaginationMeta | null): any;
|
|
897
984
|
|
|
898
|
-
/**
|
|
899
|
-
* 平台用户端 API
|
|
900
|
-
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
901
|
-
*
|
|
902
|
-
* The version of the OpenAPI document: 1.0.0
|
|
903
|
-
* Contact: dev@djvlc.com
|
|
904
|
-
*
|
|
905
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
906
|
-
* https://openapi-generator.tech
|
|
907
|
-
* Do not edit the class manually.
|
|
908
|
-
*/
|
|
909
|
-
/**
|
|
910
|
-
* 降级配置(DegradeConfigVo)
|
|
911
|
-
* @export
|
|
912
|
-
* @interface DegradeConfig
|
|
913
|
-
*/
|
|
914
|
-
interface DegradeConfig {
|
|
915
|
-
/**
|
|
916
|
-
* 是否启用降级
|
|
917
|
-
* @type {boolean}
|
|
918
|
-
* @memberof DegradeConfig
|
|
919
|
-
*/
|
|
920
|
-
enabled: boolean;
|
|
921
|
-
/**
|
|
922
|
-
* 降级模式
|
|
923
|
-
* @type {string}
|
|
924
|
-
* @memberof DegradeConfig
|
|
925
|
-
*/
|
|
926
|
-
mode: DegradeConfigModeEnum;
|
|
927
|
-
/**
|
|
928
|
-
* 降级消息
|
|
929
|
-
* @type {string}
|
|
930
|
-
* @memberof DegradeConfig
|
|
931
|
-
*/
|
|
932
|
-
message?: string;
|
|
933
|
-
}
|
|
934
|
-
/**
|
|
935
|
-
* @export
|
|
936
|
-
*/
|
|
937
|
-
declare const DegradeConfigModeEnum: {
|
|
938
|
-
readonly FALLBACK: "fallback";
|
|
939
|
-
readonly STATIC: "static";
|
|
940
|
-
readonly ERROR: "error";
|
|
941
|
-
};
|
|
942
|
-
type DegradeConfigModeEnum = typeof DegradeConfigModeEnum[keyof typeof DegradeConfigModeEnum];
|
|
943
|
-
/**
|
|
944
|
-
* Check if a given object implements the DegradeConfig interface.
|
|
945
|
-
*/
|
|
946
|
-
declare function instanceOfDegradeConfig(value: object): boolean;
|
|
947
|
-
declare function DegradeConfigFromJSON(json: any): DegradeConfig;
|
|
948
|
-
declare function DegradeConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): DegradeConfig;
|
|
949
|
-
declare function DegradeConfigToJSON(value?: DegradeConfig | null): any;
|
|
950
|
-
|
|
951
985
|
/**
|
|
952
986
|
* 平台用户端 API
|
|
953
987
|
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
@@ -1027,71 +1061,12 @@ declare function ErrorResponseToJSON(value?: ErrorResponse | null): any;
|
|
|
1027
1061
|
* https://openapi-generator.tech
|
|
1028
1062
|
* Do not edit the class manually.
|
|
1029
1063
|
*/
|
|
1030
|
-
|
|
1031
1064
|
/**
|
|
1032
|
-
*
|
|
1065
|
+
* 动作执行响应(ActionExecuteVo)
|
|
1033
1066
|
* @export
|
|
1034
|
-
* @interface
|
|
1067
|
+
* @interface ExecuteActionResponse
|
|
1035
1068
|
*/
|
|
1036
|
-
interface
|
|
1037
|
-
/**
|
|
1038
|
-
* 动作类型
|
|
1039
|
-
* @type {string}
|
|
1040
|
-
* @memberof ExecuteActionRequest
|
|
1041
|
-
*/
|
|
1042
|
-
actionType: string;
|
|
1043
|
-
/**
|
|
1044
|
-
* 动作定义版本 ID(不提供则使用最新稳定版)
|
|
1045
|
-
* @type {string}
|
|
1046
|
-
* @memberof ExecuteActionRequest
|
|
1047
|
-
*/
|
|
1048
|
-
actionDefinitionVersionId?: string;
|
|
1049
|
-
/**
|
|
1050
|
-
* 动作参数
|
|
1051
|
-
* @type {{ [key: string]: any; }}
|
|
1052
|
-
* @memberof ExecuteActionRequest
|
|
1053
|
-
*/
|
|
1054
|
-
params: {
|
|
1055
|
-
[key: string]: any;
|
|
1056
|
-
};
|
|
1057
|
-
/**
|
|
1058
|
-
* 幂等键
|
|
1059
|
-
* @type {string}
|
|
1060
|
-
* @memberof ExecuteActionRequest
|
|
1061
|
-
*/
|
|
1062
|
-
idempotencyKey?: string;
|
|
1063
|
-
/**
|
|
1064
|
-
*
|
|
1065
|
-
* @type {ActionClientContext}
|
|
1066
|
-
* @memberof ExecuteActionRequest
|
|
1067
|
-
*/
|
|
1068
|
-
context: ActionClientContext;
|
|
1069
|
-
}
|
|
1070
|
-
/**
|
|
1071
|
-
* Check if a given object implements the ExecuteActionRequest interface.
|
|
1072
|
-
*/
|
|
1073
|
-
declare function instanceOfExecuteActionRequest(value: object): boolean;
|
|
1074
|
-
declare function ExecuteActionRequestFromJSON(json: any): ExecuteActionRequest;
|
|
1075
|
-
declare function ExecuteActionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteActionRequest;
|
|
1076
|
-
declare function ExecuteActionRequestToJSON(value?: ExecuteActionRequest | null): any;
|
|
1077
|
-
|
|
1078
|
-
/**
|
|
1079
|
-
* 平台用户端 API
|
|
1080
|
-
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
1081
|
-
*
|
|
1082
|
-
* The version of the OpenAPI document: 1.0.0
|
|
1083
|
-
* Contact: dev@djvlc.com
|
|
1084
|
-
*
|
|
1085
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1086
|
-
* https://openapi-generator.tech
|
|
1087
|
-
* Do not edit the class manually.
|
|
1088
|
-
*/
|
|
1089
|
-
/**
|
|
1090
|
-
* 动作执行响应(ActionExecuteVo)
|
|
1091
|
-
* @export
|
|
1092
|
-
* @interface ExecuteActionResponse
|
|
1093
|
-
*/
|
|
1094
|
-
interface ExecuteActionResponse {
|
|
1069
|
+
interface ExecuteActionResponse {
|
|
1095
1070
|
/**
|
|
1096
1071
|
* 是否成功
|
|
1097
1072
|
* @type {boolean}
|
|
@@ -1182,70 +1157,69 @@ declare function ExecuteActionResponseToJSON(value?: ExecuteActionResponse | nul
|
|
|
1182
1157
|
* https://openapi-generator.tech
|
|
1183
1158
|
* Do not edit the class manually.
|
|
1184
1159
|
*/
|
|
1160
|
+
|
|
1185
1161
|
/**
|
|
1186
|
-
*
|
|
1162
|
+
*
|
|
1187
1163
|
* @export
|
|
1188
|
-
* @interface
|
|
1164
|
+
* @interface ExecuteAction200Response
|
|
1189
1165
|
*/
|
|
1190
|
-
interface
|
|
1166
|
+
interface ExecuteAction200Response {
|
|
1191
1167
|
/**
|
|
1192
|
-
*
|
|
1193
|
-
* @type {
|
|
1194
|
-
* @memberof
|
|
1168
|
+
* 请求是否成功
|
|
1169
|
+
* @type {boolean}
|
|
1170
|
+
* @memberof ExecuteAction200Response
|
|
1195
1171
|
*/
|
|
1196
|
-
|
|
1172
|
+
success: boolean;
|
|
1197
1173
|
/**
|
|
1198
|
-
*
|
|
1174
|
+
* 业务状态码
|
|
1199
1175
|
* @type {string}
|
|
1200
|
-
* @memberof
|
|
1176
|
+
* @memberof ExecuteAction200Response
|
|
1201
1177
|
*/
|
|
1202
|
-
|
|
1203
|
-
}
|
|
1204
|
-
/**
|
|
1205
|
-
* Check if a given object implements the HealthCheckItem interface.
|
|
1206
|
-
*/
|
|
1207
|
-
declare function instanceOfHealthCheckItem(value: object): boolean;
|
|
1208
|
-
declare function HealthCheckItemFromJSON(json: any): HealthCheckItem;
|
|
1209
|
-
declare function HealthCheckItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): HealthCheckItem;
|
|
1210
|
-
declare function HealthCheckItemToJSON(value?: HealthCheckItem | null): any;
|
|
1211
|
-
|
|
1212
|
-
/**
|
|
1213
|
-
* 平台用户端 API
|
|
1214
|
-
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
1215
|
-
*
|
|
1216
|
-
* The version of the OpenAPI document: 1.0.0
|
|
1217
|
-
* Contact: dev@djvlc.com
|
|
1218
|
-
*
|
|
1219
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1220
|
-
* https://openapi-generator.tech
|
|
1221
|
-
* Do not edit the class manually.
|
|
1222
|
-
*/
|
|
1223
|
-
/**
|
|
1224
|
-
* 健康检查响应(HealthCheckVo)
|
|
1225
|
-
* @export
|
|
1226
|
-
* @interface HealthCheckResponse
|
|
1227
|
-
*/
|
|
1228
|
-
interface HealthCheckResponse {
|
|
1178
|
+
code: string;
|
|
1229
1179
|
/**
|
|
1230
|
-
*
|
|
1180
|
+
* 响应消息
|
|
1231
1181
|
* @type {string}
|
|
1232
|
-
* @memberof
|
|
1182
|
+
* @memberof ExecuteAction200Response
|
|
1233
1183
|
*/
|
|
1234
|
-
|
|
1184
|
+
message: string;
|
|
1185
|
+
/**
|
|
1186
|
+
*
|
|
1187
|
+
* @type {ExecuteActionResponse}
|
|
1188
|
+
* @memberof ExecuteAction200Response
|
|
1189
|
+
*/
|
|
1190
|
+
data: ExecuteActionResponse;
|
|
1235
1191
|
/**
|
|
1236
1192
|
* 响应时间戳
|
|
1193
|
+
* @type {number}
|
|
1194
|
+
* @memberof ExecuteAction200Response
|
|
1195
|
+
*/
|
|
1196
|
+
timestamp: number;
|
|
1197
|
+
/**
|
|
1198
|
+
* 请求路径
|
|
1237
1199
|
* @type {string}
|
|
1238
|
-
* @memberof
|
|
1200
|
+
* @memberof ExecuteAction200Response
|
|
1239
1201
|
*/
|
|
1240
|
-
|
|
1202
|
+
path: string;
|
|
1203
|
+
/**
|
|
1204
|
+
* 请求ID
|
|
1205
|
+
* @type {string}
|
|
1206
|
+
* @memberof ExecuteAction200Response
|
|
1207
|
+
*/
|
|
1208
|
+
requestId?: string;
|
|
1209
|
+
/**
|
|
1210
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
1211
|
+
* @type {string}
|
|
1212
|
+
* @memberof ExecuteAction200Response
|
|
1213
|
+
*/
|
|
1214
|
+
traceId?: string;
|
|
1241
1215
|
}
|
|
1242
1216
|
/**
|
|
1243
|
-
* Check if a given object implements the
|
|
1217
|
+
* Check if a given object implements the ExecuteAction200Response interface.
|
|
1244
1218
|
*/
|
|
1245
|
-
declare function
|
|
1246
|
-
declare function
|
|
1247
|
-
declare function
|
|
1248
|
-
declare function
|
|
1219
|
+
declare function instanceOfExecuteAction200Response(value: object): boolean;
|
|
1220
|
+
declare function ExecuteAction200ResponseFromJSON(json: any): ExecuteAction200Response;
|
|
1221
|
+
declare function ExecuteAction200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteAction200Response;
|
|
1222
|
+
declare function ExecuteAction200ResponseToJSON(value?: ExecuteAction200Response | null): any;
|
|
1249
1223
|
|
|
1250
1224
|
/**
|
|
1251
1225
|
* 平台用户端 API
|
|
@@ -1258,26 +1232,53 @@ declare function HealthCheckResponseToJSON(value?: HealthCheckResponse | null):
|
|
|
1258
1232
|
* https://openapi-generator.tech
|
|
1259
1233
|
* Do not edit the class manually.
|
|
1260
1234
|
*/
|
|
1235
|
+
|
|
1261
1236
|
/**
|
|
1262
|
-
*
|
|
1237
|
+
* 动作执行请求(ActionExecuteDto)
|
|
1263
1238
|
* @export
|
|
1264
|
-
* @interface
|
|
1239
|
+
* @interface ExecuteActionRequest
|
|
1265
1240
|
*/
|
|
1266
|
-
interface
|
|
1241
|
+
interface ExecuteActionRequest {
|
|
1267
1242
|
/**
|
|
1268
|
-
*
|
|
1243
|
+
* 动作类型
|
|
1269
1244
|
* @type {string}
|
|
1270
|
-
* @memberof
|
|
1245
|
+
* @memberof ExecuteActionRequest
|
|
1271
1246
|
*/
|
|
1272
|
-
|
|
1247
|
+
actionType: string;
|
|
1248
|
+
/**
|
|
1249
|
+
* 动作定义版本 ID(不提供则使用最新稳定版)
|
|
1250
|
+
* @type {string}
|
|
1251
|
+
* @memberof ExecuteActionRequest
|
|
1252
|
+
*/
|
|
1253
|
+
actionDefinitionVersionId?: string;
|
|
1254
|
+
/**
|
|
1255
|
+
* 动作参数
|
|
1256
|
+
* @type {{ [key: string]: any; }}
|
|
1257
|
+
* @memberof ExecuteActionRequest
|
|
1258
|
+
*/
|
|
1259
|
+
params: {
|
|
1260
|
+
[key: string]: any;
|
|
1261
|
+
};
|
|
1262
|
+
/**
|
|
1263
|
+
* 幂等键
|
|
1264
|
+
* @type {string}
|
|
1265
|
+
* @memberof ExecuteActionRequest
|
|
1266
|
+
*/
|
|
1267
|
+
idempotencyKey?: string;
|
|
1268
|
+
/**
|
|
1269
|
+
*
|
|
1270
|
+
* @type {ActionClientContext}
|
|
1271
|
+
* @memberof ExecuteActionRequest
|
|
1272
|
+
*/
|
|
1273
|
+
context: ActionClientContext;
|
|
1273
1274
|
}
|
|
1274
1275
|
/**
|
|
1275
|
-
* Check if a given object implements the
|
|
1276
|
+
* Check if a given object implements the ExecuteActionRequest interface.
|
|
1276
1277
|
*/
|
|
1277
|
-
declare function
|
|
1278
|
-
declare function
|
|
1279
|
-
declare function
|
|
1280
|
-
declare function
|
|
1278
|
+
declare function instanceOfExecuteActionRequest(value: object): boolean;
|
|
1279
|
+
declare function ExecuteActionRequestFromJSON(json: any): ExecuteActionRequest;
|
|
1280
|
+
declare function ExecuteActionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteActionRequest;
|
|
1281
|
+
declare function ExecuteActionRequestToJSON(value?: ExecuteActionRequest | null): any;
|
|
1281
1282
|
|
|
1282
1283
|
/**
|
|
1283
1284
|
* 平台用户端 API
|
|
@@ -1290,70 +1291,69 @@ declare function LivenessResponseToJSON(value?: LivenessResponse | null): any;
|
|
|
1290
1291
|
* https://openapi-generator.tech
|
|
1291
1292
|
* Do not edit the class manually.
|
|
1292
1293
|
*/
|
|
1294
|
+
|
|
1293
1295
|
/**
|
|
1294
|
-
*
|
|
1296
|
+
*
|
|
1295
1297
|
* @export
|
|
1296
|
-
* @interface
|
|
1298
|
+
* @interface GetActionDefinition200Response
|
|
1297
1299
|
*/
|
|
1298
|
-
interface
|
|
1300
|
+
interface GetActionDefinition200Response {
|
|
1299
1301
|
/**
|
|
1300
|
-
*
|
|
1301
|
-
* @type {
|
|
1302
|
-
* @memberof
|
|
1302
|
+
* 请求是否成功
|
|
1303
|
+
* @type {boolean}
|
|
1304
|
+
* @memberof GetActionDefinition200Response
|
|
1303
1305
|
*/
|
|
1304
|
-
|
|
1306
|
+
success: boolean;
|
|
1305
1307
|
/**
|
|
1306
|
-
*
|
|
1308
|
+
* 业务状态码
|
|
1307
1309
|
* @type {string}
|
|
1308
|
-
* @memberof
|
|
1310
|
+
* @memberof GetActionDefinition200Response
|
|
1309
1311
|
*/
|
|
1310
|
-
|
|
1312
|
+
code: string;
|
|
1311
1313
|
/**
|
|
1312
|
-
*
|
|
1314
|
+
* 响应消息
|
|
1313
1315
|
* @type {string}
|
|
1314
|
-
* @memberof
|
|
1316
|
+
* @memberof GetActionDefinition200Response
|
|
1315
1317
|
*/
|
|
1316
|
-
|
|
1318
|
+
message: string;
|
|
1317
1319
|
/**
|
|
1318
|
-
*
|
|
1319
|
-
* @type {
|
|
1320
|
-
* @memberof
|
|
1320
|
+
*
|
|
1321
|
+
* @type {ActionDefinitionVersionResponse}
|
|
1322
|
+
* @memberof GetActionDefinition200Response
|
|
1321
1323
|
*/
|
|
1322
|
-
|
|
1324
|
+
data: ActionDefinitionVersionResponse;
|
|
1323
1325
|
/**
|
|
1324
|
-
*
|
|
1326
|
+
* 响应时间戳
|
|
1327
|
+
* @type {number}
|
|
1328
|
+
* @memberof GetActionDefinition200Response
|
|
1329
|
+
*/
|
|
1330
|
+
timestamp: number;
|
|
1331
|
+
/**
|
|
1332
|
+
* 请求路径
|
|
1325
1333
|
* @type {string}
|
|
1326
|
-
* @memberof
|
|
1334
|
+
* @memberof GetActionDefinition200Response
|
|
1327
1335
|
*/
|
|
1328
|
-
|
|
1336
|
+
path: string;
|
|
1329
1337
|
/**
|
|
1330
|
-
*
|
|
1338
|
+
* 请求ID
|
|
1331
1339
|
* @type {string}
|
|
1332
|
-
* @memberof
|
|
1340
|
+
* @memberof GetActionDefinition200Response
|
|
1333
1341
|
*/
|
|
1334
|
-
|
|
1342
|
+
requestId?: string;
|
|
1335
1343
|
/**
|
|
1336
|
-
*
|
|
1337
|
-
* @type {
|
|
1338
|
-
* @memberof
|
|
1344
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
1345
|
+
* @type {string}
|
|
1346
|
+
* @memberof GetActionDefinition200Response
|
|
1339
1347
|
*/
|
|
1340
|
-
|
|
1348
|
+
traceId?: string;
|
|
1341
1349
|
}
|
|
1342
1350
|
/**
|
|
1343
|
-
*
|
|
1344
|
-
*/
|
|
1345
|
-
declare const ManifestComponentSourceEnum: {
|
|
1346
|
-
readonly BUNDLED: "bundled";
|
|
1347
|
-
readonly REMOTE: "remote";
|
|
1348
|
-
};
|
|
1349
|
-
type ManifestComponentSourceEnum = typeof ManifestComponentSourceEnum[keyof typeof ManifestComponentSourceEnum];
|
|
1350
|
-
/**
|
|
1351
|
-
* Check if a given object implements the ManifestComponent interface.
|
|
1351
|
+
* Check if a given object implements the GetActionDefinition200Response interface.
|
|
1352
1352
|
*/
|
|
1353
|
-
declare function
|
|
1354
|
-
declare function
|
|
1355
|
-
declare function
|
|
1356
|
-
declare function
|
|
1353
|
+
declare function instanceOfGetActionDefinition200Response(value: object): boolean;
|
|
1354
|
+
declare function GetActionDefinition200ResponseFromJSON(json: any): GetActionDefinition200Response;
|
|
1355
|
+
declare function GetActionDefinition200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetActionDefinition200Response;
|
|
1356
|
+
declare function GetActionDefinition200ResponseToJSON(value?: GetActionDefinition200Response | null): any;
|
|
1357
1357
|
|
|
1358
1358
|
/**
|
|
1359
1359
|
* 平台用户端 API
|
|
@@ -1366,32 +1366,69 @@ declare function ManifestComponentToJSON(value?: ManifestComponent | null): any;
|
|
|
1366
1366
|
* https://openapi-generator.tech
|
|
1367
1367
|
* Do not edit the class manually.
|
|
1368
1368
|
*/
|
|
1369
|
+
|
|
1369
1370
|
/**
|
|
1370
|
-
*
|
|
1371
|
+
*
|
|
1371
1372
|
* @export
|
|
1372
|
-
* @interface
|
|
1373
|
+
* @interface GetActivityInfo200Response
|
|
1373
1374
|
*/
|
|
1374
|
-
interface
|
|
1375
|
+
interface GetActivityInfo200Response {
|
|
1375
1376
|
/**
|
|
1376
|
-
*
|
|
1377
|
-
* @type {
|
|
1378
|
-
* @memberof
|
|
1377
|
+
* 请求是否成功
|
|
1378
|
+
* @type {boolean}
|
|
1379
|
+
* @memberof GetActivityInfo200Response
|
|
1379
1380
|
*/
|
|
1380
|
-
|
|
1381
|
+
success: boolean;
|
|
1381
1382
|
/**
|
|
1382
|
-
*
|
|
1383
|
+
* 业务状态码
|
|
1383
1384
|
* @type {string}
|
|
1384
|
-
* @memberof
|
|
1385
|
+
* @memberof GetActivityInfo200Response
|
|
1385
1386
|
*/
|
|
1386
|
-
|
|
1387
|
-
|
|
1387
|
+
code: string;
|
|
1388
|
+
/**
|
|
1389
|
+
* 响应消息
|
|
1390
|
+
* @type {string}
|
|
1391
|
+
* @memberof GetActivityInfo200Response
|
|
1392
|
+
*/
|
|
1393
|
+
message: string;
|
|
1394
|
+
/**
|
|
1395
|
+
*
|
|
1396
|
+
* @type {ActivityInfoResponse}
|
|
1397
|
+
* @memberof GetActivityInfo200Response
|
|
1398
|
+
*/
|
|
1399
|
+
data: ActivityInfoResponse;
|
|
1400
|
+
/**
|
|
1401
|
+
* 响应时间戳
|
|
1402
|
+
* @type {number}
|
|
1403
|
+
* @memberof GetActivityInfo200Response
|
|
1404
|
+
*/
|
|
1405
|
+
timestamp: number;
|
|
1406
|
+
/**
|
|
1407
|
+
* 请求路径
|
|
1408
|
+
* @type {string}
|
|
1409
|
+
* @memberof GetActivityInfo200Response
|
|
1410
|
+
*/
|
|
1411
|
+
path: string;
|
|
1412
|
+
/**
|
|
1413
|
+
* 请求ID
|
|
1414
|
+
* @type {string}
|
|
1415
|
+
* @memberof GetActivityInfo200Response
|
|
1416
|
+
*/
|
|
1417
|
+
requestId?: string;
|
|
1418
|
+
/**
|
|
1419
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
1420
|
+
* @type {string}
|
|
1421
|
+
* @memberof GetActivityInfo200Response
|
|
1422
|
+
*/
|
|
1423
|
+
traceId?: string;
|
|
1424
|
+
}
|
|
1388
1425
|
/**
|
|
1389
|
-
* Check if a given object implements the
|
|
1426
|
+
* Check if a given object implements the GetActivityInfo200Response interface.
|
|
1390
1427
|
*/
|
|
1391
|
-
declare function
|
|
1392
|
-
declare function
|
|
1393
|
-
declare function
|
|
1394
|
-
declare function
|
|
1428
|
+
declare function instanceOfGetActivityInfo200Response(value: object): boolean;
|
|
1429
|
+
declare function GetActivityInfo200ResponseFromJSON(json: any): GetActivityInfo200Response;
|
|
1430
|
+
declare function GetActivityInfo200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetActivityInfo200Response;
|
|
1431
|
+
declare function GetActivityInfo200ResponseToJSON(value?: GetActivityInfo200Response | null): any;
|
|
1395
1432
|
|
|
1396
1433
|
/**
|
|
1397
1434
|
* 平台用户端 API
|
|
@@ -1406,43 +1443,112 @@ declare function ManifestRuntimeToJSON(value?: ManifestRuntime | null): any;
|
|
|
1406
1443
|
*/
|
|
1407
1444
|
|
|
1408
1445
|
/**
|
|
1409
|
-
*
|
|
1446
|
+
*
|
|
1410
1447
|
* @export
|
|
1411
|
-
* @interface
|
|
1448
|
+
* @interface GetActivityState200Response
|
|
1412
1449
|
*/
|
|
1413
|
-
interface
|
|
1450
|
+
interface GetActivityState200Response {
|
|
1414
1451
|
/**
|
|
1415
|
-
*
|
|
1452
|
+
* 请求是否成功
|
|
1453
|
+
* @type {boolean}
|
|
1454
|
+
* @memberof GetActivityState200Response
|
|
1455
|
+
*/
|
|
1456
|
+
success: boolean;
|
|
1457
|
+
/**
|
|
1458
|
+
* 业务状态码
|
|
1416
1459
|
* @type {string}
|
|
1417
|
-
* @memberof
|
|
1460
|
+
* @memberof GetActivityState200Response
|
|
1418
1461
|
*/
|
|
1419
|
-
|
|
1462
|
+
code: string;
|
|
1420
1463
|
/**
|
|
1421
|
-
*
|
|
1464
|
+
* 响应消息
|
|
1422
1465
|
* @type {string}
|
|
1423
|
-
* @memberof
|
|
1466
|
+
* @memberof GetActivityState200Response
|
|
1424
1467
|
*/
|
|
1425
|
-
|
|
1468
|
+
message: string;
|
|
1426
1469
|
/**
|
|
1427
|
-
*
|
|
1428
|
-
* @type {
|
|
1429
|
-
* @memberof
|
|
1470
|
+
*
|
|
1471
|
+
* @type {ActivityStatusResponse}
|
|
1472
|
+
* @memberof GetActivityState200Response
|
|
1430
1473
|
*/
|
|
1431
|
-
|
|
1474
|
+
data: ActivityStatusResponse;
|
|
1475
|
+
/**
|
|
1476
|
+
* 响应时间戳
|
|
1477
|
+
* @type {number}
|
|
1478
|
+
* @memberof GetActivityState200Response
|
|
1479
|
+
*/
|
|
1480
|
+
timestamp: number;
|
|
1481
|
+
/**
|
|
1482
|
+
* 请求路径
|
|
1483
|
+
* @type {string}
|
|
1484
|
+
* @memberof GetActivityState200Response
|
|
1485
|
+
*/
|
|
1486
|
+
path: string;
|
|
1487
|
+
/**
|
|
1488
|
+
* 请求ID
|
|
1489
|
+
* @type {string}
|
|
1490
|
+
* @memberof GetActivityState200Response
|
|
1491
|
+
*/
|
|
1492
|
+
requestId?: string;
|
|
1493
|
+
/**
|
|
1494
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
1495
|
+
* @type {string}
|
|
1496
|
+
* @memberof GetActivityState200Response
|
|
1497
|
+
*/
|
|
1498
|
+
traceId?: string;
|
|
1499
|
+
}
|
|
1500
|
+
/**
|
|
1501
|
+
* Check if a given object implements the GetActivityState200Response interface.
|
|
1502
|
+
*/
|
|
1503
|
+
declare function instanceOfGetActivityState200Response(value: object): boolean;
|
|
1504
|
+
declare function GetActivityState200ResponseFromJSON(json: any): GetActivityState200Response;
|
|
1505
|
+
declare function GetActivityState200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetActivityState200Response;
|
|
1506
|
+
declare function GetActivityState200ResponseToJSON(value?: GetActivityState200Response | null): any;
|
|
1507
|
+
|
|
1508
|
+
/**
|
|
1509
|
+
* 平台用户端 API
|
|
1510
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
1511
|
+
*
|
|
1512
|
+
* The version of the OpenAPI document: 1.0.0
|
|
1513
|
+
* Contact: dev@djvlc.com
|
|
1514
|
+
*
|
|
1515
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1516
|
+
* https://openapi-generator.tech
|
|
1517
|
+
* Do not edit the class manually.
|
|
1518
|
+
*/
|
|
1519
|
+
|
|
1520
|
+
/**
|
|
1521
|
+
* 分页记录响应(PaginatedRecordsVo)
|
|
1522
|
+
* @export
|
|
1523
|
+
* @interface PaginatedRecordsResponse
|
|
1524
|
+
*/
|
|
1525
|
+
interface PaginatedRecordsResponse {
|
|
1526
|
+
/**
|
|
1527
|
+
* 是否成功
|
|
1528
|
+
* @type {boolean}
|
|
1529
|
+
* @memberof PaginatedRecordsResponse
|
|
1530
|
+
*/
|
|
1531
|
+
success: boolean;
|
|
1532
|
+
/**
|
|
1533
|
+
* 记录列表
|
|
1534
|
+
* @type {Array<object>}
|
|
1535
|
+
* @memberof PaginatedRecordsResponse
|
|
1536
|
+
*/
|
|
1537
|
+
data: Array<object>;
|
|
1432
1538
|
/**
|
|
1433
1539
|
*
|
|
1434
|
-
* @type {
|
|
1435
|
-
* @memberof
|
|
1540
|
+
* @type {CursorPaginationMeta}
|
|
1541
|
+
* @memberof PaginatedRecordsResponse
|
|
1436
1542
|
*/
|
|
1437
|
-
|
|
1543
|
+
meta?: CursorPaginationMeta;
|
|
1438
1544
|
}
|
|
1439
1545
|
/**
|
|
1440
|
-
* Check if a given object implements the
|
|
1546
|
+
* Check if a given object implements the PaginatedRecordsResponse interface.
|
|
1441
1547
|
*/
|
|
1442
|
-
declare function
|
|
1443
|
-
declare function
|
|
1444
|
-
declare function
|
|
1445
|
-
declare function
|
|
1548
|
+
declare function instanceOfPaginatedRecordsResponse(value: object): boolean;
|
|
1549
|
+
declare function PaginatedRecordsResponseFromJSON(json: any): PaginatedRecordsResponse;
|
|
1550
|
+
declare function PaginatedRecordsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedRecordsResponse;
|
|
1551
|
+
declare function PaginatedRecordsResponseToJSON(value?: PaginatedRecordsResponse | null): any;
|
|
1446
1552
|
|
|
1447
1553
|
/**
|
|
1448
1554
|
* 平台用户端 API
|
|
@@ -1455,38 +1561,69 @@ declare function ManifestResponseToJSON(value?: ManifestResponse | null): any;
|
|
|
1455
1561
|
* https://openapi-generator.tech
|
|
1456
1562
|
* Do not edit the class manually.
|
|
1457
1563
|
*/
|
|
1564
|
+
|
|
1458
1565
|
/**
|
|
1459
|
-
*
|
|
1566
|
+
*
|
|
1460
1567
|
* @export
|
|
1461
|
-
* @interface
|
|
1568
|
+
* @interface GetClaimRecords200Response
|
|
1462
1569
|
*/
|
|
1463
|
-
interface
|
|
1570
|
+
interface GetClaimRecords200Response {
|
|
1464
1571
|
/**
|
|
1465
|
-
*
|
|
1572
|
+
* 请求是否成功
|
|
1573
|
+
* @type {boolean}
|
|
1574
|
+
* @memberof GetClaimRecords200Response
|
|
1575
|
+
*/
|
|
1576
|
+
success: boolean;
|
|
1577
|
+
/**
|
|
1578
|
+
* 业务状态码
|
|
1466
1579
|
* @type {string}
|
|
1467
|
-
* @memberof
|
|
1580
|
+
* @memberof GetClaimRecords200Response
|
|
1468
1581
|
*/
|
|
1469
|
-
|
|
1582
|
+
code: string;
|
|
1470
1583
|
/**
|
|
1471
|
-
*
|
|
1584
|
+
* 响应消息
|
|
1585
|
+
* @type {string}
|
|
1586
|
+
* @memberof GetClaimRecords200Response
|
|
1587
|
+
*/
|
|
1588
|
+
message: string;
|
|
1589
|
+
/**
|
|
1590
|
+
*
|
|
1591
|
+
* @type {PaginatedRecordsResponse}
|
|
1592
|
+
* @memberof GetClaimRecords200Response
|
|
1593
|
+
*/
|
|
1594
|
+
data: PaginatedRecordsResponse;
|
|
1595
|
+
/**
|
|
1596
|
+
* 响应时间戳
|
|
1472
1597
|
* @type {number}
|
|
1473
|
-
* @memberof
|
|
1598
|
+
* @memberof GetClaimRecords200Response
|
|
1474
1599
|
*/
|
|
1475
|
-
|
|
1600
|
+
timestamp: number;
|
|
1476
1601
|
/**
|
|
1477
|
-
*
|
|
1602
|
+
* 请求路径
|
|
1478
1603
|
* @type {string}
|
|
1479
|
-
* @memberof
|
|
1604
|
+
* @memberof GetClaimRecords200Response
|
|
1480
1605
|
*/
|
|
1481
|
-
|
|
1606
|
+
path: string;
|
|
1607
|
+
/**
|
|
1608
|
+
* 请求ID
|
|
1609
|
+
* @type {string}
|
|
1610
|
+
* @memberof GetClaimRecords200Response
|
|
1611
|
+
*/
|
|
1612
|
+
requestId?: string;
|
|
1613
|
+
/**
|
|
1614
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
1615
|
+
* @type {string}
|
|
1616
|
+
* @memberof GetClaimRecords200Response
|
|
1617
|
+
*/
|
|
1618
|
+
traceId?: string;
|
|
1482
1619
|
}
|
|
1483
1620
|
/**
|
|
1484
|
-
* Check if a given object implements the
|
|
1621
|
+
* Check if a given object implements the GetClaimRecords200Response interface.
|
|
1485
1622
|
*/
|
|
1486
|
-
declare function
|
|
1487
|
-
declare function
|
|
1488
|
-
declare function
|
|
1489
|
-
declare function
|
|
1623
|
+
declare function instanceOfGetClaimRecords200Response(value: object): boolean;
|
|
1624
|
+
declare function GetClaimRecords200ResponseFromJSON(json: any): GetClaimRecords200Response;
|
|
1625
|
+
declare function GetClaimRecords200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetClaimRecords200Response;
|
|
1626
|
+
declare function GetClaimRecords200ResponseToJSON(value?: GetClaimRecords200Response | null): any;
|
|
1490
1627
|
|
|
1491
1628
|
/**
|
|
1492
1629
|
* 平台用户端 API
|
|
@@ -1501,31 +1638,1449 @@ declare function RewardInfoToJSON(value?: RewardInfo | null): any;
|
|
|
1501
1638
|
*/
|
|
1502
1639
|
|
|
1503
1640
|
/**
|
|
1504
|
-
*
|
|
1641
|
+
*
|
|
1505
1642
|
* @export
|
|
1506
|
-
* @interface
|
|
1643
|
+
* @interface GetClaimStatus200Response
|
|
1507
1644
|
*/
|
|
1508
|
-
interface
|
|
1645
|
+
interface GetClaimStatus200Response {
|
|
1509
1646
|
/**
|
|
1510
|
-
*
|
|
1511
|
-
* @type {
|
|
1512
|
-
* @memberof
|
|
1647
|
+
* 请求是否成功
|
|
1648
|
+
* @type {boolean}
|
|
1649
|
+
* @memberof GetClaimStatus200Response
|
|
1513
1650
|
*/
|
|
1514
|
-
|
|
1651
|
+
success: boolean;
|
|
1652
|
+
/**
|
|
1653
|
+
* 业务状态码
|
|
1654
|
+
* @type {string}
|
|
1655
|
+
* @memberof GetClaimStatus200Response
|
|
1656
|
+
*/
|
|
1657
|
+
code: string;
|
|
1658
|
+
/**
|
|
1659
|
+
* 响应消息
|
|
1660
|
+
* @type {string}
|
|
1661
|
+
* @memberof GetClaimStatus200Response
|
|
1662
|
+
*/
|
|
1663
|
+
message: string;
|
|
1515
1664
|
/**
|
|
1516
1665
|
*
|
|
1517
|
-
* @type {
|
|
1518
|
-
* @memberof
|
|
1666
|
+
* @type {ClaimStatusResponse}
|
|
1667
|
+
* @memberof GetClaimStatus200Response
|
|
1519
1668
|
*/
|
|
1520
|
-
|
|
1669
|
+
data: ClaimStatusResponse;
|
|
1670
|
+
/**
|
|
1671
|
+
* 响应时间戳
|
|
1672
|
+
* @type {number}
|
|
1673
|
+
* @memberof GetClaimStatus200Response
|
|
1674
|
+
*/
|
|
1675
|
+
timestamp: number;
|
|
1676
|
+
/**
|
|
1677
|
+
* 请求路径
|
|
1678
|
+
* @type {string}
|
|
1679
|
+
* @memberof GetClaimStatus200Response
|
|
1680
|
+
*/
|
|
1681
|
+
path: string;
|
|
1682
|
+
/**
|
|
1683
|
+
* 请求ID
|
|
1684
|
+
* @type {string}
|
|
1685
|
+
* @memberof GetClaimStatus200Response
|
|
1686
|
+
*/
|
|
1687
|
+
requestId?: string;
|
|
1688
|
+
/**
|
|
1689
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
1690
|
+
* @type {string}
|
|
1691
|
+
* @memberof GetClaimStatus200Response
|
|
1692
|
+
*/
|
|
1693
|
+
traceId?: string;
|
|
1521
1694
|
}
|
|
1522
1695
|
/**
|
|
1523
|
-
* Check if a given object implements the
|
|
1696
|
+
* Check if a given object implements the GetClaimStatus200Response interface.
|
|
1524
1697
|
*/
|
|
1525
|
-
declare function
|
|
1526
|
-
declare function
|
|
1527
|
-
declare function
|
|
1528
|
-
declare function
|
|
1698
|
+
declare function instanceOfGetClaimStatus200Response(value: object): boolean;
|
|
1699
|
+
declare function GetClaimStatus200ResponseFromJSON(json: any): GetClaimStatus200Response;
|
|
1700
|
+
declare function GetClaimStatus200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetClaimStatus200Response;
|
|
1701
|
+
declare function GetClaimStatus200ResponseToJSON(value?: GetClaimStatus200Response | null): any;
|
|
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
|
+
|
|
1822
|
+
/**
|
|
1823
|
+
* 平台用户端 API
|
|
1824
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
1825
|
+
*
|
|
1826
|
+
* The version of the OpenAPI document: 1.0.0
|
|
1827
|
+
* Contact: dev@djvlc.com
|
|
1828
|
+
*
|
|
1829
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1830
|
+
* https://openapi-generator.tech
|
|
1831
|
+
* Do not edit the class manually.
|
|
1832
|
+
*/
|
|
1833
|
+
|
|
1834
|
+
/**
|
|
1835
|
+
* 运维配置(OpsConfigVo)
|
|
1836
|
+
* @export
|
|
1837
|
+
* @interface OpsConfig
|
|
1838
|
+
*/
|
|
1839
|
+
interface OpsConfig {
|
|
1840
|
+
/**
|
|
1841
|
+
* 配置版本 ID(用于缓存失效)
|
|
1842
|
+
* @type {string}
|
|
1843
|
+
* @memberof OpsConfig
|
|
1844
|
+
*/
|
|
1845
|
+
configVersionId?: string;
|
|
1846
|
+
/**
|
|
1847
|
+
* Kill-Switch 列表
|
|
1848
|
+
* @type {Array<KillSwitchItem>}
|
|
1849
|
+
* @memberof OpsConfig
|
|
1850
|
+
*/
|
|
1851
|
+
killSwitch: Array<KillSwitchItem>;
|
|
1852
|
+
/**
|
|
1853
|
+
* 被阻断的组件列表
|
|
1854
|
+
* @type {Array<BlockedComponentItem>}
|
|
1855
|
+
* @memberof OpsConfig
|
|
1856
|
+
*/
|
|
1857
|
+
blockedComponents: Array<BlockedComponentItem>;
|
|
1858
|
+
/**
|
|
1859
|
+
* 功能开关
|
|
1860
|
+
* @type {{ [key: string]: boolean; }}
|
|
1861
|
+
* @memberof OpsConfig
|
|
1862
|
+
*/
|
|
1863
|
+
flags: {
|
|
1864
|
+
[key: string]: boolean;
|
|
1865
|
+
};
|
|
1866
|
+
/**
|
|
1867
|
+
*
|
|
1868
|
+
* @type {RateLimitConfig}
|
|
1869
|
+
* @memberof OpsConfig
|
|
1870
|
+
*/
|
|
1871
|
+
rateLimit?: RateLimitConfig;
|
|
1872
|
+
/**
|
|
1873
|
+
* 配置过期时间
|
|
1874
|
+
* @type {Date}
|
|
1875
|
+
* @memberof OpsConfig
|
|
1876
|
+
*/
|
|
1877
|
+
expiresAt?: Date;
|
|
1878
|
+
}
|
|
1879
|
+
/**
|
|
1880
|
+
* Check if a given object implements the OpsConfig interface.
|
|
1881
|
+
*/
|
|
1882
|
+
declare function instanceOfOpsConfig(value: object): boolean;
|
|
1883
|
+
declare function OpsConfigFromJSON(json: any): OpsConfig;
|
|
1884
|
+
declare function OpsConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): OpsConfig;
|
|
1885
|
+
declare function OpsConfigToJSON(value?: OpsConfig | null): any;
|
|
1886
|
+
|
|
1887
|
+
/**
|
|
1888
|
+
* 平台用户端 API
|
|
1889
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
1890
|
+
*
|
|
1891
|
+
* The version of the OpenAPI document: 1.0.0
|
|
1892
|
+
* Contact: dev@djvlc.com
|
|
1893
|
+
*
|
|
1894
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1895
|
+
* https://openapi-generator.tech
|
|
1896
|
+
* Do not edit the class manually.
|
|
1897
|
+
*/
|
|
1898
|
+
|
|
1899
|
+
/**
|
|
1900
|
+
*
|
|
1901
|
+
* @export
|
|
1902
|
+
* @interface GetPageConfig200Response
|
|
1903
|
+
*/
|
|
1904
|
+
interface GetPageConfig200Response {
|
|
1905
|
+
/**
|
|
1906
|
+
* 请求是否成功
|
|
1907
|
+
* @type {boolean}
|
|
1908
|
+
* @memberof GetPageConfig200Response
|
|
1909
|
+
*/
|
|
1910
|
+
success: boolean;
|
|
1911
|
+
/**
|
|
1912
|
+
* 业务状态码
|
|
1913
|
+
* @type {string}
|
|
1914
|
+
* @memberof GetPageConfig200Response
|
|
1915
|
+
*/
|
|
1916
|
+
code: string;
|
|
1917
|
+
/**
|
|
1918
|
+
* 响应消息
|
|
1919
|
+
* @type {string}
|
|
1920
|
+
* @memberof GetPageConfig200Response
|
|
1921
|
+
*/
|
|
1922
|
+
message: string;
|
|
1923
|
+
/**
|
|
1924
|
+
*
|
|
1925
|
+
* @type {OpsConfig}
|
|
1926
|
+
* @memberof GetPageConfig200Response
|
|
1927
|
+
*/
|
|
1928
|
+
data: OpsConfig;
|
|
1929
|
+
/**
|
|
1930
|
+
* 响应时间戳
|
|
1931
|
+
* @type {number}
|
|
1932
|
+
* @memberof GetPageConfig200Response
|
|
1933
|
+
*/
|
|
1934
|
+
timestamp: number;
|
|
1935
|
+
/**
|
|
1936
|
+
* 请求路径
|
|
1937
|
+
* @type {string}
|
|
1938
|
+
* @memberof GetPageConfig200Response
|
|
1939
|
+
*/
|
|
1940
|
+
path: string;
|
|
1941
|
+
/**
|
|
1942
|
+
* 请求ID
|
|
1943
|
+
* @type {string}
|
|
1944
|
+
* @memberof GetPageConfig200Response
|
|
1945
|
+
*/
|
|
1946
|
+
requestId?: string;
|
|
1947
|
+
/**
|
|
1948
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
1949
|
+
* @type {string}
|
|
1950
|
+
* @memberof GetPageConfig200Response
|
|
1951
|
+
*/
|
|
1952
|
+
traceId?: string;
|
|
1953
|
+
}
|
|
1954
|
+
/**
|
|
1955
|
+
* Check if a given object implements the GetPageConfig200Response interface.
|
|
1956
|
+
*/
|
|
1957
|
+
declare function instanceOfGetPageConfig200Response(value: object): boolean;
|
|
1958
|
+
declare function GetPageConfig200ResponseFromJSON(json: any): GetPageConfig200Response;
|
|
1959
|
+
declare function GetPageConfig200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPageConfig200Response;
|
|
1960
|
+
declare function GetPageConfig200ResponseToJSON(value?: GetPageConfig200Response | null): any;
|
|
1961
|
+
|
|
1962
|
+
/**
|
|
1963
|
+
* 平台用户端 API
|
|
1964
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
1965
|
+
*
|
|
1966
|
+
* The version of the OpenAPI document: 1.0.0
|
|
1967
|
+
* Contact: dev@djvlc.com
|
|
1968
|
+
*
|
|
1969
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1970
|
+
* https://openapi-generator.tech
|
|
1971
|
+
* Do not edit the class manually.
|
|
1972
|
+
*/
|
|
1973
|
+
/**
|
|
1974
|
+
* 组件清单项(ManifestComponentSwaggerVo)
|
|
1975
|
+
* @export
|
|
1976
|
+
* @interface ManifestComponent
|
|
1977
|
+
*/
|
|
1978
|
+
interface ManifestComponent {
|
|
1979
|
+
/**
|
|
1980
|
+
* 组件名称(Custom Element 标签名)
|
|
1981
|
+
* @type {string}
|
|
1982
|
+
* @memberof ManifestComponent
|
|
1983
|
+
*/
|
|
1984
|
+
name: string;
|
|
1985
|
+
/**
|
|
1986
|
+
* 版本号
|
|
1987
|
+
* @type {string}
|
|
1988
|
+
* @memberof ManifestComponent
|
|
1989
|
+
*/
|
|
1990
|
+
version: string;
|
|
1991
|
+
/**
|
|
1992
|
+
* 组件来源
|
|
1993
|
+
* @type {string}
|
|
1994
|
+
* @memberof ManifestComponent
|
|
1995
|
+
*/
|
|
1996
|
+
source: ManifestComponentSourceEnum;
|
|
1997
|
+
/**
|
|
1998
|
+
* 入口 URL(remote 组件必填)
|
|
1999
|
+
* @type {string}
|
|
2000
|
+
* @memberof ManifestComponent
|
|
2001
|
+
*/
|
|
2002
|
+
entry?: string;
|
|
2003
|
+
/**
|
|
2004
|
+
* 样式入口 URL
|
|
2005
|
+
* @type {string}
|
|
2006
|
+
* @memberof ManifestComponent
|
|
2007
|
+
*/
|
|
2008
|
+
styleEntry?: string;
|
|
2009
|
+
/**
|
|
2010
|
+
* SRI 完整性哈希
|
|
2011
|
+
* @type {string}
|
|
2012
|
+
* @memberof ManifestComponent
|
|
2013
|
+
*/
|
|
2014
|
+
integrity: string;
|
|
2015
|
+
/**
|
|
2016
|
+
* 是否预加载
|
|
2017
|
+
* @type {boolean}
|
|
2018
|
+
* @memberof ManifestComponent
|
|
2019
|
+
*/
|
|
2020
|
+
preload?: boolean;
|
|
2021
|
+
}
|
|
2022
|
+
/**
|
|
2023
|
+
* @export
|
|
2024
|
+
*/
|
|
2025
|
+
declare const ManifestComponentSourceEnum: {
|
|
2026
|
+
readonly BUNDLED: "bundled";
|
|
2027
|
+
readonly REMOTE: "remote";
|
|
2028
|
+
};
|
|
2029
|
+
type ManifestComponentSourceEnum = typeof ManifestComponentSourceEnum[keyof typeof ManifestComponentSourceEnum];
|
|
2030
|
+
/**
|
|
2031
|
+
* Check if a given object implements the ManifestComponent interface.
|
|
2032
|
+
*/
|
|
2033
|
+
declare function instanceOfManifestComponent(value: object): boolean;
|
|
2034
|
+
declare function ManifestComponentFromJSON(json: any): ManifestComponent;
|
|
2035
|
+
declare function ManifestComponentFromJSONTyped(json: any, ignoreDiscriminator: boolean): ManifestComponent;
|
|
2036
|
+
declare function ManifestComponentToJSON(value?: ManifestComponent | null): any;
|
|
2037
|
+
|
|
2038
|
+
/**
|
|
2039
|
+
* 平台用户端 API
|
|
2040
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2041
|
+
*
|
|
2042
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2043
|
+
* Contact: dev@djvlc.com
|
|
2044
|
+
*
|
|
2045
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2046
|
+
* https://openapi-generator.tech
|
|
2047
|
+
* Do not edit the class manually.
|
|
2048
|
+
*/
|
|
2049
|
+
/**
|
|
2050
|
+
* Runtime 版本信息(ManifestRuntimeVo)
|
|
2051
|
+
* @export
|
|
2052
|
+
* @interface ManifestRuntime
|
|
2053
|
+
*/
|
|
2054
|
+
interface ManifestRuntime {
|
|
2055
|
+
/**
|
|
2056
|
+
* 版本
|
|
2057
|
+
* @type {string}
|
|
2058
|
+
* @memberof ManifestRuntime
|
|
2059
|
+
*/
|
|
2060
|
+
version: string;
|
|
2061
|
+
/**
|
|
2062
|
+
* 最低兼容版本
|
|
2063
|
+
* @type {string}
|
|
2064
|
+
* @memberof ManifestRuntime
|
|
2065
|
+
*/
|
|
2066
|
+
minVersion: string;
|
|
2067
|
+
}
|
|
2068
|
+
/**
|
|
2069
|
+
* Check if a given object implements the ManifestRuntime interface.
|
|
2070
|
+
*/
|
|
2071
|
+
declare function instanceOfManifestRuntime(value: object): boolean;
|
|
2072
|
+
declare function ManifestRuntimeFromJSON(json: any): ManifestRuntime;
|
|
2073
|
+
declare function ManifestRuntimeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ManifestRuntime;
|
|
2074
|
+
declare function ManifestRuntimeToJSON(value?: ManifestRuntime | null): any;
|
|
2075
|
+
|
|
2076
|
+
/**
|
|
2077
|
+
* 平台用户端 API
|
|
2078
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2079
|
+
*
|
|
2080
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2081
|
+
* Contact: dev@djvlc.com
|
|
2082
|
+
*
|
|
2083
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2084
|
+
* https://openapi-generator.tech
|
|
2085
|
+
* Do not edit the class manually.
|
|
2086
|
+
*/
|
|
2087
|
+
|
|
2088
|
+
/**
|
|
2089
|
+
* 组件清单响应(ManifestSwaggerVo)
|
|
2090
|
+
* @export
|
|
2091
|
+
* @interface ManifestResponse
|
|
2092
|
+
*/
|
|
2093
|
+
interface ManifestResponse {
|
|
2094
|
+
/**
|
|
2095
|
+
* 页面版本 ID
|
|
2096
|
+
* @type {string}
|
|
2097
|
+
* @memberof ManifestResponse
|
|
2098
|
+
*/
|
|
2099
|
+
pageVersionId: string;
|
|
2100
|
+
/**
|
|
2101
|
+
* 清单版本
|
|
2102
|
+
* @type {string}
|
|
2103
|
+
* @memberof ManifestResponse
|
|
2104
|
+
*/
|
|
2105
|
+
manifestVersion: string;
|
|
2106
|
+
/**
|
|
2107
|
+
* 组件列表
|
|
2108
|
+
* @type {Array<ManifestComponent>}
|
|
2109
|
+
* @memberof ManifestResponse
|
|
2110
|
+
*/
|
|
2111
|
+
components: Array<ManifestComponent>;
|
|
2112
|
+
/**
|
|
2113
|
+
*
|
|
2114
|
+
* @type {ManifestRuntime}
|
|
2115
|
+
* @memberof ManifestResponse
|
|
2116
|
+
*/
|
|
2117
|
+
runtime: ManifestRuntime;
|
|
2118
|
+
}
|
|
2119
|
+
/**
|
|
2120
|
+
* Check if a given object implements the ManifestResponse interface.
|
|
2121
|
+
*/
|
|
2122
|
+
declare function instanceOfManifestResponse(value: object): boolean;
|
|
2123
|
+
declare function ManifestResponseFromJSON(json: any): ManifestResponse;
|
|
2124
|
+
declare function ManifestResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ManifestResponse;
|
|
2125
|
+
declare function ManifestResponseToJSON(value?: ManifestResponse | null): any;
|
|
2126
|
+
|
|
2127
|
+
/**
|
|
2128
|
+
* 平台用户端 API
|
|
2129
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2130
|
+
*
|
|
2131
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2132
|
+
* Contact: dev@djvlc.com
|
|
2133
|
+
*
|
|
2134
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2135
|
+
* https://openapi-generator.tech
|
|
2136
|
+
* Do not edit the class manually.
|
|
2137
|
+
*/
|
|
2138
|
+
|
|
2139
|
+
/**
|
|
2140
|
+
*
|
|
2141
|
+
* @export
|
|
2142
|
+
* @interface GetPageManifest200Response
|
|
2143
|
+
*/
|
|
2144
|
+
interface GetPageManifest200Response {
|
|
2145
|
+
/**
|
|
2146
|
+
* 请求是否成功
|
|
2147
|
+
* @type {boolean}
|
|
2148
|
+
* @memberof GetPageManifest200Response
|
|
2149
|
+
*/
|
|
2150
|
+
success: boolean;
|
|
2151
|
+
/**
|
|
2152
|
+
* 业务状态码
|
|
2153
|
+
* @type {string}
|
|
2154
|
+
* @memberof GetPageManifest200Response
|
|
2155
|
+
*/
|
|
2156
|
+
code: string;
|
|
2157
|
+
/**
|
|
2158
|
+
* 响应消息
|
|
2159
|
+
* @type {string}
|
|
2160
|
+
* @memberof GetPageManifest200Response
|
|
2161
|
+
*/
|
|
2162
|
+
message: string;
|
|
2163
|
+
/**
|
|
2164
|
+
*
|
|
2165
|
+
* @type {ManifestResponse}
|
|
2166
|
+
* @memberof GetPageManifest200Response
|
|
2167
|
+
*/
|
|
2168
|
+
data: ManifestResponse;
|
|
2169
|
+
/**
|
|
2170
|
+
* 响应时间戳
|
|
2171
|
+
* @type {number}
|
|
2172
|
+
* @memberof GetPageManifest200Response
|
|
2173
|
+
*/
|
|
2174
|
+
timestamp: number;
|
|
2175
|
+
/**
|
|
2176
|
+
* 请求路径
|
|
2177
|
+
* @type {string}
|
|
2178
|
+
* @memberof GetPageManifest200Response
|
|
2179
|
+
*/
|
|
2180
|
+
path: string;
|
|
2181
|
+
/**
|
|
2182
|
+
* 请求ID
|
|
2183
|
+
* @type {string}
|
|
2184
|
+
* @memberof GetPageManifest200Response
|
|
2185
|
+
*/
|
|
2186
|
+
requestId?: string;
|
|
2187
|
+
/**
|
|
2188
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
2189
|
+
* @type {string}
|
|
2190
|
+
* @memberof GetPageManifest200Response
|
|
2191
|
+
*/
|
|
2192
|
+
traceId?: string;
|
|
2193
|
+
}
|
|
2194
|
+
/**
|
|
2195
|
+
* Check if a given object implements the GetPageManifest200Response interface.
|
|
2196
|
+
*/
|
|
2197
|
+
declare function instanceOfGetPageManifest200Response(value: object): boolean;
|
|
2198
|
+
declare function GetPageManifest200ResponseFromJSON(json: any): GetPageManifest200Response;
|
|
2199
|
+
declare function GetPageManifest200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPageManifest200Response;
|
|
2200
|
+
declare function GetPageManifest200ResponseToJSON(value?: GetPageManifest200Response | null): any;
|
|
2201
|
+
|
|
2202
|
+
/**
|
|
2203
|
+
* 平台用户端 API
|
|
2204
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2205
|
+
*
|
|
2206
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2207
|
+
* Contact: dev@djvlc.com
|
|
2208
|
+
*
|
|
2209
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2210
|
+
* https://openapi-generator.tech
|
|
2211
|
+
* Do not edit the class manually.
|
|
2212
|
+
*/
|
|
2213
|
+
/**
|
|
2214
|
+
* 查询定义响应(DataQueryDefinitionVo)
|
|
2215
|
+
* @export
|
|
2216
|
+
* @interface QueryDefinitionResponse
|
|
2217
|
+
*/
|
|
2218
|
+
interface QueryDefinitionResponse {
|
|
2219
|
+
/**
|
|
2220
|
+
* 版本 UID
|
|
2221
|
+
* @type {string}
|
|
2222
|
+
* @memberof QueryDefinitionResponse
|
|
2223
|
+
*/
|
|
2224
|
+
uid: string;
|
|
2225
|
+
/**
|
|
2226
|
+
* 所属查询 UID
|
|
2227
|
+
* @type {string}
|
|
2228
|
+
* @memberof QueryDefinitionResponse
|
|
2229
|
+
*/
|
|
2230
|
+
queryUid: string;
|
|
2231
|
+
/**
|
|
2232
|
+
* 版本号(递增)
|
|
2233
|
+
* @type {number}
|
|
2234
|
+
* @memberof QueryDefinitionResponse
|
|
2235
|
+
*/
|
|
2236
|
+
versionNumber: number;
|
|
2237
|
+
/**
|
|
2238
|
+
* 版本标签(可选,如 v1.0.0)
|
|
2239
|
+
* @type {string}
|
|
2240
|
+
* @memberof QueryDefinitionResponse
|
|
2241
|
+
*/
|
|
2242
|
+
versionLabel?: string | null;
|
|
2243
|
+
/**
|
|
2244
|
+
* 规格快照(不可变的 DataQuerySpec)
|
|
2245
|
+
* @type {{ [key: string]: any; }}
|
|
2246
|
+
* @memberof QueryDefinitionResponse
|
|
2247
|
+
*/
|
|
2248
|
+
spec: {
|
|
2249
|
+
[key: string]: any;
|
|
2250
|
+
};
|
|
2251
|
+
/**
|
|
2252
|
+
* 版本状态
|
|
2253
|
+
* @type {string}
|
|
2254
|
+
* @memberof QueryDefinitionResponse
|
|
2255
|
+
*/
|
|
2256
|
+
status: QueryDefinitionResponseStatusEnum;
|
|
2257
|
+
}
|
|
2258
|
+
/**
|
|
2259
|
+
* @export
|
|
2260
|
+
*/
|
|
2261
|
+
declare const QueryDefinitionResponseStatusEnum: {
|
|
2262
|
+
readonly DRAFT: "draft";
|
|
2263
|
+
readonly STABLE: "stable";
|
|
2264
|
+
readonly DEPRECATED: "deprecated";
|
|
2265
|
+
readonly BLOCKED: "blocked";
|
|
2266
|
+
};
|
|
2267
|
+
type QueryDefinitionResponseStatusEnum = typeof QueryDefinitionResponseStatusEnum[keyof typeof QueryDefinitionResponseStatusEnum];
|
|
2268
|
+
/**
|
|
2269
|
+
* Check if a given object implements the QueryDefinitionResponse interface.
|
|
2270
|
+
*/
|
|
2271
|
+
declare function instanceOfQueryDefinitionResponse(value: object): boolean;
|
|
2272
|
+
declare function QueryDefinitionResponseFromJSON(json: any): QueryDefinitionResponse;
|
|
2273
|
+
declare function QueryDefinitionResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): QueryDefinitionResponse;
|
|
2274
|
+
declare function QueryDefinitionResponseToJSON(value?: QueryDefinitionResponse | null): any;
|
|
2275
|
+
|
|
2276
|
+
/**
|
|
2277
|
+
* 平台用户端 API
|
|
2278
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2279
|
+
*
|
|
2280
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2281
|
+
* Contact: dev@djvlc.com
|
|
2282
|
+
*
|
|
2283
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2284
|
+
* https://openapi-generator.tech
|
|
2285
|
+
* Do not edit the class manually.
|
|
2286
|
+
*/
|
|
2287
|
+
|
|
2288
|
+
/**
|
|
2289
|
+
*
|
|
2290
|
+
* @export
|
|
2291
|
+
* @interface GetQueryDefinition200Response
|
|
2292
|
+
*/
|
|
2293
|
+
interface GetQueryDefinition200Response {
|
|
2294
|
+
/**
|
|
2295
|
+
* 请求是否成功
|
|
2296
|
+
* @type {boolean}
|
|
2297
|
+
* @memberof GetQueryDefinition200Response
|
|
2298
|
+
*/
|
|
2299
|
+
success: boolean;
|
|
2300
|
+
/**
|
|
2301
|
+
* 业务状态码
|
|
2302
|
+
* @type {string}
|
|
2303
|
+
* @memberof GetQueryDefinition200Response
|
|
2304
|
+
*/
|
|
2305
|
+
code: string;
|
|
2306
|
+
/**
|
|
2307
|
+
* 响应消息
|
|
2308
|
+
* @type {string}
|
|
2309
|
+
* @memberof GetQueryDefinition200Response
|
|
2310
|
+
*/
|
|
2311
|
+
message: string;
|
|
2312
|
+
/**
|
|
2313
|
+
*
|
|
2314
|
+
* @type {QueryDefinitionResponse}
|
|
2315
|
+
* @memberof GetQueryDefinition200Response
|
|
2316
|
+
*/
|
|
2317
|
+
data: QueryDefinitionResponse;
|
|
2318
|
+
/**
|
|
2319
|
+
* 响应时间戳
|
|
2320
|
+
* @type {number}
|
|
2321
|
+
* @memberof GetQueryDefinition200Response
|
|
2322
|
+
*/
|
|
2323
|
+
timestamp: number;
|
|
2324
|
+
/**
|
|
2325
|
+
* 请求路径
|
|
2326
|
+
* @type {string}
|
|
2327
|
+
* @memberof GetQueryDefinition200Response
|
|
2328
|
+
*/
|
|
2329
|
+
path: string;
|
|
2330
|
+
/**
|
|
2331
|
+
* 请求ID
|
|
2332
|
+
* @type {string}
|
|
2333
|
+
* @memberof GetQueryDefinition200Response
|
|
2334
|
+
*/
|
|
2335
|
+
requestId?: string;
|
|
2336
|
+
/**
|
|
2337
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
2338
|
+
* @type {string}
|
|
2339
|
+
* @memberof GetQueryDefinition200Response
|
|
2340
|
+
*/
|
|
2341
|
+
traceId?: string;
|
|
2342
|
+
}
|
|
2343
|
+
/**
|
|
2344
|
+
* Check if a given object implements the GetQueryDefinition200Response interface.
|
|
2345
|
+
*/
|
|
2346
|
+
declare function instanceOfGetQueryDefinition200Response(value: object): boolean;
|
|
2347
|
+
declare function GetQueryDefinition200ResponseFromJSON(json: any): GetQueryDefinition200Response;
|
|
2348
|
+
declare function GetQueryDefinition200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetQueryDefinition200Response;
|
|
2349
|
+
declare function GetQueryDefinition200ResponseToJSON(value?: GetQueryDefinition200Response | null): any;
|
|
2350
|
+
|
|
2351
|
+
/**
|
|
2352
|
+
* 平台用户端 API
|
|
2353
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2354
|
+
*
|
|
2355
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2356
|
+
* Contact: dev@djvlc.com
|
|
2357
|
+
*
|
|
2358
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2359
|
+
* https://openapi-generator.tech
|
|
2360
|
+
* Do not edit the class manually.
|
|
2361
|
+
*/
|
|
2362
|
+
/**
|
|
2363
|
+
* 签到日历数据(SigninCalendarDataVo)
|
|
2364
|
+
* @export
|
|
2365
|
+
* @interface SigninCalendarData
|
|
2366
|
+
*/
|
|
2367
|
+
interface SigninCalendarData {
|
|
2368
|
+
/**
|
|
2369
|
+
* 活动 ID
|
|
2370
|
+
* @type {string}
|
|
2371
|
+
* @memberof SigninCalendarData
|
|
2372
|
+
*/
|
|
2373
|
+
activityId: string;
|
|
2374
|
+
/**
|
|
2375
|
+
* 月份(YYYY-MM)
|
|
2376
|
+
* @type {string}
|
|
2377
|
+
* @memberof SigninCalendarData
|
|
2378
|
+
*/
|
|
2379
|
+
month: string;
|
|
2380
|
+
/**
|
|
2381
|
+
* 已签到日期列表
|
|
2382
|
+
* @type {Array<string>}
|
|
2383
|
+
* @memberof SigninCalendarData
|
|
2384
|
+
*/
|
|
2385
|
+
signedDates: Array<string>;
|
|
2386
|
+
/**
|
|
2387
|
+
* 连续签到天数
|
|
2388
|
+
* @type {number}
|
|
2389
|
+
* @memberof SigninCalendarData
|
|
2390
|
+
*/
|
|
2391
|
+
consecutiveDays: number;
|
|
2392
|
+
/**
|
|
2393
|
+
* 累计签到天数
|
|
2394
|
+
* @type {number}
|
|
2395
|
+
* @memberof SigninCalendarData
|
|
2396
|
+
*/
|
|
2397
|
+
totalDays: number;
|
|
2398
|
+
}
|
|
2399
|
+
/**
|
|
2400
|
+
* Check if a given object implements the SigninCalendarData interface.
|
|
2401
|
+
*/
|
|
2402
|
+
declare function instanceOfSigninCalendarData(value: object): boolean;
|
|
2403
|
+
declare function SigninCalendarDataFromJSON(json: any): SigninCalendarData;
|
|
2404
|
+
declare function SigninCalendarDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): SigninCalendarData;
|
|
2405
|
+
declare function SigninCalendarDataToJSON(value?: SigninCalendarData | null): any;
|
|
2406
|
+
|
|
2407
|
+
/**
|
|
2408
|
+
* 平台用户端 API
|
|
2409
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2410
|
+
*
|
|
2411
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2412
|
+
* Contact: dev@djvlc.com
|
|
2413
|
+
*
|
|
2414
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2415
|
+
* https://openapi-generator.tech
|
|
2416
|
+
* Do not edit the class manually.
|
|
2417
|
+
*/
|
|
2418
|
+
|
|
2419
|
+
/**
|
|
2420
|
+
* 签到日历响应(SigninCalendarVo)
|
|
2421
|
+
* @export
|
|
2422
|
+
* @interface SigninCalendarResponse
|
|
2423
|
+
*/
|
|
2424
|
+
interface SigninCalendarResponse {
|
|
2425
|
+
/**
|
|
2426
|
+
* 是否成功
|
|
2427
|
+
* @type {boolean}
|
|
2428
|
+
* @memberof SigninCalendarResponse
|
|
2429
|
+
*/
|
|
2430
|
+
success: boolean;
|
|
2431
|
+
/**
|
|
2432
|
+
*
|
|
2433
|
+
* @type {SigninCalendarData}
|
|
2434
|
+
* @memberof SigninCalendarResponse
|
|
2435
|
+
*/
|
|
2436
|
+
data: SigninCalendarData;
|
|
2437
|
+
}
|
|
2438
|
+
/**
|
|
2439
|
+
* Check if a given object implements the SigninCalendarResponse interface.
|
|
2440
|
+
*/
|
|
2441
|
+
declare function instanceOfSigninCalendarResponse(value: object): boolean;
|
|
2442
|
+
declare function SigninCalendarResponseFromJSON(json: any): SigninCalendarResponse;
|
|
2443
|
+
declare function SigninCalendarResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SigninCalendarResponse;
|
|
2444
|
+
declare function SigninCalendarResponseToJSON(value?: SigninCalendarResponse | null): any;
|
|
2445
|
+
|
|
2446
|
+
/**
|
|
2447
|
+
* 平台用户端 API
|
|
2448
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2449
|
+
*
|
|
2450
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2451
|
+
* Contact: dev@djvlc.com
|
|
2452
|
+
*
|
|
2453
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2454
|
+
* https://openapi-generator.tech
|
|
2455
|
+
* Do not edit the class manually.
|
|
2456
|
+
*/
|
|
2457
|
+
|
|
2458
|
+
/**
|
|
2459
|
+
*
|
|
2460
|
+
* @export
|
|
2461
|
+
* @interface GetSigninCalendar200Response
|
|
2462
|
+
*/
|
|
2463
|
+
interface GetSigninCalendar200Response {
|
|
2464
|
+
/**
|
|
2465
|
+
* 请求是否成功
|
|
2466
|
+
* @type {boolean}
|
|
2467
|
+
* @memberof GetSigninCalendar200Response
|
|
2468
|
+
*/
|
|
2469
|
+
success: boolean;
|
|
2470
|
+
/**
|
|
2471
|
+
* 业务状态码
|
|
2472
|
+
* @type {string}
|
|
2473
|
+
* @memberof GetSigninCalendar200Response
|
|
2474
|
+
*/
|
|
2475
|
+
code: string;
|
|
2476
|
+
/**
|
|
2477
|
+
* 响应消息
|
|
2478
|
+
* @type {string}
|
|
2479
|
+
* @memberof GetSigninCalendar200Response
|
|
2480
|
+
*/
|
|
2481
|
+
message: string;
|
|
2482
|
+
/**
|
|
2483
|
+
*
|
|
2484
|
+
* @type {SigninCalendarResponse}
|
|
2485
|
+
* @memberof GetSigninCalendar200Response
|
|
2486
|
+
*/
|
|
2487
|
+
data: SigninCalendarResponse;
|
|
2488
|
+
/**
|
|
2489
|
+
* 响应时间戳
|
|
2490
|
+
* @type {number}
|
|
2491
|
+
* @memberof GetSigninCalendar200Response
|
|
2492
|
+
*/
|
|
2493
|
+
timestamp: number;
|
|
2494
|
+
/**
|
|
2495
|
+
* 请求路径
|
|
2496
|
+
* @type {string}
|
|
2497
|
+
* @memberof GetSigninCalendar200Response
|
|
2498
|
+
*/
|
|
2499
|
+
path: string;
|
|
2500
|
+
/**
|
|
2501
|
+
* 请求ID
|
|
2502
|
+
* @type {string}
|
|
2503
|
+
* @memberof GetSigninCalendar200Response
|
|
2504
|
+
*/
|
|
2505
|
+
requestId?: string;
|
|
2506
|
+
/**
|
|
2507
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
2508
|
+
* @type {string}
|
|
2509
|
+
* @memberof GetSigninCalendar200Response
|
|
2510
|
+
*/
|
|
2511
|
+
traceId?: string;
|
|
2512
|
+
}
|
|
2513
|
+
/**
|
|
2514
|
+
* Check if a given object implements the GetSigninCalendar200Response interface.
|
|
2515
|
+
*/
|
|
2516
|
+
declare function instanceOfGetSigninCalendar200Response(value: object): boolean;
|
|
2517
|
+
declare function GetSigninCalendar200ResponseFromJSON(json: any): GetSigninCalendar200Response;
|
|
2518
|
+
declare function GetSigninCalendar200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSigninCalendar200Response;
|
|
2519
|
+
declare function GetSigninCalendar200ResponseToJSON(value?: GetSigninCalendar200Response | null): any;
|
|
2520
|
+
|
|
2521
|
+
/**
|
|
2522
|
+
* 平台用户端 API
|
|
2523
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2524
|
+
*
|
|
2525
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2526
|
+
* Contact: dev@djvlc.com
|
|
2527
|
+
*
|
|
2528
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2529
|
+
* https://openapi-generator.tech
|
|
2530
|
+
* Do not edit the class manually.
|
|
2531
|
+
*/
|
|
2532
|
+
/**
|
|
2533
|
+
* 奖励信息(RewardInfoVo)
|
|
2534
|
+
* @export
|
|
2535
|
+
* @interface RewardInfo
|
|
2536
|
+
*/
|
|
2537
|
+
interface RewardInfo {
|
|
2538
|
+
/**
|
|
2539
|
+
* 奖励类型
|
|
2540
|
+
* @type {string}
|
|
2541
|
+
* @memberof RewardInfo
|
|
2542
|
+
*/
|
|
2543
|
+
type: string;
|
|
2544
|
+
/**
|
|
2545
|
+
* 奖励值
|
|
2546
|
+
* @type {number}
|
|
2547
|
+
* @memberof RewardInfo
|
|
2548
|
+
*/
|
|
2549
|
+
value: number;
|
|
2550
|
+
/**
|
|
2551
|
+
* 奖励描述
|
|
2552
|
+
* @type {string}
|
|
2553
|
+
* @memberof RewardInfo
|
|
2554
|
+
*/
|
|
2555
|
+
description: string;
|
|
2556
|
+
}
|
|
2557
|
+
/**
|
|
2558
|
+
* Check if a given object implements the RewardInfo interface.
|
|
2559
|
+
*/
|
|
2560
|
+
declare function instanceOfRewardInfo(value: object): boolean;
|
|
2561
|
+
declare function RewardInfoFromJSON(json: any): RewardInfo;
|
|
2562
|
+
declare function RewardInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): RewardInfo;
|
|
2563
|
+
declare function RewardInfoToJSON(value?: RewardInfo | null): any;
|
|
2564
|
+
|
|
2565
|
+
/**
|
|
2566
|
+
* 平台用户端 API
|
|
2567
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2568
|
+
*
|
|
2569
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2570
|
+
* Contact: dev@djvlc.com
|
|
2571
|
+
*
|
|
2572
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2573
|
+
* https://openapi-generator.tech
|
|
2574
|
+
* Do not edit the class manually.
|
|
2575
|
+
*/
|
|
2576
|
+
|
|
2577
|
+
/**
|
|
2578
|
+
* 里程碑信息(MilestoneInfoVo)
|
|
2579
|
+
* @export
|
|
2580
|
+
* @interface MilestoneInfo
|
|
2581
|
+
*/
|
|
2582
|
+
interface MilestoneInfo {
|
|
2583
|
+
/**
|
|
2584
|
+
* 目标天数
|
|
2585
|
+
* @type {number}
|
|
2586
|
+
* @memberof MilestoneInfo
|
|
2587
|
+
*/
|
|
2588
|
+
days: number;
|
|
2589
|
+
/**
|
|
2590
|
+
*
|
|
2591
|
+
* @type {RewardInfo}
|
|
2592
|
+
* @memberof MilestoneInfo
|
|
2593
|
+
*/
|
|
2594
|
+
reward: RewardInfo;
|
|
2595
|
+
}
|
|
2596
|
+
/**
|
|
2597
|
+
* Check if a given object implements the MilestoneInfo interface.
|
|
2598
|
+
*/
|
|
2599
|
+
declare function instanceOfMilestoneInfo(value: object): boolean;
|
|
2600
|
+
declare function MilestoneInfoFromJSON(json: any): MilestoneInfo;
|
|
2601
|
+
declare function MilestoneInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): MilestoneInfo;
|
|
2602
|
+
declare function MilestoneInfoToJSON(value?: MilestoneInfo | null): any;
|
|
2603
|
+
|
|
2604
|
+
/**
|
|
2605
|
+
* 平台用户端 API
|
|
2606
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2607
|
+
*
|
|
2608
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2609
|
+
* Contact: dev@djvlc.com
|
|
2610
|
+
*
|
|
2611
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2612
|
+
* https://openapi-generator.tech
|
|
2613
|
+
* Do not edit the class manually.
|
|
2614
|
+
*/
|
|
2615
|
+
|
|
2616
|
+
/**
|
|
2617
|
+
* 签到状态响应(SigninStatusVo)
|
|
2618
|
+
* @export
|
|
2619
|
+
* @interface SigninStatusResponse
|
|
2620
|
+
*/
|
|
2621
|
+
interface SigninStatusResponse {
|
|
2622
|
+
/**
|
|
2623
|
+
* 活动 UID
|
|
2624
|
+
* @type {string}
|
|
2625
|
+
* @memberof SigninStatusResponse
|
|
2626
|
+
*/
|
|
2627
|
+
activityUid: string;
|
|
2628
|
+
/**
|
|
2629
|
+
* 今日是否已签到
|
|
2630
|
+
* @type {boolean}
|
|
2631
|
+
* @memberof SigninStatusResponse
|
|
2632
|
+
*/
|
|
2633
|
+
hasSignedToday: boolean;
|
|
2634
|
+
/**
|
|
2635
|
+
* 连续签到天数
|
|
2636
|
+
* @type {number}
|
|
2637
|
+
* @memberof SigninStatusResponse
|
|
2638
|
+
*/
|
|
2639
|
+
consecutiveDays: number;
|
|
2640
|
+
/**
|
|
2641
|
+
* 累计签到天数
|
|
2642
|
+
* @type {number}
|
|
2643
|
+
* @memberof SigninStatusResponse
|
|
2644
|
+
*/
|
|
2645
|
+
totalDays: number;
|
|
2646
|
+
/**
|
|
2647
|
+
* 签到日期列表
|
|
2648
|
+
* @type {Array<string>}
|
|
2649
|
+
* @memberof SigninStatusResponse
|
|
2650
|
+
*/
|
|
2651
|
+
signedDates: Array<string>;
|
|
2652
|
+
/**
|
|
2653
|
+
*
|
|
2654
|
+
* @type {RewardInfo}
|
|
2655
|
+
* @memberof SigninStatusResponse
|
|
2656
|
+
*/
|
|
2657
|
+
todayReward?: RewardInfo;
|
|
2658
|
+
/**
|
|
2659
|
+
*
|
|
2660
|
+
* @type {MilestoneInfo}
|
|
2661
|
+
* @memberof SigninStatusResponse
|
|
2662
|
+
*/
|
|
2663
|
+
nextMilestone?: MilestoneInfo;
|
|
2664
|
+
}
|
|
2665
|
+
/**
|
|
2666
|
+
* Check if a given object implements the SigninStatusResponse interface.
|
|
2667
|
+
*/
|
|
2668
|
+
declare function instanceOfSigninStatusResponse(value: object): boolean;
|
|
2669
|
+
declare function SigninStatusResponseFromJSON(json: any): SigninStatusResponse;
|
|
2670
|
+
declare function SigninStatusResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SigninStatusResponse;
|
|
2671
|
+
declare function SigninStatusResponseToJSON(value?: SigninStatusResponse | null): any;
|
|
2672
|
+
|
|
2673
|
+
/**
|
|
2674
|
+
* 平台用户端 API
|
|
2675
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2676
|
+
*
|
|
2677
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2678
|
+
* Contact: dev@djvlc.com
|
|
2679
|
+
*
|
|
2680
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2681
|
+
* https://openapi-generator.tech
|
|
2682
|
+
* Do not edit the class manually.
|
|
2683
|
+
*/
|
|
2684
|
+
|
|
2685
|
+
/**
|
|
2686
|
+
*
|
|
2687
|
+
* @export
|
|
2688
|
+
* @interface GetSigninStatus200Response
|
|
2689
|
+
*/
|
|
2690
|
+
interface GetSigninStatus200Response {
|
|
2691
|
+
/**
|
|
2692
|
+
* 请求是否成功
|
|
2693
|
+
* @type {boolean}
|
|
2694
|
+
* @memberof GetSigninStatus200Response
|
|
2695
|
+
*/
|
|
2696
|
+
success: boolean;
|
|
2697
|
+
/**
|
|
2698
|
+
* 业务状态码
|
|
2699
|
+
* @type {string}
|
|
2700
|
+
* @memberof GetSigninStatus200Response
|
|
2701
|
+
*/
|
|
2702
|
+
code: string;
|
|
2703
|
+
/**
|
|
2704
|
+
* 响应消息
|
|
2705
|
+
* @type {string}
|
|
2706
|
+
* @memberof GetSigninStatus200Response
|
|
2707
|
+
*/
|
|
2708
|
+
message: string;
|
|
2709
|
+
/**
|
|
2710
|
+
*
|
|
2711
|
+
* @type {SigninStatusResponse}
|
|
2712
|
+
* @memberof GetSigninStatus200Response
|
|
2713
|
+
*/
|
|
2714
|
+
data: SigninStatusResponse;
|
|
2715
|
+
/**
|
|
2716
|
+
* 响应时间戳
|
|
2717
|
+
* @type {number}
|
|
2718
|
+
* @memberof GetSigninStatus200Response
|
|
2719
|
+
*/
|
|
2720
|
+
timestamp: number;
|
|
2721
|
+
/**
|
|
2722
|
+
* 请求路径
|
|
2723
|
+
* @type {string}
|
|
2724
|
+
* @memberof GetSigninStatus200Response
|
|
2725
|
+
*/
|
|
2726
|
+
path: string;
|
|
2727
|
+
/**
|
|
2728
|
+
* 请求ID
|
|
2729
|
+
* @type {string}
|
|
2730
|
+
* @memberof GetSigninStatus200Response
|
|
2731
|
+
*/
|
|
2732
|
+
requestId?: string;
|
|
2733
|
+
/**
|
|
2734
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
2735
|
+
* @type {string}
|
|
2736
|
+
* @memberof GetSigninStatus200Response
|
|
2737
|
+
*/
|
|
2738
|
+
traceId?: string;
|
|
2739
|
+
}
|
|
2740
|
+
/**
|
|
2741
|
+
* Check if a given object implements the GetSigninStatus200Response interface.
|
|
2742
|
+
*/
|
|
2743
|
+
declare function instanceOfGetSigninStatus200Response(value: object): boolean;
|
|
2744
|
+
declare function GetSigninStatus200ResponseFromJSON(json: any): GetSigninStatus200Response;
|
|
2745
|
+
declare function GetSigninStatus200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSigninStatus200Response;
|
|
2746
|
+
declare function GetSigninStatus200ResponseToJSON(value?: GetSigninStatus200Response | null): any;
|
|
2747
|
+
|
|
2748
|
+
/**
|
|
2749
|
+
* 平台用户端 API
|
|
2750
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2751
|
+
*
|
|
2752
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2753
|
+
* Contact: dev@djvlc.com
|
|
2754
|
+
*
|
|
2755
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2756
|
+
* https://openapi-generator.tech
|
|
2757
|
+
* Do not edit the class manually.
|
|
2758
|
+
*/
|
|
2759
|
+
/**
|
|
2760
|
+
* 租户配置数据(TenantConfigDataVo)
|
|
2761
|
+
* @export
|
|
2762
|
+
* @interface TenantConfigData
|
|
2763
|
+
*/
|
|
2764
|
+
interface TenantConfigData {
|
|
2765
|
+
/**
|
|
2766
|
+
* 应用 ID
|
|
2767
|
+
* @type {string}
|
|
2768
|
+
* @memberof TenantConfigData
|
|
2769
|
+
*/
|
|
2770
|
+
appId: string;
|
|
2771
|
+
/**
|
|
2772
|
+
* 租户状态
|
|
2773
|
+
* @type {string}
|
|
2774
|
+
* @memberof TenantConfigData
|
|
2775
|
+
*/
|
|
2776
|
+
status: string;
|
|
2777
|
+
/**
|
|
2778
|
+
* 功能开关
|
|
2779
|
+
* @type {{ [key: string]: boolean; }}
|
|
2780
|
+
* @memberof TenantConfigData
|
|
2781
|
+
*/
|
|
2782
|
+
featureFlags?: {
|
|
2783
|
+
[key: string]: boolean;
|
|
2784
|
+
};
|
|
2785
|
+
/**
|
|
2786
|
+
* 主题配置
|
|
2787
|
+
* @type {{ [key: string]: any; }}
|
|
2788
|
+
* @memberof TenantConfigData
|
|
2789
|
+
*/
|
|
2790
|
+
theme?: {
|
|
2791
|
+
[key: string]: any;
|
|
2792
|
+
};
|
|
2793
|
+
/**
|
|
2794
|
+
* CDN 基地址
|
|
2795
|
+
* @type {string}
|
|
2796
|
+
* @memberof TenantConfigData
|
|
2797
|
+
*/
|
|
2798
|
+
cdnBase?: string;
|
|
2799
|
+
/**
|
|
2800
|
+
* 阻断组件列表
|
|
2801
|
+
* @type {Array<string>}
|
|
2802
|
+
* @memberof TenantConfigData
|
|
2803
|
+
*/
|
|
2804
|
+
blockedComponents?: Array<string>;
|
|
2805
|
+
/**
|
|
2806
|
+
* 全局 killSwitch
|
|
2807
|
+
* @type {boolean}
|
|
2808
|
+
* @memberof TenantConfigData
|
|
2809
|
+
*/
|
|
2810
|
+
killSwitch?: boolean;
|
|
2811
|
+
}
|
|
2812
|
+
/**
|
|
2813
|
+
* Check if a given object implements the TenantConfigData interface.
|
|
2814
|
+
*/
|
|
2815
|
+
declare function instanceOfTenantConfigData(value: object): boolean;
|
|
2816
|
+
declare function TenantConfigDataFromJSON(json: any): TenantConfigData;
|
|
2817
|
+
declare function TenantConfigDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantConfigData;
|
|
2818
|
+
declare function TenantConfigDataToJSON(value?: TenantConfigData | null): any;
|
|
2819
|
+
|
|
2820
|
+
/**
|
|
2821
|
+
* 平台用户端 API
|
|
2822
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2823
|
+
*
|
|
2824
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2825
|
+
* Contact: dev@djvlc.com
|
|
2826
|
+
*
|
|
2827
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2828
|
+
* https://openapi-generator.tech
|
|
2829
|
+
* Do not edit the class manually.
|
|
2830
|
+
*/
|
|
2831
|
+
|
|
2832
|
+
/**
|
|
2833
|
+
* 租户配置响应(TenantConfigVo)
|
|
2834
|
+
* @export
|
|
2835
|
+
* @interface TenantConfigResponse
|
|
2836
|
+
*/
|
|
2837
|
+
interface TenantConfigResponse {
|
|
2838
|
+
/**
|
|
2839
|
+
* 是否成功
|
|
2840
|
+
* @type {boolean}
|
|
2841
|
+
* @memberof TenantConfigResponse
|
|
2842
|
+
*/
|
|
2843
|
+
success: boolean;
|
|
2844
|
+
/**
|
|
2845
|
+
*
|
|
2846
|
+
* @type {TenantConfigData}
|
|
2847
|
+
* @memberof TenantConfigResponse
|
|
2848
|
+
*/
|
|
2849
|
+
data: TenantConfigData;
|
|
2850
|
+
}
|
|
2851
|
+
/**
|
|
2852
|
+
* Check if a given object implements the TenantConfigResponse interface.
|
|
2853
|
+
*/
|
|
2854
|
+
declare function instanceOfTenantConfigResponse(value: object): boolean;
|
|
2855
|
+
declare function TenantConfigResponseFromJSON(json: any): TenantConfigResponse;
|
|
2856
|
+
declare function TenantConfigResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantConfigResponse;
|
|
2857
|
+
declare function TenantConfigResponseToJSON(value?: TenantConfigResponse | null): any;
|
|
2858
|
+
|
|
2859
|
+
/**
|
|
2860
|
+
* 平台用户端 API
|
|
2861
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2862
|
+
*
|
|
2863
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2864
|
+
* Contact: dev@djvlc.com
|
|
2865
|
+
*
|
|
2866
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2867
|
+
* https://openapi-generator.tech
|
|
2868
|
+
* Do not edit the class manually.
|
|
2869
|
+
*/
|
|
2870
|
+
|
|
2871
|
+
/**
|
|
2872
|
+
*
|
|
2873
|
+
* @export
|
|
2874
|
+
* @interface GetTenantConfig200Response
|
|
2875
|
+
*/
|
|
2876
|
+
interface GetTenantConfig200Response {
|
|
2877
|
+
/**
|
|
2878
|
+
* 请求是否成功
|
|
2879
|
+
* @type {boolean}
|
|
2880
|
+
* @memberof GetTenantConfig200Response
|
|
2881
|
+
*/
|
|
2882
|
+
success: boolean;
|
|
2883
|
+
/**
|
|
2884
|
+
* 业务状态码
|
|
2885
|
+
* @type {string}
|
|
2886
|
+
* @memberof GetTenantConfig200Response
|
|
2887
|
+
*/
|
|
2888
|
+
code: string;
|
|
2889
|
+
/**
|
|
2890
|
+
* 响应消息
|
|
2891
|
+
* @type {string}
|
|
2892
|
+
* @memberof GetTenantConfig200Response
|
|
2893
|
+
*/
|
|
2894
|
+
message: string;
|
|
2895
|
+
/**
|
|
2896
|
+
*
|
|
2897
|
+
* @type {TenantConfigResponse}
|
|
2898
|
+
* @memberof GetTenantConfig200Response
|
|
2899
|
+
*/
|
|
2900
|
+
data: TenantConfigResponse;
|
|
2901
|
+
/**
|
|
2902
|
+
* 响应时间戳
|
|
2903
|
+
* @type {number}
|
|
2904
|
+
* @memberof GetTenantConfig200Response
|
|
2905
|
+
*/
|
|
2906
|
+
timestamp: number;
|
|
2907
|
+
/**
|
|
2908
|
+
* 请求路径
|
|
2909
|
+
* @type {string}
|
|
2910
|
+
* @memberof GetTenantConfig200Response
|
|
2911
|
+
*/
|
|
2912
|
+
path: string;
|
|
2913
|
+
/**
|
|
2914
|
+
* 请求ID
|
|
2915
|
+
* @type {string}
|
|
2916
|
+
* @memberof GetTenantConfig200Response
|
|
2917
|
+
*/
|
|
2918
|
+
requestId?: string;
|
|
2919
|
+
/**
|
|
2920
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
2921
|
+
* @type {string}
|
|
2922
|
+
* @memberof GetTenantConfig200Response
|
|
2923
|
+
*/
|
|
2924
|
+
traceId?: string;
|
|
2925
|
+
}
|
|
2926
|
+
/**
|
|
2927
|
+
* Check if a given object implements the GetTenantConfig200Response interface.
|
|
2928
|
+
*/
|
|
2929
|
+
declare function instanceOfGetTenantConfig200Response(value: object): boolean;
|
|
2930
|
+
declare function GetTenantConfig200ResponseFromJSON(json: any): GetTenantConfig200Response;
|
|
2931
|
+
declare function GetTenantConfig200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTenantConfig200Response;
|
|
2932
|
+
declare function GetTenantConfig200ResponseToJSON(value?: GetTenantConfig200Response | null): any;
|
|
2933
|
+
|
|
2934
|
+
/**
|
|
2935
|
+
* 平台用户端 API
|
|
2936
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2937
|
+
*
|
|
2938
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2939
|
+
* Contact: dev@djvlc.com
|
|
2940
|
+
*
|
|
2941
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2942
|
+
* https://openapi-generator.tech
|
|
2943
|
+
* Do not edit the class manually.
|
|
2944
|
+
*/
|
|
2945
|
+
/**
|
|
2946
|
+
* 健康检查响应(HealthCheckVo)
|
|
2947
|
+
* @export
|
|
2948
|
+
* @interface HealthCheckResponse
|
|
2949
|
+
*/
|
|
2950
|
+
interface HealthCheckResponse {
|
|
2951
|
+
/**
|
|
2952
|
+
* 服务状态
|
|
2953
|
+
* @type {string}
|
|
2954
|
+
* @memberof HealthCheckResponse
|
|
2955
|
+
*/
|
|
2956
|
+
status: string;
|
|
2957
|
+
/**
|
|
2958
|
+
* 响应时间戳
|
|
2959
|
+
* @type {string}
|
|
2960
|
+
* @memberof HealthCheckResponse
|
|
2961
|
+
*/
|
|
2962
|
+
timestamp: string;
|
|
2963
|
+
}
|
|
2964
|
+
/**
|
|
2965
|
+
* Check if a given object implements the HealthCheckResponse interface.
|
|
2966
|
+
*/
|
|
2967
|
+
declare function instanceOfHealthCheckResponse(value: object): boolean;
|
|
2968
|
+
declare function HealthCheckResponseFromJSON(json: any): HealthCheckResponse;
|
|
2969
|
+
declare function HealthCheckResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): HealthCheckResponse;
|
|
2970
|
+
declare function HealthCheckResponseToJSON(value?: HealthCheckResponse | null): any;
|
|
2971
|
+
|
|
2972
|
+
/**
|
|
2973
|
+
* 平台用户端 API
|
|
2974
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2975
|
+
*
|
|
2976
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2977
|
+
* Contact: dev@djvlc.com
|
|
2978
|
+
*
|
|
2979
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2980
|
+
* https://openapi-generator.tech
|
|
2981
|
+
* Do not edit the class manually.
|
|
2982
|
+
*/
|
|
2983
|
+
|
|
2984
|
+
/**
|
|
2985
|
+
*
|
|
2986
|
+
* @export
|
|
2987
|
+
* @interface HealthCheck200Response
|
|
2988
|
+
*/
|
|
2989
|
+
interface HealthCheck200Response {
|
|
2990
|
+
/**
|
|
2991
|
+
* 请求是否成功
|
|
2992
|
+
* @type {boolean}
|
|
2993
|
+
* @memberof HealthCheck200Response
|
|
2994
|
+
*/
|
|
2995
|
+
success: boolean;
|
|
2996
|
+
/**
|
|
2997
|
+
* 业务状态码
|
|
2998
|
+
* @type {string}
|
|
2999
|
+
* @memberof HealthCheck200Response
|
|
3000
|
+
*/
|
|
3001
|
+
code: string;
|
|
3002
|
+
/**
|
|
3003
|
+
* 响应消息
|
|
3004
|
+
* @type {string}
|
|
3005
|
+
* @memberof HealthCheck200Response
|
|
3006
|
+
*/
|
|
3007
|
+
message: string;
|
|
3008
|
+
/**
|
|
3009
|
+
*
|
|
3010
|
+
* @type {HealthCheckResponse}
|
|
3011
|
+
* @memberof HealthCheck200Response
|
|
3012
|
+
*/
|
|
3013
|
+
data: HealthCheckResponse;
|
|
3014
|
+
/**
|
|
3015
|
+
* 响应时间戳
|
|
3016
|
+
* @type {number}
|
|
3017
|
+
* @memberof HealthCheck200Response
|
|
3018
|
+
*/
|
|
3019
|
+
timestamp: number;
|
|
3020
|
+
/**
|
|
3021
|
+
* 请求路径
|
|
3022
|
+
* @type {string}
|
|
3023
|
+
* @memberof HealthCheck200Response
|
|
3024
|
+
*/
|
|
3025
|
+
path: string;
|
|
3026
|
+
/**
|
|
3027
|
+
* 请求ID
|
|
3028
|
+
* @type {string}
|
|
3029
|
+
* @memberof HealthCheck200Response
|
|
3030
|
+
*/
|
|
3031
|
+
requestId?: string;
|
|
3032
|
+
/**
|
|
3033
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
3034
|
+
* @type {string}
|
|
3035
|
+
* @memberof HealthCheck200Response
|
|
3036
|
+
*/
|
|
3037
|
+
traceId?: string;
|
|
3038
|
+
}
|
|
3039
|
+
/**
|
|
3040
|
+
* Check if a given object implements the HealthCheck200Response interface.
|
|
3041
|
+
*/
|
|
3042
|
+
declare function instanceOfHealthCheck200Response(value: object): boolean;
|
|
3043
|
+
declare function HealthCheck200ResponseFromJSON(json: any): HealthCheck200Response;
|
|
3044
|
+
declare function HealthCheck200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): HealthCheck200Response;
|
|
3045
|
+
declare function HealthCheck200ResponseToJSON(value?: HealthCheck200Response | null): any;
|
|
3046
|
+
|
|
3047
|
+
/**
|
|
3048
|
+
* 平台用户端 API
|
|
3049
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
3050
|
+
*
|
|
3051
|
+
* The version of the OpenAPI document: 1.0.0
|
|
3052
|
+
* Contact: dev@djvlc.com
|
|
3053
|
+
*
|
|
3054
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3055
|
+
* https://openapi-generator.tech
|
|
3056
|
+
* Do not edit the class manually.
|
|
3057
|
+
*/
|
|
3058
|
+
/**
|
|
3059
|
+
* 健康检查项
|
|
3060
|
+
* @export
|
|
3061
|
+
* @interface HealthCheckItem
|
|
3062
|
+
*/
|
|
3063
|
+
interface HealthCheckItem {
|
|
3064
|
+
/**
|
|
3065
|
+
* 检查状态
|
|
3066
|
+
* @type {string}
|
|
3067
|
+
* @memberof HealthCheckItem
|
|
3068
|
+
*/
|
|
3069
|
+
status?: string;
|
|
3070
|
+
/**
|
|
3071
|
+
* 检查消息
|
|
3072
|
+
* @type {string}
|
|
3073
|
+
* @memberof HealthCheckItem
|
|
3074
|
+
*/
|
|
3075
|
+
message?: string;
|
|
3076
|
+
}
|
|
3077
|
+
/**
|
|
3078
|
+
* Check if a given object implements the HealthCheckItem interface.
|
|
3079
|
+
*/
|
|
3080
|
+
declare function instanceOfHealthCheckItem(value: object): boolean;
|
|
3081
|
+
declare function HealthCheckItemFromJSON(json: any): HealthCheckItem;
|
|
3082
|
+
declare function HealthCheckItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): HealthCheckItem;
|
|
3083
|
+
declare function HealthCheckItemToJSON(value?: HealthCheckItem | null): any;
|
|
1529
3084
|
|
|
1530
3085
|
/**
|
|
1531
3086
|
* 平台用户端 API
|
|
@@ -1538,53 +3093,26 @@ declare function MilestoneInfoToJSON(value?: MilestoneInfo | null): any;
|
|
|
1538
3093
|
* https://openapi-generator.tech
|
|
1539
3094
|
* Do not edit the class manually.
|
|
1540
3095
|
*/
|
|
1541
|
-
|
|
1542
3096
|
/**
|
|
1543
|
-
*
|
|
3097
|
+
* 存活检查响应(LivenessVo)
|
|
1544
3098
|
* @export
|
|
1545
|
-
* @interface
|
|
3099
|
+
* @interface LivenessResponse
|
|
1546
3100
|
*/
|
|
1547
|
-
interface
|
|
1548
|
-
/**
|
|
1549
|
-
* 全局 kill-switch
|
|
1550
|
-
* @type {boolean}
|
|
1551
|
-
* @memberof OpsConfig
|
|
1552
|
-
*/
|
|
1553
|
-
killSwitch: boolean;
|
|
1554
|
-
/**
|
|
1555
|
-
* 被阻断的组件列表
|
|
1556
|
-
* @type {Array<BlockedComponent>}
|
|
1557
|
-
* @memberof OpsConfig
|
|
1558
|
-
*/
|
|
1559
|
-
blockedComponents: Array<BlockedComponent>;
|
|
1560
|
-
/**
|
|
1561
|
-
* 被阻断的页面列表
|
|
1562
|
-
* @type {Array<string>}
|
|
1563
|
-
* @memberof OpsConfig
|
|
1564
|
-
*/
|
|
1565
|
-
blockedPages: Array<string>;
|
|
1566
|
-
/**
|
|
1567
|
-
* 功能开关
|
|
1568
|
-
* @type {{ [key: string]: boolean; }}
|
|
1569
|
-
* @memberof OpsConfig
|
|
1570
|
-
*/
|
|
1571
|
-
featureFlags: {
|
|
1572
|
-
[key: string]: boolean;
|
|
1573
|
-
};
|
|
3101
|
+
interface LivenessResponse {
|
|
1574
3102
|
/**
|
|
1575
|
-
*
|
|
1576
|
-
* @type {
|
|
1577
|
-
* @memberof
|
|
3103
|
+
* 服务状态
|
|
3104
|
+
* @type {string}
|
|
3105
|
+
* @memberof LivenessResponse
|
|
1578
3106
|
*/
|
|
1579
|
-
|
|
3107
|
+
status: string;
|
|
1580
3108
|
}
|
|
1581
3109
|
/**
|
|
1582
|
-
* Check if a given object implements the
|
|
3110
|
+
* Check if a given object implements the LivenessResponse interface.
|
|
1583
3111
|
*/
|
|
1584
|
-
declare function
|
|
1585
|
-
declare function
|
|
1586
|
-
declare function
|
|
1587
|
-
declare function
|
|
3112
|
+
declare function instanceOfLivenessResponse(value: object): boolean;
|
|
3113
|
+
declare function LivenessResponseFromJSON(json: any): LivenessResponse;
|
|
3114
|
+
declare function LivenessResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): LivenessResponse;
|
|
3115
|
+
declare function LivenessResponseToJSON(value?: LivenessResponse | null): any;
|
|
1588
3116
|
|
|
1589
3117
|
/**
|
|
1590
3118
|
* 平台用户端 API
|
|
@@ -1599,37 +3127,67 @@ declare function OpsConfigToJSON(value?: OpsConfig | null): any;
|
|
|
1599
3127
|
*/
|
|
1600
3128
|
|
|
1601
3129
|
/**
|
|
1602
|
-
*
|
|
3130
|
+
*
|
|
1603
3131
|
* @export
|
|
1604
|
-
* @interface
|
|
3132
|
+
* @interface LivenessCheck200Response
|
|
1605
3133
|
*/
|
|
1606
|
-
interface
|
|
3134
|
+
interface LivenessCheck200Response {
|
|
1607
3135
|
/**
|
|
1608
|
-
*
|
|
3136
|
+
* 请求是否成功
|
|
1609
3137
|
* @type {boolean}
|
|
1610
|
-
* @memberof
|
|
3138
|
+
* @memberof LivenessCheck200Response
|
|
1611
3139
|
*/
|
|
1612
3140
|
success: boolean;
|
|
1613
3141
|
/**
|
|
1614
|
-
*
|
|
1615
|
-
* @type {
|
|
1616
|
-
* @memberof
|
|
3142
|
+
* 业务状态码
|
|
3143
|
+
* @type {string}
|
|
3144
|
+
* @memberof LivenessCheck200Response
|
|
1617
3145
|
*/
|
|
1618
|
-
|
|
3146
|
+
code: string;
|
|
3147
|
+
/**
|
|
3148
|
+
* 响应消息
|
|
3149
|
+
* @type {string}
|
|
3150
|
+
* @memberof LivenessCheck200Response
|
|
3151
|
+
*/
|
|
3152
|
+
message: string;
|
|
1619
3153
|
/**
|
|
1620
3154
|
*
|
|
1621
|
-
* @type {
|
|
1622
|
-
* @memberof
|
|
3155
|
+
* @type {LivenessResponse}
|
|
3156
|
+
* @memberof LivenessCheck200Response
|
|
1623
3157
|
*/
|
|
1624
|
-
|
|
3158
|
+
data: LivenessResponse;
|
|
3159
|
+
/**
|
|
3160
|
+
* 响应时间戳
|
|
3161
|
+
* @type {number}
|
|
3162
|
+
* @memberof LivenessCheck200Response
|
|
3163
|
+
*/
|
|
3164
|
+
timestamp: number;
|
|
3165
|
+
/**
|
|
3166
|
+
* 请求路径
|
|
3167
|
+
* @type {string}
|
|
3168
|
+
* @memberof LivenessCheck200Response
|
|
3169
|
+
*/
|
|
3170
|
+
path: string;
|
|
3171
|
+
/**
|
|
3172
|
+
* 请求ID
|
|
3173
|
+
* @type {string}
|
|
3174
|
+
* @memberof LivenessCheck200Response
|
|
3175
|
+
*/
|
|
3176
|
+
requestId?: string;
|
|
3177
|
+
/**
|
|
3178
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
3179
|
+
* @type {string}
|
|
3180
|
+
* @memberof LivenessCheck200Response
|
|
3181
|
+
*/
|
|
3182
|
+
traceId?: string;
|
|
1625
3183
|
}
|
|
1626
3184
|
/**
|
|
1627
|
-
* Check if a given object implements the
|
|
3185
|
+
* Check if a given object implements the LivenessCheck200Response interface.
|
|
1628
3186
|
*/
|
|
1629
|
-
declare function
|
|
1630
|
-
declare function
|
|
1631
|
-
declare function
|
|
1632
|
-
declare function
|
|
3187
|
+
declare function instanceOfLivenessCheck200Response(value: object): boolean;
|
|
3188
|
+
declare function LivenessCheck200ResponseFromJSON(json: any): LivenessCheck200Response;
|
|
3189
|
+
declare function LivenessCheck200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): LivenessCheck200Response;
|
|
3190
|
+
declare function LivenessCheck200ResponseToJSON(value?: LivenessCheck200Response | null): any;
|
|
1633
3191
|
|
|
1634
3192
|
/**
|
|
1635
3193
|
* 平台用户端 API
|
|
@@ -1737,6 +3295,81 @@ declare function QueryContextFromJSON(json: any): QueryContext;
|
|
|
1737
3295
|
declare function QueryContextFromJSONTyped(json: any, ignoreDiscriminator: boolean): QueryContext;
|
|
1738
3296
|
declare function QueryContextToJSON(value?: QueryContext | null): any;
|
|
1739
3297
|
|
|
3298
|
+
/**
|
|
3299
|
+
* 平台用户端 API
|
|
3300
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
3301
|
+
*
|
|
3302
|
+
* The version of the OpenAPI document: 1.0.0
|
|
3303
|
+
* Contact: dev@djvlc.com
|
|
3304
|
+
*
|
|
3305
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3306
|
+
* https://openapi-generator.tech
|
|
3307
|
+
* Do not edit the class manually.
|
|
3308
|
+
*/
|
|
3309
|
+
|
|
3310
|
+
/**
|
|
3311
|
+
*
|
|
3312
|
+
* @export
|
|
3313
|
+
* @interface QueryData200Response
|
|
3314
|
+
*/
|
|
3315
|
+
interface QueryData200Response {
|
|
3316
|
+
/**
|
|
3317
|
+
* 请求是否成功
|
|
3318
|
+
* @type {boolean}
|
|
3319
|
+
* @memberof QueryData200Response
|
|
3320
|
+
*/
|
|
3321
|
+
success: boolean;
|
|
3322
|
+
/**
|
|
3323
|
+
* 业务状态码
|
|
3324
|
+
* @type {string}
|
|
3325
|
+
* @memberof QueryData200Response
|
|
3326
|
+
*/
|
|
3327
|
+
code: string;
|
|
3328
|
+
/**
|
|
3329
|
+
* 响应消息
|
|
3330
|
+
* @type {string}
|
|
3331
|
+
* @memberof QueryData200Response
|
|
3332
|
+
*/
|
|
3333
|
+
message: string;
|
|
3334
|
+
/**
|
|
3335
|
+
*
|
|
3336
|
+
* @type {QueryDataResponse}
|
|
3337
|
+
* @memberof QueryData200Response
|
|
3338
|
+
*/
|
|
3339
|
+
data: QueryDataResponse;
|
|
3340
|
+
/**
|
|
3341
|
+
* 响应时间戳
|
|
3342
|
+
* @type {number}
|
|
3343
|
+
* @memberof QueryData200Response
|
|
3344
|
+
*/
|
|
3345
|
+
timestamp: number;
|
|
3346
|
+
/**
|
|
3347
|
+
* 请求路径
|
|
3348
|
+
* @type {string}
|
|
3349
|
+
* @memberof QueryData200Response
|
|
3350
|
+
*/
|
|
3351
|
+
path: string;
|
|
3352
|
+
/**
|
|
3353
|
+
* 请求ID
|
|
3354
|
+
* @type {string}
|
|
3355
|
+
* @memberof QueryData200Response
|
|
3356
|
+
*/
|
|
3357
|
+
requestId?: string;
|
|
3358
|
+
/**
|
|
3359
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
3360
|
+
* @type {string}
|
|
3361
|
+
* @memberof QueryData200Response
|
|
3362
|
+
*/
|
|
3363
|
+
traceId?: string;
|
|
3364
|
+
}
|
|
3365
|
+
/**
|
|
3366
|
+
* Check if a given object implements the QueryData200Response interface.
|
|
3367
|
+
*/
|
|
3368
|
+
declare function instanceOfQueryData200Response(value: object): boolean;
|
|
3369
|
+
declare function QueryData200ResponseFromJSON(json: any): QueryData200Response;
|
|
3370
|
+
declare function QueryData200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): QueryData200Response;
|
|
3371
|
+
declare function QueryData200ResponseToJSON(value?: QueryData200Response | null): any;
|
|
3372
|
+
|
|
1740
3373
|
/**
|
|
1741
3374
|
* 平台用户端 API
|
|
1742
3375
|
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
@@ -1795,68 +3428,110 @@ declare function QueryDataRequestToJSON(value?: QueryDataRequest | null): any;
|
|
|
1795
3428
|
* https://openapi-generator.tech
|
|
1796
3429
|
* Do not edit the class manually.
|
|
1797
3430
|
*/
|
|
3431
|
+
|
|
1798
3432
|
/**
|
|
1799
|
-
*
|
|
3433
|
+
* 就绪检查响应(ReadinessVo)
|
|
1800
3434
|
* @export
|
|
1801
|
-
* @interface
|
|
3435
|
+
* @interface ReadinessResponse
|
|
1802
3436
|
*/
|
|
1803
|
-
interface
|
|
3437
|
+
interface ReadinessResponse {
|
|
1804
3438
|
/**
|
|
1805
|
-
*
|
|
3439
|
+
* 服务状态
|
|
1806
3440
|
* @type {string}
|
|
1807
|
-
* @memberof
|
|
3441
|
+
* @memberof ReadinessResponse
|
|
1808
3442
|
*/
|
|
1809
|
-
|
|
3443
|
+
status: string;
|
|
1810
3444
|
/**
|
|
1811
|
-
*
|
|
3445
|
+
* 各检查项状态
|
|
3446
|
+
* @type {{ [key: string]: HealthCheckItem; }}
|
|
3447
|
+
* @memberof ReadinessResponse
|
|
3448
|
+
*/
|
|
3449
|
+
checks: {
|
|
3450
|
+
[key: string]: HealthCheckItem;
|
|
3451
|
+
};
|
|
3452
|
+
}
|
|
3453
|
+
/**
|
|
3454
|
+
* Check if a given object implements the ReadinessResponse interface.
|
|
3455
|
+
*/
|
|
3456
|
+
declare function instanceOfReadinessResponse(value: object): boolean;
|
|
3457
|
+
declare function ReadinessResponseFromJSON(json: any): ReadinessResponse;
|
|
3458
|
+
declare function ReadinessResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReadinessResponse;
|
|
3459
|
+
declare function ReadinessResponseToJSON(value?: ReadinessResponse | null): any;
|
|
3460
|
+
|
|
3461
|
+
/**
|
|
3462
|
+
* 平台用户端 API
|
|
3463
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
3464
|
+
*
|
|
3465
|
+
* The version of the OpenAPI document: 1.0.0
|
|
3466
|
+
* Contact: dev@djvlc.com
|
|
3467
|
+
*
|
|
3468
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3469
|
+
* https://openapi-generator.tech
|
|
3470
|
+
* Do not edit the class manually.
|
|
3471
|
+
*/
|
|
3472
|
+
|
|
3473
|
+
/**
|
|
3474
|
+
*
|
|
3475
|
+
* @export
|
|
3476
|
+
* @interface ReadinessCheck200Response
|
|
3477
|
+
*/
|
|
3478
|
+
interface ReadinessCheck200Response {
|
|
3479
|
+
/**
|
|
3480
|
+
* 请求是否成功
|
|
3481
|
+
* @type {boolean}
|
|
3482
|
+
* @memberof ReadinessCheck200Response
|
|
3483
|
+
*/
|
|
3484
|
+
success: boolean;
|
|
3485
|
+
/**
|
|
3486
|
+
* 业务状态码
|
|
1812
3487
|
* @type {string}
|
|
1813
|
-
* @memberof
|
|
3488
|
+
* @memberof ReadinessCheck200Response
|
|
1814
3489
|
*/
|
|
1815
|
-
|
|
3490
|
+
code: string;
|
|
1816
3491
|
/**
|
|
1817
|
-
*
|
|
3492
|
+
* 响应消息
|
|
3493
|
+
* @type {string}
|
|
3494
|
+
* @memberof ReadinessCheck200Response
|
|
3495
|
+
*/
|
|
3496
|
+
message: string;
|
|
3497
|
+
/**
|
|
3498
|
+
*
|
|
3499
|
+
* @type {ReadinessResponse}
|
|
3500
|
+
* @memberof ReadinessCheck200Response
|
|
3501
|
+
*/
|
|
3502
|
+
data: ReadinessResponse;
|
|
3503
|
+
/**
|
|
3504
|
+
* 响应时间戳
|
|
1818
3505
|
* @type {number}
|
|
1819
|
-
* @memberof
|
|
3506
|
+
* @memberof ReadinessCheck200Response
|
|
1820
3507
|
*/
|
|
1821
|
-
|
|
3508
|
+
timestamp: number;
|
|
1822
3509
|
/**
|
|
1823
|
-
*
|
|
3510
|
+
* 请求路径
|
|
1824
3511
|
* @type {string}
|
|
1825
|
-
* @memberof
|
|
3512
|
+
* @memberof ReadinessCheck200Response
|
|
1826
3513
|
*/
|
|
1827
|
-
|
|
3514
|
+
path: string;
|
|
1828
3515
|
/**
|
|
1829
|
-
*
|
|
1830
|
-
* @type {
|
|
1831
|
-
* @memberof
|
|
3516
|
+
* 请求ID
|
|
3517
|
+
* @type {string}
|
|
3518
|
+
* @memberof ReadinessCheck200Response
|
|
1832
3519
|
*/
|
|
1833
|
-
|
|
1834
|
-
[key: string]: any;
|
|
1835
|
-
};
|
|
3520
|
+
requestId?: string;
|
|
1836
3521
|
/**
|
|
1837
|
-
*
|
|
3522
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
1838
3523
|
* @type {string}
|
|
1839
|
-
* @memberof
|
|
3524
|
+
* @memberof ReadinessCheck200Response
|
|
1840
3525
|
*/
|
|
1841
|
-
|
|
1842
|
-
}
|
|
1843
|
-
/**
|
|
1844
|
-
*
|
|
1845
|
-
*/
|
|
1846
|
-
declare
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
readonly BLOCKED: "blocked";
|
|
1851
|
-
};
|
|
1852
|
-
type QueryDefinitionResponseStatusEnum = typeof QueryDefinitionResponseStatusEnum[keyof typeof QueryDefinitionResponseStatusEnum];
|
|
1853
|
-
/**
|
|
1854
|
-
* Check if a given object implements the QueryDefinitionResponse interface.
|
|
1855
|
-
*/
|
|
1856
|
-
declare function instanceOfQueryDefinitionResponse(value: object): boolean;
|
|
1857
|
-
declare function QueryDefinitionResponseFromJSON(json: any): QueryDefinitionResponse;
|
|
1858
|
-
declare function QueryDefinitionResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): QueryDefinitionResponse;
|
|
1859
|
-
declare function QueryDefinitionResponseToJSON(value?: QueryDefinitionResponse | null): any;
|
|
3526
|
+
traceId?: string;
|
|
3527
|
+
}
|
|
3528
|
+
/**
|
|
3529
|
+
* Check if a given object implements the ReadinessCheck200Response interface.
|
|
3530
|
+
*/
|
|
3531
|
+
declare function instanceOfReadinessCheck200Response(value: object): boolean;
|
|
3532
|
+
declare function ReadinessCheck200ResponseFromJSON(json: any): ReadinessCheck200Response;
|
|
3533
|
+
declare function ReadinessCheck200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReadinessCheck200Response;
|
|
3534
|
+
declare function ReadinessCheck200ResponseToJSON(value?: ReadinessCheck200Response | null): any;
|
|
1860
3535
|
|
|
1861
3536
|
/**
|
|
1862
3537
|
* 平台用户端 API
|
|
@@ -1869,35 +3544,38 @@ declare function QueryDefinitionResponseToJSON(value?: QueryDefinitionResponse |
|
|
|
1869
3544
|
* https://openapi-generator.tech
|
|
1870
3545
|
* Do not edit the class manually.
|
|
1871
3546
|
*/
|
|
1872
|
-
|
|
1873
3547
|
/**
|
|
1874
|
-
*
|
|
3548
|
+
* 灰度匹配信息(RolloutMatchVo)
|
|
1875
3549
|
* @export
|
|
1876
|
-
* @interface
|
|
3550
|
+
* @interface RolloutMatch
|
|
1877
3551
|
*/
|
|
1878
|
-
interface
|
|
3552
|
+
interface RolloutMatch {
|
|
1879
3553
|
/**
|
|
1880
|
-
*
|
|
3554
|
+
* 匹配的策略 ID
|
|
1881
3555
|
* @type {string}
|
|
1882
|
-
* @memberof
|
|
3556
|
+
* @memberof RolloutMatch
|
|
1883
3557
|
*/
|
|
1884
|
-
|
|
3558
|
+
strategyId?: string;
|
|
1885
3559
|
/**
|
|
1886
|
-
*
|
|
1887
|
-
* @type {
|
|
1888
|
-
* @memberof
|
|
3560
|
+
* 匹配的策略名称
|
|
3561
|
+
* @type {string}
|
|
3562
|
+
* @memberof RolloutMatch
|
|
1889
3563
|
*/
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
3564
|
+
strategyName?: string;
|
|
3565
|
+
/**
|
|
3566
|
+
* 是否使用默认版本
|
|
3567
|
+
* @type {boolean}
|
|
3568
|
+
* @memberof RolloutMatch
|
|
3569
|
+
*/
|
|
3570
|
+
isDefault: boolean;
|
|
1893
3571
|
}
|
|
1894
3572
|
/**
|
|
1895
|
-
* Check if a given object implements the
|
|
3573
|
+
* Check if a given object implements the RolloutMatch interface.
|
|
1896
3574
|
*/
|
|
1897
|
-
declare function
|
|
1898
|
-
declare function
|
|
1899
|
-
declare function
|
|
1900
|
-
declare function
|
|
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;
|
|
1901
3579
|
|
|
1902
3580
|
/**
|
|
1903
3581
|
* 平台用户端 API
|
|
@@ -1977,6 +3655,12 @@ interface ResolvePageResponse {
|
|
|
1977
3655
|
* @memberof ResolvePageResponse
|
|
1978
3656
|
*/
|
|
1979
3657
|
runtimeVersion?: string;
|
|
3658
|
+
/**
|
|
3659
|
+
*
|
|
3660
|
+
* @type {RolloutMatch}
|
|
3661
|
+
* @memberof ResolvePageResponse
|
|
3662
|
+
*/
|
|
3663
|
+
rolloutMatch?: RolloutMatch;
|
|
1980
3664
|
}
|
|
1981
3665
|
/**
|
|
1982
3666
|
* Check if a given object implements the ResolvePageResponse interface.
|
|
@@ -1986,6 +3670,81 @@ declare function ResolvePageResponseFromJSON(json: any): ResolvePageResponse;
|
|
|
1986
3670
|
declare function ResolvePageResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolvePageResponse;
|
|
1987
3671
|
declare function ResolvePageResponseToJSON(value?: ResolvePageResponse | null): any;
|
|
1988
3672
|
|
|
3673
|
+
/**
|
|
3674
|
+
* 平台用户端 API
|
|
3675
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
3676
|
+
*
|
|
3677
|
+
* The version of the OpenAPI document: 1.0.0
|
|
3678
|
+
* Contact: dev@djvlc.com
|
|
3679
|
+
*
|
|
3680
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3681
|
+
* https://openapi-generator.tech
|
|
3682
|
+
* Do not edit the class manually.
|
|
3683
|
+
*/
|
|
3684
|
+
|
|
3685
|
+
/**
|
|
3686
|
+
*
|
|
3687
|
+
* @export
|
|
3688
|
+
* @interface ResolvePage200Response
|
|
3689
|
+
*/
|
|
3690
|
+
interface ResolvePage200Response {
|
|
3691
|
+
/**
|
|
3692
|
+
* 请求是否成功
|
|
3693
|
+
* @type {boolean}
|
|
3694
|
+
* @memberof ResolvePage200Response
|
|
3695
|
+
*/
|
|
3696
|
+
success: boolean;
|
|
3697
|
+
/**
|
|
3698
|
+
* 业务状态码
|
|
3699
|
+
* @type {string}
|
|
3700
|
+
* @memberof ResolvePage200Response
|
|
3701
|
+
*/
|
|
3702
|
+
code: string;
|
|
3703
|
+
/**
|
|
3704
|
+
* 响应消息
|
|
3705
|
+
* @type {string}
|
|
3706
|
+
* @memberof ResolvePage200Response
|
|
3707
|
+
*/
|
|
3708
|
+
message: string;
|
|
3709
|
+
/**
|
|
3710
|
+
*
|
|
3711
|
+
* @type {ResolvePageResponse}
|
|
3712
|
+
* @memberof ResolvePage200Response
|
|
3713
|
+
*/
|
|
3714
|
+
data: ResolvePageResponse;
|
|
3715
|
+
/**
|
|
3716
|
+
* 响应时间戳
|
|
3717
|
+
* @type {number}
|
|
3718
|
+
* @memberof ResolvePage200Response
|
|
3719
|
+
*/
|
|
3720
|
+
timestamp: number;
|
|
3721
|
+
/**
|
|
3722
|
+
* 请求路径
|
|
3723
|
+
* @type {string}
|
|
3724
|
+
* @memberof ResolvePage200Response
|
|
3725
|
+
*/
|
|
3726
|
+
path: string;
|
|
3727
|
+
/**
|
|
3728
|
+
* 请求ID
|
|
3729
|
+
* @type {string}
|
|
3730
|
+
* @memberof ResolvePage200Response
|
|
3731
|
+
*/
|
|
3732
|
+
requestId?: string;
|
|
3733
|
+
/**
|
|
3734
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
3735
|
+
* @type {string}
|
|
3736
|
+
* @memberof ResolvePage200Response
|
|
3737
|
+
*/
|
|
3738
|
+
traceId?: string;
|
|
3739
|
+
}
|
|
3740
|
+
/**
|
|
3741
|
+
* Check if a given object implements the ResolvePage200Response interface.
|
|
3742
|
+
*/
|
|
3743
|
+
declare function instanceOfResolvePage200Response(value: object): boolean;
|
|
3744
|
+
declare function ResolvePage200ResponseFromJSON(json: any): ResolvePage200Response;
|
|
3745
|
+
declare function ResolvePage200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolvePage200Response;
|
|
3746
|
+
declare function ResolvePage200ResponseToJSON(value?: ResolvePage200Response | null): any;
|
|
3747
|
+
|
|
1989
3748
|
/**
|
|
1990
3749
|
* 平台用户端 API
|
|
1991
3750
|
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
@@ -2062,50 +3821,6 @@ declare function ResolveTenantDataFromJSON(json: any): ResolveTenantData;
|
|
|
2062
3821
|
declare function ResolveTenantDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolveTenantData;
|
|
2063
3822
|
declare function ResolveTenantDataToJSON(value?: ResolveTenantData | null): any;
|
|
2064
3823
|
|
|
2065
|
-
/**
|
|
2066
|
-
* 平台用户端 API
|
|
2067
|
-
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2068
|
-
*
|
|
2069
|
-
* The version of the OpenAPI document: 1.0.0
|
|
2070
|
-
* Contact: dev@djvlc.com
|
|
2071
|
-
*
|
|
2072
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2073
|
-
* https://openapi-generator.tech
|
|
2074
|
-
* Do not edit the class manually.
|
|
2075
|
-
*/
|
|
2076
|
-
/**
|
|
2077
|
-
* 租户解析请求(TenantResolveDto)
|
|
2078
|
-
* @export
|
|
2079
|
-
* @interface ResolveTenantRequest
|
|
2080
|
-
*/
|
|
2081
|
-
interface ResolveTenantRequest {
|
|
2082
|
-
/**
|
|
2083
|
-
* 应用 Key
|
|
2084
|
-
* @type {string}
|
|
2085
|
-
* @memberof ResolveTenantRequest
|
|
2086
|
-
*/
|
|
2087
|
-
appKey?: string;
|
|
2088
|
-
/**
|
|
2089
|
-
* 主机/域名
|
|
2090
|
-
* @type {string}
|
|
2091
|
-
* @memberof ResolveTenantRequest
|
|
2092
|
-
*/
|
|
2093
|
-
host?: string;
|
|
2094
|
-
/**
|
|
2095
|
-
* 渠道
|
|
2096
|
-
* @type {string}
|
|
2097
|
-
* @memberof ResolveTenantRequest
|
|
2098
|
-
*/
|
|
2099
|
-
channel?: string;
|
|
2100
|
-
}
|
|
2101
|
-
/**
|
|
2102
|
-
* Check if a given object implements the ResolveTenantRequest interface.
|
|
2103
|
-
*/
|
|
2104
|
-
declare function instanceOfResolveTenantRequest(value: object): boolean;
|
|
2105
|
-
declare function ResolveTenantRequestFromJSON(json: any): ResolveTenantRequest;
|
|
2106
|
-
declare function ResolveTenantRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolveTenantRequest;
|
|
2107
|
-
declare function ResolveTenantRequestToJSON(value?: ResolveTenantRequest | null): any;
|
|
2108
|
-
|
|
2109
3824
|
/**
|
|
2110
3825
|
* 平台用户端 API
|
|
2111
3826
|
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
@@ -2156,89 +3871,69 @@ declare function ResolveTenantResponseToJSON(value?: ResolveTenantResponse | nul
|
|
|
2156
3871
|
* https://openapi-generator.tech
|
|
2157
3872
|
* Do not edit the class manually.
|
|
2158
3873
|
*/
|
|
3874
|
+
|
|
2159
3875
|
/**
|
|
2160
|
-
*
|
|
3876
|
+
*
|
|
2161
3877
|
* @export
|
|
2162
|
-
* @interface
|
|
3878
|
+
* @interface ResolveTenant200Response
|
|
2163
3879
|
*/
|
|
2164
|
-
interface
|
|
3880
|
+
interface ResolveTenant200Response {
|
|
2165
3881
|
/**
|
|
2166
|
-
*
|
|
3882
|
+
* 请求是否成功
|
|
3883
|
+
* @type {boolean}
|
|
3884
|
+
* @memberof ResolveTenant200Response
|
|
3885
|
+
*/
|
|
3886
|
+
success: boolean;
|
|
3887
|
+
/**
|
|
3888
|
+
* 业务状态码
|
|
2167
3889
|
* @type {string}
|
|
2168
|
-
* @memberof
|
|
3890
|
+
* @memberof ResolveTenant200Response
|
|
2169
3891
|
*/
|
|
2170
|
-
|
|
3892
|
+
code: string;
|
|
2171
3893
|
/**
|
|
2172
|
-
*
|
|
3894
|
+
* 响应消息
|
|
2173
3895
|
* @type {string}
|
|
2174
|
-
* @memberof
|
|
3896
|
+
* @memberof ResolveTenant200Response
|
|
2175
3897
|
*/
|
|
2176
|
-
|
|
3898
|
+
message: string;
|
|
2177
3899
|
/**
|
|
2178
|
-
*
|
|
2179
|
-
* @type {
|
|
2180
|
-
* @memberof
|
|
3900
|
+
*
|
|
3901
|
+
* @type {ResolveTenantResponse}
|
|
3902
|
+
* @memberof ResolveTenant200Response
|
|
2181
3903
|
*/
|
|
2182
|
-
|
|
3904
|
+
data: ResolveTenantResponse;
|
|
2183
3905
|
/**
|
|
2184
|
-
*
|
|
3906
|
+
* 响应时间戳
|
|
2185
3907
|
* @type {number}
|
|
2186
|
-
* @memberof
|
|
3908
|
+
* @memberof ResolveTenant200Response
|
|
2187
3909
|
*/
|
|
2188
|
-
|
|
3910
|
+
timestamp: number;
|
|
2189
3911
|
/**
|
|
2190
|
-
*
|
|
2191
|
-
* @type {
|
|
2192
|
-
* @memberof
|
|
3912
|
+
* 请求路径
|
|
3913
|
+
* @type {string}
|
|
3914
|
+
* @memberof ResolveTenant200Response
|
|
2193
3915
|
*/
|
|
2194
|
-
|
|
2195
|
-
}
|
|
2196
|
-
/**
|
|
2197
|
-
* Check if a given object implements the SigninCalendarData interface.
|
|
2198
|
-
*/
|
|
2199
|
-
declare function instanceOfSigninCalendarData(value: object): boolean;
|
|
2200
|
-
declare function SigninCalendarDataFromJSON(json: any): SigninCalendarData;
|
|
2201
|
-
declare function SigninCalendarDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): SigninCalendarData;
|
|
2202
|
-
declare function SigninCalendarDataToJSON(value?: SigninCalendarData | null): any;
|
|
2203
|
-
|
|
2204
|
-
/**
|
|
2205
|
-
* 平台用户端 API
|
|
2206
|
-
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2207
|
-
*
|
|
2208
|
-
* The version of the OpenAPI document: 1.0.0
|
|
2209
|
-
* Contact: dev@djvlc.com
|
|
2210
|
-
*
|
|
2211
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2212
|
-
* https://openapi-generator.tech
|
|
2213
|
-
* Do not edit the class manually.
|
|
2214
|
-
*/
|
|
2215
|
-
|
|
2216
|
-
/**
|
|
2217
|
-
* 签到日历响应(SigninCalendarVo)
|
|
2218
|
-
* @export
|
|
2219
|
-
* @interface SigninCalendarResponse
|
|
2220
|
-
*/
|
|
2221
|
-
interface SigninCalendarResponse {
|
|
3916
|
+
path: string;
|
|
2222
3917
|
/**
|
|
2223
|
-
*
|
|
2224
|
-
* @type {
|
|
2225
|
-
* @memberof
|
|
3918
|
+
* 请求ID
|
|
3919
|
+
* @type {string}
|
|
3920
|
+
* @memberof ResolveTenant200Response
|
|
2226
3921
|
*/
|
|
2227
|
-
|
|
3922
|
+
requestId?: string;
|
|
2228
3923
|
/**
|
|
2229
|
-
*
|
|
2230
|
-
* @type {
|
|
2231
|
-
* @memberof
|
|
3924
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
3925
|
+
* @type {string}
|
|
3926
|
+
* @memberof ResolveTenant200Response
|
|
2232
3927
|
*/
|
|
2233
|
-
|
|
3928
|
+
traceId?: string;
|
|
2234
3929
|
}
|
|
2235
3930
|
/**
|
|
2236
|
-
* Check if a given object implements the
|
|
3931
|
+
* Check if a given object implements the ResolveTenant200Response interface.
|
|
2237
3932
|
*/
|
|
2238
|
-
declare function
|
|
2239
|
-
declare function
|
|
2240
|
-
declare function
|
|
2241
|
-
declare function
|
|
3933
|
+
declare function instanceOfResolveTenant200Response(value: object): boolean;
|
|
3934
|
+
declare function ResolveTenant200ResponseFromJSON(json: any): ResolveTenant200Response;
|
|
3935
|
+
declare function ResolveTenant200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolveTenant200Response;
|
|
3936
|
+
declare function ResolveTenant200ResponseToJSON(value?: ResolveTenant200Response | null): any;
|
|
2242
3937
|
|
|
2243
3938
|
/**
|
|
2244
3939
|
* 平台用户端 API
|
|
@@ -2251,63 +3946,38 @@ declare function SigninCalendarResponseToJSON(value?: SigninCalendarResponse | n
|
|
|
2251
3946
|
* https://openapi-generator.tech
|
|
2252
3947
|
* Do not edit the class manually.
|
|
2253
3948
|
*/
|
|
2254
|
-
|
|
2255
3949
|
/**
|
|
2256
|
-
*
|
|
3950
|
+
* 租户解析请求(TenantResolveDto)
|
|
2257
3951
|
* @export
|
|
2258
|
-
* @interface
|
|
3952
|
+
* @interface ResolveTenantRequest
|
|
2259
3953
|
*/
|
|
2260
|
-
interface
|
|
3954
|
+
interface ResolveTenantRequest {
|
|
2261
3955
|
/**
|
|
2262
|
-
*
|
|
3956
|
+
* 应用 Key
|
|
2263
3957
|
* @type {string}
|
|
2264
|
-
* @memberof
|
|
2265
|
-
*/
|
|
2266
|
-
activityUid: string;
|
|
2267
|
-
/**
|
|
2268
|
-
* 今日是否已签到
|
|
2269
|
-
* @type {boolean}
|
|
2270
|
-
* @memberof SigninStatusResponse
|
|
2271
|
-
*/
|
|
2272
|
-
hasSignedToday: boolean;
|
|
2273
|
-
/**
|
|
2274
|
-
* 连续签到天数
|
|
2275
|
-
* @type {number}
|
|
2276
|
-
* @memberof SigninStatusResponse
|
|
2277
|
-
*/
|
|
2278
|
-
consecutiveDays: number;
|
|
2279
|
-
/**
|
|
2280
|
-
* 累计签到天数
|
|
2281
|
-
* @type {number}
|
|
2282
|
-
* @memberof SigninStatusResponse
|
|
2283
|
-
*/
|
|
2284
|
-
totalDays: number;
|
|
2285
|
-
/**
|
|
2286
|
-
* 签到日期列表
|
|
2287
|
-
* @type {Array<string>}
|
|
2288
|
-
* @memberof SigninStatusResponse
|
|
3958
|
+
* @memberof ResolveTenantRequest
|
|
2289
3959
|
*/
|
|
2290
|
-
|
|
3960
|
+
appKey?: string;
|
|
2291
3961
|
/**
|
|
2292
|
-
*
|
|
2293
|
-
* @type {
|
|
2294
|
-
* @memberof
|
|
3962
|
+
* 主机/域名
|
|
3963
|
+
* @type {string}
|
|
3964
|
+
* @memberof ResolveTenantRequest
|
|
2295
3965
|
*/
|
|
2296
|
-
|
|
3966
|
+
host?: string;
|
|
2297
3967
|
/**
|
|
2298
|
-
*
|
|
2299
|
-
* @type {
|
|
2300
|
-
* @memberof
|
|
3968
|
+
* 渠道
|
|
3969
|
+
* @type {string}
|
|
3970
|
+
* @memberof ResolveTenantRequest
|
|
2301
3971
|
*/
|
|
2302
|
-
|
|
3972
|
+
channel?: string;
|
|
2303
3973
|
}
|
|
2304
3974
|
/**
|
|
2305
|
-
* Check if a given object implements the
|
|
3975
|
+
* Check if a given object implements the ResolveTenantRequest interface.
|
|
2306
3976
|
*/
|
|
2307
|
-
declare function
|
|
2308
|
-
declare function
|
|
2309
|
-
declare function
|
|
2310
|
-
declare function
|
|
3977
|
+
declare function instanceOfResolveTenantRequest(value: object): boolean;
|
|
3978
|
+
declare function ResolveTenantRequestFromJSON(json: any): ResolveTenantRequest;
|
|
3979
|
+
declare function ResolveTenantRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolveTenantRequest;
|
|
3980
|
+
declare function ResolveTenantRequestToJSON(value?: ResolveTenantRequest | null): any;
|
|
2311
3981
|
|
|
2312
3982
|
/**
|
|
2313
3983
|
* 平台用户端 API
|
|
@@ -2383,117 +4053,6 @@ declare function SuccessResponseFromJSON(json: any): SuccessResponse;
|
|
|
2383
4053
|
declare function SuccessResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SuccessResponse;
|
|
2384
4054
|
declare function SuccessResponseToJSON(value?: SuccessResponse | null): any;
|
|
2385
4055
|
|
|
2386
|
-
/**
|
|
2387
|
-
* 平台用户端 API
|
|
2388
|
-
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2389
|
-
*
|
|
2390
|
-
* The version of the OpenAPI document: 1.0.0
|
|
2391
|
-
* Contact: dev@djvlc.com
|
|
2392
|
-
*
|
|
2393
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2394
|
-
* https://openapi-generator.tech
|
|
2395
|
-
* Do not edit the class manually.
|
|
2396
|
-
*/
|
|
2397
|
-
/**
|
|
2398
|
-
* 租户配置数据(TenantConfigDataVo)
|
|
2399
|
-
* @export
|
|
2400
|
-
* @interface TenantConfigData
|
|
2401
|
-
*/
|
|
2402
|
-
interface TenantConfigData {
|
|
2403
|
-
/**
|
|
2404
|
-
* 应用 ID
|
|
2405
|
-
* @type {string}
|
|
2406
|
-
* @memberof TenantConfigData
|
|
2407
|
-
*/
|
|
2408
|
-
appId: string;
|
|
2409
|
-
/**
|
|
2410
|
-
* 租户状态
|
|
2411
|
-
* @type {string}
|
|
2412
|
-
* @memberof TenantConfigData
|
|
2413
|
-
*/
|
|
2414
|
-
status: string;
|
|
2415
|
-
/**
|
|
2416
|
-
* 功能开关
|
|
2417
|
-
* @type {{ [key: string]: boolean; }}
|
|
2418
|
-
* @memberof TenantConfigData
|
|
2419
|
-
*/
|
|
2420
|
-
featureFlags?: {
|
|
2421
|
-
[key: string]: boolean;
|
|
2422
|
-
};
|
|
2423
|
-
/**
|
|
2424
|
-
* 主题配置
|
|
2425
|
-
* @type {{ [key: string]: any; }}
|
|
2426
|
-
* @memberof TenantConfigData
|
|
2427
|
-
*/
|
|
2428
|
-
theme?: {
|
|
2429
|
-
[key: string]: any;
|
|
2430
|
-
};
|
|
2431
|
-
/**
|
|
2432
|
-
* CDN 基地址
|
|
2433
|
-
* @type {string}
|
|
2434
|
-
* @memberof TenantConfigData
|
|
2435
|
-
*/
|
|
2436
|
-
cdnBase?: string;
|
|
2437
|
-
/**
|
|
2438
|
-
* 阻断组件列表
|
|
2439
|
-
* @type {Array<string>}
|
|
2440
|
-
* @memberof TenantConfigData
|
|
2441
|
-
*/
|
|
2442
|
-
blockedComponents?: Array<string>;
|
|
2443
|
-
/**
|
|
2444
|
-
* 全局 killSwitch
|
|
2445
|
-
* @type {boolean}
|
|
2446
|
-
* @memberof TenantConfigData
|
|
2447
|
-
*/
|
|
2448
|
-
killSwitch?: boolean;
|
|
2449
|
-
}
|
|
2450
|
-
/**
|
|
2451
|
-
* Check if a given object implements the TenantConfigData interface.
|
|
2452
|
-
*/
|
|
2453
|
-
declare function instanceOfTenantConfigData(value: object): boolean;
|
|
2454
|
-
declare function TenantConfigDataFromJSON(json: any): TenantConfigData;
|
|
2455
|
-
declare function TenantConfigDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantConfigData;
|
|
2456
|
-
declare function TenantConfigDataToJSON(value?: TenantConfigData | null): any;
|
|
2457
|
-
|
|
2458
|
-
/**
|
|
2459
|
-
* 平台用户端 API
|
|
2460
|
-
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2461
|
-
*
|
|
2462
|
-
* The version of the OpenAPI document: 1.0.0
|
|
2463
|
-
* Contact: dev@djvlc.com
|
|
2464
|
-
*
|
|
2465
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2466
|
-
* https://openapi-generator.tech
|
|
2467
|
-
* Do not edit the class manually.
|
|
2468
|
-
*/
|
|
2469
|
-
|
|
2470
|
-
/**
|
|
2471
|
-
* 租户配置响应(TenantConfigVo)
|
|
2472
|
-
* @export
|
|
2473
|
-
* @interface TenantConfigResponse
|
|
2474
|
-
*/
|
|
2475
|
-
interface TenantConfigResponse {
|
|
2476
|
-
/**
|
|
2477
|
-
* 是否成功
|
|
2478
|
-
* @type {boolean}
|
|
2479
|
-
* @memberof TenantConfigResponse
|
|
2480
|
-
*/
|
|
2481
|
-
success: boolean;
|
|
2482
|
-
/**
|
|
2483
|
-
*
|
|
2484
|
-
* @type {TenantConfigData}
|
|
2485
|
-
* @memberof TenantConfigResponse
|
|
2486
|
-
*/
|
|
2487
|
-
data: TenantConfigData;
|
|
2488
|
-
}
|
|
2489
|
-
/**
|
|
2490
|
-
* Check if a given object implements the TenantConfigResponse interface.
|
|
2491
|
-
*/
|
|
2492
|
-
declare function instanceOfTenantConfigResponse(value: object): boolean;
|
|
2493
|
-
declare function TenantConfigResponseFromJSON(json: any): TenantConfigResponse;
|
|
2494
|
-
declare function TenantConfigResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantConfigResponse;
|
|
2495
|
-
declare function TenantConfigResponseToJSON(value?: TenantConfigResponse | null): any;
|
|
2496
|
-
|
|
2497
4056
|
/**
|
|
2498
4057
|
* 平台用户端 API
|
|
2499
4058
|
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
@@ -2889,33 +4448,31 @@ declare function TrackSingleResponseToJSON(value?: TrackSingleResponse | null):
|
|
|
2889
4448
|
* Do not edit the class manually.
|
|
2890
4449
|
*/
|
|
2891
4450
|
/**
|
|
2892
|
-
*
|
|
4451
|
+
* 动作参数验证响应(ActionValidateVo)
|
|
2893
4452
|
* @export
|
|
2894
|
-
* @interface
|
|
4453
|
+
* @interface ValidateActionResponse
|
|
2895
4454
|
*/
|
|
2896
|
-
interface
|
|
4455
|
+
interface ValidateActionResponse {
|
|
2897
4456
|
/**
|
|
2898
|
-
*
|
|
2899
|
-
* @type {
|
|
2900
|
-
* @memberof
|
|
4457
|
+
* 是否通过校验
|
|
4458
|
+
* @type {boolean}
|
|
4459
|
+
* @memberof ValidateActionResponse
|
|
2901
4460
|
*/
|
|
2902
|
-
|
|
4461
|
+
valid: boolean;
|
|
2903
4462
|
/**
|
|
2904
|
-
*
|
|
2905
|
-
* @type {
|
|
2906
|
-
* @memberof
|
|
4463
|
+
* 校验错误列表
|
|
4464
|
+
* @type {Array<string>}
|
|
4465
|
+
* @memberof ValidateActionResponse
|
|
2907
4466
|
*/
|
|
2908
|
-
|
|
2909
|
-
[key: string]: any;
|
|
2910
|
-
};
|
|
4467
|
+
errors?: Array<string>;
|
|
2911
4468
|
}
|
|
2912
4469
|
/**
|
|
2913
|
-
* Check if a given object implements the
|
|
4470
|
+
* Check if a given object implements the ValidateActionResponse interface.
|
|
2914
4471
|
*/
|
|
2915
|
-
declare function
|
|
2916
|
-
declare function
|
|
2917
|
-
declare function
|
|
2918
|
-
declare function
|
|
4472
|
+
declare function instanceOfValidateActionResponse(value: object): boolean;
|
|
4473
|
+
declare function ValidateActionResponseFromJSON(json: any): ValidateActionResponse;
|
|
4474
|
+
declare function ValidateActionResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidateActionResponse;
|
|
4475
|
+
declare function ValidateActionResponseToJSON(value?: ValidateActionResponse | null): any;
|
|
2919
4476
|
|
|
2920
4477
|
/**
|
|
2921
4478
|
* 平台用户端 API
|
|
@@ -2928,32 +4485,109 @@ declare function ValidateActionRequestToJSON(value?: ValidateActionRequest | nul
|
|
|
2928
4485
|
* https://openapi-generator.tech
|
|
2929
4486
|
* Do not edit the class manually.
|
|
2930
4487
|
*/
|
|
4488
|
+
|
|
2931
4489
|
/**
|
|
2932
|
-
*
|
|
4490
|
+
*
|
|
2933
4491
|
* @export
|
|
2934
|
-
* @interface
|
|
4492
|
+
* @interface ValidateActionParams200Response
|
|
2935
4493
|
*/
|
|
2936
|
-
interface
|
|
4494
|
+
interface ValidateActionParams200Response {
|
|
2937
4495
|
/**
|
|
2938
|
-
*
|
|
4496
|
+
* 请求是否成功
|
|
2939
4497
|
* @type {boolean}
|
|
2940
|
-
* @memberof
|
|
4498
|
+
* @memberof ValidateActionParams200Response
|
|
2941
4499
|
*/
|
|
2942
|
-
|
|
4500
|
+
success: boolean;
|
|
2943
4501
|
/**
|
|
2944
|
-
*
|
|
2945
|
-
* @type {
|
|
2946
|
-
* @memberof
|
|
4502
|
+
* 业务状态码
|
|
4503
|
+
* @type {string}
|
|
4504
|
+
* @memberof ValidateActionParams200Response
|
|
2947
4505
|
*/
|
|
2948
|
-
|
|
4506
|
+
code: string;
|
|
4507
|
+
/**
|
|
4508
|
+
* 响应消息
|
|
4509
|
+
* @type {string}
|
|
4510
|
+
* @memberof ValidateActionParams200Response
|
|
4511
|
+
*/
|
|
4512
|
+
message: string;
|
|
4513
|
+
/**
|
|
4514
|
+
*
|
|
4515
|
+
* @type {ValidateActionResponse}
|
|
4516
|
+
* @memberof ValidateActionParams200Response
|
|
4517
|
+
*/
|
|
4518
|
+
data: ValidateActionResponse;
|
|
4519
|
+
/**
|
|
4520
|
+
* 响应时间戳
|
|
4521
|
+
* @type {number}
|
|
4522
|
+
* @memberof ValidateActionParams200Response
|
|
4523
|
+
*/
|
|
4524
|
+
timestamp: number;
|
|
4525
|
+
/**
|
|
4526
|
+
* 请求路径
|
|
4527
|
+
* @type {string}
|
|
4528
|
+
* @memberof ValidateActionParams200Response
|
|
4529
|
+
*/
|
|
4530
|
+
path: string;
|
|
4531
|
+
/**
|
|
4532
|
+
* 请求ID
|
|
4533
|
+
* @type {string}
|
|
4534
|
+
* @memberof ValidateActionParams200Response
|
|
4535
|
+
*/
|
|
4536
|
+
requestId?: string;
|
|
4537
|
+
/**
|
|
4538
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
4539
|
+
* @type {string}
|
|
4540
|
+
* @memberof ValidateActionParams200Response
|
|
4541
|
+
*/
|
|
4542
|
+
traceId?: string;
|
|
2949
4543
|
}
|
|
2950
4544
|
/**
|
|
2951
|
-
* Check if a given object implements the
|
|
4545
|
+
* Check if a given object implements the ValidateActionParams200Response interface.
|
|
2952
4546
|
*/
|
|
2953
|
-
declare function
|
|
2954
|
-
declare function
|
|
2955
|
-
declare function
|
|
2956
|
-
declare function
|
|
4547
|
+
declare function instanceOfValidateActionParams200Response(value: object): boolean;
|
|
4548
|
+
declare function ValidateActionParams200ResponseFromJSON(json: any): ValidateActionParams200Response;
|
|
4549
|
+
declare function ValidateActionParams200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidateActionParams200Response;
|
|
4550
|
+
declare function ValidateActionParams200ResponseToJSON(value?: ValidateActionParams200Response | null): any;
|
|
4551
|
+
|
|
4552
|
+
/**
|
|
4553
|
+
* 平台用户端 API
|
|
4554
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
4555
|
+
*
|
|
4556
|
+
* The version of the OpenAPI document: 1.0.0
|
|
4557
|
+
* Contact: dev@djvlc.com
|
|
4558
|
+
*
|
|
4559
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4560
|
+
* https://openapi-generator.tech
|
|
4561
|
+
* Do not edit the class manually.
|
|
4562
|
+
*/
|
|
4563
|
+
/**
|
|
4564
|
+
* 动作参数验证请求(ActionValidateDto)
|
|
4565
|
+
* @export
|
|
4566
|
+
* @interface ValidateActionRequest
|
|
4567
|
+
*/
|
|
4568
|
+
interface ValidateActionRequest {
|
|
4569
|
+
/**
|
|
4570
|
+
* 动作定义版本 ID
|
|
4571
|
+
* @type {string}
|
|
4572
|
+
* @memberof ValidateActionRequest
|
|
4573
|
+
*/
|
|
4574
|
+
actionDefinitionVersionId: string;
|
|
4575
|
+
/**
|
|
4576
|
+
* 待验证参数
|
|
4577
|
+
* @type {{ [key: string]: any; }}
|
|
4578
|
+
* @memberof ValidateActionRequest
|
|
4579
|
+
*/
|
|
4580
|
+
params: {
|
|
4581
|
+
[key: string]: any;
|
|
4582
|
+
};
|
|
4583
|
+
}
|
|
4584
|
+
/**
|
|
4585
|
+
* Check if a given object implements the ValidateActionRequest interface.
|
|
4586
|
+
*/
|
|
4587
|
+
declare function instanceOfValidateActionRequest(value: object): boolean;
|
|
4588
|
+
declare function ValidateActionRequestFromJSON(json: any): ValidateActionRequest;
|
|
4589
|
+
declare function ValidateActionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidateActionRequest;
|
|
4590
|
+
declare function ValidateActionRequestToJSON(value?: ValidateActionRequest | null): any;
|
|
2957
4591
|
|
|
2958
4592
|
/**
|
|
2959
4593
|
* 平台用户端 API
|
|
@@ -2991,12 +4625,12 @@ interface ActionsApiInterface {
|
|
|
2991
4625
|
* @throws {RequiredError}
|
|
2992
4626
|
* @memberof ActionsApiInterface
|
|
2993
4627
|
*/
|
|
2994
|
-
executeActionRaw(requestParameters: ExecuteActionOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4628
|
+
executeActionRaw(requestParameters: ExecuteActionOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ExecuteAction200Response>>;
|
|
2995
4629
|
/**
|
|
2996
4630
|
* 统一的动作执行入口,支持领取、签到等业务动作。 执行流程(Pipeline): 1. Auth(登录态/票据/签名) 2. Risk(限流、黑名单、设备指纹、验证码开关) 3. Idempotency(幂等键检查) 4. Execute(执行器:Claim/Signin/Lottery...) 5. Audit(审计落库 + outbox) 6. Normalize(统一错误码/返回)
|
|
2997
4631
|
* 执行动作
|
|
2998
4632
|
*/
|
|
2999
|
-
executeAction(requestParameters: ExecuteActionOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4633
|
+
executeAction(requestParameters: ExecuteActionOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ExecuteAction200Response>;
|
|
3000
4634
|
/**
|
|
3001
4635
|
* 按版本 ID 获取动作定义详情
|
|
3002
4636
|
* @summary 获取动作定义
|
|
@@ -3005,12 +4639,12 @@ interface ActionsApiInterface {
|
|
|
3005
4639
|
* @throws {RequiredError}
|
|
3006
4640
|
* @memberof ActionsApiInterface
|
|
3007
4641
|
*/
|
|
3008
|
-
getActionDefinitionRaw(requestParameters: GetActionDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4642
|
+
getActionDefinitionRaw(requestParameters: GetActionDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetActionDefinition200Response>>;
|
|
3009
4643
|
/**
|
|
3010
4644
|
* 按版本 ID 获取动作定义详情
|
|
3011
4645
|
* 获取动作定义
|
|
3012
4646
|
*/
|
|
3013
|
-
getActionDefinition(requestParameters: GetActionDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4647
|
+
getActionDefinition(requestParameters: GetActionDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetActionDefinition200Response>;
|
|
3014
4648
|
/**
|
|
3015
4649
|
* 验证参数是否符合 Schema 定义,不执行动作
|
|
3016
4650
|
* @summary 验证动作参数
|
|
@@ -3019,12 +4653,12 @@ interface ActionsApiInterface {
|
|
|
3019
4653
|
* @throws {RequiredError}
|
|
3020
4654
|
* @memberof ActionsApiInterface
|
|
3021
4655
|
*/
|
|
3022
|
-
validateActionParamsRaw(requestParameters: ValidateActionParamsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4656
|
+
validateActionParamsRaw(requestParameters: ValidateActionParamsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ValidateActionParams200Response>>;
|
|
3023
4657
|
/**
|
|
3024
4658
|
* 验证参数是否符合 Schema 定义,不执行动作
|
|
3025
4659
|
* 验证动作参数
|
|
3026
4660
|
*/
|
|
3027
|
-
validateActionParams(requestParameters: ValidateActionParamsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4661
|
+
validateActionParams(requestParameters: ValidateActionParamsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ValidateActionParams200Response>;
|
|
3028
4662
|
}
|
|
3029
4663
|
/**
|
|
3030
4664
|
*
|
|
@@ -3034,32 +4668,32 @@ declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
3034
4668
|
* 统一的动作执行入口,支持领取、签到等业务动作。 执行流程(Pipeline): 1. Auth(登录态/票据/签名) 2. Risk(限流、黑名单、设备指纹、验证码开关) 3. Idempotency(幂等键检查) 4. Execute(执行器:Claim/Signin/Lottery...) 5. Audit(审计落库 + outbox) 6. Normalize(统一错误码/返回)
|
|
3035
4669
|
* 执行动作
|
|
3036
4670
|
*/
|
|
3037
|
-
executeActionRaw(requestParameters: ExecuteActionOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4671
|
+
executeActionRaw(requestParameters: ExecuteActionOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ExecuteAction200Response>>;
|
|
3038
4672
|
/**
|
|
3039
4673
|
* 统一的动作执行入口,支持领取、签到等业务动作。 执行流程(Pipeline): 1. Auth(登录态/票据/签名) 2. Risk(限流、黑名单、设备指纹、验证码开关) 3. Idempotency(幂等键检查) 4. Execute(执行器:Claim/Signin/Lottery...) 5. Audit(审计落库 + outbox) 6. Normalize(统一错误码/返回)
|
|
3040
4674
|
* 执行动作
|
|
3041
4675
|
*/
|
|
3042
|
-
executeAction(requestParameters: ExecuteActionOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4676
|
+
executeAction(requestParameters: ExecuteActionOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ExecuteAction200Response>;
|
|
3043
4677
|
/**
|
|
3044
4678
|
* 按版本 ID 获取动作定义详情
|
|
3045
4679
|
* 获取动作定义
|
|
3046
4680
|
*/
|
|
3047
|
-
getActionDefinitionRaw(requestParameters: GetActionDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4681
|
+
getActionDefinitionRaw(requestParameters: GetActionDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetActionDefinition200Response>>;
|
|
3048
4682
|
/**
|
|
3049
4683
|
* 按版本 ID 获取动作定义详情
|
|
3050
4684
|
* 获取动作定义
|
|
3051
4685
|
*/
|
|
3052
|
-
getActionDefinition(requestParameters: GetActionDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4686
|
+
getActionDefinition(requestParameters: GetActionDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetActionDefinition200Response>;
|
|
3053
4687
|
/**
|
|
3054
4688
|
* 验证参数是否符合 Schema 定义,不执行动作
|
|
3055
4689
|
* 验证动作参数
|
|
3056
4690
|
*/
|
|
3057
|
-
validateActionParamsRaw(requestParameters: ValidateActionParamsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4691
|
+
validateActionParamsRaw(requestParameters: ValidateActionParamsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ValidateActionParams200Response>>;
|
|
3058
4692
|
/**
|
|
3059
4693
|
* 验证参数是否符合 Schema 定义,不执行动作
|
|
3060
4694
|
* 验证动作参数
|
|
3061
4695
|
*/
|
|
3062
|
-
validateActionParams(requestParameters: ValidateActionParamsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4696
|
+
validateActionParams(requestParameters: ValidateActionParamsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ValidateActionParams200Response>;
|
|
3063
4697
|
}
|
|
3064
4698
|
|
|
3065
4699
|
/**
|
|
@@ -3123,12 +4757,12 @@ interface ActivitiesApiInterface {
|
|
|
3123
4757
|
* @throws {RequiredError}
|
|
3124
4758
|
* @memberof ActivitiesApiInterface
|
|
3125
4759
|
*/
|
|
3126
|
-
getActivityInfoRaw(requestParameters: GetActivityInfoRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4760
|
+
getActivityInfoRaw(requestParameters: GetActivityInfoRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetActivityInfo200Response>>;
|
|
3127
4761
|
/**
|
|
3128
4762
|
* 获取活动的公开信息,不需要登录
|
|
3129
4763
|
* 获取活动信息(公开)
|
|
3130
4764
|
*/
|
|
3131
|
-
getActivityInfo(requestParameters: GetActivityInfoRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4765
|
+
getActivityInfo(requestParameters: GetActivityInfoRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetActivityInfo200Response>;
|
|
3132
4766
|
/**
|
|
3133
4767
|
* 查询用户在指定活动中的参与状态
|
|
3134
4768
|
* @summary 获取用户活动状态
|
|
@@ -3138,12 +4772,12 @@ interface ActivitiesApiInterface {
|
|
|
3138
4772
|
* @throws {RequiredError}
|
|
3139
4773
|
* @memberof ActivitiesApiInterface
|
|
3140
4774
|
*/
|
|
3141
|
-
getActivityStateRaw(requestParameters: GetActivityStateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4775
|
+
getActivityStateRaw(requestParameters: GetActivityStateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetActivityState200Response>>;
|
|
3142
4776
|
/**
|
|
3143
4777
|
* 查询用户在指定活动中的参与状态
|
|
3144
4778
|
* 获取用户活动状态
|
|
3145
4779
|
*/
|
|
3146
|
-
getActivityState(requestParameters: GetActivityStateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4780
|
+
getActivityState(requestParameters: GetActivityStateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetActivityState200Response>;
|
|
3147
4781
|
/**
|
|
3148
4782
|
* 获取活动的当前状态信息
|
|
3149
4783
|
* @summary 获取活动状态(兼容)
|
|
@@ -3152,12 +4786,12 @@ interface ActivitiesApiInterface {
|
|
|
3152
4786
|
* @throws {RequiredError}
|
|
3153
4787
|
* @memberof ActivitiesApiInterface
|
|
3154
4788
|
*/
|
|
3155
|
-
getActivityStatusRaw(requestParameters: GetActivityStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4789
|
+
getActivityStatusRaw(requestParameters: GetActivityStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetActivityState200Response>>;
|
|
3156
4790
|
/**
|
|
3157
4791
|
* 获取活动的当前状态信息
|
|
3158
4792
|
* 获取活动状态(兼容)
|
|
3159
4793
|
*/
|
|
3160
|
-
getActivityStatus(requestParameters: GetActivityStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4794
|
+
getActivityStatus(requestParameters: GetActivityStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetActivityState200Response>;
|
|
3161
4795
|
/**
|
|
3162
4796
|
* 获取用户在指定活动中的领取记录
|
|
3163
4797
|
* @summary 获取领取记录
|
|
@@ -3169,12 +4803,12 @@ interface ActivitiesApiInterface {
|
|
|
3169
4803
|
* @throws {RequiredError}
|
|
3170
4804
|
* @memberof ActivitiesApiInterface
|
|
3171
4805
|
*/
|
|
3172
|
-
getClaimRecordsRaw(requestParameters: GetClaimRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4806
|
+
getClaimRecordsRaw(requestParameters: GetClaimRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetClaimRecords200Response>>;
|
|
3173
4807
|
/**
|
|
3174
4808
|
* 获取用户在指定活动中的领取记录
|
|
3175
4809
|
* 获取领取记录
|
|
3176
4810
|
*/
|
|
3177
|
-
getClaimRecords(requestParameters: GetClaimRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4811
|
+
getClaimRecords(requestParameters: GetClaimRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetClaimRecords200Response>;
|
|
3178
4812
|
/**
|
|
3179
4813
|
* 获取用户在指定活动中的领取状态
|
|
3180
4814
|
* @summary 获取领取状态
|
|
@@ -3184,12 +4818,12 @@ interface ActivitiesApiInterface {
|
|
|
3184
4818
|
* @throws {RequiredError}
|
|
3185
4819
|
* @memberof ActivitiesApiInterface
|
|
3186
4820
|
*/
|
|
3187
|
-
getClaimStatusRaw(requestParameters: GetClaimStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4821
|
+
getClaimStatusRaw(requestParameters: GetClaimStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetClaimStatus200Response>>;
|
|
3188
4822
|
/**
|
|
3189
4823
|
* 获取用户在指定活动中的领取状态
|
|
3190
4824
|
* 获取领取状态
|
|
3191
4825
|
*/
|
|
3192
|
-
getClaimStatus(requestParameters: GetClaimStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4826
|
+
getClaimStatus(requestParameters: GetClaimStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetClaimStatus200Response>;
|
|
3193
4827
|
/**
|
|
3194
4828
|
* 获取用户在指定活动中的抽奖记录
|
|
3195
4829
|
* @summary 获取抽奖记录
|
|
@@ -3200,12 +4834,12 @@ interface ActivitiesApiInterface {
|
|
|
3200
4834
|
* @throws {RequiredError}
|
|
3201
4835
|
* @memberof ActivitiesApiInterface
|
|
3202
4836
|
*/
|
|
3203
|
-
getLotteryRecordsRaw(requestParameters: GetLotteryRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4837
|
+
getLotteryRecordsRaw(requestParameters: GetLotteryRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetClaimRecords200Response>>;
|
|
3204
4838
|
/**
|
|
3205
4839
|
* 获取用户在指定活动中的抽奖记录
|
|
3206
4840
|
* 获取抽奖记录
|
|
3207
4841
|
*/
|
|
3208
|
-
getLotteryRecords(requestParameters: GetLotteryRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4842
|
+
getLotteryRecords(requestParameters: GetLotteryRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetClaimRecords200Response>;
|
|
3209
4843
|
/**
|
|
3210
4844
|
* 获取用户的签到日历数据
|
|
3211
4845
|
* @summary 获取签到日历
|
|
@@ -3216,12 +4850,12 @@ interface ActivitiesApiInterface {
|
|
|
3216
4850
|
* @throws {RequiredError}
|
|
3217
4851
|
* @memberof ActivitiesApiInterface
|
|
3218
4852
|
*/
|
|
3219
|
-
getSigninCalendarRaw(requestParameters: GetSigninCalendarRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4853
|
+
getSigninCalendarRaw(requestParameters: GetSigninCalendarRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetSigninCalendar200Response>>;
|
|
3220
4854
|
/**
|
|
3221
4855
|
* 获取用户的签到日历数据
|
|
3222
4856
|
* 获取签到日历
|
|
3223
4857
|
*/
|
|
3224
|
-
getSigninCalendar(requestParameters: GetSigninCalendarRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4858
|
+
getSigninCalendar(requestParameters: GetSigninCalendarRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetSigninCalendar200Response>;
|
|
3225
4859
|
/**
|
|
3226
4860
|
* 获取用户在指定活动中的签到状态
|
|
3227
4861
|
* @summary 获取签到状态
|
|
@@ -3231,12 +4865,12 @@ interface ActivitiesApiInterface {
|
|
|
3231
4865
|
* @throws {RequiredError}
|
|
3232
4866
|
* @memberof ActivitiesApiInterface
|
|
3233
4867
|
*/
|
|
3234
|
-
getSigninStatusRaw(requestParameters: GetSigninStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4868
|
+
getSigninStatusRaw(requestParameters: GetSigninStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetSigninStatus200Response>>;
|
|
3235
4869
|
/**
|
|
3236
4870
|
* 获取用户在指定活动中的签到状态
|
|
3237
4871
|
* 获取签到状态
|
|
3238
4872
|
*/
|
|
3239
|
-
getSigninStatus(requestParameters: GetSigninStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4873
|
+
getSigninStatus(requestParameters: GetSigninStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetSigninStatus200Response>;
|
|
3240
4874
|
}
|
|
3241
4875
|
/**
|
|
3242
4876
|
*
|
|
@@ -3246,82 +4880,82 @@ declare class ActivitiesApi extends BaseAPI implements ActivitiesApiInterface {
|
|
|
3246
4880
|
* 获取活动的公开信息,不需要登录
|
|
3247
4881
|
* 获取活动信息(公开)
|
|
3248
4882
|
*/
|
|
3249
|
-
getActivityInfoRaw(requestParameters: GetActivityInfoRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4883
|
+
getActivityInfoRaw(requestParameters: GetActivityInfoRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetActivityInfo200Response>>;
|
|
3250
4884
|
/**
|
|
3251
4885
|
* 获取活动的公开信息,不需要登录
|
|
3252
4886
|
* 获取活动信息(公开)
|
|
3253
4887
|
*/
|
|
3254
|
-
getActivityInfo(requestParameters: GetActivityInfoRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4888
|
+
getActivityInfo(requestParameters: GetActivityInfoRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetActivityInfo200Response>;
|
|
3255
4889
|
/**
|
|
3256
4890
|
* 查询用户在指定活动中的参与状态
|
|
3257
4891
|
* 获取用户活动状态
|
|
3258
4892
|
*/
|
|
3259
|
-
getActivityStateRaw(requestParameters: GetActivityStateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4893
|
+
getActivityStateRaw(requestParameters: GetActivityStateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetActivityState200Response>>;
|
|
3260
4894
|
/**
|
|
3261
4895
|
* 查询用户在指定活动中的参与状态
|
|
3262
4896
|
* 获取用户活动状态
|
|
3263
4897
|
*/
|
|
3264
|
-
getActivityState(requestParameters: GetActivityStateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4898
|
+
getActivityState(requestParameters: GetActivityStateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetActivityState200Response>;
|
|
3265
4899
|
/**
|
|
3266
4900
|
* 获取活动的当前状态信息
|
|
3267
4901
|
* 获取活动状态(兼容)
|
|
3268
4902
|
*/
|
|
3269
|
-
getActivityStatusRaw(requestParameters: GetActivityStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4903
|
+
getActivityStatusRaw(requestParameters: GetActivityStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetActivityState200Response>>;
|
|
3270
4904
|
/**
|
|
3271
4905
|
* 获取活动的当前状态信息
|
|
3272
4906
|
* 获取活动状态(兼容)
|
|
3273
4907
|
*/
|
|
3274
|
-
getActivityStatus(requestParameters: GetActivityStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4908
|
+
getActivityStatus(requestParameters: GetActivityStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetActivityState200Response>;
|
|
3275
4909
|
/**
|
|
3276
4910
|
* 获取用户在指定活动中的领取记录
|
|
3277
4911
|
* 获取领取记录
|
|
3278
4912
|
*/
|
|
3279
|
-
getClaimRecordsRaw(requestParameters: GetClaimRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4913
|
+
getClaimRecordsRaw(requestParameters: GetClaimRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetClaimRecords200Response>>;
|
|
3280
4914
|
/**
|
|
3281
4915
|
* 获取用户在指定活动中的领取记录
|
|
3282
4916
|
* 获取领取记录
|
|
3283
4917
|
*/
|
|
3284
|
-
getClaimRecords(requestParameters: GetClaimRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4918
|
+
getClaimRecords(requestParameters: GetClaimRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetClaimRecords200Response>;
|
|
3285
4919
|
/**
|
|
3286
4920
|
* 获取用户在指定活动中的领取状态
|
|
3287
4921
|
* 获取领取状态
|
|
3288
4922
|
*/
|
|
3289
|
-
getClaimStatusRaw(requestParameters: GetClaimStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4923
|
+
getClaimStatusRaw(requestParameters: GetClaimStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetClaimStatus200Response>>;
|
|
3290
4924
|
/**
|
|
3291
4925
|
* 获取用户在指定活动中的领取状态
|
|
3292
4926
|
* 获取领取状态
|
|
3293
4927
|
*/
|
|
3294
|
-
getClaimStatus(requestParameters: GetClaimStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4928
|
+
getClaimStatus(requestParameters: GetClaimStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetClaimStatus200Response>;
|
|
3295
4929
|
/**
|
|
3296
4930
|
* 获取用户在指定活动中的抽奖记录
|
|
3297
4931
|
* 获取抽奖记录
|
|
3298
4932
|
*/
|
|
3299
|
-
getLotteryRecordsRaw(requestParameters: GetLotteryRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4933
|
+
getLotteryRecordsRaw(requestParameters: GetLotteryRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetClaimRecords200Response>>;
|
|
3300
4934
|
/**
|
|
3301
4935
|
* 获取用户在指定活动中的抽奖记录
|
|
3302
4936
|
* 获取抽奖记录
|
|
3303
4937
|
*/
|
|
3304
|
-
getLotteryRecords(requestParameters: GetLotteryRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4938
|
+
getLotteryRecords(requestParameters: GetLotteryRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetClaimRecords200Response>;
|
|
3305
4939
|
/**
|
|
3306
4940
|
* 获取用户的签到日历数据
|
|
3307
4941
|
* 获取签到日历
|
|
3308
4942
|
*/
|
|
3309
|
-
getSigninCalendarRaw(requestParameters: GetSigninCalendarRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4943
|
+
getSigninCalendarRaw(requestParameters: GetSigninCalendarRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetSigninCalendar200Response>>;
|
|
3310
4944
|
/**
|
|
3311
4945
|
* 获取用户的签到日历数据
|
|
3312
4946
|
* 获取签到日历
|
|
3313
4947
|
*/
|
|
3314
|
-
getSigninCalendar(requestParameters: GetSigninCalendarRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4948
|
+
getSigninCalendar(requestParameters: GetSigninCalendarRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetSigninCalendar200Response>;
|
|
3315
4949
|
/**
|
|
3316
4950
|
* 获取用户在指定活动中的签到状态
|
|
3317
4951
|
* 获取签到状态
|
|
3318
4952
|
*/
|
|
3319
|
-
getSigninStatusRaw(requestParameters: GetSigninStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4953
|
+
getSigninStatusRaw(requestParameters: GetSigninStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetSigninStatus200Response>>;
|
|
3320
4954
|
/**
|
|
3321
4955
|
* 获取用户在指定活动中的签到状态
|
|
3322
4956
|
* 获取签到状态
|
|
3323
4957
|
*/
|
|
3324
|
-
getSigninStatus(requestParameters: GetSigninStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4958
|
+
getSigninStatus(requestParameters: GetSigninStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetSigninStatus200Response>;
|
|
3325
4959
|
}
|
|
3326
4960
|
|
|
3327
4961
|
/**
|
|
@@ -3350,12 +4984,12 @@ interface HealthApiInterface {
|
|
|
3350
4984
|
* @throws {RequiredError}
|
|
3351
4985
|
* @memberof HealthApiInterface
|
|
3352
4986
|
*/
|
|
3353
|
-
healthCheckRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4987
|
+
healthCheckRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<HealthCheck200Response>>;
|
|
3354
4988
|
/**
|
|
3355
4989
|
* 综合健康检查,返回服务状态和时间戳
|
|
3356
4990
|
* 健康检查
|
|
3357
4991
|
*/
|
|
3358
|
-
healthCheck(initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4992
|
+
healthCheck(initOverrides?: RequestInit | InitOverrideFunction): Promise<HealthCheck200Response>;
|
|
3359
4993
|
/**
|
|
3360
4994
|
* Kubernetes liveness probe
|
|
3361
4995
|
* @summary 存活检查
|
|
@@ -3363,12 +4997,12 @@ interface HealthApiInterface {
|
|
|
3363
4997
|
* @throws {RequiredError}
|
|
3364
4998
|
* @memberof HealthApiInterface
|
|
3365
4999
|
*/
|
|
3366
|
-
livenessCheckRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5000
|
+
livenessCheckRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<LivenessCheck200Response>>;
|
|
3367
5001
|
/**
|
|
3368
5002
|
* Kubernetes liveness probe
|
|
3369
5003
|
* 存活检查
|
|
3370
5004
|
*/
|
|
3371
|
-
livenessCheck(initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5005
|
+
livenessCheck(initOverrides?: RequestInit | InitOverrideFunction): Promise<LivenessCheck200Response>;
|
|
3372
5006
|
/**
|
|
3373
5007
|
* Kubernetes readiness probe
|
|
3374
5008
|
* @summary 就绪检查
|
|
@@ -3376,12 +5010,12 @@ interface HealthApiInterface {
|
|
|
3376
5010
|
* @throws {RequiredError}
|
|
3377
5011
|
* @memberof HealthApiInterface
|
|
3378
5012
|
*/
|
|
3379
|
-
readinessCheckRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5013
|
+
readinessCheckRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ReadinessCheck200Response>>;
|
|
3380
5014
|
/**
|
|
3381
5015
|
* Kubernetes readiness probe
|
|
3382
5016
|
* 就绪检查
|
|
3383
5017
|
*/
|
|
3384
|
-
readinessCheck(initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5018
|
+
readinessCheck(initOverrides?: RequestInit | InitOverrideFunction): Promise<ReadinessCheck200Response>;
|
|
3385
5019
|
}
|
|
3386
5020
|
/**
|
|
3387
5021
|
*
|
|
@@ -3391,32 +5025,32 @@ declare class HealthApi extends BaseAPI implements HealthApiInterface {
|
|
|
3391
5025
|
* 综合健康检查,返回服务状态和时间戳
|
|
3392
5026
|
* 健康检查
|
|
3393
5027
|
*/
|
|
3394
|
-
healthCheckRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5028
|
+
healthCheckRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<HealthCheck200Response>>;
|
|
3395
5029
|
/**
|
|
3396
5030
|
* 综合健康检查,返回服务状态和时间戳
|
|
3397
5031
|
* 健康检查
|
|
3398
5032
|
*/
|
|
3399
|
-
healthCheck(initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5033
|
+
healthCheck(initOverrides?: RequestInit | InitOverrideFunction): Promise<HealthCheck200Response>;
|
|
3400
5034
|
/**
|
|
3401
5035
|
* Kubernetes liveness probe
|
|
3402
5036
|
* 存活检查
|
|
3403
5037
|
*/
|
|
3404
|
-
livenessCheckRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5038
|
+
livenessCheckRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<LivenessCheck200Response>>;
|
|
3405
5039
|
/**
|
|
3406
5040
|
* Kubernetes liveness probe
|
|
3407
5041
|
* 存活检查
|
|
3408
5042
|
*/
|
|
3409
|
-
livenessCheck(initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5043
|
+
livenessCheck(initOverrides?: RequestInit | InitOverrideFunction): Promise<LivenessCheck200Response>;
|
|
3410
5044
|
/**
|
|
3411
5045
|
* Kubernetes readiness probe
|
|
3412
5046
|
* 就绪检查
|
|
3413
5047
|
*/
|
|
3414
|
-
readinessCheckRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5048
|
+
readinessCheckRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ReadinessCheck200Response>>;
|
|
3415
5049
|
/**
|
|
3416
5050
|
* Kubernetes readiness probe
|
|
3417
5051
|
* 就绪检查
|
|
3418
5052
|
*/
|
|
3419
|
-
readinessCheck(initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5053
|
+
readinessCheck(initOverrides?: RequestInit | InitOverrideFunction): Promise<ReadinessCheck200Response>;
|
|
3420
5054
|
}
|
|
3421
5055
|
|
|
3422
5056
|
/**
|
|
@@ -3464,12 +5098,12 @@ interface PagesApiInterface {
|
|
|
3464
5098
|
* @throws {RequiredError}
|
|
3465
5099
|
* @memberof PagesApiInterface
|
|
3466
5100
|
*/
|
|
3467
|
-
getPageConfigRaw(requestParameters: GetPageConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5101
|
+
getPageConfigRaw(requestParameters: GetPageConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetPageConfig200Response>>;
|
|
3468
5102
|
/**
|
|
3469
5103
|
* 返回当前运维配置(killSwitch、blockedComponents 等)
|
|
3470
5104
|
* 获取运维配置
|
|
3471
5105
|
*/
|
|
3472
|
-
getPageConfig(requestParameters: GetPageConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5106
|
+
getPageConfig(requestParameters: GetPageConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetPageConfig200Response>;
|
|
3473
5107
|
/**
|
|
3474
5108
|
* 返回页面的组件锁定清单
|
|
3475
5109
|
* @summary 获取组件清单
|
|
@@ -3479,12 +5113,12 @@ interface PagesApiInterface {
|
|
|
3479
5113
|
* @throws {RequiredError}
|
|
3480
5114
|
* @memberof PagesApiInterface
|
|
3481
5115
|
*/
|
|
3482
|
-
getPageManifestRaw(requestParameters: GetPageManifestRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5116
|
+
getPageManifestRaw(requestParameters: GetPageManifestRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetPageManifest200Response>>;
|
|
3483
5117
|
/**
|
|
3484
5118
|
* 返回页面的组件锁定清单
|
|
3485
5119
|
* 获取组件清单
|
|
3486
5120
|
*/
|
|
3487
|
-
getPageManifest(requestParameters: GetPageManifestRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5121
|
+
getPageManifest(requestParameters: GetPageManifestRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetPageManifest200Response>;
|
|
3488
5122
|
/**
|
|
3489
5123
|
* Runtime 核心接口,返回渲染所需的完整数据。 支持两种模式: 1. 稳定入口(推荐):支持灰度/回滚/ops,返回 resolvedVersionId 和 CDN 地址 2. 保底模式:当 includeSnapshot=true 时,返回完整 snapshot(CDN 失败时使用)
|
|
3490
5124
|
* @summary 解析页面
|
|
@@ -3501,12 +5135,12 @@ interface PagesApiInterface {
|
|
|
3501
5135
|
* @throws {RequiredError}
|
|
3502
5136
|
* @memberof PagesApiInterface
|
|
3503
5137
|
*/
|
|
3504
|
-
resolvePageRaw(requestParameters: ResolvePageRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5138
|
+
resolvePageRaw(requestParameters: ResolvePageRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ResolvePage200Response>>;
|
|
3505
5139
|
/**
|
|
3506
5140
|
* Runtime 核心接口,返回渲染所需的完整数据。 支持两种模式: 1. 稳定入口(推荐):支持灰度/回滚/ops,返回 resolvedVersionId 和 CDN 地址 2. 保底模式:当 includeSnapshot=true 时,返回完整 snapshot(CDN 失败时使用)
|
|
3507
5141
|
* 解析页面
|
|
3508
5142
|
*/
|
|
3509
|
-
resolvePage(requestParameters: ResolvePageRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5143
|
+
resolvePage(requestParameters: ResolvePageRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ResolvePage200Response>;
|
|
3510
5144
|
}
|
|
3511
5145
|
/**
|
|
3512
5146
|
*
|
|
@@ -3516,32 +5150,32 @@ declare class PagesApi extends BaseAPI implements PagesApiInterface {
|
|
|
3516
5150
|
* 返回当前运维配置(killSwitch、blockedComponents 等)
|
|
3517
5151
|
* 获取运维配置
|
|
3518
5152
|
*/
|
|
3519
|
-
getPageConfigRaw(requestParameters: GetPageConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5153
|
+
getPageConfigRaw(requestParameters: GetPageConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetPageConfig200Response>>;
|
|
3520
5154
|
/**
|
|
3521
5155
|
* 返回当前运维配置(killSwitch、blockedComponents 等)
|
|
3522
5156
|
* 获取运维配置
|
|
3523
5157
|
*/
|
|
3524
|
-
getPageConfig(requestParameters?: GetPageConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5158
|
+
getPageConfig(requestParameters?: GetPageConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetPageConfig200Response>;
|
|
3525
5159
|
/**
|
|
3526
5160
|
* 返回页面的组件锁定清单
|
|
3527
5161
|
* 获取组件清单
|
|
3528
5162
|
*/
|
|
3529
|
-
getPageManifestRaw(requestParameters: GetPageManifestRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5163
|
+
getPageManifestRaw(requestParameters: GetPageManifestRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetPageManifest200Response>>;
|
|
3530
5164
|
/**
|
|
3531
5165
|
* 返回页面的组件锁定清单
|
|
3532
5166
|
* 获取组件清单
|
|
3533
5167
|
*/
|
|
3534
|
-
getPageManifest(requestParameters: GetPageManifestRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5168
|
+
getPageManifest(requestParameters: GetPageManifestRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetPageManifest200Response>;
|
|
3535
5169
|
/**
|
|
3536
5170
|
* Runtime 核心接口,返回渲染所需的完整数据。 支持两种模式: 1. 稳定入口(推荐):支持灰度/回滚/ops,返回 resolvedVersionId 和 CDN 地址 2. 保底模式:当 includeSnapshot=true 时,返回完整 snapshot(CDN 失败时使用)
|
|
3537
5171
|
* 解析页面
|
|
3538
5172
|
*/
|
|
3539
|
-
resolvePageRaw(requestParameters: ResolvePageRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5173
|
+
resolvePageRaw(requestParameters: ResolvePageRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ResolvePage200Response>>;
|
|
3540
5174
|
/**
|
|
3541
5175
|
* Runtime 核心接口,返回渲染所需的完整数据。 支持两种模式: 1. 稳定入口(推荐):支持灰度/回滚/ops,返回 resolvedVersionId 和 CDN 地址 2. 保底模式:当 includeSnapshot=true 时,返回完整 snapshot(CDN 失败时使用)
|
|
3542
5176
|
* 解析页面
|
|
3543
5177
|
*/
|
|
3544
|
-
resolvePage(requestParameters: ResolvePageRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5178
|
+
resolvePage(requestParameters: ResolvePageRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ResolvePage200Response>;
|
|
3545
5179
|
}
|
|
3546
5180
|
/**
|
|
3547
5181
|
* @export
|
|
@@ -3607,12 +5241,12 @@ interface QueriesApiInterface {
|
|
|
3607
5241
|
* @throws {RequiredError}
|
|
3608
5242
|
* @memberof QueriesApiInterface
|
|
3609
5243
|
*/
|
|
3610
|
-
batchQueryDataRaw(requestParameters: BatchQueryDataRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5244
|
+
batchQueryDataRaw(requestParameters: BatchQueryDataRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<BatchQueryData200Response>>;
|
|
3611
5245
|
/**
|
|
3612
5246
|
* 批量执行多个数据查询,所有查询并行执行
|
|
3613
5247
|
* 批量执行数据查询
|
|
3614
5248
|
*/
|
|
3615
|
-
batchQueryData(requestParameters: BatchQueryDataRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5249
|
+
batchQueryData(requestParameters: BatchQueryDataRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<BatchQueryData200Response>;
|
|
3616
5250
|
/**
|
|
3617
5251
|
* 按版本 ID 获取数据查询定义
|
|
3618
5252
|
* @summary 获取查询定义
|
|
@@ -3621,12 +5255,12 @@ interface QueriesApiInterface {
|
|
|
3621
5255
|
* @throws {RequiredError}
|
|
3622
5256
|
* @memberof QueriesApiInterface
|
|
3623
5257
|
*/
|
|
3624
|
-
getQueryDefinitionRaw(requestParameters: GetQueryDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5258
|
+
getQueryDefinitionRaw(requestParameters: GetQueryDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetQueryDefinition200Response>>;
|
|
3625
5259
|
/**
|
|
3626
5260
|
* 按版本 ID 获取数据查询定义
|
|
3627
5261
|
* 获取查询定义
|
|
3628
5262
|
*/
|
|
3629
|
-
getQueryDefinition(requestParameters: GetQueryDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5263
|
+
getQueryDefinition(requestParameters: GetQueryDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetQueryDefinition200Response>;
|
|
3630
5264
|
/**
|
|
3631
5265
|
* 通过 queryVersionId 查询数据
|
|
3632
5266
|
* @summary 执行数据查询
|
|
@@ -3635,12 +5269,12 @@ interface QueriesApiInterface {
|
|
|
3635
5269
|
* @throws {RequiredError}
|
|
3636
5270
|
* @memberof QueriesApiInterface
|
|
3637
5271
|
*/
|
|
3638
|
-
queryDataRaw(requestParameters: QueryDataOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5272
|
+
queryDataRaw(requestParameters: QueryDataOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<QueryData200Response>>;
|
|
3639
5273
|
/**
|
|
3640
5274
|
* 通过 queryVersionId 查询数据
|
|
3641
5275
|
* 执行数据查询
|
|
3642
5276
|
*/
|
|
3643
|
-
queryData(requestParameters: QueryDataOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5277
|
+
queryData(requestParameters: QueryDataOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<QueryData200Response>;
|
|
3644
5278
|
}
|
|
3645
5279
|
/**
|
|
3646
5280
|
*
|
|
@@ -3650,32 +5284,32 @@ declare class QueriesApi extends BaseAPI implements QueriesApiInterface {
|
|
|
3650
5284
|
* 批量执行多个数据查询,所有查询并行执行
|
|
3651
5285
|
* 批量执行数据查询
|
|
3652
5286
|
*/
|
|
3653
|
-
batchQueryDataRaw(requestParameters: BatchQueryDataRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5287
|
+
batchQueryDataRaw(requestParameters: BatchQueryDataRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<BatchQueryData200Response>>;
|
|
3654
5288
|
/**
|
|
3655
5289
|
* 批量执行多个数据查询,所有查询并行执行
|
|
3656
5290
|
* 批量执行数据查询
|
|
3657
5291
|
*/
|
|
3658
|
-
batchQueryData(requestParameters: BatchQueryDataRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5292
|
+
batchQueryData(requestParameters: BatchQueryDataRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<BatchQueryData200Response>;
|
|
3659
5293
|
/**
|
|
3660
5294
|
* 按版本 ID 获取数据查询定义
|
|
3661
5295
|
* 获取查询定义
|
|
3662
5296
|
*/
|
|
3663
|
-
getQueryDefinitionRaw(requestParameters: GetQueryDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5297
|
+
getQueryDefinitionRaw(requestParameters: GetQueryDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetQueryDefinition200Response>>;
|
|
3664
5298
|
/**
|
|
3665
5299
|
* 按版本 ID 获取数据查询定义
|
|
3666
5300
|
* 获取查询定义
|
|
3667
5301
|
*/
|
|
3668
|
-
getQueryDefinition(requestParameters: GetQueryDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5302
|
+
getQueryDefinition(requestParameters: GetQueryDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetQueryDefinition200Response>;
|
|
3669
5303
|
/**
|
|
3670
5304
|
* 通过 queryVersionId 查询数据
|
|
3671
5305
|
* 执行数据查询
|
|
3672
5306
|
*/
|
|
3673
|
-
queryDataRaw(requestParameters: QueryDataOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5307
|
+
queryDataRaw(requestParameters: QueryDataOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<QueryData200Response>>;
|
|
3674
5308
|
/**
|
|
3675
5309
|
* 通过 queryVersionId 查询数据
|
|
3676
5310
|
* 执行数据查询
|
|
3677
5311
|
*/
|
|
3678
|
-
queryData(requestParameters: QueryDataOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5312
|
+
queryData(requestParameters: QueryDataOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<QueryData200Response>;
|
|
3679
5313
|
}
|
|
3680
5314
|
|
|
3681
5315
|
/**
|
|
@@ -3713,12 +5347,12 @@ interface TenantApiInterface {
|
|
|
3713
5347
|
* @throws {RequiredError}
|
|
3714
5348
|
* @memberof TenantApiInterface
|
|
3715
5349
|
*/
|
|
3716
|
-
getTenantConfigRaw(requestParameters: GetTenantConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5350
|
+
getTenantConfigRaw(requestParameters: GetTenantConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetTenantConfig200Response>>;
|
|
3717
5351
|
/**
|
|
3718
5352
|
* 获取当前租户的运行时配置
|
|
3719
5353
|
* 获取租户配置
|
|
3720
5354
|
*/
|
|
3721
|
-
getTenantConfig(requestParameters: GetTenantConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5355
|
+
getTenantConfig(requestParameters: GetTenantConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetTenantConfig200Response>;
|
|
3722
5356
|
/**
|
|
3723
5357
|
* 根据 appKey 或 host 解析租户/应用信息
|
|
3724
5358
|
* @summary 解析租户信息
|
|
@@ -3727,12 +5361,12 @@ interface TenantApiInterface {
|
|
|
3727
5361
|
* @throws {RequiredError}
|
|
3728
5362
|
* @memberof TenantApiInterface
|
|
3729
5363
|
*/
|
|
3730
|
-
resolveTenantRaw(requestParameters: ResolveTenantOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5364
|
+
resolveTenantRaw(requestParameters: ResolveTenantOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ResolveTenant200Response>>;
|
|
3731
5365
|
/**
|
|
3732
5366
|
* 根据 appKey 或 host 解析租户/应用信息
|
|
3733
5367
|
* 解析租户信息
|
|
3734
5368
|
*/
|
|
3735
|
-
resolveTenant(requestParameters: ResolveTenantOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5369
|
+
resolveTenant(requestParameters: ResolveTenantOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ResolveTenant200Response>;
|
|
3736
5370
|
}
|
|
3737
5371
|
/**
|
|
3738
5372
|
*
|
|
@@ -3742,22 +5376,22 @@ declare class TenantApi extends BaseAPI implements TenantApiInterface {
|
|
|
3742
5376
|
* 获取当前租户的运行时配置
|
|
3743
5377
|
* 获取租户配置
|
|
3744
5378
|
*/
|
|
3745
|
-
getTenantConfigRaw(requestParameters: GetTenantConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5379
|
+
getTenantConfigRaw(requestParameters: GetTenantConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetTenantConfig200Response>>;
|
|
3746
5380
|
/**
|
|
3747
5381
|
* 获取当前租户的运行时配置
|
|
3748
5382
|
* 获取租户配置
|
|
3749
5383
|
*/
|
|
3750
|
-
getTenantConfig(requestParameters: GetTenantConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5384
|
+
getTenantConfig(requestParameters: GetTenantConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetTenantConfig200Response>;
|
|
3751
5385
|
/**
|
|
3752
5386
|
* 根据 appKey 或 host 解析租户/应用信息
|
|
3753
5387
|
* 解析租户信息
|
|
3754
5388
|
*/
|
|
3755
|
-
resolveTenantRaw(requestParameters: ResolveTenantOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5389
|
+
resolveTenantRaw(requestParameters: ResolveTenantOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ResolveTenant200Response>>;
|
|
3756
5390
|
/**
|
|
3757
5391
|
* 根据 appKey 或 host 解析租户/应用信息
|
|
3758
5392
|
* 解析租户信息
|
|
3759
5393
|
*/
|
|
3760
|
-
resolveTenant(requestParameters: ResolveTenantOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5394
|
+
resolveTenant(requestParameters: ResolveTenantOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ResolveTenant200Response>;
|
|
3761
5395
|
}
|
|
3762
5396
|
|
|
3763
5397
|
/**
|
|
@@ -3942,4 +5576,4 @@ declare function createUserConfiguration(config?: UserClientConfig): Configurati
|
|
|
3942
5576
|
/** 客户端版本 */
|
|
3943
5577
|
declare const VERSION = "1.0.0";
|
|
3944
5578
|
|
|
3945
|
-
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 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 ExecuteActionRequest, ExecuteActionRequestFromJSON, ExecuteActionRequestFromJSONTyped, ExecuteActionRequestToJSON, type ExecuteActionResponse, ExecuteActionResponseFromJSON, ExecuteActionResponseFromJSONTyped, ExecuteActionResponseToJSON, type FetchAPI, FetchError, type FetchParams, HealthApi, type HealthCheckItem, HealthCheckItemFromJSON, HealthCheckItemFromJSONTyped, HealthCheckItemToJSON, type HealthCheckResponse, HealthCheckResponseFromJSON, HealthCheckResponseFromJSONTyped, HealthCheckResponseToJSON, 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 QueryDataRequest, QueryDataRequestFromJSON, QueryDataRequestFromJSONTyped, QueryDataRequestToJSON, type QueryDataResponse, QueryDataResponseFromJSON, QueryDataResponseFromJSONTyped, QueryDataResponseToJSON, type QueryDefinitionResponse, QueryDefinitionResponseFromJSON, QueryDefinitionResponseFromJSONTyped, QueryDefinitionResponseStatusEnum, QueryDefinitionResponseToJSON, type QueryMetadata, QueryMetadataFromJSON, QueryMetadataFromJSONTyped, QueryMetadataToJSON, type ReadinessResponse, ReadinessResponseFromJSON, ReadinessResponseFromJSONTyped, ReadinessResponseToJSON, type RequestContext, RequiredError, type ResolvePageResponse, ResolvePageResponseFromJSON, ResolvePageResponseFromJSONTyped, ResolvePageResponseToJSON, 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 ValidateActionRequest, ValidateActionRequestFromJSON, ValidateActionRequestFromJSONTyped, ValidateActionRequestToJSON, type ValidateActionResponse, ValidateActionResponseFromJSON, ValidateActionResponseFromJSONTyped, ValidateActionResponseToJSON, createUserClient, createUserConfiguration, instanceOfActionClientContext, instanceOfActionDefinitionVersionResponse, instanceOfActivityInfoData, instanceOfActivityInfoResponse, instanceOfActivityStatus, instanceOfActivityStatusResponse, instanceOfBatchQueryItemRequest, instanceOfBatchQueryRequest, instanceOfBatchQueryResponse, instanceOfBlockedComponent, instanceOfClaimStatusResponse, instanceOfCursorPaginationMeta, instanceOfDegradeConfig, instanceOfErrorResponse, instanceOfExecuteActionRequest, instanceOfExecuteActionResponse, instanceOfHealthCheckItem, instanceOfHealthCheckResponse, instanceOfLivenessResponse, instanceOfManifestComponent, instanceOfManifestResponse, instanceOfManifestRuntime, instanceOfMilestoneInfo, instanceOfOpsConfig, instanceOfPaginatedRecordsResponse, instanceOfPaginationMeta, instanceOfQueryContext, instanceOfQueryDataRequest, instanceOfQueryDataResponse, instanceOfQueryDefinitionResponse, instanceOfQueryMetadata, instanceOfReadinessResponse, instanceOfResolvePageResponse, instanceOfResolveTenantData, instanceOfResolveTenantRequest, instanceOfResolveTenantResponse, instanceOfRewardInfo, instanceOfSigninCalendarData, instanceOfSigninCalendarResponse, instanceOfSigninStatusResponse, instanceOfSuccessResponse, instanceOfTenantConfigData, instanceOfTenantConfigResponse, instanceOfTrackBatchError, instanceOfTrackBatchRequest, instanceOfTrackBatchResponse, instanceOfTrackBatchResponseData, instanceOfTrackContext, instanceOfTrackEvent, instanceOfTrackSingleRequest, instanceOfTrackSingleResponse, instanceOfTrackSingleResponseData, 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 };
|