mcp-aiven 1.7.1 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -7641,11 +7641,6 @@ export interface components {
|
|
|
7641
7641
|
/** @description Printable result of the request */
|
|
7642
7642
|
message?: string;
|
|
7643
7643
|
};
|
|
7644
|
-
/** @description AccountTeamMembersInviteRequestBody */
|
|
7645
|
-
AccountTeamMembersInviteRequestBody: {
|
|
7646
|
-
/** @description User email address */
|
|
7647
|
-
email: string;
|
|
7648
|
-
};
|
|
7649
7644
|
/** @description AccountTeamMembersInviteResponse */
|
|
7650
7645
|
AccountTeamMembersInviteResponse: {
|
|
7651
7646
|
/** @description List of errors occurred during request processing */
|
|
@@ -24216,6 +24211,11 @@ export interface components {
|
|
|
24216
24211
|
limit: number;
|
|
24217
24212
|
/** @description Opaque offset identifier */
|
|
24218
24213
|
offset?: string;
|
|
24214
|
+
/**
|
|
24215
|
+
* @description Filter to entries with severity at least as severe as this value
|
|
24216
|
+
* @enum {string}
|
|
24217
|
+
*/
|
|
24218
|
+
severity?: "emerg" | "alert" | "crit" | "err" | "warning" | "notice" | "info" | "debug";
|
|
24219
24219
|
/**
|
|
24220
24220
|
* @description Sort order for log messages
|
|
24221
24221
|
* @default desc
|
|
@@ -24240,6 +24240,8 @@ export interface components {
|
|
|
24240
24240
|
logs: {
|
|
24241
24241
|
/** @description Log message */
|
|
24242
24242
|
msg: string;
|
|
24243
|
+
/** @description Log severity level */
|
|
24244
|
+
severity?: string;
|
|
24243
24245
|
/** @description Timestamp in ISO 8601 format, always in UTC */
|
|
24244
24246
|
time?: string;
|
|
24245
24247
|
/** @description SystemD unit name */
|
|
@@ -24707,6 +24709,8 @@ export interface components {
|
|
|
24707
24709
|
maintenance?: {
|
|
24708
24710
|
/** @description Controlled switchover status */
|
|
24709
24711
|
controlled_switchover?: {
|
|
24712
|
+
/** @description Time when the switchover completed, if it has completed */
|
|
24713
|
+
completed_at?: string;
|
|
24710
24714
|
/** @description Controlled switchover configured and enabled */
|
|
24711
24715
|
enabled: boolean;
|
|
24712
24716
|
/** @description Scheduled start time of the switchover window, if enabled and active */
|
|
@@ -24715,7 +24719,9 @@ export interface components {
|
|
|
24715
24719
|
* @description Controlled switchover state
|
|
24716
24720
|
* @enum {string}
|
|
24717
24721
|
*/
|
|
24718
|
-
state: "INACTIVE" | "PENDING" | "SCHEDULED" | "RUNNING" | "COMPLETED";
|
|
24722
|
+
state: "INACTIVE" | "PENDING" | "SCHEDULED" | "RUNNING" | "COMPLETED" | "COMPLETED_EARLY";
|
|
24723
|
+
/** @description Reason for switchover termination */
|
|
24724
|
+
termination_reason?: string;
|
|
24719
24725
|
};
|
|
24720
24726
|
/**
|
|
24721
24727
|
* @description Day of week for installing updates
|
|
@@ -24772,12 +24778,12 @@ export interface components {
|
|
|
24772
24778
|
* @description Key identifying this phase
|
|
24773
24779
|
* @enum {string}
|
|
24774
24780
|
*/
|
|
24775
|
-
phase: "prepare" | "basebackup" | "stream" | "finalize";
|
|
24781
|
+
phase: "prepare" | "basebackup" | "basebackup_prepare" | "stream" | "finalize";
|
|
24776
24782
|
/**
|
|
24777
24783
|
* @description Unit for current/min/max values. New units may be added. If null should be treated as generic unit
|
|
24778
24784
|
* @enum {string}
|
|
24779
24785
|
*/
|
|
24780
|
-
unit?: "binlogs" | "bytes_compressed" | "bytes_uncompressed" | "wal_lsn";
|
|
24786
|
+
unit?: "binlogs" | "bytes_compressed" | "bytes_uncompressed" | "prepare_percent" | "wal_lsn";
|
|
24781
24787
|
}[];
|
|
24782
24788
|
/**
|
|
24783
24789
|
* @description Role of this node. Only returned for a subset of service types
|
|
@@ -25292,6 +25298,8 @@ export interface components {
|
|
|
25292
25298
|
maintenance?: {
|
|
25293
25299
|
/** @description Controlled switchover status */
|
|
25294
25300
|
controlled_switchover?: {
|
|
25301
|
+
/** @description Time when the switchover completed, if it has completed */
|
|
25302
|
+
completed_at?: string;
|
|
25295
25303
|
/** @description Controlled switchover configured and enabled */
|
|
25296
25304
|
enabled: boolean;
|
|
25297
25305
|
/** @description Scheduled start time of the switchover window, if enabled and active */
|
|
@@ -25300,7 +25308,9 @@ export interface components {
|
|
|
25300
25308
|
* @description Controlled switchover state
|
|
25301
25309
|
* @enum {string}
|
|
25302
25310
|
*/
|
|
25303
|
-
state: "INACTIVE" | "PENDING" | "SCHEDULED" | "RUNNING" | "COMPLETED";
|
|
25311
|
+
state: "INACTIVE" | "PENDING" | "SCHEDULED" | "RUNNING" | "COMPLETED" | "COMPLETED_EARLY";
|
|
25312
|
+
/** @description Reason for switchover termination */
|
|
25313
|
+
termination_reason?: string;
|
|
25304
25314
|
};
|
|
25305
25315
|
/**
|
|
25306
25316
|
* @description Day of week for installing updates
|
|
@@ -25357,12 +25367,12 @@ export interface components {
|
|
|
25357
25367
|
* @description Key identifying this phase
|
|
25358
25368
|
* @enum {string}
|
|
25359
25369
|
*/
|
|
25360
|
-
phase: "prepare" | "basebackup" | "stream" | "finalize";
|
|
25370
|
+
phase: "prepare" | "basebackup" | "basebackup_prepare" | "stream" | "finalize";
|
|
25361
25371
|
/**
|
|
25362
25372
|
* @description Unit for current/min/max values. New units may be added. If null should be treated as generic unit
|
|
25363
25373
|
* @enum {string}
|
|
25364
25374
|
*/
|
|
25365
|
-
unit?: "binlogs" | "bytes_compressed" | "bytes_uncompressed" | "wal_lsn";
|
|
25375
|
+
unit?: "binlogs" | "bytes_compressed" | "bytes_uncompressed" | "prepare_percent" | "wal_lsn";
|
|
25366
25376
|
}[];
|
|
25367
25377
|
/**
|
|
25368
25378
|
* @description Role of this node. Only returned for a subset of service types
|
|
@@ -25843,6 +25853,8 @@ export interface components {
|
|
|
25843
25853
|
maintenance?: {
|
|
25844
25854
|
/** @description Controlled switchover status */
|
|
25845
25855
|
controlled_switchover?: {
|
|
25856
|
+
/** @description Time when the switchover completed, if it has completed */
|
|
25857
|
+
completed_at?: string;
|
|
25846
25858
|
/** @description Controlled switchover configured and enabled */
|
|
25847
25859
|
enabled: boolean;
|
|
25848
25860
|
/** @description Scheduled start time of the switchover window, if enabled and active */
|
|
@@ -25851,7 +25863,9 @@ export interface components {
|
|
|
25851
25863
|
* @description Controlled switchover state
|
|
25852
25864
|
* @enum {string}
|
|
25853
25865
|
*/
|
|
25854
|
-
state: "INACTIVE" | "PENDING" | "SCHEDULED" | "RUNNING" | "COMPLETED";
|
|
25866
|
+
state: "INACTIVE" | "PENDING" | "SCHEDULED" | "RUNNING" | "COMPLETED" | "COMPLETED_EARLY";
|
|
25867
|
+
/** @description Reason for switchover termination */
|
|
25868
|
+
termination_reason?: string;
|
|
25855
25869
|
};
|
|
25856
25870
|
/**
|
|
25857
25871
|
* @description Day of week for installing updates
|
|
@@ -25908,12 +25922,12 @@ export interface components {
|
|
|
25908
25922
|
* @description Key identifying this phase
|
|
25909
25923
|
* @enum {string}
|
|
25910
25924
|
*/
|
|
25911
|
-
phase: "prepare" | "basebackup" | "stream" | "finalize";
|
|
25925
|
+
phase: "prepare" | "basebackup" | "basebackup_prepare" | "stream" | "finalize";
|
|
25912
25926
|
/**
|
|
25913
25927
|
* @description Unit for current/min/max values. New units may be added. If null should be treated as generic unit
|
|
25914
25928
|
* @enum {string}
|
|
25915
25929
|
*/
|
|
25916
|
-
unit?: "binlogs" | "bytes_compressed" | "bytes_uncompressed" | "wal_lsn";
|
|
25930
|
+
unit?: "binlogs" | "bytes_compressed" | "bytes_uncompressed" | "prepare_percent" | "wal_lsn";
|
|
25917
25931
|
}[];
|
|
25918
25932
|
/**
|
|
25919
25933
|
* @description Role of this node. Only returned for a subset of service types
|
|
@@ -26886,6 +26900,8 @@ export interface components {
|
|
|
26886
26900
|
maintenance?: {
|
|
26887
26901
|
/** @description Controlled switchover status */
|
|
26888
26902
|
controlled_switchover?: {
|
|
26903
|
+
/** @description Time when the switchover completed, if it has completed */
|
|
26904
|
+
completed_at?: string;
|
|
26889
26905
|
/** @description Controlled switchover configured and enabled */
|
|
26890
26906
|
enabled: boolean;
|
|
26891
26907
|
/** @description Scheduled start time of the switchover window, if enabled and active */
|
|
@@ -26894,7 +26910,9 @@ export interface components {
|
|
|
26894
26910
|
* @description Controlled switchover state
|
|
26895
26911
|
* @enum {string}
|
|
26896
26912
|
*/
|
|
26897
|
-
state: "INACTIVE" | "PENDING" | "SCHEDULED" | "RUNNING" | "COMPLETED";
|
|
26913
|
+
state: "INACTIVE" | "PENDING" | "SCHEDULED" | "RUNNING" | "COMPLETED" | "COMPLETED_EARLY";
|
|
26914
|
+
/** @description Reason for switchover termination */
|
|
26915
|
+
termination_reason?: string;
|
|
26898
26916
|
};
|
|
26899
26917
|
/**
|
|
26900
26918
|
* @description Day of week for installing updates
|
|
@@ -26951,12 +26969,12 @@ export interface components {
|
|
|
26951
26969
|
* @description Key identifying this phase
|
|
26952
26970
|
* @enum {string}
|
|
26953
26971
|
*/
|
|
26954
|
-
phase: "prepare" | "basebackup" | "stream" | "finalize";
|
|
26972
|
+
phase: "prepare" | "basebackup" | "basebackup_prepare" | "stream" | "finalize";
|
|
26955
26973
|
/**
|
|
26956
26974
|
* @description Unit for current/min/max values. New units may be added. If null should be treated as generic unit
|
|
26957
26975
|
* @enum {string}
|
|
26958
26976
|
*/
|
|
26959
|
-
unit?: "binlogs" | "bytes_compressed" | "bytes_uncompressed" | "wal_lsn";
|
|
26977
|
+
unit?: "binlogs" | "bytes_compressed" | "bytes_uncompressed" | "prepare_percent" | "wal_lsn";
|
|
26960
26978
|
}[];
|
|
26961
26979
|
/**
|
|
26962
26980
|
* @description Role of this node. Only returned for a subset of service types
|
|
@@ -27546,6 +27564,8 @@ export interface components {
|
|
|
27546
27564
|
maintenance?: {
|
|
27547
27565
|
/** @description Controlled switchover status */
|
|
27548
27566
|
controlled_switchover?: {
|
|
27567
|
+
/** @description Time when the switchover completed, if it has completed */
|
|
27568
|
+
completed_at?: string;
|
|
27549
27569
|
/** @description Controlled switchover configured and enabled */
|
|
27550
27570
|
enabled: boolean;
|
|
27551
27571
|
/** @description Scheduled start time of the switchover window, if enabled and active */
|
|
@@ -27554,7 +27574,9 @@ export interface components {
|
|
|
27554
27574
|
* @description Controlled switchover state
|
|
27555
27575
|
* @enum {string}
|
|
27556
27576
|
*/
|
|
27557
|
-
state: "INACTIVE" | "PENDING" | "SCHEDULED" | "RUNNING" | "COMPLETED";
|
|
27577
|
+
state: "INACTIVE" | "PENDING" | "SCHEDULED" | "RUNNING" | "COMPLETED" | "COMPLETED_EARLY";
|
|
27578
|
+
/** @description Reason for switchover termination */
|
|
27579
|
+
termination_reason?: string;
|
|
27558
27580
|
};
|
|
27559
27581
|
/**
|
|
27560
27582
|
* @description Day of week for installing updates
|
|
@@ -27611,12 +27633,12 @@ export interface components {
|
|
|
27611
27633
|
* @description Key identifying this phase
|
|
27612
27634
|
* @enum {string}
|
|
27613
27635
|
*/
|
|
27614
|
-
phase: "prepare" | "basebackup" | "stream" | "finalize";
|
|
27636
|
+
phase: "prepare" | "basebackup" | "basebackup_prepare" | "stream" | "finalize";
|
|
27615
27637
|
/**
|
|
27616
27638
|
* @description Unit for current/min/max values. New units may be added. If null should be treated as generic unit
|
|
27617
27639
|
* @enum {string}
|
|
27618
27640
|
*/
|
|
27619
|
-
unit?: "binlogs" | "bytes_compressed" | "bytes_uncompressed" | "wal_lsn";
|
|
27641
|
+
unit?: "binlogs" | "bytes_compressed" | "bytes_uncompressed" | "prepare_percent" | "wal_lsn";
|
|
27620
27642
|
}[];
|
|
27621
27643
|
/**
|
|
27622
27644
|
* @description Role of this node. Only returned for a subset of service types
|
|
@@ -28216,6 +28238,8 @@ export interface components {
|
|
|
28216
28238
|
maintenance?: {
|
|
28217
28239
|
/** @description Controlled switchover status */
|
|
28218
28240
|
controlled_switchover?: {
|
|
28241
|
+
/** @description Time when the switchover completed, if it has completed */
|
|
28242
|
+
completed_at?: string;
|
|
28219
28243
|
/** @description Controlled switchover configured and enabled */
|
|
28220
28244
|
enabled: boolean;
|
|
28221
28245
|
/** @description Scheduled start time of the switchover window, if enabled and active */
|
|
@@ -28224,7 +28248,9 @@ export interface components {
|
|
|
28224
28248
|
* @description Controlled switchover state
|
|
28225
28249
|
* @enum {string}
|
|
28226
28250
|
*/
|
|
28227
|
-
state: "INACTIVE" | "PENDING" | "SCHEDULED" | "RUNNING" | "COMPLETED";
|
|
28251
|
+
state: "INACTIVE" | "PENDING" | "SCHEDULED" | "RUNNING" | "COMPLETED" | "COMPLETED_EARLY";
|
|
28252
|
+
/** @description Reason for switchover termination */
|
|
28253
|
+
termination_reason?: string;
|
|
28228
28254
|
};
|
|
28229
28255
|
/**
|
|
28230
28256
|
* @description Day of week for installing updates
|
|
@@ -28281,12 +28307,12 @@ export interface components {
|
|
|
28281
28307
|
* @description Key identifying this phase
|
|
28282
28308
|
* @enum {string}
|
|
28283
28309
|
*/
|
|
28284
|
-
phase: "prepare" | "basebackup" | "stream" | "finalize";
|
|
28310
|
+
phase: "prepare" | "basebackup" | "basebackup_prepare" | "stream" | "finalize";
|
|
28285
28311
|
/**
|
|
28286
28312
|
* @description Unit for current/min/max values. New units may be added. If null should be treated as generic unit
|
|
28287
28313
|
* @enum {string}
|
|
28288
28314
|
*/
|
|
28289
|
-
unit?: "binlogs" | "bytes_compressed" | "bytes_uncompressed" | "wal_lsn";
|
|
28315
|
+
unit?: "binlogs" | "bytes_compressed" | "bytes_uncompressed" | "prepare_percent" | "wal_lsn";
|
|
28290
28316
|
}[];
|
|
28291
28317
|
/**
|
|
28292
28318
|
* @description Role of this node. Only returned for a subset of service types
|
|
@@ -28709,6 +28735,8 @@ export interface components {
|
|
|
28709
28735
|
maintenance?: {
|
|
28710
28736
|
/** @description Controlled switchover status */
|
|
28711
28737
|
controlled_switchover?: {
|
|
28738
|
+
/** @description Time when the switchover completed, if it has completed */
|
|
28739
|
+
completed_at?: string;
|
|
28712
28740
|
/** @description Controlled switchover configured and enabled */
|
|
28713
28741
|
enabled: boolean;
|
|
28714
28742
|
/** @description Scheduled start time of the switchover window, if enabled and active */
|
|
@@ -28717,7 +28745,9 @@ export interface components {
|
|
|
28717
28745
|
* @description Controlled switchover state
|
|
28718
28746
|
* @enum {string}
|
|
28719
28747
|
*/
|
|
28720
|
-
state: "INACTIVE" | "PENDING" | "SCHEDULED" | "RUNNING" | "COMPLETED";
|
|
28748
|
+
state: "INACTIVE" | "PENDING" | "SCHEDULED" | "RUNNING" | "COMPLETED" | "COMPLETED_EARLY";
|
|
28749
|
+
/** @description Reason for switchover termination */
|
|
28750
|
+
termination_reason?: string;
|
|
28721
28751
|
};
|
|
28722
28752
|
/**
|
|
28723
28753
|
* @description Day of week for installing updates
|
|
@@ -28774,12 +28804,12 @@ export interface components {
|
|
|
28774
28804
|
* @description Key identifying this phase
|
|
28775
28805
|
* @enum {string}
|
|
28776
28806
|
*/
|
|
28777
|
-
phase: "prepare" | "basebackup" | "stream" | "finalize";
|
|
28807
|
+
phase: "prepare" | "basebackup" | "basebackup_prepare" | "stream" | "finalize";
|
|
28778
28808
|
/**
|
|
28779
28809
|
* @description Unit for current/min/max values. New units may be added. If null should be treated as generic unit
|
|
28780
28810
|
* @enum {string}
|
|
28781
28811
|
*/
|
|
28782
|
-
unit?: "binlogs" | "bytes_compressed" | "bytes_uncompressed" | "wal_lsn";
|
|
28812
|
+
unit?: "binlogs" | "bytes_compressed" | "bytes_uncompressed" | "prepare_percent" | "wal_lsn";
|
|
28783
28813
|
}[];
|
|
28784
28814
|
/**
|
|
28785
28815
|
* @description Role of this node. Only returned for a subset of service types
|
|
@@ -30744,13 +30774,6 @@ export interface components {
|
|
|
30744
30774
|
/** @description New API session authentication token when configuration is complete */
|
|
30745
30775
|
token: string;
|
|
30746
30776
|
};
|
|
30747
|
-
/** @description UserAccountInvitesAcceptRequestBody */
|
|
30748
|
-
UserAccountInvitesAcceptRequestBody: {
|
|
30749
|
-
/** @description Account ID */
|
|
30750
|
-
account_id: string;
|
|
30751
|
-
/** @description Team ID */
|
|
30752
|
-
team_id?: string;
|
|
30753
|
-
};
|
|
30754
30777
|
/** @description UserAccountInvitesAcceptResponse */
|
|
30755
30778
|
UserAccountInvitesAcceptResponse: {
|
|
30756
30779
|
/** @description List of invites */
|
|
@@ -30813,13 +30836,6 @@ export interface components {
|
|
|
30813
30836
|
/** @description Printable result of the request */
|
|
30814
30837
|
message?: string;
|
|
30815
30838
|
};
|
|
30816
|
-
/** @description UserAccountInvitesRejectRequestBody */
|
|
30817
|
-
UserAccountInvitesRejectRequestBody: {
|
|
30818
|
-
/** @description Account ID */
|
|
30819
|
-
account_id: string;
|
|
30820
|
-
/** @description Team ID */
|
|
30821
|
-
team_id: string;
|
|
30822
|
-
};
|
|
30823
30839
|
/** @description UserAccountInvitesRejectResponse */
|
|
30824
30840
|
UserAccountInvitesRejectResponse: {
|
|
30825
30841
|
/** @description List of invites */
|
|
@@ -31462,6 +31478,14 @@ export interface components {
|
|
|
31462
31478
|
upgradepipelinesteplist_cursor: string;
|
|
31463
31479
|
/** @description Limit results to this number */
|
|
31464
31480
|
upgradepipelinesteplist_limit: number;
|
|
31481
|
+
/** @description Filter results by source project name */
|
|
31482
|
+
upgradepipelinesteplist_source_project_name: string;
|
|
31483
|
+
/** @description Filter results by source service name */
|
|
31484
|
+
upgradepipelinesteplist_source_service_name: string;
|
|
31485
|
+
/** @description Filter results by destination project name */
|
|
31486
|
+
upgradepipelinesteplist_destination_project_name: string;
|
|
31487
|
+
/** @description Filter results by destination service name */
|
|
31488
|
+
upgradepipelinesteplist_destination_service_name: string;
|
|
31465
31489
|
/** @description ID of the organization's user */
|
|
31466
31490
|
member_user_id: string;
|
|
31467
31491
|
/** @description Include application users in the response. Defaults to true. */
|
|
@@ -32406,16 +32430,7 @@ export interface operations {
|
|
|
32406
32430
|
};
|
|
32407
32431
|
cookie?: never;
|
|
32408
32432
|
};
|
|
32409
|
-
requestBody?:
|
|
32410
|
-
content: {
|
|
32411
|
-
/**
|
|
32412
|
-
* @example {
|
|
32413
|
-
* "email": "jane@example.com"
|
|
32414
|
-
* }
|
|
32415
|
-
*/
|
|
32416
|
-
"application/json": components["schemas"]["AccountTeamMembersInviteRequestBody"];
|
|
32417
|
-
};
|
|
32418
|
-
};
|
|
32433
|
+
requestBody?: never;
|
|
32419
32434
|
responses: {
|
|
32420
32435
|
/** @description Response */
|
|
32421
32436
|
200: {
|
|
@@ -47170,6 +47185,7 @@ export interface operations {
|
|
|
47170
47185
|
* @example {
|
|
47171
47186
|
* "limit": 100,
|
|
47172
47187
|
* "offset": "23425325",
|
|
47188
|
+
* "severity": "warning",
|
|
47173
47189
|
* "sort_order": "asc"
|
|
47174
47190
|
* }
|
|
47175
47191
|
*/
|
|
@@ -49287,6 +49303,14 @@ export interface operations {
|
|
|
49287
49303
|
cursor?: components["parameters"]["upgradepipelinesteplist_cursor"];
|
|
49288
49304
|
/** @description Limit results to this number */
|
|
49289
49305
|
limit?: components["parameters"]["upgradepipelinesteplist_limit"];
|
|
49306
|
+
/** @description Filter results by source project name */
|
|
49307
|
+
source_project_name?: components["parameters"]["upgradepipelinesteplist_source_project_name"];
|
|
49308
|
+
/** @description Filter results by source service name */
|
|
49309
|
+
source_service_name?: components["parameters"]["upgradepipelinesteplist_source_service_name"];
|
|
49310
|
+
/** @description Filter results by destination project name */
|
|
49311
|
+
destination_project_name?: components["parameters"]["upgradepipelinesteplist_destination_project_name"];
|
|
49312
|
+
/** @description Filter results by destination service name */
|
|
49313
|
+
destination_service_name?: components["parameters"]["upgradepipelinesteplist_destination_service_name"];
|
|
49290
49314
|
};
|
|
49291
49315
|
header?: never;
|
|
49292
49316
|
path: {
|
|
@@ -50304,17 +50328,7 @@ export interface operations {
|
|
|
50304
50328
|
path?: never;
|
|
50305
50329
|
cookie?: never;
|
|
50306
50330
|
};
|
|
50307
|
-
requestBody?:
|
|
50308
|
-
content: {
|
|
50309
|
-
/**
|
|
50310
|
-
* @example {
|
|
50311
|
-
* "account_id": "a22ba494e096",
|
|
50312
|
-
* "team_id": "at29872a9e"
|
|
50313
|
-
* }
|
|
50314
|
-
*/
|
|
50315
|
-
"application/json": components["schemas"]["UserAccountInvitesAcceptRequestBody"];
|
|
50316
|
-
};
|
|
50317
|
-
};
|
|
50331
|
+
requestBody?: never;
|
|
50318
50332
|
responses: {
|
|
50319
50333
|
/** @description Response */
|
|
50320
50334
|
200: {
|
|
@@ -50354,17 +50368,7 @@ export interface operations {
|
|
|
50354
50368
|
path?: never;
|
|
50355
50369
|
cookie?: never;
|
|
50356
50370
|
};
|
|
50357
|
-
requestBody?:
|
|
50358
|
-
content: {
|
|
50359
|
-
/**
|
|
50360
|
-
* @example {
|
|
50361
|
-
* "account_id": "a22ba494e096",
|
|
50362
|
-
* "team_id": "at982374klj"
|
|
50363
|
-
* }
|
|
50364
|
-
*/
|
|
50365
|
-
"application/json": components["schemas"]["UserAccountInvitesRejectRequestBody"];
|
|
50366
|
-
};
|
|
50367
|
-
};
|
|
50371
|
+
requestBody?: never;
|
|
50368
50372
|
responses: {
|
|
50369
50373
|
/** @description Response */
|
|
50370
50374
|
200: {
|