@gct-paas/api 0.1.6-dev.11 → 0.1.6-dev.12

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.
Files changed (27) hide show
  1. package/dist/index.esm.min.js +1 -1
  2. package/es/apaas/service/api-config.mjs +183 -103
  3. package/es/apaas/service/apis/api.service.d.ts +5 -2
  4. package/es/apaas/service/apis/app-global-settings.service.d.ts +0 -4
  5. package/es/apaas/service/apis/app-org.service.d.ts +0 -4
  6. package/es/apaas/service/apis/category.service.d.ts +16 -0
  7. package/es/apaas/service/apis/chat.service.d.ts +1 -2
  8. package/es/apaas/service/apis/excel-tmpl.service.d.ts +8 -0
  9. package/es/apaas/service/apis/excel.service.d.ts +2 -4
  10. package/es/apaas/service/apis/field-meta.service.d.ts +13 -0
  11. package/es/apaas/service/apis/medPro.service.d.ts +0 -108
  12. package/es/apaas/service/apis/model-meta.service.d.ts +17 -0
  13. package/es/apaas/service/apis/online-form-instance.service.d.ts +0 -4
  14. package/es/apaas/service/apis/online-form-tmpl.service.d.ts +1 -18
  15. package/es/apaas/service/apis/print.service.d.ts +1 -1
  16. package/es/apaas/service/apis/ss.service.d.ts +0 -9
  17. package/es/apaas/service/apis/trace-log-details.service.d.ts +12 -0
  18. package/es/apaas/service/entities.d.ts +675 -1
  19. package/es/apaas/service/index.d.ts +6 -0
  20. package/es/platform/service/api-config.mjs +8 -6
  21. package/es/platform/service/apis/api.service.d.ts +17 -0
  22. package/es/platform/service/apis/license.service.d.ts +1 -2
  23. package/es/platform/service/apis/org.service.d.ts +4 -0
  24. package/es/platform/service/apis/plugin.service.d.ts +1 -2
  25. package/es/platform/service/apis/tenant.service.d.ts +4 -0
  26. package/es/platform/service/entities.d.ts +6 -12
  27. package/package.json +1 -1
@@ -1785,6 +1785,12 @@ export interface CategoryCompleteResponse {
1785
1785
  * @type RelationResponse[]
1786
1786
  */
1787
1787
  children?: RelationResponse[];
1788
+ /**
1789
+ * 创建人
1790
+ *
1791
+ * @type string
1792
+ */
1793
+ createUserId?: string;
1788
1794
  /**
1789
1795
  * 是否子版本
1790
1796
  *
@@ -4636,6 +4642,124 @@ export interface DesignerOperateLogResponse {
4636
4642
  */
4637
4643
  requestInfo?: string;
4638
4644
  }
4645
+ export interface DetailPageRequest {
4646
+ /**
4647
+ * 页面描述
4648
+ *
4649
+ * @type string
4650
+ */
4651
+ description?: string;
4652
+ /**
4653
+ * 页面设计json
4654
+ *
4655
+ * @type string
4656
+ */
4657
+ designerJson?: string;
4658
+ /**
4659
+ * 页面key
4660
+ *
4661
+ * @type string
4662
+ */
4663
+ key?: string;
4664
+ /**
4665
+ * 页面名称
4666
+ *
4667
+ * @type string
4668
+ */
4669
+ name?: string;
4670
+ /**
4671
+ * 运行时json
4672
+ *
4673
+ * @type string
4674
+ */
4675
+ runtimeJson?: string;
4676
+ }
4677
+ export interface DetailPageResponse {
4678
+ /**
4679
+ *
4680
+ *
4681
+ * @type string
4682
+ */
4683
+ createTime?: string;
4684
+ /**
4685
+ *
4686
+ *
4687
+ * @type string
4688
+ */
4689
+ createUserId?: string;
4690
+ /**
4691
+ *
4692
+ *
4693
+ * @type string
4694
+ */
4695
+ createUserName?: string;
4696
+ /**
4697
+ * 页面描述
4698
+ *
4699
+ * @type string
4700
+ */
4701
+ description?: string;
4702
+ /**
4703
+ * 页面设计json
4704
+ *
4705
+ * @type string
4706
+ */
4707
+ designerJson?: string;
4708
+ /**
4709
+ * 是否为草稿 0: 非草稿 1: 草稿
4710
+ *
4711
+ * @type number
4712
+ */
4713
+ draft?: number;
4714
+ /**
4715
+ * 主键
4716
+ *
4717
+ * @type string
4718
+ */
4719
+ id?: string;
4720
+ /**
4721
+ * 初始提交 id
4722
+ *
4723
+ * @type string
4724
+ */
4725
+ initCommitId?: string;
4726
+ /**
4727
+ * 页面key
4728
+ *
4729
+ * @type string
4730
+ */
4731
+ key?: string;
4732
+ /**
4733
+ *
4734
+ *
4735
+ * @type string
4736
+ */
4737
+ modifyTime?: string;
4738
+ /**
4739
+ *
4740
+ *
4741
+ * @type string
4742
+ */
4743
+ modifyUserId?: string;
4744
+ /**
4745
+ *
4746
+ *
4747
+ * @type string
4748
+ */
4749
+ modifyUserName?: string;
4750
+ /**
4751
+ * 页面名称
4752
+ *
4753
+ * @type string
4754
+ */
4755
+ name?: string;
4756
+ /**
4757
+ * 运行时json
4758
+ *
4759
+ * @type string
4760
+ */
4761
+ runtimeJson?: string;
4762
+ }
4639
4763
  export interface DhrProcessApproveRequest {
4640
4764
  /**
4641
4765
  * 点击的按钮的key
@@ -8676,6 +8800,56 @@ export interface ExcelColumnInfoV1 {
8676
8800
  */
8677
8801
  width?: number;
8678
8802
  }
8803
+ export interface ExcelTemplateAndConfigReq {
8804
+ /**
8805
+ * 模板配置
8806
+ *
8807
+ * @type ExcelTmplConfigV1[]
8808
+ */
8809
+ configJsons?: ExcelTmplConfigV1[];
8810
+ /**
8811
+ * 执行方式 0:同步,1:异步
8812
+ *
8813
+ * @type number
8814
+ */
8815
+ exeType?: number;
8816
+ /**
8817
+ * 模板key
8818
+ *
8819
+ * @type string
8820
+ */
8821
+ key?: string;
8822
+ /**
8823
+ * 业务逻辑脚本key
8824
+ *
8825
+ * @type string
8826
+ */
8827
+ lsKey?: string;
8828
+ /**
8829
+ * 模型key
8830
+ *
8831
+ * @type string
8832
+ */
8833
+ modelKey?: string;
8834
+ /**
8835
+ * 模板名称
8836
+ *
8837
+ * @type string
8838
+ */
8839
+ name?: string;
8840
+ /**
8841
+ * 类型:IMPORT-导入;EXPORT-导出
8842
+ *
8843
+ * @type string
8844
+ */
8845
+ type?: string;
8846
+ /**
8847
+ * 验证规则脚本key
8848
+ *
8849
+ * @type string
8850
+ */
8851
+ vsKey?: string;
8852
+ }
8679
8853
  export interface ExcelTemplateConfigReq {
8680
8854
  /**
8681
8855
  * 模板配置
@@ -9005,6 +9179,12 @@ export interface ExcelTmplResponse {
9005
9179
  * @type string
9006
9180
  */
9007
9181
  name?: string;
9182
+ /**
9183
+ * 类型(BUILTIN:内置,后台创建 USER_DEFINED:自定义,前台创建)
9184
+ *
9185
+ * @type string
9186
+ */
9187
+ source?: string;
9008
9188
  /**
9009
9189
  * 支持流程
9010
9190
  *
@@ -13476,11 +13656,17 @@ export interface MenuPermissionDTO {
13476
13656
  }
13477
13657
  export interface MergeConflictDTO {
13478
13658
  /**
13479
- * 最终选择: SOURCE/TARGET
13659
+ * 最终选择: SOURCE/TARGET/MERGED
13480
13660
  *
13481
13661
  * @type string
13482
13662
  */
13483
13663
  choice?: string;
13664
+ /**
13665
+ * 合并内容json
13666
+ *
13667
+ * @type string
13668
+ */
13669
+ mergeResult?: string;
13484
13670
  /**
13485
13671
  * 主键值
13486
13672
  *
@@ -13973,6 +14159,22 @@ export interface MessageRecordResponse {
13973
14159
  * @type string
13974
14160
  */
13975
14161
  resultMsg?: string;
14162
+ /**
14163
+ * 跳转配置: {
14164
+ "WEB": {"id":"菜单id","name":"菜单名称"},
14165
+ "MOBILE": {"id":"菜单id","name":"菜单名称"},
14166
+ "PAD": {"id":"菜单id","name":"菜单名称"}
14167
+ }
14168
+ *
14169
+ * @type string
14170
+ */
14171
+ routerConfig?: string;
14172
+ /**
14173
+ * 跳转参数:由调用全局方法方传递
14174
+ *
14175
+ * @type string
14176
+ */
14177
+ routerParams?: string;
13976
14178
  /**
13977
14179
  * 租户id
13978
14180
  *
@@ -14097,6 +14299,16 @@ export interface MessageTmplRequest {
14097
14299
  * @type string
14098
14300
  */
14099
14301
  rangUser?: string;
14302
+ /**
14303
+ * 跳转配置: {
14304
+ "WEB": {"id":"菜单id","name":"菜单名称"},
14305
+ "MOBILE": {"id":"菜单id","name":"菜单名称"},
14306
+ "PAD": {"id":"菜单id","name":"菜单名称"}
14307
+ }
14308
+ *
14309
+ * @type string
14310
+ */
14311
+ routerConfig?: string;
14100
14312
  /**
14101
14313
  * 租户id
14102
14314
  *
@@ -14213,6 +14425,16 @@ export interface MessageTmplResponse {
14213
14425
  * @type string
14214
14426
  */
14215
14427
  pushType?: string;
14428
+ /**
14429
+ * 跳转配置: {
14430
+ "WEB": {"id":"菜单id","name":"菜单名称"},
14431
+ "MOBILE": {"id":"菜单id","name":"菜单名称"},
14432
+ "PAD": {"id":"菜单id","name":"菜单名称"}
14433
+ }
14434
+ *
14435
+ * @type string
14436
+ */
14437
+ routerConfig?: string;
14216
14438
  /**
14217
14439
  * 租户id
14218
14440
  *
@@ -14371,6 +14593,18 @@ export interface MessageTmplSendRequest {
14371
14593
  * @type string
14372
14594
  */
14373
14595
  rangUser?: string;
14596
+ /**
14597
+ *
14598
+ *
14599
+ * @type string
14600
+ */
14601
+ routerConfig?: string;
14602
+ /**
14603
+ *
14604
+ *
14605
+ * @type string
14606
+ */
14607
+ routerParams?: string;
14374
14608
  /**
14375
14609
  * 支持流程
14376
14610
  *
@@ -15025,6 +15259,12 @@ export interface ModelMeta {
15025
15259
  * @type string
15026
15260
  */
15027
15261
  displayField?: string;
15262
+ /**
15263
+ *
15264
+ *
15265
+ * @type string
15266
+ */
15267
+ foreignTable?: string;
15028
15268
  /**
15029
15269
  *
15030
15270
  *
@@ -15103,6 +15343,12 @@ export interface ModelMeta {
15103
15343
  * @type string
15104
15344
  */
15105
15345
  refModelKey?: string;
15346
+ /**
15347
+ *
15348
+ *
15349
+ * @type number
15350
+ */
15351
+ shared?: number;
15106
15352
  /**
15107
15353
  *
15108
15354
  *
@@ -15219,6 +15465,12 @@ export interface ModelMetaDTO {
15219
15465
  * @type FieldMetaDTO[]
15220
15466
  */
15221
15467
  fieldMetaList?: FieldMetaDTO[];
15468
+ /**
15469
+ *
15470
+ *
15471
+ * @type string
15472
+ */
15473
+ foreignTable?: string;
15222
15474
  /**
15223
15475
  *
15224
15476
  *
@@ -15309,6 +15561,12 @@ export interface ModelMetaDTO {
15309
15561
  * @type string
15310
15562
  */
15311
15563
  refModelKey?: string;
15564
+ /**
15565
+ *
15566
+ *
15567
+ * @type number
15568
+ */
15569
+ shared?: number;
15312
15570
  /**
15313
15571
  *
15314
15572
  *
@@ -15445,6 +15703,12 @@ export interface ModelMetaResponse {
15445
15703
  * @type PruneFieldMetaResponse[]
15446
15704
  */
15447
15705
  fieldMetas?: PruneFieldMetaResponse[];
15706
+ /**
15707
+ *
15708
+ *
15709
+ * @type string
15710
+ */
15711
+ foreignTable?: string;
15448
15712
  /**
15449
15713
  * 主键
15450
15714
  *
@@ -15511,6 +15775,12 @@ export interface ModelMetaResponse {
15511
15775
  * @type string
15512
15776
  */
15513
15777
  refModelKey?: string;
15778
+ /**
15779
+ * 是否主模型(0: 否 1: 是)
15780
+ *
15781
+ * @type number
15782
+ */
15783
+ shared?: number;
15514
15784
  /**
15515
15785
  * 特殊配置
15516
15786
  *
@@ -30057,6 +30327,12 @@ export interface RelationResponse {
30057
30327
  * @type RelationResponse[]
30058
30328
  */
30059
30329
  children?: RelationResponse[];
30330
+ /**
30331
+ * 创建人
30332
+ *
30333
+ * @type string
30334
+ */
30335
+ createUserId?: string;
30060
30336
  /**
30061
30337
  * 实体模型的默认显示字段
30062
30338
  *
@@ -30093,6 +30369,12 @@ export interface RelationResponse {
30093
30369
  * @type string
30094
30370
  */
30095
30371
  name?: string;
30372
+ /**
30373
+ * 是否主模型(0: 否 1: 是)
30374
+ *
30375
+ * @type number
30376
+ */
30377
+ shared?: number;
30096
30378
  /**
30097
30379
  * 排序
30098
30380
  *
@@ -34498,6 +34780,398 @@ export interface TraceSettingResponse {
34498
34780
  */
34499
34781
  treeData?: object[];
34500
34782
  }
34783
+ export interface TransactionDTO {
34784
+ /**
34785
+ *
34786
+ *
34787
+ * @type TransactionVersion[]
34788
+ */
34789
+ children?: TransactionVersion[];
34790
+ /**
34791
+ *
34792
+ *
34793
+ * @type string
34794
+ */
34795
+ createTime?: string;
34796
+ /**
34797
+ *
34798
+ *
34799
+ * @type string
34800
+ */
34801
+ createUserId?: string;
34802
+ /**
34803
+ *
34804
+ *
34805
+ * @type string
34806
+ */
34807
+ createUserName?: string;
34808
+ /**
34809
+ *
34810
+ *
34811
+ * @type number
34812
+ */
34813
+ deleted?: number;
34814
+ /**
34815
+ * 备注
34816
+ *
34817
+ * @type string
34818
+ */
34819
+ description?: string;
34820
+ /**
34821
+ * id
34822
+ *
34823
+ * @type string
34824
+ */
34825
+ id?: string;
34826
+ /**
34827
+ * 事务key
34828
+ *
34829
+ * @type string
34830
+ */
34831
+ key?: string;
34832
+ /**
34833
+ * 绑定模型key
34834
+ *
34835
+ * @type string
34836
+ */
34837
+ modelKey?: string;
34838
+ /**
34839
+ * 绑定模型
34840
+ *
34841
+ * @type string
34842
+ */
34843
+ modelName?: string;
34844
+ /**
34845
+ *
34846
+ *
34847
+ * @type string
34848
+ */
34849
+ modifyTime?: string;
34850
+ /**
34851
+ *
34852
+ *
34853
+ * @type string
34854
+ */
34855
+ modifyUserId?: string;
34856
+ /**
34857
+ *
34858
+ *
34859
+ * @type string
34860
+ */
34861
+ modifyUserName?: string;
34862
+ /**
34863
+ * 事务名称
34864
+ *
34865
+ * @type string
34866
+ */
34867
+ name?: string;
34868
+ /**
34869
+ * 流程定义id
34870
+ *
34871
+ * @type string
34872
+ */
34873
+ procDefId?: string;
34874
+ }
34875
+ export interface TransactionRequest {
34876
+ /**
34877
+ * 父id
34878
+ *
34879
+ * @type string
34880
+ */
34881
+ baseId?: string;
34882
+ /**
34883
+ * 是否默认版本 1是 0否
34884
+ *
34885
+ * @type number
34886
+ */
34887
+ default?: number;
34888
+ /**
34889
+ * 备注
34890
+ *
34891
+ * @type string
34892
+ */
34893
+ description?: string;
34894
+ /**
34895
+ * 设计json
34896
+ *
34897
+ * @type string
34898
+ */
34899
+ designerJson?: string;
34900
+ /**
34901
+ * 详情页设计json
34902
+ *
34903
+ * @type string
34904
+ */
34905
+ detailDesignerJson?: string;
34906
+ /**
34907
+ * 详情页运行时json
34908
+ *
34909
+ * @type string
34910
+ */
34911
+ detailRuntimeJson?: string;
34912
+ /**
34913
+ * 事务key
34914
+ *
34915
+ * @type string
34916
+ */
34917
+ key?: string;
34918
+ /**
34919
+ * 绑定模型key
34920
+ *
34921
+ * @type string
34922
+ */
34923
+ modelKey?: string;
34924
+ /**
34925
+ * 事务名称
34926
+ *
34927
+ * @type string
34928
+ */
34929
+ name?: string;
34930
+ /**
34931
+ * 运行时json
34932
+ *
34933
+ * @type string
34934
+ */
34935
+ runtimeJson?: string;
34936
+ /**
34937
+ * 版本
34938
+ *
34939
+ * @type string
34940
+ */
34941
+ version?: string;
34942
+ }
34943
+ export interface TransactionResponse {
34944
+ /**
34945
+ * 父id
34946
+ *
34947
+ * @type string
34948
+ */
34949
+ baseId?: string;
34950
+ /**
34951
+ *
34952
+ *
34953
+ * @type string
34954
+ */
34955
+ createTime?: string;
34956
+ /**
34957
+ *
34958
+ *
34959
+ * @type string
34960
+ */
34961
+ createUserId?: string;
34962
+ /**
34963
+ *
34964
+ *
34965
+ * @type string
34966
+ */
34967
+ createUserName?: string;
34968
+ /**
34969
+ * 是否默认版本 1是 0否
34970
+ *
34971
+ * @type number
34972
+ */
34973
+ defaulted?: number;
34974
+ /**
34975
+ * 备注
34976
+ *
34977
+ * @type string
34978
+ */
34979
+ description?: string;
34980
+ /**
34981
+ * 设计json
34982
+ *
34983
+ * @type string
34984
+ */
34985
+ designerJson?: string;
34986
+ /**
34987
+ * 详情页设计json
34988
+ *
34989
+ * @type string
34990
+ */
34991
+ detailDesignerJson?: string;
34992
+ /**
34993
+ * 详情页运行时json
34994
+ *
34995
+ * @type string
34996
+ */
34997
+ detailRuntimeJson?: string;
34998
+ /**
34999
+ * id
35000
+ *
35001
+ * @type string
35002
+ */
35003
+ id?: string;
35004
+ /**
35005
+ * 事务key
35006
+ *
35007
+ * @type string
35008
+ */
35009
+ key?: string;
35010
+ /**
35011
+ * 绑定模型key
35012
+ *
35013
+ * @type string
35014
+ */
35015
+ modelKey?: string;
35016
+ /**
35017
+ * 模型名称
35018
+ *
35019
+ * @type string
35020
+ */
35021
+ modelName?: string;
35022
+ /**
35023
+ *
35024
+ *
35025
+ * @type string
35026
+ */
35027
+ modifyTime?: string;
35028
+ /**
35029
+ *
35030
+ *
35031
+ * @type string
35032
+ */
35033
+ modifyUserId?: string;
35034
+ /**
35035
+ *
35036
+ *
35037
+ * @type string
35038
+ */
35039
+ modifyUserName?: string;
35040
+ /**
35041
+ * 事务名称
35042
+ *
35043
+ * @type string
35044
+ */
35045
+ name?: string;
35046
+ /**
35047
+ * 流程定义id
35048
+ *
35049
+ * @type string
35050
+ */
35051
+ procDefId?: string;
35052
+ /**
35053
+ * 运行时json
35054
+ *
35055
+ * @type string
35056
+ */
35057
+ runtimeJson?: string;
35058
+ /**
35059
+ * 是否系统内置(0自定义、1内置)
35060
+ *
35061
+ * @type number
35062
+ */
35063
+ sysBuiltin?: number;
35064
+ /**
35065
+ * 版本
35066
+ *
35067
+ * @type string
35068
+ */
35069
+ version?: string;
35070
+ }
35071
+ export interface TransactionVersion {
35072
+ /**
35073
+ * 父id
35074
+ *
35075
+ * @type string
35076
+ */
35077
+ baseId?: string;
35078
+ /**
35079
+ *
35080
+ *
35081
+ * @type string
35082
+ */
35083
+ createTime?: string;
35084
+ /**
35085
+ *
35086
+ *
35087
+ * @type string
35088
+ */
35089
+ createUserId?: string;
35090
+ /**
35091
+ *
35092
+ *
35093
+ * @type string
35094
+ */
35095
+ createUserName?: string;
35096
+ /**
35097
+ * 是否默认版本 1是 0否
35098
+ *
35099
+ * @type number
35100
+ */
35101
+ defaulted?: number;
35102
+ /**
35103
+ *
35104
+ *
35105
+ * @type number
35106
+ */
35107
+ deleted?: number;
35108
+ /**
35109
+ * id
35110
+ *
35111
+ * @type string
35112
+ */
35113
+ id?: string;
35114
+ /**
35115
+ * 事务key
35116
+ *
35117
+ * @type string
35118
+ */
35119
+ key?: string;
35120
+ /**
35121
+ * 绑定模型key
35122
+ *
35123
+ * @type string
35124
+ */
35125
+ modelKey?: string;
35126
+ /**
35127
+ * 绑定模型
35128
+ *
35129
+ * @type string
35130
+ */
35131
+ modelName?: string;
35132
+ /**
35133
+ *
35134
+ *
35135
+ * @type string
35136
+ */
35137
+ modifyTime?: string;
35138
+ /**
35139
+ *
35140
+ *
35141
+ * @type string
35142
+ */
35143
+ modifyUserId?: string;
35144
+ /**
35145
+ *
35146
+ *
35147
+ * @type string
35148
+ */
35149
+ modifyUserName?: string;
35150
+ /**
35151
+ * 事务名称
35152
+ *
35153
+ * @type string
35154
+ */
35155
+ name?: string;
35156
+ /**
35157
+ * 流程定义id
35158
+ *
35159
+ * @type string
35160
+ */
35161
+ procDefId?: string;
35162
+ /**
35163
+ * 是否系统内置(0自定义、1内置)
35164
+ *
35165
+ * @type number
35166
+ */
35167
+ sysBuiltin?: number;
35168
+ /**
35169
+ * 版本
35170
+ *
35171
+ * @type string
35172
+ */
35173
+ version?: string;
35174
+ }
34501
35175
  export interface TransferAllWorkItemRequest {
34502
35176
  /**
34503
35177
  *