yellowgrid-api-ts 3.2.148-dev.0 → 3.2.150-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/api.ts CHANGED
@@ -4236,9 +4236,9 @@ export interface PartnerDTO {
4236
4236
  */
4237
4237
  'hostingDisountPercent'?: number;
4238
4238
  /**
4239
- * 3CX Hosting Price List
4239
+ * 3CX Hosting Price List ID
4240
4240
  */
4241
- 'hostingPriceList'?: string;
4241
+ 'hostingPriceList'?: number;
4242
4242
  /**
4243
4243
  * 3CX Installation URL
4244
4244
  */
@@ -4313,11 +4313,11 @@ export interface PatchUpdateTcxHostingPriceListRequest {
4313
4313
  }
4314
4314
 
4315
4315
  export const PatchUpdateTcxHostingPriceListRequestPriceListEnum = {
4316
- _1: '1',
4317
- _2: '2',
4318
- _3: '3',
4319
- _4: '4',
4320
- _5: '5'
4316
+ NUMBER_1: 1,
4317
+ NUMBER_2: 2,
4318
+ NUMBER_3: 3,
4319
+ NUMBER_4: 4,
4320
+ NUMBER_5: 5
4321
4321
  } as const;
4322
4322
 
4323
4323
  export type PatchUpdateTcxHostingPriceListRequestPriceListEnum = typeof PatchUpdateTcxHostingPriceListRequestPriceListEnum[keyof typeof PatchUpdateTcxHostingPriceListRequestPriceListEnum];
package/dist/api.d.ts CHANGED
@@ -4192,9 +4192,9 @@ export interface PartnerDTO {
4192
4192
  */
4193
4193
  'hostingDisountPercent'?: number;
4194
4194
  /**
4195
- * 3CX Hosting Price List
4195
+ * 3CX Hosting Price List ID
4196
4196
  */
4197
- 'hostingPriceList'?: string;
4197
+ 'hostingPriceList'?: number;
4198
4198
  /**
4199
4199
  * 3CX Installation URL
4200
4200
  */
@@ -4265,11 +4265,11 @@ export interface PatchUpdateTcxHostingPriceListRequest {
4265
4265
  'priceList'?: PatchUpdateTcxHostingPriceListRequestPriceListEnum;
4266
4266
  }
4267
4267
  export declare const PatchUpdateTcxHostingPriceListRequestPriceListEnum: {
4268
- readonly _1: "1";
4269
- readonly _2: "2";
4270
- readonly _3: "3";
4271
- readonly _4: "4";
4272
- readonly _5: "5";
4268
+ readonly NUMBER_1: 1;
4269
+ readonly NUMBER_2: 2;
4270
+ readonly NUMBER_3: 3;
4271
+ readonly NUMBER_4: 4;
4272
+ readonly NUMBER_5: 5;
4273
4273
  };
4274
4274
  export type PatchUpdateTcxHostingPriceListRequestPriceListEnum = typeof PatchUpdateTcxHostingPriceListRequestPriceListEnum[keyof typeof PatchUpdateTcxHostingPriceListRequestPriceListEnum];
4275
4275
  export interface PatchUpdateTcxPartnerIdRequest {
package/dist/api.js CHANGED
@@ -283,11 +283,11 @@ exports.PatchUpdatePriceListRequestPriceListEnum = {
283
283
  HotelDisti: 'Hotel Disti'
284
284
  };
285
285
  exports.PatchUpdateTcxHostingPriceListRequestPriceListEnum = {
286
- _1: '1',
287
- _2: '2',
288
- _3: '3',
289
- _4: '4',
290
- _5: '5'
286
+ NUMBER_1: 1,
287
+ NUMBER_2: 2,
288
+ NUMBER_3: 3,
289
+ NUMBER_4: 4,
290
+ NUMBER_5: 5
291
291
  };
292
292
  exports.ProspectDTOStatusEnum = {
293
293
  NoCallBackSet: 'No Call Back Set',
@@ -0,0 +1,28 @@
1
+ export declare const HostingPriceListEnum: {
2
+ readonly HOSTING_ONLY: {
3
+ readonly name: "HOSTING_ONLY";
4
+ readonly value: 1;
5
+ readonly publicValue: "HO - Hosting Only";
6
+ };
7
+ readonly HOSTING_ONLY_BESPOKE: {
8
+ readonly name: "HOSTING_ONLY_BESPOKE";
9
+ readonly value: 2;
10
+ readonly publicValue: "HOB - Hosted Only Bespoke";
11
+ };
12
+ readonly HOSTING_AND_SUPPORT: {
13
+ readonly name: "HOSTING_AND_SUPPORT";
14
+ readonly value: 3;
15
+ readonly publicValue: "HS - Hosted & Support";
16
+ };
17
+ readonly HOSTING_AND_SUPPORT_BESPOKE: {
18
+ readonly name: "HOSTING_AND_SUPPORT_BESPOKE";
19
+ readonly value: 4;
20
+ readonly publicValue: "HSB - Hosted & Support Bespoke";
21
+ };
22
+ readonly END_USER: {
23
+ readonly name: "END_USER";
24
+ readonly value: 5;
25
+ readonly publicValue: "YG - Yellowgrid Customer";
26
+ };
27
+ };
28
+ export type HostingPriceListEnum = typeof HostingPriceListEnum;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.HostingPriceListEnum = void 0;
4
+ exports.HostingPriceListEnum = {
5
+ "HOSTING_ONLY": {
6
+ "name": "HOSTING_ONLY",
7
+ "value": 1,
8
+ "publicValue": "HO - Hosting Only"
9
+ },
10
+ "HOSTING_ONLY_BESPOKE": {
11
+ "name": "HOSTING_ONLY_BESPOKE",
12
+ "value": 2,
13
+ "publicValue": "HOB - Hosted Only Bespoke"
14
+ },
15
+ "HOSTING_AND_SUPPORT": {
16
+ "name": "HOSTING_AND_SUPPORT",
17
+ "value": 3,
18
+ "publicValue": "HS - Hosted & Support"
19
+ },
20
+ "HOSTING_AND_SUPPORT_BESPOKE": {
21
+ "name": "HOSTING_AND_SUPPORT_BESPOKE",
22
+ "value": 4,
23
+ "publicValue": "HSB - Hosted & Support Bespoke"
24
+ },
25
+ "END_USER": {
26
+ "name": "END_USER",
27
+ "value": 5,
28
+ "publicValue": "YG - Yellowgrid Customer"
29
+ }
30
+ };
@@ -14,7 +14,7 @@ Name | Type | Description | Notes
14
14
  **partnerLevel** | **string** | 3CX Partner Level | [optional] [default to undefined]
15
15
  **licenceDiscountPercent** | **number** | 3CX Partner Licence Discount Percent | [optional] [default to undefined]
16
16
  **hostingDisountPercent** | **number** | 3CX Partner Hosting Discount Percent | [optional] [default to undefined]
17
- **hostingPriceList** | **string** | 3CX Hosting Price List | [optional] [default to undefined]
17
+ **hostingPriceList** | **number** | 3CX Hosting Price List ID | [optional] [default to undefined]
18
18
  **installationUrl** | **string** | 3CX Installation URL | [optional] [default to undefined]
19
19
 
20
20
  ## Example
@@ -5,7 +5,7 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
- **priceList** | **string** | Price List | [optional] [default to undefined]
8
+ **priceList** | **number** | Price List | [optional] [default to undefined]
9
9
 
10
10
  ## Example
11
11
 
@@ -0,0 +1,29 @@
1
+ export const HostingPriceListEnum = {
2
+ "HOSTING_ONLY": {
3
+ "name": "HOSTING_ONLY",
4
+ "value": 1,
5
+ "publicValue": "HO - Hosting Only"
6
+ },
7
+ "HOSTING_ONLY_BESPOKE": {
8
+ "name": "HOSTING_ONLY_BESPOKE",
9
+ "value": 2,
10
+ "publicValue": "HOB - Hosted Only Bespoke"
11
+ },
12
+ "HOSTING_AND_SUPPORT": {
13
+ "name": "HOSTING_AND_SUPPORT",
14
+ "value": 3,
15
+ "publicValue": "HS - Hosted & Support"
16
+ },
17
+ "HOSTING_AND_SUPPORT_BESPOKE": {
18
+ "name": "HOSTING_AND_SUPPORT_BESPOKE",
19
+ "value": 4,
20
+ "publicValue": "HSB - Hosted & Support Bespoke"
21
+ },
22
+ "END_USER": {
23
+ "name": "END_USER",
24
+ "value": 5,
25
+ "publicValue": "YG - Yellowgrid Customer"
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.148-dev.0",
3
+ "version": "3.2.150-dev.0",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {