chore: add customer type 4 (BYOC)

This commit is contained in:
zmstone 2024-05-23 17:28:12 +02:00
parent 398dc97ed6
commit c737045dff
2 changed files with 2 additions and 0 deletions

View File

@ -32,6 +32,7 @@
-define(MEDIUM_CUSTOMER, 1). -define(MEDIUM_CUSTOMER, 1).
-define(LARGE_CUSTOMER, 2). -define(LARGE_CUSTOMER, 2).
-define(BUSINESS_CRITICAL_CUSTOMER, 3). -define(BUSINESS_CRITICAL_CUSTOMER, 3).
-define(BYOC_CUSTOMER, 4).
-define(EVALUATION_CUSTOMER, 10). -define(EVALUATION_CUSTOMER, 10).
-define(EXPIRED_DAY, -90). -define(EXPIRED_DAY, -90).

View File

@ -29,6 +29,7 @@
| ?MEDIUM_CUSTOMER | ?MEDIUM_CUSTOMER
| ?LARGE_CUSTOMER | ?LARGE_CUSTOMER
| ?BUSINESS_CRITICAL_CUSTOMER | ?BUSINESS_CRITICAL_CUSTOMER
| ?BYOC_CUSTOMER
| ?EVALUATION_CUSTOMER. | ?EVALUATION_CUSTOMER.
-type license_type() :: ?OFFICIAL | ?TRIAL. -type license_type() :: ?OFFICIAL | ?TRIAL.