@forge/cli-shared 8.9.0-next.10 → 8.9.0-next.11

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.9.0-next.11
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [d00ef59]
8
+ - @forge/manifest@11.0.0-next.6
9
+
3
10
  ## 8.9.0-next.10
4
11
 
5
12
  ### Patch Changes
@@ -549,6 +549,7 @@ export declare type AvpDashboardTemplateInput = {
549
549
  fromTemplate: Scalars['String']['input'];
550
550
  integrationId?: InputMaybe<AvpIntegrationId>;
551
551
  productWorkspaceList?: InputMaybe<Array<AvpProductWorkspaceMapEntry>>;
552
+ templatePlaceholderReplacements?: InputMaybe<Array<AvpTemplatePlaceholderReplacement>>;
552
553
  templateVersion?: InputMaybe<Scalars['Int']['input']>;
553
554
  };
554
555
  export declare type AvpDatasourceLocator = {
@@ -769,6 +770,10 @@ export declare type AvpRemoveDashboardRowPayload = Payload & {
769
770
  errors?: Maybe<Array<MutationError>>;
770
771
  success: Scalars['Boolean']['output'];
771
772
  };
773
+ export declare type AvpTemplatePlaceholderReplacement = {
774
+ placeholderName: Scalars['String']['input'];
775
+ replacementValue: Scalars['String']['input'];
776
+ };
772
777
  export declare type AvpToggleCanvasElementExpandedInput = {
773
778
  dashboardAri: Scalars['ID']['input'];
774
779
  elementId: Scalars['ID']['input'];
@@ -1990,9 +1995,16 @@ export declare type AdminLicenseDataEdge = {
1990
1995
  cursor: Scalars['String']['output'];
1991
1996
  node: AdminLicenseData;
1992
1997
  };
1998
+ export declare type AdminLicenseGroupInput = {
1999
+ groupId: Scalars['String']['input'];
2000
+ resourceIds: Array<Scalars['String']['input']>;
2001
+ };
1993
2002
  export declare type AdminLicenseInput = {
1994
- groupIds?: InputMaybe<Array<Scalars['String']['input']>>;
1995
- resourceIds?: InputMaybe<Array<Scalars['String']['input']>>;
2003
+ groups?: InputMaybe<Array<AdminLicenseGroupInput>>;
2004
+ resources?: InputMaybe<Array<AdminLicenseResourceInput>>;
2005
+ };
2006
+ export declare type AdminLicenseResourceInput = {
2007
+ resourceId: Scalars['String']['input'];
1996
2008
  };
1997
2009
  export declare type AdminLimit = {
1998
2010
  __typename?: 'AdminLimit';
@@ -2785,10 +2797,12 @@ export declare type AgentStudioCreateScenarioPayload = Payload & {
2785
2797
  };
2786
2798
  export declare type AgentStudioDataset = {
2787
2799
  __typename?: 'AgentStudioDataset';
2800
+ count?: Maybe<Scalars['Int']['output']>;
2788
2801
  createdAt: Scalars['String']['output'];
2789
2802
  id: Scalars['ID']['output'];
2790
2803
  name: Scalars['String']['output'];
2791
2804
  projectId: Scalars['String']['output'];
2805
+ updatedAt: Scalars['String']['output'];
2792
2806
  };
2793
2807
  export declare type AgentStudioDatasetEdge = {
2794
2808
  __typename?: 'AgentStudioDatasetEdge';
@@ -2932,7 +2946,8 @@ export declare enum AgentStudioJobRunStatus {
2932
2946
  Completed = "COMPLETED",
2933
2947
  Failed = "FAILED",
2934
2948
  Pending = "PENDING",
2935
- Running = "RUNNING"
2949
+ Running = "RUNNING",
2950
+ Timeout = "TIMEOUT"
2936
2951
  }
2937
2952
  export declare type AgentStudioJsmKnowledgeFilter = {
2938
2953
  __typename?: 'AgentStudioJsmKnowledgeFilter';
@@ -3468,6 +3483,7 @@ export declare enum ApiContext {
3468
3483
  }
3469
3484
  export declare enum ApiGroup {
3470
3485
  Actions = "ACTIONS",
3486
+ AdminUnit = "ADMIN_UNIT",
3471
3487
  AgentStudio = "AGENT_STUDIO",
3472
3488
  AppRecommendations = "APP_RECOMMENDATIONS",
3473
3489
  AtlassianStudio = "ATLASSIAN_STUDIO",
@@ -22593,8 +22609,7 @@ export declare type CountUsersGroupByPageItem = {
22593
22609
  user: Scalars['Int']['output'];
22594
22610
  };
22595
22611
  export declare type CplsAddContributionInput = {
22596
- contributorDataId?: InputMaybe<Scalars['ID']['input']>;
22597
- contributorId?: InputMaybe<Scalars['ID']['input']>;
22612
+ contributorDataId: Scalars['ID']['input'];
22598
22613
  endDate: Scalars['Date']['input'];
22599
22614
  startDate: Scalars['Date']['input'];
22600
22615
  value: Scalars['Float']['input'];
@@ -22614,8 +22629,7 @@ export declare type CplsAddContributionsPayload = Payload & {
22614
22629
  };
22615
22630
  export declare type CplsAddContributorScopeAssociationInput = {
22616
22631
  cloudId: Scalars['ID']['input'];
22617
- contributorDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
22618
- contributorIds?: InputMaybe<Array<Scalars['ID']['input']>>;
22632
+ contributorDataIds: Array<Scalars['ID']['input']>;
22619
22633
  scopeId: Scalars['ID']['input'];
22620
22634
  };
22621
22635
  export declare type CplsAddContributorScopeAssociationPayload = Payload & {
@@ -22675,7 +22689,6 @@ export declare type CplsContributor = {
22675
22689
  contributionAggregations: Array<CplsContributionAggregation>;
22676
22690
  contributorData?: Maybe<CplsContributorData>;
22677
22691
  contributorDataId?: Maybe<Scalars['ID']['output']>;
22678
- contributorId: Scalars['ID']['output'];
22679
22692
  contributorWork: CplsContributorWorkConnection;
22680
22693
  id: Scalars['ID']['output'];
22681
22694
  worksByIds: Array<CplsContributorWorkEdge>;
@@ -22701,8 +22714,7 @@ export declare type CplsContributorEdge = {
22701
22714
  node: CplsContributor;
22702
22715
  };
22703
22716
  export declare type CplsContributorWorkAssociation = {
22704
- contributorDataId?: InputMaybe<Scalars['ID']['input']>;
22705
- contributorId?: InputMaybe<Scalars['ID']['input']>;
22717
+ contributorDataId: Scalars['ID']['input'];
22706
22718
  workId: Scalars['ID']['input'];
22707
22719
  };
22708
22720
  export declare type CplsContributorWorkConnection = HasPageInfo & {
@@ -22728,8 +22740,7 @@ export declare type CplsCreateCustomContributionTargetPayload = Payload & {
22728
22740
  };
22729
22741
  export declare type CplsCreateCustomContributionTargetWithWorkAssociationInput = {
22730
22742
  cloudId: Scalars['ID']['input'];
22731
- contributorDataId?: InputMaybe<Scalars['ID']['input']>;
22732
- contributorId?: InputMaybe<Scalars['ID']['input']>;
22743
+ contributorDataId: Scalars['ID']['input'];
22733
22744
  name: Scalars['String']['input'];
22734
22745
  };
22735
22746
  export declare type CplsCreateCustomContributionTargetWithWorkAssociationPayload = Payload & {
@@ -22755,8 +22766,7 @@ export declare type CplsCustomContributionTargetEdge = {
22755
22766
  };
22756
22767
  export declare type CplsDeleteContributorScopeAssociationInput = {
22757
22768
  cloudId: Scalars['ID']['input'];
22758
- contributorDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
22759
- contributorIds?: InputMaybe<Array<Scalars['ID']['input']>>;
22769
+ contributorDataIds: Array<Scalars['ID']['input']>;
22760
22770
  scopeId: Scalars['ID']['input'];
22761
22771
  };
22762
22772
  export declare type CplsDeleteContributorScopeAssociationPayload = Payload & {
@@ -26604,6 +26614,11 @@ export declare type DevAiRovoDevCreateSessionPayload = Payload & {
26604
26614
  session?: Maybe<DevAiRovoDevSession>;
26605
26615
  success: Scalars['Boolean']['output'];
26606
26616
  };
26617
+ export declare type DevAiRovoDevIssueViewResponse = {
26618
+ __typename?: 'DevAiRovoDevIssueViewResponse';
26619
+ checks?: Maybe<DevAiEntitlementCheckResultResponse>;
26620
+ sessions?: Maybe<DevAiRovoDevSessionConnection>;
26621
+ };
26607
26622
  export declare enum DevAiRovoDevPrStatus {
26608
26623
  Declined = "DECLINED",
26609
26624
  Draft = "DRAFT",
@@ -26855,13 +26870,13 @@ export declare type DevConsoleAppResourceUsageFiltersInput = {
26855
26870
  export declare type DevConsoleAppResourceUsageFlatResponse = {
26856
26871
  __typename?: 'DevConsoleAppResourceUsageFlatResponse';
26857
26872
  error?: Maybe<QueryError>;
26858
- pagination: DevConsolePagination;
26873
+ pagination?: Maybe<DevConsolePagination>;
26859
26874
  resourceUsage: Array<DevConsoleResourceUsage>;
26860
26875
  };
26861
26876
  export declare type DevConsoleAppResourceUsageGroupedResponse = {
26862
26877
  __typename?: 'DevConsoleAppResourceUsageGroupedResponse';
26863
26878
  error?: Maybe<QueryError>;
26864
- pagination: DevConsolePagination;
26879
+ pagination?: Maybe<DevConsolePagination>;
26865
26880
  resourceUsage: Array<DevConsoleResourceUsagePeriod>;
26866
26881
  };
26867
26882
  export declare type DevConsoleAppResourceUsageResponse = DevConsoleAppResourceUsageFlatResponse | DevConsoleAppResourceUsageGroupedResponse;
@@ -65028,7 +65043,7 @@ export declare enum JiraBoardType {
65028
65043
  Kanban = "KANBAN",
65029
65044
  Scrum = "SCRUM"
65030
65045
  }
65031
- export declare type JiraBoardView = {
65046
+ export declare type JiraBoardView = JiraView & Node & {
65032
65047
  __typename?: 'JiraBoardView';
65033
65048
  canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
65034
65049
  canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
@@ -65309,9 +65324,10 @@ export declare type JiraBulkCreateIssueLinksInput = {
65309
65324
  };
65310
65325
  export declare type JiraBulkCreateIssueLinksPayload = Payload & {
65311
65326
  __typename?: 'JiraBulkCreateIssueLinksPayload';
65327
+ destinationIssues?: Maybe<Array<JiraIssue>>;
65312
65328
  errors?: Maybe<Array<MutationError>>;
65313
65329
  issueLinkEdges?: Maybe<Array<JiraIssueLinkEdge>>;
65314
- issueLinkField?: Maybe<JiraIssueLinkField>;
65330
+ sourceIssue?: Maybe<JiraIssue>;
65315
65331
  success: Scalars['Boolean']['output'];
65316
65332
  };
65317
65333
  export declare type JiraBulkDeleteInput = {
@@ -67775,10 +67791,11 @@ export declare type JiraDeleteFormattingRulePayload = Payload & {
67775
67791
  export declare type JiraDeleteIssueLinkPayload = Payload & {
67776
67792
  __typename?: 'JiraDeleteIssueLinkPayload';
67777
67793
  deletedIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
67794
+ destinationIssue?: Maybe<JiraIssue>;
67778
67795
  errors?: Maybe<Array<MutationError>>;
67779
67796
  id?: Maybe<Scalars['ID']['output']>;
67780
- issueLinkField?: Maybe<JiraIssueLinkField>;
67781
67797
  issueLinkId?: Maybe<Scalars['ID']['output']>;
67798
+ sourceIssue?: Maybe<JiraIssue>;
67782
67799
  success: Scalars['Boolean']['output'];
67783
67800
  };
67784
67801
  export declare type JiraDeleteIssueSearchFormattingRuleInput = {
@@ -70244,6 +70261,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
70244
70261
  isResolved?: Maybe<Scalars['Boolean']['output']>;
70245
70262
  issueColorField?: Maybe<JiraColorField>;
70246
70263
  issueId: Scalars['String']['output'];
70264
+ issueLinkField?: Maybe<JiraIssueLinkField>;
70247
70265
  issueLinks?: Maybe<JiraIssueLinkConnection>;
70248
70266
  issuePropertyByKey?: Maybe<Scalars['JSON']['output']>;
70249
70267
  issueRestrictionField?: Maybe<JiraIssueRestrictionField>;
@@ -72069,6 +72087,7 @@ export declare type JiraIssueSearchStatus = {
72069
72087
  export declare type JiraIssueSearchTimelineViewConfigSettings = {
72070
72088
  __typename?: 'JiraIssueSearchTimelineViewConfigSettings';
72071
72089
  aggregationConfig?: Maybe<JiraIssueSearchAggregationConfigSettings>;
72090
+ hideWarnings?: Maybe<Scalars['Boolean']['output']>;
72072
72091
  };
72073
72092
  export declare type JiraIssueSearchView = JiraIssueSearchViewMetadata & Node & {
72074
72093
  __typename?: 'JiraIssueSearchView';
@@ -90097,6 +90116,11 @@ export declare type MarketplaceStoreGeoIpResponse = {
90097
90116
  __typename?: 'MarketplaceStoreGeoIPResponse';
90098
90117
  countryCode: Scalars['String']['output'];
90099
90118
  };
90119
+ export declare type MarketplaceStoreGetUserPreferencesResponse = {
90120
+ __typename?: 'MarketplaceStoreGetUserPreferencesResponse';
90121
+ preferences: MarketplaceStoreUserPreferences;
90122
+ version: Scalars['Int']['output'];
90123
+ };
90100
90124
  export declare type MarketplaceStoreHomePageFeaturedSection = MarketplaceStoreHomePageSection & {
90101
90125
  __typename?: 'MarketplaceStoreHomePageFeaturedSection';
90102
90126
  description: Scalars['String']['output'];
@@ -90287,6 +90311,7 @@ export declare type MarketplaceStoreMutationApi = {
90287
90311
  updateReviewDownvote: MarketplaceStoreUpdateReviewVoteResponse;
90288
90312
  updateReviewFlag: MarketplaceStoreUpdateReviewFlagResponse;
90289
90313
  updateReviewUpvote: MarketplaceStoreUpdateReviewVoteResponse;
90314
+ updateUserPreferences: MarketplaceStoreUpdateUserPreferencesResponse;
90290
90315
  };
90291
90316
  export declare type MarketplaceStoreMutationApiCreateOrUpdateReviewArgs = {
90292
90317
  input: MarketplaceStoreCreateOrUpdateReviewInput;
@@ -90312,6 +90337,9 @@ export declare type MarketplaceStoreMutationApiUpdateReviewFlagArgs = {
90312
90337
  export declare type MarketplaceStoreMutationApiUpdateReviewUpvoteArgs = {
90313
90338
  input: MarketplaceStoreUpdateReviewVoteInput;
90314
90339
  };
90340
+ export declare type MarketplaceStoreMutationApiUpdateUserPreferencesArgs = {
90341
+ input: MarketplaceStoreUpdateUserPreferencesInput;
90342
+ };
90315
90343
  export declare type MarketplaceStoreOfferingDetails = {
90316
90344
  __typename?: 'MarketplaceStoreOfferingDetails';
90317
90345
  id: Scalars['ID']['output'];
@@ -90533,6 +90561,7 @@ export declare type MarketplaceStoreQueryApi = {
90533
90561
  orgId: MarketplaceStoreOrgIdResponse;
90534
90562
  partner: MarketplaceStorePartnerResponse;
90535
90563
  siteDetails: MarketplaceStoreSiteDetailsResponse;
90564
+ userPreferences: MarketplaceStoreGetUserPreferencesResponse;
90536
90565
  userProfile: MarketplaceStoreUserProfileResponse;
90537
90566
  };
90538
90567
  export declare type MarketplaceStoreQueryApiAppInstallationsByAppArgs = {
@@ -90709,6 +90738,26 @@ export declare type MarketplaceStoreUpdateReviewVoteResponse = {
90709
90738
  id: Scalars['ID']['output'];
90710
90739
  status?: Maybe<Scalars['String']['output']>;
90711
90740
  };
90741
+ export declare type MarketplaceStoreUpdateUserPreferencesInput = {
90742
+ preferences: MarketplaceStoreUserPreferencesInput;
90743
+ version: Scalars['Int']['input'];
90744
+ };
90745
+ export declare type MarketplaceStoreUpdateUserPreferencesResponse = {
90746
+ __typename?: 'MarketplaceStoreUpdateUserPreferencesResponse';
90747
+ status: Scalars['String']['output'];
90748
+ version: Scalars['Int']['output'];
90749
+ };
90750
+ export declare type MarketplaceStoreUserPreferences = {
90751
+ __typename?: 'MarketplaceStoreUserPreferences';
90752
+ notifyOnAppArchivalSchedule?: Maybe<Scalars['Boolean']['output']>;
90753
+ notifyOnAppUninstallDisableFeedback?: Maybe<Scalars['Boolean']['output']>;
90754
+ notifyOnReviewResponseOrUpdate?: Maybe<Scalars['Boolean']['output']>;
90755
+ };
90756
+ export declare type MarketplaceStoreUserPreferencesInput = {
90757
+ notifyOnAppArchivalSchedule: Scalars['Boolean']['input'];
90758
+ notifyOnAppUninstallDisableFeedback: Scalars['Boolean']['input'];
90759
+ notifyOnReviewResponseOrUpdate: Scalars['Boolean']['input'];
90760
+ };
90712
90761
  export declare type MarketplaceStoreUserProfileResponse = {
90713
90762
  __typename?: 'MarketplaceStoreUserProfileResponse';
90714
90763
  developerSpaces?: Maybe<Array<MarketplaceStoreLoggedInUserDeveloperSpace>>;
@@ -94715,6 +94764,8 @@ export declare type Mutation = {
94715
94764
  goals_archiveMetric?: Maybe<TownsquareGoalsArchiveMetricPayload>;
94716
94765
  goals_clone?: Maybe<TownsquareGoalsClonePayload>;
94717
94766
  goals_createAndAddMetricTarget?: Maybe<TownsquareGoalsCreateAddMetricTargetPayload>;
94767
+ goals_createDecision?: Maybe<TownsquareGoalsCreateDecisionPayload>;
94768
+ goals_createLearning?: Maybe<TownsquareGoalsCreateLearningPayload>;
94718
94769
  goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
94719
94770
  goals_deleteLatestUpdate?: Maybe<TownsquareGoalsDeleteLatestUpdatePayload>;
94720
94771
  goals_editComment?: Maybe<TownsquareGoalsEditCommentPayload>;
@@ -96493,6 +96544,12 @@ export declare type MutationGoals_CloneArgs = {
96493
96544
  export declare type MutationGoals_CreateAndAddMetricTargetArgs = {
96494
96545
  input: TownsquareGoalsCreateAddMetricTargetInput;
96495
96546
  };
96547
+ export declare type MutationGoals_CreateDecisionArgs = {
96548
+ input: TownsquareGoalsCreateDecisionInput;
96549
+ };
96550
+ export declare type MutationGoals_CreateLearningArgs = {
96551
+ input: TownsquareGoalsCreateLearningInput;
96552
+ };
96496
96553
  export declare type MutationGoals_CreateUpdateArgs = {
96497
96554
  input?: InputMaybe<TownsquareGoalsCreateUpdateInput>;
96498
96555
  };
@@ -101011,6 +101068,7 @@ export declare type Query = {
101011
101068
  devai_autodevJobsByAri?: Maybe<Array<Maybe<JiraAutodevJob>>>;
101012
101069
  devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
101013
101070
  devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
101071
+ devai_checkEntitlements: Scalars['Boolean']['output'];
101014
101072
  devai_codePlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
101015
101073
  devai_containerConfig?: Maybe<DevAiContainerConfig>;
101016
101074
  devai_flowGetRepositories?: Maybe<DevAiFlowRepositoryConnection>;
@@ -101025,6 +101083,7 @@ export declare type Query = {
101025
101083
  devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
101026
101084
  devai_rovoDevAgentsWorkspace?: Maybe<DevAiWorkspace>;
101027
101085
  devai_rovoDevEntitlements?: Maybe<DevAiEntitlementCheckResultResponse>;
101086
+ devai_rovodevIssueViewQuery?: Maybe<DevAiRovoDevIssueViewResponse>;
101028
101087
  devai_rovodevSessionById?: Maybe<DevAiRovoDevSession>;
101029
101088
  devai_rovodevSessions?: Maybe<DevAiRovoDevSessionConnection>;
101030
101089
  devai_rovodevSessionsByAri?: Maybe<Array<DevAiRovoDevSession>>;
@@ -101086,8 +101145,10 @@ export declare type Query = {
101086
101145
  glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
101087
101146
  globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
101088
101147
  globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
101148
+ goals_appSettings?: Maybe<TownsquareGoalsAppSettings>;
101089
101149
  goals_byId?: Maybe<TownsquareGoal>;
101090
101150
  goals_byIds?: Maybe<Array<Maybe<TownsquareGoal>>>;
101151
+ goals_metricSearch?: Maybe<TownsquareMetricConnection>;
101091
101152
  goals_metricTargetsByIds?: Maybe<Array<Maybe<TownsquareMetricTarget>>>;
101092
101153
  goals_metricValuesByIds?: Maybe<Array<Maybe<TownsquareMetricValue>>>;
101093
101154
  goals_metricsByIds?: Maybe<Array<Maybe<TownsquareMetric>>>;
@@ -101310,6 +101371,7 @@ export declare type Query = {
101310
101371
  pricings: ContentPlatformPricingSearchConnection;
101311
101372
  productListing?: Maybe<ProductListingResult>;
101312
101373
  productListings: Array<ProductListingResult>;
101374
+ projects_appSettings?: Maybe<TownsquareProjectsAppSettings>;
101313
101375
  projects_byAri?: Maybe<TownsquareProject>;
101314
101376
  projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
101315
101377
  projects_byId?: Maybe<TownsquareProject>;
@@ -101691,6 +101753,7 @@ export declare type QueryAgentAi_SummarizeIssueArgs = {
101691
101753
  };
101692
101754
  export declare type QueryAgentStudio_AgentByIdArgs = {
101693
101755
  id: Scalars['ID']['input'];
101756
+ product?: InputMaybe<Scalars['String']['input']>;
101694
101757
  };
101695
101758
  export declare type QueryAgentStudio_AgentByIdentityAccountIdArgs = {
101696
101759
  cloudId: Scalars['String']['input'];
@@ -101816,12 +101879,14 @@ export declare type QueryAgentStudio_ToolIntegrationsArgs = {
101816
101879
  after?: InputMaybe<Scalars['String']['input']>;
101817
101880
  cloudId: Scalars['String']['input'];
101818
101881
  first?: InputMaybe<Scalars['Int']['input']>;
101882
+ scenarioVersion?: InputMaybe<Scalars['Int']['input']>;
101819
101883
  };
101820
101884
  export declare type QueryAgentStudio_ToolsArgs = {
101821
101885
  after?: InputMaybe<Scalars['String']['input']>;
101822
101886
  cloudId: Scalars['String']['input'];
101823
101887
  first?: InputMaybe<Scalars['Int']['input']>;
101824
101888
  integrationKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
101889
+ scenarioVersion?: InputMaybe<Scalars['Int']['input']>;
101825
101890
  searchQuery?: InputMaybe<Scalars['String']['input']>;
101826
101891
  };
101827
101892
  export declare type QueryAgentStudio_ValidateScenarioArgs = {
@@ -103301,6 +103366,10 @@ export declare type QueryDevai_AutodevRovoAgentsArgs = {
103301
103366
  query?: InputMaybe<Scalars['String']['input']>;
103302
103367
  templatesFilter?: InputMaybe<DevAiRovoAgentTemplateFilter>;
103303
103368
  };
103369
+ export declare type QueryDevai_CheckEntitlementsArgs = {
103370
+ cloudId: Scalars['ID']['input'];
103371
+ xid: Scalars['String']['input'];
103372
+ };
103304
103373
  export declare type QueryDevai_CodePlannerJobsForIssueArgs = {
103305
103374
  after?: InputMaybe<Scalars['String']['input']>;
103306
103375
  cloudId: Scalars['ID']['input'];
@@ -103362,6 +103431,12 @@ export declare type QueryDevai_RovoDevEntitlementsArgs = {
103362
103431
  cloudId: Scalars['ID']['input'];
103363
103432
  includeUserProductAccess?: InputMaybe<Scalars['Boolean']['input']>;
103364
103433
  };
103434
+ export declare type QueryDevai_RovodevIssueViewQueryArgs = {
103435
+ after?: InputMaybe<Scalars['String']['input']>;
103436
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
103437
+ first?: InputMaybe<Scalars['Int']['input']>;
103438
+ issueKey?: InputMaybe<Scalars['String']['input']>;
103439
+ };
103365
103440
  export declare type QueryDevai_RovodevSessionByIdArgs = {
103366
103441
  id: Scalars['ID']['input'];
103367
103442
  };
@@ -103578,12 +103653,22 @@ export declare type QueryGetSummaryArgs = {
103578
103653
  lastUpdatedTimeSeconds: Scalars['Long']['input'];
103579
103654
  responseType?: InputMaybe<ResponseType>;
103580
103655
  };
103656
+ export declare type QueryGoals_AppSettingsArgs = {
103657
+ containerId: Scalars['ID']['input'];
103658
+ };
103581
103659
  export declare type QueryGoals_ByIdArgs = {
103582
103660
  goalId: Scalars['ID']['input'];
103583
103661
  };
103584
103662
  export declare type QueryGoals_ByIdsArgs = {
103585
103663
  goalIds: Array<Scalars['ID']['input']>;
103586
103664
  };
103665
+ export declare type QueryGoals_MetricSearchArgs = {
103666
+ after?: InputMaybe<Scalars['String']['input']>;
103667
+ containerId: Scalars['ID']['input'];
103668
+ first?: InputMaybe<Scalars['Int']['input']>;
103669
+ searchString: Scalars['String']['input'];
103670
+ sort?: InputMaybe<Array<InputMaybe<TownsquareMetricSortEnum>>>;
103671
+ };
103587
103672
  export declare type QueryGoals_MetricTargetsByIdsArgs = {
103588
103673
  metricTargetIds: Array<Scalars['ID']['input']>;
103589
103674
  };
@@ -104329,6 +104414,9 @@ export declare type QueryProductListingsArgs = {
104329
104414
  ids: Array<Scalars['ID']['input']>;
104330
104415
  locales?: InputMaybe<Array<Scalars['ID']['input']>>;
104331
104416
  };
104417
+ export declare type QueryProjects_AppSettingsArgs = {
104418
+ containerId: Scalars['ID']['input'];
104419
+ };
104332
104420
  export declare type QueryProjects_ByAriArgs = {
104333
104421
  ari: Scalars['String']['input'];
104334
104422
  };
@@ -132466,6 +132554,11 @@ export declare type TownsquareGoalsAddGoalTeamLinkPayload = {
132466
132554
  goalTeamEdge?: Maybe<TownsquareGoalTeamEdge>;
132467
132555
  success: Scalars['Boolean']['output'];
132468
132556
  };
132557
+ export declare type TownsquareGoalsAppSettings = {
132558
+ __typename?: 'TownsquareGoalsAppSettings';
132559
+ aiEnabled?: Maybe<Scalars['Boolean']['output']>;
132560
+ scoringMode?: Maybe<TownsquareGoalScoringMode>;
132561
+ };
132469
132562
  export declare type TownsquareGoalsArchiveMetricInput = {
132470
132563
  metricId: Scalars['ID']['input'];
132471
132564
  };
@@ -132500,6 +132593,28 @@ export declare type TownsquareGoalsCreateAddMetricTargetPayload = {
132500
132593
  goal?: Maybe<TownsquareGoal>;
132501
132594
  success: Scalars['Boolean']['output'];
132502
132595
  };
132596
+ export declare type TownsquareGoalsCreateDecisionInput = {
132597
+ description: Scalars['String']['input'];
132598
+ goalId: Scalars['ID']['input'];
132599
+ summary: Scalars['String']['input'];
132600
+ };
132601
+ export declare type TownsquareGoalsCreateDecisionPayload = {
132602
+ __typename?: 'TownsquareGoalsCreateDecisionPayload';
132603
+ decision?: Maybe<TownsquareDecision>;
132604
+ errors?: Maybe<Array<MutationError>>;
132605
+ success: Scalars['Boolean']['output'];
132606
+ };
132607
+ export declare type TownsquareGoalsCreateLearningInput = {
132608
+ description: Scalars['String']['input'];
132609
+ goalId: Scalars['ID']['input'];
132610
+ summary: Scalars['String']['input'];
132611
+ };
132612
+ export declare type TownsquareGoalsCreateLearningPayload = {
132613
+ __typename?: 'TownsquareGoalsCreateLearningPayload';
132614
+ errors?: Maybe<Array<MutationError>>;
132615
+ learning?: Maybe<TownsquareLearning>;
132616
+ success: Scalars['Boolean']['output'];
132617
+ };
132503
132618
  export declare type TownsquareGoalsCreateUpdateInput = {
132504
132619
  goalId: Scalars['ID']['input'];
132505
132620
  metricUpdate?: InputMaybe<Array<InputMaybe<TownsquareMetricUpdateInput>>>;
@@ -132771,6 +132886,22 @@ export declare type TownsquareMetricValuesArgs = {
132771
132886
  sort?: InputMaybe<Array<InputMaybe<TownsquareMetricValueSortEnum>>>;
132772
132887
  startDate?: InputMaybe<Scalars['DateTime']['input']>;
132773
132888
  };
132889
+ export declare type TownsquareMetricConnection = {
132890
+ __typename?: 'TownsquareMetricConnection';
132891
+ edges?: Maybe<Array<Maybe<TownsquareMetricEdge>>>;
132892
+ pageInfo: PageInfo;
132893
+ };
132894
+ export declare type TownsquareMetricEdge = {
132895
+ __typename?: 'TownsquareMetricEdge';
132896
+ cursor: Scalars['String']['output'];
132897
+ node?: Maybe<TownsquareMetric>;
132898
+ };
132899
+ export declare enum TownsquareMetricSortEnum {
132900
+ IdAsc = "ID_ASC",
132901
+ IdDesc = "ID_DESC",
132902
+ NameAsc = "NAME_ASC",
132903
+ NameDesc = "NAME_DESC"
132904
+ }
132774
132905
  export declare type TownsquareMetricTarget = Node & {
132775
132906
  __typename?: 'TownsquareMetricTarget';
132776
132907
  id: Scalars['ID']['output'];
@@ -133239,6 +133370,10 @@ export declare type TownsquareProjectsAddTeamContributorsPayload = {
133239
133370
  project?: Maybe<TownsquareProject>;
133240
133371
  success: Scalars['Boolean']['output'];
133241
133372
  };
133373
+ export declare type TownsquareProjectsAppSettings = {
133374
+ __typename?: 'TownsquareProjectsAppSettings';
133375
+ aiEnabled?: Maybe<Scalars['Boolean']['output']>;
133376
+ };
133242
133377
  export declare type TownsquareProjectsCanCreateProjectFusionInput = {
133243
133378
  issueId: Scalars['ID']['input'];
133244
133379
  projectId: Scalars['ID']['input'];
@@ -134063,6 +134198,16 @@ export declare type TrelloAddChecklistToCardDisplayEntities = {
134063
134198
  checklist?: Maybe<TrelloActionChecklistEntity>;
134064
134199
  memberCreator?: Maybe<TrelloActionMemberEntity>;
134065
134200
  };
134201
+ export declare type TrelloAddLabelsToCardInput = {
134202
+ cardId: Scalars['ID']['input'];
134203
+ labelIds: Array<Scalars['ID']['input']>;
134204
+ };
134205
+ export declare type TrelloAddLabelsToCardPayload = Payload & {
134206
+ __typename?: 'TrelloAddLabelsToCardPayload';
134207
+ card?: Maybe<TrelloCard>;
134208
+ errors?: Maybe<Array<MutationError>>;
134209
+ success: Scalars['Boolean']['output'];
134210
+ };
134066
134211
  export declare type TrelloAddMemberInput = {
134067
134212
  cardId: Scalars['ID']['input'];
134068
134213
  userId: Scalars['ID']['input'];
@@ -136236,6 +136381,7 @@ export declare type TrelloMovePlannerCalendarEventTargetOptions = {
136236
136381
  export declare type TrelloMutationApi = {
136237
136382
  __typename?: 'TrelloMutationApi';
136238
136383
  addBoardStar?: Maybe<TrelloAddBoardStarPayload>;
136384
+ addLabelsToCard?: Maybe<TrelloAddLabelsToCardPayload>;
136239
136385
  addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
136240
136386
  addWorkspaceTagToBoard?: Maybe<TrelloAddWorkspaceTagToBoardPayload>;
136241
136387
  archiveCard?: Maybe<TrelloArchiveCardPayload>;
@@ -136257,6 +136403,7 @@ export declare type TrelloMutationApi = {
136257
136403
  pinCard?: Maybe<TrelloPinCardPayload>;
136258
136404
  removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
136259
136405
  removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
136406
+ removeLabelsFromCard?: Maybe<TrelloRemoveLabelsFromCardPayload>;
136260
136407
  removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
136261
136408
  removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
136262
136409
  removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
@@ -136291,6 +136438,9 @@ export declare type TrelloMutationApi = {
136291
136438
  export declare type TrelloMutationApiAddBoardStarArgs = {
136292
136439
  input: TrelloAddBoardStarInput;
136293
136440
  };
136441
+ export declare type TrelloMutationApiAddLabelsToCardArgs = {
136442
+ input: TrelloAddLabelsToCardInput;
136443
+ };
136294
136444
  export declare type TrelloMutationApiAddMemberToCardArgs = {
136295
136445
  input: TrelloAddMemberInput;
136296
136446
  };
@@ -136354,6 +136504,9 @@ export declare type TrelloMutationApiRemoveBoardStarArgs = {
136354
136504
  export declare type TrelloMutationApiRemoveCardFromPlannerCalendarEventArgs = {
136355
136505
  input: TrelloRemoveCardFromPlannerCalendarEventInput;
136356
136506
  };
136507
+ export declare type TrelloMutationApiRemoveLabelsFromCardArgs = {
136508
+ input: TrelloRemoveLabelsFromCardInput;
136509
+ };
136357
136510
  export declare type TrelloMutationApiRemoveMemberFromCardArgs = {
136358
136511
  input: TrelloRemoveMemberInput;
136359
136512
  };
@@ -136444,6 +136597,13 @@ export declare type TrelloMutationApiUpdateWorkspaceTagArgs = {
136444
136597
  export declare type TrelloMutationApiWatchCardArgs = {
136445
136598
  input: TrelloWatchCardInput;
136446
136599
  };
136600
+ export declare type TrelloMutationErrorExtension = MutationErrorExtension & {
136601
+ __typename?: 'TrelloMutationErrorExtension';
136602
+ code?: Maybe<Scalars['String']['output']>;
136603
+ errorType?: Maybe<Scalars['String']['output']>;
136604
+ id?: Maybe<Scalars['String']['output']>;
136605
+ statusCode?: Maybe<Scalars['Int']['output']>;
136606
+ };
136447
136607
  export declare type TrelloNotification = TrelloQuickCaptureNotification;
136448
136608
  export declare type TrelloNotificationConnection = {
136449
136609
  __typename?: 'TrelloNotificationConnection';
@@ -136462,6 +136622,10 @@ export declare type TrelloNotificationFilter = {
136462
136622
  };
136463
136623
  export declare type TrelloOAuth2Client = {
136464
136624
  __typename?: 'TrelloOAuth2Client';
136625
+ appContactLink?: Maybe<Scalars['String']['output']>;
136626
+ appDescription?: Maybe<Scalars['String']['output']>;
136627
+ appLogoUrl?: Maybe<Scalars['String']['output']>;
136628
+ appVendorName?: Maybe<Scalars['String']['output']>;
136465
136629
  callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
136466
136630
  clientId: Scalars['String']['output'];
136467
136631
  clientSecret?: Maybe<Scalars['String']['output']>;
@@ -137176,6 +137340,16 @@ export declare type TrelloRemoveChecklistFromCardDisplayEntities = {
137176
137340
  checklist?: Maybe<TrelloActionChecklistEntity>;
137177
137341
  memberCreator?: Maybe<TrelloActionMemberEntity>;
137178
137342
  };
137343
+ export declare type TrelloRemoveLabelsFromCardInput = {
137344
+ cardId: Scalars['ID']['input'];
137345
+ labelIds: Array<Scalars['ID']['input']>;
137346
+ };
137347
+ export declare type TrelloRemoveLabelsFromCardPayload = Payload & {
137348
+ __typename?: 'TrelloRemoveLabelsFromCardPayload';
137349
+ card?: Maybe<TrelloCard>;
137350
+ errors?: Maybe<Array<MutationError>>;
137351
+ success: Scalars['Boolean']['output'];
137352
+ };
137179
137353
  export declare type TrelloRemoveMemberFromCardAction = TrelloAction & TrelloCardActionData & {
137180
137354
  __typename?: 'TrelloRemoveMemberFromCardAction';
137181
137355
  appCreator?: Maybe<TrelloAppCreator>;
@@ -137688,16 +137862,8 @@ export declare type TrelloUpdateOAuth2ClientInput = {
137688
137862
  };
137689
137863
  export declare type TrelloUpdateOAuth2ClientPayload = Payload & {
137690
137864
  __typename?: 'TrelloUpdateOAuth2ClientPayload';
137691
- appContactLink?: Maybe<Scalars['String']['output']>;
137692
- appDescription?: Maybe<Scalars['String']['output']>;
137693
- appLogoUrl?: Maybe<Scalars['String']['output']>;
137694
- appVendorName?: Maybe<Scalars['String']['output']>;
137695
137865
  application?: Maybe<TrelloApplication>;
137696
- callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
137697
- clientType?: Maybe<Scalars['String']['output']>;
137698
137866
  errors?: Maybe<Array<MutationError>>;
137699
- id?: Maybe<Scalars['ID']['output']>;
137700
- scopes?: Maybe<Array<Scalars['String']['output']>>;
137701
137867
  success: Scalars['Boolean']['output'];
137702
137868
  };
137703
137869
  export declare type TrelloUpdatePrimaryPlannerAccountInput = {