yellowgrid-api-ts 3.2.163-dev.0 → 3.2.165-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
@@ -743,6 +743,7 @@ export const AdminUserModelPermissionsEnum = {
743
743
  Technical: 'Technical',
744
744
  Privileged: 'Privileged',
745
745
  Development: 'Development',
746
+ Finance: 'Finance',
746
747
  } as const;
747
748
 
748
749
  export type AdminUserModelPermissionsEnum = typeof AdminUserModelPermissionsEnum[keyof typeof AdminUserModelPermissionsEnum];
@@ -1510,6 +1511,10 @@ export interface CreditAccountEntity {
1510
1511
  * Service Payment Method
1511
1512
  */
1512
1513
  'servicePaymentMethod'?: string;
1514
+ /**
1515
+ * Active
1516
+ */
1517
+ 'status'?: boolean;
1513
1518
  /**
1514
1519
  * 3CX Reseller ID
1515
1520
  */
@@ -4475,6 +4480,10 @@ export interface PortalAccountModel {
4475
4480
  * Service Payment Method
4476
4481
  */
4477
4482
  'servicePaymentMethod'?: string;
4483
+ /**
4484
+ * Active
4485
+ */
4486
+ 'status'?: boolean;
4478
4487
  /**
4479
4488
  * 3CX Reseller ID
4480
4489
  */
package/dist/api.d.ts CHANGED
@@ -726,6 +726,7 @@ export declare const AdminUserModelPermissionsEnum: {
726
726
  readonly Technical: "Technical";
727
727
  readonly Privileged: "Privileged";
728
728
  readonly Development: "Development";
729
+ readonly Finance: "Finance";
729
730
  };
730
731
  export type AdminUserModelPermissionsEnum = typeof AdminUserModelPermissionsEnum[keyof typeof AdminUserModelPermissionsEnum];
731
732
  /**
@@ -1487,6 +1488,10 @@ export interface CreditAccountEntity {
1487
1488
  * Service Payment Method
1488
1489
  */
1489
1490
  'servicePaymentMethod'?: string;
1491
+ /**
1492
+ * Active
1493
+ */
1494
+ 'status'?: boolean;
1490
1495
  /**
1491
1496
  * 3CX Reseller ID
1492
1497
  */
@@ -4421,6 +4426,10 @@ export interface PortalAccountModel {
4421
4426
  * Service Payment Method
4422
4427
  */
4423
4428
  'servicePaymentMethod'?: string;
4429
+ /**
4430
+ * Active
4431
+ */
4432
+ 'status'?: boolean;
4424
4433
  /**
4425
4434
  * 3CX Reseller ID
4426
4435
  */
package/dist/api.js CHANGED
@@ -111,6 +111,7 @@ exports.AdminUserModelPermissionsEnum = {
111
111
  Technical: 'Technical',
112
112
  Privileged: 'Privileged',
113
113
  Development: 'Development',
114
+ Finance: 'Finance',
114
115
  };
115
116
  exports.AuditLogEntityActionEnum = {
116
117
  Create: 'CREATE',
@@ -24,5 +24,10 @@ export declare const UserGroupEnum: {
24
24
  readonly value: "Development";
25
25
  readonly publicValue: "Development";
26
26
  };
27
+ readonly FINANCE: {
28
+ readonly name: "FINANCE";
29
+ readonly value: "Finance";
30
+ readonly publicValue: "Finance";
31
+ };
27
32
  };
28
33
  export type UserGroupEnum = typeof UserGroupEnum;
@@ -26,5 +26,10 @@ exports.UserGroupEnum = {
26
26
  "name": "DEVELOPMENT",
27
27
  "value": "Development",
28
28
  "publicValue": "Development"
29
+ },
30
+ "FINANCE": {
31
+ "name": "FINANCE",
32
+ "value": "Finance",
33
+ "publicValue": "Finance"
29
34
  }
30
35
  };
@@ -24,6 +24,7 @@ Name | Type | Description | Notes
24
24
  **creditLimit** | **number** | Credit Limit | [optional] [default to undefined]
25
25
  **paymentMethod** | **string** | Payment Method | [optional] [default to undefined]
26
26
  **servicePaymentMethod** | **string** | Service Payment Method | [optional] [default to undefined]
27
+ **status** | **boolean** | Active | [optional] [default to undefined]
27
28
  **resellerId** | **string** | 3CX Reseller ID | [optional] [default to undefined]
28
29
  **creationDate** | **string** | Creation Date | [optional] [default to undefined]
29
30
  **prizePromo** | **boolean** | Prize Promo Enabled | [optional] [default to undefined]
@@ -54,6 +55,7 @@ const instance: CreditAccountEntity = {
54
55
  creditLimit,
55
56
  paymentMethod,
56
57
  servicePaymentMethod,
58
+ status,
57
59
  resellerId,
58
60
  creationDate,
59
61
  prizePromo,
@@ -24,6 +24,7 @@ Name | Type | Description | Notes
24
24
  **creditLimit** | **number** | Credit Limit | [optional] [default to undefined]
25
25
  **paymentMethod** | **string** | Payment Method | [optional] [default to undefined]
26
26
  **servicePaymentMethod** | **string** | Service Payment Method | [optional] [default to undefined]
27
+ **status** | **boolean** | Active | [optional] [default to undefined]
27
28
  **resellerId** | **string** | 3CX Reseller ID | [optional] [default to undefined]
28
29
  **creationDate** | **string** | Creation Date | [optional] [default to undefined]
29
30
  **prizePromo** | **boolean** | Prize Promo Enabled | [optional] [default to undefined]
@@ -56,6 +57,7 @@ const instance: PortalAccountModel = {
56
57
  creditLimit,
57
58
  paymentMethod,
58
59
  servicePaymentMethod,
60
+ status,
59
61
  resellerId,
60
62
  creationDate,
61
63
  prizePromo,
@@ -23,6 +23,11 @@ export const UserGroupEnum = {
23
23
  "name": "DEVELOPMENT",
24
24
  "value": "Development",
25
25
  "publicValue": "Development"
26
+ },
27
+ "FINANCE": {
28
+ "name": "FINANCE",
29
+ "value": "Finance",
30
+ "publicValue": "Finance"
26
31
  }
27
32
  } as const;
28
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.2.163-dev.0",
3
+ "version": "3.2.165-dev.0",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {