@@ -308,7 +308,7 @@ func handleProjectsCreate(ctx context.Context, cmd *cli.Command) error {
308308 }
309309 }
310310
311- params := stainlessv0 .ProjectNewParams {}
311+ params := stainless .ProjectNewParams {}
312312 res , err := cc .client .Projects .New (
313313 context .TODO (),
314314 params ,
@@ -349,9 +349,9 @@ func handleProjectsCreate(ctx context.Context, cmd *cli.Command) error {
349349
350350func handleProjectsRetrieve (ctx context.Context , cmd * cli.Command ) error {
351351 cc := getAPICommandContext (cmd )
352- params := stainlessv0 .ProjectGetParams {}
352+ params := stainless .ProjectGetParams {}
353353 if cmd .IsSet ("project" ) {
354- params .Project = stainlessv0 .String (cmd .Value ("project" ).(string ))
354+ params .Project = stainless .String (cmd .Value ("project" ).(string ))
355355 }
356356 res , err := cc .client .Projects .Get (
357357 context .TODO (),
@@ -368,9 +368,9 @@ func handleProjectsRetrieve(ctx context.Context, cmd *cli.Command) error {
368368
369369func handleProjectsUpdate (ctx context.Context , cmd * cli.Command ) error {
370370 cc := getAPICommandContext (cmd )
371- params := stainlessv0 .ProjectUpdateParams {}
371+ params := stainless .ProjectUpdateParams {}
372372 if cmd .IsSet ("project" ) {
373- params .Project = stainlessv0 .String (cmd .Value ("project" ).(string ))
373+ params .Project = stainless .String (cmd .Value ("project" ).(string ))
374374 }
375375 res , err := cc .client .Projects .Update (
376376 context .TODO (),
@@ -387,7 +387,7 @@ func handleProjectsUpdate(ctx context.Context, cmd *cli.Command) error {
387387
388388func handleProjectsList (ctx context.Context , cmd * cli.Command ) error {
389389 cc := getAPICommandContext (cmd )
390- params := stainlessv0 .ProjectListParams {}
390+ params := stainless .ProjectListParams {}
391391 res , err := cc .client .Projects .List (
392392 context .TODO (),
393393 params ,
0 commit comments