yellowgrid-api-ts 3.2.132 → 3.2.133

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 (37) hide show
  1. package/.openapi-generator/FILES +21 -2
  2. package/README.md +45 -2
  3. package/api.ts +2184 -128
  4. package/dist/api.d.ts +1175 -28
  5. package/dist/api.js +2244 -219
  6. package/dist/models/HostingPriceListEnum.d.ts +28 -0
  7. package/dist/models/HostingPriceListEnum.js +30 -0
  8. package/docs/AccountAddressesDTO.md +25 -0
  9. package/docs/AccountFinanceDTO.md +37 -0
  10. package/docs/AccountsApi.md +1331 -53
  11. package/docs/AddressDTO.md +31 -0
  12. package/docs/AdminUserModel.md +2 -0
  13. package/docs/CRMApi.md +120 -0
  14. package/docs/{PostAddAdminNoteRequest.md → CreateCrmNoteBody.md} +3 -3
  15. package/docs/CreditAccountEntity.md +4 -0
  16. package/docs/CrmActivitiesResponseDTO.md +23 -0
  17. package/docs/CrmActivityDTO.md +33 -0
  18. package/docs/CrmDateActivitiesDTO.md +23 -0
  19. package/docs/CrmNoteEntity.md +39 -0
  20. package/docs/CrmNoteModel.md +39 -0
  21. package/docs/NumberPortAdminNoteBody.md +20 -0
  22. package/docs/NumberPortingApi.md +5 -5
  23. package/docs/PartnerDTO.md +39 -0
  24. package/docs/{PatchSetTcxWizardCnameRequest.md → PatchUpdateAccountCnameRequest.md} +3 -3
  25. package/docs/PatchUpdateAccountCompanyNumberRequest.md +20 -0
  26. package/docs/PatchUpdateAccountPhoneRequest.md +20 -0
  27. package/docs/PatchUpdateAccountVatNumberRequest.md +20 -0
  28. package/docs/PatchUpdateCreditLimitRequest.md +20 -0
  29. package/docs/PatchUpdatePriceListRequest.md +20 -0
  30. package/docs/PatchUpdateSipChannelCostRequest.md +20 -0
  31. package/docs/PatchUpdateTcxHostingPriceListRequest.md +20 -0
  32. package/docs/PatchUpdateTcxPartnerIdRequest.md +20 -0
  33. package/docs/PortalAccountModel.md +4 -2
  34. package/docs/PostSendWelcomeEmailRequest.md +20 -0
  35. package/docs/ProspectDTO.md +2 -0
  36. package/models/HostingPriceListEnum.ts +29 -0
  37. package/package.json +1 -1
@@ -27,9 +27,10 @@ Name | Type | Description | Notes
27
27
  **resellerId** | **string** | 3CX Reseller ID | [optional] [default to undefined]
28
28
  **creationDate** | **string** | Creation Date | [optional] [default to undefined]
29
29
  **prizePromo** | **boolean** | Prize Promo Enabled | [optional] [default to undefined]
30
+ **portalAccess** | **boolean** | Portal Access | [optional] [default to undefined]
31
+ **cname** | **string** | Wizard CNAME | [optional] [default to undefined]
30
32
  **directDebitMandate** | **boolean** | Active Direct Debit Mandate | [optional] [default to undefined]
31
33
  **navigation** | [**Array<NavigationModel>**](NavigationModel.md) | Portal Navigation | [optional] [default to undefined]
32
- **cname** | **string** | Wizard CNAME | [optional] [default to undefined]
33
34
 
34
35
  ## Example
35
36
 
@@ -58,9 +59,10 @@ const instance: PortalAccountModel = {
58
59
  resellerId,
59
60
  creationDate,
60
61
  prizePromo,
62
+ portalAccess,
63
+ cname,
61
64
  directDebitMandate,
62
65
  navigation,
63
- cname,
64
66
  };
65
67
  ```
66
68
 
@@ -0,0 +1,20 @@
1
+ # PostSendWelcomeEmailRequest
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **email** | **string** | email | [optional] [default to undefined]
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { PostSendWelcomeEmailRequest } from 'yellowgrid-api-ts';
14
+
15
+ const instance: PostSendWelcomeEmailRequest = {
16
+ email,
17
+ };
18
+ ```
19
+
20
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
13
13
  **xeroId** | **string** | Xero ID | [optional] [default to undefined]
14
14
  **removed** | **boolean** | Removed From Prospects | [optional] [default to undefined]
15
15
  **status** | **string** | Status | [optional] [default to undefined]
16
+ **orderCount** | **number** | Order Count | [optional] [default to undefined]
16
17
 
17
18
  ## Example
18
19
 
@@ -27,6 +28,7 @@ const instance: ProspectDTO = {
27
28
  xeroId,
28
29
  removed,
29
30
  status,
31
+ orderCount,
30
32
  };
31
33
  ```
32
34
 
@@ -0,0 +1,29 @@
1
+ export const HostingPriceListEnum = {
2
+ "HOSTING_ONLY": {
3
+ "name": "HOSTING_ONLY",
4
+ "value": 1,
5
+ "publicValue": "Hosting Only"
6
+ },
7
+ "HOSTING_ONLY_BESPOKE": {
8
+ "name": "HOSTING_ONLY_BESPOKE",
9
+ "value": 2,
10
+ "publicValue": "Hosting Only (Bespoke)"
11
+ },
12
+ "HOSTING_AND_SUPPORT": {
13
+ "name": "HOSTING_AND_SUPPORT",
14
+ "value": 3,
15
+ "publicValue": "Hosting & Support"
16
+ },
17
+ "HOSTING_AND_SUPPORT_BESPOKE": {
18
+ "name": "HOSTING_AND_SUPPORT_BESPOKE",
19
+ "value": 4,
20
+ "publicValue": "Hosting & Support (Bespoke)"
21
+ },
22
+ "END_USER": {
23
+ "name": "END_USER",
24
+ "value": 5,
25
+ "publicValue": "End User"
26
+ }
27
+ } as const;
28
+
29
+ export type HostingPriceListEnum = typeof HostingPriceListEnum;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.2.132",
3
+ "version": "3.2.133",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {