@forge/cli-shared 6.10.0 → 6.10.1-next.0
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 +7 -0
- package/out/graphql/graphql-types.d.ts +187 -75
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +40 -32
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7972,6 +7972,7 @@ export declare type CompassLink = {
|
|
|
7972
7972
|
eventSources?: Maybe<Array<EventSource>>;
|
|
7973
7973
|
id: Scalars['ID']['output'];
|
|
7974
7974
|
name?: Maybe<Scalars['String']['output']>;
|
|
7975
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
7975
7976
|
type: CompassLinkType;
|
|
7976
7977
|
url: Scalars['URL']['output'];
|
|
7977
7978
|
};
|
|
@@ -21486,6 +21487,7 @@ export declare type CustomerServiceIndividual = Node & {
|
|
|
21486
21487
|
name: Scalars['String']['output'];
|
|
21487
21488
|
notes: CustomerServiceNotes;
|
|
21488
21489
|
organizations: Array<CustomerServiceOrganization>;
|
|
21490
|
+
requests?: Maybe<CustomerServiceRequestConnection>;
|
|
21489
21491
|
};
|
|
21490
21492
|
export declare type CustomerServiceIndividualEntitlementListArgs = {
|
|
21491
21493
|
filter?: InputMaybe<CustomerServiceEntitlementFilterInput>;
|
|
@@ -21499,6 +21501,10 @@ export declare type CustomerServiceIndividualNotesArgs = {
|
|
|
21499
21501
|
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
21500
21502
|
startAt?: InputMaybe<Scalars['Int']['input']>;
|
|
21501
21503
|
};
|
|
21504
|
+
export declare type CustomerServiceIndividualRequestsArgs = {
|
|
21505
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
21506
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
21507
|
+
};
|
|
21502
21508
|
export declare type CustomerServiceIndividualDeletePayload = Payload & {
|
|
21503
21509
|
__typename?: 'CustomerServiceIndividualDeletePayload';
|
|
21504
21510
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -21885,6 +21891,7 @@ export declare type CustomerServiceQueryApi = {
|
|
|
21885
21891
|
organizationByOrganizationId?: Maybe<CustomerServiceOrganizationQueryResult>;
|
|
21886
21892
|
productConnections?: Maybe<CustomerServiceProductConnection>;
|
|
21887
21893
|
products?: Maybe<CustomerServiceProductQueryResult>;
|
|
21894
|
+
requestByIssueKey?: Maybe<CustomerServiceRequestByKeyResult>;
|
|
21888
21895
|
templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
|
|
21889
21896
|
templateForms?: Maybe<CustomerServiceTemplateFormConnection>;
|
|
21890
21897
|
};
|
|
@@ -21918,6 +21925,9 @@ export declare type CustomerServiceQueryApiProductsArgs = {
|
|
|
21918
21925
|
filter?: InputMaybe<CustomerServiceProductFilterInput>;
|
|
21919
21926
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
21920
21927
|
};
|
|
21928
|
+
export declare type CustomerServiceQueryApiRequestByIssueKeyArgs = {
|
|
21929
|
+
issueKey: Scalars['String']['input'];
|
|
21930
|
+
};
|
|
21921
21931
|
export declare type CustomerServiceQueryApiTemplateFormByIdArgs = {
|
|
21922
21932
|
helpCenterId: Scalars['ID']['input'];
|
|
21923
21933
|
templateFormId: Scalars['ID']['input'];
|
|
@@ -21927,6 +21937,58 @@ export declare type CustomerServiceQueryApiTemplateFormsArgs = {
|
|
|
21927
21937
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
21928
21938
|
helpCenterId: Scalars['ID']['input'];
|
|
21929
21939
|
};
|
|
21940
|
+
export declare type CustomerServiceRequest = {
|
|
21941
|
+
__typename?: 'CustomerServiceRequest';
|
|
21942
|
+
createdOn?: Maybe<Scalars['DateTime']['output']>;
|
|
21943
|
+
formData?: Maybe<CustomerServiceRequestFormDataConnection>;
|
|
21944
|
+
id: Scalars['ID']['output'];
|
|
21945
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
21946
|
+
statusKey?: Maybe<CustomerServiceStatusKey>;
|
|
21947
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
21948
|
+
};
|
|
21949
|
+
export declare type CustomerServiceRequestByKeyResult = CustomerServiceRequest | QueryError;
|
|
21950
|
+
export declare type CustomerServiceRequestConnection = {
|
|
21951
|
+
__typename?: 'CustomerServiceRequestConnection';
|
|
21952
|
+
edges: Array<CustomerServiceRequestEdge>;
|
|
21953
|
+
pageInfo: PageInfo;
|
|
21954
|
+
};
|
|
21955
|
+
export declare type CustomerServiceRequestEdge = {
|
|
21956
|
+
__typename?: 'CustomerServiceRequestEdge';
|
|
21957
|
+
cursor: Scalars['String']['output'];
|
|
21958
|
+
node?: Maybe<CustomerServiceRequest>;
|
|
21959
|
+
};
|
|
21960
|
+
export declare type CustomerServiceRequestFormDataConnection = {
|
|
21961
|
+
__typename?: 'CustomerServiceRequestFormDataConnection';
|
|
21962
|
+
edges: Array<CustomerServiceRequestFormDataEdge>;
|
|
21963
|
+
pageInfo: PageInfo;
|
|
21964
|
+
};
|
|
21965
|
+
export declare type CustomerServiceRequestFormDataEdge = {
|
|
21966
|
+
__typename?: 'CustomerServiceRequestFormDataEdge';
|
|
21967
|
+
cursor: Scalars['String']['output'];
|
|
21968
|
+
node?: Maybe<CustomerServiceRequestFormEntryField>;
|
|
21969
|
+
};
|
|
21970
|
+
export declare type CustomerServiceRequestFormEntryField = {
|
|
21971
|
+
id: Scalars['ID']['output'];
|
|
21972
|
+
question?: Maybe<Scalars['String']['output']>;
|
|
21973
|
+
};
|
|
21974
|
+
export declare type CustomerServiceRequestFormEntryMultiSelectField = CustomerServiceRequestFormEntryField & {
|
|
21975
|
+
__typename?: 'CustomerServiceRequestFormEntryMultiSelectField';
|
|
21976
|
+
id: Scalars['ID']['output'];
|
|
21977
|
+
multiSelectTextAnswer?: Maybe<Array<Scalars['String']['output']>>;
|
|
21978
|
+
question?: Maybe<Scalars['String']['output']>;
|
|
21979
|
+
};
|
|
21980
|
+
export declare type CustomerServiceRequestFormEntryRichTextField = CustomerServiceRequestFormEntryField & {
|
|
21981
|
+
__typename?: 'CustomerServiceRequestFormEntryRichTextField';
|
|
21982
|
+
adfAnswer?: Maybe<Scalars['String']['output']>;
|
|
21983
|
+
id: Scalars['ID']['output'];
|
|
21984
|
+
question?: Maybe<Scalars['String']['output']>;
|
|
21985
|
+
};
|
|
21986
|
+
export declare type CustomerServiceRequestFormEntryTextField = CustomerServiceRequestFormEntryField & {
|
|
21987
|
+
__typename?: 'CustomerServiceRequestFormEntryTextField';
|
|
21988
|
+
id: Scalars['ID']['output'];
|
|
21989
|
+
question?: Maybe<Scalars['String']['output']>;
|
|
21990
|
+
textAnswer?: Maybe<Scalars['String']['output']>;
|
|
21991
|
+
};
|
|
21930
21992
|
export declare type CustomerServiceRoutingRule = {
|
|
21931
21993
|
__typename?: 'CustomerServiceRoutingRule';
|
|
21932
21994
|
id: Scalars['ID']['output'];
|
|
@@ -21936,6 +21998,10 @@ export declare type CustomerServiceRoutingRule = {
|
|
|
21936
21998
|
project?: Maybe<JiraProject>;
|
|
21937
21999
|
projectId?: Maybe<Scalars['ID']['output']>;
|
|
21938
22000
|
};
|
|
22001
|
+
export declare enum CustomerServiceStatusKey {
|
|
22002
|
+
Resolved = "RESOLVED",
|
|
22003
|
+
Submitted = "SUBMITTED"
|
|
22004
|
+
}
|
|
21939
22005
|
export declare type CustomerServiceStatusPayload = Payload & {
|
|
21940
22006
|
__typename?: 'CustomerServiceStatusPayload';
|
|
21941
22007
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -22961,6 +23027,11 @@ export declare type DevAiInvokeAutodevRovoAgentPayload = Payload & {
|
|
|
22961
23027
|
jobId?: Maybe<Scalars['ID']['output']>;
|
|
22962
23028
|
success: Scalars['Boolean']['output'];
|
|
22963
23029
|
};
|
|
23030
|
+
export declare type DevAiInvokeSelfCorrectionPayload = Payload & {
|
|
23031
|
+
__typename?: 'DevAiInvokeSelfCorrectionPayload';
|
|
23032
|
+
errors?: Maybe<Array<MutationError>>;
|
|
23033
|
+
success: Scalars['Boolean']['output'];
|
|
23034
|
+
};
|
|
22964
23035
|
export declare enum DevAiIssueScopingLabel {
|
|
22965
23036
|
Complex = "COMPLEX",
|
|
22966
23037
|
InScope = "IN_SCOPE",
|
|
@@ -23051,6 +23122,7 @@ export declare type DevAiRovoAgentActionConfig = {
|
|
|
23051
23122
|
export declare type DevAiRovoAgentConnection = {
|
|
23052
23123
|
__typename?: 'DevAiRovoAgentConnection';
|
|
23053
23124
|
edges?: Maybe<Array<Maybe<DevAiRovoAgentEdge>>>;
|
|
23125
|
+
isRankingLimitApplied?: Maybe<Scalars['Boolean']['output']>;
|
|
23054
23126
|
pageInfo: PageInfo;
|
|
23055
23127
|
};
|
|
23056
23128
|
export declare type DevAiRovoAgentEdge = {
|
|
@@ -40886,6 +40958,10 @@ export declare type GraphStoreFullParentIssueHasChildIssueStartNode = {
|
|
|
40886
40958
|
id: Scalars['ID']['output'];
|
|
40887
40959
|
};
|
|
40888
40960
|
export declare type GraphStoreFullParentIssueHasChildIssueStartUnion = JiraIssue;
|
|
40961
|
+
export declare type GraphStoreFullPrInRepoAuthorOutput = {
|
|
40962
|
+
__typename?: 'GraphStoreFullPrInRepoAuthorOutput';
|
|
40963
|
+
authorAri?: Maybe<Scalars['String']['output']>;
|
|
40964
|
+
};
|
|
40889
40965
|
export declare type GraphStoreFullPrInRepoConnection = HasPageInfo & {
|
|
40890
40966
|
__typename?: 'GraphStoreFullPrInRepoConnection';
|
|
40891
40967
|
edges: Array<Maybe<GraphStoreFullPrInRepoEdge>>;
|
|
@@ -40912,14 +40988,40 @@ export declare type GraphStoreFullPrInRepoNode = Node & {
|
|
|
40912
40988
|
lastUpdated: Scalars['DateTime']['output'];
|
|
40913
40989
|
to: GraphStoreFullPrInRepoEndNode;
|
|
40914
40990
|
};
|
|
40991
|
+
export declare enum GraphStoreFullPrInRepoPullRequestStatusOutput {
|
|
40992
|
+
Declined = "DECLINED",
|
|
40993
|
+
Merged = "MERGED",
|
|
40994
|
+
NotSet = "NOT_SET",
|
|
40995
|
+
Open = "OPEN",
|
|
40996
|
+
Unknown = "UNKNOWN"
|
|
40997
|
+
}
|
|
40915
40998
|
export declare type GraphStoreFullPrInRepoRelationshipObjectMetadataOutput = {
|
|
40916
40999
|
__typename?: 'GraphStoreFullPrInRepoRelationshipObjectMetadataOutput';
|
|
40917
41000
|
providerAri?: Maybe<Scalars['String']['output']>;
|
|
40918
41001
|
};
|
|
41002
|
+
export declare type GraphStoreFullPrInRepoRelationshipSubjectMetadataOutput = {
|
|
41003
|
+
__typename?: 'GraphStoreFullPrInRepoRelationshipSubjectMetadataOutput';
|
|
41004
|
+
author?: Maybe<GraphStoreFullPrInRepoAuthorOutput>;
|
|
41005
|
+
reviewers?: Maybe<GraphStoreFullPrInRepoReviewerOutput>;
|
|
41006
|
+
status?: Maybe<GraphStoreFullPrInRepoPullRequestStatusOutput>;
|
|
41007
|
+
taskCount?: Maybe<Scalars['Int']['output']>;
|
|
41008
|
+
};
|
|
41009
|
+
export declare type GraphStoreFullPrInRepoReviewerOutput = {
|
|
41010
|
+
__typename?: 'GraphStoreFullPrInRepoReviewerOutput';
|
|
41011
|
+
approvalStatus?: Maybe<GraphStoreFullPrInRepoReviewerReviewerStatusOutput>;
|
|
41012
|
+
reviewerAri?: Maybe<Scalars['String']['output']>;
|
|
41013
|
+
};
|
|
41014
|
+
export declare enum GraphStoreFullPrInRepoReviewerReviewerStatusOutput {
|
|
41015
|
+
Approved = "APPROVED",
|
|
41016
|
+
Needswork = "NEEDSWORK",
|
|
41017
|
+
NotSet = "NOT_SET",
|
|
41018
|
+
Unapproved = "UNAPPROVED"
|
|
41019
|
+
}
|
|
40919
41020
|
export declare type GraphStoreFullPrInRepoStartNode = {
|
|
40920
41021
|
__typename?: 'GraphStoreFullPrInRepoStartNode';
|
|
40921
41022
|
data?: Maybe<GraphStoreFullPrInRepoStartUnion>;
|
|
40922
41023
|
id: Scalars['ID']['output'];
|
|
41024
|
+
metadata?: Maybe<GraphStoreFullPrInRepoRelationshipSubjectMetadataOutput>;
|
|
40923
41025
|
};
|
|
40924
41026
|
export declare type GraphStoreFullPrInRepoStartUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
40925
41027
|
export declare type GraphStoreFullProjectAssociatedBranchConnection = HasPageInfo & HasTotal & {
|
|
@@ -56616,43 +56718,6 @@ export declare type JiraAutodevTaskPayload = Payload & {
|
|
|
56616
56718
|
success: Scalars['Boolean']['output'];
|
|
56617
56719
|
task?: Maybe<JiraAutodevTask>;
|
|
56618
56720
|
};
|
|
56619
|
-
export declare type JiraAutofixCreateJobPayload = Payload & {
|
|
56620
|
-
__typename?: 'JiraAutofixCreateJobPayload';
|
|
56621
|
-
errors?: Maybe<Array<MutationError>>;
|
|
56622
|
-
job?: Maybe<JiraAutofixJob>;
|
|
56623
|
-
success: Scalars['Boolean']['output'];
|
|
56624
|
-
};
|
|
56625
|
-
export declare type JiraAutofixInput = {
|
|
56626
|
-
issueAri: Scalars['ID']['input'];
|
|
56627
|
-
jobType: JiraAutofixJobType;
|
|
56628
|
-
};
|
|
56629
|
-
export declare type JiraAutofixJob = {
|
|
56630
|
-
__typename?: 'JiraAutofixJob';
|
|
56631
|
-
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
56632
|
-
errorType?: Maybe<Scalars['String']['output']>;
|
|
56633
|
-
jobId: Scalars['ID']['output'];
|
|
56634
|
-
status: JiraAutofixStatus;
|
|
56635
|
-
};
|
|
56636
|
-
export declare type JiraAutofixJobConnection = {
|
|
56637
|
-
__typename?: 'JiraAutofixJobConnection';
|
|
56638
|
-
edges?: Maybe<Array<Maybe<JiraAutofixJobEdge>>>;
|
|
56639
|
-
nodes?: Maybe<Array<Maybe<JiraAutofixJob>>>;
|
|
56640
|
-
pageInfo: PageInfo;
|
|
56641
|
-
};
|
|
56642
|
-
export declare type JiraAutofixJobEdge = {
|
|
56643
|
-
__typename?: 'JiraAutofixJobEdge';
|
|
56644
|
-
cursor: Scalars['String']['output'];
|
|
56645
|
-
node?: Maybe<JiraAutofixJob>;
|
|
56646
|
-
};
|
|
56647
|
-
export declare enum JiraAutofixJobType {
|
|
56648
|
-
InternalRemoveFeatureFlag = "INTERNAL_REMOVE_FEATURE_FLAG"
|
|
56649
|
-
}
|
|
56650
|
-
export declare enum JiraAutofixStatus {
|
|
56651
|
-
Completed = "COMPLETED",
|
|
56652
|
-
Failed = "FAILED",
|
|
56653
|
-
InProgress = "IN_PROGRESS",
|
|
56654
|
-
Pending = "PENDING"
|
|
56655
|
-
}
|
|
56656
56721
|
export declare type JiraAvailableField = JiraProjectFieldAssociationInterface & {
|
|
56657
56722
|
__typename?: 'JiraAvailableField';
|
|
56658
56723
|
field?: Maybe<JiraField>;
|
|
@@ -59211,7 +59276,6 @@ export declare type JiraDevOpsMutation = {
|
|
|
59211
59276
|
approveJiraBitbucketWorkspaceAccessRequest?: Maybe<JiraApproveJiraBitbucketWorkspaceAccessRequestPayload>;
|
|
59212
59277
|
createAutodevJob?: Maybe<JiraAutodevCreateJobPayload>;
|
|
59213
59278
|
createAutodevPullRequest?: Maybe<JiraAutodevBasicPayload>;
|
|
59214
|
-
createAutofixJob?: Maybe<JiraAutofixCreateJobPayload>;
|
|
59215
59279
|
deleteAutodevJob?: Maybe<JiraAutodevBasicPayload>;
|
|
59216
59280
|
deleteAutodevPlannedChange?: Maybe<JiraAutodevDeletedPayload>;
|
|
59217
59281
|
deleteAutodevTask?: Maybe<JiraAutodevDeletedPayload>;
|
|
@@ -59259,10 +59323,6 @@ export declare type JiraDevOpsMutationCreateAutodevPullRequestArgs = {
|
|
|
59259
59323
|
issueAri: Scalars['ID']['input'];
|
|
59260
59324
|
jobId: Scalars['ID']['input'];
|
|
59261
59325
|
};
|
|
59262
|
-
export declare type JiraDevOpsMutationCreateAutofixJobArgs = {
|
|
59263
|
-
cloudId: Scalars['ID']['input'];
|
|
59264
|
-
input: JiraAutofixInput;
|
|
59265
|
-
};
|
|
59266
59326
|
export declare type JiraDevOpsMutationDeleteAutodevJobArgs = {
|
|
59267
59327
|
issueAri: Scalars['ID']['input'];
|
|
59268
59328
|
jobId: Scalars['ID']['input'];
|
|
@@ -59379,7 +59439,6 @@ export declare type JiraDevOpsQuery = {
|
|
|
59379
59439
|
autodevJobById?: Maybe<JiraAutodevJob>;
|
|
59380
59440
|
autodevJobs?: Maybe<JiraAutodevJobConnection>;
|
|
59381
59441
|
autodevJobsByIssues?: Maybe<JiraAutodevJobConnection>;
|
|
59382
|
-
autofixJobs?: Maybe<JiraAutofixJobConnection>;
|
|
59383
59442
|
bitbucketIntegration?: Maybe<JiraBitbucketIntegration>;
|
|
59384
59443
|
configState?: Maybe<JiraAppConfigState>;
|
|
59385
59444
|
configStates?: Maybe<JiraAppConfigStateConnection>;
|
|
@@ -59398,9 +59457,6 @@ export declare type JiraDevOpsQueryAutodevJobsArgs = {
|
|
|
59398
59457
|
export declare type JiraDevOpsQueryAutodevJobsByIssuesArgs = {
|
|
59399
59458
|
issueAris: Array<Scalars['ID']['input']>;
|
|
59400
59459
|
};
|
|
59401
|
-
export declare type JiraDevOpsQueryAutofixJobsArgs = {
|
|
59402
|
-
issueAri: Scalars['ID']['input'];
|
|
59403
|
-
};
|
|
59404
59460
|
export declare type JiraDevOpsQueryBitbucketIntegrationArgs = {
|
|
59405
59461
|
cloudId: Scalars['ID']['input'];
|
|
59406
59462
|
};
|
|
@@ -64070,7 +64126,6 @@ export declare type JiraMutation = {
|
|
|
64070
64126
|
updateDateTimeField?: Maybe<JiraDateTimeFieldPayload>;
|
|
64071
64127
|
updateEntitlementField?: Maybe<JiraServiceManagementEntitlementFieldPayload>;
|
|
64072
64128
|
updateFieldSetsView?: Maybe<JiraFieldSetsViewPayload>;
|
|
64073
|
-
updateFieldToFieldConfigSchemeAssociations?: Maybe<JiraFieldToFieldConfigSchemeAssociationsPayload>;
|
|
64074
64129
|
updateForgeObjectField?: Maybe<JiraForgeObjectFieldPayload>;
|
|
64075
64130
|
updateFormattingRule?: Maybe<JiraUpdateFormattingRulePayload>;
|
|
64076
64131
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
@@ -64571,10 +64626,6 @@ export declare type JiraMutationUpdateFieldSetsViewArgs = {
|
|
|
64571
64626
|
fieldSetsInput?: InputMaybe<JiraFieldSetsMutationInput>;
|
|
64572
64627
|
id: Scalars['ID']['input'];
|
|
64573
64628
|
};
|
|
64574
|
-
export declare type JiraMutationUpdateFieldToFieldConfigSchemeAssociationsArgs = {
|
|
64575
|
-
cloudId: Scalars['ID']['input'];
|
|
64576
|
-
input: JiraFieldToFieldConfigSchemeAssociationsInput;
|
|
64577
|
-
};
|
|
64578
64629
|
export declare type JiraMutationUpdateForgeObjectFieldArgs = {
|
|
64579
64630
|
input: JiraUpdateForgeObjectFieldInput;
|
|
64580
64631
|
};
|
|
@@ -66081,6 +66132,7 @@ export declare type JiraProject = Node & {
|
|
|
66081
66132
|
id: Scalars['ID']['output'];
|
|
66082
66133
|
intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
66083
66134
|
isAIEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
66135
|
+
isAiContextFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
66084
66136
|
isAutomationDiscoverabilityEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
66085
66137
|
isExplicitFieldAssociationsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
66086
66138
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -66891,7 +66943,6 @@ export declare type JiraQuery = {
|
|
|
66891
66943
|
applicationLinkByOauth2ClientId?: Maybe<JiraApplicationLink>;
|
|
66892
66944
|
applicationLinksByTypeId?: Maybe<JiraApplicationLinkConnection>;
|
|
66893
66945
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
66894
|
-
associatedFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
66895
66946
|
atlassianIntelligenceAction?: Maybe<JiraAtlassianIntelligenceAction>;
|
|
66896
66947
|
attachmentByAri?: Maybe<JiraPlatformAttachment>;
|
|
66897
66948
|
attachmentByAriV2?: Maybe<JiraAttachmentByAriResult>;
|
|
@@ -66899,7 +66950,6 @@ export declare type JiraQuery = {
|
|
|
66899
66950
|
attachmentStorageAllowed?: Maybe<Scalars['Long']['output']>;
|
|
66900
66951
|
attachmentStorageIsUnlimited?: Maybe<Scalars['Boolean']['output']>;
|
|
66901
66952
|
attachmentStorageUsed?: Maybe<Scalars['Long']['output']>;
|
|
66902
|
-
availableFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
66903
66953
|
backgroundUploadToken?: Maybe<JiraBackgroundUploadTokenResult>;
|
|
66904
66954
|
booleanUserProperty?: Maybe<JiraEntityPropertyBoolean>;
|
|
66905
66955
|
bulkOperationProgress?: Maybe<JiraIssueBulkOperationProgress>;
|
|
@@ -67153,12 +67203,6 @@ export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
|
67153
67203
|
cloudId: Scalars['ID']['input'];
|
|
67154
67204
|
keys: Array<Scalars['String']['input']>;
|
|
67155
67205
|
};
|
|
67156
|
-
export declare type JiraQueryAssociatedFieldConfigSchemesArgs = {
|
|
67157
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67158
|
-
cloudId: Scalars['ID']['input'];
|
|
67159
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67160
|
-
input?: InputMaybe<JiraAssociatedFieldConfigSchemesInput>;
|
|
67161
|
-
};
|
|
67162
67206
|
export declare type JiraQueryAtlassianIntelligenceActionArgs = {
|
|
67163
67207
|
atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
|
|
67164
67208
|
cloudId: Scalars['ID']['input'];
|
|
@@ -67190,12 +67234,6 @@ export declare type JiraQueryAttachmentStorageUsedArgs = {
|
|
|
67190
67234
|
applicationKey: JiraApplicationKey;
|
|
67191
67235
|
cloudId: Scalars['ID']['input'];
|
|
67192
67236
|
};
|
|
67193
|
-
export declare type JiraQueryAvailableFieldConfigSchemesArgs = {
|
|
67194
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67195
|
-
cloudId: Scalars['ID']['input'];
|
|
67196
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67197
|
-
input?: InputMaybe<JiraAvailableFieldConfigSchemesInput>;
|
|
67198
|
-
};
|
|
67199
67237
|
export declare type JiraQueryBackgroundUploadTokenArgs = {
|
|
67200
67238
|
cloudId: Scalars['ID']['input'];
|
|
67201
67239
|
durationInSeconds: Scalars['Int']['input'];
|
|
@@ -72237,6 +72275,7 @@ export declare type JiraUserPreferences = {
|
|
|
72237
72275
|
issueViewActivityLayout?: Maybe<JiraIssueViewActivityLayout>;
|
|
72238
72276
|
issueViewAttachmentPanelViewMode?: Maybe<JiraIssueViewAttachmentPanelViewMode>;
|
|
72239
72277
|
issueViewDefaultPinnedFieldsBannerProject?: Maybe<Scalars['String']['output']>;
|
|
72278
|
+
issueViewDetailsPanelFieldsOrder?: Maybe<Scalars['String']['output']>;
|
|
72240
72279
|
issueViewPinnedFields?: Maybe<Scalars['String']['output']>;
|
|
72241
72280
|
issueViewPinnedFieldsBannerLastInteracted?: Maybe<Scalars['DateTime']['output']>;
|
|
72242
72281
|
issueViewSidebarResizeRatio?: Maybe<Scalars['String']['output']>;
|
|
@@ -72256,6 +72295,9 @@ export declare type JiraUserPreferencesDismissedAutomationDiscoverabilityTemplat
|
|
|
72256
72295
|
export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProjectArgs = {
|
|
72257
72296
|
projectKey: Scalars['String']['input'];
|
|
72258
72297
|
};
|
|
72298
|
+
export declare type JiraUserPreferencesIssueViewDetailsPanelFieldsOrderArgs = {
|
|
72299
|
+
projectKey: Scalars['String']['input'];
|
|
72300
|
+
};
|
|
72259
72301
|
export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
|
|
72260
72302
|
projectKey: Scalars['String']['input'];
|
|
72261
72303
|
};
|
|
@@ -74387,7 +74429,7 @@ export declare type KnowledgeBaseArticleSearchInput = {
|
|
|
74387
74429
|
sortByKey?: InputMaybe<KnowledgeBaseArticleSearchSortByKey>;
|
|
74388
74430
|
sortOrder?: InputMaybe<KnowledgeBaseArticleSearchSortOrder>;
|
|
74389
74431
|
};
|
|
74390
|
-
export declare type KnowledgeBaseArticleSearchResponse = KnowledgeBaseCrossSiteSearchConnection | QueryError;
|
|
74432
|
+
export declare type KnowledgeBaseArticleSearchResponse = KnowledgeBaseCrossSiteSearchConnection | KnowledgeBaseThirdPartyConnection | QueryError;
|
|
74391
74433
|
export declare enum KnowledgeBaseArticleSearchSortByKey {
|
|
74392
74434
|
LastModified = "LAST_MODIFIED",
|
|
74393
74435
|
Title = "TITLE"
|
|
@@ -74424,6 +74466,12 @@ export declare type KnowledgeBaseLinkResponse = {
|
|
|
74424
74466
|
mutationError?: Maybe<MutationError>;
|
|
74425
74467
|
success: Scalars['Boolean']['output'];
|
|
74426
74468
|
};
|
|
74469
|
+
export declare type KnowledgeBaseLinkedSourceTypes = {
|
|
74470
|
+
__typename?: 'KnowledgeBaseLinkedSourceTypes';
|
|
74471
|
+
linkedSourceTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
74472
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
74473
|
+
};
|
|
74474
|
+
export declare type KnowledgeBaseLinkedSourceTypesResponse = KnowledgeBaseLinkedSourceTypes | QueryError;
|
|
74427
74475
|
export declare type KnowledgeBaseMutationApi = {
|
|
74428
74476
|
__typename?: 'KnowledgeBaseMutationApi';
|
|
74429
74477
|
linkKnowledgeBaseSource?: Maybe<KnowledgeBaseLinkResponse>;
|
|
@@ -74511,6 +74559,23 @@ export declare type KnowledgeBaseSpacePermissionUpdateViewInput = {
|
|
|
74511
74559
|
spaceAri: Scalars['ID']['input'];
|
|
74512
74560
|
viewPermission?: InputMaybe<KnowledgeBaseSpacePermissionType>;
|
|
74513
74561
|
};
|
|
74562
|
+
export declare type KnowledgeBaseThirdPartyArticle = {
|
|
74563
|
+
__typename?: 'KnowledgeBaseThirdPartyArticle';
|
|
74564
|
+
id: Scalars['ID']['output'];
|
|
74565
|
+
lastModified?: Maybe<Scalars['String']['output']>;
|
|
74566
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
74567
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
74568
|
+
};
|
|
74569
|
+
export declare type KnowledgeBaseThirdPartyArticleEdge = {
|
|
74570
|
+
__typename?: 'KnowledgeBaseThirdPartyArticleEdge';
|
|
74571
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
74572
|
+
node?: Maybe<KnowledgeBaseThirdPartyArticle>;
|
|
74573
|
+
};
|
|
74574
|
+
export declare type KnowledgeBaseThirdPartyConnection = {
|
|
74575
|
+
__typename?: 'KnowledgeBaseThirdPartyConnection';
|
|
74576
|
+
edges?: Maybe<Array<KnowledgeBaseThirdPartyArticleEdge>>;
|
|
74577
|
+
nodes?: Maybe<Array<Maybe<KnowledgeBaseThirdPartyArticle>>>;
|
|
74578
|
+
};
|
|
74514
74579
|
export declare type KnowledgeBaseUnlinkResponse = {
|
|
74515
74580
|
__typename?: 'KnowledgeBaseUnlinkResponse';
|
|
74516
74581
|
mutationError?: Maybe<MutationError>;
|
|
@@ -80957,6 +81022,7 @@ export declare type Mutation = {
|
|
|
80957
81022
|
devai_flowSessionCreate?: Maybe<DevAiFlowSession>;
|
|
80958
81023
|
devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
|
|
80959
81024
|
devai_invokeAutodevRovoAgentInBulk?: Maybe<DevAiInvokeAutodevRovoAgentInBulkPayload>;
|
|
81025
|
+
devai_invokeSelfCorrection?: Maybe<DevAiInvokeSelfCorrectionPayload>;
|
|
80960
81026
|
disableExperiment?: Maybe<TapExperiment>;
|
|
80961
81027
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
80962
81028
|
disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
|
|
@@ -81012,6 +81078,7 @@ export declare type Mutation = {
|
|
|
81012
81078
|
jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
|
|
81013
81079
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
81014
81080
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
81081
|
+
jira_updateFieldToFieldConfigSchemeAssociations?: Maybe<JiraFieldToFieldConfigSchemeAssociationsPayload>;
|
|
81015
81082
|
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
|
|
81016
81083
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
81017
81084
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
@@ -81060,7 +81127,7 @@ export declare type Mutation = {
|
|
|
81060
81127
|
radar_updateConnector?: Maybe<RadarConnector>;
|
|
81061
81128
|
radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
|
|
81062
81129
|
radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
|
|
81063
|
-
radar_updateFocusAreaProposalChanges?: Maybe<
|
|
81130
|
+
radar_updateFocusAreaProposalChanges?: Maybe<RadarUpdateFocusAreaProposalChangesMutationResponse>;
|
|
81064
81131
|
radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
|
|
81065
81132
|
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
81066
81133
|
rankColumn?: Maybe<RankColumnOutput>;
|
|
@@ -82286,6 +82353,10 @@ export declare type MutationDevai_InvokeAutodevRovoAgentInBulkArgs = {
|
|
|
82286
82353
|
agentId: Scalars['ID']['input'];
|
|
82287
82354
|
issueIds: Array<Scalars['ID']['input']>;
|
|
82288
82355
|
};
|
|
82356
|
+
export declare type MutationDevai_InvokeSelfCorrectionArgs = {
|
|
82357
|
+
issueAri: Scalars['ID']['input'];
|
|
82358
|
+
jobId: Scalars['ID']['input'];
|
|
82359
|
+
};
|
|
82289
82360
|
export declare type MutationDisableExperimentArgs = {
|
|
82290
82361
|
experimentKey: Scalars['String']['input'];
|
|
82291
82362
|
};
|
|
@@ -82420,6 +82491,10 @@ export declare type MutationJira_SetViewFilterArgs = {
|
|
|
82420
82491
|
export declare type MutationJira_SetViewGroupByArgs = {
|
|
82421
82492
|
input: JiraSetViewGroupByInput;
|
|
82422
82493
|
};
|
|
82494
|
+
export declare type MutationJira_UpdateFieldToFieldConfigSchemeAssociationsArgs = {
|
|
82495
|
+
cloudId: Scalars['ID']['input'];
|
|
82496
|
+
input: JiraFieldToFieldConfigSchemeAssociationsInput;
|
|
82497
|
+
};
|
|
82423
82498
|
export declare type MutationJira_UpdateProjectBackgroundArgs = {
|
|
82424
82499
|
input: JiraUpdateBackgroundInput;
|
|
82425
82500
|
};
|
|
@@ -85990,6 +86065,7 @@ export declare type Query = {
|
|
|
85990
86065
|
devai_autodevJobsByAri?: Maybe<Array<Maybe<JiraAutodevJob>>>;
|
|
85991
86066
|
devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
|
|
85992
86067
|
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
86068
|
+
devai_codePlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
|
|
85993
86069
|
devai_flowSessionGetByARI?: Maybe<DevAiFlowSession>;
|
|
85994
86070
|
devai_flowSessionGetByIDAndCloudID?: Maybe<DevAiFlowSession>;
|
|
85995
86071
|
devai_flowSessionResume?: Maybe<DevAiFlowPipeline>;
|
|
@@ -86095,6 +86171,8 @@ export declare type Query = {
|
|
|
86095
86171
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
86096
86172
|
jiraReleases?: Maybe<JiraReleases>;
|
|
86097
86173
|
jiraServers?: Maybe<JiraServersResult>;
|
|
86174
|
+
jira_associatedFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
86175
|
+
jira_availableFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
86098
86176
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
86099
86177
|
jira_categoryField?: Maybe<JiraJqlField>;
|
|
86100
86178
|
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
@@ -86107,6 +86185,7 @@ export declare type Query = {
|
|
|
86107
86185
|
jsw?: Maybe<JswQuery>;
|
|
86108
86186
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
86109
86187
|
knowledgeBaseSpacePermission_bulkQuery: Array<Maybe<KnowledgeBaseSpacePermissionQueryResponse>>;
|
|
86188
|
+
knowledgeBase_getLinkedSourceTypes?: Maybe<KnowledgeBaseLinkedSourceTypesResponse>;
|
|
86110
86189
|
knowledgeBase_searchArticles?: Maybe<KnowledgeBaseArticleSearchResponse>;
|
|
86111
86190
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
|
|
86112
86191
|
labelSearch?: Maybe<LabelSearchResults>;
|
|
@@ -88043,6 +88122,12 @@ export declare type QueryDevai_AutodevRovoAgentsArgs = {
|
|
|
88043
88122
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
88044
88123
|
templatesFilter?: InputMaybe<DevAiRovoAgentTemplateFilter>;
|
|
88045
88124
|
};
|
|
88125
|
+
export declare type QueryDevai_CodePlannerJobsForIssueArgs = {
|
|
88126
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88127
|
+
cloudId: Scalars['ID']['input'];
|
|
88128
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88129
|
+
issueKey: Scalars['String']['input'];
|
|
88130
|
+
};
|
|
88046
88131
|
export declare type QueryDevai_FlowSessionGetByAriArgs = {
|
|
88047
88132
|
id: Scalars['ID']['input'];
|
|
88048
88133
|
};
|
|
@@ -88056,6 +88141,7 @@ export declare type QueryDevai_FlowSessionResumeArgs = {
|
|
|
88056
88141
|
export declare type QueryDevai_FlowSessionsByCreatorAndCloudIdArgs = {
|
|
88057
88142
|
cloudId: Scalars['ID']['input'];
|
|
88058
88143
|
creator: Scalars['String']['input'];
|
|
88144
|
+
statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
|
|
88059
88145
|
};
|
|
88060
88146
|
export declare type QueryDevai_RovoDevAgentsUserArgs = {
|
|
88061
88147
|
atlassianAccountId: Scalars['ID']['input'];
|
|
@@ -88377,6 +88463,18 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
88377
88463
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88378
88464
|
id: Scalars['ID']['input'];
|
|
88379
88465
|
};
|
|
88466
|
+
export declare type QueryJira_AssociatedFieldConfigSchemesArgs = {
|
|
88467
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88468
|
+
cloudId: Scalars['ID']['input'];
|
|
88469
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88470
|
+
input?: InputMaybe<JiraAssociatedFieldConfigSchemesInput>;
|
|
88471
|
+
};
|
|
88472
|
+
export declare type QueryJira_AvailableFieldConfigSchemesArgs = {
|
|
88473
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88474
|
+
cloudId: Scalars['ID']['input'];
|
|
88475
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88476
|
+
input?: InputMaybe<JiraAvailableFieldConfigSchemesInput>;
|
|
88477
|
+
};
|
|
88380
88478
|
export declare type QueryJira_BoardViewArgs = {
|
|
88381
88479
|
input: JiraBoardViewInput;
|
|
88382
88480
|
};
|
|
@@ -88412,6 +88510,9 @@ export declare type QueryKnowledgeBaseSpacePermission_BulkQueryArgs = {
|
|
|
88412
88510
|
cloudId: Scalars['ID']['input'];
|
|
88413
88511
|
spaceAris: Array<Scalars['ID']['input']>;
|
|
88414
88512
|
};
|
|
88513
|
+
export declare type QueryKnowledgeBase_GetLinkedSourceTypesArgs = {
|
|
88514
|
+
container?: InputMaybe<Scalars['ID']['input']>;
|
|
88515
|
+
};
|
|
88415
88516
|
export declare type QueryKnowledgeBase_SearchArticlesArgs = {
|
|
88416
88517
|
searchInput?: InputMaybe<KnowledgeBaseArticleSearchInput>;
|
|
88417
88518
|
};
|
|
@@ -89373,6 +89474,7 @@ export declare type RadarEntityFieldValuesArgs = {
|
|
|
89373
89474
|
export declare enum RadarEntityType {
|
|
89374
89475
|
FocusArea = "focusArea",
|
|
89375
89476
|
Position = "position",
|
|
89477
|
+
Proposal = "proposal",
|
|
89376
89478
|
Worker = "worker"
|
|
89377
89479
|
}
|
|
89378
89480
|
export declare type RadarFieldDefinition = {
|
|
@@ -89557,6 +89659,11 @@ export declare type RadarPosition = Node & RadarEntity & {
|
|
|
89557
89659
|
export declare type RadarPositionFieldValuesArgs = {
|
|
89558
89660
|
fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
89559
89661
|
};
|
|
89662
|
+
export declare type RadarPositionAllocationChange = {
|
|
89663
|
+
__typename?: 'RadarPositionAllocationChange';
|
|
89664
|
+
id: Scalars['ID']['output'];
|
|
89665
|
+
positionId: Scalars['ID']['output'];
|
|
89666
|
+
};
|
|
89560
89667
|
export declare type RadarPositionConnection = RadarConnection & {
|
|
89561
89668
|
__typename?: 'RadarPositionConnection';
|
|
89562
89669
|
edges?: Maybe<Array<RadarPositionEdge>>;
|
|
@@ -89570,7 +89677,7 @@ export declare type RadarPositionEdge = RadarEdge & {
|
|
|
89570
89677
|
node: RadarPosition;
|
|
89571
89678
|
};
|
|
89572
89679
|
export declare type RadarPositionProposalChangeInput = {
|
|
89573
|
-
changeProposalAri
|
|
89680
|
+
changeProposalAri: Scalars['ID']['input'];
|
|
89574
89681
|
positionAri: Scalars['ID']['input'];
|
|
89575
89682
|
sourceFocusAreaAri?: InputMaybe<Scalars['ID']['input']>;
|
|
89576
89683
|
targetFocusAreaAri: Scalars['ID']['input'];
|
|
@@ -89623,6 +89730,11 @@ export declare type RadarStringFieldValue = {
|
|
|
89623
89730
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89624
89731
|
value?: Maybe<Scalars['String']['output']>;
|
|
89625
89732
|
};
|
|
89733
|
+
export declare type RadarUpdateFocusAreaProposalChangesMutationResponse = {
|
|
89734
|
+
__typename?: 'RadarUpdateFocusAreaProposalChangesMutationResponse';
|
|
89735
|
+
changes?: Maybe<Array<Maybe<RadarPositionAllocationChange>>>;
|
|
89736
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
89737
|
+
};
|
|
89626
89738
|
export declare type RadarUrlFieldValue = {
|
|
89627
89739
|
__typename?: 'RadarUrlFieldValue';
|
|
89628
89740
|
displayValue?: Maybe<Scalars['String']['output']>;
|
|
@@ -92567,9 +92679,7 @@ export declare type ShepherdActor = {
|
|
|
92567
92679
|
productAccess?: Maybe<Array<Maybe<ShepherdActorProductAccess>>>;
|
|
92568
92680
|
sessions?: Maybe<Array<Maybe<ShepherdActorSession>>>;
|
|
92569
92681
|
user?: Maybe<User>;
|
|
92570
|
-
|
|
92571
|
-
export declare type ShepherdActorOrgInfoArgs = {
|
|
92572
|
-
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
92682
|
+
workspaceAri?: Maybe<Scalars['ID']['output']>;
|
|
92573
92683
|
};
|
|
92574
92684
|
export declare type ShepherdActorActivity = {
|
|
92575
92685
|
__typename?: 'ShepherdActorActivity';
|
|
@@ -92598,11 +92708,13 @@ export declare type ShepherdActorMutations = {
|
|
|
92598
92708
|
};
|
|
92599
92709
|
export declare type ShepherdActorMutationsSuspendArgs = {
|
|
92600
92710
|
aaid: Scalars['ID']['input'];
|
|
92601
|
-
orgId
|
|
92711
|
+
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
92712
|
+
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
92602
92713
|
};
|
|
92603
92714
|
export declare type ShepherdActorMutationsUnsuspendArgs = {
|
|
92604
92715
|
aaid: Scalars['ID']['input'];
|
|
92605
|
-
orgId
|
|
92716
|
+
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
92717
|
+
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
92606
92718
|
};
|
|
92607
92719
|
export declare type ShepherdActorOrgInfo = {
|
|
92608
92720
|
__typename?: 'ShepherdActorOrgInfo';
|
|
@@ -92849,9 +92961,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
92849
92961
|
DeletedTunnel = "DELETED_TUNNEL",
|
|
92850
92962
|
EcosystemAuditLogInstallationCreated = "ECOSYSTEM_AUDIT_LOG_INSTALLATION_CREATED",
|
|
92851
92963
|
EcosystemAuditLogInstallationDeleted = "ECOSYSTEM_AUDIT_LOG_INSTALLATION_DELETED",
|
|
92852
|
-
EcosystemAuditLogUserGrantCreated = "ECOSYSTEM_AUDIT_LOG_USER_GRANT_CREATED",
|
|
92853
92964
|
EducationalAlert = "EDUCATIONAL_ALERT",
|
|
92854
|
-
EnableScimSync = "ENABLE_SCIM_SYNC",
|
|
92855
92965
|
ExportedOrgeventscsv = "EXPORTED_ORGEVENTSCSV",
|
|
92856
92966
|
GrantAssignedJiraPermissionScheme = "GRANT_ASSIGNED_JIRA_PERMISSION_SCHEME",
|
|
92857
92967
|
IdentityPasswordResetCompletedUser = "IDENTITY_PASSWORD_RESET_COMPLETED_USER",
|
|
@@ -93452,6 +93562,7 @@ export declare type ShepherdQueryShepherdActivityArgs = {
|
|
|
93452
93562
|
export declare type ShepherdQueryShepherdActorArgs = {
|
|
93453
93563
|
aaid: Scalars['ID']['input'];
|
|
93454
93564
|
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
93565
|
+
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
93455
93566
|
};
|
|
93456
93567
|
export declare type ShepherdQueryShepherdAlertArgs = {
|
|
93457
93568
|
id: Scalars['ID']['input'];
|
|
@@ -103031,6 +103142,7 @@ export declare type WorkSuggestionsCompassScorecardCriterionTask = WorkSuggestio
|
|
|
103031
103142
|
criterionId?: Maybe<Scalars['ID']['output']>;
|
|
103032
103143
|
id: Scalars['String']['output'];
|
|
103033
103144
|
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
103145
|
+
scorecard?: Maybe<CompassScorecard>;
|
|
103034
103146
|
scorecardAri?: Maybe<Scalars['ID']['output']>;
|
|
103035
103147
|
title: Scalars['String']['output'];
|
|
103036
103148
|
url: Scalars['String']['output'];
|