Skip to content

Commit e28109a

Browse files
committed
Add 'Executive' as Account Type
1 parent cf75253 commit e28109a

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

model/equaliq.smithy

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ enum AccountType {
7575
LAWYER = "lawyer"
7676
PRODUCER = "producer"
7777
PUBLISHER = "publisher"
78+
EXECUTIVE = "executive"
7879
}
7980

8081
enum SignatureStatus {

python/api_model/types/models.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# generated by datamodel-codegen:
22
# filename: api.json
3-
# timestamp: 2025-06-09T23:34:37+00:00
3+
# timestamp: 2025-05-26T18:04:34+00:00
44

55
from __future__ import annotations
66

@@ -16,6 +16,7 @@ class AccountType(Enum):
1616
lawyer = 'lawyer'
1717
producer = 'producer'
1818
publisher = 'publisher'
19+
executive = 'executive'
1920

2021

2122
class AuthenticationErrorResponseContent(BaseModel):

typescript/src/models.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1241,7 +1241,8 @@ export enum AccountType {
12411241
manager = "manager",
12421242
lawyer = "lawyer",
12431243
producer = "producer",
1244-
publisher = "publisher"
1244+
publisher = "publisher",
1245+
executive = "executive"
12451246
}
12461247
export enum ContractStatus {
12471248
processing = "processing",

0 commit comments

Comments
 (0)