@seekora-ai/admin-api 1.1.54 → 1.1.56
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/README.md +9 -2
- package/api.ts +448 -11
- package/dist/api.d.ts +321 -8
- package/dist/api.js +228 -7
- package/dist/esm/api.d.ts +321 -8
- package/dist/esm/api.js +228 -7
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.56.tgz +0 -0
- package/seekora-ai-admin-api-1.1.54.tgz +0 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @seekora-ai/admin-api@1.1.
|
|
1
|
+
## @seekora-ai/admin-api@1.1.56
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @seekora-ai/admin-api@1.1.
|
|
39
|
+
npm install @seekora-ai/admin-api@1.1.56 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -128,8 +128,11 @@ Class | Method | HTTP request | Description
|
|
|
128
128
|
*ArticlesApi* | [**adminArticlesArticleIDPut**](docs/ArticlesApi.md#adminarticlesarticleidput) | **PUT** /admin/Articles/{articleID} | Update an existing Article
|
|
129
129
|
*ArticlesApi* | [**adminArticlesGet**](docs/ArticlesApi.md#adminarticlesget) | **GET** /admin/Articles | Fetches list of all Articles
|
|
130
130
|
*ArticlesApi* | [**adminArticlesPost**](docs/ArticlesApi.md#adminarticlespost) | **POST** /admin/Articles | Creates a new article
|
|
131
|
+
*AuthApi* | [**authForgotPasswordPost**](docs/AuthApi.md#authforgotpasswordpost) | **POST** /Auth/forgot-password | Request password reset
|
|
131
132
|
*AuthApi* | [**authLoginPost**](docs/AuthApi.md#authloginpost) | **POST** /Auth/login | Login a user
|
|
132
133
|
*AuthApi* | [**authLogoutPost**](docs/AuthApi.md#authlogoutpost) | **POST** /Auth/logout | Logout a user
|
|
134
|
+
*AuthApi* | [**authResetPasswordPost**](docs/AuthApi.md#authresetpasswordpost) | **POST** /Auth/reset-password | Reset password with token
|
|
135
|
+
*AuthApi* | [**authResetPasswordTokenGet**](docs/AuthApi.md#authresetpasswordtokenget) | **GET** /Auth/reset-password/{token} | Verify reset token validity
|
|
133
136
|
*AuthApi* | [**authSessionGet**](docs/AuthApi.md#authsessionget) | **GET** /Auth/session | Get current auth session
|
|
134
137
|
*AuthApi* | [**authUpdateSsoPost**](docs/AuthApi.md#authupdatessopost) | **POST** /Auth/update-sso | Link or Unlink an SSO provider
|
|
135
138
|
*AutomatedRefundManagementApi* | [**refundAutomatedPreviewPost**](docs/AutomatedRefundManagementApi.md#refundautomatedpreviewpost) | **POST** /refund/automated/preview | Preview automated refund
|
|
@@ -689,6 +692,8 @@ Class | Method | HTTP request | Description
|
|
|
689
692
|
- [DataTypesFeatureUsageHistory](docs/DataTypesFeatureUsageHistory.md)
|
|
690
693
|
- [DataTypesFeatureUsageStats](docs/DataTypesFeatureUsageStats.md)
|
|
691
694
|
- [DataTypesFieldMetadata](docs/DataTypesFieldMetadata.md)
|
|
695
|
+
- [DataTypesForgotPasswordRequest](docs/DataTypesForgotPasswordRequest.md)
|
|
696
|
+
- [DataTypesForgotPasswordResponse](docs/DataTypesForgotPasswordResponse.md)
|
|
692
697
|
- [DataTypesFulfillmentInfo](docs/DataTypesFulfillmentInfo.md)
|
|
693
698
|
- [DataTypesFulfillmentInfoCredits](docs/DataTypesFulfillmentInfoCredits.md)
|
|
694
699
|
- [DataTypesFulfillmentInfoSubscription](docs/DataTypesFulfillmentInfoSubscription.md)
|
|
@@ -858,6 +863,7 @@ Class | Method | HTTP request | Description
|
|
|
858
863
|
- [DataTypesRegenerateXStoreSecretResponse](docs/DataTypesRegenerateXStoreSecretResponse.md)
|
|
859
864
|
- [DataTypesRemoveWordsFromCustomListRequest](docs/DataTypesRemoveWordsFromCustomListRequest.md)
|
|
860
865
|
- [DataTypesRemoveWordsFromLanguageListRequest](docs/DataTypesRemoveWordsFromLanguageListRequest.md)
|
|
866
|
+
- [DataTypesResetPasswordRequest](docs/DataTypesResetPasswordRequest.md)
|
|
861
867
|
- [DataTypesResponse](docs/DataTypesResponse.md)
|
|
862
868
|
- [DataTypesRole](docs/DataTypesRole.md)
|
|
863
869
|
- [DataTypesRolePermissionsResponse](docs/DataTypesRolePermissionsResponse.md)
|
|
@@ -972,6 +978,7 @@ Class | Method | HTTP request | Description
|
|
|
972
978
|
- [DataTypesVerifyOTPResponse](docs/DataTypesVerifyOTPResponse.md)
|
|
973
979
|
- [DataTypesVerifyOTPResponseWrapper](docs/DataTypesVerifyOTPResponseWrapper.md)
|
|
974
980
|
- [DataTypesVerifyPaymentRequest](docs/DataTypesVerifyPaymentRequest.md)
|
|
981
|
+
- [DataTypesVerifyResetTokenResponse](docs/DataTypesVerifyResetTokenResponse.md)
|
|
975
982
|
- [DataTypesWidgetSearchResult](docs/DataTypesWidgetSearchResult.md)
|
|
976
983
|
- [DataTypesWordListResponse](docs/DataTypesWordListResponse.md)
|
|
977
984
|
- [DataTypesWordListResponseEnhanced](docs/DataTypesWordListResponseEnhanced.md)
|