@ayasofyazilim/saas 0.0.10 → 0.0.11
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/AccountService/types.gen.ts +42 -145
- package/AdministrationService/types.gen.ts +39 -181
- package/IdentityService/types.gen.ts +87 -452
- package/ProjectService/ProjectServiceClient.ts +0 -3
- package/ProjectService/schemas.gen.ts +188 -109
- package/ProjectService/services.gen.ts +1 -48
- package/ProjectService/types.gen.ts +74 -187
- package/SaasService/SaasServiceClient.ts +65 -0
- package/SaasService/core/ApiError.ts +21 -0
- package/SaasService/core/ApiRequestOptions.ts +13 -0
- package/SaasService/core/ApiResult.ts +7 -0
- package/SaasService/core/BaseHttpRequest.ts +10 -0
- package/SaasService/core/CancelablePromise.ts +126 -0
- package/SaasService/core/FetchHttpRequest.ts +22 -0
- package/SaasService/core/OpenAPI.ts +56 -0
- package/SaasService/core/request.ts +341 -0
- package/SaasService/index.ts +9 -0
- package/SaasService/schemas.gen.ts +2148 -0
- package/SaasService/services.gen.ts +1326 -0
- package/SaasService/types.gen.ts +2735 -0
- package/package.json +6 -9
|
@@ -1712,9 +1712,7 @@ export type GetApiIdentityUsersLookupCountResponse = number;
|
|
|
1712
1712
|
export type $OpenApiTs = {
|
|
1713
1713
|
'/api/abp/api-definition': {
|
|
1714
1714
|
get: {
|
|
1715
|
-
req:
|
|
1716
|
-
includeTypes?: boolean;
|
|
1717
|
-
};
|
|
1715
|
+
req: GetApiAbpApiDefinitionData;
|
|
1718
1716
|
res: {
|
|
1719
1717
|
/**
|
|
1720
1718
|
* Success
|
|
@@ -1749,9 +1747,7 @@ export type $OpenApiTs = {
|
|
|
1749
1747
|
};
|
|
1750
1748
|
'/api/abp/application-configuration': {
|
|
1751
1749
|
get: {
|
|
1752
|
-
req:
|
|
1753
|
-
includeLocalizationResources?: boolean;
|
|
1754
|
-
};
|
|
1750
|
+
req: GetApiAbpApplicationConfigurationData;
|
|
1755
1751
|
res: {
|
|
1756
1752
|
/**
|
|
1757
1753
|
* Success
|
|
@@ -1786,10 +1782,7 @@ export type $OpenApiTs = {
|
|
|
1786
1782
|
};
|
|
1787
1783
|
'/api/abp/application-localization': {
|
|
1788
1784
|
get: {
|
|
1789
|
-
req:
|
|
1790
|
-
cultureName: string;
|
|
1791
|
-
onlyDynamics?: boolean;
|
|
1792
|
-
};
|
|
1785
|
+
req: GetApiAbpApplicationLocalizationData;
|
|
1793
1786
|
res: {
|
|
1794
1787
|
/**
|
|
1795
1788
|
* Success
|
|
@@ -1856,9 +1849,7 @@ export type $OpenApiTs = {
|
|
|
1856
1849
|
};
|
|
1857
1850
|
};
|
|
1858
1851
|
put: {
|
|
1859
|
-
req:
|
|
1860
|
-
requestBody?: Volo_Abp_Account_AccountSettingsDto;
|
|
1861
|
-
};
|
|
1852
|
+
req: PutApiAccountAdminSettingsData;
|
|
1862
1853
|
res: {
|
|
1863
1854
|
/**
|
|
1864
1855
|
* Success
|
|
@@ -1925,9 +1916,7 @@ export type $OpenApiTs = {
|
|
|
1925
1916
|
};
|
|
1926
1917
|
};
|
|
1927
1918
|
put: {
|
|
1928
|
-
req:
|
|
1929
|
-
requestBody?: Volo_Abp_Account_AccountTwoFactorSettingsDto;
|
|
1930
|
-
};
|
|
1919
|
+
req: PutApiAccountAdminSettingsTwoFactorData;
|
|
1931
1920
|
res: {
|
|
1932
1921
|
/**
|
|
1933
1922
|
* Success
|
|
@@ -1994,9 +1983,7 @@ export type $OpenApiTs = {
|
|
|
1994
1983
|
};
|
|
1995
1984
|
};
|
|
1996
1985
|
put: {
|
|
1997
|
-
req:
|
|
1998
|
-
requestBody?: Volo_Abp_Account_AccountRecaptchaSettingsDto;
|
|
1999
|
-
};
|
|
1986
|
+
req: PutApiAccountAdminSettingsRecaptchaData;
|
|
2000
1987
|
res: {
|
|
2001
1988
|
/**
|
|
2002
1989
|
* Success
|
|
@@ -2063,9 +2050,7 @@ export type $OpenApiTs = {
|
|
|
2063
2050
|
};
|
|
2064
2051
|
};
|
|
2065
2052
|
put: {
|
|
2066
|
-
req:
|
|
2067
|
-
requestBody?: Array<Volo_Abp_Account_UpdateExternalProviderDto>;
|
|
2068
|
-
};
|
|
2053
|
+
req: PutApiAccountAdminSettingsExternalProviderData;
|
|
2069
2054
|
res: {
|
|
2070
2055
|
/**
|
|
2071
2056
|
* Success
|
|
@@ -2100,9 +2085,7 @@ export type $OpenApiTs = {
|
|
|
2100
2085
|
};
|
|
2101
2086
|
'/api/openiddict/applications/{id}': {
|
|
2102
2087
|
get: {
|
|
2103
|
-
req:
|
|
2104
|
-
id: string;
|
|
2105
|
-
};
|
|
2088
|
+
req: GetApiOpeniddictApplicationsByIdData;
|
|
2106
2089
|
res: {
|
|
2107
2090
|
/**
|
|
2108
2091
|
* Success
|
|
@@ -2135,10 +2118,7 @@ export type $OpenApiTs = {
|
|
|
2135
2118
|
};
|
|
2136
2119
|
};
|
|
2137
2120
|
put: {
|
|
2138
|
-
req:
|
|
2139
|
-
id: string;
|
|
2140
|
-
requestBody?: Volo_Abp_OpenIddict_Applications_Dtos_UpdateApplicationInput;
|
|
2141
|
-
};
|
|
2121
|
+
req: PutApiOpeniddictApplicationsByIdData;
|
|
2142
2122
|
res: {
|
|
2143
2123
|
/**
|
|
2144
2124
|
* Success
|
|
@@ -2173,12 +2153,7 @@ export type $OpenApiTs = {
|
|
|
2173
2153
|
};
|
|
2174
2154
|
'/api/openiddict/applications': {
|
|
2175
2155
|
get: {
|
|
2176
|
-
req:
|
|
2177
|
-
filter?: string;
|
|
2178
|
-
maxResultCount?: number;
|
|
2179
|
-
skipCount?: number;
|
|
2180
|
-
sorting?: string;
|
|
2181
|
-
};
|
|
2156
|
+
req: GetApiOpeniddictApplicationsData;
|
|
2182
2157
|
res: {
|
|
2183
2158
|
/**
|
|
2184
2159
|
* Success
|
|
@@ -2211,9 +2186,7 @@ export type $OpenApiTs = {
|
|
|
2211
2186
|
};
|
|
2212
2187
|
};
|
|
2213
2188
|
post: {
|
|
2214
|
-
req:
|
|
2215
|
-
requestBody?: Volo_Abp_OpenIddict_Applications_Dtos_CreateApplicationInput;
|
|
2216
|
-
};
|
|
2189
|
+
req: PostApiOpeniddictApplicationsData;
|
|
2217
2190
|
res: {
|
|
2218
2191
|
/**
|
|
2219
2192
|
* Success
|
|
@@ -2246,9 +2219,7 @@ export type $OpenApiTs = {
|
|
|
2246
2219
|
};
|
|
2247
2220
|
};
|
|
2248
2221
|
delete: {
|
|
2249
|
-
req:
|
|
2250
|
-
id?: string;
|
|
2251
|
-
};
|
|
2222
|
+
req: DeleteApiOpeniddictApplicationsData;
|
|
2252
2223
|
res: {
|
|
2253
2224
|
/**
|
|
2254
2225
|
* Success
|
|
@@ -2283,9 +2254,7 @@ export type $OpenApiTs = {
|
|
|
2283
2254
|
};
|
|
2284
2255
|
'/api/openiddict/applications/{id}/token-lifetime': {
|
|
2285
2256
|
get: {
|
|
2286
|
-
req:
|
|
2287
|
-
id: string;
|
|
2288
|
-
};
|
|
2257
|
+
req: GetApiOpeniddictApplicationsByIdTokenLifetimeData;
|
|
2289
2258
|
res: {
|
|
2290
2259
|
/**
|
|
2291
2260
|
* Success
|
|
@@ -2318,10 +2287,7 @@ export type $OpenApiTs = {
|
|
|
2318
2287
|
};
|
|
2319
2288
|
};
|
|
2320
2289
|
put: {
|
|
2321
|
-
req:
|
|
2322
|
-
id: string;
|
|
2323
|
-
requestBody?: Volo_Abp_OpenIddict_Applications_Dtos_ApplicationTokenLifetimeDto;
|
|
2324
|
-
};
|
|
2290
|
+
req: PutApiOpeniddictApplicationsByIdTokenLifetimeData;
|
|
2325
2291
|
res: {
|
|
2326
2292
|
/**
|
|
2327
2293
|
* Success
|
|
@@ -2356,15 +2322,7 @@ export type $OpenApiTs = {
|
|
|
2356
2322
|
};
|
|
2357
2323
|
'/api/identity/claim-types': {
|
|
2358
2324
|
get: {
|
|
2359
|
-
req:
|
|
2360
|
-
extraProperties?: {
|
|
2361
|
-
[key: string]: unknown;
|
|
2362
|
-
};
|
|
2363
|
-
filter?: string;
|
|
2364
|
-
maxResultCount?: number;
|
|
2365
|
-
skipCount?: number;
|
|
2366
|
-
sorting?: string;
|
|
2367
|
-
};
|
|
2325
|
+
req: GetApiIdentityClaimTypesData;
|
|
2368
2326
|
res: {
|
|
2369
2327
|
/**
|
|
2370
2328
|
* Success
|
|
@@ -2397,9 +2355,7 @@ export type $OpenApiTs = {
|
|
|
2397
2355
|
};
|
|
2398
2356
|
};
|
|
2399
2357
|
post: {
|
|
2400
|
-
req:
|
|
2401
|
-
requestBody?: Volo_Abp_Identity_CreateClaimTypeDto;
|
|
2402
|
-
};
|
|
2358
|
+
req: PostApiIdentityClaimTypesData;
|
|
2403
2359
|
res: {
|
|
2404
2360
|
/**
|
|
2405
2361
|
* Success
|
|
@@ -2434,9 +2390,7 @@ export type $OpenApiTs = {
|
|
|
2434
2390
|
};
|
|
2435
2391
|
'/api/identity/claim-types/{id}': {
|
|
2436
2392
|
get: {
|
|
2437
|
-
req:
|
|
2438
|
-
id: string;
|
|
2439
|
-
};
|
|
2393
|
+
req: GetApiIdentityClaimTypesByIdData;
|
|
2440
2394
|
res: {
|
|
2441
2395
|
/**
|
|
2442
2396
|
* Success
|
|
@@ -2469,10 +2423,7 @@ export type $OpenApiTs = {
|
|
|
2469
2423
|
};
|
|
2470
2424
|
};
|
|
2471
2425
|
put: {
|
|
2472
|
-
req:
|
|
2473
|
-
id: string;
|
|
2474
|
-
requestBody?: Volo_Abp_Identity_UpdateClaimTypeDto;
|
|
2475
|
-
};
|
|
2426
|
+
req: PutApiIdentityClaimTypesByIdData;
|
|
2476
2427
|
res: {
|
|
2477
2428
|
/**
|
|
2478
2429
|
* Success
|
|
@@ -2505,9 +2456,7 @@ export type $OpenApiTs = {
|
|
|
2505
2456
|
};
|
|
2506
2457
|
};
|
|
2507
2458
|
delete: {
|
|
2508
|
-
req:
|
|
2509
|
-
id: string;
|
|
2510
|
-
};
|
|
2459
|
+
req: DeleteApiIdentityClaimTypesByIdData;
|
|
2511
2460
|
res: {
|
|
2512
2461
|
/**
|
|
2513
2462
|
* Success
|
|
@@ -2576,10 +2525,7 @@ export type $OpenApiTs = {
|
|
|
2576
2525
|
};
|
|
2577
2526
|
'/api/identity/organization-units/{id}/roles': {
|
|
2578
2527
|
put: {
|
|
2579
|
-
req:
|
|
2580
|
-
id: string;
|
|
2581
|
-
requestBody?: Volo_Abp_Identity_OrganizationUnitRoleInput;
|
|
2582
|
-
};
|
|
2528
|
+
req: PutApiIdentityOrganizationUnitsByIdRolesData;
|
|
2583
2529
|
res: {
|
|
2584
2530
|
/**
|
|
2585
2531
|
* Success
|
|
@@ -2612,12 +2558,7 @@ export type $OpenApiTs = {
|
|
|
2612
2558
|
};
|
|
2613
2559
|
};
|
|
2614
2560
|
get: {
|
|
2615
|
-
req:
|
|
2616
|
-
id: string;
|
|
2617
|
-
maxResultCount?: number;
|
|
2618
|
-
skipCount?: number;
|
|
2619
|
-
sorting?: string;
|
|
2620
|
-
};
|
|
2561
|
+
req: GetApiIdentityOrganizationUnitsByIdRolesData;
|
|
2621
2562
|
res: {
|
|
2622
2563
|
/**
|
|
2623
2564
|
* Success
|
|
@@ -2652,10 +2593,7 @@ export type $OpenApiTs = {
|
|
|
2652
2593
|
};
|
|
2653
2594
|
'/api/identity/organization-units/{id}/members': {
|
|
2654
2595
|
put: {
|
|
2655
|
-
req:
|
|
2656
|
-
id: string;
|
|
2657
|
-
requestBody?: Volo_Abp_Identity_OrganizationUnitUserInput;
|
|
2658
|
-
};
|
|
2596
|
+
req: PutApiIdentityOrganizationUnitsByIdMembersData;
|
|
2659
2597
|
res: {
|
|
2660
2598
|
/**
|
|
2661
2599
|
* Success
|
|
@@ -2688,31 +2626,7 @@ export type $OpenApiTs = {
|
|
|
2688
2626
|
};
|
|
2689
2627
|
};
|
|
2690
2628
|
get: {
|
|
2691
|
-
req:
|
|
2692
|
-
emailAddress?: string;
|
|
2693
|
-
emailConfirmed?: boolean;
|
|
2694
|
-
extraProperties?: {
|
|
2695
|
-
[key: string]: unknown;
|
|
2696
|
-
};
|
|
2697
|
-
filter?: string;
|
|
2698
|
-
id: string;
|
|
2699
|
-
isExternal?: boolean;
|
|
2700
|
-
isLockedOut?: boolean;
|
|
2701
|
-
maxCreationTime?: string;
|
|
2702
|
-
maxModifitionTime?: string;
|
|
2703
|
-
maxResultCount?: number;
|
|
2704
|
-
minCreationTime?: string;
|
|
2705
|
-
minModifitionTime?: string;
|
|
2706
|
-
name?: string;
|
|
2707
|
-
notActive?: boolean;
|
|
2708
|
-
organizationUnitId?: string;
|
|
2709
|
-
phoneNumber?: string;
|
|
2710
|
-
roleId?: string;
|
|
2711
|
-
skipCount?: number;
|
|
2712
|
-
sorting?: string;
|
|
2713
|
-
surname?: string;
|
|
2714
|
-
userName?: string;
|
|
2715
|
-
};
|
|
2629
|
+
req: GetApiIdentityOrganizationUnitsByIdMembersData;
|
|
2716
2630
|
res: {
|
|
2717
2631
|
/**
|
|
2718
2632
|
* Success
|
|
@@ -2747,9 +2661,7 @@ export type $OpenApiTs = {
|
|
|
2747
2661
|
};
|
|
2748
2662
|
'/api/identity/organization-units': {
|
|
2749
2663
|
post: {
|
|
2750
|
-
req:
|
|
2751
|
-
requestBody?: Volo_Abp_Identity_OrganizationUnitCreateDto;
|
|
2752
|
-
};
|
|
2664
|
+
req: PostApiIdentityOrganizationUnitsData;
|
|
2753
2665
|
res: {
|
|
2754
2666
|
/**
|
|
2755
2667
|
* Success
|
|
@@ -2782,9 +2694,7 @@ export type $OpenApiTs = {
|
|
|
2782
2694
|
};
|
|
2783
2695
|
};
|
|
2784
2696
|
delete: {
|
|
2785
|
-
req:
|
|
2786
|
-
id?: string;
|
|
2787
|
-
};
|
|
2697
|
+
req: DeleteApiIdentityOrganizationUnitsData;
|
|
2788
2698
|
res: {
|
|
2789
2699
|
/**
|
|
2790
2700
|
* Success
|
|
@@ -2817,15 +2727,7 @@ export type $OpenApiTs = {
|
|
|
2817
2727
|
};
|
|
2818
2728
|
};
|
|
2819
2729
|
get: {
|
|
2820
|
-
req:
|
|
2821
|
-
extraProperties?: {
|
|
2822
|
-
[key: string]: unknown;
|
|
2823
|
-
};
|
|
2824
|
-
filter?: string;
|
|
2825
|
-
maxResultCount?: number;
|
|
2826
|
-
skipCount?: number;
|
|
2827
|
-
sorting?: string;
|
|
2828
|
-
};
|
|
2730
|
+
req: GetApiIdentityOrganizationUnitsData;
|
|
2829
2731
|
res: {
|
|
2830
2732
|
/**
|
|
2831
2733
|
* Success
|
|
@@ -2860,9 +2762,7 @@ export type $OpenApiTs = {
|
|
|
2860
2762
|
};
|
|
2861
2763
|
'/api/identity/organization-units/{id}': {
|
|
2862
2764
|
get: {
|
|
2863
|
-
req:
|
|
2864
|
-
id: string;
|
|
2865
|
-
};
|
|
2765
|
+
req: GetApiIdentityOrganizationUnitsByIdData;
|
|
2866
2766
|
res: {
|
|
2867
2767
|
/**
|
|
2868
2768
|
* Success
|
|
@@ -2895,10 +2795,7 @@ export type $OpenApiTs = {
|
|
|
2895
2795
|
};
|
|
2896
2796
|
};
|
|
2897
2797
|
put: {
|
|
2898
|
-
req:
|
|
2899
|
-
id: string;
|
|
2900
|
-
requestBody?: Volo_Abp_Identity_OrganizationUnitUpdateDto;
|
|
2901
|
-
};
|
|
2798
|
+
req: PutApiIdentityOrganizationUnitsByIdData;
|
|
2902
2799
|
res: {
|
|
2903
2800
|
/**
|
|
2904
2801
|
* Success
|
|
@@ -2967,10 +2864,7 @@ export type $OpenApiTs = {
|
|
|
2967
2864
|
};
|
|
2968
2865
|
'/api/identity/organization-units/{id}/move': {
|
|
2969
2866
|
put: {
|
|
2970
|
-
req:
|
|
2971
|
-
id: string;
|
|
2972
|
-
requestBody?: Volo_Abp_Identity_OrganizationUnitMoveInput;
|
|
2973
|
-
};
|
|
2867
|
+
req: PutApiIdentityOrganizationUnitsByIdMoveData;
|
|
2974
2868
|
res: {
|
|
2975
2869
|
/**
|
|
2976
2870
|
* Success
|
|
@@ -3005,16 +2899,7 @@ export type $OpenApiTs = {
|
|
|
3005
2899
|
};
|
|
3006
2900
|
'/api/identity/organization-units/available-users': {
|
|
3007
2901
|
get: {
|
|
3008
|
-
req:
|
|
3009
|
-
extraProperties?: {
|
|
3010
|
-
[key: string]: unknown;
|
|
3011
|
-
};
|
|
3012
|
-
filter?: string;
|
|
3013
|
-
id?: string;
|
|
3014
|
-
maxResultCount?: number;
|
|
3015
|
-
skipCount?: number;
|
|
3016
|
-
sorting?: string;
|
|
3017
|
-
};
|
|
2902
|
+
req: GetApiIdentityOrganizationUnitsAvailableUsersData;
|
|
3018
2903
|
res: {
|
|
3019
2904
|
/**
|
|
3020
2905
|
* Success
|
|
@@ -3049,16 +2934,7 @@ export type $OpenApiTs = {
|
|
|
3049
2934
|
};
|
|
3050
2935
|
'/api/identity/organization-units/available-roles': {
|
|
3051
2936
|
get: {
|
|
3052
|
-
req:
|
|
3053
|
-
extraProperties?: {
|
|
3054
|
-
[key: string]: unknown;
|
|
3055
|
-
};
|
|
3056
|
-
filter?: string;
|
|
3057
|
-
id?: string;
|
|
3058
|
-
maxResultCount?: number;
|
|
3059
|
-
skipCount?: number;
|
|
3060
|
-
sorting?: string;
|
|
3061
|
-
};
|
|
2937
|
+
req: GetApiIdentityOrganizationUnitsAvailableRolesData;
|
|
3062
2938
|
res: {
|
|
3063
2939
|
/**
|
|
3064
2940
|
* Success
|
|
@@ -3093,10 +2969,7 @@ export type $OpenApiTs = {
|
|
|
3093
2969
|
};
|
|
3094
2970
|
'/api/identity/organization-units/{id}/move-all-users': {
|
|
3095
2971
|
put: {
|
|
3096
|
-
req:
|
|
3097
|
-
id: string;
|
|
3098
|
-
organizationId?: string;
|
|
3099
|
-
};
|
|
2972
|
+
req: PutApiIdentityOrganizationUnitsByIdMoveAllUsersData;
|
|
3100
2973
|
res: {
|
|
3101
2974
|
/**
|
|
3102
2975
|
* Success
|
|
@@ -3131,10 +3004,7 @@ export type $OpenApiTs = {
|
|
|
3131
3004
|
};
|
|
3132
3005
|
'/api/identity/organization-units/{id}/members/{memberId}': {
|
|
3133
3006
|
delete: {
|
|
3134
|
-
req:
|
|
3135
|
-
id: string;
|
|
3136
|
-
memberId: string;
|
|
3137
|
-
};
|
|
3007
|
+
req: DeleteApiIdentityOrganizationUnitsByIdMembersByMemberIdData;
|
|
3138
3008
|
res: {
|
|
3139
3009
|
/**
|
|
3140
3010
|
* Success
|
|
@@ -3169,10 +3039,7 @@ export type $OpenApiTs = {
|
|
|
3169
3039
|
};
|
|
3170
3040
|
'/api/identity/organization-units/{id}/roles/{roleId}': {
|
|
3171
3041
|
delete: {
|
|
3172
|
-
req:
|
|
3173
|
-
id: string;
|
|
3174
|
-
roleId: string;
|
|
3175
|
-
};
|
|
3042
|
+
req: DeleteApiIdentityOrganizationUnitsByIdRolesByRoleIdData;
|
|
3176
3043
|
res: {
|
|
3177
3044
|
/**
|
|
3178
3045
|
* Success
|
|
@@ -3207,9 +3074,7 @@ export type $OpenApiTs = {
|
|
|
3207
3074
|
};
|
|
3208
3075
|
'/api/identity/roles/{id}': {
|
|
3209
3076
|
get: {
|
|
3210
|
-
req:
|
|
3211
|
-
id: string;
|
|
3212
|
-
};
|
|
3077
|
+
req: GetApiIdentityRolesByIdData;
|
|
3213
3078
|
res: {
|
|
3214
3079
|
/**
|
|
3215
3080
|
* Success
|
|
@@ -3242,10 +3107,7 @@ export type $OpenApiTs = {
|
|
|
3242
3107
|
};
|
|
3243
3108
|
};
|
|
3244
3109
|
put: {
|
|
3245
|
-
req:
|
|
3246
|
-
id: string;
|
|
3247
|
-
requestBody?: Volo_Abp_Identity_IdentityRoleUpdateDto;
|
|
3248
|
-
};
|
|
3110
|
+
req: PutApiIdentityRolesByIdData;
|
|
3249
3111
|
res: {
|
|
3250
3112
|
/**
|
|
3251
3113
|
* Success
|
|
@@ -3278,9 +3140,7 @@ export type $OpenApiTs = {
|
|
|
3278
3140
|
};
|
|
3279
3141
|
};
|
|
3280
3142
|
delete: {
|
|
3281
|
-
req:
|
|
3282
|
-
id: string;
|
|
3283
|
-
};
|
|
3143
|
+
req: DeleteApiIdentityRolesByIdData;
|
|
3284
3144
|
res: {
|
|
3285
3145
|
/**
|
|
3286
3146
|
* Success
|
|
@@ -3315,9 +3175,7 @@ export type $OpenApiTs = {
|
|
|
3315
3175
|
};
|
|
3316
3176
|
'/api/identity/roles': {
|
|
3317
3177
|
post: {
|
|
3318
|
-
req:
|
|
3319
|
-
requestBody?: Volo_Abp_Identity_IdentityRoleCreateDto;
|
|
3320
|
-
};
|
|
3178
|
+
req: PostApiIdentityRolesData;
|
|
3321
3179
|
res: {
|
|
3322
3180
|
/**
|
|
3323
3181
|
* Success
|
|
@@ -3350,15 +3208,7 @@ export type $OpenApiTs = {
|
|
|
3350
3208
|
};
|
|
3351
3209
|
};
|
|
3352
3210
|
get: {
|
|
3353
|
-
req:
|
|
3354
|
-
extraProperties?: {
|
|
3355
|
-
[key: string]: unknown;
|
|
3356
|
-
};
|
|
3357
|
-
filter?: string;
|
|
3358
|
-
maxResultCount?: number;
|
|
3359
|
-
skipCount?: number;
|
|
3360
|
-
sorting?: string;
|
|
3361
|
-
};
|
|
3211
|
+
req: GetApiIdentityRolesData;
|
|
3362
3212
|
res: {
|
|
3363
3213
|
/**
|
|
3364
3214
|
* Success
|
|
@@ -3427,10 +3277,7 @@ export type $OpenApiTs = {
|
|
|
3427
3277
|
};
|
|
3428
3278
|
'/api/identity/roles/{id}/claims': {
|
|
3429
3279
|
put: {
|
|
3430
|
-
req:
|
|
3431
|
-
id: string;
|
|
3432
|
-
requestBody?: Array<Volo_Abp_Identity_IdentityRoleClaimDto>;
|
|
3433
|
-
};
|
|
3280
|
+
req: PutApiIdentityRolesByIdClaimsData;
|
|
3434
3281
|
res: {
|
|
3435
3282
|
/**
|
|
3436
3283
|
* Success
|
|
@@ -3463,9 +3310,7 @@ export type $OpenApiTs = {
|
|
|
3463
3310
|
};
|
|
3464
3311
|
};
|
|
3465
3312
|
get: {
|
|
3466
|
-
req:
|
|
3467
|
-
id: string;
|
|
3468
|
-
};
|
|
3313
|
+
req: GetApiIdentityRolesByIdClaimsData;
|
|
3469
3314
|
res: {
|
|
3470
3315
|
/**
|
|
3471
3316
|
* Success
|
|
@@ -3500,10 +3345,7 @@ export type $OpenApiTs = {
|
|
|
3500
3345
|
};
|
|
3501
3346
|
'/api/identity/roles/{id}/move-all-users': {
|
|
3502
3347
|
put: {
|
|
3503
|
-
req:
|
|
3504
|
-
id: string;
|
|
3505
|
-
roleId?: string;
|
|
3506
|
-
};
|
|
3348
|
+
req: PutApiIdentityRolesByIdMoveAllUsersData;
|
|
3507
3349
|
res: {
|
|
3508
3350
|
/**
|
|
3509
3351
|
* Success
|
|
@@ -3572,9 +3414,7 @@ export type $OpenApiTs = {
|
|
|
3572
3414
|
};
|
|
3573
3415
|
'/api/openiddict/scopes/{id}': {
|
|
3574
3416
|
get: {
|
|
3575
|
-
req:
|
|
3576
|
-
id: string;
|
|
3577
|
-
};
|
|
3417
|
+
req: GetApiOpeniddictScopesByIdData;
|
|
3578
3418
|
res: {
|
|
3579
3419
|
/**
|
|
3580
3420
|
* Success
|
|
@@ -3607,10 +3447,7 @@ export type $OpenApiTs = {
|
|
|
3607
3447
|
};
|
|
3608
3448
|
};
|
|
3609
3449
|
put: {
|
|
3610
|
-
req:
|
|
3611
|
-
id: string;
|
|
3612
|
-
requestBody?: Volo_Abp_OpenIddict_Scopes_Dtos_UpdateScopeInput;
|
|
3613
|
-
};
|
|
3450
|
+
req: PutApiOpeniddictScopesByIdData;
|
|
3614
3451
|
res: {
|
|
3615
3452
|
/**
|
|
3616
3453
|
* Success
|
|
@@ -3645,12 +3482,7 @@ export type $OpenApiTs = {
|
|
|
3645
3482
|
};
|
|
3646
3483
|
'/api/openiddict/scopes': {
|
|
3647
3484
|
get: {
|
|
3648
|
-
req:
|
|
3649
|
-
filter?: string;
|
|
3650
|
-
maxResultCount?: number;
|
|
3651
|
-
skipCount?: number;
|
|
3652
|
-
sorting?: string;
|
|
3653
|
-
};
|
|
3485
|
+
req: GetApiOpeniddictScopesData;
|
|
3654
3486
|
res: {
|
|
3655
3487
|
/**
|
|
3656
3488
|
* Success
|
|
@@ -3683,9 +3515,7 @@ export type $OpenApiTs = {
|
|
|
3683
3515
|
};
|
|
3684
3516
|
};
|
|
3685
3517
|
post: {
|
|
3686
|
-
req:
|
|
3687
|
-
requestBody?: Volo_Abp_OpenIddict_Scopes_Dtos_CreateScopeInput;
|
|
3688
|
-
};
|
|
3518
|
+
req: PostApiOpeniddictScopesData;
|
|
3689
3519
|
res: {
|
|
3690
3520
|
/**
|
|
3691
3521
|
* Success
|
|
@@ -3718,9 +3548,7 @@ export type $OpenApiTs = {
|
|
|
3718
3548
|
};
|
|
3719
3549
|
};
|
|
3720
3550
|
delete: {
|
|
3721
|
-
req:
|
|
3722
|
-
id?: string;
|
|
3723
|
-
};
|
|
3551
|
+
req: DeleteApiOpeniddictScopesData;
|
|
3724
3552
|
res: {
|
|
3725
3553
|
/**
|
|
3726
3554
|
* Success
|
|
@@ -3789,22 +3617,7 @@ export type $OpenApiTs = {
|
|
|
3789
3617
|
};
|
|
3790
3618
|
'/api/identity/security-logs': {
|
|
3791
3619
|
get: {
|
|
3792
|
-
req:
|
|
3793
|
-
action?: string;
|
|
3794
|
-
applicationName?: string;
|
|
3795
|
-
clientId?: string;
|
|
3796
|
-
correlationId?: string;
|
|
3797
|
-
endTime?: string;
|
|
3798
|
-
extraProperties?: {
|
|
3799
|
-
[key: string]: unknown;
|
|
3800
|
-
};
|
|
3801
|
-
identity?: string;
|
|
3802
|
-
maxResultCount?: number;
|
|
3803
|
-
skipCount?: number;
|
|
3804
|
-
sorting?: string;
|
|
3805
|
-
startTime?: string;
|
|
3806
|
-
userName?: string;
|
|
3807
|
-
};
|
|
3620
|
+
req: GetApiIdentitySecurityLogsData;
|
|
3808
3621
|
res: {
|
|
3809
3622
|
/**
|
|
3810
3623
|
* Success
|
|
@@ -3839,9 +3652,7 @@ export type $OpenApiTs = {
|
|
|
3839
3652
|
};
|
|
3840
3653
|
'/api/identity/security-logs/{id}': {
|
|
3841
3654
|
get: {
|
|
3842
|
-
req:
|
|
3843
|
-
id: string;
|
|
3844
|
-
};
|
|
3655
|
+
req: GetApiIdentitySecurityLogsByIdData;
|
|
3845
3656
|
res: {
|
|
3846
3657
|
/**
|
|
3847
3658
|
* Success
|
|
@@ -3876,22 +3687,7 @@ export type $OpenApiTs = {
|
|
|
3876
3687
|
};
|
|
3877
3688
|
'/api/identity/security-logs/my': {
|
|
3878
3689
|
get: {
|
|
3879
|
-
req:
|
|
3880
|
-
action?: string;
|
|
3881
|
-
applicationName?: string;
|
|
3882
|
-
clientId?: string;
|
|
3883
|
-
correlationId?: string;
|
|
3884
|
-
endTime?: string;
|
|
3885
|
-
extraProperties?: {
|
|
3886
|
-
[key: string]: unknown;
|
|
3887
|
-
};
|
|
3888
|
-
identity?: string;
|
|
3889
|
-
maxResultCount?: number;
|
|
3890
|
-
skipCount?: number;
|
|
3891
|
-
sorting?: string;
|
|
3892
|
-
startTime?: string;
|
|
3893
|
-
userName?: string;
|
|
3894
|
-
};
|
|
3690
|
+
req: GetApiIdentitySecurityLogsMyData;
|
|
3895
3691
|
res: {
|
|
3896
3692
|
/**
|
|
3897
3693
|
* Success
|
|
@@ -3926,9 +3722,7 @@ export type $OpenApiTs = {
|
|
|
3926
3722
|
};
|
|
3927
3723
|
'/api/identity/security-logs/my/{id}': {
|
|
3928
3724
|
get: {
|
|
3929
|
-
req:
|
|
3930
|
-
id: string;
|
|
3931
|
-
};
|
|
3725
|
+
req: GetApiIdentitySecurityLogsMyByIdData;
|
|
3932
3726
|
res: {
|
|
3933
3727
|
/**
|
|
3934
3728
|
* Success
|
|
@@ -3995,9 +3789,7 @@ export type $OpenApiTs = {
|
|
|
3995
3789
|
};
|
|
3996
3790
|
};
|
|
3997
3791
|
put: {
|
|
3998
|
-
req:
|
|
3999
|
-
requestBody?: Volo_Abp_Identity_IdentitySettingsDto;
|
|
4000
|
-
};
|
|
3792
|
+
req: PutApiIdentitySettingsData;
|
|
4001
3793
|
res: {
|
|
4002
3794
|
/**
|
|
4003
3795
|
* Success
|
|
@@ -4064,9 +3856,7 @@ export type $OpenApiTs = {
|
|
|
4064
3856
|
};
|
|
4065
3857
|
};
|
|
4066
3858
|
put: {
|
|
4067
|
-
req:
|
|
4068
|
-
requestBody?: Volo_Abp_Identity_IdentityLdapSettingsDto;
|
|
4069
|
-
};
|
|
3859
|
+
req: PutApiIdentitySettingsLdapData;
|
|
4070
3860
|
res: {
|
|
4071
3861
|
/**
|
|
4072
3862
|
* Success
|
|
@@ -4133,9 +3923,7 @@ export type $OpenApiTs = {
|
|
|
4133
3923
|
};
|
|
4134
3924
|
};
|
|
4135
3925
|
put: {
|
|
4136
|
-
req:
|
|
4137
|
-
requestBody?: Volo_Abp_Identity_IdentityOAuthSettingsDto;
|
|
4138
|
-
};
|
|
3926
|
+
req: PutApiIdentitySettingsOauthData;
|
|
4139
3927
|
res: {
|
|
4140
3928
|
/**
|
|
4141
3929
|
* Success
|
|
@@ -4170,9 +3958,7 @@ export type $OpenApiTs = {
|
|
|
4170
3958
|
};
|
|
4171
3959
|
'/api/identity/users/{id}': {
|
|
4172
3960
|
get: {
|
|
4173
|
-
req:
|
|
4174
|
-
id: string;
|
|
4175
|
-
};
|
|
3961
|
+
req: GetApiIdentityUsersByIdData;
|
|
4176
3962
|
res: {
|
|
4177
3963
|
/**
|
|
4178
3964
|
* Success
|
|
@@ -4205,10 +3991,7 @@ export type $OpenApiTs = {
|
|
|
4205
3991
|
};
|
|
4206
3992
|
};
|
|
4207
3993
|
put: {
|
|
4208
|
-
req:
|
|
4209
|
-
id: string;
|
|
4210
|
-
requestBody?: Volo_Abp_Identity_IdentityUserUpdateDto;
|
|
4211
|
-
};
|
|
3994
|
+
req: PutApiIdentityUsersByIdData;
|
|
4212
3995
|
res: {
|
|
4213
3996
|
/**
|
|
4214
3997
|
* Success
|
|
@@ -4241,9 +4024,7 @@ export type $OpenApiTs = {
|
|
|
4241
4024
|
};
|
|
4242
4025
|
};
|
|
4243
4026
|
delete: {
|
|
4244
|
-
req:
|
|
4245
|
-
id: string;
|
|
4246
|
-
};
|
|
4027
|
+
req: DeleteApiIdentityUsersByIdData;
|
|
4247
4028
|
res: {
|
|
4248
4029
|
/**
|
|
4249
4030
|
* Success
|
|
@@ -4278,30 +4059,7 @@ export type $OpenApiTs = {
|
|
|
4278
4059
|
};
|
|
4279
4060
|
'/api/identity/users': {
|
|
4280
4061
|
get: {
|
|
4281
|
-
req:
|
|
4282
|
-
emailAddress?: string;
|
|
4283
|
-
emailConfirmed?: boolean;
|
|
4284
|
-
extraProperties?: {
|
|
4285
|
-
[key: string]: unknown;
|
|
4286
|
-
};
|
|
4287
|
-
filter?: string;
|
|
4288
|
-
isExternal?: boolean;
|
|
4289
|
-
isLockedOut?: boolean;
|
|
4290
|
-
maxCreationTime?: string;
|
|
4291
|
-
maxModifitionTime?: string;
|
|
4292
|
-
maxResultCount?: number;
|
|
4293
|
-
minCreationTime?: string;
|
|
4294
|
-
minModifitionTime?: string;
|
|
4295
|
-
name?: string;
|
|
4296
|
-
notActive?: boolean;
|
|
4297
|
-
organizationUnitId?: string;
|
|
4298
|
-
phoneNumber?: string;
|
|
4299
|
-
roleId?: string;
|
|
4300
|
-
skipCount?: number;
|
|
4301
|
-
sorting?: string;
|
|
4302
|
-
surname?: string;
|
|
4303
|
-
userName?: string;
|
|
4304
|
-
};
|
|
4062
|
+
req: GetApiIdentityUsersData;
|
|
4305
4063
|
res: {
|
|
4306
4064
|
/**
|
|
4307
4065
|
* Success
|
|
@@ -4334,9 +4092,7 @@ export type $OpenApiTs = {
|
|
|
4334
4092
|
};
|
|
4335
4093
|
};
|
|
4336
4094
|
post: {
|
|
4337
|
-
req:
|
|
4338
|
-
requestBody?: Volo_Abp_Identity_IdentityUserCreateDto;
|
|
4339
|
-
};
|
|
4095
|
+
req: PostApiIdentityUsersData;
|
|
4340
4096
|
res: {
|
|
4341
4097
|
/**
|
|
4342
4098
|
* Success
|
|
@@ -4371,9 +4127,7 @@ export type $OpenApiTs = {
|
|
|
4371
4127
|
};
|
|
4372
4128
|
'/api/identity/users/by-id/{id}': {
|
|
4373
4129
|
get: {
|
|
4374
|
-
req:
|
|
4375
|
-
id: string;
|
|
4376
|
-
};
|
|
4130
|
+
req: GetApiIdentityUsersByIdByIdData;
|
|
4377
4131
|
res: {
|
|
4378
4132
|
/**
|
|
4379
4133
|
* Success
|
|
@@ -4408,9 +4162,7 @@ export type $OpenApiTs = {
|
|
|
4408
4162
|
};
|
|
4409
4163
|
'/api/identity/users/{id}/roles': {
|
|
4410
4164
|
get: {
|
|
4411
|
-
req:
|
|
4412
|
-
id: string;
|
|
4413
|
-
};
|
|
4165
|
+
req: GetApiIdentityUsersByIdRolesData;
|
|
4414
4166
|
res: {
|
|
4415
4167
|
/**
|
|
4416
4168
|
* Success
|
|
@@ -4443,10 +4195,7 @@ export type $OpenApiTs = {
|
|
|
4443
4195
|
};
|
|
4444
4196
|
};
|
|
4445
4197
|
put: {
|
|
4446
|
-
req:
|
|
4447
|
-
id: string;
|
|
4448
|
-
requestBody?: Volo_Abp_Identity_IdentityUserUpdateRolesDto;
|
|
4449
|
-
};
|
|
4198
|
+
req: PutApiIdentityUsersByIdRolesData;
|
|
4450
4199
|
res: {
|
|
4451
4200
|
/**
|
|
4452
4201
|
* Success
|
|
@@ -4583,9 +4332,7 @@ export type $OpenApiTs = {
|
|
|
4583
4332
|
};
|
|
4584
4333
|
'/api/identity/users/{id}/claims': {
|
|
4585
4334
|
get: {
|
|
4586
|
-
req:
|
|
4587
|
-
id: string;
|
|
4588
|
-
};
|
|
4335
|
+
req: GetApiIdentityUsersByIdClaimsData;
|
|
4589
4336
|
res: {
|
|
4590
4337
|
/**
|
|
4591
4338
|
* Success
|
|
@@ -4618,10 +4365,7 @@ export type $OpenApiTs = {
|
|
|
4618
4365
|
};
|
|
4619
4366
|
};
|
|
4620
4367
|
put: {
|
|
4621
|
-
req:
|
|
4622
|
-
id: string;
|
|
4623
|
-
requestBody?: Array<Volo_Abp_Identity_IdentityUserClaimDto>;
|
|
4624
|
-
};
|
|
4368
|
+
req: PutApiIdentityUsersByIdClaimsData;
|
|
4625
4369
|
res: {
|
|
4626
4370
|
/**
|
|
4627
4371
|
* Success
|
|
@@ -4656,9 +4400,7 @@ export type $OpenApiTs = {
|
|
|
4656
4400
|
};
|
|
4657
4401
|
'/api/identity/users/{id}/organization-units': {
|
|
4658
4402
|
get: {
|
|
4659
|
-
req:
|
|
4660
|
-
id: string;
|
|
4661
|
-
};
|
|
4403
|
+
req: GetApiIdentityUsersByIdOrganizationUnitsData;
|
|
4662
4404
|
res: {
|
|
4663
4405
|
/**
|
|
4664
4406
|
* Success
|
|
@@ -4693,10 +4435,7 @@ export type $OpenApiTs = {
|
|
|
4693
4435
|
};
|
|
4694
4436
|
'/api/identity/users/{id}/lock/{lockoutEnd}': {
|
|
4695
4437
|
put: {
|
|
4696
|
-
req:
|
|
4697
|
-
id: string;
|
|
4698
|
-
lockoutEnd: string;
|
|
4699
|
-
};
|
|
4438
|
+
req: PutApiIdentityUsersByIdLockByLockoutEndData;
|
|
4700
4439
|
res: {
|
|
4701
4440
|
/**
|
|
4702
4441
|
* Success
|
|
@@ -4731,9 +4470,7 @@ export type $OpenApiTs = {
|
|
|
4731
4470
|
};
|
|
4732
4471
|
'/api/identity/users/{id}/unlock': {
|
|
4733
4472
|
put: {
|
|
4734
|
-
req:
|
|
4735
|
-
id: string;
|
|
4736
|
-
};
|
|
4473
|
+
req: PutApiIdentityUsersByIdUnlockData;
|
|
4737
4474
|
res: {
|
|
4738
4475
|
/**
|
|
4739
4476
|
* Success
|
|
@@ -4768,9 +4505,7 @@ export type $OpenApiTs = {
|
|
|
4768
4505
|
};
|
|
4769
4506
|
'/api/identity/users/by-username/{username}': {
|
|
4770
4507
|
get: {
|
|
4771
|
-
req:
|
|
4772
|
-
username: string;
|
|
4773
|
-
};
|
|
4508
|
+
req: GetApiIdentityUsersByUsernameByUsernameData;
|
|
4774
4509
|
res: {
|
|
4775
4510
|
/**
|
|
4776
4511
|
* Success
|
|
@@ -4805,9 +4540,7 @@ export type $OpenApiTs = {
|
|
|
4805
4540
|
};
|
|
4806
4541
|
'/api/identity/users/by-email/{email}': {
|
|
4807
4542
|
get: {
|
|
4808
|
-
req:
|
|
4809
|
-
email: string;
|
|
4810
|
-
};
|
|
4543
|
+
req: GetApiIdentityUsersByEmailByEmailData;
|
|
4811
4544
|
res: {
|
|
4812
4545
|
/**
|
|
4813
4546
|
* Success
|
|
@@ -4842,9 +4575,7 @@ export type $OpenApiTs = {
|
|
|
4842
4575
|
};
|
|
4843
4576
|
'/api/identity/users/{id}/two-factor-enabled': {
|
|
4844
4577
|
get: {
|
|
4845
|
-
req:
|
|
4846
|
-
id: string;
|
|
4847
|
-
};
|
|
4578
|
+
req: GetApiIdentityUsersByIdTwoFactorEnabledData;
|
|
4848
4579
|
res: {
|
|
4849
4580
|
/**
|
|
4850
4581
|
* Success
|
|
@@ -4879,10 +4610,7 @@ export type $OpenApiTs = {
|
|
|
4879
4610
|
};
|
|
4880
4611
|
'/api/identity/users/{id}/two-factor/{enabled}': {
|
|
4881
4612
|
put: {
|
|
4882
|
-
req:
|
|
4883
|
-
enabled: boolean;
|
|
4884
|
-
id: string;
|
|
4885
|
-
};
|
|
4613
|
+
req: PutApiIdentityUsersByIdTwoFactorByEnabledData;
|
|
4886
4614
|
res: {
|
|
4887
4615
|
/**
|
|
4888
4616
|
* Success
|
|
@@ -4917,10 +4645,7 @@ export type $OpenApiTs = {
|
|
|
4917
4645
|
};
|
|
4918
4646
|
'/api/identity/users/{id}/change-password': {
|
|
4919
4647
|
put: {
|
|
4920
|
-
req:
|
|
4921
|
-
id: string;
|
|
4922
|
-
requestBody?: Volo_Abp_Identity_IdentityUserUpdatePasswordInput;
|
|
4923
|
-
};
|
|
4648
|
+
req: PutApiIdentityUsersByIdChangePasswordData;
|
|
4924
4649
|
res: {
|
|
4925
4650
|
/**
|
|
4926
4651
|
* Success
|
|
@@ -5057,9 +4782,7 @@ export type $OpenApiTs = {
|
|
|
5057
4782
|
};
|
|
5058
4783
|
'/api/identity/users/import-external-user': {
|
|
5059
4784
|
post: {
|
|
5060
|
-
req:
|
|
5061
|
-
requestBody?: Volo_Abp_Identity_ImportExternalUserInput;
|
|
5062
|
-
};
|
|
4785
|
+
req: PostApiIdentityUsersImportExternalUserData;
|
|
5063
4786
|
res: {
|
|
5064
4787
|
/**
|
|
5065
4788
|
* Success
|
|
@@ -5094,31 +4817,7 @@ export type $OpenApiTs = {
|
|
|
5094
4817
|
};
|
|
5095
4818
|
'/api/identity/users/export-as-excel': {
|
|
5096
4819
|
get: {
|
|
5097
|
-
req:
|
|
5098
|
-
emailAddress?: string;
|
|
5099
|
-
emailConfirmed?: boolean;
|
|
5100
|
-
extraProperties?: {
|
|
5101
|
-
[key: string]: unknown;
|
|
5102
|
-
};
|
|
5103
|
-
filter?: string;
|
|
5104
|
-
isExternal?: boolean;
|
|
5105
|
-
isLockedOut?: boolean;
|
|
5106
|
-
maxCreationTime?: string;
|
|
5107
|
-
maxModifitionTime?: string;
|
|
5108
|
-
maxResultCount?: number;
|
|
5109
|
-
minCreationTime?: string;
|
|
5110
|
-
minModifitionTime?: string;
|
|
5111
|
-
name?: string;
|
|
5112
|
-
notActive?: boolean;
|
|
5113
|
-
organizationUnitId?: string;
|
|
5114
|
-
phoneNumber?: string;
|
|
5115
|
-
roleId?: string;
|
|
5116
|
-
skipCount?: number;
|
|
5117
|
-
sorting?: string;
|
|
5118
|
-
surname?: string;
|
|
5119
|
-
token: string;
|
|
5120
|
-
userName?: string;
|
|
5121
|
-
};
|
|
4820
|
+
req: GetApiIdentityUsersExportAsExcelData;
|
|
5122
4821
|
res: {
|
|
5123
4822
|
/**
|
|
5124
4823
|
* Success
|
|
@@ -5153,31 +4852,7 @@ export type $OpenApiTs = {
|
|
|
5153
4852
|
};
|
|
5154
4853
|
'/api/identity/users/export-as-csv': {
|
|
5155
4854
|
get: {
|
|
5156
|
-
req:
|
|
5157
|
-
emailAddress?: string;
|
|
5158
|
-
emailConfirmed?: boolean;
|
|
5159
|
-
extraProperties?: {
|
|
5160
|
-
[key: string]: unknown;
|
|
5161
|
-
};
|
|
5162
|
-
filter?: string;
|
|
5163
|
-
isExternal?: boolean;
|
|
5164
|
-
isLockedOut?: boolean;
|
|
5165
|
-
maxCreationTime?: string;
|
|
5166
|
-
maxModifitionTime?: string;
|
|
5167
|
-
maxResultCount?: number;
|
|
5168
|
-
minCreationTime?: string;
|
|
5169
|
-
minModifitionTime?: string;
|
|
5170
|
-
name?: string;
|
|
5171
|
-
notActive?: boolean;
|
|
5172
|
-
organizationUnitId?: string;
|
|
5173
|
-
phoneNumber?: string;
|
|
5174
|
-
roleId?: string;
|
|
5175
|
-
skipCount?: number;
|
|
5176
|
-
sorting?: string;
|
|
5177
|
-
surname?: string;
|
|
5178
|
-
token: string;
|
|
5179
|
-
userName?: string;
|
|
5180
|
-
};
|
|
4855
|
+
req: GetApiIdentityUsersExportAsCsvData;
|
|
5181
4856
|
res: {
|
|
5182
4857
|
/**
|
|
5183
4858
|
* Success
|
|
@@ -5246,10 +4921,7 @@ export type $OpenApiTs = {
|
|
|
5246
4921
|
};
|
|
5247
4922
|
'/api/identity/users/import-users-sample-file': {
|
|
5248
4923
|
get: {
|
|
5249
|
-
req:
|
|
5250
|
-
fileType?: Volo_Abp_Identity_ImportUsersFromFileType;
|
|
5251
|
-
token: string;
|
|
5252
|
-
};
|
|
4924
|
+
req: GetApiIdentityUsersImportUsersSampleFileData;
|
|
5253
4925
|
res: {
|
|
5254
4926
|
/**
|
|
5255
4927
|
* Success
|
|
@@ -5284,12 +4956,7 @@ export type $OpenApiTs = {
|
|
|
5284
4956
|
};
|
|
5285
4957
|
'/api/identity/users/import-users-from-file': {
|
|
5286
4958
|
post: {
|
|
5287
|
-
req:
|
|
5288
|
-
fileType?: Volo_Abp_Identity_ImportUsersFromFileType;
|
|
5289
|
-
formData?: {
|
|
5290
|
-
File?: (Blob | File);
|
|
5291
|
-
};
|
|
5292
|
-
};
|
|
4959
|
+
req: PostApiIdentityUsersImportUsersFromFileData;
|
|
5293
4960
|
res: {
|
|
5294
4961
|
/**
|
|
5295
4962
|
* Success
|
|
@@ -5324,9 +4991,7 @@ export type $OpenApiTs = {
|
|
|
5324
4991
|
};
|
|
5325
4992
|
'/api/identity/users/download-import-invalid-users-file': {
|
|
5326
4993
|
get: {
|
|
5327
|
-
req:
|
|
5328
|
-
token: string;
|
|
5329
|
-
};
|
|
4994
|
+
req: GetApiIdentityUsersDownloadImportInvalidUsersFileData;
|
|
5330
4995
|
res: {
|
|
5331
4996
|
/**
|
|
5332
4997
|
* Success
|
|
@@ -5361,9 +5026,7 @@ export type $OpenApiTs = {
|
|
|
5361
5026
|
};
|
|
5362
5027
|
'/integration-api/identity/users/{id}/role-names': {
|
|
5363
5028
|
get: {
|
|
5364
|
-
req:
|
|
5365
|
-
id: string;
|
|
5366
|
-
};
|
|
5029
|
+
req: GetIntegrationApiIdentityUsersByIdRoleNamesData;
|
|
5367
5030
|
res: {
|
|
5368
5031
|
/**
|
|
5369
5032
|
* Success
|
|
@@ -5398,9 +5061,7 @@ export type $OpenApiTs = {
|
|
|
5398
5061
|
};
|
|
5399
5062
|
'/integration-api/identity/users/{id}': {
|
|
5400
5063
|
get: {
|
|
5401
|
-
req:
|
|
5402
|
-
id: string;
|
|
5403
|
-
};
|
|
5064
|
+
req: GetIntegrationApiIdentityUsersByIdData;
|
|
5404
5065
|
res: {
|
|
5405
5066
|
/**
|
|
5406
5067
|
* Success
|
|
@@ -5435,9 +5096,7 @@ export type $OpenApiTs = {
|
|
|
5435
5096
|
};
|
|
5436
5097
|
'/integration-api/identity/users/by-username/{userName}': {
|
|
5437
5098
|
get: {
|
|
5438
|
-
req:
|
|
5439
|
-
userName: string;
|
|
5440
|
-
};
|
|
5099
|
+
req: GetIntegrationApiIdentityUsersByUsernameByUserNameData;
|
|
5441
5100
|
res: {
|
|
5442
5101
|
/**
|
|
5443
5102
|
* Success
|
|
@@ -5472,15 +5131,7 @@ export type $OpenApiTs = {
|
|
|
5472
5131
|
};
|
|
5473
5132
|
'/integration-api/identity/users/search': {
|
|
5474
5133
|
get: {
|
|
5475
|
-
req:
|
|
5476
|
-
extraProperties?: {
|
|
5477
|
-
[key: string]: unknown;
|
|
5478
|
-
};
|
|
5479
|
-
filter?: string;
|
|
5480
|
-
maxResultCount?: number;
|
|
5481
|
-
skipCount?: number;
|
|
5482
|
-
sorting?: string;
|
|
5483
|
-
};
|
|
5134
|
+
req: GetIntegrationApiIdentityUsersSearchData;
|
|
5484
5135
|
res: {
|
|
5485
5136
|
/**
|
|
5486
5137
|
* Success
|
|
@@ -5515,9 +5166,7 @@ export type $OpenApiTs = {
|
|
|
5515
5166
|
};
|
|
5516
5167
|
'/integration-api/identity/users/count': {
|
|
5517
5168
|
get: {
|
|
5518
|
-
req:
|
|
5519
|
-
filter?: string;
|
|
5520
|
-
};
|
|
5169
|
+
req: GetIntegrationApiIdentityUsersCountData;
|
|
5521
5170
|
res: {
|
|
5522
5171
|
/**
|
|
5523
5172
|
* Success
|
|
@@ -5552,9 +5201,7 @@ export type $OpenApiTs = {
|
|
|
5552
5201
|
};
|
|
5553
5202
|
'/api/identity/users/lookup/{id}': {
|
|
5554
5203
|
get: {
|
|
5555
|
-
req:
|
|
5556
|
-
id: string;
|
|
5557
|
-
};
|
|
5204
|
+
req: GetApiIdentityUsersLookupByIdData;
|
|
5558
5205
|
res: {
|
|
5559
5206
|
/**
|
|
5560
5207
|
* Success
|
|
@@ -5589,9 +5236,7 @@ export type $OpenApiTs = {
|
|
|
5589
5236
|
};
|
|
5590
5237
|
'/api/identity/users/lookup/by-username/{userName}': {
|
|
5591
5238
|
get: {
|
|
5592
|
-
req:
|
|
5593
|
-
userName: string;
|
|
5594
|
-
};
|
|
5239
|
+
req: GetApiIdentityUsersLookupByUsernameByUserNameData;
|
|
5595
5240
|
res: {
|
|
5596
5241
|
/**
|
|
5597
5242
|
* Success
|
|
@@ -5626,15 +5271,7 @@ export type $OpenApiTs = {
|
|
|
5626
5271
|
};
|
|
5627
5272
|
'/api/identity/users/lookup/search': {
|
|
5628
5273
|
get: {
|
|
5629
|
-
req:
|
|
5630
|
-
extraProperties?: {
|
|
5631
|
-
[key: string]: unknown;
|
|
5632
|
-
};
|
|
5633
|
-
filter?: string;
|
|
5634
|
-
maxResultCount?: number;
|
|
5635
|
-
skipCount?: number;
|
|
5636
|
-
sorting?: string;
|
|
5637
|
-
};
|
|
5274
|
+
req: GetApiIdentityUsersLookupSearchData;
|
|
5638
5275
|
res: {
|
|
5639
5276
|
/**
|
|
5640
5277
|
* Success
|
|
@@ -5669,9 +5306,7 @@ export type $OpenApiTs = {
|
|
|
5669
5306
|
};
|
|
5670
5307
|
'/api/identity/users/lookup/count': {
|
|
5671
5308
|
get: {
|
|
5672
|
-
req:
|
|
5673
|
-
filter?: string;
|
|
5674
|
-
};
|
|
5309
|
+
req: GetApiIdentityUsersLookupCountData;
|
|
5675
5310
|
res: {
|
|
5676
5311
|
/**
|
|
5677
5312
|
* Success
|