@forge/cli-shared 8.7.0-next.1 → 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 +18 -0
- package/out/graphql/graphql-types.d.ts +258 -32
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +50 -27
- package/package.json +2 -2
|
@@ -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']>;
|
|
@@ -4068,6 +4070,7 @@ export declare type AppUninstallationInput = {
|
|
|
4068
4070
|
appId: Scalars['ID']['input'];
|
|
4069
4071
|
async?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4070
4072
|
environmentKey: Scalars['String']['input'];
|
|
4073
|
+
forfeitRemainingFunds?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4071
4074
|
installationContext?: InputMaybe<Scalars['ID']['input']>;
|
|
4072
4075
|
installationId?: InputMaybe<Scalars['ID']['input']>;
|
|
4073
4076
|
licenseOverride?: InputMaybe<LicenseOverrideState>;
|
|
@@ -6341,6 +6344,18 @@ export declare type CcpChargeElement = CommerceChargeElement & {
|
|
|
6341
6344
|
ceiling?: Maybe<Scalars['Int']['output']>;
|
|
6342
6345
|
unit?: Maybe<Scalars['String']['output']>;
|
|
6343
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
|
+
};
|
|
6344
6359
|
export declare type CcpChargeQuantity = CommerceChargeQuantity & {
|
|
6345
6360
|
__typename?: 'CcpChargeQuantity';
|
|
6346
6361
|
chargeElement?: Maybe<Scalars['String']['output']>;
|
|
@@ -6542,6 +6557,7 @@ export declare type CcpDeveloperLicense = CcpBaseLicense & {
|
|
|
6542
6557
|
unitType?: Maybe<Scalars['String']['output']>;
|
|
6543
6558
|
version?: Maybe<Scalars['Float']['output']>;
|
|
6544
6559
|
};
|
|
6560
|
+
export declare type CcpDeveloperLicenseResult = CcpDeveloperLicense | CcpLicenseError;
|
|
6545
6561
|
export declare enum CcpDuration {
|
|
6546
6562
|
Forever = "FOREVER",
|
|
6547
6563
|
Once = "ONCE",
|
|
@@ -6560,12 +6576,14 @@ export declare type CcpEligiblePromotionWindow = {
|
|
|
6560
6576
|
export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
6561
6577
|
__typename?: 'CcpEntitlement';
|
|
6562
6578
|
changeReason?: Maybe<Scalars['String']['output']>;
|
|
6579
|
+
chargeElementLatestAllowancesDetails?: Maybe<CcpChargeElementLatestAllowancesResult>;
|
|
6563
6580
|
childrenIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
6564
6581
|
context?: Maybe<CcpContext>;
|
|
6565
6582
|
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
6566
6583
|
defaultOfferingTransitions?: Maybe<Array<Maybe<CcpEntitlementOfferingTransition>>>;
|
|
6567
6584
|
defaultStandaloneOfferingTransitions?: Maybe<Array<Maybe<CcpEntitlementOfferingTransition>>>;
|
|
6568
6585
|
developerLicense?: Maybe<CcpDeveloperLicense>;
|
|
6586
|
+
developerLicenseV2?: Maybe<CcpDeveloperLicenseResult>;
|
|
6569
6587
|
enableAbuseProneFeatures?: Maybe<Scalars['Boolean']['output']>;
|
|
6570
6588
|
entitlementId?: Maybe<Scalars['ID']['output']>;
|
|
6571
6589
|
entitlementProfile?: Maybe<GrowthUnifiedProfileEntitlementProfileResult>;
|
|
@@ -6577,6 +6595,7 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
6577
6595
|
invoiceRequests?: Maybe<Array<Maybe<CcpInvoiceRequest>>>;
|
|
6578
6596
|
latestUsageForChargeElement?: Maybe<Scalars['Int']['output']>;
|
|
6579
6597
|
license?: Maybe<CcpLicense>;
|
|
6598
|
+
licenseV2?: Maybe<CcpLicenseResult>;
|
|
6580
6599
|
metadata?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
6581
6600
|
meteredChargeElementUsageAggregated?: Maybe<CcpUsageQueryResult>;
|
|
6582
6601
|
meteredChargeElementUsageLatest?: Maybe<Scalars['Float']['output']>;
|
|
@@ -6596,6 +6615,9 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
6596
6615
|
usage?: Maybe<Array<Maybe<CcpEntitlementUsage>>>;
|
|
6597
6616
|
version?: Maybe<Scalars['Int']['output']>;
|
|
6598
6617
|
};
|
|
6618
|
+
export declare type CcpEntitlementChargeElementLatestAllowancesDetailsArgs = {
|
|
6619
|
+
input: CcpChargeElementLatestAllowancesInput;
|
|
6620
|
+
};
|
|
6599
6621
|
export declare type CcpEntitlementDefaultOfferingTransitionsArgs = {
|
|
6600
6622
|
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
6601
6623
|
};
|
|
@@ -6798,6 +6820,34 @@ export declare type CcpInvoiceRequestItemSubscriptionObj = {
|
|
|
6798
6820
|
id?: Maybe<Scalars['ID']['output']>;
|
|
6799
6821
|
itemId?: Maybe<Scalars['String']['output']>;
|
|
6800
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
|
+
};
|
|
6801
6851
|
export declare type CcpLicense = CcpBaseLicense & {
|
|
6802
6852
|
__typename?: 'CcpLicense';
|
|
6803
6853
|
billToPartyName?: Maybe<Scalars['String']['output']>;
|
|
@@ -6822,6 +6872,18 @@ export declare type CcpLicense = CcpBaseLicense & {
|
|
|
6822
6872
|
updatedByEmail?: Maybe<Scalars['String']['output']>;
|
|
6823
6873
|
version?: Maybe<Scalars['Float']['output']>;
|
|
6824
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;
|
|
6825
6887
|
export declare type CcpListPriceEstimate = {
|
|
6826
6888
|
__typename?: 'CcpListPriceEstimate';
|
|
6827
6889
|
averageAmountPerUnit?: Maybe<Scalars['Float']['output']>;
|
|
@@ -6885,6 +6947,7 @@ export declare type CcpOffering = CommerceOffering & Node & {
|
|
|
6885
6947
|
entitlementTemplate?: Maybe<CcpEntitlementTemplate>;
|
|
6886
6948
|
entitlementTemplateId?: Maybe<Scalars['ID']['output']>;
|
|
6887
6949
|
expiryDate?: Maybe<Scalars['Float']['output']>;
|
|
6950
|
+
extensions?: Maybe<Array<Maybe<CcpExtension>>>;
|
|
6888
6951
|
hostingType?: Maybe<CcpOfferingHostingType>;
|
|
6889
6952
|
id: Scalars['ID']['output'];
|
|
6890
6953
|
key?: Maybe<Scalars['ID']['output']>;
|
|
@@ -6912,6 +6975,9 @@ export declare type CcpOffering = CommerceOffering & Node & {
|
|
|
6912
6975
|
export declare type CcpOfferingDefaultTransitionsArgs = {
|
|
6913
6976
|
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
6914
6977
|
};
|
|
6978
|
+
export declare type CcpOfferingExtensionsArgs = {
|
|
6979
|
+
revisionKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
6980
|
+
};
|
|
6915
6981
|
export declare type CcpOfferingOfferingRelationshipsArgs = {
|
|
6916
6982
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
6917
6983
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -8204,6 +8270,7 @@ export declare type ChannelPlatformConnectDetails = {
|
|
|
8204
8270
|
__typename?: 'ChannelPlatformConnectDetails';
|
|
8205
8271
|
instanceCcpUrl?: Maybe<Scalars['String']['output']>;
|
|
8206
8272
|
region?: Maybe<Scalars['String']['output']>;
|
|
8273
|
+
ssoLoginUrl?: Maybe<Scalars['String']['output']>;
|
|
8207
8274
|
};
|
|
8208
8275
|
export declare type ChannelPlatformConnectQueue = {
|
|
8209
8276
|
__typename?: 'ChannelPlatformConnectQueue';
|
|
@@ -8243,6 +8310,9 @@ export declare type ChannelPlatformEventRelayRequest = {
|
|
|
8243
8310
|
};
|
|
8244
8311
|
export declare enum ChannelPlatformEventType {
|
|
8245
8312
|
AgentInitialMessage = "AGENT_INITIAL_MESSAGE",
|
|
8313
|
+
ConferenceEnded = "CONFERENCE_ENDED",
|
|
8314
|
+
ConferenceInitiated = "CONFERENCE_INITIATED",
|
|
8315
|
+
ConferenceResponse = "CONFERENCE_RESPONSE",
|
|
8246
8316
|
CustomChatClosed = "CUSTOM_CHAT_CLOSED",
|
|
8247
8317
|
Initiated = "INITIATED"
|
|
8248
8318
|
}
|
|
@@ -8449,6 +8519,7 @@ export declare type ClassificationLevelDetails = {
|
|
|
8449
8519
|
__typename?: 'ClassificationLevelDetails';
|
|
8450
8520
|
classificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
8451
8521
|
classificationLevelId?: Maybe<Scalars['ID']['output']>;
|
|
8522
|
+
featureEnabled: Scalars['Boolean']['output'];
|
|
8452
8523
|
source?: Maybe<ClassificationLevelSource>;
|
|
8453
8524
|
};
|
|
8454
8525
|
export declare enum ClassificationLevelSource {
|
|
@@ -15087,11 +15158,15 @@ export declare type ConfluenceCreateQuestionPayload = Payload & {
|
|
|
15087
15158
|
success: Scalars['Boolean']['output'];
|
|
15088
15159
|
};
|
|
15089
15160
|
export declare type ConfluenceCreateSpaceContent = {
|
|
15090
|
-
|
|
15161
|
+
parent?: InputMaybe<ConfluenceCreateSpaceContentParent>;
|
|
15091
15162
|
templateKey?: InputMaybe<Scalars['String']['input']>;
|
|
15092
15163
|
title: Scalars['String']['input'];
|
|
15093
15164
|
type: ConfluenceCreateSpaceContentType;
|
|
15094
15165
|
};
|
|
15166
|
+
export declare type ConfluenceCreateSpaceContentParent = {
|
|
15167
|
+
title: Scalars['String']['input'];
|
|
15168
|
+
type: ConfluenceCreateSpaceContentType;
|
|
15169
|
+
};
|
|
15095
15170
|
export declare enum ConfluenceCreateSpaceContentType {
|
|
15096
15171
|
Folder = "FOLDER",
|
|
15097
15172
|
Page = "PAGE"
|
|
@@ -15544,8 +15619,8 @@ export declare type ConfluenceExperimentInitModernizePayload = {
|
|
|
15544
15619
|
};
|
|
15545
15620
|
export declare type ConfluenceExpert = {
|
|
15546
15621
|
__typename?: 'ConfluenceExpert';
|
|
15547
|
-
accountId: Scalars['ID']['output'];
|
|
15548
15622
|
allTimeReputation?: Maybe<ConfluenceExpertReputation>;
|
|
15623
|
+
user?: Maybe<AtlassianUser>;
|
|
15549
15624
|
weeklyReputation?: Maybe<ConfluenceExpertReputation>;
|
|
15550
15625
|
};
|
|
15551
15626
|
export declare type ConfluenceExpertWeeklyReputationArgs = {
|
|
@@ -20565,14 +20640,12 @@ export declare type ConvertPageToLiveEditValidationResult = {
|
|
|
20565
20640
|
};
|
|
20566
20641
|
export declare type ConvoAiJira3pRelatedLinksEdge = {
|
|
20567
20642
|
__typename?: 'ConvoAiJira3pRelatedLinksEdge';
|
|
20568
|
-
cursor: Scalars['String']['output'];
|
|
20569
20643
|
node?: Maybe<ConvoAiThirdPartyRelatedLink>;
|
|
20570
20644
|
};
|
|
20571
20645
|
export declare type ConvoAiJira3pRelatedLinksResult = {
|
|
20572
20646
|
__typename?: 'ConvoAiJira3pRelatedLinksResult';
|
|
20573
20647
|
edges?: Maybe<Array<ConvoAiJira3pRelatedLinksEdge>>;
|
|
20574
20648
|
errors?: Maybe<Array<QueryError>>;
|
|
20575
|
-
pageInfo: PageInfo;
|
|
20576
20649
|
};
|
|
20577
20650
|
export declare type ConvoAiJiraConfluenceBlogSuggestion = {
|
|
20578
20651
|
__typename?: 'ConvoAiJiraConfluenceBlogSuggestion';
|
|
@@ -20636,8 +20709,9 @@ export declare type ConvoAiJiraSimilarWorkItemsSimilarityConfig = {
|
|
|
20636
20709
|
export declare type ConvoAiThirdPartyRelatedLink = {
|
|
20637
20710
|
__typename?: 'ConvoAiThirdPartyRelatedLink';
|
|
20638
20711
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
20712
|
+
id: Scalars['String']['output'];
|
|
20639
20713
|
name: Scalars['String']['output'];
|
|
20640
|
-
|
|
20714
|
+
productSource?: Maybe<Scalars['String']['output']>;
|
|
20641
20715
|
url: Scalars['String']['output'];
|
|
20642
20716
|
};
|
|
20643
20717
|
export declare type CopyPolarisInsightsContainerInput = {
|
|
@@ -31030,6 +31104,7 @@ export declare type GraphIntegrationAddTwgCapabilityContainerInput = {
|
|
|
31030
31104
|
export declare type GraphIntegrationAddTwgCapabilityContainerPayload = Payload & {
|
|
31031
31105
|
__typename?: 'GraphIntegrationAddTwgCapabilityContainerPayload';
|
|
31032
31106
|
errors?: Maybe<Array<MutationError>>;
|
|
31107
|
+
id: Scalars['String']['output'];
|
|
31033
31108
|
success: Scalars['Boolean']['output'];
|
|
31034
31109
|
};
|
|
31035
31110
|
export declare type GraphIntegrationConsentInput = {
|
|
@@ -31048,6 +31123,7 @@ export declare type GraphIntegrationCreateDataConnectorConnectionInput = {
|
|
|
31048
31123
|
connectorProviderKey: Scalars['String']['input'];
|
|
31049
31124
|
connectorProviderPayload: Scalars['JSON']['input'];
|
|
31050
31125
|
consent: GraphIntegrationConsentInput;
|
|
31126
|
+
containerId: Scalars['String']['input'];
|
|
31051
31127
|
contextAri: Scalars['ID']['input'];
|
|
31052
31128
|
productAri: Scalars['ID']['input'];
|
|
31053
31129
|
};
|
|
@@ -31263,7 +31339,7 @@ export declare type GraphIntegrationMcpTool = {
|
|
|
31263
31339
|
};
|
|
31264
31340
|
export declare type GraphIntegrationRemoveTwgCapabilityContainerInput = {
|
|
31265
31341
|
contextAri: Scalars['ID']['input'];
|
|
31266
|
-
|
|
31342
|
+
id: Scalars['String']['input'];
|
|
31267
31343
|
};
|
|
31268
31344
|
export declare type GraphIntegrationRemoveTwgCapabilityContainerPayload = Payload & {
|
|
31269
31345
|
__typename?: 'GraphIntegrationRemoveTwgCapabilityContainerPayload';
|
|
@@ -31281,27 +31357,38 @@ export declare type GraphIntegrationTwgCapabilityContainer = {
|
|
|
31281
31357
|
dataConnectors: Array<GraphIntegrationDataConnector>;
|
|
31282
31358
|
description: Scalars['String']['output'];
|
|
31283
31359
|
icon: Scalars['String']['output'];
|
|
31360
|
+
id: Scalars['String']['output'];
|
|
31284
31361
|
name: Scalars['String']['output'];
|
|
31285
31362
|
productAri: Scalars['ID']['output'];
|
|
31286
31363
|
};
|
|
31287
|
-
export declare type
|
|
31288
|
-
__typename?: '
|
|
31364
|
+
export declare type GraphIntegrationTwgCapabilityContainerConnection = {
|
|
31365
|
+
__typename?: 'GraphIntegrationTwgCapabilityContainerConnection';
|
|
31366
|
+
edges: Array<GraphIntegrationTwgCapabilityContainerEdge>;
|
|
31367
|
+
nodes: Array<GraphIntegrationTwgCapabilityContainer>;
|
|
31368
|
+
pageInfo: PageInfo;
|
|
31369
|
+
};
|
|
31370
|
+
export declare type GraphIntegrationTwgCapabilityContainerEdge = {
|
|
31371
|
+
__typename?: 'GraphIntegrationTwgCapabilityContainerEdge';
|
|
31372
|
+
cursor: Scalars['String']['output'];
|
|
31373
|
+
node: GraphIntegrationTwgCapabilityContainer;
|
|
31374
|
+
};
|
|
31375
|
+
export declare type GraphIntegrationTwgCapabilityContainerMeta = {
|
|
31376
|
+
__typename?: 'GraphIntegrationTwgCapabilityContainerMeta';
|
|
31289
31377
|
dataConnectors: Array<GraphIntegrationDataConnector>;
|
|
31290
31378
|
icon: Scalars['String']['output'];
|
|
31291
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
31292
31379
|
name: Scalars['String']['output'];
|
|
31293
31380
|
productAri: Scalars['ID']['output'];
|
|
31294
31381
|
};
|
|
31295
|
-
export declare type
|
|
31296
|
-
__typename?: '
|
|
31297
|
-
edges: Array<
|
|
31298
|
-
nodes: Array<
|
|
31382
|
+
export declare type GraphIntegrationTwgCapabilityContainerMetaConnection = {
|
|
31383
|
+
__typename?: 'GraphIntegrationTwgCapabilityContainerMetaConnection';
|
|
31384
|
+
edges: Array<GraphIntegrationTwgCapabilityContainerMetaEdge>;
|
|
31385
|
+
nodes: Array<GraphIntegrationTwgCapabilityContainerMeta>;
|
|
31299
31386
|
pageInfo: PageInfo;
|
|
31300
31387
|
};
|
|
31301
|
-
export declare type
|
|
31302
|
-
__typename?: '
|
|
31388
|
+
export declare type GraphIntegrationTwgCapabilityContainerMetaEdge = {
|
|
31389
|
+
__typename?: 'GraphIntegrationTwgCapabilityContainerMetaEdge';
|
|
31303
31390
|
cursor: Scalars['String']['output'];
|
|
31304
|
-
node:
|
|
31391
|
+
node: GraphIntegrationTwgCapabilityContainerMeta;
|
|
31305
31392
|
};
|
|
31306
31393
|
export declare type GraphIntegrationUpdateConnectionPayload = Payload & {
|
|
31307
31394
|
__typename?: 'GraphIntegrationUpdateConnectionPayload';
|
|
@@ -42043,7 +42130,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
42043
42130
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
42044
42131
|
id: Scalars['ID']['output'];
|
|
42045
42132
|
};
|
|
42046
|
-
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;
|
|
42047
42134
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
42048
42135
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
42049
42136
|
value: Scalars['String']['output'];
|
|
@@ -42053,13 +42140,13 @@ export declare type GraphStoreCypherQueryV2AriNode = {
|
|
|
42053
42140
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
42054
42141
|
id: Scalars['ID']['output'];
|
|
42055
42142
|
};
|
|
42056
|
-
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;
|
|
42057
42144
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
42058
42145
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
42059
42146
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
42060
42147
|
id: Scalars['ID']['output'];
|
|
42061
42148
|
};
|
|
42062
|
-
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;
|
|
42063
42150
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
42064
42151
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
42065
42152
|
value: Scalars['Boolean']['output'];
|
|
@@ -42160,7 +42247,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
42160
42247
|
V2 = "V2",
|
|
42161
42248
|
V3 = "V3"
|
|
42162
42249
|
}
|
|
42163
|
-
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;
|
|
42164
42251
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
42165
42252
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
42166
42253
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -60577,9 +60664,16 @@ export declare type JiraAddAttachmentsPayload = Payload & {
|
|
|
60577
60664
|
success: Scalars['Boolean']['output'];
|
|
60578
60665
|
};
|
|
60579
60666
|
export declare type JiraAddCommentInput = {
|
|
60667
|
+
authorCanSeeRequest?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60580
60668
|
content: JiraAdfInput;
|
|
60669
|
+
eventOccurredAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
60670
|
+
isThirdPartySyncOn?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60581
60671
|
issueId: Scalars['ID']['input'];
|
|
60672
|
+
jsdIncidentActivityViewHidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60673
|
+
permissionLevel?: InputMaybe<JiraPermissionLevelInput>;
|
|
60674
|
+
thirdPartyLink?: InputMaybe<Scalars['URL']['input']>;
|
|
60582
60675
|
threadParentId?: InputMaybe<Scalars['ID']['input']>;
|
|
60676
|
+
visibility?: InputMaybe<JiraServiceManagementCommentVisibility>;
|
|
60583
60677
|
};
|
|
60584
60678
|
export declare type JiraAddCommentPayload = {
|
|
60585
60679
|
__typename?: 'JiraAddCommentPayload';
|
|
@@ -62166,6 +62260,7 @@ export declare type JiraBoardView = {
|
|
|
62166
62260
|
groupByConfig?: Maybe<JiraViewGroupByConfig>;
|
|
62167
62261
|
groupByOptions?: Maybe<Array<JiraViewGroupByConfig>>;
|
|
62168
62262
|
id: Scalars['ID']['output'];
|
|
62263
|
+
isEmpty?: Maybe<Scalars['Boolean']['output']>;
|
|
62169
62264
|
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
62170
62265
|
layout?: Maybe<JiraBoardViewLayout>;
|
|
62171
62266
|
selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -64257,6 +64352,7 @@ export declare type JiraCustomFieldType = {
|
|
|
64257
64352
|
description?: Maybe<Scalars['String']['output']>;
|
|
64258
64353
|
hasCascadingOptions?: Maybe<Scalars['Boolean']['output']>;
|
|
64259
64354
|
hasOptions?: Maybe<Scalars['Boolean']['output']>;
|
|
64355
|
+
installedByAppName?: Maybe<Scalars['String']['output']>;
|
|
64260
64356
|
isForge?: Maybe<Scalars['Boolean']['output']>;
|
|
64261
64357
|
isManaged?: Maybe<Scalars['Boolean']['output']>;
|
|
64262
64358
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -68109,6 +68205,18 @@ export declare type JiraIssueNavigatorSearchLayoutMutationPayload = Payload & {
|
|
|
68109
68205
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
68110
68206
|
success: Scalars['Boolean']['output'];
|
|
68111
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
|
+
};
|
|
68112
68220
|
export declare type JiraIssuePullRequestDevSummary = {
|
|
68113
68221
|
__typename?: 'JiraIssuePullRequestDevSummary';
|
|
68114
68222
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -68612,6 +68720,14 @@ export declare type JiraIssueSearchViewQueryInput = {
|
|
|
68612
68720
|
viewAri?: InputMaybe<Scalars['ID']['input']>;
|
|
68613
68721
|
};
|
|
68614
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
|
+
};
|
|
68615
68731
|
export declare type JiraIssueStreamHubEventPayloadProject = {
|
|
68616
68732
|
__typename?: 'JiraIssueStreamHubEventPayloadProject';
|
|
68617
68733
|
id: Scalars['Int']['output'];
|
|
@@ -72233,6 +72349,10 @@ export declare type JiraPermissionLevel = {
|
|
|
72233
72349
|
group?: Maybe<JiraGroup>;
|
|
72234
72350
|
role?: Maybe<JiraRole>;
|
|
72235
72351
|
};
|
|
72352
|
+
export declare type JiraPermissionLevelInput = {
|
|
72353
|
+
group?: InputMaybe<JiraGroupInput>;
|
|
72354
|
+
role?: InputMaybe<JiraRoleInput>;
|
|
72355
|
+
};
|
|
72236
72356
|
export declare type JiraPermissionMessageExtension = {
|
|
72237
72357
|
__typename?: 'JiraPermissionMessageExtension';
|
|
72238
72358
|
text: Scalars['String']['output'];
|
|
@@ -73832,6 +73952,7 @@ export declare type JiraQuery = {
|
|
|
73832
73952
|
isNaturalLanguageSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
73833
73953
|
isRovoEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
73834
73954
|
isSubtasksEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
73955
|
+
isVotingEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
73835
73956
|
issue?: Maybe<JiraIssue>;
|
|
73836
73957
|
issueById?: Maybe<JiraIssue>;
|
|
73837
73958
|
issueByKey?: Maybe<JiraIssue>;
|
|
@@ -73862,6 +73983,7 @@ export declare type JiraQuery = {
|
|
|
73862
73983
|
jiraCustomerOrganizationsByUUIDs?: Maybe<JiraServiceManagementOrganizationConnection>;
|
|
73863
73984
|
jiraFetchBulkOperationDetails?: Maybe<JiraFetchBulkOperationDetailsResponse>;
|
|
73864
73985
|
jiraFieldConfigs?: Maybe<JiraFieldConfigConnection>;
|
|
73986
|
+
jiraIssuePicker?: Maybe<JiraIssuePickerResult>;
|
|
73865
73987
|
jiraIssueSearchView?: Maybe<JiraView>;
|
|
73866
73988
|
jiraJourneyConfiguration?: Maybe<JiraJourneyConfiguration>;
|
|
73867
73989
|
jiraJourneyItem?: Maybe<JiraJourneyItem>;
|
|
@@ -74330,6 +74452,9 @@ export declare type JiraQueryIsRovoEnabledArgs = {
|
|
|
74330
74452
|
export declare type JiraQueryIsSubtasksEnabledArgs = {
|
|
74331
74453
|
cloudId: Scalars['ID']['input'];
|
|
74332
74454
|
};
|
|
74455
|
+
export declare type JiraQueryIsVotingEnabledArgs = {
|
|
74456
|
+
cloudId: Scalars['ID']['input'];
|
|
74457
|
+
};
|
|
74333
74458
|
export declare type JiraQueryIssueArgs = {
|
|
74334
74459
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
74335
74460
|
};
|
|
@@ -74477,6 +74602,9 @@ export declare type JiraQueryJiraFieldConfigsArgs = {
|
|
|
74477
74602
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
74478
74603
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
74479
74604
|
};
|
|
74605
|
+
export declare type JiraQueryJiraIssuePickerArgs = {
|
|
74606
|
+
input: JiraIssuePickerInput;
|
|
74607
|
+
};
|
|
74480
74608
|
export declare type JiraQueryJiraIssueSearchViewArgs = {
|
|
74481
74609
|
cloudId: Scalars['ID']['input'];
|
|
74482
74610
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -75778,6 +75906,9 @@ export declare type JiraRoleEdge = {
|
|
|
75778
75906
|
cursor: Scalars['String']['output'];
|
|
75779
75907
|
node?: Maybe<JiraRole>;
|
|
75780
75908
|
};
|
|
75909
|
+
export declare type JiraRoleInput = {
|
|
75910
|
+
roleId?: InputMaybe<Scalars['ID']['input']>;
|
|
75911
|
+
};
|
|
75781
75912
|
export declare type JiraScenario = Node & {
|
|
75782
75913
|
__typename?: 'JiraScenario';
|
|
75783
75914
|
color?: Maybe<Scalars['String']['output']>;
|
|
@@ -78372,6 +78503,26 @@ export declare type JiraSubscriptionOnSuggestedChildIssueArgs = {
|
|
|
78372
78503
|
issueTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
78373
78504
|
sourceIssueId: Scalars['ID']['input'];
|
|
78374
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
|
+
};
|
|
78375
78526
|
export declare type JiraSubtasksField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
78376
78527
|
__typename?: 'JiraSubtasksField';
|
|
78377
78528
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -78909,9 +79060,11 @@ export declare type JiraUpdateColorFieldInput = {
|
|
|
78909
79060
|
};
|
|
78910
79061
|
export declare type JiraUpdateCommentInput = {
|
|
78911
79062
|
content: JiraAdfInput;
|
|
79063
|
+
eventOccurredAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
78912
79064
|
id: Scalars['ID']['input'];
|
|
78913
79065
|
issueId: Scalars['ID']['input'];
|
|
78914
|
-
|
|
79066
|
+
jsdIncidentActivityViewHidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
79067
|
+
permissionLevel?: InputMaybe<JiraPermissionLevelInput>;
|
|
78915
79068
|
};
|
|
78916
79069
|
export declare type JiraUpdateCommentPayload = {
|
|
78917
79070
|
__typename?: 'JiraUpdateCommentPayload';
|
|
@@ -89585,6 +89738,7 @@ export declare type Mutation = {
|
|
|
89585
89738
|
polarisAddReaction?: Maybe<PolarisAddReactionPayload>;
|
|
89586
89739
|
polarisDeleteReaction?: Maybe<PolarisDeleteReactionPayload>;
|
|
89587
89740
|
projects_addGoalLink?: Maybe<TownsquareProjectsAddGoalLinkPayload>;
|
|
89741
|
+
projects_addJiraWorkItemLink?: Maybe<TownsquareProjectsAddJiraWorkItemLinkPayload>;
|
|
89588
89742
|
projects_addMembers?: Maybe<TownsquareProjectsAddMembersPayload>;
|
|
89589
89743
|
projects_addTeamContributors?: Maybe<TownsquareProjectsAddTeamContributorsPayload>;
|
|
89590
89744
|
projects_clone?: Maybe<TownsquareProjectsClonePayload>;
|
|
@@ -89598,6 +89752,7 @@ export declare type Mutation = {
|
|
|
89598
89752
|
projects_editUpdate?: Maybe<TownsquareProjectsEditUpdatePayload>;
|
|
89599
89753
|
projects_removeDependency?: Maybe<TownsquareProjectsRemoveDependencyPayload>;
|
|
89600
89754
|
projects_removeGoalLink?: Maybe<TownsquareProjectsRemoveGoalLinkPayload>;
|
|
89755
|
+
projects_removeJiraWorkItemLink?: Maybe<TownsquareProjectsRemoveJiraWorkItemLinkPayload>;
|
|
89601
89756
|
projects_removeMember?: Maybe<TownsquareProjectsRemoveMemberPayload>;
|
|
89602
89757
|
projects_removeTeamContributors?: Maybe<TownsquareProjectsRemoveTeamContributorsPayload>;
|
|
89603
89758
|
projects_setDependency?: Maybe<TownsquareProjectsSetDependencyPayload>;
|
|
@@ -90658,7 +90813,7 @@ export declare type MutationCsmAi_CreateActionForAgentArgs = {
|
|
|
90658
90813
|
input: CsmAiCreateActionInput;
|
|
90659
90814
|
};
|
|
90660
90815
|
export declare type MutationCsmAi_CreateCoachingContentArgs = {
|
|
90661
|
-
|
|
90816
|
+
csmAiAgentId?: InputMaybe<Scalars['ID']['input']>;
|
|
90662
90817
|
csmAiHubId: Scalars['ID']['input'];
|
|
90663
90818
|
helpCenterAri: Scalars['ID']['input'];
|
|
90664
90819
|
input: CsmAiCreateCoachingContentInput;
|
|
@@ -90669,7 +90824,7 @@ export declare type MutationCsmAi_DeleteActionArgs = {
|
|
|
90669
90824
|
helpCenterAri: Scalars['ID']['input'];
|
|
90670
90825
|
};
|
|
90671
90826
|
export declare type MutationCsmAi_DeleteCoachingContentArgs = {
|
|
90672
|
-
|
|
90827
|
+
csmAiAgentId?: InputMaybe<Scalars['ID']['input']>;
|
|
90673
90828
|
csmAiCoachingContentId: Scalars['ID']['input'];
|
|
90674
90829
|
csmAiHubId: Scalars['ID']['input'];
|
|
90675
90830
|
helpCenterAri: Scalars['ID']['input'];
|
|
@@ -90705,7 +90860,7 @@ export declare type MutationCsmAi_UpdateAgentIdentityArgs = {
|
|
|
90705
90860
|
input?: InputMaybe<CsmAiUpdateAgentInput>;
|
|
90706
90861
|
};
|
|
90707
90862
|
export declare type MutationCsmAi_UpdateCoachingContentArgs = {
|
|
90708
|
-
|
|
90863
|
+
csmAiAgentId?: InputMaybe<Scalars['ID']['input']>;
|
|
90709
90864
|
csmAiCoachingContentId: Scalars['ID']['input'];
|
|
90710
90865
|
csmAiHubId: Scalars['ID']['input'];
|
|
90711
90866
|
helpCenterAri: Scalars['ID']['input'];
|
|
@@ -91414,6 +91569,9 @@ export declare type MutationPolarisDeleteReactionArgs = {
|
|
|
91414
91569
|
export declare type MutationProjects_AddGoalLinkArgs = {
|
|
91415
91570
|
input: TownsquareProjectsAddGoalLink;
|
|
91416
91571
|
};
|
|
91572
|
+
export declare type MutationProjects_AddJiraWorkItemLinkArgs = {
|
|
91573
|
+
input: TownsquareProjectsAddJiraWorkItemLinkInput;
|
|
91574
|
+
};
|
|
91417
91575
|
export declare type MutationProjects_AddMembersArgs = {
|
|
91418
91576
|
input?: InputMaybe<TownsquareProjectsAddMembersInput>;
|
|
91419
91577
|
};
|
|
@@ -91453,6 +91611,9 @@ export declare type MutationProjects_RemoveDependencyArgs = {
|
|
|
91453
91611
|
export declare type MutationProjects_RemoveGoalLinkArgs = {
|
|
91454
91612
|
input: TownsquareProjectsRemoveGoalLinkInput;
|
|
91455
91613
|
};
|
|
91614
|
+
export declare type MutationProjects_RemoveJiraWorkItemLinkArgs = {
|
|
91615
|
+
input: TownsquareProjectsRemoveJiraWorkItemLinkInput;
|
|
91616
|
+
};
|
|
91456
91617
|
export declare type MutationProjects_RemoveMemberArgs = {
|
|
91457
91618
|
input: TownsquareProjectsRemoveMemberInput;
|
|
91458
91619
|
};
|
|
@@ -95380,7 +95541,7 @@ export declare type Query = {
|
|
|
95380
95541
|
goals_metricTargetsByIds?: Maybe<Array<Maybe<TownsquareMetricTarget>>>;
|
|
95381
95542
|
goals_metricValuesByIds?: Maybe<Array<Maybe<TownsquareMetricValue>>>;
|
|
95382
95543
|
goals_metricsByIds?: Maybe<Array<Maybe<TownsquareMetric>>>;
|
|
95383
|
-
graphIntegration_availableTwgCapabilityContainers?: Maybe<
|
|
95544
|
+
graphIntegration_availableTwgCapabilityContainers?: Maybe<GraphIntegrationTwgCapabilityContainerMetaConnection>;
|
|
95384
95545
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
95385
95546
|
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
95386
95547
|
graphIntegration_mcpAdminManagementMcpServer?: Maybe<GraphIntegrationMcpAdminManagementMcpServerNode>;
|
|
@@ -95389,7 +95550,7 @@ export declare type Query = {
|
|
|
95389
95550
|
graphIntegration_mcpAdminManagementMcpTools?: Maybe<GraphIntegrationMcpAdminManagementMcpToolConnection>;
|
|
95390
95551
|
graphIntegration_mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
95391
95552
|
graphIntegration_twgCapabilityContainer?: Maybe<GraphIntegrationTwgCapabilityContainer>;
|
|
95392
|
-
graphIntegration_twgCapabilityContainersInContext?: Maybe<
|
|
95553
|
+
graphIntegration_twgCapabilityContainersInContext?: Maybe<GraphIntegrationTwgCapabilityContainerConnection>;
|
|
95393
95554
|
graphStore?: Maybe<GraphStore>;
|
|
95394
95555
|
group?: Maybe<Group>;
|
|
95395
95556
|
groupCounts?: Maybe<GraphQlGroupCountsResult>;
|
|
@@ -95595,6 +95756,7 @@ export declare type Query = {
|
|
|
95595
95756
|
projects_canCreateProjectFusion?: Maybe<TownsquareProjectsCanCreateProjectFusionPayload>;
|
|
95596
95757
|
projects_linksByIds?: Maybe<Array<Maybe<TownsquareLink>>>;
|
|
95597
95758
|
projects_search?: Maybe<TownsquareProjectConnection>;
|
|
95759
|
+
projects_searchJiraWorkItemsToLink?: Maybe<TownsquareJiraWorkItemConnection>;
|
|
95598
95760
|
projects_updatesByIds?: Maybe<Array<Maybe<TownsquareProjectUpdate>>>;
|
|
95599
95761
|
ptpage?: Maybe<PtPage>;
|
|
95600
95762
|
publicLinkInformation?: Maybe<PublicLinkInformation>;
|
|
@@ -97024,6 +97186,7 @@ export declare type QueryConvoai_JiraRelated3pLinksSuggestionsByIssueIdArgs = {
|
|
|
97024
97186
|
id: Scalars['ID']['input'];
|
|
97025
97187
|
issueKey: Scalars['String']['input'];
|
|
97026
97188
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
97189
|
+
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
97027
97190
|
};
|
|
97028
97191
|
export declare type QueryConvoai_JiraRelatedResourcesSuggestionsArgs = {
|
|
97029
97192
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -97636,7 +97799,7 @@ export declare type QueryGraphIntegration_McpServersArgs = {
|
|
|
97636
97799
|
};
|
|
97637
97800
|
export declare type QueryGraphIntegration_TwgCapabilityContainerArgs = {
|
|
97638
97801
|
contextAri: Scalars['ID']['input'];
|
|
97639
|
-
|
|
97802
|
+
id: Scalars['String']['input'];
|
|
97640
97803
|
};
|
|
97641
97804
|
export declare type QueryGraphIntegration_TwgCapabilityContainersInContextArgs = {
|
|
97642
97805
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -98311,6 +98474,12 @@ export declare type QueryProjects_SearchArgs = {
|
|
|
98311
98474
|
searchString: Scalars['String']['input'];
|
|
98312
98475
|
sort?: InputMaybe<Array<InputMaybe<TownsquareProjectSortEnum>>>;
|
|
98313
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
|
+
};
|
|
98314
98483
|
export declare type QueryProjects_UpdatesByIdsArgs = {
|
|
98315
98484
|
projectUpdateIds: Array<Scalars['String']['input']>;
|
|
98316
98485
|
};
|
|
@@ -125167,7 +125336,7 @@ export declare type TownsquareCreateTagPayload = {
|
|
|
125167
125336
|
success: Scalars['Boolean']['output'];
|
|
125168
125337
|
tag?: Maybe<TownsquareTag>;
|
|
125169
125338
|
};
|
|
125170
|
-
export declare type TownsquareDecision = TownsquareHighlight & {
|
|
125339
|
+
export declare type TownsquareDecision = Node & TownsquareHighlight & {
|
|
125171
125340
|
__typename?: 'TownsquareDecision';
|
|
125172
125341
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
125173
125342
|
creator?: Maybe<User>;
|
|
@@ -125661,7 +125830,17 @@ export declare type TownsquareIconUrIs = {
|
|
|
125661
125830
|
roundedSquare?: Maybe<TownsquareThemeUrIs>;
|
|
125662
125831
|
square?: Maybe<TownsquareThemeUrIs>;
|
|
125663
125832
|
};
|
|
125664
|
-
export declare type
|
|
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
|
+
};
|
|
125843
|
+
export declare type TownsquareLearning = Node & TownsquareHighlight & {
|
|
125665
125844
|
__typename?: 'TownsquareLearning';
|
|
125666
125845
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
125667
125846
|
creator?: Maybe<User>;
|
|
@@ -125846,6 +126025,7 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
125846
126025
|
iconUrl?: Maybe<TownsquareIconUrIs>;
|
|
125847
126026
|
id: Scalars['ID']['output'];
|
|
125848
126027
|
isArchived: Scalars['Boolean']['output'];
|
|
126028
|
+
isJiraWorkItemsLimitReached?: Maybe<Scalars['Boolean']['output']>;
|
|
125849
126029
|
isPrivate: Scalars['Boolean']['output'];
|
|
125850
126030
|
key: Scalars['String']['output'];
|
|
125851
126031
|
latestUpdateDate?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -126095,6 +126275,7 @@ export declare type TownsquareProjectUpdate = Node & {
|
|
|
126095
126275
|
oldTargetDateConfidence?: Maybe<Scalars['Int']['output']>;
|
|
126096
126276
|
project?: Maybe<TownsquareProject>;
|
|
126097
126277
|
summary?: Maybe<Scalars['String']['output']>;
|
|
126278
|
+
updateNotes?: Maybe<TownsquareUpdateNoteConnection>;
|
|
126098
126279
|
updateType?: Maybe<TownsquareUpdateType>;
|
|
126099
126280
|
url?: Maybe<Scalars['String']['output']>;
|
|
126100
126281
|
uuid?: Maybe<Scalars['UUID']['output']>;
|
|
@@ -126103,6 +126284,10 @@ export declare type TownsquareProjectUpdateCommentsArgs = {
|
|
|
126103
126284
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
126104
126285
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126105
126286
|
};
|
|
126287
|
+
export declare type TownsquareProjectUpdateUpdateNotesArgs = {
|
|
126288
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
126289
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126290
|
+
};
|
|
126106
126291
|
export declare type TownsquareProjectUpdateConnection = {
|
|
126107
126292
|
__typename?: 'TownsquareProjectUpdateConnection';
|
|
126108
126293
|
count: Scalars['Int']['output'];
|
|
@@ -126125,6 +126310,16 @@ export declare type TownsquareProjectsAddGoalLinkPayload = {
|
|
|
126125
126310
|
project?: Maybe<TownsquareProject>;
|
|
126126
126311
|
success: Scalars['Boolean']['output'];
|
|
126127
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
|
+
};
|
|
126128
126323
|
export declare type TownsquareProjectsAddMembersInput = {
|
|
126129
126324
|
addAsWatchers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
126130
126325
|
projectId: Scalars['ID']['input'];
|
|
@@ -126308,6 +126503,16 @@ export declare type TownsquareProjectsRemoveGoalLinkPayload = {
|
|
|
126308
126503
|
project?: Maybe<TownsquareProject>;
|
|
126309
126504
|
success: Scalars['Boolean']['output'];
|
|
126310
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
|
+
};
|
|
126311
126516
|
export declare type TownsquareProjectsRemoveMemberInput = {
|
|
126312
126517
|
projectId: Scalars['ID']['input'];
|
|
126313
126518
|
userId: Scalars['ID']['input'];
|
|
@@ -126486,7 +126691,7 @@ export declare type TownsquareRemoveTagsPayload = {
|
|
|
126486
126691
|
success: Scalars['Boolean']['output'];
|
|
126487
126692
|
tagIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
126488
126693
|
};
|
|
126489
|
-
export declare type TownsquareRisk = TownsquareHighlight & {
|
|
126694
|
+
export declare type TownsquareRisk = Node & TownsquareHighlight & {
|
|
126490
126695
|
__typename?: 'TownsquareRisk';
|
|
126491
126696
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
126492
126697
|
creator?: Maybe<User>;
|
|
@@ -127656,9 +127861,10 @@ export declare enum TrelloCardActionType {
|
|
|
127656
127861
|
UpdateCardClosed = "UPDATE_CARD_CLOSED",
|
|
127657
127862
|
UpdateCardComplete = "UPDATE_CARD_COMPLETE",
|
|
127658
127863
|
UpdateCardDue = "UPDATE_CARD_DUE",
|
|
127864
|
+
UpdateCardRecurrenceRule = "UPDATE_CARD_RECURRENCE_RULE",
|
|
127659
127865
|
UpdateCustomFieldItem = "UPDATE_CUSTOM_FIELD_ITEM"
|
|
127660
127866
|
}
|
|
127661
|
-
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;
|
|
127662
127868
|
export declare type TrelloCardAttachmentsByType = {
|
|
127663
127869
|
__typename?: 'TrelloCardAttachmentsByType';
|
|
127664
127870
|
trello?: Maybe<TrelloCardAttachmentsCount>;
|
|
@@ -130104,6 +130310,25 @@ export declare type TrelloUpdateCardPositionOnPlannerCalendarEventPayload = Payl
|
|
|
130104
130310
|
eventCard?: Maybe<TrelloPlannerCalendarEventCard>;
|
|
130105
130311
|
success: Scalars['Boolean']['output'];
|
|
130106
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
|
+
};
|
|
130107
130332
|
export declare type TrelloUpdateCheckItemStateOnCardAction = TrelloAction & TrelloCardActionData & {
|
|
130108
130333
|
__typename?: 'TrelloUpdateCheckItemStateOnCardAction';
|
|
130109
130334
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -130173,6 +130398,7 @@ export declare type TrelloUpdateOAuth2ClientPayload = Payload & {
|
|
|
130173
130398
|
appDescription?: Maybe<Scalars['String']['output']>;
|
|
130174
130399
|
appLogoUrl?: Maybe<Scalars['String']['output']>;
|
|
130175
130400
|
appVendorName?: Maybe<Scalars['String']['output']>;
|
|
130401
|
+
application?: Maybe<TrelloApplication>;
|
|
130176
130402
|
callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
|
|
130177
130403
|
clientType?: Maybe<Scalars['String']['output']>;
|
|
130178
130404
|
errors?: Maybe<Array<MutationError>>;
|