yellowgrid-api-ts 3.2.116-dev.0 → 3.2.117-dev.0
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 +1 -1
- package/api.ts +1 -1
- package/dist/api.js +1 -1
- package/docs/AccountsApi.md +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -68,7 +68,7 @@ Class | Method | HTTP request | Description
|
|
|
68
68
|
*AccountsApi* | [**patchUpdateAccountCompanyNumber**](docs/AccountsApi.md#patchupdateaccountcompanynumber) | **PATCH** /admin/accounts/{id}/companyNumber |
|
|
69
69
|
*AccountsApi* | [**patchUpdateAccountContactPassword**](docs/AccountsApi.md#patchupdateaccountcontactpassword) | **PATCH** /accounts/contacts/password | Update Account Password
|
|
70
70
|
*AccountsApi* | [**patchUpdateAccountPhone**](docs/AccountsApi.md#patchupdateaccountphone) | **PATCH** /admin/accounts/{id}/phone |
|
|
71
|
-
*AccountsApi* | [**patchUpdateAccountVatNumber**](docs/AccountsApi.md#patchupdateaccountvatnumber) | **PATCH** /admin/accounts/{id}/
|
|
71
|
+
*AccountsApi* | [**patchUpdateAccountVatNumber**](docs/AccountsApi.md#patchupdateaccountvatnumber) | **PATCH** /admin/accounts/{id}/vatNumber |
|
|
72
72
|
*AccountsApi* | [**postGetAccountContacts**](docs/AccountsApi.md#postgetaccountcontacts) | **POST** /accounts/me/contacts | Add Account Contact
|
|
73
73
|
*AccountsApi* | [**postGetAccounts**](docs/AccountsApi.md#postgetaccounts) | **POST** /accounts | Create a new customer account
|
|
74
74
|
*AccountsApi* | [**postGetAdminAccount**](docs/AccountsApi.md#postgetadminaccount) | **POST** /admin/me | Get Admin Account
|
package/api.ts
CHANGED
|
@@ -8558,7 +8558,7 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
8558
8558
|
patchUpdateAccountVatNumber: async (id: string, patchUpdateAccountVatNumberRequest?: PatchUpdateAccountVatNumberRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
8559
8559
|
// verify required parameter 'id' is not null or undefined
|
|
8560
8560
|
assertParamExists('patchUpdateAccountVatNumber', 'id', id)
|
|
8561
|
-
const localVarPath = `/admin/accounts/{id}/
|
|
8561
|
+
const localVarPath = `/admin/accounts/{id}/vatNumber`
|
|
8562
8562
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
8563
8563
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
8564
8564
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
package/dist/api.js
CHANGED
|
@@ -1089,7 +1089,7 @@ var AccountsApiAxiosParamCreator = function (configuration) {
|
|
|
1089
1089
|
return __generator(this, function (_a) {
|
|
1090
1090
|
// verify required parameter 'id' is not null or undefined
|
|
1091
1091
|
(0, common_1.assertParamExists)('patchUpdateAccountVatNumber', 'id', id);
|
|
1092
|
-
localVarPath = "/admin/accounts/{id}/
|
|
1092
|
+
localVarPath = "/admin/accounts/{id}/vatNumber"
|
|
1093
1093
|
.replace("{".concat("id", "}"), encodeURIComponent(String(id)));
|
|
1094
1094
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1095
1095
|
if (configuration) {
|
package/docs/AccountsApi.md
CHANGED
|
@@ -21,7 +21,7 @@ All URIs are relative to *https://localhost*
|
|
|
21
21
|
|[**patchUpdateAccountCompanyNumber**](#patchupdateaccountcompanynumber) | **PATCH** /admin/accounts/{id}/companyNumber | |
|
|
22
22
|
|[**patchUpdateAccountContactPassword**](#patchupdateaccountcontactpassword) | **PATCH** /accounts/contacts/password | Update Account Password|
|
|
23
23
|
|[**patchUpdateAccountPhone**](#patchupdateaccountphone) | **PATCH** /admin/accounts/{id}/phone | |
|
|
24
|
-
|[**patchUpdateAccountVatNumber**](#patchupdateaccountvatnumber) | **PATCH** /admin/accounts/{id}/
|
|
24
|
+
|[**patchUpdateAccountVatNumber**](#patchupdateaccountvatnumber) | **PATCH** /admin/accounts/{id}/vatNumber | |
|
|
25
25
|
|[**postGetAccountContacts**](#postgetaccountcontacts) | **POST** /accounts/me/contacts | Add Account Contact|
|
|
26
26
|
|[**postGetAccounts**](#postgetaccounts) | **POST** /accounts | Create a new customer account|
|
|
27
27
|
|[**postGetAdminAccount**](#postgetadminaccount) | **POST** /admin/me | Get Admin Account|
|