@forge/cli-shared 8.7.0-next.2 → 8.7.0-next.3
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 +10 -0
- package/out/graphql/graphql-types.d.ts +204 -14
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +50 -27
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 8.7.0-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [eeaa160]
|
|
8
|
+
- Updated dependencies [a85376a]
|
|
9
|
+
- Updated dependencies [5f384d1]
|
|
10
|
+
- Updated dependencies [fa952eb]
|
|
11
|
+
- @forge/manifest@10.6.0-next.2
|
|
12
|
+
|
|
3
13
|
## 8.7.0-next.2
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
|
@@ -751,6 +751,7 @@ export declare type ActionsAction = {
|
|
|
751
751
|
extensionAri?: Maybe<Scalars['String']['output']>;
|
|
752
752
|
icon?: Maybe<Scalars['String']['output']>;
|
|
753
753
|
id?: Maybe<Scalars['String']['output']>;
|
|
754
|
+
inputSchema?: Maybe<Scalars['JSON']['output']>;
|
|
754
755
|
inputs?: Maybe<Array<ActionsActionInputTuple>>;
|
|
755
756
|
isConsequential: Scalars['Boolean']['output'];
|
|
756
757
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -2099,7 +2100,7 @@ export declare type AdminWorkspace = {
|
|
|
2099
2100
|
status: Scalars['String']['output'];
|
|
2100
2101
|
statusDetails?: Maybe<Array<Scalars['String']['output']>>;
|
|
2101
2102
|
type: Scalars['String']['output'];
|
|
2102
|
-
url
|
|
2103
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
2103
2104
|
vendor?: Maybe<AdminVendor>;
|
|
2104
2105
|
};
|
|
2105
2106
|
export declare type AdminWorkspaceConnection = {
|
|
@@ -2272,6 +2273,7 @@ export declare type AgentStudioAgentPermissions = {
|
|
|
2272
2273
|
canDelete: Scalars['Boolean']['output'];
|
|
2273
2274
|
canEdit: Scalars['Boolean']['output'];
|
|
2274
2275
|
canManage: Scalars['Boolean']['output'];
|
|
2276
|
+
canTransferOwnership: Scalars['Boolean']['output'];
|
|
2275
2277
|
};
|
|
2276
2278
|
export declare type AgentStudioAgentQueryInput = {
|
|
2277
2279
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -6342,6 +6344,18 @@ export declare type CcpChargeElement = CommerceChargeElement & {
|
|
|
6342
6344
|
ceiling?: Maybe<Scalars['Int']['output']>;
|
|
6343
6345
|
unit?: Maybe<Scalars['String']['output']>;
|
|
6344
6346
|
};
|
|
6347
|
+
export declare type CcpChargeElementLatestAllowancesInput = {
|
|
6348
|
+
entityId?: InputMaybe<Scalars['String']['input']>;
|
|
6349
|
+
entityType: CcpLatestAllowancesEntityType;
|
|
6350
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
6351
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
6352
|
+
usageKey: Scalars['String']['input'];
|
|
6353
|
+
};
|
|
6354
|
+
export declare type CcpChargeElementLatestAllowancesResult = {
|
|
6355
|
+
__typename?: 'CcpChargeElementLatestAllowancesResult';
|
|
6356
|
+
metadata?: Maybe<CcpLatestAllowancesMetadata>;
|
|
6357
|
+
values?: Maybe<Array<Maybe<CcpLatestAllowancesBucket>>>;
|
|
6358
|
+
};
|
|
6345
6359
|
export declare type CcpChargeQuantity = CommerceChargeQuantity & {
|
|
6346
6360
|
__typename?: 'CcpChargeQuantity';
|
|
6347
6361
|
chargeElement?: Maybe<Scalars['String']['output']>;
|
|
@@ -6543,6 +6557,7 @@ export declare type CcpDeveloperLicense = CcpBaseLicense & {
|
|
|
6543
6557
|
unitType?: Maybe<Scalars['String']['output']>;
|
|
6544
6558
|
version?: Maybe<Scalars['Float']['output']>;
|
|
6545
6559
|
};
|
|
6560
|
+
export declare type CcpDeveloperLicenseResult = CcpDeveloperLicense | CcpLicenseError;
|
|
6546
6561
|
export declare enum CcpDuration {
|
|
6547
6562
|
Forever = "FOREVER",
|
|
6548
6563
|
Once = "ONCE",
|
|
@@ -6561,12 +6576,14 @@ export declare type CcpEligiblePromotionWindow = {
|
|
|
6561
6576
|
export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
6562
6577
|
__typename?: 'CcpEntitlement';
|
|
6563
6578
|
changeReason?: Maybe<Scalars['String']['output']>;
|
|
6579
|
+
chargeElementLatestAllowancesDetails?: Maybe<CcpChargeElementLatestAllowancesResult>;
|
|
6564
6580
|
childrenIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
6565
6581
|
context?: Maybe<CcpContext>;
|
|
6566
6582
|
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
6567
6583
|
defaultOfferingTransitions?: Maybe<Array<Maybe<CcpEntitlementOfferingTransition>>>;
|
|
6568
6584
|
defaultStandaloneOfferingTransitions?: Maybe<Array<Maybe<CcpEntitlementOfferingTransition>>>;
|
|
6569
6585
|
developerLicense?: Maybe<CcpDeveloperLicense>;
|
|
6586
|
+
developerLicenseV2?: Maybe<CcpDeveloperLicenseResult>;
|
|
6570
6587
|
enableAbuseProneFeatures?: Maybe<Scalars['Boolean']['output']>;
|
|
6571
6588
|
entitlementId?: Maybe<Scalars['ID']['output']>;
|
|
6572
6589
|
entitlementProfile?: Maybe<GrowthUnifiedProfileEntitlementProfileResult>;
|
|
@@ -6578,6 +6595,7 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
6578
6595
|
invoiceRequests?: Maybe<Array<Maybe<CcpInvoiceRequest>>>;
|
|
6579
6596
|
latestUsageForChargeElement?: Maybe<Scalars['Int']['output']>;
|
|
6580
6597
|
license?: Maybe<CcpLicense>;
|
|
6598
|
+
licenseV2?: Maybe<CcpLicenseResult>;
|
|
6581
6599
|
metadata?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
6582
6600
|
meteredChargeElementUsageAggregated?: Maybe<CcpUsageQueryResult>;
|
|
6583
6601
|
meteredChargeElementUsageLatest?: Maybe<Scalars['Float']['output']>;
|
|
@@ -6597,6 +6615,9 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
6597
6615
|
usage?: Maybe<Array<Maybe<CcpEntitlementUsage>>>;
|
|
6598
6616
|
version?: Maybe<Scalars['Int']['output']>;
|
|
6599
6617
|
};
|
|
6618
|
+
export declare type CcpEntitlementChargeElementLatestAllowancesDetailsArgs = {
|
|
6619
|
+
input: CcpChargeElementLatestAllowancesInput;
|
|
6620
|
+
};
|
|
6600
6621
|
export declare type CcpEntitlementDefaultOfferingTransitionsArgs = {
|
|
6601
6622
|
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
6602
6623
|
};
|
|
@@ -6799,6 +6820,34 @@ export declare type CcpInvoiceRequestItemSubscriptionObj = {
|
|
|
6799
6820
|
id?: Maybe<Scalars['ID']['output']>;
|
|
6800
6821
|
itemId?: Maybe<Scalars['String']['output']>;
|
|
6801
6822
|
};
|
|
6823
|
+
export declare enum CcpLatestAllowanceEnforcementModeType {
|
|
6824
|
+
Block = "BLOCK",
|
|
6825
|
+
LimitedOverage = "LIMITED_OVERAGE",
|
|
6826
|
+
Overage = "OVERAGE"
|
|
6827
|
+
}
|
|
6828
|
+
export declare type CcpLatestAllowancesBucket = {
|
|
6829
|
+
__typename?: 'CcpLatestAllowancesBucket';
|
|
6830
|
+
balance?: Maybe<Scalars['Float']['output']>;
|
|
6831
|
+
ceiling?: Maybe<Scalars['Float']['output']>;
|
|
6832
|
+
contextAri?: Maybe<Scalars['String']['output']>;
|
|
6833
|
+
enforcementMode?: Maybe<CcpLatestAllowanceEnforcementModeType>;
|
|
6834
|
+
entityAri?: Maybe<Scalars['String']['output']>;
|
|
6835
|
+
latestUsage?: Maybe<Scalars['Float']['output']>;
|
|
6836
|
+
overageCap?: Maybe<Scalars['Float']['output']>;
|
|
6837
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
6838
|
+
};
|
|
6839
|
+
export declare enum CcpLatestAllowancesEntityType {
|
|
6840
|
+
Cloud = "CLOUD",
|
|
6841
|
+
Entitlement = "ENTITLEMENT",
|
|
6842
|
+
Organization = "ORGANIZATION",
|
|
6843
|
+
User = "USER"
|
|
6844
|
+
}
|
|
6845
|
+
export declare type CcpLatestAllowancesMetadata = {
|
|
6846
|
+
__typename?: 'CcpLatestAllowancesMetadata';
|
|
6847
|
+
page?: Maybe<Scalars['Int']['output']>;
|
|
6848
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
6849
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
6850
|
+
};
|
|
6802
6851
|
export declare type CcpLicense = CcpBaseLicense & {
|
|
6803
6852
|
__typename?: 'CcpLicense';
|
|
6804
6853
|
billToPartyName?: Maybe<Scalars['String']['output']>;
|
|
@@ -6823,6 +6872,18 @@ export declare type CcpLicense = CcpBaseLicense & {
|
|
|
6823
6872
|
updatedByEmail?: Maybe<Scalars['String']['output']>;
|
|
6824
6873
|
version?: Maybe<Scalars['Float']['output']>;
|
|
6825
6874
|
};
|
|
6875
|
+
export declare type CcpLicenseError = {
|
|
6876
|
+
__typename?: 'CcpLicenseError';
|
|
6877
|
+
code?: Maybe<CcpLicenseErrorCode>;
|
|
6878
|
+
details?: Maybe<Scalars['String']['output']>;
|
|
6879
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
6880
|
+
};
|
|
6881
|
+
export declare enum CcpLicenseErrorCode {
|
|
6882
|
+
InternalError = "INTERNAL_ERROR",
|
|
6883
|
+
LicenseNotFound = "LICENSE_NOT_FOUND",
|
|
6884
|
+
ServerIdMissing = "SERVER_ID_MISSING"
|
|
6885
|
+
}
|
|
6886
|
+
export declare type CcpLicenseResult = CcpLicense | CcpLicenseError;
|
|
6826
6887
|
export declare type CcpListPriceEstimate = {
|
|
6827
6888
|
__typename?: 'CcpListPriceEstimate';
|
|
6828
6889
|
averageAmountPerUnit?: Maybe<Scalars['Float']['output']>;
|
|
@@ -6886,6 +6947,7 @@ export declare type CcpOffering = CommerceOffering & Node & {
|
|
|
6886
6947
|
entitlementTemplate?: Maybe<CcpEntitlementTemplate>;
|
|
6887
6948
|
entitlementTemplateId?: Maybe<Scalars['ID']['output']>;
|
|
6888
6949
|
expiryDate?: Maybe<Scalars['Float']['output']>;
|
|
6950
|
+
extensions?: Maybe<Array<Maybe<CcpExtension>>>;
|
|
6889
6951
|
hostingType?: Maybe<CcpOfferingHostingType>;
|
|
6890
6952
|
id: Scalars['ID']['output'];
|
|
6891
6953
|
key?: Maybe<Scalars['ID']['output']>;
|
|
@@ -6913,6 +6975,9 @@ export declare type CcpOffering = CommerceOffering & Node & {
|
|
|
6913
6975
|
export declare type CcpOfferingDefaultTransitionsArgs = {
|
|
6914
6976
|
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
6915
6977
|
};
|
|
6978
|
+
export declare type CcpOfferingExtensionsArgs = {
|
|
6979
|
+
revisionKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
6980
|
+
};
|
|
6916
6981
|
export declare type CcpOfferingOfferingRelationshipsArgs = {
|
|
6917
6982
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
6918
6983
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -8205,6 +8270,7 @@ export declare type ChannelPlatformConnectDetails = {
|
|
|
8205
8270
|
__typename?: 'ChannelPlatformConnectDetails';
|
|
8206
8271
|
instanceCcpUrl?: Maybe<Scalars['String']['output']>;
|
|
8207
8272
|
region?: Maybe<Scalars['String']['output']>;
|
|
8273
|
+
ssoLoginUrl?: Maybe<Scalars['String']['output']>;
|
|
8208
8274
|
};
|
|
8209
8275
|
export declare type ChannelPlatformConnectQueue = {
|
|
8210
8276
|
__typename?: 'ChannelPlatformConnectQueue';
|
|
@@ -8244,6 +8310,9 @@ export declare type ChannelPlatformEventRelayRequest = {
|
|
|
8244
8310
|
};
|
|
8245
8311
|
export declare enum ChannelPlatformEventType {
|
|
8246
8312
|
AgentInitialMessage = "AGENT_INITIAL_MESSAGE",
|
|
8313
|
+
ConferenceEnded = "CONFERENCE_ENDED",
|
|
8314
|
+
ConferenceInitiated = "CONFERENCE_INITIATED",
|
|
8315
|
+
ConferenceResponse = "CONFERENCE_RESPONSE",
|
|
8247
8316
|
CustomChatClosed = "CUSTOM_CHAT_CLOSED",
|
|
8248
8317
|
Initiated = "INITIATED"
|
|
8249
8318
|
}
|
|
@@ -8450,6 +8519,7 @@ export declare type ClassificationLevelDetails = {
|
|
|
8450
8519
|
__typename?: 'ClassificationLevelDetails';
|
|
8451
8520
|
classificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
8452
8521
|
classificationLevelId?: Maybe<Scalars['ID']['output']>;
|
|
8522
|
+
featureEnabled: Scalars['Boolean']['output'];
|
|
8453
8523
|
source?: Maybe<ClassificationLevelSource>;
|
|
8454
8524
|
};
|
|
8455
8525
|
export declare enum ClassificationLevelSource {
|
|
@@ -15088,11 +15158,15 @@ export declare type ConfluenceCreateQuestionPayload = Payload & {
|
|
|
15088
15158
|
success: Scalars['Boolean']['output'];
|
|
15089
15159
|
};
|
|
15090
15160
|
export declare type ConfluenceCreateSpaceContent = {
|
|
15091
|
-
|
|
15161
|
+
parent?: InputMaybe<ConfluenceCreateSpaceContentParent>;
|
|
15092
15162
|
templateKey?: InputMaybe<Scalars['String']['input']>;
|
|
15093
15163
|
title: Scalars['String']['input'];
|
|
15094
15164
|
type: ConfluenceCreateSpaceContentType;
|
|
15095
15165
|
};
|
|
15166
|
+
export declare type ConfluenceCreateSpaceContentParent = {
|
|
15167
|
+
title: Scalars['String']['input'];
|
|
15168
|
+
type: ConfluenceCreateSpaceContentType;
|
|
15169
|
+
};
|
|
15096
15170
|
export declare enum ConfluenceCreateSpaceContentType {
|
|
15097
15171
|
Folder = "FOLDER",
|
|
15098
15172
|
Page = "PAGE"
|
|
@@ -15545,8 +15619,8 @@ export declare type ConfluenceExperimentInitModernizePayload = {
|
|
|
15545
15619
|
};
|
|
15546
15620
|
export declare type ConfluenceExpert = {
|
|
15547
15621
|
__typename?: 'ConfluenceExpert';
|
|
15548
|
-
accountId: Scalars['ID']['output'];
|
|
15549
15622
|
allTimeReputation?: Maybe<ConfluenceExpertReputation>;
|
|
15623
|
+
user?: Maybe<AtlassianUser>;
|
|
15550
15624
|
weeklyReputation?: Maybe<ConfluenceExpertReputation>;
|
|
15551
15625
|
};
|
|
15552
15626
|
export declare type ConfluenceExpertWeeklyReputationArgs = {
|
|
@@ -20566,14 +20640,12 @@ export declare type ConvertPageToLiveEditValidationResult = {
|
|
|
20566
20640
|
};
|
|
20567
20641
|
export declare type ConvoAiJira3pRelatedLinksEdge = {
|
|
20568
20642
|
__typename?: 'ConvoAiJira3pRelatedLinksEdge';
|
|
20569
|
-
cursor: Scalars['String']['output'];
|
|
20570
20643
|
node?: Maybe<ConvoAiThirdPartyRelatedLink>;
|
|
20571
20644
|
};
|
|
20572
20645
|
export declare type ConvoAiJira3pRelatedLinksResult = {
|
|
20573
20646
|
__typename?: 'ConvoAiJira3pRelatedLinksResult';
|
|
20574
20647
|
edges?: Maybe<Array<ConvoAiJira3pRelatedLinksEdge>>;
|
|
20575
20648
|
errors?: Maybe<Array<QueryError>>;
|
|
20576
|
-
pageInfo: PageInfo;
|
|
20577
20649
|
};
|
|
20578
20650
|
export declare type ConvoAiJiraConfluenceBlogSuggestion = {
|
|
20579
20651
|
__typename?: 'ConvoAiJiraConfluenceBlogSuggestion';
|
|
@@ -20637,8 +20709,9 @@ export declare type ConvoAiJiraSimilarWorkItemsSimilarityConfig = {
|
|
|
20637
20709
|
export declare type ConvoAiThirdPartyRelatedLink = {
|
|
20638
20710
|
__typename?: 'ConvoAiThirdPartyRelatedLink';
|
|
20639
20711
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
20712
|
+
id: Scalars['String']['output'];
|
|
20640
20713
|
name: Scalars['String']['output'];
|
|
20641
|
-
|
|
20714
|
+
productSource?: Maybe<Scalars['String']['output']>;
|
|
20642
20715
|
url: Scalars['String']['output'];
|
|
20643
20716
|
};
|
|
20644
20717
|
export declare type CopyPolarisInsightsContainerInput = {
|
|
@@ -42057,7 +42130,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
42057
42130
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
42058
42131
|
id: Scalars['ID']['output'];
|
|
42059
42132
|
};
|
|
42060
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
42133
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
42061
42134
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
42062
42135
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
42063
42136
|
value: Scalars['String']['output'];
|
|
@@ -42067,13 +42140,13 @@ export declare type GraphStoreCypherQueryV2AriNode = {
|
|
|
42067
42140
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
42068
42141
|
id: Scalars['ID']['output'];
|
|
42069
42142
|
};
|
|
42070
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
42143
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
42071
42144
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
42072
42145
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
42073
42146
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
42074
42147
|
id: Scalars['ID']['output'];
|
|
42075
42148
|
};
|
|
42076
|
-
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
42149
|
+
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
42077
42150
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
42078
42151
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
42079
42152
|
value: Scalars['Boolean']['output'];
|
|
@@ -42174,7 +42247,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
42174
42247
|
V2 = "V2",
|
|
42175
42248
|
V3 = "V3"
|
|
42176
42249
|
}
|
|
42177
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
42250
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
42178
42251
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
42179
42252
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
42180
42253
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -62187,6 +62260,7 @@ export declare type JiraBoardView = {
|
|
|
62187
62260
|
groupByConfig?: Maybe<JiraViewGroupByConfig>;
|
|
62188
62261
|
groupByOptions?: Maybe<Array<JiraViewGroupByConfig>>;
|
|
62189
62262
|
id: Scalars['ID']['output'];
|
|
62263
|
+
isEmpty?: Maybe<Scalars['Boolean']['output']>;
|
|
62190
62264
|
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
62191
62265
|
layout?: Maybe<JiraBoardViewLayout>;
|
|
62192
62266
|
selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -68131,6 +68205,18 @@ export declare type JiraIssueNavigatorSearchLayoutMutationPayload = Payload & {
|
|
|
68131
68205
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
68132
68206
|
success: Scalars['Boolean']['output'];
|
|
68133
68207
|
};
|
|
68208
|
+
export declare type JiraIssuePickerInput = {
|
|
68209
|
+
currentIssueId: Scalars['ID']['input'];
|
|
68210
|
+
currentJQL?: InputMaybe<Scalars['String']['input']>;
|
|
68211
|
+
currentProjectId?: InputMaybe<Scalars['String']['input']>;
|
|
68212
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
68213
|
+
showSubTaskParent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68214
|
+
showSubTasks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68215
|
+
};
|
|
68216
|
+
export declare type JiraIssuePickerResult = {
|
|
68217
|
+
__typename?: 'JiraIssuePickerResult';
|
|
68218
|
+
sections?: Maybe<Array<Maybe<JiraIssueSection>>>;
|
|
68219
|
+
};
|
|
68134
68220
|
export declare type JiraIssuePullRequestDevSummary = {
|
|
68135
68221
|
__typename?: 'JiraIssuePullRequestDevSummary';
|
|
68136
68222
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -68634,6 +68720,14 @@ export declare type JiraIssueSearchViewQueryInput = {
|
|
|
68634
68720
|
viewAri?: InputMaybe<Scalars['ID']['input']>;
|
|
68635
68721
|
};
|
|
68636
68722
|
export declare type JiraIssueSearchViewResult = JiraIssueSearchView | QueryError;
|
|
68723
|
+
export declare type JiraIssueSection = {
|
|
68724
|
+
__typename?: 'JiraIssueSection';
|
|
68725
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
68726
|
+
issues?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
68727
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
68728
|
+
msg?: Maybe<Scalars['String']['output']>;
|
|
68729
|
+
sub?: Maybe<Scalars['String']['output']>;
|
|
68730
|
+
};
|
|
68637
68731
|
export declare type JiraIssueStreamHubEventPayloadProject = {
|
|
68638
68732
|
__typename?: 'JiraIssueStreamHubEventPayloadProject';
|
|
68639
68733
|
id: Scalars['Int']['output'];
|
|
@@ -73858,6 +73952,7 @@ export declare type JiraQuery = {
|
|
|
73858
73952
|
isNaturalLanguageSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
73859
73953
|
isRovoEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
73860
73954
|
isSubtasksEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
73955
|
+
isVotingEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
73861
73956
|
issue?: Maybe<JiraIssue>;
|
|
73862
73957
|
issueById?: Maybe<JiraIssue>;
|
|
73863
73958
|
issueByKey?: Maybe<JiraIssue>;
|
|
@@ -73888,6 +73983,7 @@ export declare type JiraQuery = {
|
|
|
73888
73983
|
jiraCustomerOrganizationsByUUIDs?: Maybe<JiraServiceManagementOrganizationConnection>;
|
|
73889
73984
|
jiraFetchBulkOperationDetails?: Maybe<JiraFetchBulkOperationDetailsResponse>;
|
|
73890
73985
|
jiraFieldConfigs?: Maybe<JiraFieldConfigConnection>;
|
|
73986
|
+
jiraIssuePicker?: Maybe<JiraIssuePickerResult>;
|
|
73891
73987
|
jiraIssueSearchView?: Maybe<JiraView>;
|
|
73892
73988
|
jiraJourneyConfiguration?: Maybe<JiraJourneyConfiguration>;
|
|
73893
73989
|
jiraJourneyItem?: Maybe<JiraJourneyItem>;
|
|
@@ -74356,6 +74452,9 @@ export declare type JiraQueryIsRovoEnabledArgs = {
|
|
|
74356
74452
|
export declare type JiraQueryIsSubtasksEnabledArgs = {
|
|
74357
74453
|
cloudId: Scalars['ID']['input'];
|
|
74358
74454
|
};
|
|
74455
|
+
export declare type JiraQueryIsVotingEnabledArgs = {
|
|
74456
|
+
cloudId: Scalars['ID']['input'];
|
|
74457
|
+
};
|
|
74359
74458
|
export declare type JiraQueryIssueArgs = {
|
|
74360
74459
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
74361
74460
|
};
|
|
@@ -74503,6 +74602,9 @@ export declare type JiraQueryJiraFieldConfigsArgs = {
|
|
|
74503
74602
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
74504
74603
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
74505
74604
|
};
|
|
74605
|
+
export declare type JiraQueryJiraIssuePickerArgs = {
|
|
74606
|
+
input: JiraIssuePickerInput;
|
|
74607
|
+
};
|
|
74506
74608
|
export declare type JiraQueryJiraIssueSearchViewArgs = {
|
|
74507
74609
|
cloudId: Scalars['ID']['input'];
|
|
74508
74610
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -78401,6 +78503,26 @@ export declare type JiraSubscriptionOnSuggestedChildIssueArgs = {
|
|
|
78401
78503
|
issueTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
78402
78504
|
sourceIssueId: Scalars['ID']['input'];
|
|
78403
78505
|
};
|
|
78506
|
+
export declare type JiraSubtaskSummary = {
|
|
78507
|
+
__typename?: 'JiraSubtaskSummary';
|
|
78508
|
+
totalCompletedCount?: Maybe<Scalars['Int']['output']>;
|
|
78509
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
78510
|
+
};
|
|
78511
|
+
export declare type JiraSubtaskSummaryField = JiraIssueField & Node & {
|
|
78512
|
+
__typename?: 'JiraSubtaskSummaryField';
|
|
78513
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
78514
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
78515
|
+
fieldId: Scalars['String']['output'];
|
|
78516
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
78517
|
+
id: Scalars['ID']['output'];
|
|
78518
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
78519
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
78520
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
78521
|
+
issue?: Maybe<JiraIssue>;
|
|
78522
|
+
name: Scalars['String']['output'];
|
|
78523
|
+
subtaskSummary?: Maybe<JiraSubtaskSummary>;
|
|
78524
|
+
type: Scalars['String']['output'];
|
|
78525
|
+
};
|
|
78404
78526
|
export declare type JiraSubtasksField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
78405
78527
|
__typename?: 'JiraSubtasksField';
|
|
78406
78528
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -89616,6 +89738,7 @@ export declare type Mutation = {
|
|
|
89616
89738
|
polarisAddReaction?: Maybe<PolarisAddReactionPayload>;
|
|
89617
89739
|
polarisDeleteReaction?: Maybe<PolarisDeleteReactionPayload>;
|
|
89618
89740
|
projects_addGoalLink?: Maybe<TownsquareProjectsAddGoalLinkPayload>;
|
|
89741
|
+
projects_addJiraWorkItemLink?: Maybe<TownsquareProjectsAddJiraWorkItemLinkPayload>;
|
|
89619
89742
|
projects_addMembers?: Maybe<TownsquareProjectsAddMembersPayload>;
|
|
89620
89743
|
projects_addTeamContributors?: Maybe<TownsquareProjectsAddTeamContributorsPayload>;
|
|
89621
89744
|
projects_clone?: Maybe<TownsquareProjectsClonePayload>;
|
|
@@ -89629,6 +89752,7 @@ export declare type Mutation = {
|
|
|
89629
89752
|
projects_editUpdate?: Maybe<TownsquareProjectsEditUpdatePayload>;
|
|
89630
89753
|
projects_removeDependency?: Maybe<TownsquareProjectsRemoveDependencyPayload>;
|
|
89631
89754
|
projects_removeGoalLink?: Maybe<TownsquareProjectsRemoveGoalLinkPayload>;
|
|
89755
|
+
projects_removeJiraWorkItemLink?: Maybe<TownsquareProjectsRemoveJiraWorkItemLinkPayload>;
|
|
89632
89756
|
projects_removeMember?: Maybe<TownsquareProjectsRemoveMemberPayload>;
|
|
89633
89757
|
projects_removeTeamContributors?: Maybe<TownsquareProjectsRemoveTeamContributorsPayload>;
|
|
89634
89758
|
projects_setDependency?: Maybe<TownsquareProjectsSetDependencyPayload>;
|
|
@@ -90689,7 +90813,7 @@ export declare type MutationCsmAi_CreateActionForAgentArgs = {
|
|
|
90689
90813
|
input: CsmAiCreateActionInput;
|
|
90690
90814
|
};
|
|
90691
90815
|
export declare type MutationCsmAi_CreateCoachingContentArgs = {
|
|
90692
|
-
|
|
90816
|
+
csmAiAgentId?: InputMaybe<Scalars['ID']['input']>;
|
|
90693
90817
|
csmAiHubId: Scalars['ID']['input'];
|
|
90694
90818
|
helpCenterAri: Scalars['ID']['input'];
|
|
90695
90819
|
input: CsmAiCreateCoachingContentInput;
|
|
@@ -90700,7 +90824,7 @@ export declare type MutationCsmAi_DeleteActionArgs = {
|
|
|
90700
90824
|
helpCenterAri: Scalars['ID']['input'];
|
|
90701
90825
|
};
|
|
90702
90826
|
export declare type MutationCsmAi_DeleteCoachingContentArgs = {
|
|
90703
|
-
|
|
90827
|
+
csmAiAgentId?: InputMaybe<Scalars['ID']['input']>;
|
|
90704
90828
|
csmAiCoachingContentId: Scalars['ID']['input'];
|
|
90705
90829
|
csmAiHubId: Scalars['ID']['input'];
|
|
90706
90830
|
helpCenterAri: Scalars['ID']['input'];
|
|
@@ -90736,7 +90860,7 @@ export declare type MutationCsmAi_UpdateAgentIdentityArgs = {
|
|
|
90736
90860
|
input?: InputMaybe<CsmAiUpdateAgentInput>;
|
|
90737
90861
|
};
|
|
90738
90862
|
export declare type MutationCsmAi_UpdateCoachingContentArgs = {
|
|
90739
|
-
|
|
90863
|
+
csmAiAgentId?: InputMaybe<Scalars['ID']['input']>;
|
|
90740
90864
|
csmAiCoachingContentId: Scalars['ID']['input'];
|
|
90741
90865
|
csmAiHubId: Scalars['ID']['input'];
|
|
90742
90866
|
helpCenterAri: Scalars['ID']['input'];
|
|
@@ -91445,6 +91569,9 @@ export declare type MutationPolarisDeleteReactionArgs = {
|
|
|
91445
91569
|
export declare type MutationProjects_AddGoalLinkArgs = {
|
|
91446
91570
|
input: TownsquareProjectsAddGoalLink;
|
|
91447
91571
|
};
|
|
91572
|
+
export declare type MutationProjects_AddJiraWorkItemLinkArgs = {
|
|
91573
|
+
input: TownsquareProjectsAddJiraWorkItemLinkInput;
|
|
91574
|
+
};
|
|
91448
91575
|
export declare type MutationProjects_AddMembersArgs = {
|
|
91449
91576
|
input?: InputMaybe<TownsquareProjectsAddMembersInput>;
|
|
91450
91577
|
};
|
|
@@ -91484,6 +91611,9 @@ export declare type MutationProjects_RemoveDependencyArgs = {
|
|
|
91484
91611
|
export declare type MutationProjects_RemoveGoalLinkArgs = {
|
|
91485
91612
|
input: TownsquareProjectsRemoveGoalLinkInput;
|
|
91486
91613
|
};
|
|
91614
|
+
export declare type MutationProjects_RemoveJiraWorkItemLinkArgs = {
|
|
91615
|
+
input: TownsquareProjectsRemoveJiraWorkItemLinkInput;
|
|
91616
|
+
};
|
|
91487
91617
|
export declare type MutationProjects_RemoveMemberArgs = {
|
|
91488
91618
|
input: TownsquareProjectsRemoveMemberInput;
|
|
91489
91619
|
};
|
|
@@ -95626,6 +95756,7 @@ export declare type Query = {
|
|
|
95626
95756
|
projects_canCreateProjectFusion?: Maybe<TownsquareProjectsCanCreateProjectFusionPayload>;
|
|
95627
95757
|
projects_linksByIds?: Maybe<Array<Maybe<TownsquareLink>>>;
|
|
95628
95758
|
projects_search?: Maybe<TownsquareProjectConnection>;
|
|
95759
|
+
projects_searchJiraWorkItemsToLink?: Maybe<TownsquareJiraWorkItemConnection>;
|
|
95629
95760
|
projects_updatesByIds?: Maybe<Array<Maybe<TownsquareProjectUpdate>>>;
|
|
95630
95761
|
ptpage?: Maybe<PtPage>;
|
|
95631
95762
|
publicLinkInformation?: Maybe<PublicLinkInformation>;
|
|
@@ -97055,6 +97186,7 @@ export declare type QueryConvoai_JiraRelated3pLinksSuggestionsByIssueIdArgs = {
|
|
|
97055
97186
|
id: Scalars['ID']['input'];
|
|
97056
97187
|
issueKey: Scalars['String']['input'];
|
|
97057
97188
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
97189
|
+
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
97058
97190
|
};
|
|
97059
97191
|
export declare type QueryConvoai_JiraRelatedResourcesSuggestionsArgs = {
|
|
97060
97192
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -98342,6 +98474,12 @@ export declare type QueryProjects_SearchArgs = {
|
|
|
98342
98474
|
searchString: Scalars['String']['input'];
|
|
98343
98475
|
sort?: InputMaybe<Array<InputMaybe<TownsquareProjectSortEnum>>>;
|
|
98344
98476
|
};
|
|
98477
|
+
export declare type QueryProjects_SearchJiraWorkItemsToLinkArgs = {
|
|
98478
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
98479
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
98480
|
+
projectId: Scalars['ID']['input'];
|
|
98481
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
98482
|
+
};
|
|
98345
98483
|
export declare type QueryProjects_UpdatesByIdsArgs = {
|
|
98346
98484
|
projectUpdateIds: Array<Scalars['String']['input']>;
|
|
98347
98485
|
};
|
|
@@ -125692,6 +125830,16 @@ export declare type TownsquareIconUrIs = {
|
|
|
125692
125830
|
roundedSquare?: Maybe<TownsquareThemeUrIs>;
|
|
125693
125831
|
square?: Maybe<TownsquareThemeUrIs>;
|
|
125694
125832
|
};
|
|
125833
|
+
export declare type TownsquareJiraWorkItemConnection = {
|
|
125834
|
+
__typename?: 'TownsquareJiraWorkItemConnection';
|
|
125835
|
+
edges?: Maybe<Array<Maybe<TownsquareJiraWorkItemEdge>>>;
|
|
125836
|
+
pageInfo: PageInfo;
|
|
125837
|
+
};
|
|
125838
|
+
export declare type TownsquareJiraWorkItemEdge = {
|
|
125839
|
+
__typename?: 'TownsquareJiraWorkItemEdge';
|
|
125840
|
+
cursor: Scalars['String']['output'];
|
|
125841
|
+
node?: Maybe<JiraIssue>;
|
|
125842
|
+
};
|
|
125695
125843
|
export declare type TownsquareLearning = Node & TownsquareHighlight & {
|
|
125696
125844
|
__typename?: 'TownsquareLearning';
|
|
125697
125845
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -125877,6 +126025,7 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
125877
126025
|
iconUrl?: Maybe<TownsquareIconUrIs>;
|
|
125878
126026
|
id: Scalars['ID']['output'];
|
|
125879
126027
|
isArchived: Scalars['Boolean']['output'];
|
|
126028
|
+
isJiraWorkItemsLimitReached?: Maybe<Scalars['Boolean']['output']>;
|
|
125880
126029
|
isPrivate: Scalars['Boolean']['output'];
|
|
125881
126030
|
key: Scalars['String']['output'];
|
|
125882
126031
|
latestUpdateDate?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -126161,6 +126310,16 @@ export declare type TownsquareProjectsAddGoalLinkPayload = {
|
|
|
126161
126310
|
project?: Maybe<TownsquareProject>;
|
|
126162
126311
|
success: Scalars['Boolean']['output'];
|
|
126163
126312
|
};
|
|
126313
|
+
export declare type TownsquareProjectsAddJiraWorkItemLinkInput = {
|
|
126314
|
+
projectId: Scalars['ID']['input'];
|
|
126315
|
+
workItemId: Scalars['ID']['input'];
|
|
126316
|
+
};
|
|
126317
|
+
export declare type TownsquareProjectsAddJiraWorkItemLinkPayload = {
|
|
126318
|
+
__typename?: 'TownsquareProjectsAddJiraWorkItemLinkPayload';
|
|
126319
|
+
errors?: Maybe<Array<MutationError>>;
|
|
126320
|
+
success: Scalars['Boolean']['output'];
|
|
126321
|
+
workItem?: Maybe<JiraIssue>;
|
|
126322
|
+
};
|
|
126164
126323
|
export declare type TownsquareProjectsAddMembersInput = {
|
|
126165
126324
|
addAsWatchers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
126166
126325
|
projectId: Scalars['ID']['input'];
|
|
@@ -126344,6 +126503,16 @@ export declare type TownsquareProjectsRemoveGoalLinkPayload = {
|
|
|
126344
126503
|
project?: Maybe<TownsquareProject>;
|
|
126345
126504
|
success: Scalars['Boolean']['output'];
|
|
126346
126505
|
};
|
|
126506
|
+
export declare type TownsquareProjectsRemoveJiraWorkItemLinkInput = {
|
|
126507
|
+
projectId: Scalars['ID']['input'];
|
|
126508
|
+
workItemId: Scalars['ID']['input'];
|
|
126509
|
+
};
|
|
126510
|
+
export declare type TownsquareProjectsRemoveJiraWorkItemLinkPayload = {
|
|
126511
|
+
__typename?: 'TownsquareProjectsRemoveJiraWorkItemLinkPayload';
|
|
126512
|
+
errors?: Maybe<Array<MutationError>>;
|
|
126513
|
+
success: Scalars['Boolean']['output'];
|
|
126514
|
+
workItem?: Maybe<JiraIssue>;
|
|
126515
|
+
};
|
|
126347
126516
|
export declare type TownsquareProjectsRemoveMemberInput = {
|
|
126348
126517
|
projectId: Scalars['ID']['input'];
|
|
126349
126518
|
userId: Scalars['ID']['input'];
|
|
@@ -127692,9 +127861,10 @@ export declare enum TrelloCardActionType {
|
|
|
127692
127861
|
UpdateCardClosed = "UPDATE_CARD_CLOSED",
|
|
127693
127862
|
UpdateCardComplete = "UPDATE_CARD_COMPLETE",
|
|
127694
127863
|
UpdateCardDue = "UPDATE_CARD_DUE",
|
|
127864
|
+
UpdateCardRecurrenceRule = "UPDATE_CARD_RECURRENCE_RULE",
|
|
127695
127865
|
UpdateCustomFieldItem = "UPDATE_CUSTOM_FIELD_ITEM"
|
|
127696
127866
|
}
|
|
127697
|
-
export declare type TrelloCardActions = TrelloAddAttachmentToCardAction | TrelloAddChecklistToCardAction | TrelloAddMemberToCardAction | TrelloCommentCardAction | TrelloCopyCardAction | TrelloCopyCommentCardAction | TrelloCopyInboxCardAction | TrelloCreateCardAction | TrelloCreateCardFromCheckItemAction | TrelloCreateCardFromEmailAction | TrelloCreateInboxCardAction | TrelloDeleteAttachmentFromCardAction | TrelloMoveCardAction | TrelloMoveCardToBoardAction | TrelloMoveInboxCardToBoardAction | TrelloRemoveChecklistFromCardAction | TrelloRemoveMemberFromCardAction | TrelloUpdateCardClosedAction | TrelloUpdateCardCompleteAction | TrelloUpdateCardDueAction | TrelloUpdateCheckItemStateOnCardAction | TrelloUpdateCustomFieldItemAction;
|
|
127867
|
+
export declare type TrelloCardActions = TrelloAddAttachmentToCardAction | TrelloAddChecklistToCardAction | TrelloAddMemberToCardAction | TrelloCommentCardAction | TrelloCopyCardAction | TrelloCopyCommentCardAction | TrelloCopyInboxCardAction | TrelloCreateCardAction | TrelloCreateCardFromCheckItemAction | TrelloCreateCardFromEmailAction | TrelloCreateInboxCardAction | TrelloDeleteAttachmentFromCardAction | TrelloMoveCardAction | TrelloMoveCardToBoardAction | TrelloMoveInboxCardToBoardAction | TrelloRemoveChecklistFromCardAction | TrelloRemoveMemberFromCardAction | TrelloUpdateCardClosedAction | TrelloUpdateCardCompleteAction | TrelloUpdateCardDueAction | TrelloUpdateCardRecurrenceRuleAction | TrelloUpdateCheckItemStateOnCardAction | TrelloUpdateCustomFieldItemAction;
|
|
127698
127868
|
export declare type TrelloCardAttachmentsByType = {
|
|
127699
127869
|
__typename?: 'TrelloCardAttachmentsByType';
|
|
127700
127870
|
trello?: Maybe<TrelloCardAttachmentsCount>;
|
|
@@ -130140,6 +130310,25 @@ export declare type TrelloUpdateCardPositionOnPlannerCalendarEventPayload = Payl
|
|
|
130140
130310
|
eventCard?: Maybe<TrelloPlannerCalendarEventCard>;
|
|
130141
130311
|
success: Scalars['Boolean']['output'];
|
|
130142
130312
|
};
|
|
130313
|
+
export declare type TrelloUpdateCardRecurrenceRuleAction = TrelloAction & TrelloCardActionData & {
|
|
130314
|
+
__typename?: 'TrelloUpdateCardRecurrenceRuleAction';
|
|
130315
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
130316
|
+
board?: Maybe<TrelloBoard>;
|
|
130317
|
+
card?: Maybe<TrelloCard>;
|
|
130318
|
+
creator?: Maybe<TrelloMember>;
|
|
130319
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
130320
|
+
displayEntities?: Maybe<TrelloUpdateCardRecurrenceRuleActionDisplayEntities>;
|
|
130321
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
130322
|
+
id: Scalars['ID']['output'];
|
|
130323
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
130324
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
130325
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
130326
|
+
};
|
|
130327
|
+
export declare type TrelloUpdateCardRecurrenceRuleActionDisplayEntities = {
|
|
130328
|
+
__typename?: 'TrelloUpdateCardRecurrenceRuleActionDisplayEntities';
|
|
130329
|
+
card?: Maybe<TrelloActionCardEntity>;
|
|
130330
|
+
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
130331
|
+
};
|
|
130143
130332
|
export declare type TrelloUpdateCheckItemStateOnCardAction = TrelloAction & TrelloCardActionData & {
|
|
130144
130333
|
__typename?: 'TrelloUpdateCheckItemStateOnCardAction';
|
|
130145
130334
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -130209,6 +130398,7 @@ export declare type TrelloUpdateOAuth2ClientPayload = Payload & {
|
|
|
130209
130398
|
appDescription?: Maybe<Scalars['String']['output']>;
|
|
130210
130399
|
appLogoUrl?: Maybe<Scalars['String']['output']>;
|
|
130211
130400
|
appVendorName?: Maybe<Scalars['String']['output']>;
|
|
130401
|
+
application?: Maybe<TrelloApplication>;
|
|
130212
130402
|
callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
|
|
130213
130403
|
clientType?: Maybe<Scalars['String']['output']>;
|
|
130214
130404
|
errors?: Maybe<Array<MutationError>>;
|