@@ -3859,6 +3859,7 @@ paths:
3859
3859
properties:
3860
3860
name:
3861
3861
type: string
3862
+ example: New Admin Key
3862
3863
type:
3863
3864
type: string
3864
3865
responses:
@@ -5103,6 +5104,12 @@ paths:
5103
5104
schema:
5104
5105
$ref: '#/components/schemas/ProjectServiceAccountCreateRequest'
5105
5106
responses:
5107
+ "400":
5108
+ description: Error response when project is archived.
5109
+ content:
5110
+ application/json:
5111
+ schema:
5112
+ $ref: '#/components/schemas/ErrorResponse'
5106
5113
"201":
5107
5114
description: Project service account created successfully.
5108
5115
content:
@@ -5320,6 +5327,12 @@ paths:
5320
5327
schema:
5321
5328
$ref: '#/components/schemas/ProjectUserCreateRequest'
5322
5329
responses:
5330
+ "400":
5331
+ description: Error response for various conditions.
5332
+ content:
5333
+ application/json:
5334
+ schema:
5335
+ $ref: '#/components/schemas/ErrorResponse'
5323
5336
"201":
5324
5337
description: User added to project successfully.
5325
5338
content:
@@ -16142,12 +16155,15 @@ components:
16142
16155
invited_at:
16143
16156
type: integer
16144
16157
description: The Unix timestamp (in seconds) of when the invite was sent.
16158
+ format: int64
16145
16159
expires_at:
16146
16160
type: integer
16147
16161
description: The Unix timestamp (in seconds) of when the invite expires.
16162
+ format: int64
16148
16163
accepted_at:
16149
16164
type: integer
16150
16165
description: The Unix timestamp (in seconds) of when the invite was accepted.
16166
+ format: int64
16151
16167
projects:
16152
16168
type: array
16153
16169
description: The projects that were granted membership upon acceptance of the invite.
@@ -17570,10 +17586,12 @@ components:
17570
17586
created_at:
17571
17587
type: integer
17572
17588
description: The Unix timestamp (in seconds) of when the project was created.
17589
+ format: int64
17573
17590
archived_at:
17574
17591
type: integer
17575
17592
nullable: true
17576
17593
description: The Unix timestamp (in seconds) of when the project was archived or `null`.
17594
+ format: int64
17577
17595
status:
17578
17596
type: string
17579
17597
enum:
@@ -17746,21 +17764,27 @@ components:
17746
17764
max_requests_per_1_minute:
17747
17765
type: integer
17748
17766
description: The maximum requests per minute.
17767
+ format: int64
17749
17768
max_tokens_per_1_minute:
17750
17769
type: integer
17751
17770
description: The maximum tokens per minute.
17771
+ format: int64
17752
17772
max_images_per_1_minute:
17753
17773
type: integer
17754
17774
description: The maximum images per minute. Only present for relevant models.
17775
+ format: int64
17755
17776
max_audio_megabytes_per_1_minute:
17756
17777
type: integer
17757
17778
description: The maximum audio megabytes per minute. Only present for relevant models.
17779
+ format: int64
17758
17780
max_requests_per_1_day:
17759
17781
type: integer
17760
17782
description: The maximum requests per day. Only present for relevant models.
17783
+ format: int64
17761
17784
batch_1_day_max_input_tokens:
17762
17785
type: integer
17763
17786
description: The maximum batch input tokens per day. Only present for relevant models.
17787
+ format: int64
17764
17788
required:
17765
17789
- object
17766
17790
- id
@@ -17807,21 +17831,27 @@ components:
17807
17831
max_requests_per_1_minute:
17808
17832
type: integer
17809
17833
description: The maximum requests per minute.
17834
+ format: int64
17810
17835
max_tokens_per_1_minute:
17811
17836
type: integer
17812
17837
description: The maximum tokens per minute.
17838
+ format: int64
17813
17839
max_images_per_1_minute:
17814
17840
type: integer
17815
17841
description: The maximum images per minute. Only relevant for certain models.
17842
+ format: int64
17816
17843
max_audio_megabytes_per_1_minute:
17817
17844
type: integer
17818
17845
description: The maximum audio megabytes per minute. Only relevant for certain models.
17846
+ format: int64
17819
17847
max_requests_per_1_day:
17820
17848
type: integer
17821
17849
description: The maximum requests per day. Only relevant for certain models.
17850
+ format: int64
17822
17851
batch_1_day_max_input_tokens:
17823
17852
type: integer
17824
17853
description: The maximum batch input tokens per day. Only relevant for certain models.
17854
+ format: int64
17825
17855
ProjectServiceAccount:
17826
17856
type: object
17827
17857
description: Represents an individual service account in a project.
@@ -17846,6 +17876,7 @@ components:
17846
17876
created_at:
17847
17877
type: integer
17848
17878
description: The Unix timestamp (in seconds) of when the service account was created
17879
+ format: int64
17849
17880
required:
17850
17881
- object
17851
17882
- id
@@ -17910,6 +17941,7 @@ components:
17910
17941
description: Service accounts can only have one role of type `member`
17911
17942
created_at:
17912
17943
type: integer
17944
+ format: int64
17913
17945
api_key:
17914
17946
$ref: '#/components/schemas/ProjectServiceAccountApiKey'
17915
17947
required:
@@ -22313,6 +22345,7 @@ components:
22313
22345
added_at:
22314
22346
type: integer
22315
22347
description: The Unix timestamp (in seconds) of when the user was added.
22348
+ format: int64
22316
22349
required:
22317
22350
- object
22318
22351
- id
0 commit comments