@@ -499,7 +499,6 @@ export type Mutation = {
499
499
updateEmployeeEmail ?: Maybe < EmployeeEmail > ;
500
500
updateEmployeeEmails ?: Maybe < Array < Maybe < EmployeeEmail > > > ;
501
501
updateInvitation ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
502
- updateOptscaleCapability ?: Maybe < OptscaleCapability > ;
503
502
updateOrganization ?: Maybe < Organization > ;
504
503
updateOrganizationPerspectives ?: Maybe < Scalars [ 'JSONObject' ] [ 'output' ] > ;
505
504
updateOrganizationThemeSettings ?: Maybe < Scalars [ 'JSONObject' ] [ 'output' ] > ;
@@ -551,12 +550,6 @@ export type MutationUpdateInvitationArgs = {
551
550
} ;
552
551
553
552
554
- export type MutationUpdateOptscaleCapabilityArgs = {
555
- organizationId : Scalars [ 'ID' ] [ 'input' ] ;
556
- value ?: InputMaybe < OptscaleCapabilityParams > ;
557
- } ;
558
-
559
-
560
553
export type MutationUpdateOrganizationArgs = {
561
554
organizationId : Scalars [ 'ID' ] [ 'input' ] ;
562
555
params : UpdateOrganizationInput ;
@@ -612,17 +605,6 @@ export type NebiusDataSource = DataSourceInterface & {
612
605
type : DataSourceType ;
613
606
} ;
614
607
615
- export type OptscaleCapability = {
616
- __typename ?: 'OptscaleCapability' ;
617
- finops ?: Maybe < Scalars [ 'Boolean' ] [ 'output' ] > ;
618
- mlops ?: Maybe < Scalars [ 'Boolean' ] [ 'output' ] > ;
619
- } ;
620
-
621
- export type OptscaleCapabilityParams = {
622
- finops ?: InputMaybe < Scalars [ 'Boolean' ] [ 'input' ] > ;
623
- mlops ?: InputMaybe < Scalars [ 'Boolean' ] [ 'input' ] > ;
624
- } ;
625
-
626
608
export type Organization = {
627
609
__typename ?: 'Organization' ;
628
610
currency : Scalars [ 'String' ] [ 'output' ] ;
@@ -677,7 +659,6 @@ export type Query = {
677
659
employeeEmails ?: Maybe < Array < Maybe < EmployeeEmail > > > ;
678
660
expensesDailyBreakdown ?: Maybe < ExpensesDailyBreakdown > ;
679
661
invitations ?: Maybe < Array < Maybe < Invitation > > > ;
680
- optscaleCapability ?: Maybe < OptscaleCapability > ;
681
662
organizationConstraint ?: Maybe < OrganizationConstraint > ;
682
663
organizationFeatures ?: Maybe < Scalars [ 'JSONObject' ] [ 'output' ] > ;
683
664
organizationLimitHits ?: Maybe < Array < OrganizationLimitHit > > ;
@@ -722,11 +703,6 @@ export type QueryExpensesDailyBreakdownArgs = {
722
703
} ;
723
704
724
705
725
- export type QueryOptscaleCapabilityArgs = {
726
- organizationId : Scalars [ 'ID' ] [ 'input' ] ;
727
- } ;
728
-
729
-
730
706
export type QueryOrganizationConstraintArgs = {
731
707
constraintId : Scalars [ 'ID' ] [ 'input' ] ;
732
708
} ;
@@ -940,8 +916,6 @@ export type ResolversTypes = {
940
916
NebiusConfig : ResolverTypeWrapper < NebiusConfig > ;
941
917
NebiusConfigInput : NebiusConfigInput ;
942
918
NebiusDataSource : ResolverTypeWrapper < NebiusDataSource > ;
943
- OptscaleCapability : ResolverTypeWrapper < OptscaleCapability > ;
944
- OptscaleCapabilityParams : OptscaleCapabilityParams ;
945
919
Organization : ResolverTypeWrapper < Organization > ;
946
920
OrganizationConstraint : ResolverTypeWrapper < OrganizationConstraint > ;
947
921
OrganizationConstraintType : OrganizationConstraintType ;
@@ -1009,8 +983,6 @@ export type ResolversParentTypes = {
1009
983
NebiusConfig : NebiusConfig ;
1010
984
NebiusConfigInput : NebiusConfigInput ;
1011
985
NebiusDataSource : NebiusDataSource ;
1012
- OptscaleCapability : OptscaleCapability ;
1013
- OptscaleCapabilityParams : OptscaleCapabilityParams ;
1014
986
Organization : Organization ;
1015
987
OrganizationConstraint : OrganizationConstraint ;
1016
988
OrganizationLimitHit : OrganizationLimitHit ;
@@ -1349,7 +1321,6 @@ export type MutationResolvers<ContextType = any, ParentType extends ResolversPar
1349
1321
updateEmployeeEmail ?: Resolver < Maybe < ResolversTypes [ 'EmployeeEmail' ] > , ParentType , ContextType , RequireFields < MutationUpdateEmployeeEmailArgs , 'employeeId' | 'params' > > ;
1350
1322
updateEmployeeEmails ?: Resolver < Maybe < Array < Maybe < ResolversTypes [ 'EmployeeEmail' ] > > > , ParentType , ContextType , RequireFields < MutationUpdateEmployeeEmailsArgs , 'employeeId' | 'params' > > ;
1351
1323
updateInvitation ?: Resolver < Maybe < ResolversTypes [ 'String' ] > , ParentType , ContextType , RequireFields < MutationUpdateInvitationArgs , 'action' | 'invitationId' > > ;
1352
- updateOptscaleCapability ?: Resolver < Maybe < ResolversTypes [ 'OptscaleCapability' ] > , ParentType , ContextType , RequireFields < MutationUpdateOptscaleCapabilityArgs , 'organizationId' > > ;
1353
1324
updateOrganization ?: Resolver < Maybe < ResolversTypes [ 'Organization' ] > , ParentType , ContextType , RequireFields < MutationUpdateOrganizationArgs , 'organizationId' | 'params' > > ;
1354
1325
updateOrganizationPerspectives ?: Resolver < Maybe < ResolversTypes [ 'JSONObject' ] > , ParentType , ContextType , RequireFields < MutationUpdateOrganizationPerspectivesArgs , 'organizationId' | 'value' > > ;
1355
1326
updateOrganizationThemeSettings ?: Resolver < Maybe < ResolversTypes [ 'JSONObject' ] > , ParentType , ContextType , RequireFields < MutationUpdateOrganizationThemeSettingsArgs , 'organizationId' | 'value' > > ;
@@ -1382,12 +1353,6 @@ export type NebiusDataSourceResolvers<ContextType = any, ParentType extends Reso
1382
1353
__isTypeOf ?: IsTypeOfResolverFn < ParentType , ContextType > ;
1383
1354
} ;
1384
1355
1385
- export type OptscaleCapabilityResolvers < ContextType = any , ParentType extends ResolversParentTypes [ 'OptscaleCapability' ] = ResolversParentTypes [ 'OptscaleCapability' ] > = {
1386
- finops ?: Resolver < Maybe < ResolversTypes [ 'Boolean' ] > , ParentType , ContextType > ;
1387
- mlops ?: Resolver < Maybe < ResolversTypes [ 'Boolean' ] > , ParentType , ContextType > ;
1388
- __isTypeOf ?: IsTypeOfResolverFn < ParentType , ContextType > ;
1389
- } ;
1390
-
1391
1356
export type OrganizationResolvers < ContextType = any , ParentType extends ResolversParentTypes [ 'Organization' ] = ResolversParentTypes [ 'Organization' ] > = {
1392
1357
currency ?: Resolver < ResolversTypes [ 'String' ] , ParentType , ContextType > ;
1393
1358
disabled ?: Resolver < ResolversTypes [ 'Boolean' ] , ParentType , ContextType > ;
@@ -1432,7 +1397,6 @@ export type QueryResolvers<ContextType = any, ParentType extends ResolversParent
1432
1397
employeeEmails ?: Resolver < Maybe < Array < Maybe < ResolversTypes [ 'EmployeeEmail' ] > > > , ParentType , ContextType , RequireFields < QueryEmployeeEmailsArgs , 'employeeId' > > ;
1433
1398
expensesDailyBreakdown ?: Resolver < Maybe < ResolversTypes [ 'ExpensesDailyBreakdown' ] > , ParentType , ContextType , RequireFields < QueryExpensesDailyBreakdownArgs , 'organizationId' > > ;
1434
1399
invitations ?: Resolver < Maybe < Array < Maybe < ResolversTypes [ 'Invitation' ] > > > , ParentType , ContextType > ;
1435
- optscaleCapability ?: Resolver < Maybe < ResolversTypes [ 'OptscaleCapability' ] > , ParentType , ContextType , RequireFields < QueryOptscaleCapabilityArgs , 'organizationId' > > ;
1436
1400
organizationConstraint ?: Resolver < Maybe < ResolversTypes [ 'OrganizationConstraint' ] > , ParentType , ContextType , RequireFields < QueryOrganizationConstraintArgs , 'constraintId' > > ;
1437
1401
organizationFeatures ?: Resolver < Maybe < ResolversTypes [ 'JSONObject' ] > , ParentType , ContextType , RequireFields < QueryOrganizationFeaturesArgs , 'organizationId' > > ;
1438
1402
organizationLimitHits ?: Resolver < Maybe < Array < ResolversTypes [ 'OrganizationLimitHit' ] > > , ParentType , ContextType , RequireFields < QueryOrganizationLimitHitsArgs , 'constraintId' | 'organizationId' > > ;
@@ -1488,7 +1452,6 @@ export type Resolvers<ContextType = any> = {
1488
1452
Mutation ?: MutationResolvers < ContextType > ;
1489
1453
NebiusConfig ?: NebiusConfigResolvers < ContextType > ;
1490
1454
NebiusDataSource ?: NebiusDataSourceResolvers < ContextType > ;
1491
- OptscaleCapability ?: OptscaleCapabilityResolvers < ContextType > ;
1492
1455
Organization ?: OrganizationResolvers < ContextType > ;
1493
1456
OrganizationConstraint ?: OrganizationConstraintResolvers < ContextType > ;
1494
1457
OrganizationLimitHit ?: OrganizationLimitHitResolvers < ContextType > ;
0 commit comments