@forge/cli-shared 4.1.0-next.0 → 4.1.0-next.1

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
+ ## 4.1.0-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [7bcb26a]
8
+ - @forge/manifest@7.2.1-next.0
9
+
3
10
  ## 4.1.0-next.0
4
11
 
5
12
  ### Minor Changes
@@ -1432,6 +1432,7 @@ export declare type AquaOutgoingEmailLogsQueryApi = {
1432
1432
  GetNotificationLogs?: Maybe<AquaOutgoingEmailLogsQueryResult>;
1433
1433
  };
1434
1434
  export declare type AquaOutgoingEmailLogsQueryApiGetNotificationLogsArgs = {
1435
+ filterActionable?: InputMaybe<Scalars['Boolean']['input']>;
1435
1436
  fromTimestamp?: InputMaybe<Scalars['DateTime']['input']>;
1436
1437
  notificationActionType?: InputMaybe<Scalars['String']['input']>;
1437
1438
  notificationType?: InputMaybe<Scalars['String']['input']>;
@@ -4383,6 +4384,7 @@ export declare type CompassFilteredComponentsCount = {
4383
4384
  export declare type CompassFilteredComponentsCountQuery = {
4384
4385
  fields?: InputMaybe<Array<CompassScorecardAppliedToComponentsFieldFilter>>;
4385
4386
  labels?: InputMaybe<CompassScorecardAppliedToComponentsLabelsFilter>;
4387
+ ownerIds?: InputMaybe<CompassScorecardAppliedToComponentsOwnerFilter>;
4386
4388
  types?: InputMaybe<CompassScorecardAppliedToComponentsTypesFilter>;
4387
4389
  };
4388
4390
  export declare type CompassFilteredComponentsCountResult = CompassFilteredComponentsCount | QueryError;
@@ -4814,8 +4816,11 @@ export declare type CompassPullRequestInputProperties = {
4814
4816
  status: CompassCreatePullRequestStatus;
4815
4817
  };
4816
4818
  export declare enum CompassPullRequestQuerySortName {
4819
+ CycleTime = "CYCLE_TIME",
4820
+ OpenToFirstReview = "OPEN_TO_FIRST_REVIEW",
4817
4821
  PrClosedTime = "PR_CLOSED_TIME",
4818
- PrCreatedTime = "PR_CREATED_TIME"
4822
+ PrCreatedTime = "PR_CREATED_TIME",
4823
+ ReviewTime = "REVIEW_TIME"
4819
4824
  }
4820
4825
  export declare type CompassPullRequestStats = {
4821
4826
  __typename?: 'CompassPullRequestStats';
@@ -9411,9 +9416,17 @@ export declare type DevAiAutofixConfigurationsArgs = {
9411
9416
  };
9412
9417
  export declare type DevAiAutofixConfiguration = {
9413
9418
  __typename?: 'DevAiAutofixConfiguration';
9419
+ canEdit?: Maybe<Scalars['Boolean']['output']>;
9420
+ codeCoverageCommand?: Maybe<Scalars['String']['output']>;
9421
+ codeCoverageReportPath?: Maybe<Scalars['String']['output']>;
9414
9422
  id: Scalars['ID']['output'];
9415
9423
  isEnabled?: Maybe<Scalars['Boolean']['output']>;
9424
+ isScanning?: Maybe<Scalars['Boolean']['output']>;
9416
9425
  lastScan?: Maybe<Scalars['DateTime']['output']>;
9426
+ openPullRequestsCount?: Maybe<Scalars['Int']['output']>;
9427
+ openPullRequestsUrl?: Maybe<Scalars['URL']['output']>;
9428
+ primaryLanguage?: Maybe<Scalars['String']['output']>;
9429
+ repoUrl?: Maybe<Scalars['URL']['output']>;
9417
9430
  };
9418
9431
  export declare type DevAiAutofixConfigurationConnection = {
9419
9432
  __typename?: 'DevAiAutofixConfigurationConnection';
@@ -9432,21 +9445,56 @@ export declare type DevAiGenericMutationErrorExtension = MutationErrorExtension
9432
9445
  };
9433
9446
  export declare type DevAiMutations = {
9434
9447
  __typename?: 'DevAiMutations';
9448
+ setAutofixConfigurationForRepository?: Maybe<DevAiSetAutofixConfigurationForRepositoryPayload>;
9449
+ setAutofixEnabledStateForRepository?: Maybe<DevAiSetIsAutofixEnabledForRepositoryPayload>;
9435
9450
  triggerAutofixScan?: Maybe<DevAiTriggerAutofixScanPayload>;
9436
9451
  };
9452
+ export declare type DevAiMutationsSetAutofixConfigurationForRepositoryArgs = {
9453
+ input: DevAiSetAutofixConfigurationForRepositoryInput;
9454
+ };
9455
+ export declare type DevAiMutationsSetAutofixEnabledStateForRepositoryArgs = {
9456
+ input: DevAiSetAutofixEnabledStateForRepositoryInput;
9457
+ };
9437
9458
  export declare type DevAiMutationsTriggerAutofixScanArgs = {
9438
9459
  input: DevAiTriggerAutofixScanInput;
9439
9460
  };
9461
+ export declare type DevAiSetAutofixConfigurationForRepositoryInput = {
9462
+ codeCoverageCommand: Scalars['String']['input'];
9463
+ codeCoverageReportPath: Scalars['String']['input'];
9464
+ coveragePercentage: Scalars['Int']['input'];
9465
+ primaryLanguage: Scalars['String']['input'];
9466
+ repoUrl: Scalars['URL']['input'];
9467
+ workspaceId: Scalars['ID']['input'];
9468
+ };
9469
+ export declare type DevAiSetAutofixConfigurationForRepositoryPayload = Payload & {
9470
+ __typename?: 'DevAiSetAutofixConfigurationForRepositoryPayload';
9471
+ configuration?: Maybe<DevAiAutofixConfiguration>;
9472
+ errors?: Maybe<Array<MutationError>>;
9473
+ success: Scalars['Boolean']['output'];
9474
+ };
9475
+ export declare type DevAiSetAutofixEnabledStateForRepositoryInput = {
9476
+ isEnabled: Scalars['Boolean']['input'];
9477
+ repoUrl: Scalars['URL']['input'];
9478
+ workspaceId: Scalars['ID']['input'];
9479
+ };
9480
+ export declare type DevAiSetIsAutofixEnabledForRepositoryPayload = Payload & {
9481
+ __typename?: 'DevAiSetIsAutofixEnabledForRepositoryPayload';
9482
+ configuration?: Maybe<DevAiAutofixConfiguration>;
9483
+ errors?: Maybe<Array<MutationError>>;
9484
+ success: Scalars['Boolean']['output'];
9485
+ };
9440
9486
  export declare type DevAiTriggerAutofixScanInput = {
9441
9487
  codeCoverageCommand: Scalars['String']['input'];
9442
9488
  codeCoverageReportPath: Scalars['String']['input'];
9443
9489
  coveragePercentage: Scalars['Int']['input'];
9444
9490
  primaryLanguage: Scalars['String']['input'];
9445
9491
  repoUrl: Scalars['URL']['input'];
9492
+ reviewerUserId?: InputMaybe<Scalars['ID']['input']>;
9446
9493
  workspaceId: Scalars['ID']['input'];
9447
9494
  };
9448
9495
  export declare type DevAiTriggerAutofixScanPayload = Payload & {
9449
9496
  __typename?: 'DevAiTriggerAutofixScanPayload';
9497
+ configuration?: Maybe<DevAiAutofixConfiguration>;
9450
9498
  errors?: Maybe<Array<MutationError>>;
9451
9499
  success: Scalars['Boolean']['output'];
9452
9500
  };
@@ -27429,17 +27477,21 @@ export declare type InsightsNextBestTaskEdge = {
27429
27477
  export declare type InsightsPullRequestNeedsWorkDetails = {
27430
27478
  __typename?: 'InsightsPullRequestNeedsWorkDetails';
27431
27479
  commentCount: Scalars['Int']['output'];
27480
+ destinationBranchName?: Maybe<Scalars['String']['output']>;
27432
27481
  lastUpdated: Scalars['String']['output'];
27433
27482
  needsWorkCount: Scalars['Int']['output'];
27434
27483
  repositoryName?: Maybe<Scalars['String']['output']>;
27484
+ sourceBranchName?: Maybe<Scalars['String']['output']>;
27435
27485
  };
27436
27486
  export declare type InsightsPullRequestNeedsWorkTask = InsightsNextBestTaskCommon & {
27437
27487
  __typename?: 'InsightsPullRequestNeedsWorkTask';
27438
27488
  commentCount: Scalars['Int']['output'];
27489
+ destinationBranchName?: Maybe<Scalars['String']['output']>;
27439
27490
  id: Scalars['String']['output'];
27440
27491
  lastUpdated: Scalars['String']['output'];
27441
27492
  needsWorkCount: Scalars['Int']['output'];
27442
27493
  repositoryName?: Maybe<Scalars['String']['output']>;
27494
+ sourceBranchName?: Maybe<Scalars['String']['output']>;
27443
27495
  title: Scalars['String']['output'];
27444
27496
  url: Scalars['String']['output'];
27445
27497
  };
@@ -27447,16 +27499,20 @@ export declare type InsightsPullRequestReviewDetails = {
27447
27499
  __typename?: 'InsightsPullRequestReviewDetails';
27448
27500
  approvalsCount: Scalars['Int']['output'];
27449
27501
  commentCount: Scalars['Int']['output'];
27502
+ destinationBranchName?: Maybe<Scalars['String']['output']>;
27450
27503
  lastUpdated: Scalars['String']['output'];
27451
27504
  repositoryName?: Maybe<Scalars['String']['output']>;
27505
+ sourceBranchName?: Maybe<Scalars['String']['output']>;
27452
27506
  };
27453
27507
  export declare type InsightsPullRequestReviewTask = InsightsNextBestTaskCommon & {
27454
27508
  __typename?: 'InsightsPullRequestReviewTask';
27455
27509
  approvalsCount: Scalars['Int']['output'];
27456
27510
  commentCount: Scalars['Int']['output'];
27511
+ destinationBranchName?: Maybe<Scalars['String']['output']>;
27457
27512
  id: Scalars['String']['output'];
27458
27513
  lastUpdated: Scalars['String']['output'];
27459
27514
  repositoryName?: Maybe<Scalars['String']['output']>;
27515
+ sourceBranchName?: Maybe<Scalars['String']['output']>;
27460
27516
  title: Scalars['String']['output'];
27461
27517
  url: Scalars['String']['output'];
27462
27518
  };
@@ -31153,6 +31209,7 @@ export declare type JiraIssue = Node & {
31153
31209
  lifecycleState?: Maybe<JiraIssueLifecycleState>;
31154
31210
  linkedDesigns?: Maybe<GraphJiraDesignConnection>;
31155
31211
  mediaReadToken?: Maybe<JiraMediaReadToken>;
31212
+ mediaUploadToken?: Maybe<JiraMediaUploadTokenResult>;
31156
31213
  postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
31157
31214
  priorityField?: Maybe<JiraPriorityField>;
31158
31215
  projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
@@ -31368,7 +31425,9 @@ export declare type JiraIssueBulkOperationsMetadata = {
31368
31425
  __typename?: 'JiraIssueBulkOperationsMetadata';
31369
31426
  maxNumberOfIssues?: Maybe<Scalars['Long']['output']>;
31370
31427
  };
31371
- export declare type JiraIssueCommandPaletteAction = JiraIssueCommandPaletteUpdateFieldAction | JiraIssueGenericCommandPaletteAction;
31428
+ export declare type JiraIssueCommandPaletteAction = {
31429
+ id: Scalars['ID']['output'];
31430
+ };
31372
31431
  export declare type JiraIssueCommandPaletteActionConnection = {
31373
31432
  __typename?: 'JiraIssueCommandPaletteActionConnection';
31374
31433
  edges?: Maybe<Array<Maybe<JiraIssueCommandPaletteActionEdge>>>;
@@ -31386,9 +31445,10 @@ export declare type JiraIssueCommandPaletteActionUnsupportedErrorExtension = Que
31386
31445
  errorType?: Maybe<Scalars['String']['output']>;
31387
31446
  statusCode?: Maybe<Scalars['Int']['output']>;
31388
31447
  };
31389
- export declare type JiraIssueCommandPaletteUpdateFieldAction = {
31448
+ export declare type JiraIssueCommandPaletteUpdateFieldAction = JiraIssueCommandPaletteAction & Node & {
31390
31449
  __typename?: 'JiraIssueCommandPaletteUpdateFieldAction';
31391
31450
  field: JiraIssueField;
31451
+ id: Scalars['ID']['output'];
31392
31452
  };
31393
31453
  export declare type JiraIssueCommitDevSummary = {
31394
31454
  __typename?: 'JiraIssueCommitDevSummary';
@@ -31596,9 +31656,10 @@ export declare type JiraIssueFieldsInput = {
31596
31656
  timeTrackingField?: InputMaybe<JiraTimeTrackingFieldInput>;
31597
31657
  urlFields?: InputMaybe<Array<JiraUrlFieldInput>>;
31598
31658
  };
31599
- export declare type JiraIssueGenericCommandPaletteAction = {
31659
+ export declare type JiraIssueGenericCommandPaletteAction = JiraIssueCommandPaletteAction & Node & {
31600
31660
  __typename?: 'JiraIssueGenericCommandPaletteAction';
31601
31661
  actionName: Scalars['String']['output'];
31662
+ id: Scalars['ID']['output'];
31602
31663
  };
31603
31664
  export declare type JiraIssueHierarchyConfigData = {
31604
31665
  __typename?: 'JiraIssueHierarchyConfigData';
@@ -40282,6 +40343,26 @@ export declare type JsmChatChannelSettings = {
40282
40343
  isVirtualAgentChannel?: Maybe<Scalars['Boolean']['output']>;
40283
40344
  isVirtualAgentTestChannel?: Maybe<Scalars['Boolean']['output']>;
40284
40345
  };
40346
+ export declare enum JsmChatChannelType {
40347
+ Agent = "AGENT",
40348
+ Request = "REQUEST"
40349
+ }
40350
+ export declare type JsmChatCreateChannelInput = {
40351
+ aaid: Scalars['String']['input'];
40352
+ activationId: Scalars['String']['input'];
40353
+ channelName: Scalars['String']['input'];
40354
+ channelType: JsmChatChannelType;
40355
+ isVirtualAgent?: InputMaybe<Scalars['Boolean']['input']>;
40356
+ isVirtualAgentTestChannel?: InputMaybe<Scalars['Boolean']['input']>;
40357
+ projectId: Scalars['String']['input'];
40358
+ requestTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
40359
+ siteId: Scalars['String']['input'];
40360
+ };
40361
+ export declare type JsmChatCreateChannelOutput = {
40362
+ __typename?: 'JsmChatCreateChannelOutput';
40363
+ message: Scalars['String']['output'];
40364
+ status: Scalars['Boolean']['output'];
40365
+ };
40285
40366
  export declare type JsmChatDisconnectJiraProjectInput = {
40286
40367
  activationId: Scalars['ID']['input'];
40287
40368
  projectId: Scalars['ID']['input'];
@@ -40309,10 +40390,14 @@ export declare type JsmChatInitializeConfigResponse = {
40309
40390
  };
40310
40391
  export declare type JsmChatMutation = {
40311
40392
  __typename?: 'JsmChatMutation';
40393
+ createChannel: JsmChatCreateChannelOutput;
40312
40394
  disconnectJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
40313
40395
  updateChannelSettings: JsmChatUpdateChannelSettingsOutput;
40314
40396
  updateProjectSettings?: Maybe<JsmChatUpdateProjectSettingsOutput>;
40315
40397
  };
40398
+ export declare type JsmChatMutationCreateChannelArgs = {
40399
+ input?: InputMaybe<JsmChatCreateChannelInput>;
40400
+ };
40316
40401
  export declare type JsmChatMutationDisconnectJiraProjectArgs = {
40317
40402
  input: JsmChatDisconnectJiraProjectInput;
40318
40403
  };
@@ -40451,6 +40536,24 @@ export declare enum KnowledgeDiscoveryEntityType {
40451
40536
  Keyword = "KEYWORD",
40452
40537
  Topic = "TOPIC"
40453
40538
  }
40539
+ export declare type KnowledgeDiscoveryKeyPhrase = {
40540
+ __typename?: 'KnowledgeDiscoveryKeyPhrase';
40541
+ keyPhrase: Scalars['String']['output'];
40542
+ };
40543
+ export declare type KnowledgeDiscoveryKeyPhraseConnection = {
40544
+ __typename?: 'KnowledgeDiscoveryKeyPhraseConnection';
40545
+ nodes?: Maybe<Array<Maybe<KnowledgeDiscoveryKeyPhrase>>>;
40546
+ pageInfo: PageInfo;
40547
+ };
40548
+ export declare type KnowledgeDiscoveryKeyPhraseInputText = {
40549
+ format: KnowledgeDiscoveryKeyPhraseInputTextFormat;
40550
+ text: Scalars['String']['input'];
40551
+ };
40552
+ export declare enum KnowledgeDiscoveryKeyPhraseInputTextFormat {
40553
+ Adf = "ADF",
40554
+ Plain = "PLAIN"
40555
+ }
40556
+ export declare type KnowledgeDiscoveryKeyPhrasesResult = KnowledgeDiscoveryKeyPhraseConnection | QueryError;
40454
40557
  export declare type KnowledgeDiscoveryMutationApi = {
40455
40558
  __typename?: 'KnowledgeDiscoveryMutationApi';
40456
40559
  createDefinition?: Maybe<KnowledgeDiscoveryCreateDefinitionPayload>;
@@ -40462,6 +40565,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
40462
40565
  __typename?: 'KnowledgeDiscoveryQueryApi';
40463
40566
  definition?: Maybe<KnowledgeDiscoveryDefinitionResult>;
40464
40567
  definitionHistory?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
40568
+ keyPhrases?: Maybe<KnowledgeDiscoveryKeyPhrasesResult>;
40465
40569
  relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntityConnection>;
40466
40570
  smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
40467
40571
  topic?: Maybe<KnowledgeDiscoveryTopicResult>;
@@ -40474,6 +40578,15 @@ export declare type KnowledgeDiscoveryQueryApiDefinitionHistoryArgs = {
40474
40578
  keyPhrase: Scalars['String']['input'];
40475
40579
  workspaceId: Scalars['String']['input'];
40476
40580
  };
40581
+ export declare type KnowledgeDiscoveryQueryApiKeyPhrasesArgs = {
40582
+ after?: InputMaybe<Scalars['String']['input']>;
40583
+ cloudId?: InputMaybe<Scalars['String']['input']>;
40584
+ entityAri?: InputMaybe<Scalars['String']['input']>;
40585
+ first?: InputMaybe<Scalars['Int']['input']>;
40586
+ inputText?: InputMaybe<KnowledgeDiscoveryKeyPhraseInputText>;
40587
+ limited?: InputMaybe<Scalars['Boolean']['input']>;
40588
+ workspaceId?: InputMaybe<Scalars['String']['input']>;
40589
+ };
40477
40590
  export declare type KnowledgeDiscoveryQueryApiRelatedEntitiesArgs = {
40478
40591
  after?: InputMaybe<Scalars['String']['input']>;
40479
40592
  cloudId?: InputMaybe<Scalars['String']['input']>;
@@ -46495,6 +46608,7 @@ export declare type SearchResultGoogleDocument = SearchResult & {
46495
46608
  excerpt?: Maybe<Scalars['String']['output']>;
46496
46609
  iconUrl?: Maybe<Scalars['URL']['output']>;
46497
46610
  id: Scalars['ID']['output'];
46611
+ isRestricted?: Maybe<Scalars['Boolean']['output']>;
46498
46612
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
46499
46613
  title: Scalars['String']['output'];
46500
46614
  type: SearchResultType;
@@ -46599,6 +46713,7 @@ export declare type SearchResultMicrosoftDocument = SearchResult & {
46599
46713
  excerpt?: Maybe<Scalars['String']['output']>;
46600
46714
  iconUrl?: Maybe<Scalars['URL']['output']>;
46601
46715
  id: Scalars['ID']['output'];
46716
+ isRestricted?: Maybe<Scalars['Boolean']['output']>;
46602
46717
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
46603
46718
  title: Scalars['String']['output'];
46604
46719
  type: SearchResultType;
@@ -47003,6 +47118,7 @@ export declare type ShepherdAlertEdge = {
47003
47118
  };
47004
47119
  export declare type ShepherdAlertMetaData = {
47005
47120
  __typename?: 'ShepherdAlertMetaData';
47121
+ dspList?: Maybe<ShepherdDspListMetadata>;
47006
47122
  siteContainerResourceCount?: Maybe<Scalars['Int']['output']>;
47007
47123
  };
47008
47124
  export declare type ShepherdAlertQueries = {
@@ -47326,6 +47442,7 @@ export declare type ShepherdDescriptionTemplate = {
47326
47442
  __typename?: 'ShepherdDescriptionTemplate';
47327
47443
  extendedText?: Maybe<Scalars['JSON']['output']>;
47328
47444
  investigationText?: Maybe<Scalars['JSON']['output']>;
47445
+ remediationActions?: Maybe<Array<ShepherdRemediationAction>>;
47329
47446
  remediationText?: Maybe<Scalars['JSON']['output']>;
47330
47447
  text?: Maybe<Scalars['JSON']['output']>;
47331
47448
  type?: Maybe<ShepherdAlertTemplateType>;
@@ -47417,6 +47534,11 @@ export declare type ShepherdDetectionUpdateSettingValuePayload = Payload & {
47417
47534
  node?: Maybe<ShepherdDetectionSetting>;
47418
47535
  success: Scalars['Boolean']['output'];
47419
47536
  };
47537
+ export declare type ShepherdDspListMetadata = {
47538
+ __typename?: 'ShepherdDspListMetadata';
47539
+ isSwitched?: Maybe<Scalars['Boolean']['output']>;
47540
+ type?: Maybe<Scalars['String']['output']>;
47541
+ };
47420
47542
  export declare type ShepherdExclusionContentInfo = {
47421
47543
  __typename?: 'ShepherdExclusionContentInfo';
47422
47544
  ari?: Maybe<Scalars['String']['output']>;
@@ -47627,6 +47749,58 @@ export declare type ShepherdRelatedAlertType = {
47627
47749
  template?: Maybe<ShepherdAlertTemplateType>;
47628
47750
  title?: Maybe<ShepherdAlertTitle>;
47629
47751
  };
47752
+ export declare type ShepherdRemediationAction = {
47753
+ __typename?: 'ShepherdRemediationAction';
47754
+ description?: Maybe<Scalars['String']['output']>;
47755
+ linkHref?: Maybe<Scalars['String']['output']>;
47756
+ linkText?: Maybe<Scalars['String']['output']>;
47757
+ type: ShepherdRemediationActionType;
47758
+ };
47759
+ export declare enum ShepherdRemediationActionType {
47760
+ AnonAccessDspRemediation = "ANON_ACCESS_DSP_REMEDIATION",
47761
+ ApplyClassificationRemediation = "APPLY_CLASSIFICATION_REMEDIATION",
47762
+ AppsAccessDspRemediation = "APPS_ACCESS_DSP_REMEDIATION",
47763
+ ArchiveRestoreClassificationRemediation = "ARCHIVE_RESTORE_CLASSIFICATION_REMEDIATION",
47764
+ BlockchainExplorerRemediation = "BLOCKCHAIN_EXPLORER_REMEDIATION",
47765
+ BlockIpAllowlistRemediation = "BLOCK_IP_ALLOWLIST_REMEDIATION",
47766
+ ClassificationLevelChangeRemediation = "CLASSIFICATION_LEVEL_CHANGE_REMEDIATION",
47767
+ ConfluenceAnonAccessRemediation = "CONFLUENCE_ANON_ACCESS_REMEDIATION",
47768
+ DeleteDataRemediation = "DELETE_DATA_REMEDIATION",
47769
+ DeleteFilesRemediation = "DELETE_FILES_REMEDIATION",
47770
+ EditCustomDetectionRemediation = "EDIT_CUSTOM_DETECTION_REMEDIATION",
47771
+ ExcludePageRemediation = "EXCLUDE_PAGE_REMEDIATION",
47772
+ ExportsDspRemediation = "EXPORTS_DSP_REMEDIATION",
47773
+ ExportSpacePermissionsRemediation = "EXPORT_SPACE_PERMISSIONS_REMEDIATION",
47774
+ JiraGlobalPermissionsRemediation = "JIRA_GLOBAL_PERMISSIONS_REMEDIATION",
47775
+ LimitJiraPermissionsRemediation = "LIMIT_JIRA_PERMISSIONS_REMEDIATION",
47776
+ ManageAppsRemediation = "MANAGE_APPS_REMEDIATION",
47777
+ ManageDomainRemediation = "MANAGE_DOMAIN_REMEDIATION",
47778
+ ManageDspRemediation = "MANAGE_DSP_REMEDIATION",
47779
+ PublicAccessDspRemediation = "PUBLIC_ACCESS_DSP_REMEDIATION",
47780
+ RestoreAccessRemediation = "RESTORE_ACCESS_REMEDIATION",
47781
+ ReviewAccessRemediation = "REVIEW_ACCESS_REMEDIATION",
47782
+ ReviewApiTokensRemediation = "REVIEW_API_TOKENS_REMEDIATION",
47783
+ ReviewAuditLogRemediation = "REVIEW_AUDIT_LOG_REMEDIATION",
47784
+ ReviewAuthPolicyRemediation = "REVIEW_AUTH_POLICY_REMEDIATION",
47785
+ ReviewGsyncRemediation = "REVIEW_GSYNC_REMEDIATION",
47786
+ ReviewIpAllowlistRemediation = "REVIEW_IP_ALLOWLIST_REMEDIATION",
47787
+ ReviewOtherAuthPoliciesRemediation = "REVIEW_OTHER_AUTH_POLICIES_REMEDIATION",
47788
+ ReviewOtherIpAllowlistRemediation = "REVIEW_OTHER_IP_ALLOWLIST_REMEDIATION",
47789
+ ReviewPageRemediation = "REVIEW_PAGE_REMEDIATION",
47790
+ ReviewSamlRemediation = "REVIEW_SAML_REMEDIATION",
47791
+ ReviewScimRemediation = "REVIEW_SCIM_REMEDIATION",
47792
+ ReviewTunnelsConfigurationRemediation = "REVIEW_TUNNELS_CONFIGURATION_REMEDIATION",
47793
+ ReviewTunnelsRemediation = "REVIEW_TUNNELS_REMEDIATION",
47794
+ RevokeAccessRemediation = "REVOKE_ACCESS_REMEDIATION",
47795
+ RevokeApiKeyRemediation = "REVOKE_API_KEY_REMEDIATION",
47796
+ RevokeApiTokensRemediation = "REVOKE_API_TOKENS_REMEDIATION",
47797
+ SpacePermissionsRemediation = "SPACE_PERMISSIONS_REMEDIATION",
47798
+ SuspendActorRemediation = "SUSPEND_ACTOR_REMEDIATION",
47799
+ SuspendSubjectRemediation = "SUSPEND_SUBJECT_REMEDIATION",
47800
+ TurnOffJiraPermissionsRemediation = "TURN_OFF_JIRA_PERMISSIONS_REMEDIATION",
47801
+ TwoStepPolicyRemediation = "TWO_STEP_POLICY_REMEDIATION",
47802
+ ViewSpacePermissionsRemediation = "VIEW_SPACE_PERMISSIONS_REMEDIATION"
47803
+ }
47630
47804
  export declare type ShepherdResourceActivity = {
47631
47805
  __typename?: 'ShepherdResourceActivity';
47632
47806
  action: ShepherdActionType;
@@ -49093,7 +49267,7 @@ export declare type ToolchainAssociateEntityInput = {
49093
49267
  fromId: Scalars['ID']['input'];
49094
49268
  toEntityUrl: Scalars['URL']['input'];
49095
49269
  };
49096
- export declare type ToolchainAssociatedContainer = DevOpsDocument | DevOpsOperationsComponentDetails | DevOpsRepository | DevOpsService;
49270
+ export declare type ToolchainAssociatedContainer = DevOpsDocument | DevOpsOperationsComponentDetails | DevOpsRepository | DevOpsService | ThirdPartySecurityContainer;
49097
49271
  export declare type ToolchainAssociatedEntity = DevOpsDesign;
49098
49272
  export declare type ToolchainCheck3LoAuth = ToolchainCheckAuth & {
49099
49273
  __typename?: 'ToolchainCheck3LOAuth';
@@ -50874,18 +51048,13 @@ export declare type UnassignIssueParentOutput = MutationResponse & {
50874
51048
  export declare type UnifiedAccount = {
50875
51049
  __typename?: 'UnifiedAccount';
50876
51050
  aaid: Scalars['ID']['output'];
50877
- conpAaid?: Maybe<Scalars['String']['output']>;
50878
- uaIid?: Maybe<Scalars['String']['output']>;
50879
- upIid?: Maybe<Scalars['String']['output']>;
50880
- };
50881
- export declare type UnifiedAccountInput = {
50882
- aaid: Scalars['String']['input'];
50883
- conpAaid?: InputMaybe<Scalars['String']['input']>;
50884
- upIid?: InputMaybe<Scalars['String']['input']>;
51051
+ connectedProductsRefereceId?: Maybe<Scalars['String']['output']>;
51052
+ parentAccountEmailId?: Maybe<Scalars['String']['output']>;
51053
+ parentAccountInternalId?: Maybe<Scalars['String']['output']>;
50885
51054
  };
50886
51055
  export declare type UnifiedCreateAccountSuccess = {
50887
51056
  __typename?: 'UnifiedCreateAccountSuccess';
50888
- data: UnifiedAccount;
51057
+ data: UnifiedParentAccount;
50889
51058
  };
50890
51059
  export declare type UnifiedCreateAccountUnion = UnifiedCreateAccountSuccess | UnifiedError;
50891
51060
  export declare type UnifiedCreateProfileSuccess = {
@@ -50915,61 +51084,95 @@ export declare type UnifiedForumsUser = {
50915
51084
  totalLoginsRecorded: Scalars['String']['output'];
50916
51085
  totalPosts: Scalars['Int']['output'];
50917
51086
  };
51087
+ export declare type UnifiedLinkedAccount = {
51088
+ __typename?: 'UnifiedLinkedAccount';
51089
+ aaid: Scalars['ID']['output'];
51090
+ connectedProductsRefereceId?: Maybe<Scalars['String']['output']>;
51091
+ parentAccountInternalId?: Maybe<Scalars['String']['output']>;
51092
+ };
51093
+ export declare type UnifiedLinkedAccountInput = {
51094
+ aaid: Scalars['String']['input'];
51095
+ connectedProductsRefereceId?: InputMaybe<Scalars['String']['input']>;
51096
+ parentAccountInternalId?: InputMaybe<Scalars['String']['input']>;
51097
+ };
51098
+ export declare type UnifiedLinkedCreateAccountSuccess = {
51099
+ __typename?: 'UnifiedLinkedCreateAccountSuccess';
51100
+ data: UnifiedLinkedAccount;
51101
+ };
51102
+ export declare type UnifiedLinkedCreateAccountUnion = UnifiedError | UnifiedLinkedCreateAccountSuccess;
50918
51103
  export declare type UnifiedMutation = {
50919
51104
  __typename?: 'UnifiedMutation';
50920
- createAccount: UnifiedCreateAccountUnion;
50921
- createProfile: UnifiedCreateProfileUnion;
51105
+ createLinkedAccount: UnifiedLinkedCreateAccountUnion;
51106
+ createParentAccount: UnifiedCreateAccountUnion;
51107
+ createUnifiedProfile: UnifiedCreateProfileUnion;
51108
+ };
51109
+ export declare type UnifiedMutationCreateLinkedAccountArgs = {
51110
+ input: UnifiedLinkedAccountInput;
50922
51111
  };
50923
- export declare type UnifiedMutationCreateAccountArgs = {
50924
- input: UnifiedAccountInput;
51112
+ export declare type UnifiedMutationCreateParentAccountArgs = {
51113
+ input: UnifiedParentAccountInput;
50925
51114
  };
50926
- export declare type UnifiedMutationCreateProfileArgs = {
51115
+ export declare type UnifiedMutationCreateUnifiedProfileArgs = {
50927
51116
  input: UnifiedProfileInput;
50928
51117
  };
51118
+ export declare type UnifiedParentAccount = {
51119
+ __typename?: 'UnifiedParentAccount';
51120
+ parentAccountEmailId?: Maybe<Scalars['String']['output']>;
51121
+ parentAccountInternalId?: Maybe<Scalars['String']['output']>;
51122
+ };
51123
+ export declare type UnifiedParentAccountInput = {
51124
+ parentAccountEmailId?: InputMaybe<Scalars['String']['input']>;
51125
+ };
50929
51126
  export declare type UnifiedProfile = {
50930
51127
  __typename?: 'UnifiedProfile';
50931
- aaids: Array<UnifiedAccount>;
50932
51128
  bio?: Maybe<Scalars['String']['output']>;
50933
- communityId?: Maybe<Scalars['String']['output']>;
50934
51129
  company?: Maybe<Scalars['String']['output']>;
50935
- learningId?: Maybe<Scalars['String']['output']>;
51130
+ forumsId?: Maybe<Scalars['String']['output']>;
51131
+ learnId?: Maybe<Scalars['String']['output']>;
50936
51132
  linkedinUrl?: Maybe<Scalars['String']['output']>;
50937
- name?: Maybe<Scalars['String']['output']>;
51133
+ location?: Maybe<Scalars['String']['output']>;
51134
+ parentAccountInternalId?: Maybe<Scalars['String']['output']>;
50938
51135
  photoUrl?: Maybe<Scalars['String']['output']>;
51136
+ publicName?: Maybe<Scalars['String']['output']>;
50939
51137
  role?: Maybe<Scalars['String']['output']>;
50940
- uaEmailId?: Maybe<Scalars['String']['output']>;
50941
- uaIid?: Maybe<Scalars['String']['output']>;
50942
- upIid: Scalars['ID']['output'];
50943
- upUsername?: Maybe<Scalars['String']['output']>;
51138
+ unifiedProfleInternalId: Scalars['ID']['output'];
51139
+ unifiedProfleUsername?: Maybe<Scalars['String']['output']>;
50944
51140
  websiteUrl?: Maybe<Scalars['String']['output']>;
50945
51141
  };
50946
51142
  export declare type UnifiedProfileInput = {
50947
- aaid: Scalars['String']['input'];
50948
51143
  bio?: InputMaybe<Scalars['String']['input']>;
50949
- communityId?: InputMaybe<Scalars['String']['input']>;
50950
51144
  company?: InputMaybe<Scalars['String']['input']>;
50951
- learningId?: InputMaybe<Scalars['String']['input']>;
51145
+ forumsId?: InputMaybe<Scalars['String']['input']>;
51146
+ learnId?: InputMaybe<Scalars['String']['input']>;
50952
51147
  linkedinUrl?: InputMaybe<Scalars['String']['input']>;
50953
- name?: InputMaybe<Scalars['String']['input']>;
51148
+ location?: InputMaybe<Scalars['String']['input']>;
51149
+ parentAccountInternalId?: InputMaybe<Scalars['String']['input']>;
50954
51150
  photoUrl?: InputMaybe<Scalars['String']['input']>;
51151
+ publicName?: InputMaybe<Scalars['String']['input']>;
50955
51152
  role?: InputMaybe<Scalars['String']['input']>;
50956
- uaEmailId?: InputMaybe<Scalars['String']['input']>;
51153
+ unifiedProfleUsername?: InputMaybe<Scalars['String']['input']>;
51154
+ updatedAt?: InputMaybe<Scalars['String']['input']>;
50957
51155
  websiteUrl?: InputMaybe<Scalars['String']['input']>;
50958
51156
  };
50959
51157
  export declare type UnifiedQuery = {
50960
51158
  __typename?: 'UnifiedQuery';
50961
- account: UnifiedQueryAccountUnion;
50962
51159
  forumSnapshot: UnifiedQueryForumSnapshotUnion;
50963
- profile: UnifiedQueryProfileUnion;
50964
- profiles: UnifiedQueryProfilesUnion;
51160
+ learningCertification: UnifiedQueryLearningCertificationUnion;
51161
+ unifiedAccount: UnifiedQueryAccountUnion;
51162
+ unifiedAccounts: UnifiedQueryAccountUnion;
51163
+ unifiedProfile: UnifiedQueryProfileUnion;
51164
+ unifiedProfiles: UnifiedQueryProfilesUnion;
50965
51165
  };
50966
- export declare type UnifiedQueryAccountArgs = {
51166
+ export declare type UnifiedQueryForumSnapshotArgs = {
50967
51167
  aaid: Scalars['String']['input'];
50968
51168
  };
50969
- export declare type UnifiedQueryForumSnapshotArgs = {
51169
+ export declare type UnifiedQueryLearningCertificationArgs = {
51170
+ aaid: Scalars['String']['input'];
51171
+ };
51172
+ export declare type UnifiedQueryUnifiedAccountArgs = {
50970
51173
  aaid: Scalars['String']['input'];
50971
51174
  };
50972
- export declare type UnifiedQueryProfileArgs = {
51175
+ export declare type UnifiedQueryUnifiedProfileArgs = {
50973
51176
  aaid: Scalars['String']['input'];
50974
51177
  };
50975
51178
  export declare type UnifiedQueryAccountSuccess = {
@@ -50982,6 +51185,11 @@ export declare type UnifiedQueryForumSnapshotSuccess = {
50982
51185
  data: UnifiedForumsUser;
50983
51186
  };
50984
51187
  export declare type UnifiedQueryForumSnapshotUnion = UnifiedError | UnifiedQueryForumSnapshotSuccess;
51188
+ export declare type UnifiedQueryLearningCertificationSuccess = {
51189
+ __typename?: 'UnifiedQueryLearningCertificationSuccess';
51190
+ data: Array<UnifiedUserCertificateDataRes>;
51191
+ };
51192
+ export declare type UnifiedQueryLearningCertificationUnion = UnifiedError | UnifiedQueryLearningCertificationSuccess;
50985
51193
  export declare type UnifiedQueryProfileSuccess = {
50986
51194
  __typename?: 'UnifiedQueryProfileSuccess';
50987
51195
  data: UnifiedProfile;
@@ -50992,6 +51200,16 @@ export declare type UnifiedQueryProfilesSuccess = {
50992
51200
  data: Array<UnifiedProfile>;
50993
51201
  };
50994
51202
  export declare type UnifiedQueryProfilesUnion = UnifiedError | UnifiedQueryProfilesSuccess;
51203
+ export declare type UnifiedUserCertificateDataRes = {
51204
+ __typename?: 'UnifiedUserCertificateDataRes';
51205
+ activeDate: Scalars['String']['output'];
51206
+ expireDate: Scalars['String']['output'];
51207
+ imageUrl: Scalars['String']['output'];
51208
+ inactiveDate: Scalars['String']['output'];
51209
+ name: Scalars['String']['output'];
51210
+ nameAbbr: Scalars['String']['output'];
51211
+ status: Scalars['String']['output'];
51212
+ };
50995
51213
  export declare type UnlinkExternalSourceInput = {
50996
51214
  cloudId: Scalars['ID']['input'];
50997
51215
  ecosystemAppId: Scalars['ID']['input'];