yellowgrid-api-ts 3.2.137-dev.0 → 3.2.139-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 +2 -2
- package/api.ts +2 -2
- package/dist/api.js +2 -2
- package/docs/AccountsApi.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -54,7 +54,7 @@ Class | Method | HTTP request | Description
|
|
|
54
54
|
*AccountsApi* | [**deleteAdminUpdateAccountContact**](docs/AccountsApi.md#deleteadminupdateaccountcontact) | **DELETE** /admin/accounts/{id}/contacts/{contact_id} |
|
|
55
55
|
*AccountsApi* | [**deleteDeleteClientCredentials**](docs/AccountsApi.md#deletedeleteclientcredentials) | **DELETE** /accounts/me/contacts/credentials/{id} | Delete client credentials
|
|
56
56
|
*AccountsApi* | [**deleteUpdateAccountContact**](docs/AccountsApi.md#deleteupdateaccountcontact) | **DELETE** /accounts/me/contacts/{email} | Delete Account Contact
|
|
57
|
-
*AccountsApi* | [**getAdminCreateAccountContact**](docs/AccountsApi.md#getadmincreateaccountcontact) | **GET** /admin/accounts/{id}/contacts
|
|
57
|
+
*AccountsApi* | [**getAdminCreateAccountContact**](docs/AccountsApi.md#getadmincreateaccountcontact) | **GET** /admin/accounts/{id}/contacts |
|
|
58
58
|
*AccountsApi* | [**getGetAccount**](docs/AccountsApi.md#getgetaccount) | **GET** /accounts/me | Get Account
|
|
59
59
|
*AccountsApi* | [**getGetAccountContacts**](docs/AccountsApi.md#getgetaccountcontacts) | **GET** /accounts/me/contacts | Get Account Contacts
|
|
60
60
|
*AccountsApi* | [**getGetAccountDetailedSummary**](docs/AccountsApi.md#getgetaccountdetailedsummary) | **GET** /accounts/{id}/summary | Get Account Detailed Summary
|
|
@@ -71,7 +71,7 @@ Class | Method | HTTP request | Description
|
|
|
71
71
|
*AccountsApi* | [**patchUpdateAccountContactPassword**](docs/AccountsApi.md#patchupdateaccountcontactpassword) | **PATCH** /accounts/contacts/password | Update Account Password
|
|
72
72
|
*AccountsApi* | [**patchUpdateAccountPhone**](docs/AccountsApi.md#patchupdateaccountphone) | **PATCH** /admin/accounts/{id}/phone |
|
|
73
73
|
*AccountsApi* | [**patchUpdateAccountVatNumber**](docs/AccountsApi.md#patchupdateaccountvatnumber) | **PATCH** /admin/accounts/{id}/vatNumber |
|
|
74
|
-
*AccountsApi* | [**postAdminCreateAccountContact**](docs/AccountsApi.md#postadmincreateaccountcontact) | **POST** /admin/accounts/{id}/contacts
|
|
74
|
+
*AccountsApi* | [**postAdminCreateAccountContact**](docs/AccountsApi.md#postadmincreateaccountcontact) | **POST** /admin/accounts/{id}/contacts |
|
|
75
75
|
*AccountsApi* | [**postGetAccountContacts**](docs/AccountsApi.md#postgetaccountcontacts) | **POST** /accounts/me/contacts | Add Account Contact
|
|
76
76
|
*AccountsApi* | [**postGetAccounts**](docs/AccountsApi.md#postgetaccounts) | **POST** /accounts | Create a new customer account
|
|
77
77
|
*AccountsApi* | [**postGetAdminAccount**](docs/AccountsApi.md#postgetadminaccount) | **POST** /admin/me | Get Admin Account
|
package/api.ts
CHANGED
|
@@ -8326,7 +8326,7 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
8326
8326
|
getAdminCreateAccountContact: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
8327
8327
|
// verify required parameter 'id' is not null or undefined
|
|
8328
8328
|
assertParamExists('getAdminCreateAccountContact', 'id', id)
|
|
8329
|
-
const localVarPath = `/admin/accounts/{id}/contacts
|
|
8329
|
+
const localVarPath = `/admin/accounts/{id}/contacts`
|
|
8330
8330
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
8331
8331
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
8332
8332
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -8920,7 +8920,7 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
8920
8920
|
postAdminCreateAccountContact: async (id: string, accountContactRequestModel?: AccountContactRequestModel, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
8921
8921
|
// verify required parameter 'id' is not null or undefined
|
|
8922
8922
|
assertParamExists('postAdminCreateAccountContact', 'id', id)
|
|
8923
|
-
const localVarPath = `/admin/accounts/{id}/contacts
|
|
8923
|
+
const localVarPath = `/admin/accounts/{id}/contacts`
|
|
8924
8924
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
8925
8925
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
8926
8926
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
package/dist/api.js
CHANGED
|
@@ -560,7 +560,7 @@ var AccountsApiAxiosParamCreator = function (configuration) {
|
|
|
560
560
|
return __generator(this, function (_a) {
|
|
561
561
|
// verify required parameter 'id' is not null or undefined
|
|
562
562
|
(0, common_1.assertParamExists)('getAdminCreateAccountContact', 'id', id);
|
|
563
|
-
localVarPath = "/admin/accounts/{id}/contacts
|
|
563
|
+
localVarPath = "/admin/accounts/{id}/contacts"
|
|
564
564
|
.replace("{".concat("id", "}"), encodeURIComponent(String(id)));
|
|
565
565
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
566
566
|
if (configuration) {
|
|
@@ -1215,7 +1215,7 @@ var AccountsApiAxiosParamCreator = function (configuration) {
|
|
|
1215
1215
|
return __generator(this, function (_a) {
|
|
1216
1216
|
// verify required parameter 'id' is not null or undefined
|
|
1217
1217
|
(0, common_1.assertParamExists)('postAdminCreateAccountContact', 'id', id);
|
|
1218
|
-
localVarPath = "/admin/accounts/{id}/contacts
|
|
1218
|
+
localVarPath = "/admin/accounts/{id}/contacts"
|
|
1219
1219
|
.replace("{".concat("id", "}"), encodeURIComponent(String(id)));
|
|
1220
1220
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1221
1221
|
if (configuration) {
|
package/docs/AccountsApi.md
CHANGED
|
@@ -7,7 +7,7 @@ All URIs are relative to *https://localhost*
|
|
|
7
7
|
|[**deleteAdminUpdateAccountContact**](#deleteadminupdateaccountcontact) | **DELETE** /admin/accounts/{id}/contacts/{contact_id} | |
|
|
8
8
|
|[**deleteDeleteClientCredentials**](#deletedeleteclientcredentials) | **DELETE** /accounts/me/contacts/credentials/{id} | Delete client credentials|
|
|
9
9
|
|[**deleteUpdateAccountContact**](#deleteupdateaccountcontact) | **DELETE** /accounts/me/contacts/{email} | Delete Account Contact|
|
|
10
|
-
|[**getAdminCreateAccountContact**](#getadmincreateaccountcontact) | **GET** /admin/accounts/{id}/contacts
|
|
10
|
+
|[**getAdminCreateAccountContact**](#getadmincreateaccountcontact) | **GET** /admin/accounts/{id}/contacts | |
|
|
11
11
|
|[**getGetAccount**](#getgetaccount) | **GET** /accounts/me | Get Account|
|
|
12
12
|
|[**getGetAccountContacts**](#getgetaccountcontacts) | **GET** /accounts/me/contacts | Get Account Contacts|
|
|
13
13
|
|[**getGetAccountDetailedSummary**](#getgetaccountdetailedsummary) | **GET** /accounts/{id}/summary | Get Account Detailed Summary|
|
|
@@ -24,7 +24,7 @@ All URIs are relative to *https://localhost*
|
|
|
24
24
|
|[**patchUpdateAccountContactPassword**](#patchupdateaccountcontactpassword) | **PATCH** /accounts/contacts/password | Update Account Password|
|
|
25
25
|
|[**patchUpdateAccountPhone**](#patchupdateaccountphone) | **PATCH** /admin/accounts/{id}/phone | |
|
|
26
26
|
|[**patchUpdateAccountVatNumber**](#patchupdateaccountvatnumber) | **PATCH** /admin/accounts/{id}/vatNumber | |
|
|
27
|
-
|[**postAdminCreateAccountContact**](#postadmincreateaccountcontact) | **POST** /admin/accounts/{id}/contacts
|
|
27
|
+
|[**postAdminCreateAccountContact**](#postadmincreateaccountcontact) | **POST** /admin/accounts/{id}/contacts | |
|
|
28
28
|
|[**postGetAccountContacts**](#postgetaccountcontacts) | **POST** /accounts/me/contacts | Add Account Contact|
|
|
29
29
|
|[**postGetAccounts**](#postgetaccounts) | **POST** /accounts | Create a new customer account|
|
|
30
30
|
|[**postGetAdminAccount**](#postgetadminaccount) | **POST** /admin/me | Get Admin Account|
|