@@ -491,7 +491,7 @@ export class Devboxes extends APIResource {
491491
492492 /**
493493 * Polls the asynchronous execution's status until it reaches one of the desired
494- * statuses or times out. Defaults to 60 seconds.
494+ * statuses or times out. Max is 25 seconds.
495495 */
496496 waitForCommand (
497497 devboxId : string ,
@@ -814,7 +814,7 @@ export interface DevboxView {
814814 /**
815815 * The type of initiator that created the Devbox.
816816 */
817- initiator_type ?: 'unknown' | 'api' | 'scenario' ;
817+ initiator_type ?: 'unknown' | 'api' | 'scenario' | 'scoring_validation' ;
818818
819819 /**
820820 * The name of the Devbox.
@@ -960,6 +960,12 @@ export interface DevboxCreateParams {
960960 */
961961 name ?: string | null ;
962962
963+ /**
964+ * (Optional) ID of the network policy to apply to this Devbox. If not specified,
965+ * the default network policy will be used.
966+ */
967+ network_policy_id ?: string | null ;
968+
963969 /**
964970 * Repository connection id the devbox should source its base image from.
965971 */
@@ -1048,8 +1054,8 @@ export interface DevboxExecuteParams {
10481054 last_n ?: string ;
10491055
10501056 /**
1051- * Body param: Timeout in seconds to wait for command completion. Operation is not
1052- * killed. Max is 600 seconds .
1057+ * Body param: Timeout in seconds to wait for command completion, up to 25 seconds.
1058+ * Defaults to 25 seconds. Operation is not killed .
10531059 */
10541060 optimistic_timeout ?: number | null ;
10551061
@@ -1204,8 +1210,8 @@ export interface DevboxWaitForCommandParams {
12041210 last_n ?: string ;
12051211
12061212 /**
1207- * Body param: (Optional) Timeout in seconds to wait for the status, up to 60
1208- * seconds. Defaults to 60 seconds.
1213+ * Body param: (Optional) Timeout in seconds to wait for the status, up to 25
1214+ * seconds. Defaults to 25 seconds.
12091215 */
12101216 timeout_seconds ?: number | null ;
12111217}
0 commit comments