@gct-paas/api 0.1.4-test.0 → 0.1.5-dev.1

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 (58) hide show
  1. package/dist/index.esm.min.js +4 -1
  2. package/dist/index.system.min.js +4 -1
  3. package/es/apaas/service/api-config.mjs +111 -89
  4. package/es/apaas/service/apis/app-global-settings.service.d.ts +0 -4
  5. package/es/apaas/service/apis/audit-log.service.d.ts +1 -1
  6. package/es/apaas/service/apis/data-source.service.d.ts +4 -0
  7. package/es/apaas/service/apis/designer-common.service.d.ts +2 -2
  8. package/es/apaas/service/apis/edhr-instance.service.d.ts +12 -0
  9. package/es/apaas/service/apis/enum-model-field.service.d.ts +8 -0
  10. package/es/apaas/service/apis/file-resource.service.d.ts +1 -1
  11. package/es/apaas/service/apis/file.service.d.ts +5 -1
  12. package/es/apaas/service/apis/i18n-info.service.d.ts +1 -1
  13. package/es/apaas/service/apis/label.service.d.ts +1 -1
  14. package/es/apaas/service/apis/medPro.service.d.ts +45 -17
  15. package/es/apaas/service/apis/model-method.service.d.ts +19 -1
  16. package/es/apaas/service/apis/office.service.d.ts +1 -1
  17. package/es/apaas/service/apis/online-form-instance.service.d.ts +28 -0
  18. package/es/apaas/service/apis/online-form-tmpl-export.service.d.ts +1 -1
  19. package/es/apaas/service/apis/online-form-tmpl.service.d.ts +4 -0
  20. package/es/apaas/service/apis/process-task-done.service.d.ts +4 -0
  21. package/es/apaas/service/apis/process-task-todo.service.d.ts +8 -0
  22. package/es/apaas/service/entities.d.ts +189 -1
  23. package/es/apaas/service/index.d.ts +1 -1
  24. package/es/ipaas/service/api-config.mjs +6 -4
  25. package/es/ipaas/service/apis/connector-config.service.d.ts +1 -1
  26. package/es/ipaas/service/apis/flow.service.d.ts +1 -1
  27. package/es/platform/service/api-config.mjs +110 -59
  28. package/es/platform/service/apis/api.service.d.ts +32 -8
  29. package/es/platform/service/apis/apk.service.d.ts +1 -1
  30. package/es/platform/service/apis/app.service.d.ts +1 -1
  31. package/es/platform/service/apis/assets.service.d.ts +1 -1
  32. package/es/platform/service/apis/bi-file.service.d.ts +1 -1
  33. package/es/platform/service/apis/dashboard.service.d.ts +4 -0
  34. package/es/platform/service/apis/device-interconnection-param.service.d.ts +1 -1
  35. package/es/platform/service/apis/device-interconnection.service.d.ts +1 -1
  36. package/es/platform/service/apis/file-task.service.d.ts +13 -0
  37. package/es/platform/service/apis/file.service.d.ts +3 -3
  38. package/es/platform/service/apis/i18n-info.service.d.ts +1 -1
  39. package/es/platform/service/apis/ldap.service.d.ts +1 -1
  40. package/es/platform/service/apis/license.service.d.ts +1 -10
  41. package/es/platform/service/apis/login-log.service.d.ts +13 -0
  42. package/es/platform/service/apis/plat.service.d.ts +8 -1
  43. package/es/platform/service/apis/pn-project.service.d.ts +1 -1
  44. package/es/platform/service/apis/user.service.d.ts +6 -6
  45. package/es/platform/service/entities.d.ts +499 -62
  46. package/es/service/api-service.d.ts +13 -0
  47. package/es/service/api-service.interface.d.ts +6 -0
  48. package/es/service/api-service.mjs +26 -1
  49. package/es/service/http.util.d.ts +7 -0
  50. package/es/service/http.util.mjs +10 -2
  51. package/es/service/index.mjs +2 -0
  52. package/es/service/request.client.d.ts +6 -0
  53. package/es/service/request.client.mjs +35 -0
  54. package/es/utils/index.d.ts +1 -0
  55. package/es/utils/index.mjs +1 -0
  56. package/es/utils/native-http/native-http.d.ts +6 -0
  57. package/es/utils/native-http/native-http.mjs +63 -0
  58. package/package.json +4 -3
@@ -1,3 +1,4 @@
1
+ /* eslint-disable @typescript-eslint/no-empty-object-type */
1
2
  export interface APIDatasetConfigDTO {
2
3
  /**
3
4
  * 开始时间
@@ -36,62 +37,6 @@ export interface APIDatasetConfigDTO {
36
37
  */
37
38
  taskFreqValue?: number;
38
39
  }
39
- export interface AcLicense {
40
- /**
41
- *
42
- *
43
- * @type string
44
- */
45
- appId?: string;
46
- /**
47
- *
48
- *
49
- * @type string
50
- */
51
- category?: string;
52
- /**
53
- *
54
- *
55
- * @type string
56
- */
57
- customerName?: string;
58
- /**
59
- *
60
- *
61
- * @type string
62
- */
63
- effectiveDate?: string;
64
- /**
65
- *
66
- *
67
- * @type string
68
- */
69
- env?: string;
70
- /**
71
- *
72
- *
73
- * @type string
74
- */
75
- expirationDate?: string;
76
- /**
77
- *
78
- *
79
- * @type string
80
- */
81
- id?: string;
82
- /**
83
- *
84
- *
85
- * @type string
86
- */
87
- productName?: string;
88
- /**
89
- *
90
- *
91
- * @type number
92
- */
93
- state?: number;
94
- }
95
40
  export interface AcLicenseResponse {
96
41
  /**
97
42
  * 授权类别 系统授权:system 增购:additional
@@ -144,7 +89,7 @@ export interface AcLicenseResponse {
144
89
  }
145
90
  export interface AccountConfig {
146
91
  /**
147
- * 应用类型 枚举(钉钉 DINGDING,企微 QIYEWEIXIN,飞书 FEISHU)
92
+ * 应用类型 枚举 (钉钉 DINGDING,企微 QIYEWEIXIN,飞书 FEISHU,微软 MICROSOFT)
148
93
  *
149
94
  * @type string
150
95
  */
@@ -602,6 +547,9 @@ export interface AgentResponse {
602
547
  */
603
548
  usage?: string;
604
549
  }
550
+ export interface Annotation {
551
+ // 暂无属性
552
+ }
605
553
  export interface ApiInfo {
606
554
  /**
607
555
  *
@@ -1184,9 +1132,9 @@ export interface AppEffectiveLicense {
1184
1132
  /**
1185
1133
  * license列表
1186
1134
  *
1187
- * @type AcLicense[]
1135
+ * @type LicenseDTO[]
1188
1136
  */
1189
- licenseList?: AcLicense[];
1137
+ licenseList?: LicenseDTO[];
1190
1138
  }
1191
1139
  export interface AppGrantedStatisticDTO {
1192
1140
  /**
@@ -2522,6 +2470,74 @@ export interface AppSettingRequest {
2522
2470
  */
2523
2471
  type?: string;
2524
2472
  }
2473
+ export interface ApplicationContext {
2474
+ /**
2475
+ *
2476
+ *
2477
+ * @type string
2478
+ */
2479
+ applicationName?: string;
2480
+ /**
2481
+ *
2482
+ *
2483
+ * @type AutowireCapableBeanFactory
2484
+ */
2485
+ autowireCapableBeanFactory?: AutowireCapableBeanFactory;
2486
+ /**
2487
+ *
2488
+ *
2489
+ * @type number
2490
+ */
2491
+ beanDefinitionCount?: number;
2492
+ /**
2493
+ *
2494
+ *
2495
+ * @type string[]
2496
+ */
2497
+ beanDefinitionNames?: string[];
2498
+ /**
2499
+ *
2500
+ *
2501
+ * @type ClassLoader
2502
+ */
2503
+ classLoader?: ClassLoader;
2504
+ /**
2505
+ *
2506
+ *
2507
+ * @type string
2508
+ */
2509
+ displayName?: string;
2510
+ /**
2511
+ *
2512
+ *
2513
+ * @type Environment
2514
+ */
2515
+ environment?: Environment;
2516
+ /**
2517
+ *
2518
+ *
2519
+ * @type string
2520
+ */
2521
+ id?: string;
2522
+ /**
2523
+ *
2524
+ *
2525
+ * @type ApplicationContext
2526
+ */
2527
+ parent?: ApplicationContext;
2528
+ /**
2529
+ *
2530
+ *
2531
+ * @type BeanFactory
2532
+ */
2533
+ parentBeanFactory?: BeanFactory;
2534
+ /**
2535
+ *
2536
+ *
2537
+ * @type number
2538
+ */
2539
+ startupDate?: number;
2540
+ }
2525
2541
  export interface AssetsResponse {
2526
2542
  /**
2527
2543
  * 分类ID
@@ -2888,6 +2904,9 @@ export interface AuthConfig {
2888
2904
  */
2889
2905
  title?: string;
2890
2906
  }
2907
+ export interface AutowireCapableBeanFactory {
2908
+ // 暂无属性
2909
+ }
2891
2910
  export interface BIChartConditionDTO {
2892
2911
  /**
2893
2912
  *
@@ -2901,6 +2920,12 @@ export interface BIChartConditionDTO {
2901
2920
  * @type string
2902
2921
  */
2903
2922
  datasetKey?: string;
2923
+ /**
2924
+ *
2925
+ *
2926
+ * @type boolean
2927
+ */
2928
+ dateFieldStatistics?: boolean;
2904
2929
  /**
2905
2930
  *
2906
2931
  *
@@ -2975,6 +3000,12 @@ export interface BIChartExportDTO {
2975
3000
  * @type string
2976
3001
  */
2977
3002
  datasetKey?: string;
3003
+ /**
3004
+ *
3005
+ *
3006
+ * @type boolean
3007
+ */
3008
+ dateFieldStatistics?: boolean;
2978
3009
  /**
2979
3010
  *
2980
3011
  *
@@ -3061,6 +3092,12 @@ export interface BICrossReportDTO {
3061
3092
  * @type string
3062
3093
  */
3063
3094
  datasetKey?: string;
3095
+ /**
3096
+ *
3097
+ *
3098
+ * @type boolean
3099
+ */
3100
+ dateFieldStatistics?: boolean;
3064
3101
  /**
3065
3102
  *
3066
3103
  *
@@ -3142,6 +3179,9 @@ export interface Base64UploadPlatFormRequest {
3142
3179
  */
3143
3180
  filename?: string;
3144
3181
  }
3182
+ export interface BeanFactory {
3183
+ // 暂无属性
3184
+ }
3145
3185
  export interface BiDataSetPreviewRequest {
3146
3186
  /**
3147
3187
  * 描述
@@ -3770,6 +3810,14 @@ export interface CSV数据源表实体类 {
3770
3810
  */
3771
3811
  user_id?: string;
3772
3812
  }
3813
+ export interface CardLoginConfig {
3814
+ /**
3815
+ * 是否启用
3816
+ *
3817
+ * @type number
3818
+ */
3819
+ enabled?: number;
3820
+ }
3773
3821
  export interface Category {
3774
3822
  /**
3775
3823
  *
@@ -3958,6 +4006,38 @@ export interface CategoryResponse {
3958
4006
  */
3959
4007
  sysBuiltin?: number;
3960
4008
  }
4009
+ export interface ClassLoader {
4010
+ /**
4011
+ *
4012
+ *
4013
+ * @type Package[]
4014
+ */
4015
+ definedPackages?: Package[];
4016
+ /**
4017
+ *
4018
+ *
4019
+ * @type string
4020
+ */
4021
+ name?: string;
4022
+ /**
4023
+ *
4024
+ *
4025
+ * @type ClassLoader
4026
+ */
4027
+ parent?: ClassLoader;
4028
+ /**
4029
+ *
4030
+ *
4031
+ * @type boolean
4032
+ */
4033
+ registeredAsParallelCapable?: boolean;
4034
+ /**
4035
+ *
4036
+ *
4037
+ * @type Module
4038
+ */
4039
+ unnamedModule?: Module;
4040
+ }
3961
4041
  export interface ClientsDto {
3962
4042
  /**
3963
4043
  *
@@ -4827,6 +4907,12 @@ export interface DataSourceMainResponse {
4827
4907
  type?: string;
4828
4908
  }
4829
4909
  export interface DataSourcePageRequest {
4910
+ /**
4911
+ * 是否启用
4912
+ *
4913
+ * @type number
4914
+ */
4915
+ enabled?: number;
4830
4916
  /**
4831
4917
  * 应用环境 dev:开发 test:测试 prod:生产
4832
4918
  *
@@ -6200,6 +6286,20 @@ export interface Echart图表主题查询参数 {
6200
6286
  */
6201
6287
  user_id?: string;
6202
6288
  }
6289
+ export interface Environment {
6290
+ /**
6291
+ *
6292
+ *
6293
+ * @type string[]
6294
+ */
6295
+ activeProfiles?: string[];
6296
+ /**
6297
+ *
6298
+ *
6299
+ * @type string[]
6300
+ */
6301
+ defaultProfiles?: string[];
6302
+ }
6203
6303
  export interface ExcelOrgUserSearchReq {
6204
6304
  /**
6205
6305
  * 是否显示下级
@@ -6871,6 +6971,12 @@ export interface FilePreviewDTO {
6871
6971
  * @type string
6872
6972
  */
6873
6973
  datasetKey?: string;
6974
+ /**
6975
+ *
6976
+ *
6977
+ * @type boolean
6978
+ */
6979
+ dateFieldStatistics?: boolean;
6874
6980
  /**
6875
6981
  * 完整的sql
6876
6982
  *
@@ -7239,6 +7345,12 @@ export interface FileTaskResponse {
7239
7345
  * @type string
7240
7346
  */
7241
7347
  name?: string;
7348
+ /**
7349
+ *
7350
+ *
7351
+ * @type IObject
7352
+ */
7353
+ params?: IObject;
7242
7354
  /**
7243
7355
  * 关联数据id(edhr实模板ID)
7244
7356
  *
@@ -7721,6 +7833,18 @@ export interface InternalMessageResponse {
7721
7833
  * @type string
7722
7834
  */
7723
7835
  receiverId?: string;
7836
+ /**
7837
+ * 跳转配置: {"WEB":"菜单id","MOBILE":"菜单id","PAD":"菜单id"}
7838
+ *
7839
+ * @type string
7840
+ */
7841
+ routerConfig?: string;
7842
+ /**
7843
+ * 跳转参数:由调用全局方法方传递
7844
+ *
7845
+ * @type string
7846
+ */
7847
+ routerParams?: string;
7724
7848
  /**
7725
7849
  * 是否支持跳转
7726
7850
  *
@@ -8338,6 +8462,68 @@ export interface LicenseAuthRequest {
8338
8462
  */
8339
8463
  version?: string;
8340
8464
  }
8465
+ export interface LicenseDTO {
8466
+ /**
8467
+ *
8468
+ *
8469
+ * @type string
8470
+ */
8471
+ appId?: string;
8472
+ /**
8473
+ *
8474
+ *
8475
+ * @type string
8476
+ */
8477
+ category?: string;
8478
+ /**
8479
+ *
8480
+ *
8481
+ * @type string
8482
+ */
8483
+ customerName?: string;
8484
+ /**
8485
+ *
8486
+ *
8487
+ * @type string
8488
+ */
8489
+ effectiveDate?: string;
8490
+ /**
8491
+ *
8492
+ *
8493
+ * @type string
8494
+ */
8495
+ env?: string;
8496
+ /**
8497
+ *
8498
+ *
8499
+ * @type string
8500
+ */
8501
+ expirationDate?: string;
8502
+ /**
8503
+ *
8504
+ *
8505
+ * @type string
8506
+ */
8507
+ id?: string;
8508
+ /**
8509
+ *
8510
+ *
8511
+ * @type string
8512
+ */
8513
+ productName?: string;
8514
+ /**
8515
+ *
8516
+ *
8517
+ * @type string
8518
+ */
8519
+ productType?: string;
8520
+ /**
8521
+ *
8522
+ *
8523
+ * @type number
8524
+ */
8525
+ state?: number;
8526
+ }
8341
8527
  export interface LicenseExpireMsg {
8342
8528
  /**
8343
8529
  * 授权类别 系统授权:system 增购:additional
@@ -8468,7 +8654,7 @@ export interface LoginModeConfig {
8468
8654
  */
8469
8655
  address?: string;
8470
8656
  /**
8471
- * 登录方式类型 枚举(ACCOUNT/ 账号登录,DOMAIN_ACCOUNT/域账号密码登录,MOBILE)
8657
+ * 登录方式类型 枚举(ACCOUNT/ 账号登录,DOMAIN_ACCOUNT/域账号密码登录,MOBILE,CARD:刷卡登录)
8472
8658
  *
8473
8659
  * @type string
8474
8660
  */
@@ -9640,6 +9826,73 @@ export interface ModelResponse {
9640
9826
  */
9641
9827
  providerName?: string;
9642
9828
  }
9829
+ export interface Module {
9830
+ /**
9831
+ *
9832
+ *
9833
+ * @type Annotation[]
9834
+ */
9835
+ annotations?: Annotation[];
9836
+ /**
9837
+ *
9838
+ *
9839
+ * @type ClassLoader
9840
+ */
9841
+ classLoader?: ClassLoader;
9842
+ /**
9843
+ *
9844
+ *
9845
+ * @type Annotation[]
9846
+ */
9847
+ declaredAnnotations?: Annotation[];
9848
+ /**
9849
+ *
9850
+ *
9851
+ * @type ModuleDescriptor
9852
+ */
9853
+ descriptor?: ModuleDescriptor;
9854
+ /**
9855
+ *
9856
+ *
9857
+ * @type ModuleLayer
9858
+ */
9859
+ layer?: ModuleLayer;
9860
+ /**
9861
+ *
9862
+ *
9863
+ * @type string
9864
+ */
9865
+ name?: string;
9866
+ /**
9867
+ *
9868
+ *
9869
+ * @type boolean
9870
+ */
9871
+ named?: boolean;
9872
+ /**
9873
+ *
9874
+ *
9875
+ * @type string[]
9876
+ */
9877
+ packages?: string[];
9878
+ }
9879
+ export interface ModuleDescriptor {
9880
+ /**
9881
+ *
9882
+ *
9883
+ * @type boolean
9884
+ */
9885
+ automatic?: boolean;
9886
+ /**
9887
+ *
9888
+ *
9889
+ * @type boolean
9890
+ */
9891
+ open?: boolean;
9892
+ }
9893
+ export interface ModuleLayer {
9894
+ // 暂无属性
9895
+ }
9643
9896
  export interface MqttPropertiesDTO {
9644
9897
  /**
9645
9898
  * 密码
@@ -10781,6 +11034,12 @@ export interface OrgAddOrUpdateUserRequest {
10781
11034
  username?: string;
10782
11035
  }
10783
11036
  export interface OrgBaseInfo {
11037
+ /**
11038
+ *
11039
+ *
11040
+ * @type string
11041
+ */
11042
+ createTime?: string;
10784
11043
  /**
10785
11044
  *
10786
11045
  *
@@ -10811,6 +11070,12 @@ export interface OrgBaseInfo {
10811
11070
  * @type string
10812
11071
  */
10813
11072
  parentId?: string;
11073
+ /**
11074
+ *
11075
+ *
11076
+ * @type string
11077
+ */
11078
+ type?: string;
10814
11079
  }
10815
11080
  export interface OrgConfig {
10816
11081
  /**
@@ -11620,6 +11885,68 @@ export interface OrgUserSearchRequest {
11620
11885
  */
11621
11886
  username?: string;
11622
11887
  }
11888
+ export interface Package {
11889
+ /**
11890
+ *
11891
+ *
11892
+ * @type Annotation[]
11893
+ */
11894
+ annotations?: Annotation[];
11895
+ /**
11896
+ *
11897
+ *
11898
+ * @type Annotation[]
11899
+ */
11900
+ declaredAnnotations?: Annotation[];
11901
+ /**
11902
+ *
11903
+ *
11904
+ * @type string
11905
+ */
11906
+ implementationTitle?: string;
11907
+ /**
11908
+ *
11909
+ *
11910
+ * @type string
11911
+ */
11912
+ implementationVendor?: string;
11913
+ /**
11914
+ *
11915
+ *
11916
+ * @type string
11917
+ */
11918
+ implementationVersion?: string;
11919
+ /**
11920
+ *
11921
+ *
11922
+ * @type string
11923
+ */
11924
+ name?: string;
11925
+ /**
11926
+ *
11927
+ *
11928
+ * @type boolean
11929
+ */
11930
+ sealed?: boolean;
11931
+ /**
11932
+ *
11933
+ *
11934
+ * @type string
11935
+ */
11936
+ specificationTitle?: string;
11937
+ /**
11938
+ *
11939
+ *
11940
+ * @type string
11941
+ */
11942
+ specificationVendor?: string;
11943
+ /**
11944
+ *
11945
+ *
11946
+ * @type string
11947
+ */
11948
+ specificationVersion?: string;
11949
+ }
11623
11950
  export interface PackageJson {
11624
11951
  /**
11625
11952
  *
@@ -13847,6 +14174,12 @@ export interface PnDataset {
13847
14174
  * @type number
13848
14175
  */
13849
14176
  deleted?: number;
14177
+ /**
14178
+ *
14179
+ *
14180
+ * @type string
14181
+ */
14182
+ designSql?: string;
13850
14183
  /**
13851
14184
  *
13852
14185
  *
@@ -14027,6 +14360,12 @@ export interface PnDatasetRequest {
14027
14360
  * @type string
14028
14361
  */
14029
14362
  databaseType?: string;
14363
+ /**
14364
+ * 设计的sql - 可包含注释
14365
+ *
14366
+ * @type string
14367
+ */
14368
+ designSql?: string;
14030
14369
  /**
14031
14370
  * 文件地址
14032
14371
  *
@@ -14125,6 +14464,12 @@ export interface PnDatasetResponse {
14125
14464
  * @type string
14126
14465
  */
14127
14466
  databaseType?: string;
14467
+ /**
14468
+ * 设计的sql - 可包含注释
14469
+ *
14470
+ * @type string
14471
+ */
14472
+ designSql?: string;
14128
14473
  /**
14129
14474
  * 完整的sql
14130
14475
  *
@@ -15980,6 +16325,74 @@ export interface QueryBean {
15980
16325
  */
15981
16326
  sql?: string;
15982
16327
  }
16328
+ export interface RedirectView {
16329
+ /**
16330
+ *
16331
+ *
16332
+ * @type ApplicationContext
16333
+ */
16334
+ applicationContext?: ApplicationContext;
16335
+ /**
16336
+ *
16337
+ *
16338
+ * @type IObject
16339
+ */
16340
+ attributesMap?: IObject;
16341
+ /**
16342
+ *
16343
+ *
16344
+ * @type string
16345
+ */
16346
+ beanName?: string;
16347
+ /**
16348
+ *
16349
+ *
16350
+ * @type string
16351
+ */
16352
+ contentType?: string;
16353
+ /**
16354
+ *
16355
+ *
16356
+ * @type boolean
16357
+ */
16358
+ exposePathVariables?: boolean;
16359
+ /**
16360
+ *
16361
+ *
16362
+ * @type string[]
16363
+ */
16364
+ hosts?: string[];
16365
+ /**
16366
+ *
16367
+ *
16368
+ * @type boolean
16369
+ */
16370
+ propagateQueryProperties?: boolean;
16371
+ /**
16372
+ *
16373
+ *
16374
+ * @type boolean
16375
+ */
16376
+ redirectView?: boolean;
16377
+ /**
16378
+ *
16379
+ *
16380
+ * @type string
16381
+ */
16382
+ requestContextAttribute?: string;
16383
+ /**
16384
+ *
16385
+ *
16386
+ * @type IObject
16387
+ */
16388
+ staticAttributes?: IObject;
16389
+ /**
16390
+ *
16391
+ *
16392
+ * @type string
16393
+ */
16394
+ url?: string;
16395
+ }
15983
16396
  export interface RegexpRequest {
15984
16397
  /**
15985
16398
  * 正则名称
@@ -18728,7 +19141,7 @@ export interface ThirdAppConfigReq {
18728
19141
  */
18729
19142
  appId?: string;
18730
19143
  /**
18731
- * 登录方式类型 枚举(QIYEWEIXIN/ 企微登录,FEISHU/飞书登录,DINGDING/钉钉登录 )
19144
+ * 登录方式类型 枚举 (QIYEWEIXIN/ 企微登录,FEISHU/飞书登录,DINGDING/钉钉登录,MICROSOFT/微软登录)
18732
19145
  *
18733
19146
  * @type string
18734
19147
  */
@@ -18894,7 +19307,7 @@ export interface ThirdPartyLoginConfig {
18894
19307
  */
18895
19308
  appId?: string;
18896
19309
  /**
18897
- * 登录方式类型 枚举(QIYEWEIXIN/ 企微登录,FEISHU/飞书登录,DINGDING/钉钉登录 )
19310
+ * 登录方式类型 枚举 (QIYEWEIXIN/ 企微登录,FEISHU/飞书登录,DINGDING/钉钉登录,MICROSOFT/微软登录)
18898
19311
  *
18899
19312
  * @type string
18900
19313
  */
@@ -19477,6 +19890,12 @@ export interface UserBaseInfo {
19477
19890
  username?: string;
19478
19891
  }
19479
19892
  export interface UserBaseReq {
19893
+ /**
19894
+ *
19895
+ *
19896
+ * @type string
19897
+ */
19898
+ authCode?: string;
19480
19899
  /**
19481
19900
  * 授权code
19482
19901
  *
@@ -19495,6 +19914,18 @@ export interface UserBaseReq {
19495
19914
  * @type string
19496
19915
  */
19497
19916
  password?: string;
19917
+ /**
19918
+ *
19919
+ *
19920
+ * @type string
19921
+ */
19922
+ referer?: string;
19923
+ /**
19924
+ *
19925
+ *
19926
+ * @type string
19927
+ */
19928
+ source?: string;
19498
19929
  /**
19499
19930
  * 账号
19500
19931
  *
@@ -21441,6 +21872,12 @@ export interface UserTenantDTO {
21441
21872
  * @type string
21442
21873
  */
21443
21874
  id?: string;
21875
+ /**
21876
+ * 是否最后登录租户,0:否 1:是
21877
+ *
21878
+ * @type number
21879
+ */
21880
+ latestLogin?: number;
21444
21881
  /**
21445
21882
  * 直属上级id
21446
21883
  *