@@ -22176,6 +22176,7 @@ paths:
2217622176 - freezeEnterprise
2217722177 - adminRenameEnterprise
2217822178 - adminDeleteEnterprisePricingTypes
22179+ - adminUpdateEnterpriseExternalContract
2217922180 - createAccessToken
2218022181 - modifyAccessToken
2218122182 - deleteAccessToken
@@ -28705,6 +28706,10 @@ components:
2870528706 videoIdRequired:
2870628707 type: boolean
2870728708 description: Check for video ID Users
28709+ contract:
28710+ allOf:
28711+ - $ref: '#/components/schemas/EnterpriseContract'
28712+ description: Contract information
2870828713 required:
2870928714 - id
2871028715 - name
@@ -28848,14 +28853,27 @@ components:
2884828853 description: Phone number for emergencies
2884928854 example: '+11234567890'
2885028855 EnterpriseContract:
28856+ title: EnterpriseContract
2885128857 type: object
2885228858 properties:
2885328859 startDate:
28854- type: string
28855- description: The contract start date for an enterprise
28860+ oneOf:
28861+ - type: string
28862+ format: date
28863+ title: Date String
28864+ - type: string
28865+ format: date-time
28866+ title: ISO Date String
2885628867 endDate:
28857- type: string
28858- description: The contract end date for an enterprise
28868+ oneOf:
28869+ - type: string
28870+ format: date
28871+ title: Date String
28872+ - type: string
28873+ format: date-time
28874+ title: ISO Date String
28875+ isExternal:
28876+ type: boolean
2885928877 BitgoOrg:
2886028878 title: BitgoOrg
2886128879 type: string
@@ -29404,6 +29422,7 @@ components:
2940429422 - NOT_NEEDED
2940529423 - COMPLETE
2940629424 - CANCELLED
29425+ - FAILED
2940729426 PolicyActionParameters:
2940829427 title: PolicyActionParameters
2940929428 type: object
@@ -31362,6 +31381,7 @@ components:
3136231381 - ftx-bahamas-retail
3136331382 - sofi
3136431383 - bitcoinWell
31384+ - lucid
3136531385 VideoIdUserState:
3136631386 title: VideoIdUserState
3136731387 type: string
@@ -37060,7 +37080,7 @@ components:
3706037080 type: boolean
3706137081 description: whether the enterprise has the license to create hot wallets
3706237082 contract:
37063- $ref: '#/components/schemas/EnterpriseContract '
37083+ $ref: '#/components/schemas/EnterpriseContract1 '
3706437084 emergencyPhone:
3706537085 $ref: '#/components/schemas/EmergencyPhone'
3706637086 ethFeeAddress:
@@ -37114,6 +37134,15 @@ components:
3711437134 type: string
3711537135 enterpriseId:
3711637136 $ref: '#/components/schemas/Id'
37137+ EnterpriseContract1:
37138+ type: object
37139+ properties:
37140+ startDate:
37141+ type: string
37142+ description: The contract start date for an enterprise
37143+ endDate:
37144+ type: string
37145+ description: The contract end date for an enterprise
3711737146 EnterpriseResponse1:
3711837147 allOf:
3711937148 - $ref: '#/components/schemas/Enterprise1'
@@ -53660,6 +53689,7 @@ components:
5366053689 - freezeEnterprise
5366153690 - adminRenameEnterprise
5366253691 - adminDeleteEnterprisePricingTypes
53692+ - adminUpdateEnterpriseExternalContract
5366353693 - createAccessToken
5366453694 - modifyAccessToken
5366553695 - deleteAccessToken
0 commit comments