Skip to content

Commit 286a164

Browse files
committed
Add 'Services' ContractType
1 parent 84b068b commit 286a164

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

model/equaliq.smithy

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ enum ContractType {
6868
PUBLISHING = "publishing"
6969
MANAGEMENT = "management"
7070
PRODUCER = "producer"
71+
SERVICES = "services"
7172
TBD = "tbd"
7273
}
7374

python/api_model/types/models.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ class ContractType(Enum):
4343
publishing = 'publishing'
4444
management = 'management'
4545
producer = 'producer'
46+
services = 'services'
4647
tbd = 'tbd'
4748

4849

typescript/src/models.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1384,6 +1384,7 @@ export enum ContractType {
13841384
publishing = "publishing",
13851385
management = "management",
13861386
producer = "producer",
1387+
services = "services",
13871388
tbd = "tbd"
13881389
}
13891390
export enum SignContractResult {

0 commit comments

Comments
 (0)