@gct-paas/api 0.1.4-dev.3 → 0.1.4-dev.5

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 (48) 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 +15 -2
  4. package/es/apaas/service/apis/audit-log.service.d.ts +1 -1
  5. package/es/apaas/service/apis/designer-common.service.d.ts +2 -2
  6. package/es/apaas/service/apis/enum-model-field.service.d.ts +8 -0
  7. package/es/apaas/service/apis/file-resource.service.d.ts +1 -1
  8. package/es/apaas/service/apis/file.service.d.ts +1 -1
  9. package/es/apaas/service/apis/i18n-info.service.d.ts +1 -1
  10. package/es/apaas/service/apis/label.service.d.ts +1 -1
  11. package/es/apaas/service/apis/model-method.service.d.ts +19 -1
  12. package/es/apaas/service/apis/office.service.d.ts +1 -1
  13. package/es/apaas/service/apis/online-form-tmpl-export.service.d.ts +1 -1
  14. package/es/apaas/service/apis/online-form-tmpl.service.d.ts +4 -0
  15. package/es/apaas/service/apis/process-task-done.service.d.ts +4 -0
  16. package/es/apaas/service/apis/process-task-todo.service.d.ts +8 -0
  17. package/es/apaas/service/entities.d.ts +105 -1
  18. package/es/ipaas/service/apis/connector-config.service.d.ts +1 -1
  19. package/es/ipaas/service/apis/flow.service.d.ts +1 -1
  20. package/es/platform/service/api-config.mjs +22 -0
  21. package/es/platform/service/apis/api.service.d.ts +21 -1
  22. package/es/platform/service/apis/apk.service.d.ts +1 -1
  23. package/es/platform/service/apis/app.service.d.ts +5 -1
  24. package/es/platform/service/apis/assets.service.d.ts +1 -1
  25. package/es/platform/service/apis/bi-file.service.d.ts +1 -1
  26. package/es/platform/service/apis/dashboard.service.d.ts +4 -0
  27. package/es/platform/service/apis/device-interconnection-param.service.d.ts +1 -1
  28. package/es/platform/service/apis/device-interconnection.service.d.ts +1 -1
  29. package/es/platform/service/apis/file.service.d.ts +3 -3
  30. package/es/platform/service/apis/i18n-info.service.d.ts +1 -1
  31. package/es/platform/service/apis/ldap.service.d.ts +1 -1
  32. package/es/platform/service/apis/login-log.service.d.ts +13 -0
  33. package/es/platform/service/apis/org.service.d.ts +4 -0
  34. package/es/platform/service/apis/plat.service.d.ts +8 -1
  35. package/es/platform/service/apis/pn-project.service.d.ts +1 -1
  36. package/es/platform/service/apis/tenant.service.d.ts +4 -0
  37. package/es/platform/service/apis/user.service.d.ts +6 -6
  38. package/es/platform/service/entities.d.ts +393 -4
  39. package/es/service/http.util.d.ts +7 -0
  40. package/es/service/http.util.mjs +8 -1
  41. package/es/service/index.mjs +2 -0
  42. package/es/service/request.client.d.ts +6 -0
  43. package/es/service/request.client.mjs +35 -0
  44. package/es/utils/index.d.ts +1 -0
  45. package/es/utils/index.mjs +1 -0
  46. package/es/utils/native-http/native-http.d.ts +6 -0
  47. package/es/utils/native-http/native-http.mjs +63 -0
  48. package/package.json +4 -3
@@ -97,7 +97,7 @@ export interface I18NInfoService {
97
97
  query: postLangUploadQuery,
98
98
  data: UploadFileData,
99
99
  config?: Partial<AxiosRequestConfig>,
100
- ): Promise<object>;
100
+ ): Promise<IHttpResponse<object>>;
101
101
  /**
102
102
  * 分页列表
103
103
  */
@@ -6,5 +6,5 @@ export interface LdapService {
6
6
  postUploadCertificate(
7
7
  data: UploadFileData,
8
8
  config?: Partial<AxiosRequestConfig>,
9
- ): Promise<string>;
9
+ ): Promise<IHttpResponse<string>>;
10
10
  }
@@ -27,6 +27,12 @@ export interface getPageListQuery {
27
27
  */
28
28
  startTime?: string;
29
29
  }
30
+ export interface getTenantLogQuery {
31
+ /**
32
+ * 租户ID
33
+ */
34
+ tenantId: string;
35
+ }
30
36
  export interface LoginLogService {
31
37
  /**
32
38
  * 登录足迹分页列表
@@ -35,4 +41,11 @@ export interface LoginLogService {
35
41
  query: getPageListQuery,
36
42
  config?: Partial<AxiosRequestConfig>,
37
43
  ): Promise<IPage<LoginLogResponse>>;
44
+ /**
45
+ * 最近登录租户
46
+ */
47
+ getTenantLog(
48
+ query: getTenantLogQuery,
49
+ config?: Partial<AxiosRequestConfig>,
50
+ ): Promise<string>;
38
51
  }
@@ -81,6 +81,10 @@ export interface getUserPageListQuery {
81
81
  * 排序方式:ASC/DESC, 不传默认 ASC
82
82
  */
83
83
  sortType?: string;
84
+ /**
85
+ * 参数来源,0企业后台管理、1租户后台管理
86
+ */
87
+ source?: number;
84
88
  /**
85
89
  * 创建开始时间
86
90
  */
@@ -3,6 +3,7 @@ import type {
3
3
  SysConfigResponse,
4
4
  SysConfigRequest,
5
5
  PlatformBaseConfig,
6
+ CardLoginConfig,
6
7
  DingTalkConfig,
7
8
  MailConfig,
8
9
  FeiShuConfig,
@@ -63,6 +64,12 @@ export interface PlatService {
63
64
  data: PlatformBaseConfig,
64
65
  config?: Partial<AxiosRequestConfig>,
65
66
  ): Promise<string>;
67
+ /**
68
+ * 查询刷卡登录是否启用
69
+ */
70
+ getCardLoginCfg(
71
+ config?: Partial<AxiosRequestConfig>,
72
+ ): Promise<CardLoginConfig>;
66
73
  /**
67
74
  * 钉钉设置 保存/更新
68
75
  */
@@ -146,7 +153,7 @@ export interface PlatService {
146
153
  postUploadCertFile(
147
154
  data: UploadFileData,
148
155
  config?: Partial<AxiosRequestConfig>,
149
- ): Promise<string>;
156
+ ): Promise<IHttpResponse<string>>;
150
157
  /**
151
158
  * (平台管理)添加管理员 保存
152
159
  */
@@ -123,7 +123,7 @@ export interface PnProjectService {
123
123
  query: postImportQuery,
124
124
  data: UploadFileData,
125
125
  config?: Partial<AxiosRequestConfig>,
126
- ): Promise<string>;
126
+ ): Promise<IHttpResponse<string>>;
127
127
  /**
128
128
  * 详情
129
129
  */
@@ -131,6 +131,10 @@ export interface getManagementOrgUserPageListQuery {
131
131
  * 排序方式:ASC/DESC, 不传默认 ASC
132
132
  */
133
133
  sortType?: string;
134
+ /**
135
+ * 参数来源,0企业后台管理、1租户后台管理
136
+ */
137
+ source?: number;
134
138
  /**
135
139
  * 创建开始时间
136
140
  */
@@ -160,7 +160,7 @@ export interface UserService {
160
160
  query: postOrgPlatImportQuery,
161
161
  data: UploadFileData,
162
162
  config?: Partial<AxiosRequestConfig>,
163
- ): Promise<object>;
163
+ ): Promise<IHttpResponse<object>>;
164
164
  /**
165
165
  * (平台管理)组织成员 导出部门人员
166
166
  */
@@ -175,7 +175,7 @@ export interface UserService {
175
175
  query: postOrgTenantImportQuery,
176
176
  data: UploadFileData,
177
177
  config?: Partial<AxiosRequestConfig>,
178
- ): Promise<object>;
178
+ ): Promise<IHttpResponse<object>>;
179
179
  /**
180
180
  * (租户管理后台)组织成员 导入人员
181
181
  */
@@ -183,7 +183,7 @@ export interface UserService {
183
183
  query: postOrgTenantImport4AppQuery,
184
184
  data: UploadFileData,
185
185
  config?: Partial<AxiosRequestConfig>,
186
- ): Promise<object>;
186
+ ): Promise<IHttpResponse<object>>;
187
187
  /**
188
188
  * (租户管理后台)组织成员 导出部门人员
189
189
  */
@@ -211,7 +211,7 @@ export interface UserService {
211
211
  postPlatImport(
212
212
  data: UploadFileData,
213
213
  config?: Partial<AxiosRequestConfig>,
214
- ): Promise<object>;
214
+ ): Promise<IHttpResponse<object>>;
215
215
  /**
216
216
  * (平台管理)用户管理 导出人员
217
217
  */
@@ -260,14 +260,14 @@ export interface UserService {
260
260
  postTenantImport(
261
261
  data: UploadFileData,
262
262
  config?: Partial<AxiosRequestConfig>,
263
- ): Promise<object>;
263
+ ): Promise<IHttpResponse<object>>;
264
264
  /**
265
265
  * (租户管理后台)用户管理 导入(平台/公司)人员
266
266
  */
267
267
  postTenantImport4App(
268
268
  data: UploadFileData,
269
269
  config?: Partial<AxiosRequestConfig>,
270
- ): Promise<object>;
270
+ ): Promise<IHttpResponse<object>>;
271
271
  /**
272
272
  * (租户管理后台)用户管理 导出人员
273
273
  */
@@ -1,3 +1,4 @@
1
+ /* eslint-disable @typescript-eslint/no-empty-object-type */
1
2
  export interface APIDatasetConfigDTO {
2
3
  /**
3
4
  * 开始时间
@@ -88,7 +89,7 @@ export interface AcLicenseResponse {
88
89
  }
89
90
  export interface AccountConfig {
90
91
  /**
91
- * 应用类型 枚举(钉钉 DINGDING,企微 QIYEWEIXIN,飞书 FEISHU)
92
+ * 应用类型 枚举 (钉钉 DINGDING,企微 QIYEWEIXIN,飞书 FEISHU,微软 MICROSOFT)
92
93
  *
93
94
  * @type string
94
95
  */
@@ -546,6 +547,9 @@ export interface AgentResponse {
546
547
  */
547
548
  usage?: string;
548
549
  }
550
+ export interface Annotation {
551
+ // 暂无属性
552
+ }
549
553
  export interface ApiInfo {
550
554
  /**
551
555
  *
@@ -2466,6 +2470,74 @@ export interface AppSettingRequest {
2466
2470
  */
2467
2471
  type?: string;
2468
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
+ }
2469
2541
  export interface AssetsResponse {
2470
2542
  /**
2471
2543
  * 分类ID
@@ -2832,6 +2904,9 @@ export interface AuthConfig {
2832
2904
  */
2833
2905
  title?: string;
2834
2906
  }
2907
+ export interface AutowireCapableBeanFactory {
2908
+ // 暂无属性
2909
+ }
2835
2910
  export interface BIChartConditionDTO {
2836
2911
  /**
2837
2912
  *
@@ -3104,6 +3179,9 @@ export interface Base64UploadPlatFormRequest {
3104
3179
  */
3105
3180
  filename?: string;
3106
3181
  }
3182
+ export interface BeanFactory {
3183
+ // 暂无属性
3184
+ }
3107
3185
  export interface BiDataSetPreviewRequest {
3108
3186
  /**
3109
3187
  * 描述
@@ -3732,6 +3810,14 @@ export interface CSV数据源表实体类 {
3732
3810
  */
3733
3811
  user_id?: string;
3734
3812
  }
3813
+ export interface CardLoginConfig {
3814
+ /**
3815
+ * 是否启用
3816
+ *
3817
+ * @type number
3818
+ */
3819
+ enabled?: number;
3820
+ }
3735
3821
  export interface Category {
3736
3822
  /**
3737
3823
  *
@@ -3920,6 +4006,38 @@ export interface CategoryResponse {
3920
4006
  */
3921
4007
  sysBuiltin?: number;
3922
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
+ }
3923
4041
  export interface ClientsDto {
3924
4042
  /**
3925
4043
  *
@@ -6168,6 +6286,20 @@ export interface Echart图表主题查询参数 {
6168
6286
  */
6169
6287
  user_id?: string;
6170
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
+ }
6171
6303
  export interface ExcelOrgUserSearchReq {
6172
6304
  /**
6173
6305
  * 是否显示下级
@@ -7213,6 +7345,12 @@ export interface FileTaskResponse {
7213
7345
  * @type string
7214
7346
  */
7215
7347
  name?: string;
7348
+ /**
7349
+ *
7350
+ *
7351
+ * @type IObject
7352
+ */
7353
+ params?: IObject;
7216
7354
  /**
7217
7355
  * 关联数据id(edhr实模板ID)
7218
7356
  *
@@ -8504,7 +8642,7 @@ export interface LoginModeConfig {
8504
8642
  */
8505
8643
  address?: string;
8506
8644
  /**
8507
- * 登录方式类型 枚举(ACCOUNT/ 账号登录,DOMAIN_ACCOUNT/域账号密码登录,MOBILE)
8645
+ * 登录方式类型 枚举(ACCOUNT/ 账号登录,DOMAIN_ACCOUNT/域账号密码登录,MOBILE,CARD:刷卡登录)
8508
8646
  *
8509
8647
  * @type string
8510
8648
  */
@@ -9676,6 +9814,73 @@ export interface ModelResponse {
9676
9814
  */
9677
9815
  providerName?: string;
9678
9816
  }
9817
+ export interface Module {
9818
+ /**
9819
+ *
9820
+ *
9821
+ * @type Annotation[]
9822
+ */
9823
+ annotations?: Annotation[];
9824
+ /**
9825
+ *
9826
+ *
9827
+ * @type ClassLoader
9828
+ */
9829
+ classLoader?: ClassLoader;
9830
+ /**
9831
+ *
9832
+ *
9833
+ * @type Annotation[]
9834
+ */
9835
+ declaredAnnotations?: Annotation[];
9836
+ /**
9837
+ *
9838
+ *
9839
+ * @type ModuleDescriptor
9840
+ */
9841
+ descriptor?: ModuleDescriptor;
9842
+ /**
9843
+ *
9844
+ *
9845
+ * @type ModuleLayer
9846
+ */
9847
+ layer?: ModuleLayer;
9848
+ /**
9849
+ *
9850
+ *
9851
+ * @type string
9852
+ */
9853
+ name?: string;
9854
+ /**
9855
+ *
9856
+ *
9857
+ * @type boolean
9858
+ */
9859
+ named?: boolean;
9860
+ /**
9861
+ *
9862
+ *
9863
+ * @type string[]
9864
+ */
9865
+ packages?: string[];
9866
+ }
9867
+ export interface ModuleDescriptor {
9868
+ /**
9869
+ *
9870
+ *
9871
+ * @type boolean
9872
+ */
9873
+ automatic?: boolean;
9874
+ /**
9875
+ *
9876
+ *
9877
+ * @type boolean
9878
+ */
9879
+ open?: boolean;
9880
+ }
9881
+ export interface ModuleLayer {
9882
+ // 暂无属性
9883
+ }
9679
9884
  export interface MqttPropertiesDTO {
9680
9885
  /**
9681
9886
  * 密码
@@ -10817,6 +11022,12 @@ export interface OrgAddOrUpdateUserRequest {
10817
11022
  username?: string;
10818
11023
  }
10819
11024
  export interface OrgBaseInfo {
11025
+ /**
11026
+ *
11027
+ *
11028
+ * @type string
11029
+ */
11030
+ createTime?: string;
10820
11031
  /**
10821
11032
  *
10822
11033
  *
@@ -10847,6 +11058,12 @@ export interface OrgBaseInfo {
10847
11058
  * @type string
10848
11059
  */
10849
11060
  parentId?: string;
11061
+ /**
11062
+ *
11063
+ *
11064
+ * @type string
11065
+ */
11066
+ type?: string;
10850
11067
  }
10851
11068
  export interface OrgConfig {
10852
11069
  /**
@@ -11656,6 +11873,68 @@ export interface OrgUserSearchRequest {
11656
11873
  */
11657
11874
  username?: string;
11658
11875
  }
11876
+ export interface Package {
11877
+ /**
11878
+ *
11879
+ *
11880
+ * @type Annotation[]
11881
+ */
11882
+ annotations?: Annotation[];
11883
+ /**
11884
+ *
11885
+ *
11886
+ * @type Annotation[]
11887
+ */
11888
+ declaredAnnotations?: Annotation[];
11889
+ /**
11890
+ *
11891
+ *
11892
+ * @type string
11893
+ */
11894
+ implementationTitle?: string;
11895
+ /**
11896
+ *
11897
+ *
11898
+ * @type string
11899
+ */
11900
+ implementationVendor?: string;
11901
+ /**
11902
+ *
11903
+ *
11904
+ * @type string
11905
+ */
11906
+ implementationVersion?: string;
11907
+ /**
11908
+ *
11909
+ *
11910
+ * @type string
11911
+ */
11912
+ name?: string;
11913
+ /**
11914
+ *
11915
+ *
11916
+ * @type boolean
11917
+ */
11918
+ sealed?: boolean;
11919
+ /**
11920
+ *
11921
+ *
11922
+ * @type string
11923
+ */
11924
+ specificationTitle?: string;
11925
+ /**
11926
+ *
11927
+ *
11928
+ * @type string
11929
+ */
11930
+ specificationVendor?: string;
11931
+ /**
11932
+ *
11933
+ *
11934
+ * @type string
11935
+ */
11936
+ specificationVersion?: string;
11937
+ }
11659
11938
  export interface PackageJson {
11660
11939
  /**
11661
11940
  *
@@ -13883,6 +14162,12 @@ export interface PnDataset {
13883
14162
  * @type number
13884
14163
  */
13885
14164
  deleted?: number;
14165
+ /**
14166
+ *
14167
+ *
14168
+ * @type string
14169
+ */
14170
+ designSql?: string;
13886
14171
  /**
13887
14172
  *
13888
14173
  *
@@ -14063,6 +14348,12 @@ export interface PnDatasetRequest {
14063
14348
  * @type string
14064
14349
  */
14065
14350
  databaseType?: string;
14351
+ /**
14352
+ * 设计的sql - 可包含注释
14353
+ *
14354
+ * @type string
14355
+ */
14356
+ designSql?: string;
14066
14357
  /**
14067
14358
  * 文件地址
14068
14359
  *
@@ -14161,6 +14452,12 @@ export interface PnDatasetResponse {
14161
14452
  * @type string
14162
14453
  */
14163
14454
  databaseType?: string;
14455
+ /**
14456
+ * 设计的sql - 可包含注释
14457
+ *
14458
+ * @type string
14459
+ */
14460
+ designSql?: string;
14164
14461
  /**
14165
14462
  * 完整的sql
14166
14463
  *
@@ -16016,6 +16313,74 @@ export interface QueryBean {
16016
16313
  */
16017
16314
  sql?: string;
16018
16315
  }
16316
+ export interface RedirectView {
16317
+ /**
16318
+ *
16319
+ *
16320
+ * @type ApplicationContext
16321
+ */
16322
+ applicationContext?: ApplicationContext;
16323
+ /**
16324
+ *
16325
+ *
16326
+ * @type IObject
16327
+ */
16328
+ attributesMap?: IObject;
16329
+ /**
16330
+ *
16331
+ *
16332
+ * @type string
16333
+ */
16334
+ beanName?: string;
16335
+ /**
16336
+ *
16337
+ *
16338
+ * @type string
16339
+ */
16340
+ contentType?: string;
16341
+ /**
16342
+ *
16343
+ *
16344
+ * @type boolean
16345
+ */
16346
+ exposePathVariables?: boolean;
16347
+ /**
16348
+ *
16349
+ *
16350
+ * @type string[]
16351
+ */
16352
+ hosts?: string[];
16353
+ /**
16354
+ *
16355
+ *
16356
+ * @type boolean
16357
+ */
16358
+ propagateQueryProperties?: boolean;
16359
+ /**
16360
+ *
16361
+ *
16362
+ * @type boolean
16363
+ */
16364
+ redirectView?: boolean;
16365
+ /**
16366
+ *
16367
+ *
16368
+ * @type string
16369
+ */
16370
+ requestContextAttribute?: string;
16371
+ /**
16372
+ *
16373
+ *
16374
+ * @type IObject
16375
+ */
16376
+ staticAttributes?: IObject;
16377
+ /**
16378
+ *
16379
+ *
16380
+ * @type string
16381
+ */
16382
+ url?: string;
16383
+ }
16019
16384
  export interface RegexpRequest {
16020
16385
  /**
16021
16386
  * 正则名称
@@ -18764,7 +19129,7 @@ export interface ThirdAppConfigReq {
18764
19129
  */
18765
19130
  appId?: string;
18766
19131
  /**
18767
- * 登录方式类型 枚举(QIYEWEIXIN/ 企微登录,FEISHU/飞书登录,DINGDING/钉钉登录 )
19132
+ * 登录方式类型 枚举 (QIYEWEIXIN/ 企微登录,FEISHU/飞书登录,DINGDING/钉钉登录,MICROSOFT/微软登录)
18768
19133
  *
18769
19134
  * @type string
18770
19135
  */
@@ -18930,7 +19295,7 @@ export interface ThirdPartyLoginConfig {
18930
19295
  */
18931
19296
  appId?: string;
18932
19297
  /**
18933
- * 登录方式类型 枚举(QIYEWEIXIN/ 企微登录,FEISHU/飞书登录,DINGDING/钉钉登录 )
19298
+ * 登录方式类型 枚举 (QIYEWEIXIN/ 企微登录,FEISHU/飞书登录,DINGDING/钉钉登录,MICROSOFT/微软登录)
18934
19299
  *
18935
19300
  * @type string
18936
19301
  */
@@ -19513,6 +19878,12 @@ export interface UserBaseInfo {
19513
19878
  username?: string;
19514
19879
  }
19515
19880
  export interface UserBaseReq {
19881
+ /**
19882
+ *
19883
+ *
19884
+ * @type string
19885
+ */
19886
+ authCode?: string;
19516
19887
  /**
19517
19888
  * 授权code
19518
19889
  *
@@ -19531,6 +19902,18 @@ export interface UserBaseReq {
19531
19902
  * @type string
19532
19903
  */
19533
19904
  password?: string;
19905
+ /**
19906
+ *
19907
+ *
19908
+ * @type string
19909
+ */
19910
+ referer?: string;
19911
+ /**
19912
+ *
19913
+ *
19914
+ * @type string
19915
+ */
19916
+ source?: string;
19534
19917
  /**
19535
19918
  * 账号
19536
19919
  *
@@ -21477,6 +21860,12 @@ export interface UserTenantDTO {
21477
21860
  * @type string
21478
21861
  */
21479
21862
  id?: string;
21863
+ /**
21864
+ * 是否最后登录租户,0:否 1:是
21865
+ *
21866
+ * @type number
21867
+ */
21868
+ latestLogin?: number;
21480
21869
  /**
21481
21870
  * 直属上级id
21482
21871
  *
@@ -6,6 +6,13 @@ import type { AxiosInstance, AxiosRequestConfig } from 'axios';
6
6
  * @class HttpUtil
7
7
  */
8
8
  export declare class HttpUtil {
9
+ /**
10
+ * Axios 实例,供外部使用和挂载中间件
11
+ *
12
+ * @static
13
+ * @type {AxiosInstance}
14
+ */
15
+ static _instance: AxiosInstance;
9
16
  /**
10
17
  * 挂载中间件
11
18
  *