@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.
@@ -1035,9 +1035,7 @@ export type PostApiAccountUserDelegationDeleteDelegationResponse = unknown;
1035
1035
  export type $OpenApiTs = {
1036
1036
  '/api/abp/api-definition': {
1037
1037
  get: {
1038
- req: {
1039
- includeTypes?: boolean;
1040
- };
1038
+ req: GetApiAbpApiDefinitionData;
1041
1039
  res: {
1042
1040
  /**
1043
1041
  * Success
@@ -1072,9 +1070,7 @@ export type $OpenApiTs = {
1072
1070
  };
1073
1071
  '/api/abp/application-configuration': {
1074
1072
  get: {
1075
- req: {
1076
- includeLocalizationResources?: boolean;
1077
- };
1073
+ req: GetApiAbpApplicationConfigurationData;
1078
1074
  res: {
1079
1075
  /**
1080
1076
  * Success
@@ -1109,10 +1105,7 @@ export type $OpenApiTs = {
1109
1105
  };
1110
1106
  '/api/abp/application-localization': {
1111
1107
  get: {
1112
- req: {
1113
- cultureName: string;
1114
- onlyDynamics?: boolean;
1115
- };
1108
+ req: GetApiAbpApplicationLocalizationData;
1116
1109
  res: {
1117
1110
  /**
1118
1111
  * Success
@@ -1147,9 +1140,7 @@ export type $OpenApiTs = {
1147
1140
  };
1148
1141
  '/api/abp/multi-tenancy/tenants/by-name/{name}': {
1149
1142
  get: {
1150
- req: {
1151
- name: string;
1152
- };
1143
+ req: GetApiAbpMultiTenancyTenantsByNameByNameData;
1153
1144
  res: {
1154
1145
  /**
1155
1146
  * Success
@@ -1184,9 +1175,7 @@ export type $OpenApiTs = {
1184
1175
  };
1185
1176
  '/api/abp/multi-tenancy/tenants/by-id/{id}': {
1186
1177
  get: {
1187
- req: {
1188
- id: string;
1189
- };
1178
+ req: GetApiAbpMultiTenancyTenantsByIdByIdData;
1190
1179
  res: {
1191
1180
  /**
1192
1181
  * Success
@@ -1221,9 +1210,7 @@ export type $OpenApiTs = {
1221
1210
  };
1222
1211
  '/api/account/register': {
1223
1212
  post: {
1224
- req: {
1225
- requestBody?: Volo_Abp_Account_RegisterDto;
1226
- };
1213
+ req: PostApiAccountRegisterData;
1227
1214
  res: {
1228
1215
  /**
1229
1216
  * Success
@@ -1258,9 +1245,7 @@ export type $OpenApiTs = {
1258
1245
  };
1259
1246
  '/api/account/send-password-reset-code': {
1260
1247
  post: {
1261
- req: {
1262
- requestBody?: Volo_Abp_Account_SendPasswordResetCodeDto;
1263
- };
1248
+ req: PostApiAccountSendPasswordResetCodeData;
1264
1249
  res: {
1265
1250
  /**
1266
1251
  * Success
@@ -1295,9 +1280,7 @@ export type $OpenApiTs = {
1295
1280
  };
1296
1281
  '/api/account/verify-password-reset-token': {
1297
1282
  post: {
1298
- req: {
1299
- requestBody?: Volo_Abp_Account_VerifyPasswordResetTokenInput;
1300
- };
1283
+ req: PostApiAccountVerifyPasswordResetTokenData;
1301
1284
  res: {
1302
1285
  /**
1303
1286
  * Success
@@ -1332,9 +1315,7 @@ export type $OpenApiTs = {
1332
1315
  };
1333
1316
  '/api/account/reset-password': {
1334
1317
  post: {
1335
- req: {
1336
- requestBody?: Volo_Abp_Account_ResetPasswordDto;
1337
- };
1318
+ req: PostApiAccountResetPasswordData;
1338
1319
  res: {
1339
1320
  /**
1340
1321
  * Success
@@ -1369,9 +1350,7 @@ export type $OpenApiTs = {
1369
1350
  };
1370
1351
  '/api/account/confirmation-state': {
1371
1352
  get: {
1372
- req: {
1373
- id?: string;
1374
- };
1353
+ req: GetApiAccountConfirmationStateData;
1375
1354
  res: {
1376
1355
  /**
1377
1356
  * Success
@@ -1406,9 +1385,7 @@ export type $OpenApiTs = {
1406
1385
  };
1407
1386
  '/api/account/send-phone-number-confirmation-token': {
1408
1387
  post: {
1409
- req: {
1410
- requestBody?: Volo_Abp_Account_SendPhoneNumberConfirmationTokenDto;
1411
- };
1388
+ req: PostApiAccountSendPhoneNumberConfirmationTokenData;
1412
1389
  res: {
1413
1390
  /**
1414
1391
  * Success
@@ -1443,9 +1420,7 @@ export type $OpenApiTs = {
1443
1420
  };
1444
1421
  '/api/account/send-email-confirmation-token': {
1445
1422
  post: {
1446
- req: {
1447
- requestBody?: Volo_Abp_Account_SendEmailConfirmationTokenDto;
1448
- };
1423
+ req: PostApiAccountSendEmailConfirmationTokenData;
1449
1424
  res: {
1450
1425
  /**
1451
1426
  * Success
@@ -1480,9 +1455,7 @@ export type $OpenApiTs = {
1480
1455
  };
1481
1456
  '/api/account/verify-email-confirmation-token': {
1482
1457
  post: {
1483
- req: {
1484
- requestBody?: Volo_Abp_Account_VerifyEmailConfirmationTokenInput;
1485
- };
1458
+ req: PostApiAccountVerifyEmailConfirmationTokenData;
1486
1459
  res: {
1487
1460
  /**
1488
1461
  * Success
@@ -1517,9 +1490,7 @@ export type $OpenApiTs = {
1517
1490
  };
1518
1491
  '/api/account/confirm-phone-number': {
1519
1492
  post: {
1520
- req: {
1521
- requestBody?: Volo_Abp_Account_ConfirmPhoneNumberInput;
1522
- };
1493
+ req: PostApiAccountConfirmPhoneNumberData;
1523
1494
  res: {
1524
1495
  /**
1525
1496
  * Success
@@ -1554,9 +1525,7 @@ export type $OpenApiTs = {
1554
1525
  };
1555
1526
  '/api/account/confirm-email': {
1556
1527
  post: {
1557
- req: {
1558
- requestBody?: Volo_Abp_Account_ConfirmEmailInput;
1559
- };
1528
+ req: PostApiAccountConfirmEmailData;
1560
1529
  res: {
1561
1530
  /**
1562
1531
  * Success
@@ -1591,12 +1560,7 @@ export type $OpenApiTs = {
1591
1560
  };
1592
1561
  '/api/account/profile-picture': {
1593
1562
  post: {
1594
- req: {
1595
- formData?: {
1596
- ImageContent?: (Blob | File);
1597
- };
1598
- type?: Volo_Abp_Account_ProfilePictureType;
1599
- };
1563
+ req: PostApiAccountProfilePictureData;
1600
1564
  res: {
1601
1565
  /**
1602
1566
  * Success
@@ -1631,9 +1595,7 @@ export type $OpenApiTs = {
1631
1595
  };
1632
1596
  '/api/account/profile-picture/{id}': {
1633
1597
  get: {
1634
- req: {
1635
- id: string;
1636
- };
1598
+ req: GetApiAccountProfilePictureByIdData;
1637
1599
  res: {
1638
1600
  /**
1639
1601
  * Success
@@ -1668,10 +1630,7 @@ export type $OpenApiTs = {
1668
1630
  };
1669
1631
  '/api/account/two-factor-providers': {
1670
1632
  get: {
1671
- req: {
1672
- token: string;
1673
- userId: string;
1674
- };
1633
+ req: GetApiAccountTwoFactorProvidersData;
1675
1634
  res: {
1676
1635
  /**
1677
1636
  * Success
@@ -1706,9 +1665,7 @@ export type $OpenApiTs = {
1706
1665
  };
1707
1666
  '/api/account/send-two-factor-code': {
1708
1667
  post: {
1709
- req: {
1710
- requestBody?: Volo_Abp_Account_SendTwoFactorCodeInput;
1711
- };
1668
+ req: PostApiAccountSendTwoFactorCodeData;
1712
1669
  res: {
1713
1670
  /**
1714
1671
  * Success
@@ -1743,22 +1700,7 @@ export type $OpenApiTs = {
1743
1700
  };
1744
1701
  '/api/account/security-logs': {
1745
1702
  get: {
1746
- req: {
1747
- action?: string;
1748
- applicationName?: string;
1749
- clientId?: string;
1750
- correlationId?: string;
1751
- endTime?: string;
1752
- extraProperties?: {
1753
- [key: string]: unknown;
1754
- };
1755
- identity?: string;
1756
- maxResultCount?: number;
1757
- skipCount?: number;
1758
- sorting?: string;
1759
- startTime?: string;
1760
- userName?: string;
1761
- };
1703
+ req: GetApiAccountSecurityLogsData;
1762
1704
  res: {
1763
1705
  /**
1764
1706
  * Success
@@ -1793,9 +1735,7 @@ export type $OpenApiTs = {
1793
1735
  };
1794
1736
  '/api/account/verify-authenticator-code': {
1795
1737
  post: {
1796
- req: {
1797
- requestBody?: Volo_Abp_Account_VerifyAuthenticatorCodeInput;
1798
- };
1738
+ req: PostApiAccountVerifyAuthenticatorCodeData;
1799
1739
  res: {
1800
1740
  /**
1801
1741
  * Success
@@ -1932,9 +1872,7 @@ export type $OpenApiTs = {
1932
1872
  };
1933
1873
  '/api/account/profile-picture-file/{id}': {
1934
1874
  get: {
1935
- req: {
1936
- id: string;
1937
- };
1875
+ req: GetApiAccountProfilePictureFileByIdData;
1938
1876
  res: {
1939
1877
  /**
1940
1878
  * Success
@@ -1969,9 +1907,7 @@ export type $OpenApiTs = {
1969
1907
  };
1970
1908
  '/api/account/recaptcha-validate': {
1971
1909
  get: {
1972
- req: {
1973
- captchaResponse?: string;
1974
- };
1910
+ req: GetApiAccountRecaptchaValidateData;
1975
1911
  res: {
1976
1912
  /**
1977
1913
  * Success
@@ -2040,10 +1976,7 @@ export type $OpenApiTs = {
2040
1976
  };
2041
1977
  '/api/account/external-provider/by-name': {
2042
1978
  get: {
2043
- req: {
2044
- name?: string;
2045
- tenantId?: string;
2046
- };
1979
+ req: GetApiAccountExternalProviderByNameData;
2047
1980
  res: {
2048
1981
  /**
2049
1982
  * Success
@@ -2110,9 +2043,7 @@ export type $OpenApiTs = {
2110
2043
  };
2111
2044
  };
2112
2045
  put: {
2113
- req: {
2114
- requestBody?: Volo_Abp_Account_AccountSettingsDto;
2115
- };
2046
+ req: PutApiAccountAdminSettingsData;
2116
2047
  res: {
2117
2048
  /**
2118
2049
  * Success
@@ -2179,9 +2110,7 @@ export type $OpenApiTs = {
2179
2110
  };
2180
2111
  };
2181
2112
  put: {
2182
- req: {
2183
- requestBody?: Volo_Abp_Account_AccountTwoFactorSettingsDto;
2184
- };
2113
+ req: PutApiAccountAdminSettingsTwoFactorData;
2185
2114
  res: {
2186
2115
  /**
2187
2116
  * Success
@@ -2248,9 +2177,7 @@ export type $OpenApiTs = {
2248
2177
  };
2249
2178
  };
2250
2179
  put: {
2251
- req: {
2252
- requestBody?: Volo_Abp_Account_AccountRecaptchaSettingsDto;
2253
- };
2180
+ req: PutApiAccountAdminSettingsRecaptchaData;
2254
2181
  res: {
2255
2182
  /**
2256
2183
  * Success
@@ -2317,9 +2244,7 @@ export type $OpenApiTs = {
2317
2244
  };
2318
2245
  };
2319
2246
  put: {
2320
- req: {
2321
- requestBody?: Array<Volo_Abp_Account_UpdateExternalProviderDto>;
2322
- };
2247
+ req: PutApiAccountAdminSettingsExternalProviderData;
2323
2248
  res: {
2324
2249
  /**
2325
2250
  * Success
@@ -2388,9 +2313,7 @@ export type $OpenApiTs = {
2388
2313
  };
2389
2314
  '/api/account/login': {
2390
2315
  post: {
2391
- req: {
2392
- requestBody?: Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_UserLoginInfo;
2393
- };
2316
+ req: PostApiAccountLoginData;
2394
2317
  res: {
2395
2318
  /**
2396
2319
  * Success
@@ -2425,9 +2348,7 @@ export type $OpenApiTs = {
2425
2348
  };
2426
2349
  '/api/account/linkLogin': {
2427
2350
  post: {
2428
- req: {
2429
- requestBody?: Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LinkUserLoginInfo;
2430
- };
2351
+ req: PostApiAccountLinkLoginData;
2431
2352
  res: {
2432
2353
  /**
2433
2354
  * Success
@@ -2496,9 +2417,7 @@ export type $OpenApiTs = {
2496
2417
  };
2497
2418
  '/api/account/checkPassword': {
2498
2419
  post: {
2499
- req: {
2500
- requestBody?: Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_UserLoginInfo;
2501
- };
2420
+ req: PostApiAccountCheckPasswordData;
2502
2421
  res: {
2503
2422
  /**
2504
2423
  * Success
@@ -2565,9 +2484,7 @@ export type $OpenApiTs = {
2565
2484
  };
2566
2485
  };
2567
2486
  put: {
2568
- req: {
2569
- requestBody?: Volo_Abp_Account_UpdateProfileDto;
2570
- };
2487
+ req: PutApiAccountMyProfileData;
2571
2488
  res: {
2572
2489
  /**
2573
2490
  * Success
@@ -2602,9 +2519,7 @@ export type $OpenApiTs = {
2602
2519
  };
2603
2520
  '/api/account/my-profile/change-password': {
2604
2521
  post: {
2605
- req: {
2606
- requestBody?: Volo_Abp_Account_ChangePasswordInput;
2607
- };
2522
+ req: PostApiAccountMyProfileChangePasswordData;
2608
2523
  res: {
2609
2524
  /**
2610
2525
  * Success
@@ -2673,9 +2588,7 @@ export type $OpenApiTs = {
2673
2588
  };
2674
2589
  '/api/account/my-profile/set-two-factor-enabled': {
2675
2590
  post: {
2676
- req: {
2677
- enabled?: boolean;
2678
- };
2591
+ req: PostApiAccountMyProfileSetTwoFactorEnabledData;
2679
2592
  res: {
2680
2593
  /**
2681
2594
  * Success
@@ -2778,9 +2691,7 @@ export type $OpenApiTs = {
2778
2691
  };
2779
2692
  '/api/account/link-user/link': {
2780
2693
  post: {
2781
- req: {
2782
- requestBody?: Volo_Abp_Account_LinkUserInput;
2783
- };
2694
+ req: PostApiAccountLinkUserLinkData;
2784
2695
  res: {
2785
2696
  /**
2786
2697
  * Success
@@ -2815,9 +2726,7 @@ export type $OpenApiTs = {
2815
2726
  };
2816
2727
  '/api/account/link-user/unlink': {
2817
2728
  post: {
2818
- req: {
2819
- requestBody?: Volo_Abp_Account_UnLinkUserInput;
2820
- };
2729
+ req: PostApiAccountLinkUserUnlinkData;
2821
2730
  res: {
2822
2731
  /**
2823
2732
  * Success
@@ -2852,9 +2761,7 @@ export type $OpenApiTs = {
2852
2761
  };
2853
2762
  '/api/account/link-user/is-linked': {
2854
2763
  post: {
2855
- req: {
2856
- requestBody?: Volo_Abp_Account_IsLinkedInput;
2857
- };
2764
+ req: PostApiAccountLinkUserIsLinkedData;
2858
2765
  res: {
2859
2766
  /**
2860
2767
  * Success
@@ -2923,9 +2830,7 @@ export type $OpenApiTs = {
2923
2830
  };
2924
2831
  '/api/account/link-user/verify-link-token': {
2925
2832
  post: {
2926
- req: {
2927
- requestBody?: Volo_Abp_Account_VerifyLinkTokenInput;
2928
- };
2833
+ req: PostApiAccountLinkUserVerifyLinkTokenData;
2929
2834
  res: {
2930
2835
  /**
2931
2836
  * Success
@@ -2994,9 +2899,7 @@ export type $OpenApiTs = {
2994
2899
  };
2995
2900
  '/api/account/link-user/verify-link-login-token': {
2996
2901
  post: {
2997
- req: {
2998
- requestBody?: Volo_Abp_Account_VerifyLinkLoginTokenInput;
2999
- };
2902
+ req: PostApiAccountLinkUserVerifyLinkLoginTokenData;
3000
2903
  res: {
3001
2904
  /**
3002
2905
  * Success
@@ -3167,9 +3070,7 @@ export type $OpenApiTs = {
3167
3070
  };
3168
3071
  '/api/account/user-delegation/user-lookup': {
3169
3072
  get: {
3170
- req: {
3171
- userName?: string;
3172
- };
3073
+ req: GetApiAccountUserDelegationUserLookupData;
3173
3074
  res: {
3174
3075
  /**
3175
3076
  * Success
@@ -3204,9 +3105,7 @@ export type $OpenApiTs = {
3204
3105
  };
3205
3106
  '/api/account/user-delegation/delegate-new-user': {
3206
3107
  post: {
3207
- req: {
3208
- requestBody?: Volo_Abp_Account_DelegateNewUserInput;
3209
- };
3108
+ req: PostApiAccountUserDelegationDelegateNewUserData;
3210
3109
  res: {
3211
3110
  /**
3212
3111
  * Success
@@ -3241,9 +3140,7 @@ export type $OpenApiTs = {
3241
3140
  };
3242
3141
  '/api/account/user-delegation/delete-delegation': {
3243
3142
  post: {
3244
- req: {
3245
- id?: string;
3246
- };
3143
+ req: PostApiAccountUserDelegationDeleteDelegationData;
3247
3144
  res: {
3248
3145
  /**
3249
3146
  * Success