@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
@@ -35,7 +35,7 @@ export const apiConfig = [
35
35
  {
36
36
  mode: "put",
37
37
  method: "putId",
38
- path: "",
38
+ path: "{id}",
39
39
  hasPathParams: true,
40
40
  hasData: true
41
41
  }
@@ -82,12 +82,13 @@ export const apiConfig = [
82
82
  mode: "post",
83
83
  method: "postUploadApk",
84
84
  path: "upload/apk",
85
+ hasUpload: true,
85
86
  hasData: true
86
87
  },
87
88
  {
88
89
  mode: "put",
89
90
  method: "putId",
90
- path: "",
91
+ path: "{id}",
91
92
  hasPathParams: true
92
93
  }
93
94
  ]
@@ -322,12 +323,13 @@ export const apiConfig = [
322
323
  mode: "post",
323
324
  method: "postUploadAppPkg",
324
325
  path: "upload/appPkg",
326
+ hasUpload: true,
325
327
  hasData: true
326
328
  },
327
329
  {
328
330
  mode: "put",
329
331
  method: "putId",
330
- path: "",
332
+ path: "{id}",
331
333
  hasPathParams: true,
332
334
  hasData: true
333
335
  }
@@ -471,6 +473,7 @@ export const apiConfig = [
471
473
  mode: "post",
472
474
  method: "postUploadCategoryId",
473
475
  path: "upload/{categoryId}",
476
+ hasUpload: true,
474
477
  hasPathParams: true,
475
478
  hasData: true
476
479
  }
@@ -569,7 +572,7 @@ export const apiConfig = [
569
572
  {
570
573
  mode: "put",
571
574
  method: "putId",
572
- path: "",
575
+ path: "{id}",
573
576
  hasPathParams: true,
574
577
  hasData: true
575
578
  }
@@ -617,7 +620,7 @@ export const apiConfig = [
617
620
  {
618
621
  mode: "put",
619
622
  method: "putId",
620
- path: "",
623
+ path: "{id}",
621
624
  hasPathParams: true,
622
625
  hasData: true
623
626
  }
@@ -631,6 +634,7 @@ export const apiConfig = [
631
634
  mode: "post",
632
635
  method: "postUpload",
633
636
  path: "upload",
637
+ hasUpload: true,
634
638
  hasQuery: true,
635
639
  hasData: true
636
640
  }
@@ -673,7 +677,7 @@ export const apiConfig = [
673
677
  {
674
678
  mode: "put",
675
679
  method: "putId",
676
- path: "",
680
+ path: "{id}",
677
681
  hasPathParams: true,
678
682
  hasData: true
679
683
  }
@@ -745,7 +749,7 @@ export const apiConfig = [
745
749
  {
746
750
  mode: "put",
747
751
  method: "putId",
748
- path: "",
752
+ path: "{id}",
749
753
  hasPathParams: true,
750
754
  hasData: true
751
755
  }
@@ -794,7 +798,7 @@ export const apiConfig = [
794
798
  {
795
799
  mode: "put",
796
800
  method: "putId",
797
- path: "",
801
+ path: "{id}",
798
802
  hasPathParams: true,
799
803
  hasData: true
800
804
  }
@@ -919,7 +923,7 @@ export const apiConfig = [
919
923
  {
920
924
  mode: "put",
921
925
  method: "putId",
922
- path: "",
926
+ path: "{id}",
923
927
  hasPathParams: true,
924
928
  hasData: true
925
929
  }
@@ -1027,7 +1031,7 @@ export const apiConfig = [
1027
1031
  {
1028
1032
  mode: "put",
1029
1033
  method: "putId",
1030
- path: "",
1034
+ path: "{id}",
1031
1035
  hasPathParams: true,
1032
1036
  hasData: true
1033
1037
  }
@@ -1143,7 +1147,7 @@ export const apiConfig = [
1143
1147
  {
1144
1148
  mode: "put",
1145
1149
  method: "putId",
1146
- path: "",
1150
+ path: "{id}",
1147
1151
  hasPathParams: true,
1148
1152
  hasData: true
1149
1153
  }
@@ -1186,7 +1190,7 @@ export const apiConfig = [
1186
1190
  {
1187
1191
  mode: "put",
1188
1192
  method: "putId",
1189
- path: "",
1193
+ path: "{id}",
1190
1194
  hasPathParams: true,
1191
1195
  hasData: true
1192
1196
  }
@@ -1229,7 +1233,7 @@ export const apiConfig = [
1229
1233
  {
1230
1234
  mode: "put",
1231
1235
  method: "putId",
1232
- path: "",
1236
+ path: "{id}",
1233
1237
  hasPathParams: true,
1234
1238
  hasData: true
1235
1239
  }
@@ -1277,7 +1281,7 @@ export const apiConfig = [
1277
1281
  {
1278
1282
  mode: "put",
1279
1283
  method: "putId",
1280
- path: "",
1284
+ path: "{id}",
1281
1285
  hasPathParams: true,
1282
1286
  hasData: true
1283
1287
  }
@@ -1320,7 +1324,7 @@ export const apiConfig = [
1320
1324
  {
1321
1325
  mode: "put",
1322
1326
  method: "putId",
1323
- path: "",
1327
+ path: "{id}",
1324
1328
  hasPathParams: true,
1325
1329
  hasData: true
1326
1330
  }
@@ -1363,7 +1367,7 @@ export const apiConfig = [
1363
1367
  {
1364
1368
  mode: "put",
1365
1369
  method: "putId",
1366
- path: "",
1370
+ path: "{id}",
1367
1371
  hasPathParams: true,
1368
1372
  hasData: true
1369
1373
  }
@@ -1400,6 +1404,7 @@ export const apiConfig = [
1400
1404
  mode: "post",
1401
1405
  method: "postImport",
1402
1406
  path: "import",
1407
+ hasUpload: true,
1403
1408
  hasData: true
1404
1409
  },
1405
1410
  {
@@ -1422,7 +1427,7 @@ export const apiConfig = [
1422
1427
  {
1423
1428
  mode: "put",
1424
1429
  method: "putId",
1425
- path: "",
1430
+ path: "{id}",
1426
1431
  hasPathParams: true,
1427
1432
  hasData: true
1428
1433
  }
@@ -1453,6 +1458,7 @@ export const apiConfig = [
1453
1458
  mode: "post",
1454
1459
  method: "postImport",
1455
1460
  path: "import",
1461
+ hasUpload: true,
1456
1462
  hasData: true
1457
1463
  },
1458
1464
  {
@@ -1475,7 +1481,7 @@ export const apiConfig = [
1475
1481
  {
1476
1482
  mode: "put",
1477
1483
  method: "putId",
1478
- path: "",
1484
+ path: "{id}",
1479
1485
  hasPathParams: true,
1480
1486
  hasData: true
1481
1487
  }
@@ -1540,7 +1546,7 @@ export const apiConfig = [
1540
1546
  {
1541
1547
  mode: "put",
1542
1548
  method: "putId",
1543
- path: "",
1549
+ path: "{id}",
1544
1550
  hasPathParams: true,
1545
1551
  hasData: true
1546
1552
  }
@@ -1580,6 +1586,12 @@ export const apiConfig = [
1580
1586
  path: "list",
1581
1587
  hasQuery: true
1582
1588
  },
1589
+ {
1590
+ mode: "delete",
1591
+ method: "deleteObject",
1592
+ path: "object",
1593
+ hasQuery: true
1594
+ },
1583
1595
  {
1584
1596
  mode: "get",
1585
1597
  method: "getPageList",
@@ -1589,7 +1601,7 @@ export const apiConfig = [
1589
1601
  {
1590
1602
  mode: "put",
1591
1603
  method: "putId",
1592
- path: "",
1604
+ path: "{id}",
1593
1605
  hasPathParams: true,
1594
1606
  hasData: true
1595
1607
  }
@@ -1609,6 +1621,7 @@ export const apiConfig = [
1609
1621
  mode: "post",
1610
1622
  method: "postUploadCommon",
1611
1623
  path: "upload-common",
1624
+ hasUpload: true,
1612
1625
  hasQuery: true,
1613
1626
  hasData: true
1614
1627
  },
@@ -1616,12 +1629,14 @@ export const apiConfig = [
1616
1629
  mode: "post",
1617
1630
  method: "postUploadDataset",
1618
1631
  path: "upload-dataset",
1632
+ hasUpload: true,
1619
1633
  hasData: true
1620
1634
  },
1621
1635
  {
1622
1636
  mode: "post",
1623
1637
  method: "postUploadImage",
1624
1638
  path: "upload/image",
1639
+ hasUpload: true,
1625
1640
  hasQuery: true,
1626
1641
  hasData: true
1627
1642
  }
@@ -1651,7 +1666,7 @@ export const apiConfig = [
1651
1666
  {
1652
1667
  mode: "put",
1653
1668
  method: "putId",
1654
- path: "",
1669
+ path: "{id}",
1655
1670
  hasPathParams: true,
1656
1671
  hasData: true
1657
1672
  }
@@ -1694,6 +1709,7 @@ export const apiConfig = [
1694
1709
  mode: "post",
1695
1710
  method: "postLangUpload",
1696
1711
  path: "lang/upload",
1712
+ hasUpload: true,
1697
1713
  hasQuery: true,
1698
1714
  hasData: true
1699
1715
  },
@@ -1818,7 +1834,7 @@ export const apiConfig = [
1818
1834
  {
1819
1835
  mode: "put",
1820
1836
  method: "putId",
1821
- path: "",
1837
+ path: "{id}",
1822
1838
  hasPathParams: true,
1823
1839
  hasData: true
1824
1840
  }
@@ -1860,7 +1876,7 @@ export const apiConfig = [
1860
1876
  {
1861
1877
  mode: "put",
1862
1878
  method: "putId",
1863
- path: "",
1879
+ path: "{id}",
1864
1880
  hasPathParams: true,
1865
1881
  hasData: true
1866
1882
  }
@@ -1902,7 +1918,7 @@ export const apiConfig = [
1902
1918
  {
1903
1919
  mode: "put",
1904
1920
  method: "putId",
1905
- path: "",
1921
+ path: "{id}",
1906
1922
  hasPathParams: true,
1907
1923
  hasData: true
1908
1924
  }
@@ -1916,6 +1932,7 @@ export const apiConfig = [
1916
1932
  mode: "post",
1917
1933
  method: "postUploadCertificate",
1918
1934
  path: "upload/certificate",
1935
+ hasUpload: true,
1919
1936
  hasData: true
1920
1937
  }
1921
1938
  ]
@@ -1998,8 +2015,7 @@ export const apiConfig = [
1998
2015
  {
1999
2016
  mode: "get",
2000
2017
  method: "getModuleAuth",
2001
- path: "moduleAuth",
2002
- hasQuery: true
2018
+ path: "moduleAuth"
2003
2019
  },
2004
2020
  {
2005
2021
  mode: "get",
@@ -2046,6 +2062,12 @@ export const apiConfig = [
2046
2062
  method: "getPageList",
2047
2063
  path: "page/list",
2048
2064
  hasQuery: true
2065
+ },
2066
+ {
2067
+ mode: "get",
2068
+ method: "getTenantLog",
2069
+ path: "tenant/log",
2070
+ hasQuery: true
2049
2071
  }
2050
2072
  ]
2051
2073
  },
@@ -2163,7 +2185,7 @@ export const apiConfig = [
2163
2185
  {
2164
2186
  mode: "put",
2165
2187
  method: "putId",
2166
- path: "",
2188
+ path: "{id}",
2167
2189
  hasPathParams: true,
2168
2190
  hasData: true
2169
2191
  }
@@ -2223,7 +2245,7 @@ export const apiConfig = [
2223
2245
  {
2224
2246
  mode: "put",
2225
2247
  method: "putId",
2226
- path: "",
2248
+ path: "{id}",
2227
2249
  hasPathParams: true,
2228
2250
  hasData: true
2229
2251
  }
@@ -2265,7 +2287,7 @@ export const apiConfig = [
2265
2287
  {
2266
2288
  mode: "put",
2267
2289
  method: "putId",
2268
- path: "",
2290
+ path: "{id}",
2269
2291
  hasPathParams: true,
2270
2292
  hasData: true
2271
2293
  }
@@ -2325,7 +2347,7 @@ export const apiConfig = [
2325
2347
  {
2326
2348
  mode: "put",
2327
2349
  method: "putId",
2328
- path: "",
2350
+ path: "{id}",
2329
2351
  hasPathParams: true,
2330
2352
  hasData: true
2331
2353
  }
@@ -2374,7 +2396,7 @@ export const apiConfig = [
2374
2396
  {
2375
2397
  mode: "put",
2376
2398
  method: "putId",
2377
- path: "",
2399
+ path: "{id}",
2378
2400
  hasPathParams: true,
2379
2401
  hasData: true
2380
2402
  }
@@ -2440,7 +2462,7 @@ export const apiConfig = [
2440
2462
  {
2441
2463
  mode: "put",
2442
2464
  method: "putId",
2443
- path: "",
2465
+ path: "{id}",
2444
2466
  hasPathParams: true,
2445
2467
  hasData: true
2446
2468
  }
@@ -2492,7 +2514,7 @@ export const apiConfig = [
2492
2514
  {
2493
2515
  mode: "put",
2494
2516
  method: "putId",
2495
- path: "",
2517
+ path: "{id}",
2496
2518
  hasPathParams: true,
2497
2519
  hasData: true
2498
2520
  }
@@ -2600,7 +2622,7 @@ export const apiConfig = [
2600
2622
  {
2601
2623
  mode: "put",
2602
2624
  method: "putId",
2603
- path: "",
2625
+ path: "{id}",
2604
2626
  hasPathParams: true,
2605
2627
  hasData: true
2606
2628
  }
@@ -2665,7 +2687,7 @@ export const apiConfig = [
2665
2687
  {
2666
2688
  mode: "put",
2667
2689
  method: "putId",
2668
- path: "",
2690
+ path: "{id}",
2669
2691
  hasPathParams: true,
2670
2692
  hasData: true
2671
2693
  }
@@ -2694,6 +2716,11 @@ export const apiConfig = [
2694
2716
  path: "base",
2695
2717
  hasData: true
2696
2718
  },
2719
+ {
2720
+ mode: "get",
2721
+ method: "getCardLoginCfg",
2722
+ path: "card/login/cfg"
2723
+ },
2697
2724
  {
2698
2725
  mode: "post",
2699
2726
  method: "postDingtalk",
@@ -2767,6 +2794,7 @@ export const apiConfig = [
2767
2794
  mode: "post",
2768
2795
  method: "postUploadCertFile",
2769
2796
  path: "uploadCertFile",
2797
+ hasUpload: true,
2770
2798
  hasData: true
2771
2799
  },
2772
2800
  {
@@ -2877,7 +2905,7 @@ export const apiConfig = [
2877
2905
  {
2878
2906
  mode: "put",
2879
2907
  method: "putId",
2880
- path: "",
2908
+ path: "{id}",
2881
2909
  hasPathParams: true,
2882
2910
  hasData: true
2883
2911
  }
@@ -2920,7 +2948,7 @@ export const apiConfig = [
2920
2948
  {
2921
2949
  mode: "put",
2922
2950
  method: "putId",
2923
- path: "",
2951
+ path: "{id}",
2924
2952
  hasPathParams: true,
2925
2953
  hasData: true
2926
2954
  }
@@ -2962,7 +2990,7 @@ export const apiConfig = [
2962
2990
  {
2963
2991
  mode: "put",
2964
2992
  method: "putId",
2965
- path: "",
2993
+ path: "{id}",
2966
2994
  hasPathParams: true,
2967
2995
  hasData: true
2968
2996
  }
@@ -3004,7 +3032,7 @@ export const apiConfig = [
3004
3032
  {
3005
3033
  mode: "put",
3006
3034
  method: "putId",
3007
- path: "",
3035
+ path: "{id}",
3008
3036
  hasPathParams: true,
3009
3037
  hasData: true
3010
3038
  }
@@ -3051,7 +3079,7 @@ export const apiConfig = [
3051
3079
  {
3052
3080
  mode: "put",
3053
3081
  method: "putId",
3054
- path: "",
3082
+ path: "{id}",
3055
3083
  hasPathParams: true,
3056
3084
  hasData: true
3057
3085
  }
@@ -3098,7 +3126,7 @@ export const apiConfig = [
3098
3126
  {
3099
3127
  mode: "put",
3100
3128
  method: "putId",
3101
- path: "",
3129
+ path: "{id}",
3102
3130
  hasPathParams: true,
3103
3131
  hasData: true
3104
3132
  }
@@ -3145,7 +3173,7 @@ export const apiConfig = [
3145
3173
  {
3146
3174
  mode: "put",
3147
3175
  method: "putId",
3148
- path: "",
3176
+ path: "{id}",
3149
3177
  hasPathParams: true,
3150
3178
  hasData: true
3151
3179
  }
@@ -3187,7 +3215,7 @@ export const apiConfig = [
3187
3215
  {
3188
3216
  mode: "put",
3189
3217
  method: "putId",
3190
- path: "",
3218
+ path: "{id}",
3191
3219
  hasPathParams: true,
3192
3220
  hasData: true
3193
3221
  }
@@ -3231,6 +3259,7 @@ export const apiConfig = [
3231
3259
  mode: "post",
3232
3260
  method: "postImport",
3233
3261
  path: "import",
3262
+ hasUpload: true,
3234
3263
  hasQuery: true,
3235
3264
  hasData: true
3236
3265
  },
@@ -3272,7 +3301,7 @@ export const apiConfig = [
3272
3301
  {
3273
3302
  mode: "put",
3274
3303
  method: "putId",
3275
- path: "",
3304
+ path: "{id}",
3276
3305
  hasPathParams: true,
3277
3306
  hasData: true
3278
3307
  }
@@ -3374,7 +3403,7 @@ export const apiConfig = [
3374
3403
  {
3375
3404
  mode: "put",
3376
3405
  method: "putId",
3377
- path: "",
3406
+ path: "{id}",
3378
3407
  hasPathParams: true,
3379
3408
  hasData: true
3380
3409
  }
@@ -3416,7 +3445,7 @@ export const apiConfig = [
3416
3445
  {
3417
3446
  mode: "put",
3418
3447
  method: "putId",
3419
- path: "",
3448
+ path: "{id}",
3420
3449
  hasPathParams: true,
3421
3450
  hasData: true
3422
3451
  }
@@ -3619,7 +3648,7 @@ export const apiConfig = [
3619
3648
  {
3620
3649
  mode: "put",
3621
3650
  method: "putId",
3622
- path: "",
3651
+ path: "{id}",
3623
3652
  hasPathParams: true,
3624
3653
  hasData: true
3625
3654
  }
@@ -3782,7 +3811,7 @@ export const apiConfig = [
3782
3811
  {
3783
3812
  mode: "put",
3784
3813
  method: "putId",
3785
- path: "",
3814
+ path: "{id}",
3786
3815
  hasPathParams: true,
3787
3816
  hasData: true
3788
3817
  }
@@ -3883,7 +3912,7 @@ export const apiConfig = [
3883
3912
  {
3884
3913
  mode: "put",
3885
3914
  method: "putId",
3886
- path: "",
3915
+ path: "{id}",
3887
3916
  hasPathParams: true,
3888
3917
  hasData: true
3889
3918
  }
@@ -3995,7 +4024,7 @@ export const apiConfig = [
3995
4024
  {
3996
4025
  mode: "put",
3997
4026
  method: "putId",
3998
- path: "",
4027
+ path: "{id}",
3999
4028
  hasPathParams: true,
4000
4029
  hasData: true
4001
4030
  }
@@ -4225,7 +4254,7 @@ export const apiConfig = [
4225
4254
  {
4226
4255
  mode: "put",
4227
4256
  method: "putId",
4228
- path: "",
4257
+ path: "{id}",
4229
4258
  hasPathParams: true,
4230
4259
  hasData: true
4231
4260
  }
@@ -4285,6 +4314,7 @@ export const apiConfig = [
4285
4314
  mode: "post",
4286
4315
  method: "postOrgPlatImport",
4287
4316
  path: "org/plat/import",
4317
+ hasUpload: true,
4288
4318
  hasQuery: true,
4289
4319
  hasData: true
4290
4320
  },
@@ -4298,6 +4328,7 @@ export const apiConfig = [
4298
4328
  mode: "post",
4299
4329
  method: "postOrgTenantImport",
4300
4330
  path: "org/tenant/import",
4331
+ hasUpload: true,
4301
4332
  hasQuery: true,
4302
4333
  hasData: true
4303
4334
  },
@@ -4305,6 +4336,7 @@ export const apiConfig = [
4305
4336
  mode: "post",
4306
4337
  method: "postOrgTenantImport4App",
4307
4338
  path: "org/tenant/import4App",
4339
+ hasUpload: true,
4308
4340
  hasQuery: true,
4309
4341
  hasData: true
4310
4342
  },
@@ -4330,6 +4362,7 @@ export const apiConfig = [
4330
4362
  mode: "post",
4331
4363
  method: "postPlatImport",
4332
4364
  path: "plat/import",
4365
+ hasUpload: true,
4333
4366
  hasData: true
4334
4367
  },
4335
4368
  {
@@ -4372,12 +4405,14 @@ export const apiConfig = [
4372
4405
  mode: "post",
4373
4406
  method: "postTenantImport",
4374
4407
  path: "tenant/import",
4408
+ hasUpload: true,
4375
4409
  hasData: true
4376
4410
  },
4377
4411
  {
4378
4412
  mode: "post",
4379
4413
  method: "postTenantImport4App",
4380
4414
  path: "tenant/import4App",
4415
+ hasUpload: true,
4381
4416
  hasData: true
4382
4417
  },
4383
4418
  {
@@ -4395,7 +4430,7 @@ export const apiConfig = [
4395
4430
  {
4396
4431
  mode: "put",
4397
4432
  method: "putId",
4398
- path: "",
4433
+ path: "{id}",
4399
4434
  hasPathParams: true,
4400
4435
  hasData: true
4401
4436
  }
@@ -4437,7 +4472,7 @@ export const apiConfig = [
4437
4472
  {
4438
4473
  mode: "put",
4439
4474
  method: "putId",
4440
- path: "",
4475
+ path: "{id}",
4441
4476
  hasPathParams: true,
4442
4477
  hasData: true
4443
4478
  }
@@ -4479,7 +4514,7 @@ export const apiConfig = [
4479
4514
  {
4480
4515
  mode: "put",
4481
4516
  method: "putId",
4482
- path: "",
4517
+ path: "{id}",
4483
4518
  hasPathParams: true,
4484
4519
  hasData: true
4485
4520
  }
@@ -4521,7 +4556,7 @@ export const apiConfig = [
4521
4556
  {
4522
4557
  mode: "put",
4523
4558
  method: "putId",
4524
- path: "",
4559
+ path: "{id}",
4525
4560
  hasPathParams: true,
4526
4561
  hasData: true
4527
4562
  }
@@ -4564,7 +4599,7 @@ export const apiConfig = [
4564
4599
  {
4565
4600
  mode: "put",
4566
4601
  method: "putId",
4567
- path: "",
4602
+ path: "{id}",
4568
4603
  hasPathParams: true,
4569
4604
  hasData: true
4570
4605
  }
@@ -4626,7 +4661,7 @@ export const apiConfig = [
4626
4661
  {
4627
4662
  mode: "put",
4628
4663
  method: "putId",
4629
- path: "",
4664
+ path: "{id}",
4630
4665
  hasPathParams: true,
4631
4666
  hasData: true
4632
4667
  }
@@ -5473,6 +5508,11 @@ export const apiConfig = [
5473
5508
  hasPathParams: true,
5474
5509
  hasData: true
5475
5510
  },
5511
+ {
5512
+ mode: "get",
5513
+ method: "getCallbackLogin",
5514
+ path: "callback/login"
5515
+ },
5476
5516
  {
5477
5517
  mode: "get",
5478
5518
  method: "getDataSourceExecuteSelect",
@@ -5560,8 +5600,7 @@ export const apiConfig = [
5560
5600
  {
5561
5601
  mode: "get",
5562
5602
  method: "getLicenseModuleAuth",
5563
- path: "license/moduleAuth",
5564
- hasQuery: true
5603
+ path: "license/moduleAuth"
5565
5604
  },
5566
5605
  {
5567
5606
  mode: "post",
@@ -5569,6 +5608,12 @@ export const apiConfig = [
5569
5608
  path: "login-log/userLoginLogPage",
5570
5609
  hasData: true
5571
5610
  },
5611
+ {
5612
+ mode: "get",
5613
+ method: "getLoginSettingGet",
5614
+ path: "login/setting/get",
5615
+ hasQuery: true
5616
+ },
5572
5617
  {
5573
5618
  mode: "get",
5574
5619
  method: "getLoginSsoOauth2Authorize",
@@ -5834,6 +5879,12 @@ export const apiConfig = [
5834
5879
  path: "report-detail/listStatistic",
5835
5880
  hasData: true
5836
5881
  },
5882
+ {
5883
+ mode: "post",
5884
+ method: "postSeatAdd",
5885
+ path: "seat/add",
5886
+ hasQuery: true
5887
+ },
5837
5888
  {
5838
5889
  mode: "post",
5839
5890
  method: "postSignLogOperators",