@forge/cli-shared 8.2.0-next.12 → 8.2.0-next.13
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 +6 -0
- package/out/graphql/graphql-types.d.ts +183 -5
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +57 -20
- package/out/ui/text.d.ts +32 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +34 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9286,6 +9286,7 @@ export declare type CompassGlobalPermissions = {
|
|
|
9286
9286
|
createScorecards?: Maybe<CompassPermissionResult>;
|
|
9287
9287
|
deleteIncomingWebhooks?: Maybe<CompassPermissionResult>;
|
|
9288
9288
|
editCustomFieldDefinitions?: Maybe<CompassPermissionResult>;
|
|
9289
|
+
viewIncomingWebhooks?: Maybe<CompassPermissionResult>;
|
|
9289
9290
|
viewMetricDefinitions?: Maybe<CompassPermissionResult>;
|
|
9290
9291
|
};
|
|
9291
9292
|
export declare type CompassGlobalPermissionsResult = CompassGlobalPermissions | QueryError;
|
|
@@ -19838,6 +19839,80 @@ export declare enum DevAiRovoAgentTemplateFilter {
|
|
|
19838
19839
|
Include = "INCLUDE",
|
|
19839
19840
|
Only = "ONLY"
|
|
19840
19841
|
}
|
|
19842
|
+
export declare type DevAiRovoDevCreateSessionInput = {
|
|
19843
|
+
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
19844
|
+
options?: InputMaybe<DevAiRovoDevCreateSessionOptionsInput>;
|
|
19845
|
+
promptAdf?: InputMaybe<Scalars['JSON']['input']>;
|
|
19846
|
+
repository: DevAiRovoDevRepositoryInput;
|
|
19847
|
+
workspaceAri: Scalars['ID']['input'];
|
|
19848
|
+
};
|
|
19849
|
+
export declare type DevAiRovoDevCreateSessionOptionsInput = {
|
|
19850
|
+
isAutonomous?: InputMaybe<Scalars['Boolean']['input']>;
|
|
19851
|
+
raisePullRequestOptions?: InputMaybe<DevAiRovoDevRaisePullRequestOption>;
|
|
19852
|
+
useDeepPlan?: InputMaybe<Scalars['Boolean']['input']>;
|
|
19853
|
+
};
|
|
19854
|
+
export declare type DevAiRovoDevCreateSessionPayload = Payload & {
|
|
19855
|
+
__typename?: 'DevAiRovoDevCreateSessionPayload';
|
|
19856
|
+
errors?: Maybe<Array<MutationError>>;
|
|
19857
|
+
session?: Maybe<DevAiRovoDevSession>;
|
|
19858
|
+
success: Scalars['Boolean']['output'];
|
|
19859
|
+
};
|
|
19860
|
+
export declare enum DevAiRovoDevRaisePullRequestOption {
|
|
19861
|
+
Always = "ALWAYS",
|
|
19862
|
+
Draft = "DRAFT",
|
|
19863
|
+
DraftOnBuildPass = "DRAFT_ON_BUILD_PASS",
|
|
19864
|
+
Never = "NEVER",
|
|
19865
|
+
OnBuildPass = "ON_BUILD_PASS"
|
|
19866
|
+
}
|
|
19867
|
+
export declare type DevAiRovoDevRepository = {
|
|
19868
|
+
__typename?: 'DevAiRovoDevRepository';
|
|
19869
|
+
sourceBranch?: Maybe<Scalars['String']['output']>;
|
|
19870
|
+
targetBranch?: Maybe<Scalars['String']['output']>;
|
|
19871
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
19872
|
+
};
|
|
19873
|
+
export declare type DevAiRovoDevRepositoryInput = {
|
|
19874
|
+
sourceBranch?: InputMaybe<Scalars['String']['input']>;
|
|
19875
|
+
targetBranch?: InputMaybe<Scalars['String']['input']>;
|
|
19876
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
19877
|
+
};
|
|
19878
|
+
export declare type DevAiRovoDevSession = {
|
|
19879
|
+
__typename?: 'DevAiRovoDevSession';
|
|
19880
|
+
accountId?: Maybe<Scalars['ID']['output']>;
|
|
19881
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
19882
|
+
editorUrl?: Maybe<Scalars['URL']['output']>;
|
|
19883
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
19884
|
+
id: Scalars['ID']['output'];
|
|
19885
|
+
options?: Maybe<DevAiRovoDevSessionOptions>;
|
|
19886
|
+
promptAdf?: Maybe<Scalars['JSON']['output']>;
|
|
19887
|
+
repository?: Maybe<DevAiRovoDevRepository>;
|
|
19888
|
+
sessionStatus?: Maybe<DevAiRovoDevSessionStatus>;
|
|
19889
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
19890
|
+
workspaceAri?: Maybe<Scalars['ID']['output']>;
|
|
19891
|
+
};
|
|
19892
|
+
export declare type DevAiRovoDevSessionLinkInput = {
|
|
19893
|
+
ari: Scalars['String']['input'];
|
|
19894
|
+
rel: DevAiRovoDevSessionLinkRel;
|
|
19895
|
+
};
|
|
19896
|
+
export declare enum DevAiRovoDevSessionLinkRel {
|
|
19897
|
+
Container = "CONTAINER",
|
|
19898
|
+
Site = "SITE",
|
|
19899
|
+
Target = "TARGET"
|
|
19900
|
+
}
|
|
19901
|
+
export declare type DevAiRovoDevSessionOptions = {
|
|
19902
|
+
__typename?: 'DevAiRovoDevSessionOptions';
|
|
19903
|
+
isAutonomous?: Maybe<Scalars['Boolean']['output']>;
|
|
19904
|
+
raisePullRequestOptions?: Maybe<DevAiRovoDevRaisePullRequestOption>;
|
|
19905
|
+
useDeepPlan?: Maybe<Scalars['Boolean']['output']>;
|
|
19906
|
+
};
|
|
19907
|
+
export declare enum DevAiRovoDevSessionStatus {
|
|
19908
|
+
Archived = "ARCHIVED",
|
|
19909
|
+
Failed = "FAILED",
|
|
19910
|
+
Initialising = "INITIALISING",
|
|
19911
|
+
InProgress = "IN_PROGRESS",
|
|
19912
|
+
Pending = "PENDING",
|
|
19913
|
+
ReadyForReview = "READY_FOR_REVIEW",
|
|
19914
|
+
WaitingForUser = "WAITING_FOR_USER"
|
|
19915
|
+
}
|
|
19841
19916
|
export declare type DevAiRunAutofixScanInput = {
|
|
19842
19917
|
repoUrl: Scalars['URL']['input'];
|
|
19843
19918
|
restartIfCurrentlyRunning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -46261,7 +46336,7 @@ export declare type GraphStoreSimplifiedUserAuthoredCommitInverseEdge = {
|
|
|
46261
46336
|
lastUpdated: Scalars['DateTime']['output'];
|
|
46262
46337
|
node?: Maybe<GraphStoreSimplifiedUserAuthoredCommitInverseUnion>;
|
|
46263
46338
|
};
|
|
46264
|
-
export declare type GraphStoreSimplifiedUserAuthoredCommitInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46339
|
+
export declare type GraphStoreSimplifiedUserAuthoredCommitInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
46265
46340
|
export declare type GraphStoreSimplifiedUserAuthoredCommitUnion = ExternalCommit;
|
|
46266
46341
|
export declare type GraphStoreSimplifiedUserAuthoredPrConnection = HasPageInfo & {
|
|
46267
46342
|
__typename?: 'GraphStoreSimplifiedUserAuthoredPrConnection';
|
|
@@ -46289,7 +46364,7 @@ export declare type GraphStoreSimplifiedUserAuthoredPrInverseEdge = {
|
|
|
46289
46364
|
lastUpdated: Scalars['DateTime']['output'];
|
|
46290
46365
|
node?: Maybe<GraphStoreSimplifiedUserAuthoredPrInverseUnion>;
|
|
46291
46366
|
};
|
|
46292
|
-
export declare type GraphStoreSimplifiedUserAuthoredPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46367
|
+
export declare type GraphStoreSimplifiedUserAuthoredPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
46293
46368
|
export declare type GraphStoreSimplifiedUserAuthoredPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
46294
46369
|
export declare type GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserConnection = HasPageInfo & HasTotal & {
|
|
46295
46370
|
__typename?: 'GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserConnection';
|
|
@@ -47993,7 +48068,7 @@ export declare type GraphStoreSimplifiedUserReviewsPrInverseEdge = {
|
|
|
47993
48068
|
lastUpdated: Scalars['DateTime']['output'];
|
|
47994
48069
|
node?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseUnion>;
|
|
47995
48070
|
};
|
|
47996
|
-
export declare type GraphStoreSimplifiedUserReviewsPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
48071
|
+
export declare type GraphStoreSimplifiedUserReviewsPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
47997
48072
|
export declare type GraphStoreSimplifiedUserReviewsPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
47998
48073
|
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageConnection = HasPageInfo & {
|
|
47999
48074
|
__typename?: 'GraphStoreSimplifiedUserSnapshottedConfluencePageConnection';
|
|
@@ -53513,7 +53588,8 @@ export declare type JiraAccessAtlassianIntelligenceFeature = {
|
|
|
53513
53588
|
export declare enum JiraActionType {
|
|
53514
53589
|
CreateCompanyManagedProject = "CREATE_COMPANY_MANAGED_PROJECT",
|
|
53515
53590
|
CreateProject = "CREATE_PROJECT",
|
|
53516
|
-
CreateTeamManagedProject = "CREATE_TEAM_MANAGED_PROJECT"
|
|
53591
|
+
CreateTeamManagedProject = "CREATE_TEAM_MANAGED_PROJECT",
|
|
53592
|
+
ViewProjectCreationEntry = "VIEW_PROJECT_CREATION_ENTRY"
|
|
53517
53593
|
}
|
|
53518
53594
|
export declare type JiraActiveBackgroundDetailsResult = JiraAttachmentBackground | JiraColorBackground | JiraGradientBackground | JiraMediaBackground | QueryError;
|
|
53519
53595
|
export declare type JiraActivityConfiguration = {
|
|
@@ -58858,9 +58934,12 @@ export declare type JiraGrantTypeValueEdge = {
|
|
|
58858
58934
|
};
|
|
58859
58935
|
export declare type JiraGroup = Node & {
|
|
58860
58936
|
__typename?: 'JiraGroup';
|
|
58937
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
58861
58938
|
groupId: Scalars['String']['output'];
|
|
58862
58939
|
id: Scalars['ID']['output'];
|
|
58940
|
+
managedBy?: Maybe<JiraGroupManagedBy>;
|
|
58863
58941
|
name: Scalars['String']['output'];
|
|
58942
|
+
usageType?: Maybe<JiraGroupUsageType>;
|
|
58864
58943
|
};
|
|
58865
58944
|
export declare type JiraGroupByDropdownFilter = {
|
|
58866
58945
|
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -58886,6 +58965,16 @@ export declare type JiraGroupGrantTypeValue = Node & {
|
|
|
58886
58965
|
export declare type JiraGroupInput = {
|
|
58887
58966
|
groupName: Scalars['ID']['input'];
|
|
58888
58967
|
};
|
|
58968
|
+
export declare enum JiraGroupManagedBy {
|
|
58969
|
+
Admins = "ADMINS",
|
|
58970
|
+
External = "EXTERNAL",
|
|
58971
|
+
Open = "OPEN",
|
|
58972
|
+
TeamMembers = "TEAM_MEMBERS"
|
|
58973
|
+
}
|
|
58974
|
+
export declare enum JiraGroupUsageType {
|
|
58975
|
+
TeamCollaboration = "TEAM_COLLABORATION",
|
|
58976
|
+
UserbaseGroup = "USERBASE_GROUP"
|
|
58977
|
+
}
|
|
58889
58978
|
export declare type JiraGroupedListView = JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
58890
58979
|
__typename?: 'JiraGroupedListView';
|
|
58891
58980
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -62608,6 +62697,7 @@ export declare type JiraMutationCreateBoardArgs = {
|
|
|
62608
62697
|
input: JiraCreateBoardInput;
|
|
62609
62698
|
};
|
|
62610
62699
|
export declare type JiraMutationCreateCalendarIssueArgs = {
|
|
62700
|
+
assignee?: InputMaybe<Scalars['ID']['input']>;
|
|
62611
62701
|
configuration: JiraCalendarViewConfigurationInput;
|
|
62612
62702
|
endDateInput?: InputMaybe<Scalars['DateTime']['input']>;
|
|
62613
62703
|
issueTypeId: Scalars['ID']['input'];
|
|
@@ -74355,6 +74445,17 @@ export declare type LoomFolder = {
|
|
|
74355
74445
|
name: Scalars['String']['output'];
|
|
74356
74446
|
parentSpaceId?: Maybe<Scalars['ID']['output']>;
|
|
74357
74447
|
};
|
|
74448
|
+
export declare type LoomJoinWorkspace = {
|
|
74449
|
+
__typename?: 'LoomJoinWorkspace';
|
|
74450
|
+
status: Scalars['String']['output'];
|
|
74451
|
+
};
|
|
74452
|
+
export declare type LoomJoinableWorkspace = {
|
|
74453
|
+
__typename?: 'LoomJoinableWorkspace';
|
|
74454
|
+
autoJoinable: Scalars['Boolean']['output'];
|
|
74455
|
+
guid: Scalars['String']['output'];
|
|
74456
|
+
memberCount: Scalars['Int']['output'];
|
|
74457
|
+
name: Scalars['String']['output'];
|
|
74458
|
+
};
|
|
74358
74459
|
export declare type LoomMeeting = Node & {
|
|
74359
74460
|
__typename?: 'LoomMeeting';
|
|
74360
74461
|
endsAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -80139,6 +80240,7 @@ export declare type Mutation = {
|
|
|
80139
80240
|
devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
|
|
80140
80241
|
devai_invokeAutodevRovoAgentInBulk?: Maybe<DevAiInvokeAutodevRovoAgentInBulkPayload>;
|
|
80141
80242
|
devai_invokeSelfCorrection?: Maybe<DevAiInvokeSelfCorrectionPayload>;
|
|
80243
|
+
devai_rovodevCreateSession?: Maybe<DevAiRovoDevCreateSessionPayload>;
|
|
80142
80244
|
disableExperiment?: Maybe<TapExperiment>;
|
|
80143
80245
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
80144
80246
|
disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
|
|
@@ -80228,6 +80330,7 @@ export declare type Mutation = {
|
|
|
80228
80330
|
knowledgeBaseSpacePermission_updateView: KnowledgeBaseSpacePermissionMutationResponse;
|
|
80229
80331
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryMutationApi>;
|
|
80230
80332
|
likeContent?: Maybe<LikeContentPayload>;
|
|
80333
|
+
loom_joinWorkspace?: Maybe<LoomJoinWorkspace>;
|
|
80231
80334
|
loom_spaceCreate?: Maybe<LoomSpace>;
|
|
80232
80335
|
markCommentsAsRead?: Maybe<MarkCommentsAsReadPayload>;
|
|
80233
80336
|
markFeatureDiscovered?: Maybe<FeatureDiscoveryPayload>;
|
|
@@ -81230,6 +81333,9 @@ export declare type MutationDevai_InvokeSelfCorrectionArgs = {
|
|
|
81230
81333
|
issueAri: Scalars['ID']['input'];
|
|
81231
81334
|
jobId: Scalars['ID']['input'];
|
|
81232
81335
|
};
|
|
81336
|
+
export declare type MutationDevai_RovodevCreateSessionArgs = {
|
|
81337
|
+
input: DevAiRovoDevCreateSessionInput;
|
|
81338
|
+
};
|
|
81233
81339
|
export declare type MutationDisableExperimentArgs = {
|
|
81234
81340
|
experimentKey: Scalars['String']['input'];
|
|
81235
81341
|
};
|
|
@@ -81469,6 +81575,9 @@ export declare type MutationKnowledgeBaseSpacePermission_UpdateViewArgs = {
|
|
|
81469
81575
|
export declare type MutationLikeContentArgs = {
|
|
81470
81576
|
input: LikeContentInput;
|
|
81471
81577
|
};
|
|
81578
|
+
export declare type MutationLoom_JoinWorkspaceArgs = {
|
|
81579
|
+
workspaceId: Scalars['String']['input'];
|
|
81580
|
+
};
|
|
81472
81581
|
export declare type MutationLoom_SpaceCreateArgs = {
|
|
81473
81582
|
analyticsSource?: InputMaybe<Scalars['String']['input']>;
|
|
81474
81583
|
name: Scalars['String']['input'];
|
|
@@ -85141,6 +85250,7 @@ export declare type Query = {
|
|
|
85141
85250
|
devai_flowSessionResume?: Maybe<DevAiFlowPipeline>;
|
|
85142
85251
|
devai_flowSessionsByCreatorAndCloudId?: Maybe<Array<Maybe<DevAiFlowSession>>>;
|
|
85143
85252
|
devai_flowSessionsByIssueKeyAndCloudId?: Maybe<DevAiFlowSessionConnection>;
|
|
85253
|
+
devai_flowSessionsConnectionByCreatorAndCloudId?: Maybe<DevAiFlowSessionConnection>;
|
|
85144
85254
|
devai_getPrefillRepoUrlForFlow?: Maybe<DevAiFlowRepository>;
|
|
85145
85255
|
devai_getUserPermissionsForRepo?: Maybe<Scalars['Boolean']['output']>;
|
|
85146
85256
|
devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
|
|
@@ -85286,6 +85396,7 @@ export declare type Query = {
|
|
|
85286
85396
|
loom_comments?: Maybe<Array<Maybe<LoomComment>>>;
|
|
85287
85397
|
loom_createSpace?: Maybe<LoomSpace>;
|
|
85288
85398
|
loom_foldersSearch?: Maybe<Array<Maybe<LoomFolder>>>;
|
|
85399
|
+
loom_joinableWorkspaces?: Maybe<Array<Maybe<LoomJoinableWorkspace>>>;
|
|
85289
85400
|
loom_meeting?: Maybe<LoomMeeting>;
|
|
85290
85401
|
loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
|
|
85291
85402
|
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
@@ -85460,8 +85571,10 @@ export declare type Query = {
|
|
|
85460
85571
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
85461
85572
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
85462
85573
|
stakeholderComms_getAssignmentsByStakeholder?: Maybe<StakeholderCommsPaginatedAssignmentResults>;
|
|
85574
|
+
stakeholderComms_getAssignmentsByStakeholderV2?: Maybe<StakeholderCommsAssignmentConnection>;
|
|
85463
85575
|
stakeholderComms_getStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
85464
85576
|
stakeholderComms_getStakeholdersByAssignment?: Maybe<StakeholderCommsPaginatedStakeholderResults>;
|
|
85577
|
+
stakeholderComms_getStakeholdersByAssignmentV2?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
85465
85578
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
85466
85579
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
85467
85580
|
suggestedSpaces?: Maybe<PaginatedSpaceList>;
|
|
@@ -86564,6 +86677,13 @@ export declare type QueryDevai_FlowSessionsByIssueKeyAndCloudIdArgs = {
|
|
|
86564
86677
|
issueKey: Scalars['String']['input'];
|
|
86565
86678
|
statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
|
|
86566
86679
|
};
|
|
86680
|
+
export declare type QueryDevai_FlowSessionsConnectionByCreatorAndCloudIdArgs = {
|
|
86681
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86682
|
+
cloudId: Scalars['ID']['input'];
|
|
86683
|
+
creator: Scalars['String']['input'];
|
|
86684
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86685
|
+
statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
|
|
86686
|
+
};
|
|
86567
86687
|
export declare type QueryDevai_GetPrefillRepoUrlForFlowArgs = {
|
|
86568
86688
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
86569
86689
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -87690,12 +87810,18 @@ export declare type QuerySqlSlowQueryLogsArgs = {
|
|
|
87690
87810
|
export declare type QueryStakeholderComms_GetAssignmentsByStakeholderArgs = {
|
|
87691
87811
|
paginatedAssignmentByStakeholderIdInput: StakeholderCommsPaginatedAssignmentByStakeholderInput;
|
|
87692
87812
|
};
|
|
87813
|
+
export declare type QueryStakeholderComms_GetAssignmentsByStakeholderV2Args = {
|
|
87814
|
+
assignmentConnectionInput: StakeholderCommsAssignmentConnectionInput;
|
|
87815
|
+
};
|
|
87693
87816
|
export declare type QueryStakeholderComms_GetStakeholderArgs = {
|
|
87694
87817
|
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
87695
87818
|
};
|
|
87696
87819
|
export declare type QueryStakeholderComms_GetStakeholdersByAssignmentArgs = {
|
|
87697
87820
|
paginatedStakeholderInput: StakeholderCommsPaginatedStakeholderInput;
|
|
87698
87821
|
};
|
|
87822
|
+
export declare type QueryStakeholderComms_GetStakeholdersByAssignmentV2Args = {
|
|
87823
|
+
stakeholderConnectionInput: StakeholderCommsStakeholderConnectionInput;
|
|
87824
|
+
};
|
|
87699
87825
|
export declare type QueryStalePagesArgs = {
|
|
87700
87826
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
87701
87827
|
includePagesWithChildren?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -90955,7 +91081,9 @@ export declare type Security = {
|
|
|
90955
91081
|
compliantCertifications?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
90956
91082
|
hasCompliantCertifications?: Maybe<Scalars['Boolean']['output']>;
|
|
90957
91083
|
isDiskEncryptionSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
91084
|
+
permissionsJustification?: Maybe<Scalars['String']['output']>;
|
|
90958
91085
|
publicSecurityPoliciesLink?: Maybe<Scalars['String']['output']>;
|
|
91086
|
+
requiresUsersToProvidePATs?: Maybe<Scalars['Boolean']['output']>;
|
|
90959
91087
|
securityContact: Scalars['String']['output'];
|
|
90960
91088
|
};
|
|
90961
91089
|
export declare type SecurityContainer = {
|
|
@@ -94026,7 +94154,7 @@ export declare type SpfAskResult = QueryError | SpfAsk;
|
|
|
94026
94154
|
export declare enum SpfAskStatus {
|
|
94027
94155
|
Accepted = "ACCEPTED",
|
|
94028
94156
|
Canceled = "CANCELED",
|
|
94029
|
-
|
|
94157
|
+
Deferred = "DEFERRED",
|
|
94030
94158
|
Draft = "DRAFT",
|
|
94031
94159
|
InReview = "IN_REVIEW",
|
|
94032
94160
|
Revising = "REVISING",
|
|
@@ -94202,6 +94330,7 @@ export declare type SpfUpdateAskDescriptionInput = {
|
|
|
94202
94330
|
export declare type SpfUpdateAskImpactedWorkInput = {
|
|
94203
94331
|
id: Scalars['ID']['input'];
|
|
94204
94332
|
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
94333
|
+
impactedWorkUrl?: InputMaybe<Scalars['String']['input']>;
|
|
94205
94334
|
};
|
|
94206
94335
|
export declare type SpfUpdateAskJustificationInput = {
|
|
94207
94336
|
id: Scalars['ID']['input'];
|
|
@@ -94342,6 +94471,27 @@ export declare type StakeholderCommsAssignment = {
|
|
|
94342
94471
|
insertedAt?: Maybe<Scalars['String']['output']>;
|
|
94343
94472
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
94344
94473
|
};
|
|
94474
|
+
export declare type StakeholderCommsAssignmentConnection = {
|
|
94475
|
+
__typename?: 'StakeholderCommsAssignmentConnection';
|
|
94476
|
+
edges: Array<StakeholderCommsAssignmentEdge>;
|
|
94477
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
94478
|
+
nodes: Array<StakeholderCommsAssignment>;
|
|
94479
|
+
pageInfo: StakeholderCommsPageInfo;
|
|
94480
|
+
stakeholder?: Maybe<StakeholderCommsStakeholder>;
|
|
94481
|
+
totalCount: Scalars['Int']['output'];
|
|
94482
|
+
};
|
|
94483
|
+
export declare type StakeholderCommsAssignmentConnectionInput = {
|
|
94484
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
94485
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
94486
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94487
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
94488
|
+
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
94489
|
+
};
|
|
94490
|
+
export declare type StakeholderCommsAssignmentEdge = {
|
|
94491
|
+
__typename?: 'StakeholderCommsAssignmentEdge';
|
|
94492
|
+
cursor: Scalars['String']['output'];
|
|
94493
|
+
node: StakeholderCommsAssignment;
|
|
94494
|
+
};
|
|
94345
94495
|
export declare type StakeholderCommsAssignmentIdInput = {
|
|
94346
94496
|
assignmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
94347
94497
|
assignmentType?: InputMaybe<StakeholderCommsAssignmentType>;
|
|
@@ -94394,6 +94544,13 @@ export declare type StakeholderCommsNotificationPreferenceInput = {
|
|
|
94394
94544
|
preference?: InputMaybe<StakeholderCommsPreferencesInput>;
|
|
94395
94545
|
webhook?: InputMaybe<Scalars['String']['input']>;
|
|
94396
94546
|
};
|
|
94547
|
+
export declare type StakeholderCommsPageInfo = {
|
|
94548
|
+
__typename?: 'StakeholderCommsPageInfo';
|
|
94549
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
94550
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
94551
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
94552
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
94553
|
+
};
|
|
94397
94554
|
export declare type StakeholderCommsPaginatedAssignmentByStakeholderInput = {
|
|
94398
94555
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
94399
94556
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -94451,6 +94608,27 @@ export declare type StakeholderCommsStakeholderAssignmentResponse = {
|
|
|
94451
94608
|
message?: Maybe<Scalars['String']['output']>;
|
|
94452
94609
|
stakeholder?: Maybe<StakeholderCommsStakeholder>;
|
|
94453
94610
|
};
|
|
94611
|
+
export declare type StakeholderCommsStakeholderConnection = {
|
|
94612
|
+
__typename?: 'StakeholderCommsStakeholderConnection';
|
|
94613
|
+
assignment?: Maybe<StakeholderCommsAssignment>;
|
|
94614
|
+
edges: Array<StakeholderCommsStakeholderEdge>;
|
|
94615
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
94616
|
+
nodes: Array<StakeholderCommsStakeholder>;
|
|
94617
|
+
pageInfo: StakeholderCommsPageInfo;
|
|
94618
|
+
totalCount: Scalars['Int']['output'];
|
|
94619
|
+
};
|
|
94620
|
+
export declare type StakeholderCommsStakeholderConnectionInput = {
|
|
94621
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
94622
|
+
assignmentIdInput: StakeholderCommsAssignmentIdInput;
|
|
94623
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
94624
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94625
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
94626
|
+
};
|
|
94627
|
+
export declare type StakeholderCommsStakeholderEdge = {
|
|
94628
|
+
__typename?: 'StakeholderCommsStakeholderEdge';
|
|
94629
|
+
cursor: Scalars['String']['output'];
|
|
94630
|
+
node: StakeholderCommsStakeholder;
|
|
94631
|
+
};
|
|
94454
94632
|
export declare type StakeholderCommsStakeholderIdInput = {
|
|
94455
94633
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
94456
94634
|
emailId?: InputMaybe<Scalars['String']['input']>;
|