@forge/cli-shared 2.1.6-next.11 → 2.1.6-next.15

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.
@@ -2213,7 +2213,6 @@ export declare type CompassScorecardCriteriaScorecardCriteriaScoreArgs = {
2213
2213
  };
2214
2214
  export declare type CompassScorecardCriteriaScore = {
2215
2215
  __typename?: 'CompassScorecardCriteriaScore';
2216
- scorecardCriteria: CompassScorecardCriteria;
2217
2216
  score: Scalars['Int'];
2218
2217
  maxScore: Scalars['Int'];
2219
2218
  };
@@ -2235,7 +2234,6 @@ export declare type CompassScorecardScore = {
2235
2234
  __typename?: 'CompassScorecardScore';
2236
2235
  totalScore: Scalars['Int'];
2237
2236
  maxTotalScore: Scalars['Int'];
2238
- scorecard: CompassScorecard;
2239
2237
  criteriaScores?: Maybe<Array<CompassScorecardCriteriaScore>>;
2240
2238
  };
2241
2239
  export declare type CompassScorecardScoreQuery = {
@@ -2448,6 +2446,7 @@ export declare type ConfigurePolarisRefreshPayload = Payload & {
2448
2446
  };
2449
2447
  export declare type ConfluenceAbstractPage = {
2450
2448
  id?: Maybe<Scalars['ID']>;
2449
+ metadata?: Maybe<ConfluenceContentMetadata>;
2451
2450
  space?: Maybe<ConfluenceSpace>;
2452
2451
  status?: Maybe<ConfluenceContentStatus>;
2453
2452
  title?: Maybe<Scalars['String']>;
@@ -2458,6 +2457,7 @@ export declare type ConfluenceBlogPost = ConfluenceAbstractPage & {
2458
2457
  blogPostId: Scalars['ID'];
2459
2458
  id?: Maybe<Scalars['ID']>;
2460
2459
  links?: Maybe<ConfluenceBlogPostLinks>;
2460
+ metadata?: Maybe<ConfluenceContentMetadata>;
2461
2461
  space?: Maybe<ConfluenceSpace>;
2462
2462
  status?: Maybe<ConfluenceContentStatus>;
2463
2463
  title?: Maybe<Scalars['String']>;
@@ -2492,8 +2492,12 @@ export declare type ConfluenceContentBody = {
2492
2492
  styledView?: Maybe<Scalars['String']>;
2493
2493
  view?: Maybe<Scalars['String']>;
2494
2494
  };
2495
+ export declare type ConfluenceContentMetadata = {
2496
+ __typename?: 'ConfluenceContentMetadata';
2497
+ titleEmojiDraft?: Maybe<ConfluenceContentTitleEmoji>;
2498
+ titleEmojiPublished?: Maybe<ConfluenceContentTitleEmoji>;
2499
+ };
2495
2500
  export declare enum ConfluenceContentStatus {
2496
- Any = "ANY",
2497
2501
  Archived = "ARCHIVED",
2498
2502
  Current = "CURRENT",
2499
2503
  Deleted = "DELETED",
@@ -2501,6 +2505,12 @@ export declare enum ConfluenceContentStatus {
2501
2505
  Historical = "HISTORICAL",
2502
2506
  Trashed = "TRASHED"
2503
2507
  }
2508
+ export declare type ConfluenceContentTitleEmoji = {
2509
+ __typename?: 'ConfluenceContentTitleEmoji';
2510
+ id?: Maybe<Scalars['String']>;
2511
+ key?: Maybe<Scalars['String']>;
2512
+ value?: Maybe<Scalars['String']>;
2513
+ };
2504
2514
  export declare enum ConfluenceContentType {
2505
2515
  Attachment = "ATTACHMENT",
2506
2516
  BlogPost = "BLOG_POST",
@@ -2538,21 +2548,59 @@ export declare enum ConfluenceInlineTaskStatus {
2538
2548
  Complete = "COMPLETE",
2539
2549
  Incomplete = "INCOMPLETE"
2540
2550
  }
2551
+ export declare type ConfluenceLabel = {
2552
+ __typename?: 'ConfluenceLabel';
2553
+ id?: Maybe<Scalars['ID']>;
2554
+ label?: Maybe<Scalars['String']>;
2555
+ prefix?: Maybe<Scalars['String']>;
2556
+ };
2541
2557
  export declare type ConfluenceMutationApi = {
2542
2558
  __typename?: 'ConfluenceMutationApi';
2543
- createConfluenceSpace?: Maybe<ConfluenceCreateSpacePayload>;
2544
- updateConfluenceSpace?: Maybe<ConfluenceUpdateSpacePayload>;
2559
+ confluenceCreateSpace?: Maybe<ConfluenceCreateSpacePayload>;
2560
+ confluenceUpdateSpace?: Maybe<ConfluenceUpdateSpacePayload>;
2545
2561
  };
2546
- export declare type ConfluenceMutationApiCreateConfluenceSpaceArgs = {
2562
+ export declare type ConfluenceMutationApiConfluenceCreateSpaceArgs = {
2547
2563
  input: ConfluenceCreateSpaceInput;
2548
2564
  };
2549
- export declare type ConfluenceMutationApiUpdateConfluenceSpaceArgs = {
2565
+ export declare type ConfluenceMutationApiConfluenceUpdateSpaceArgs = {
2550
2566
  input: ConfluenceUpdateSpaceInput;
2551
2567
  };
2568
+ export declare type ConfluenceOperationCheck = {
2569
+ __typename?: 'ConfluenceOperationCheck';
2570
+ operation?: Maybe<ConfluenceOperationName>;
2571
+ target?: Maybe<ConfluenceOperationTarget>;
2572
+ };
2573
+ export declare enum ConfluenceOperationName {
2574
+ Administer = "ADMINISTER",
2575
+ Archive = "ARCHIVE",
2576
+ Copy = "COPY",
2577
+ Create = "CREATE",
2578
+ CreateSpace = "CREATE_SPACE",
2579
+ Delete = "DELETE",
2580
+ Export = "EXPORT",
2581
+ Move = "MOVE",
2582
+ Purge = "PURGE",
2583
+ PurgeVersion = "PURGE_VERSION",
2584
+ Read = "READ",
2585
+ Restore = "RESTORE",
2586
+ RestrictContent = "RESTRICT_CONTENT",
2587
+ Update = "UPDATE",
2588
+ Use = "USE"
2589
+ }
2590
+ export declare enum ConfluenceOperationTarget {
2591
+ Application = "APPLICATION",
2592
+ Attachment = "ATTACHMENT",
2593
+ BlogPost = "BLOG_POST",
2594
+ Comment = "COMMENT",
2595
+ Page = "PAGE",
2596
+ Space = "SPACE",
2597
+ UserProfile = "USER_PROFILE"
2598
+ }
2552
2599
  export declare type ConfluencePage = ConfluenceAbstractPage & {
2553
2600
  __typename?: 'ConfluencePage';
2554
2601
  id?: Maybe<Scalars['ID']>;
2555
2602
  links?: Maybe<ConfluencePageLinks>;
2603
+ metadata?: Maybe<ConfluenceContentMetadata>;
2556
2604
  pageId: Scalars['ID'];
2557
2605
  space?: Maybe<ConfluenceSpace>;
2558
2606
  status?: Maybe<ConfluenceContentStatus>;
@@ -2607,15 +2655,30 @@ export declare type ConfluenceQueryApiConfluenceSpacesArgs = {
2607
2655
  };
2608
2656
  export declare type ConfluenceSpace = {
2609
2657
  __typename?: 'ConfluenceSpace';
2658
+ description?: Maybe<ConfluenceSpaceDescription>;
2659
+ history?: Maybe<ConfluenceSpaceHistory>;
2660
+ homepage?: Maybe<ConfluenceAbstractPage>;
2610
2661
  icon?: Maybe<ConfluenceSpaceIcon>;
2611
2662
  id?: Maybe<Scalars['ID']>;
2612
2663
  key?: Maybe<Scalars['String']>;
2613
2664
  links?: Maybe<ConfluenceSpaceLinks>;
2665
+ metadata?: Maybe<ConfluenceSpaceMetadata>;
2614
2666
  name?: Maybe<Scalars['String']>;
2667
+ operations?: Maybe<Array<Maybe<ConfluenceOperationCheck>>>;
2615
2668
  spaceId?: Maybe<Scalars['ID']>;
2616
2669
  status?: Maybe<ConfluenceSpaceStatus>;
2617
2670
  type?: Maybe<ConfluenceSpaceType>;
2618
2671
  };
2672
+ export declare type ConfluenceSpaceDescription = {
2673
+ __typename?: 'ConfluenceSpaceDescription';
2674
+ plain?: Maybe<Scalars['String']>;
2675
+ view?: Maybe<Scalars['String']>;
2676
+ };
2677
+ export declare type ConfluenceSpaceHistory = {
2678
+ __typename?: 'ConfluenceSpaceHistory';
2679
+ createdBy?: Maybe<ConfluenceUserInfo>;
2680
+ createdDate?: Maybe<Scalars['String']>;
2681
+ };
2619
2682
  export declare type ConfluenceSpaceIcon = {
2620
2683
  __typename?: 'ConfluenceSpaceIcon';
2621
2684
  height?: Maybe<Scalars['Int']>;
@@ -2628,6 +2691,15 @@ export declare type ConfluenceSpaceLinks = {
2628
2691
  base?: Maybe<Scalars['String']>;
2629
2692
  webUi?: Maybe<Scalars['String']>;
2630
2693
  };
2694
+ export declare type ConfluenceSpaceMetadata = {
2695
+ __typename?: 'ConfluenceSpaceMetadata';
2696
+ labels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
2697
+ recentCommenters?: Maybe<Array<Maybe<ConfluenceUserInfo>>>;
2698
+ recentWatchers?: Maybe<Array<Maybe<ConfluenceUserInfo>>>;
2699
+ totalCommenters?: Maybe<Scalars['Int']>;
2700
+ totalCurrentPages?: Maybe<Scalars['Int']>;
2701
+ totalWatchers?: Maybe<Scalars['Int']>;
2702
+ };
2631
2703
  export declare enum ConfluenceSpaceStatus {
2632
2704
  Archived = "ARCHIVED",
2633
2705
  Current = "CURRENT"
@@ -3467,6 +3539,7 @@ export declare type CustomFiltersValidationError = {
3467
3539
  __typename?: 'CustomFiltersValidationError';
3468
3540
  fieldName: Scalars['String'];
3469
3541
  errorMessage: Scalars['String'];
3542
+ errorKey: Scalars['String'];
3470
3543
  };
3471
3544
  export declare type CustomUiTunnelDefinition = {
3472
3545
  __typename?: 'CustomUITunnelDefinition';
@@ -4316,6 +4389,13 @@ export declare type DevOpsToolConnection = {
4316
4389
  nodes?: Maybe<Array<Maybe<DevOpsTool>>>;
4317
4390
  pageInfo: PageInfo;
4318
4391
  };
4392
+ export declare enum DevOpsToolConnectionState {
4393
+ Initial = "INITIAL",
4394
+ Unconnected = "UNCONNECTED",
4395
+ Incomplete = "INCOMPLETE",
4396
+ Connected = "CONNECTED",
4397
+ Seen = "SEEN"
4398
+ }
4319
4399
  export declare type DevOpsToolContainer = Node & {
4320
4400
  __typename?: 'DevOpsToolContainer';
4321
4401
  id: Scalars['ID'];
@@ -4371,6 +4451,12 @@ export declare type DevOpsToolNamespaceEdge = {
4371
4451
  cursor: Scalars['String'];
4372
4452
  node?: Maybe<DevOpsToolNamespace>;
4373
4453
  };
4454
+ export declare type DevOpsToolNavbarConnectionState = {
4455
+ __typename?: 'DevOpsToolNavbarConnectionState';
4456
+ codeTab: DevOpsToolConnectionState;
4457
+ oncallTab: DevOpsToolConnectionState;
4458
+ pagesTab: DevOpsToolConnectionState;
4459
+ };
4374
4460
  export declare type DevOpsToolSupportedContainerType = {
4375
4461
  __typename?: 'DevOpsToolSupportedContainerType';
4376
4462
  category: DevOpsToolCategory;
@@ -4390,6 +4476,7 @@ export declare type DevOpsTools = {
4390
4476
  tool?: Maybe<DevOpsTool>;
4391
4477
  namespace?: Maybe<DevOpsToolNamespace>;
4392
4478
  container?: Maybe<DevOpsToolContainer>;
4479
+ navbarConnectionState?: Maybe<DevOpsToolNavbarConnectionState>;
4393
4480
  };
4394
4481
  export declare type DevOpsToolsToolsArgs = {
4395
4482
  cloudId: Scalars['ID'];
@@ -4405,6 +4492,10 @@ export declare type DevOpsToolsNamespaceArgs = {
4405
4492
  export declare type DevOpsToolsContainerArgs = {
4406
4493
  id: Scalars['ID'];
4407
4494
  };
4495
+ export declare type DevOpsToolsNavbarConnectionStateArgs = {
4496
+ cloudId: Scalars['ID'];
4497
+ projectId: Scalars['ID'];
4498
+ };
4408
4499
  export declare type DevStatus = {
4409
4500
  __typename?: 'DevStatus';
4410
4501
  activity: DevStatusActivity;
@@ -7075,6 +7166,12 @@ export declare type JiraOAuthAppsAppInput = {
7075
7166
  deploymentsModule?: Maybe<JiraOAuthAppsDeploymentsModuleInput>;
7076
7167
  devInfoModule?: Maybe<JiraOAuthAppsDevInfoModuleInput>;
7077
7168
  };
7169
+ export declare type JiraOAuthAppsAppUpdateInput = {
7170
+ buildsModule?: Maybe<JiraOAuthAppsBuildsModuleInput>;
7171
+ featureFlagsModule?: Maybe<JiraOAuthAppsFeatureFlagsModuleInput>;
7172
+ deploymentsModule?: Maybe<JiraOAuthAppsDeploymentsModuleInput>;
7173
+ devInfoModule?: Maybe<JiraOAuthAppsDevInfoModuleInput>;
7174
+ };
7078
7175
  export declare type JiraOAuthAppsApps = {
7079
7176
  __typename?: 'JiraOAuthAppsApps';
7080
7177
  apps?: Maybe<Array<Maybe<JiraOAuthAppsApp>>>;
@@ -7152,12 +7249,17 @@ export declare type JiraOAuthAppsFeatureFlagsModuleInput = {
7152
7249
  export declare type JiraOAuthAppsMutation = {
7153
7250
  __typename?: 'JiraOAuthAppsMutation';
7154
7251
  createJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
7252
+ updateJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
7155
7253
  deleteJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
7156
7254
  };
7157
7255
  export declare type JiraOAuthAppsMutationCreateJiraOAuthAppArgs = {
7158
7256
  cloudId: Scalars['String'];
7159
7257
  input: JiraOAuthAppsCreateAppInput;
7160
7258
  };
7259
+ export declare type JiraOAuthAppsMutationUpdateJiraOAuthAppArgs = {
7260
+ cloudId: Scalars['String'];
7261
+ input: JiraOAuthAppsUpdateAppInput;
7262
+ };
7161
7263
  export declare type JiraOAuthAppsMutationDeleteJiraOAuthAppArgs = {
7162
7264
  cloudId: Scalars['String'];
7163
7265
  input: JiraOAuthAppsDeleteAppInput;
@@ -7170,8 +7272,8 @@ export declare type JiraOAuthAppsPayload = Payload & {
7170
7272
  errors?: Maybe<Array<MutationError>>;
7171
7273
  };
7172
7274
  export declare type JiraOAuthAppsUpdateAppInput = {
7173
- id: Scalars['ID'];
7174
- app: JiraOAuthAppsAppInput;
7275
+ clientId: Scalars['ID'];
7276
+ app: JiraOAuthAppsAppUpdateInput;
7175
7277
  clientMutationId?: Maybe<Scalars['ID']>;
7176
7278
  };
7177
7279
  export declare type JiraOAuthAppsUrlTemplate = {
@@ -7451,6 +7553,7 @@ export declare type JiraProject = Node & {
7451
7553
  opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
7452
7554
  servicesAvailableToLinkWith?: Maybe<DevOpsServiceConnection>;
7453
7555
  opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
7556
+ confluenceSpaceRelationships?: Maybe<JiraProjectAndConfluenceSpaceRelationshipConnection>;
7454
7557
  };
7455
7558
  export declare type JiraProjectRepositoryRelationshipsArgs = {
7456
7559
  first?: Maybe<Scalars['Int']>;
@@ -7476,6 +7579,34 @@ export declare type JiraProjectOpsgenieTeamsAvailableToLinkWithArgs = {
7476
7579
  first?: Maybe<Scalars['Int']>;
7477
7580
  after?: Maybe<Scalars['String']>;
7478
7581
  };
7582
+ export declare type JiraProjectConfluenceSpaceRelationshipsArgs = {
7583
+ first?: Maybe<Scalars['Int']>;
7584
+ after?: Maybe<Scalars['String']>;
7585
+ };
7586
+ export declare type JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectInput = {
7587
+ id: Scalars['ID'];
7588
+ };
7589
+ export declare type JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload = {
7590
+ __typename?: 'JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload';
7591
+ success: Scalars['Boolean'];
7592
+ errors?: Maybe<Array<MutationError>>;
7593
+ };
7594
+ export declare type JiraProjectAndConfluenceSpaceRelationship = {
7595
+ __typename?: 'JiraProjectAndConfluenceSpaceRelationship';
7596
+ jiraProject?: Maybe<JiraProject>;
7597
+ confluenceSpace?: Maybe<ConfluenceSpace>;
7598
+ };
7599
+ export declare type JiraProjectAndConfluenceSpaceRelationshipConnection = {
7600
+ __typename?: 'JiraProjectAndConfluenceSpaceRelationshipConnection';
7601
+ edges?: Maybe<Array<Maybe<JiraProjectAndConfluenceSpaceRelationshipEdge>>>;
7602
+ nodes?: Maybe<Array<Maybe<JiraProjectAndConfluenceSpaceRelationship>>>;
7603
+ pageInfo: PageInfo;
7604
+ };
7605
+ export declare type JiraProjectAndConfluenceSpaceRelationshipEdge = {
7606
+ __typename?: 'JiraProjectAndConfluenceSpaceRelationshipEdge';
7607
+ cursor: Scalars['String'];
7608
+ node?: Maybe<JiraProjectAndConfluenceSpaceRelationship>;
7609
+ };
7479
7610
  export declare type JiraProjectAndOpsgenieTeamRelationship = Node & {
7480
7611
  __typename?: 'JiraProjectAndOpsgenieTeamRelationship';
7481
7612
  id: Scalars['ID'];
@@ -8952,6 +9083,13 @@ export declare type JswMutation = {
8952
9083
  export declare type JswMutationDeleteCardArgs = {
8953
9084
  input?: Maybe<DeleteCardInput>;
8954
9085
  };
9086
+ export declare type JswQuery = {
9087
+ __typename?: 'JswQuery';
9088
+ boardScope?: Maybe<BoardScope>;
9089
+ };
9090
+ export declare type JswQueryBoardScopeArgs = {
9091
+ boardId: Scalars['ID'];
9092
+ };
8955
9093
  export declare type LabelUsage = {
8956
9094
  __typename?: 'LabelUsage';
8957
9095
  label: Scalars['String'];
@@ -8977,6 +9115,7 @@ export declare type MarketplaceApp = {
8977
9115
  appId: Scalars['ID'];
8978
9116
  appKey: Scalars['String'];
8979
9117
  name: Scalars['String'];
9118
+ partnerId: Scalars['ID'];
8980
9119
  partner?: Maybe<MarketplacePartner>;
8981
9120
  entityStatus: MarketplaceEntityStatus;
8982
9121
  createdAt: Scalars['DateTime'];
@@ -9000,6 +9139,7 @@ export declare type MarketplaceApp = {
9000
9139
  programs?: Maybe<MarketplaceAppPrograms>;
9001
9140
  marketingLabels: Array<Scalars['String']>;
9002
9141
  googleAnalyticsId?: Maybe<Scalars['String']>;
9142
+ segmentWriteKey?: Maybe<Scalars['String']>;
9003
9143
  categories: Array<MarketplaceAppCategory>;
9004
9144
  jsdWidgetKey?: Maybe<Scalars['String']>;
9005
9145
  };
@@ -9041,6 +9181,7 @@ export declare enum MarketplaceAppPermission {
9041
9181
  export declare type MarketplaceAppPrograms = {
9042
9182
  __typename?: 'MarketplaceAppPrograms';
9043
9183
  cloudFortified?: Maybe<MarketplaceCloudFortified>;
9184
+ bugBountyParticipant?: Maybe<MarketplaceBugBountyParticipant>;
9044
9185
  };
9045
9186
  export declare type MarketplaceAppReviewSummary = {
9046
9187
  __typename?: 'MarketplaceAppReviewSummary';
@@ -9109,6 +9250,16 @@ export declare enum MarketplaceBillingCycle {
9109
9250
  Annual = "ANNUAL",
9110
9251
  Monthly = "MONTHLY"
9111
9252
  }
9253
+ export declare type MarketplaceBugBountyParticipant = {
9254
+ __typename?: 'MarketplaceBugBountyParticipant';
9255
+ cloud?: Maybe<MarketplaceBugBountyProgramHostingStatus>;
9256
+ server?: Maybe<MarketplaceBugBountyProgramHostingStatus>;
9257
+ dataCenter?: Maybe<MarketplaceBugBountyProgramHostingStatus>;
9258
+ };
9259
+ export declare type MarketplaceBugBountyProgramHostingStatus = {
9260
+ __typename?: 'MarketplaceBugBountyProgramHostingStatus';
9261
+ status?: Maybe<MarketplaceProgramStatus>;
9262
+ };
9112
9263
  export declare type MarketplaceCloudAppDeployment = MarketplaceAppDeployment & {
9113
9264
  __typename?: 'MarketplaceCloudAppDeployment';
9114
9265
  compatibleProducts: Array<CompatibleAtlassianProduct>;
@@ -9120,6 +9271,7 @@ export declare type MarketplaceCloudAppDeployment = MarketplaceAppDeployment & {
9120
9271
  export declare type MarketplaceCloudFortified = {
9121
9272
  __typename?: 'MarketplaceCloudFortified';
9122
9273
  status?: Maybe<MarketplaceCloudFortifiedStatus>;
9274
+ programStatus?: Maybe<MarketplaceProgramStatus>;
9123
9275
  };
9124
9276
  export declare enum MarketplaceCloudFortifiedStatus {
9125
9277
  Approved = "APPROVED",
@@ -9290,6 +9442,11 @@ export declare enum MarketplacePricingTierType {
9290
9442
  UserTiered = "USER_TIERED",
9291
9443
  RemoteAgentTiered = "REMOTE_AGENT_TIERED"
9292
9444
  }
9445
+ export declare enum MarketplaceProgramStatus {
9446
+ Approved = "APPROVED",
9447
+ Rejected = "REJECTED",
9448
+ NotAParticipant = "NOT_A_PARTICIPANT"
9449
+ }
9293
9450
  export declare type MarketplaceSupportedAtlassianProduct = {
9294
9451
  __typename?: 'MarketplaceSupportedAtlassianProduct';
9295
9452
  id: Scalars['ID'];
@@ -9319,6 +9476,11 @@ export declare enum MembershipRole {
9319
9476
  Regular = "REGULAR",
9320
9477
  Admin = "ADMIN"
9321
9478
  }
9479
+ export declare enum MembershipSetting {
9480
+ Open = "OPEN",
9481
+ MemberInvite = "MEMBER_INVITE",
9482
+ AdminInvite = "ADMIN_INVITE"
9483
+ }
9322
9484
  export declare enum MembershipState {
9323
9485
  FullMember = "FULL_MEMBER",
9324
9486
  Invited = "INVITED",
@@ -9491,6 +9653,7 @@ export declare type Mutation = {
9491
9653
  deleteAppEnvironmentVariable?: Maybe<DeleteAppEnvironmentVariablePayload>;
9492
9654
  createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
9493
9655
  compass?: Maybe<CompassCatalogMutationApi>;
9656
+ deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
9494
9657
  };
9495
9658
  export declare type MutationCreateReleaseNoteArgs = {
9496
9659
  changeStatus?: Maybe<Scalars['String']>;
@@ -9888,6 +10051,9 @@ export declare type MutationDeleteAppEnvironmentVariableArgs = {
9888
10051
  export declare type MutationCreateAppDeploymentArgs = {
9889
10052
  input: CreateAppDeploymentInput;
9890
10053
  };
10054
+ export declare type MutationDeleteConfluenceSpaceRelationshipsForJiraProjectArgs = {
10055
+ input: JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectInput;
10056
+ };
9891
10057
  export declare type MutationError = {
9892
10058
  __typename?: 'MutationError';
9893
10059
  message?: Maybe<Scalars['String']>;
@@ -10099,7 +10265,7 @@ export declare type Payload = {
10099
10265
  export declare type PermissionToConsentByOauthId = {
10100
10266
  __typename?: 'PermissionToConsentByOauthId';
10101
10267
  isAllowed: Scalars['Boolean'];
10102
- userType?: Maybe<Scalars['String']>;
10268
+ isSiteAdmin: Scalars['Boolean'];
10103
10269
  };
10104
10270
  export declare type PolarisAnonymousVisitorHash = PolarisAnonymousVisitorViewHash;
10105
10271
  export declare type PolarisAnonymousVisitorViewHash = {
@@ -11048,6 +11214,7 @@ export declare type Query = {
11048
11214
  apps?: Maybe<AppConnection>;
11049
11215
  app?: Maybe<App>;
11050
11216
  appHostServices?: Maybe<Array<AppHostService>>;
11217
+ jsw?: Maybe<JswQuery>;
11051
11218
  boardScope?: Maybe<BoardScope>;
11052
11219
  developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
11053
11220
  devOpsTools?: Maybe<DevOpsTools>;
@@ -11431,6 +11598,8 @@ export declare type RankColumnOutput = MutationResponse & {
11431
11598
  export declare enum RateLimitingCurrency {
11432
11599
  TestingService = "TESTING_SERVICE",
11433
11600
  ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
11601
+ TeamsCurrency = "TEAMS_CURRENCY",
11602
+ TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
11434
11603
  CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY"
11435
11604
  }
11436
11605
  export declare type RawStatus = {
@@ -11521,6 +11690,11 @@ export declare type RoadmapBoardConfiguration = {
11521
11690
  isBoardJqlFilteringOutEpics?: Maybe<Scalars['Boolean']>;
11522
11691
  isSprintsFeatureEnabled?: Maybe<Scalars['Boolean']>;
11523
11692
  };
11693
+ export declare type RoadmapComponent = {
11694
+ __typename?: 'RoadmapComponent';
11695
+ id: Scalars['ID'];
11696
+ name: Scalars['String'];
11697
+ };
11524
11698
  export declare type RoadmapConfiguration = {
11525
11699
  __typename?: 'RoadmapConfiguration';
11526
11700
  isCrossProject: Scalars['Boolean'];
@@ -11587,6 +11761,7 @@ export declare type RoadmapItem = {
11587
11761
  labels?: Maybe<Array<Scalars['String']>>;
11588
11762
  versionIds?: Maybe<Array<Scalars['ID']>>;
11589
11763
  sprintIds?: Maybe<Array<Scalars['ID']>>;
11764
+ componentIds?: Maybe<Array<Scalars['ID']>>;
11590
11765
  inferredDueDate?: Maybe<Scalars['Date']>;
11591
11766
  inferredStartDate?: Maybe<Scalars['Date']>;
11592
11767
  };
@@ -11683,6 +11858,7 @@ export declare type RoadmapProjectConfiguration = {
11683
11858
  validation?: Maybe<RoadmapProjectValidation>;
11684
11859
  defaultItemTypeId?: Maybe<Scalars['String']>;
11685
11860
  versions?: Maybe<Array<RoadmapVersion>>;
11861
+ components?: Maybe<Array<RoadmapComponent>>;
11686
11862
  };
11687
11863
  export declare type RoadmapProjectPermissions = {
11688
11864
  __typename?: 'RoadmapProjectPermissions';
@@ -12025,6 +12201,7 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
12025
12201
  };
12026
12202
  export declare type ShepherdAlert = {
12027
12203
  __typename?: 'ShepherdAlert';
12204
+ actor?: Maybe<ShepherdUser>;
12028
12205
  cloudId?: Maybe<Scalars['ID']>;
12029
12206
  createdOn: Scalars['DateTime'];
12030
12207
  id: Scalars['ID'];
@@ -12033,6 +12210,11 @@ export declare type ShepherdAlert = {
12033
12210
  title: Scalars['String'];
12034
12211
  updatedOn?: Maybe<Scalars['DateTime']>;
12035
12212
  };
12213
+ export declare type ShepherdAlertEdge = {
12214
+ __typename?: 'ShepherdAlertEdge';
12215
+ node?: Maybe<ShepherdAlert>;
12216
+ };
12217
+ export declare type ShepherdAlertResult = ShepherdAlert | ShepherdQueryError;
12036
12218
  export declare enum ShepherdAlertSeverity {
12037
12219
  Critical = "CRITICAL",
12038
12220
  High = "HIGH",
@@ -12044,9 +12226,16 @@ export declare enum ShepherdAlertStatus {
12044
12226
  Triaged = "TRIAGED",
12045
12227
  Untriaged = "UNTRIAGED"
12046
12228
  }
12229
+ export declare type ShepherdAlertsConnection = {
12230
+ __typename?: 'ShepherdAlertsConnection';
12231
+ edges?: Maybe<Array<Maybe<ShepherdAlertEdge>>>;
12232
+ };
12233
+ export declare type ShepherdAlertsResult = ShepherdAlertsConnection | ShepherdQueryError;
12047
12234
  export declare type ShepherdAppInfo = {
12048
12235
  __typename?: 'ShepherdAppInfo';
12049
12236
  apiVersion: Scalars['Int'];
12237
+ env: Scalars['String'];
12238
+ loginUrl: Scalars['String'];
12050
12239
  };
12051
12240
  export declare type ShepherdCreateAlertInput = {
12052
12241
  cloudId?: Maybe<Scalars['ID']>;
@@ -12060,23 +12249,59 @@ export declare type ShepherdCreateAlertPayload = Payload & {
12060
12249
  node?: Maybe<ShepherdAlert>;
12061
12250
  success: Scalars['Boolean'];
12062
12251
  };
12252
+ export declare type ShepherdCreateOrganizationInput = {
12253
+ enabled?: Maybe<Scalars['Boolean']>;
12254
+ id: Scalars['ID'];
12255
+ };
12256
+ export declare type ShepherdCreateOrganizationPayload = Payload & {
12257
+ __typename?: 'ShepherdCreateOrganizationPayload';
12258
+ errors?: Maybe<Array<MutationError>>;
12259
+ node?: Maybe<ShepherdOrganization>;
12260
+ success: Scalars['Boolean'];
12261
+ };
12262
+ export declare enum ShepherdErrorType {
12263
+ NoProductAccess = "NO_PRODUCT_ACCESS",
12264
+ Unauthorized = "UNAUTHORIZED"
12265
+ }
12266
+ export declare type ShepherdGenericQueryErrorExtension = ShepherdQueryErrorExtension & {
12267
+ __typename?: 'ShepherdGenericQueryErrorExtension';
12268
+ errorType?: Maybe<ShepherdErrorType>;
12269
+ statusCode?: Maybe<Scalars['Int']>;
12270
+ };
12063
12271
  export declare type ShepherdMutation = {
12064
12272
  __typename?: 'ShepherdMutation';
12065
12273
  createAlert?: Maybe<ShepherdCreateAlertPayload>;
12274
+ createOrganization?: Maybe<ShepherdCreateOrganizationPayload>;
12066
12275
  updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
12276
+ updateOrganization?: Maybe<ShepherdUpdateOrganizationPayload>;
12067
12277
  };
12068
12278
  export declare type ShepherdMutationCreateAlertArgs = {
12069
12279
  input: ShepherdCreateAlertInput;
12070
12280
  };
12281
+ export declare type ShepherdMutationCreateOrganizationArgs = {
12282
+ input: ShepherdCreateOrganizationInput;
12283
+ };
12071
12284
  export declare type ShepherdMutationUpdateAlertArgs = {
12072
12285
  id: Scalars['ID'];
12073
12286
  input: ShepherdUpdateAlertInput;
12074
12287
  };
12288
+ export declare type ShepherdMutationUpdateOrganizationArgs = {
12289
+ id: Scalars['ID'];
12290
+ input: ShepherdUpdateOrganizationInput;
12291
+ };
12292
+ export declare type ShepherdOrganization = {
12293
+ __typename?: 'ShepherdOrganization';
12294
+ createdOn: Scalars['DateTime'];
12295
+ enabled: Scalars['Boolean'];
12296
+ id: Scalars['ID'];
12297
+ updatedOn?: Maybe<Scalars['DateTime']>;
12298
+ };
12075
12299
  export declare type ShepherdQuery = {
12076
12300
  __typename?: 'ShepherdQuery';
12077
- shepherdAlert?: Maybe<ShepherdAlert>;
12078
- shepherdAlerts?: Maybe<Array<ShepherdAlert>>;
12301
+ shepherdAlert?: Maybe<ShepherdAlertResult>;
12302
+ shepherdAlerts?: Maybe<ShepherdAlertsResult>;
12079
12303
  shepherdAppInfo: ShepherdAppInfo;
12304
+ shepherdOrganization?: Maybe<ShepherdOrganization>;
12080
12305
  shepherdUser?: Maybe<ShepherdUser>;
12081
12306
  };
12082
12307
  export declare type ShepherdQueryShepherdAlertArgs = {
@@ -12085,6 +12310,19 @@ export declare type ShepherdQueryShepherdAlertArgs = {
12085
12310
  export declare type ShepherdQueryShepherdAlertsArgs = {
12086
12311
  orgId: Scalars['ID'];
12087
12312
  };
12313
+ export declare type ShepherdQueryShepherdOrganizationArgs = {
12314
+ id: Scalars['ID'];
12315
+ };
12316
+ export declare type ShepherdQueryError = {
12317
+ __typename?: 'ShepherdQueryError';
12318
+ extensions?: Maybe<Array<ShepherdQueryErrorExtension>>;
12319
+ identifier?: Maybe<Scalars['ID']>;
12320
+ message?: Maybe<Scalars['String']>;
12321
+ };
12322
+ export declare type ShepherdQueryErrorExtension = {
12323
+ errorType?: Maybe<ShepherdErrorType>;
12324
+ statusCode?: Maybe<Scalars['Int']>;
12325
+ };
12088
12326
  export declare type ShepherdUpdateAlertInput = {
12089
12327
  status?: Maybe<ShepherdAlertStatus>;
12090
12328
  };
@@ -12094,9 +12332,18 @@ export declare type ShepherdUpdateAlertPayload = Payload & {
12094
12332
  node?: Maybe<ShepherdAlert>;
12095
12333
  success: Scalars['Boolean'];
12096
12334
  };
12335
+ export declare type ShepherdUpdateOrganizationInput = {
12336
+ enabled?: Maybe<Scalars['Boolean']>;
12337
+ };
12338
+ export declare type ShepherdUpdateOrganizationPayload = Payload & {
12339
+ __typename?: 'ShepherdUpdateOrganizationPayload';
12340
+ errors?: Maybe<Array<MutationError>>;
12341
+ node?: Maybe<ShepherdOrganization>;
12342
+ success: Scalars['Boolean'];
12343
+ };
12097
12344
  export declare type ShepherdUser = {
12098
12345
  __typename?: 'ShepherdUser';
12099
- aid: Scalars['ID'];
12346
+ user?: Maybe<User>;
12100
12347
  };
12101
12348
  export declare type SoftwareBoard = {
12102
12349
  __typename?: 'SoftwareBoard';
@@ -12317,9 +12564,9 @@ export declare type SupportRequest = SupportRequestCommonRequest & {
12317
12564
  reporter: SupportRequestUser;
12318
12565
  participants: Array<SupportRequestUser>;
12319
12566
  fields: Array<SupportRequestField>;
12320
- comments: SupportRequestComments;
12567
+ comments?: Maybe<SupportRequestComments>;
12321
12568
  statuses: SupportRequestStatuses;
12322
- transitions: SupportRequestTransitions;
12569
+ transitions?: Maybe<SupportRequestTransitions>;
12323
12570
  targetScreen: Scalars['String'];
12324
12571
  lastComment: SupportRequestComments;
12325
12572
  };
@@ -12347,6 +12594,7 @@ export declare type SupportRequestCatalogMutationApi = {
12347
12594
  __typename?: 'SupportRequestCatalogMutationApi';
12348
12595
  addComment?: Maybe<SupportRequestComment>;
12349
12596
  statusTransition?: Maybe<Scalars['Boolean']>;
12597
+ removeRequestParticipants?: Maybe<SupportRequestParticipants>;
12350
12598
  createNamedContactOperationRequest?: Maybe<SupportRequest>;
12351
12599
  };
12352
12600
  export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
@@ -12355,6 +12603,9 @@ export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
12355
12603
  export declare type SupportRequestCatalogMutationApiStatusTransitionArgs = {
12356
12604
  input?: Maybe<SupportRequestTransitionInput>;
12357
12605
  };
12606
+ export declare type SupportRequestCatalogMutationApiRemoveRequestParticipantsArgs = {
12607
+ input?: Maybe<SupportRequestParticipantsInput>;
12608
+ };
12358
12609
  export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationRequestArgs = {
12359
12610
  emails: Array<Scalars['String']>;
12360
12611
  organizationId?: Maybe<Scalars['String']>;
@@ -12478,6 +12729,19 @@ export declare type SupportRequestPageMigrationRequestsArgs = {
12478
12729
  offset?: Scalars['Int'];
12479
12730
  size?: Scalars['Int'];
12480
12731
  };
12732
+ export declare type SupportRequestParticipants = {
12733
+ __typename?: 'SupportRequestParticipants';
12734
+ offset: Scalars['Int'];
12735
+ limit: Scalars['Int'];
12736
+ size: Scalars['Int'];
12737
+ lastPage: Scalars['Boolean'];
12738
+ values: Array<SupportRequestUser>;
12739
+ };
12740
+ export declare type SupportRequestParticipantsInput = {
12741
+ requestKey: Scalars['String'];
12742
+ aaids?: Maybe<Array<Scalars['String']>>;
12743
+ gsacUsernames?: Maybe<Array<Scalars['String']>>;
12744
+ };
12481
12745
  export declare enum SupportRequestQueryOwnership {
12482
12746
  Reporter = "REPORTER",
12483
12747
  Participant = "PARTICIPANT"
@@ -12508,6 +12772,8 @@ export declare type SupportRequestStatuses = {
12508
12772
  export declare type SupportRequestTicket = {
12509
12773
  __typename?: 'SupportRequestTicket';
12510
12774
  issueKey?: Maybe<Scalars['String']>;
12775
+ statusName?: Maybe<Scalars['String']>;
12776
+ categoryKey?: Maybe<Scalars['String']>;
12511
12777
  };
12512
12778
  export declare type SupportRequestTransition = {
12513
12779
  __typename?: 'SupportRequestTransition';
@@ -12556,8 +12822,12 @@ export declare enum SwimlaneStrategy {
12556
12822
  export declare type Team = {
12557
12823
  __typename?: 'Team';
12558
12824
  id: Scalars['ID'];
12825
+ organizationId?: Maybe<Scalars['String']>;
12826
+ creator?: Maybe<User>;
12827
+ state?: Maybe<TeamState>;
12559
12828
  displayName?: Maybe<Scalars['String']>;
12560
12829
  description?: Maybe<Scalars['String']>;
12830
+ membershipSetting?: Maybe<MembershipSetting>;
12561
12831
  smallHeaderImageUrl?: Maybe<Scalars['String']>;
12562
12832
  largeHeaderImageUrl?: Maybe<Scalars['String']>;
12563
12833
  smallAvatarImageUrl?: Maybe<Scalars['String']>;
@@ -12567,7 +12837,7 @@ export declare type Team = {
12567
12837
  export declare type TeamMembersArgs = {
12568
12838
  after?: Maybe<Scalars['String']>;
12569
12839
  first?: Scalars['Int'];
12570
- state?: MembershipState;
12840
+ state?: Array<MembershipState>;
12571
12841
  };
12572
12842
  export declare type TeamMember = {
12573
12843
  __typename?: 'TeamMember';
@@ -12593,6 +12863,11 @@ export declare type TeamQuery = {
12593
12863
  export declare type TeamQueryTeamArgs = {
12594
12864
  id: Scalars['ID'];
12595
12865
  };
12866
+ export declare enum TeamState {
12867
+ Active = "ACTIVE",
12868
+ Disbanded = "DISBANDED",
12869
+ Purged = "PURGED"
12870
+ }
12596
12871
  export declare type TenantContext = {
12597
12872
  __typename?: 'TenantContext';
12598
12873
  cloudId?: Maybe<Scalars['ID']>;