@ayasofyazilim/saas 0.0.2

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 (192) hide show
  1. package/AccountService/AccountServiceClient.ts +58 -0
  2. package/AccountService/core/ApiError.ts +25 -0
  3. package/AccountService/core/ApiRequestOptions.ts +17 -0
  4. package/AccountService/core/ApiResult.ts +11 -0
  5. package/AccountService/core/BaseHttpRequest.ts +14 -0
  6. package/AccountService/core/CancelablePromise.ts +131 -0
  7. package/AccountService/core/FetchHttpRequest.ts +26 -0
  8. package/AccountService/core/OpenAPI.ts +32 -0
  9. package/AccountService/core/request.ts +322 -0
  10. package/AccountService/index.ts +122 -0
  11. package/AccountService/models/Volo_Abp_Account_AccountExternalProviderSettingsDto.ts +9 -0
  12. package/AccountService/models/Volo_Abp_Account_AccountRecaptchaSettingsDto.ts +14 -0
  13. package/AccountService/models/Volo_Abp_Account_AccountSettingsDto.ts +9 -0
  14. package/AccountService/models/Volo_Abp_Account_AccountTwoFactorSettingsDto.ts +11 -0
  15. package/AccountService/models/Volo_Abp_Account_AuthenticatorInfoDto.ts +9 -0
  16. package/AccountService/models/Volo_Abp_Account_ChangePasswordInput.ts +9 -0
  17. package/AccountService/models/Volo_Abp_Account_ConfirmEmailInput.ts +9 -0
  18. package/AccountService/models/Volo_Abp_Account_ConfirmPhoneNumberInput.ts +9 -0
  19. package/AccountService/models/Volo_Abp_Account_DelegateNewUserInput.ts +10 -0
  20. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderDto.ts +9 -0
  21. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemDto.ts +11 -0
  22. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto.ts +13 -0
  23. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettings.ts +12 -0
  24. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty.ts +9 -0
  25. package/AccountService/models/Volo_Abp_Account_IdentityUserConfirmationStateDto.ts +9 -0
  26. package/AccountService/models/Volo_Abp_Account_IsLinkedInput.ts +9 -0
  27. package/AccountService/models/Volo_Abp_Account_LinkUserDto.ts +12 -0
  28. package/AccountService/models/Volo_Abp_Account_LinkUserInput.ts +10 -0
  29. package/AccountService/models/Volo_Abp_Account_ProfileDto.ts +20 -0
  30. package/AccountService/models/Volo_Abp_Account_ProfilePictureSourceDto.ts +11 -0
  31. package/AccountService/models/Volo_Abp_Account_ProfilePictureType.ts +9 -0
  32. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult.ts +10 -0
  33. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LinkUserLoginInfo.ts +9 -0
  34. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LoginResultType.ts +12 -0
  35. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_UserLoginInfo.ts +11 -0
  36. package/AccountService/models/Volo_Abp_Account_RegisterDto.ts +15 -0
  37. package/AccountService/models/Volo_Abp_Account_ResetPasswordDto.ts +10 -0
  38. package/AccountService/models/Volo_Abp_Account_SendEmailConfirmationTokenDto.ts +11 -0
  39. package/AccountService/models/Volo_Abp_Account_SendPasswordResetCodeDto.ts +11 -0
  40. package/AccountService/models/Volo_Abp_Account_SendPhoneNumberConfirmationTokenDto.ts +9 -0
  41. package/AccountService/models/Volo_Abp_Account_SendTwoFactorCodeInput.ts +10 -0
  42. package/AccountService/models/Volo_Abp_Account_UnLinkUserInput.ts +9 -0
  43. package/AccountService/models/Volo_Abp_Account_UpdateExternalProviderDto.ts +12 -0
  44. package/AccountService/models/Volo_Abp_Account_UpdateProfileDto.ts +15 -0
  45. package/AccountService/models/Volo_Abp_Account_UserDelegationDto.ts +11 -0
  46. package/AccountService/models/Volo_Abp_Account_UserLookupDto.ts +9 -0
  47. package/AccountService/models/Volo_Abp_Account_VerifyAuthenticatorCodeDto.ts +8 -0
  48. package/AccountService/models/Volo_Abp_Account_VerifyAuthenticatorCodeInput.ts +8 -0
  49. package/AccountService/models/Volo_Abp_Account_VerifyEmailConfirmationTokenInput.ts +9 -0
  50. package/AccountService/models/Volo_Abp_Account_VerifyLinkLoginTokenInput.ts +10 -0
  51. package/AccountService/models/Volo_Abp_Account_VerifyLinkTokenInput.ts +10 -0
  52. package/AccountService/models/Volo_Abp_Account_VerifyPasswordResetTokenInput.ts +9 -0
  53. package/AccountService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -0
  54. package/AccountService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -0
  55. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -0
  56. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -0
  57. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -0
  58. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -0
  59. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -0
  60. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -0
  61. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -0
  62. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -0
  63. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -0
  64. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -0
  65. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -0
  66. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -0
  67. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -0
  68. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -0
  69. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -0
  70. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -0
  71. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -0
  72. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -0
  73. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -0
  74. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -0
  75. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -0
  76. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -0
  77. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -0
  78. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -0
  79. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -0
  80. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -0
  81. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -0
  82. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -0
  83. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -0
  84. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -0
  85. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -0
  86. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -0
  87. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -0
  88. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto.ts +11 -0
  89. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -0
  90. package/AccountService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -0
  91. package/AccountService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -0
  92. package/AccountService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -0
  93. package/AccountService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -0
  94. package/AccountService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -0
  95. package/AccountService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -0
  96. package/AccountService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -0
  97. package/AccountService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -0
  98. package/AccountService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -0
  99. package/AccountService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -0
  100. package/AccountService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -0
  101. package/AccountService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -0
  102. package/AccountService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -0
  103. package/AccountService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -0
  104. package/AccountService/models/Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour.ts +9 -0
  105. package/AccountService/models/Volo_Abp_Identity_IdentitySecurityLogDto.ts +21 -0
  106. package/AccountService/models/Volo_Abp_Identity_IdentityUserDto.ts +35 -0
  107. package/AccountService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -0
  108. package/AccountService/models/Volo_Abp_NameValue.ts +9 -0
  109. package/AccountService/services/AbpApiDefinitionService.ts +34 -0
  110. package/AccountService/services/AbpApplicationConfigurationService.ts +34 -0
  111. package/AccountService/services/AbpApplicationLocalizationService.ts +37 -0
  112. package/AccountService/services/AbpTenantService.ts +58 -0
  113. package/AccountService/services/AccountExternalProviderService.ts +56 -0
  114. package/AccountService/services/AccountService.ts +545 -0
  115. package/AccountService/services/AccountSettingsService.ts +178 -0
  116. package/AccountService/services/DynamicClaimsService.ts +27 -0
  117. package/AccountService/services/LoginService.ts +99 -0
  118. package/AccountService/services/ProfileService.ts +155 -0
  119. package/AccountService/services/UserService.ts +313 -0
  120. package/ProjectService/ProjectServiceClient.ts +40 -0
  121. package/ProjectService/core/ApiError.ts +25 -0
  122. package/ProjectService/core/ApiRequestOptions.ts +17 -0
  123. package/ProjectService/core/ApiResult.ts +11 -0
  124. package/ProjectService/core/BaseHttpRequest.ts +14 -0
  125. package/ProjectService/core/CancelablePromise.ts +131 -0
  126. package/ProjectService/core/FetchHttpRequest.ts +26 -0
  127. package/ProjectService/core/OpenAPI.ts +32 -0
  128. package/ProjectService/core/request.ts +322 -0
  129. package/ProjectService/index.ts +73 -0
  130. package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectsDto_SaveProjectDto.ts +19 -0
  131. package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectsDto_UpdateProjectDto.ts +20 -0
  132. package/ProjectService/models/UpWithCrowdDemo_ProjectService_Projects_ProjectDto.ts +20 -0
  133. package/ProjectService/models/UpWithCrowdDemo_ProjectService_Samples_SampleDto.ts +8 -0
  134. package/ProjectService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -0
  135. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -0
  136. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -0
  137. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -0
  138. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -0
  139. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -0
  140. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -0
  141. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -0
  142. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -0
  143. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -0
  144. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -0
  145. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -0
  146. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -0
  147. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -0
  148. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -0
  149. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -0
  150. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -0
  151. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -0
  152. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -0
  153. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -0
  154. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -0
  155. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -0
  156. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -0
  157. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -0
  158. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -0
  159. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -0
  160. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -0
  161. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -0
  162. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -0
  163. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -0
  164. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -0
  165. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -0
  166. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -0
  167. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -0
  168. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -0
  169. package/ProjectService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -0
  170. package/ProjectService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -0
  171. package/ProjectService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -0
  172. package/ProjectService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -0
  173. package/ProjectService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -0
  174. package/ProjectService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -0
  175. package/ProjectService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -0
  176. package/ProjectService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -0
  177. package/ProjectService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -0
  178. package/ProjectService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -0
  179. package/ProjectService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -0
  180. package/ProjectService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -0
  181. package/ProjectService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -0
  182. package/ProjectService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -0
  183. package/ProjectService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -0
  184. package/ProjectService/models/Volo_Abp_NameValue.ts +9 -0
  185. package/ProjectService/services/AbpApiDefinitionService.ts +34 -0
  186. package/ProjectService/services/AbpApplicationConfigurationService.ts +34 -0
  187. package/ProjectService/services/AbpApplicationLocalizationService.ts +37 -0
  188. package/ProjectService/services/ProjectService.ts +143 -0
  189. package/ProjectService/services/SampleServiceService.ts +46 -0
  190. package/ProjectService.json +2938 -0
  191. package/index.ts +2 -0
  192. package/package.json +17 -0
@@ -0,0 +1,17 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_Http_Modeling_ParameterApiDescriptionModel = {
6
+ nameOnMethod?: string | null;
7
+ name?: string | null;
8
+ jsonName?: string | null;
9
+ type?: string | null;
10
+ typeSimple?: string | null;
11
+ isOptional?: boolean;
12
+ defaultValue?: any;
13
+ constraintTypes?: Array<string> | null;
14
+ bindingSourceId?: string | null;
15
+ descriptorName?: string | null;
16
+ };
17
+
@@ -0,0 +1,17 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_Http_Modeling_PropertyApiDescriptionModel = {
6
+ name?: string | null;
7
+ jsonName?: string | null;
8
+ type?: string | null;
9
+ typeSimple?: string | null;
10
+ isRequired?: boolean;
11
+ minLength?: number | null;
12
+ maxLength?: number | null;
13
+ minimum?: string | null;
14
+ maximum?: string | null;
15
+ regex?: string | null;
16
+ };
17
+
@@ -0,0 +1,9 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel = {
6
+ type?: string | null;
7
+ typeSimple?: string | null;
8
+ };
9
+
@@ -0,0 +1,14 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_Http_Modeling_PropertyApiDescriptionModel } from './Volo_Abp_Http_Modeling_PropertyApiDescriptionModel';
6
+ export type Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
7
+ baseType?: string | null;
8
+ isEnum?: boolean;
9
+ enumNames?: Array<string> | null;
10
+ enumValues?: Array<any> | null;
11
+ genericArguments?: Array<string> | null;
12
+ properties?: Array<Volo_Abp_Http_Modeling_PropertyApiDescriptionModel> | null;
13
+ };
14
+
@@ -0,0 +1,13 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_Http_RemoteServiceValidationErrorInfo } from './Volo_Abp_Http_RemoteServiceValidationErrorInfo';
6
+ export type Volo_Abp_Http_RemoteServiceErrorInfo = {
7
+ code?: string | null;
8
+ message?: string | null;
9
+ details?: string | null;
10
+ data?: Record<string, any> | null;
11
+ validationErrors?: Array<Volo_Abp_Http_RemoteServiceValidationErrorInfo> | null;
12
+ };
13
+
@@ -0,0 +1,9 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_Http_RemoteServiceErrorInfo } from './Volo_Abp_Http_RemoteServiceErrorInfo';
6
+ export type Volo_Abp_Http_RemoteServiceErrorResponse = {
7
+ error?: Volo_Abp_Http_RemoteServiceErrorInfo;
8
+ };
9
+
@@ -0,0 +1,9 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
6
+ message?: string | null;
7
+ members?: Array<string> | null;
8
+ };
9
+
@@ -0,0 +1,9 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export enum Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour {
6
+ '_0' = 0,
7
+ '_1' = 1,
8
+ '_2' = 2,
9
+ }
@@ -0,0 +1,21 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_Identity_IdentitySecurityLogDto = {
6
+ id?: string;
7
+ tenantId?: string | null;
8
+ applicationName?: string | null;
9
+ identity?: string | null;
10
+ action?: string | null;
11
+ userId?: string | null;
12
+ userName?: string | null;
13
+ tenantName?: string | null;
14
+ clientId?: string | null;
15
+ correlationId?: string | null;
16
+ clientIpAddress?: string | null;
17
+ browserInfo?: string | null;
18
+ creationTime?: string;
19
+ extraProperties?: Record<string, any> | null;
20
+ };
21
+
@@ -0,0 +1,35 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_Identity_IdentityUserDto = {
6
+ readonly extraProperties?: Record<string, any> | null;
7
+ id?: string;
8
+ creationTime?: string;
9
+ creatorId?: string | null;
10
+ lastModificationTime?: string | null;
11
+ lastModifierId?: string | null;
12
+ isDeleted?: boolean;
13
+ deleterId?: string | null;
14
+ deletionTime?: string | null;
15
+ tenantId?: string | null;
16
+ userName?: string | null;
17
+ email?: string | null;
18
+ name?: string | null;
19
+ surname?: string | null;
20
+ emailConfirmed?: boolean;
21
+ phoneNumber?: string | null;
22
+ phoneNumberConfirmed?: boolean;
23
+ supportTwoFactor?: boolean;
24
+ twoFactorEnabled?: boolean;
25
+ isActive?: boolean;
26
+ lockoutEnabled?: boolean;
27
+ isLockedOut?: boolean;
28
+ lockoutEnd?: string | null;
29
+ shouldChangePasswordOnNextLogin?: boolean;
30
+ concurrencyStamp?: string | null;
31
+ roleNames?: Array<string> | null;
32
+ accessFailedCount?: number;
33
+ lastPasswordChangeTime?: string | null;
34
+ };
35
+
@@ -0,0 +1,12 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_Localization_LanguageInfo = {
6
+ cultureName?: string | null;
7
+ uiCultureName?: string | null;
8
+ displayName?: string | null;
9
+ readonly twoLetterISOLanguageName?: string | null;
10
+ flagIcon?: string | null;
11
+ };
12
+
@@ -0,0 +1,9 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_NameValue = {
6
+ name?: string | null;
7
+ value?: string | null;
8
+ };
9
+
@@ -0,0 +1,34 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel } from '../models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel';
6
+ import type { CancelablePromise } from '../core/CancelablePromise';
7
+ import type { BaseHttpRequest } from '../core/BaseHttpRequest';
8
+ export class AbpApiDefinitionService {
9
+ constructor(public readonly httpRequest: BaseHttpRequest) {}
10
+ /**
11
+ * @param includeTypes
12
+ * @returns Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel Success
13
+ * @throws ApiError
14
+ */
15
+ public getApiAbpApiDefinition(
16
+ includeTypes?: boolean,
17
+ ): CancelablePromise<Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel> {
18
+ return this.httpRequest.request({
19
+ method: 'GET',
20
+ url: '/api/abp/api-definition',
21
+ query: {
22
+ 'IncludeTypes': includeTypes,
23
+ },
24
+ errors: {
25
+ 400: `Bad Request`,
26
+ 401: `Unauthorized`,
27
+ 403: `Forbidden`,
28
+ 404: `Not Found`,
29
+ 500: `Server Error`,
30
+ 501: `Server Error`,
31
+ },
32
+ });
33
+ }
34
+ }
@@ -0,0 +1,34 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto } from '../models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto';
6
+ import type { CancelablePromise } from '../core/CancelablePromise';
7
+ import type { BaseHttpRequest } from '../core/BaseHttpRequest';
8
+ export class AbpApplicationConfigurationService {
9
+ constructor(public readonly httpRequest: BaseHttpRequest) {}
10
+ /**
11
+ * @param includeLocalizationResources
12
+ * @returns Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto Success
13
+ * @throws ApiError
14
+ */
15
+ public getApiAbpApplicationConfiguration(
16
+ includeLocalizationResources?: boolean,
17
+ ): CancelablePromise<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto> {
18
+ return this.httpRequest.request({
19
+ method: 'GET',
20
+ url: '/api/abp/application-configuration',
21
+ query: {
22
+ 'IncludeLocalizationResources': includeLocalizationResources,
23
+ },
24
+ errors: {
25
+ 400: `Bad Request`,
26
+ 401: `Unauthorized`,
27
+ 403: `Forbidden`,
28
+ 404: `Not Found`,
29
+ 500: `Server Error`,
30
+ 501: `Server Error`,
31
+ },
32
+ });
33
+ }
34
+ }
@@ -0,0 +1,37 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto } from '../models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto';
6
+ import type { CancelablePromise } from '../core/CancelablePromise';
7
+ import type { BaseHttpRequest } from '../core/BaseHttpRequest';
8
+ export class AbpApplicationLocalizationService {
9
+ constructor(public readonly httpRequest: BaseHttpRequest) {}
10
+ /**
11
+ * @param cultureName
12
+ * @param onlyDynamics
13
+ * @returns Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto Success
14
+ * @throws ApiError
15
+ */
16
+ public getApiAbpApplicationLocalization(
17
+ cultureName: string,
18
+ onlyDynamics?: boolean,
19
+ ): CancelablePromise<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto> {
20
+ return this.httpRequest.request({
21
+ method: 'GET',
22
+ url: '/api/abp/application-localization',
23
+ query: {
24
+ 'CultureName': cultureName,
25
+ 'OnlyDynamics': onlyDynamics,
26
+ },
27
+ errors: {
28
+ 400: `Bad Request`,
29
+ 401: `Unauthorized`,
30
+ 403: `Forbidden`,
31
+ 404: `Not Found`,
32
+ 500: `Server Error`,
33
+ 501: `Server Error`,
34
+ },
35
+ });
36
+ }
37
+ }
@@ -0,0 +1,58 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto } from '../models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto';
6
+ import type { CancelablePromise } from '../core/CancelablePromise';
7
+ import type { BaseHttpRequest } from '../core/BaseHttpRequest';
8
+ export class AbpTenantService {
9
+ constructor(public readonly httpRequest: BaseHttpRequest) {}
10
+ /**
11
+ * @param name
12
+ * @returns Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto Success
13
+ * @throws ApiError
14
+ */
15
+ public getApiAbpMultiTenancyTenantsByName(
16
+ name: string,
17
+ ): CancelablePromise<Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto> {
18
+ return this.httpRequest.request({
19
+ method: 'GET',
20
+ url: '/api/abp/multi-tenancy/tenants/by-name/{name}',
21
+ path: {
22
+ 'name': name,
23
+ },
24
+ errors: {
25
+ 400: `Bad Request`,
26
+ 401: `Unauthorized`,
27
+ 403: `Forbidden`,
28
+ 404: `Not Found`,
29
+ 500: `Server Error`,
30
+ 501: `Server Error`,
31
+ },
32
+ });
33
+ }
34
+ /**
35
+ * @param id
36
+ * @returns Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto Success
37
+ * @throws ApiError
38
+ */
39
+ public getApiAbpMultiTenancyTenantsById(
40
+ id: string,
41
+ ): CancelablePromise<Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto> {
42
+ return this.httpRequest.request({
43
+ method: 'GET',
44
+ url: '/api/abp/multi-tenancy/tenants/by-id/{id}',
45
+ path: {
46
+ 'id': id,
47
+ },
48
+ errors: {
49
+ 400: `Bad Request`,
50
+ 401: `Unauthorized`,
51
+ 403: `Forbidden`,
52
+ 404: `Not Found`,
53
+ 500: `Server Error`,
54
+ 501: `Server Error`,
55
+ },
56
+ });
57
+ }
58
+ }
@@ -0,0 +1,56 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_Account_ExternalProviders_ExternalProviderDto } from '../models/Volo_Abp_Account_ExternalProviders_ExternalProviderDto';
6
+ import type { Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto } from '../models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto';
7
+ import type { CancelablePromise } from '../core/CancelablePromise';
8
+ import type { BaseHttpRequest } from '../core/BaseHttpRequest';
9
+ export class AccountExternalProviderService {
10
+ constructor(public readonly httpRequest: BaseHttpRequest) {}
11
+ /**
12
+ * @returns Volo_Abp_Account_ExternalProviders_ExternalProviderDto Success
13
+ * @throws ApiError
14
+ */
15
+ public getApiAccountExternalProvider(): CancelablePromise<Volo_Abp_Account_ExternalProviders_ExternalProviderDto> {
16
+ return this.httpRequest.request({
17
+ method: 'GET',
18
+ url: '/api/account/external-provider',
19
+ errors: {
20
+ 400: `Bad Request`,
21
+ 401: `Unauthorized`,
22
+ 403: `Forbidden`,
23
+ 404: `Not Found`,
24
+ 500: `Server Error`,
25
+ 501: `Server Error`,
26
+ },
27
+ });
28
+ }
29
+ /**
30
+ * @param tenantId
31
+ * @param name
32
+ * @returns Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto Success
33
+ * @throws ApiError
34
+ */
35
+ public getApiAccountExternalProviderByName(
36
+ tenantId?: string,
37
+ name?: string,
38
+ ): CancelablePromise<Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto> {
39
+ return this.httpRequest.request({
40
+ method: 'GET',
41
+ url: '/api/account/external-provider/by-name',
42
+ query: {
43
+ 'TenantId': tenantId,
44
+ 'Name': name,
45
+ },
46
+ errors: {
47
+ 400: `Bad Request`,
48
+ 401: `Unauthorized`,
49
+ 403: `Forbidden`,
50
+ 404: `Not Found`,
51
+ 500: `Server Error`,
52
+ 501: `Server Error`,
53
+ },
54
+ });
55
+ }
56
+ }