Skip to content
This repository was archived by the owner on Mar 14, 2024. It is now read-only.

Commit db76210

Browse files
author
qovery
committed
See Qovery/qovery-openapi-spec@2b19c90 from refs/heads/main
1 parent 1048efc commit db76210

8 files changed

Lines changed: 12 additions & 57 deletions

docs/OrganizationCurrentCost.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,5 @@ Name | Type | Description | Notes
99
**remainingCredits** | [**RemainingCredits**](RemainingCredits.md) | | [optional]
1010
**cost** | [**Cost**](Cost.md) | | [optional]
1111
**paidUsage** | [**PaidUsage**](PaidUsage.md) | | [optional]
12-
**communityUsage** | [**CommunityUsage**](CommunityUsage.md) | | [optional]
1312

1413

docs/OrganizationCurrentCostAllOf.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,5 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**paidUsage** | [**PaidUsage**](PaidUsage.md) | | [optional]
8-
**communityUsage** | [**CommunityUsage**](CommunityUsage.md) | | [optional]
98

109

docs/PlanEnum.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,12 @@
33
## Enum
44

55

6-
* `BUSINESS` (value: `"BUSINESS"`)
7-
8-
* `COMMUNITY` (value: `"COMMUNITY"`)
9-
10-
* `ENTERPRISE` (value: `"ENTERPRISE"`)
11-
126
* `FREE` (value: `"FREE"`)
137

148
* `PROFESSIONAL` (value: `"PROFESSIONAL"`)
159

10+
* `BUSINESS` (value: `"BUSINESS"`)
11+
12+
* `ENTERPRISE` (value: `"ENTERPRISE"`)
13+
1614

src/model/OrganizationCurrentCost.js

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
*/
1313

1414
import ApiClient from '../ApiClient';
15-
import CommunityUsage from './CommunityUsage';
1615
import Cost from './Cost';
1716
import CurrentCost from './CurrentCost';
1817
import OrganizationCurrentCostAllOf from './OrganizationCurrentCostAllOf';
@@ -73,9 +72,6 @@ class OrganizationCurrentCost {
7372
if (data.hasOwnProperty('paid_usage')) {
7473
obj['paid_usage'] = PaidUsage.constructFromObject(data['paid_usage']);
7574
}
76-
if (data.hasOwnProperty('community_usage')) {
77-
obj['community_usage'] = CommunityUsage.constructFromObject(data['community_usage']);
78-
}
7975
}
8076
return obj;
8177
}
@@ -109,11 +105,6 @@ OrganizationCurrentCost.prototype['cost'] = undefined;
109105
*/
110106
OrganizationCurrentCost.prototype['paid_usage'] = undefined;
111107

112-
/**
113-
* @member {module:model/CommunityUsage} community_usage
114-
*/
115-
OrganizationCurrentCost.prototype['community_usage'] = undefined;
116-
117108

118109
// Implement CurrentCost interface:
119110
/**
@@ -138,10 +129,6 @@ CurrentCost.prototype['cost'] = undefined;
138129
* @member {module:model/PaidUsage} paid_usage
139130
*/
140131
OrganizationCurrentCostAllOf.prototype['paid_usage'] = undefined;
141-
/**
142-
* @member {module:model/CommunityUsage} community_usage
143-
*/
144-
OrganizationCurrentCostAllOf.prototype['community_usage'] = undefined;
145132

146133

147134

src/model/OrganizationCurrentCostAllOf.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
*/
1313

1414
import ApiClient from '../ApiClient';
15-
import CommunityUsage from './CommunityUsage';
1615
import PaidUsage from './PaidUsage';
1716

1817
/**
@@ -52,9 +51,6 @@ class OrganizationCurrentCostAllOf {
5251
if (data.hasOwnProperty('paid_usage')) {
5352
obj['paid_usage'] = PaidUsage.constructFromObject(data['paid_usage']);
5453
}
55-
if (data.hasOwnProperty('community_usage')) {
56-
obj['community_usage'] = CommunityUsage.constructFromObject(data['community_usage']);
57-
}
5854
}
5955
return obj;
6056
}
@@ -67,11 +63,6 @@ class OrganizationCurrentCostAllOf {
6763
*/
6864
OrganizationCurrentCostAllOf.prototype['paid_usage'] = undefined;
6965

70-
/**
71-
* @member {module:model/CommunityUsage} community_usage
72-
*/
73-
OrganizationCurrentCostAllOf.prototype['community_usage'] = undefined;
74-
7566

7667

7768

src/model/PlanEnum.js

Lines changed: 8 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -20,38 +20,31 @@ import ApiClient from '../ApiClient';
2020
export default class PlanEnum {
2121

2222
/**
23-
* value: "BUSINESS"
24-
* @const
25-
*/
26-
"BUSINESS" = "BUSINESS";
27-
28-
29-
/**
30-
* value: "COMMUNITY"
23+
* value: "FREE"
3124
* @const
3225
*/
33-
"COMMUNITY" = "COMMUNITY";
26+
"FREE" = "FREE";
3427

3528

3629
/**
37-
* value: "ENTERPRISE"
30+
* value: "PROFESSIONAL"
3831
* @const
3932
*/
40-
"ENTERPRISE" = "ENTERPRISE";
33+
"PROFESSIONAL" = "PROFESSIONAL";
4134

4235

4336
/**
44-
* value: "FREE"
37+
* value: "BUSINESS"
4538
* @const
4639
*/
47-
"FREE" = "FREE";
40+
"BUSINESS" = "BUSINESS";
4841

4942

5043
/**
51-
* value: "PROFESSIONAL"
44+
* value: "ENTERPRISE"
5245
* @const
5346
*/
54-
"PROFESSIONAL" = "PROFESSIONAL";
47+
"ENTERPRISE" = "ENTERPRISE";
5548

5649

5750

test/model/OrganizationCurrentCost.spec.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,6 @@
8484
//expect(instance).to.be();
8585
});
8686

87-
it('should have the property communityUsage (base name: "community_usage")', function() {
88-
// uncomment below and update the code to test the property communityUsage
89-
//var instance = new QoveryApi.OrganizationCurrentCost();
90-
//expect(instance).to.be();
91-
});
92-
9387
});
9488

9589
}));

test/model/OrganizationCurrentCostAllOf.spec.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,6 @@
6060
//expect(instance).to.be();
6161
});
6262

63-
it('should have the property communityUsage (base name: "community_usage")', function() {
64-
// uncomment below and update the code to test the property communityUsage
65-
//var instance = new QoveryApi.OrganizationCurrentCostAllOf();
66-
//expect(instance).to.be();
67-
});
68-
6963
});
7064

7165
}));

0 commit comments

Comments
 (0)