Skip to content

Commit 7e0f892

Browse files
committed
Update enums
1 parent 69a5808 commit 7e0f892

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

model/equaliq.smithy

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ enum AccountType {
5656
MANAGER = "manager"
5757
LAWYER = "lawyer"
5858
PRODUCER = "producer"
59+
PUBLISHER = "publisher"
5960
}
6061

6162
// Contract operations

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-05-13T05:52:27+00:00
3+
# timestamp: 2025-05-19T10:27:09+00:00
44

55
from __future__ import annotations
66

@@ -15,6 +15,7 @@ class AccountType(Enum):
1515
manager = 'manager'
1616
lawyer = 'lawyer'
1717
producer = 'producer'
18+
publisher = 'publisher'
1819

1920

2021
class AuthenticationErrorResponseContent(BaseModel):

typescript/src/models.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ export type webhooks = Record<string, never>;
201201
export interface components {
202202
schemas: {
203203
/** @enum {string} */
204-
AccountType: "artist" | "manager" | "lawyer" | "producer";
204+
AccountType: "artist" | "manager" | "lawyer" | "producer" | "publisher";
205205
AuthenticationErrorResponseContent: {
206206
message: string;
207207
};

0 commit comments

Comments
 (0)