@forge/cli-shared 6.1.0-next.6 → 6.1.0-next.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -802,6 +802,7 @@ export declare type AppEnvironmentVersionsArgs = {
|
|
|
802
802
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
803
803
|
interval?: InputMaybe<IntervalFilter>;
|
|
804
804
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
805
|
+
majorVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
805
806
|
versionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
806
807
|
};
|
|
807
808
|
export declare type AppEnvironmentInput = {
|
|
@@ -3675,10 +3676,12 @@ export declare type CompassCatalogQueryApi = {
|
|
|
3675
3676
|
attentionItemsConnection?: Maybe<CompassAttentionItemConnection>;
|
|
3676
3677
|
component?: Maybe<CompassComponentResult>;
|
|
3677
3678
|
componentByExternalAlias?: Maybe<CompassComponentResult>;
|
|
3679
|
+
componentByReference?: Maybe<CompassComponentResult>;
|
|
3678
3680
|
componentScorecardRelationship?: Maybe<CompassComponentScorecardRelationshipResult>;
|
|
3679
3681
|
componentType?: Maybe<CompassComponentTypeResult>;
|
|
3680
3682
|
componentTypes?: Maybe<CompassComponentTypesQueryResult>;
|
|
3681
3683
|
components?: Maybe<Array<CompassComponent>>;
|
|
3684
|
+
componentsByReferences?: Maybe<Array<CompassComponent>>;
|
|
3682
3685
|
customFieldDefinition?: Maybe<CompassCustomFieldDefinitionResult>;
|
|
3683
3686
|
customFieldDefinitions?: Maybe<CompassCustomFieldDefinitionsResult>;
|
|
3684
3687
|
customPermissionConfigs?: Maybe<CompassCustomPermissionConfigsResult>;
|
|
@@ -3725,6 +3728,9 @@ export declare type CompassCatalogQueryApiComponentByExternalAliasArgs = {
|
|
|
3725
3728
|
externalID: Scalars['ID']['input'];
|
|
3726
3729
|
externalSource: Scalars['ID']['input'];
|
|
3727
3730
|
};
|
|
3731
|
+
export declare type CompassCatalogQueryApiComponentByReferenceArgs = {
|
|
3732
|
+
reference: ComponentReferenceInput;
|
|
3733
|
+
};
|
|
3728
3734
|
export declare type CompassCatalogQueryApiComponentScorecardRelationshipArgs = {
|
|
3729
3735
|
cloudId: Scalars['ID']['input'];
|
|
3730
3736
|
componentId: Scalars['ID']['input'];
|
|
@@ -3741,6 +3747,9 @@ export declare type CompassCatalogQueryApiComponentTypesArgs = {
|
|
|
3741
3747
|
export declare type CompassCatalogQueryApiComponentsArgs = {
|
|
3742
3748
|
ids: Array<Scalars['ID']['input']>;
|
|
3743
3749
|
};
|
|
3750
|
+
export declare type CompassCatalogQueryApiComponentsByReferencesArgs = {
|
|
3751
|
+
references: Array<ComponentReferenceInput>;
|
|
3752
|
+
};
|
|
3744
3753
|
export declare type CompassCatalogQueryApiCustomFieldDefinitionArgs = {
|
|
3745
3754
|
query: CompassCustomFieldDefinitionQuery;
|
|
3746
3755
|
};
|
|
@@ -3860,6 +3869,7 @@ export declare type CompassComponent = Node & {
|
|
|
3860
3869
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
3861
3870
|
scorecardScores?: Maybe<Array<CompassScorecardScore>>;
|
|
3862
3871
|
scorecards?: Maybe<Array<CompassScorecard>>;
|
|
3872
|
+
slug?: Maybe<Scalars['String']['output']>;
|
|
3863
3873
|
state?: Maybe<Scalars['String']['output']>;
|
|
3864
3874
|
type: CompassComponentType;
|
|
3865
3875
|
typeId: Scalars['ID']['output'];
|
|
@@ -4157,6 +4167,7 @@ export declare type CompassComponentScorecardRelationshipScorecardScoreHistories
|
|
|
4157
4167
|
export declare type CompassComponentScorecardRelationshipInstancePermissions = {
|
|
4158
4168
|
__typename?: 'CompassComponentScorecardRelationshipInstancePermissions';
|
|
4159
4169
|
createJiraIssueForAppliedScorecard?: Maybe<CompassPermissionResult>;
|
|
4170
|
+
removeScorecard?: Maybe<CompassPermissionResult>;
|
|
4160
4171
|
};
|
|
4161
4172
|
export declare type CompassComponentScorecardRelationshipResult = CompassComponentScorecardRelationship | QueryError;
|
|
4162
4173
|
export declare type CompassComponentScorecardScoreQuery = {
|
|
@@ -6830,6 +6841,14 @@ export declare type ComponentApiUpload = {
|
|
|
6830
6841
|
specUrl: Scalars['String']['output'];
|
|
6831
6842
|
uploadId: Scalars['ID']['output'];
|
|
6832
6843
|
};
|
|
6844
|
+
export declare type ComponentReferenceInput = {
|
|
6845
|
+
ari?: InputMaybe<Scalars['ID']['input']>;
|
|
6846
|
+
slug?: InputMaybe<ComponentSlugReferenceInput>;
|
|
6847
|
+
};
|
|
6848
|
+
export declare type ComponentSlugReferenceInput = {
|
|
6849
|
+
cloudId: Scalars['ID']['input'];
|
|
6850
|
+
slug: Scalars['String']['input'];
|
|
6851
|
+
};
|
|
6833
6852
|
export declare type ComponentSyncEvent = {
|
|
6834
6853
|
__typename?: 'ComponentSyncEvent';
|
|
6835
6854
|
lastSyncErrors?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -46627,7 +46646,7 @@ export declare type JiraMutationUpdateIssueHierarchyConfigArgs = {
|
|
|
46627
46646
|
input: JiraIssueHierarchyConfigurationMutationInput;
|
|
46628
46647
|
};
|
|
46629
46648
|
export declare type JiraMutationUpdateIssueSearchGroupByConfigArgs = {
|
|
46630
|
-
fieldId
|
|
46649
|
+
fieldId?: InputMaybe<Scalars['String']['input']>;
|
|
46631
46650
|
viewId: Scalars['ID']['input'];
|
|
46632
46651
|
};
|
|
46633
46652
|
export declare type JiraMutationUpdateIssueSearchHierarchyPreferenceArgs = {
|
|
@@ -51093,7 +51112,7 @@ export declare type JiraServiceManagementRequestTypeCategoryEdge = {
|
|
|
51093
51112
|
export declare type JiraServiceManagementRequestTypeCategoryPayload = Payload & {
|
|
51094
51113
|
__typename?: 'JiraServiceManagementRequestTypeCategoryPayload';
|
|
51095
51114
|
errors?: Maybe<Array<MutationError>>;
|
|
51096
|
-
requestTypeCategory?: Maybe<
|
|
51115
|
+
requestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryEdge>;
|
|
51097
51116
|
success: Scalars['Boolean']['output'];
|
|
51098
51117
|
};
|
|
51099
51118
|
export declare enum JiraServiceManagementRequestTypeCategoryRestriction {
|
|
@@ -56217,8 +56236,9 @@ export declare type MarketplaceConsoleAppSoftwares = {
|
|
|
56217
56236
|
appSoftwares: Array<MarketplaceConsoleAppSoftwareShort>;
|
|
56218
56237
|
};
|
|
56219
56238
|
export declare type MarketplaceConsoleAppVersionCreateRequestInput = {
|
|
56220
|
-
buildNumber?: InputMaybe<Scalars['
|
|
56239
|
+
buildNumber?: InputMaybe<Scalars['String']['input']>;
|
|
56221
56240
|
compatibilities: Array<MarketplaceConsoleAppSoftwareVersionCompatibilityInput>;
|
|
56241
|
+
dcBuildNumber?: InputMaybe<Scalars['String']['input']>;
|
|
56222
56242
|
frameworkDetails: MarketplaceConsoleAppSoftwareVersionFrameworkDetailsInput;
|
|
56223
56243
|
versionNumber?: InputMaybe<Scalars['String']['input']>;
|
|
56224
56244
|
};
|
|
@@ -56255,6 +56275,11 @@ export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
|
56255
56275
|
export declare type MarketplaceConsoleConnectFrameworkAttributesInput = {
|
|
56256
56276
|
href: Scalars['String']['input'];
|
|
56257
56277
|
};
|
|
56278
|
+
export declare type MarketplaceConsoleCreatePrivateAppVersionMutationResponse = {
|
|
56279
|
+
__typename?: 'MarketplaceConsoleCreatePrivateAppVersionMutationResponse';
|
|
56280
|
+
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
56281
|
+
success: Scalars['Boolean']['output'];
|
|
56282
|
+
};
|
|
56258
56283
|
export declare type MarketplaceConsoleDeploymentInstruction = {
|
|
56259
56284
|
__typename?: 'MarketplaceConsoleDeploymentInstruction';
|
|
56260
56285
|
body: Scalars['String']['output'];
|
|
@@ -56535,7 +56560,6 @@ export declare type MarketplaceConsoleListingScreenshotInput = {
|
|
|
56535
56560
|
};
|
|
56536
56561
|
export declare type MarketplaceConsoleMakeAppVersionPublicRequest = {
|
|
56537
56562
|
appKey: Scalars['ID']['input'];
|
|
56538
|
-
appSoftwareId: Scalars['ID']['input'];
|
|
56539
56563
|
appStatusPageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
56540
56564
|
binaryUrl?: InputMaybe<Scalars['String']['input']>;
|
|
56541
56565
|
buildNumber: Scalars['ID']['input'];
|
|
@@ -56558,16 +56582,19 @@ export declare type MarketplaceConsoleMakeAppVersionPublicRequest = {
|
|
|
56558
56582
|
learnMoreUrl?: InputMaybe<Scalars['String']['input']>;
|
|
56559
56583
|
licenseType?: InputMaybe<MarketplaceConsoleAppSoftwareVersionLicenseTypeId>;
|
|
56560
56584
|
logoUrl?: InputMaybe<Scalars['String']['input']>;
|
|
56585
|
+
marketingLabels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
56561
56586
|
moreDetails?: InputMaybe<Scalars['String']['input']>;
|
|
56562
56587
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
56563
56588
|
paymentModel?: InputMaybe<MarketplaceConsolePaymentModel>;
|
|
56564
56589
|
privacyUrl?: InputMaybe<Scalars['String']['input']>;
|
|
56565
56590
|
productId: Scalars['ID']['input'];
|
|
56591
|
+
purchaseUrl?: InputMaybe<Scalars['String']['input']>;
|
|
56566
56592
|
releaseNotes?: InputMaybe<Scalars['String']['input']>;
|
|
56567
56593
|
releaseSummary?: InputMaybe<Scalars['String']['input']>;
|
|
56568
56594
|
screenshots?: InputMaybe<Array<MarketplaceConsoleListingScreenshotInput>>;
|
|
56569
56595
|
segmentWriteKey?: InputMaybe<Scalars['String']['input']>;
|
|
56570
56596
|
sourceCodeLicenseUrl?: InputMaybe<Scalars['String']['input']>;
|
|
56597
|
+
statusAfterApproval?: InputMaybe<MarketplaceConsoleLegacyMongoStatus>;
|
|
56571
56598
|
storesPersonalData?: InputMaybe<Scalars['Boolean']['input']>;
|
|
56572
56599
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
56573
56600
|
supportTicketSystemUrl?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -56579,7 +56606,7 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
56579
56606
|
activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
|
|
56580
56607
|
createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
|
|
56581
56608
|
createEcoHelpTicket?: Maybe<Scalars['ID']['output']>;
|
|
56582
|
-
createPrivateAppSoftwareVersion?: Maybe<
|
|
56609
|
+
createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleCreatePrivateAppVersionMutationResponse>;
|
|
56583
56610
|
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
56584
56611
|
deleteAppVersion?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
56585
56612
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
|
|
@@ -56768,6 +56795,7 @@ export declare type MarketplaceConsoleProductListing = {
|
|
|
56768
56795
|
tagLine?: Maybe<Scalars['String']['output']>;
|
|
56769
56796
|
tags?: Maybe<MarketplaceConsoleProductListingTags>;
|
|
56770
56797
|
titleLogo?: Maybe<MarketplaceConsoleImageMediaAsset>;
|
|
56798
|
+
vendorId: Scalars['String']['output'];
|
|
56771
56799
|
vendorLinks?: Maybe<MarketplaceConsoleVendorLinks>;
|
|
56772
56800
|
};
|
|
56773
56801
|
export declare type MarketplaceConsoleProductListingTags = {
|
|
@@ -56874,6 +56902,11 @@ export declare type MarketplaceConsoleQueryApiProductListingByAppIdArgs = {
|
|
|
56874
56902
|
export declare type MarketplaceConsoleQueryApiProductMetadataByAppIdArgs = {
|
|
56875
56903
|
appId: Scalars['ID']['input'];
|
|
56876
56904
|
};
|
|
56905
|
+
export declare type MarketplaceConsoleRemoteArtifactDetails = {
|
|
56906
|
+
__typename?: 'MarketplaceConsoleRemoteArtifactDetails';
|
|
56907
|
+
dataCenterStatus?: Maybe<Scalars['String']['output']>;
|
|
56908
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
56909
|
+
};
|
|
56877
56910
|
export declare type MarketplaceConsoleRemoteArtifactLinks = {
|
|
56878
56911
|
__typename?: 'MarketplaceConsoleRemoteArtifactLinks';
|
|
56879
56912
|
binary: MarketplaceConsoleLink;
|
|
@@ -56888,6 +56921,7 @@ export declare type MarketplaceConsoleServerVersionPublicChecks = {
|
|
|
56888
56921
|
};
|
|
56889
56922
|
export declare type MarketplaceConsoleSoftwareArtifact = {
|
|
56890
56923
|
__typename?: 'MarketplaceConsoleSoftwareArtifact';
|
|
56924
|
+
details?: Maybe<MarketplaceConsoleRemoteArtifactDetails>;
|
|
56891
56925
|
fileInfo: MarketplaceConsoleArtifactFileInfo;
|
|
56892
56926
|
links: MarketplaceConsoleRemoteArtifactLinks;
|
|
56893
56927
|
};
|
|
@@ -58152,6 +58186,29 @@ export declare type MercuryHumanResourcesAllocation = {
|
|
|
58152
58186
|
totalAsPercentageOfBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
58153
58187
|
totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
58154
58188
|
};
|
|
58189
|
+
export declare type MercuryJiraAlignEpic = HasMercuryProjectFields & Node & {
|
|
58190
|
+
__typename?: 'MercuryJiraAlignEpic';
|
|
58191
|
+
id: Scalars['ID']['output'];
|
|
58192
|
+
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
58193
|
+
mercuryProjectKey?: Maybe<Scalars['String']['output']>;
|
|
58194
|
+
mercuryProjectName?: Maybe<Scalars['String']['output']>;
|
|
58195
|
+
mercuryProjectOwner?: Maybe<User>;
|
|
58196
|
+
mercuryProjectOwnerId?: Maybe<Scalars['String']['output']>;
|
|
58197
|
+
mercuryProjectProviderName?: Maybe<Scalars['String']['output']>;
|
|
58198
|
+
mercuryProjectStatus?: Maybe<MercuryProjectStatus>;
|
|
58199
|
+
mercuryProjectUrl?: Maybe<Scalars['URL']['output']>;
|
|
58200
|
+
mercuryTargetDate?: Maybe<Scalars['String']['output']>;
|
|
58201
|
+
mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
58202
|
+
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
58203
|
+
mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
|
|
58204
|
+
};
|
|
58205
|
+
export declare type MercuryJiraAlignProviderQueryApi = {
|
|
58206
|
+
__typename?: 'MercuryJiraAlignProviderQueryApi';
|
|
58207
|
+
jiraAlignEpicsByAris?: Maybe<Array<MercuryJiraAlignEpic>>;
|
|
58208
|
+
};
|
|
58209
|
+
export declare type MercuryJiraAlignProviderQueryApiJiraAlignEpicsByArisArgs = {
|
|
58210
|
+
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
58211
|
+
};
|
|
58155
58212
|
export declare type MercuryLinkAtlassianWorkToFocusAreaInput = {
|
|
58156
58213
|
focusAreaAri: Scalars['String']['input'];
|
|
58157
58214
|
workAris: Array<Scalars['String']['input']>;
|
|
@@ -58392,6 +58449,11 @@ export declare enum MercuryProjectStatusColor {
|
|
|
58392
58449
|
Red = "RED",
|
|
58393
58450
|
Yellow = "YELLOW"
|
|
58394
58451
|
}
|
|
58452
|
+
export declare type MercuryProjectStatusImpl = MercuryProjectStatus & {
|
|
58453
|
+
__typename?: 'MercuryProjectStatusImpl';
|
|
58454
|
+
mercuryColor?: Maybe<MercuryProjectStatusColor>;
|
|
58455
|
+
mercuryName?: Maybe<Scalars['String']['output']>;
|
|
58456
|
+
};
|
|
58395
58457
|
export declare enum MercuryProjectTargetDateType {
|
|
58396
58458
|
Day = "DAY",
|
|
58397
58459
|
Month = "MONTH",
|
|
@@ -59254,6 +59316,7 @@ export declare type Mutation = {
|
|
|
59254
59316
|
polarisAddReaction?: Maybe<PolarisAddReactionPayload>;
|
|
59255
59317
|
polarisDeleteReaction?: Maybe<PolarisDeleteReactionPayload>;
|
|
59256
59318
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
59319
|
+
radar_updateFocusAreaMappings: RadarMutationResponseResult;
|
|
59257
59320
|
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
59258
59321
|
rankColumn?: Maybe<RankColumnOutput>;
|
|
59259
59322
|
rankCustomFilter?: Maybe<GenericMutationResponse>;
|
|
@@ -60063,6 +60126,10 @@ export declare type MutationPolarisDeleteReactionArgs = {
|
|
|
60063
60126
|
export declare type MutationPublishReleaseNoteArgs = {
|
|
60064
60127
|
id: Scalars['String']['input'];
|
|
60065
60128
|
};
|
|
60129
|
+
export declare type MutationRadar_UpdateFocusAreaMappingsArgs = {
|
|
60130
|
+
cloudId: Scalars['ID']['input'];
|
|
60131
|
+
input: Array<RadarFocusAreaMappingsInput>;
|
|
60132
|
+
};
|
|
60066
60133
|
export declare type MutationRankCardParentArgs = {
|
|
60067
60134
|
input: CardParentRankInput;
|
|
60068
60135
|
};
|
|
@@ -60716,6 +60783,7 @@ export declare type PeapMutationApi = {
|
|
|
60716
60783
|
};
|
|
60717
60784
|
export declare type PeapNewProgramInput = {
|
|
60718
60785
|
name: Scalars['String']['input'];
|
|
60786
|
+
owner?: InputMaybe<Scalars['String']['input']>;
|
|
60719
60787
|
};
|
|
60720
60788
|
export declare type PeapProgram = {
|
|
60721
60789
|
__typename?: 'PEAPProgram';
|
|
@@ -60808,6 +60876,7 @@ export declare type PeapSiteEnrollmentStatus = {
|
|
|
60808
60876
|
};
|
|
60809
60877
|
export declare type PeapUpdateProgramInput = {
|
|
60810
60878
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
60879
|
+
owner?: InputMaybe<Scalars['String']['input']>;
|
|
60811
60880
|
};
|
|
60812
60881
|
export declare type PageInfo = {
|
|
60813
60882
|
__typename?: 'PageInfo';
|
|
@@ -62154,6 +62223,7 @@ export declare type Query = {
|
|
|
62154
62223
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
62155
62224
|
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
62156
62225
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
62226
|
+
devai_autodevJobFileContents?: Maybe<Scalars['String']['output']>;
|
|
62157
62227
|
devai_autodevJobLogGroups?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
62158
62228
|
devai_autodevJobLogs?: Maybe<DevAiAutodevLogConnection>;
|
|
62159
62229
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
@@ -62214,6 +62284,7 @@ export declare type Query = {
|
|
|
62214
62284
|
marketplaceStore: MarketplaceStoreQueryApi;
|
|
62215
62285
|
me: AuthenticationContext;
|
|
62216
62286
|
mercury?: Maybe<MercuryQueryApi>;
|
|
62287
|
+
mercury_jiraAlignProvider?: Maybe<MercuryJiraAlignProviderQueryApi>;
|
|
62217
62288
|
migration: MigrationQuery;
|
|
62218
62289
|
migrationCatalogue: MigrationCatalogueQuery;
|
|
62219
62290
|
myMarketplaceApps?: Maybe<MarketplaceAppConnection>;
|
|
@@ -62248,9 +62319,9 @@ export declare type Query = {
|
|
|
62248
62319
|
pricings: ContentPlatformPricingSearchConnection;
|
|
62249
62320
|
productListing?: Maybe<ProductListingResult>;
|
|
62250
62321
|
productListings: Array<ProductListingResult>;
|
|
62251
|
-
radar_enlistment: RadarEnlistment;
|
|
62252
62322
|
radar_fieldValues: RadarFieldValuesConnection;
|
|
62253
62323
|
radar_positions: RadarPositionConnectionResult;
|
|
62324
|
+
radar_workspace: RadarWorkspace;
|
|
62254
62325
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
62255
62326
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
62256
62327
|
repositoryRelationshipsForDevOpsService?: Maybe<DevOpsServiceAndRepositoryRelationshipConnection>;
|
|
@@ -63402,6 +63473,13 @@ export declare type QueryDevOpsServicesArgs = {
|
|
|
63402
63473
|
export declare type QueryDevOpsServicesByIdArgs = {
|
|
63403
63474
|
ids: Array<Scalars['ID']['input']>;
|
|
63404
63475
|
};
|
|
63476
|
+
export declare type QueryDevai_AutodevJobFileContentsArgs = {
|
|
63477
|
+
cloudId: Scalars['ID']['input'];
|
|
63478
|
+
endLine?: InputMaybe<Scalars['Int']['input']>;
|
|
63479
|
+
fileName: Scalars['String']['input'];
|
|
63480
|
+
jobId: Scalars['ID']['input'];
|
|
63481
|
+
startLine?: InputMaybe<Scalars['Int']['input']>;
|
|
63482
|
+
};
|
|
63405
63483
|
export declare type QueryDevai_AutodevJobLogGroupsArgs = {
|
|
63406
63484
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
63407
63485
|
cloudId: Scalars['ID']['input'];
|
|
@@ -63642,9 +63720,6 @@ export declare type QueryProductListingsArgs = {
|
|
|
63642
63720
|
ids: Array<Scalars['ID']['input']>;
|
|
63643
63721
|
locales?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
63644
63722
|
};
|
|
63645
|
-
export declare type QueryRadar_EnlistmentArgs = {
|
|
63646
|
-
cloudId: Scalars['ID']['input'];
|
|
63647
|
-
};
|
|
63648
63723
|
export declare type QueryRadar_FieldValuesArgs = {
|
|
63649
63724
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
63650
63725
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -63659,11 +63734,14 @@ export declare type QueryRadar_PositionsArgs = {
|
|
|
63659
63734
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
63660
63735
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
63661
63736
|
cloudId: Scalars['ID']['input'];
|
|
63662
|
-
fieldIdIsIn?: InputMaybe<Array<
|
|
63737
|
+
fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
63663
63738
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63664
63739
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
63665
63740
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
63666
63741
|
};
|
|
63742
|
+
export declare type QueryRadar_WorkspaceArgs = {
|
|
63743
|
+
cloudId: Scalars['ID']['input'];
|
|
63744
|
+
};
|
|
63667
63745
|
export declare type QueryReleaseNoteArgs = {
|
|
63668
63746
|
id: Scalars['String']['input'];
|
|
63669
63747
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -63791,7 +63869,7 @@ export declare type RadarBooleanFieldValue = {
|
|
|
63791
63869
|
};
|
|
63792
63870
|
export declare type RadarConnection = {
|
|
63793
63871
|
pageInfo: PageInfo;
|
|
63794
|
-
totalCount
|
|
63872
|
+
totalCount: Scalars['Int']['output'];
|
|
63795
63873
|
};
|
|
63796
63874
|
export declare type RadarDateFieldValue = {
|
|
63797
63875
|
__typename?: 'RadarDateFieldValue';
|
|
@@ -63799,18 +63877,13 @@ export declare type RadarDateFieldValue = {
|
|
|
63799
63877
|
};
|
|
63800
63878
|
export declare type RadarDynamicFilterOptions = RadarFilterOptions & {
|
|
63801
63879
|
__typename?: 'RadarDynamicFilterOptions';
|
|
63802
|
-
operators
|
|
63803
|
-
plurality
|
|
63804
|
-
type
|
|
63880
|
+
operators: Array<RadarFilterOperators>;
|
|
63881
|
+
plurality: RadarFilterPlurality;
|
|
63882
|
+
type: RadarFilterInputType;
|
|
63805
63883
|
};
|
|
63806
63884
|
export declare type RadarEdge = {
|
|
63807
63885
|
cursor: Scalars['String']['output'];
|
|
63808
63886
|
};
|
|
63809
|
-
export declare type RadarEnlistment = {
|
|
63810
|
-
__typename?: 'RadarEnlistment';
|
|
63811
|
-
cloudId: Scalars['ID']['output'];
|
|
63812
|
-
positionFields?: Maybe<Array<Maybe<RadarFieldDefinition>>>;
|
|
63813
|
-
};
|
|
63814
63887
|
export declare type RadarEntity = {
|
|
63815
63888
|
fieldValues?: Maybe<Array<Maybe<RadarFieldValueIdPair>>>;
|
|
63816
63889
|
id: Scalars['ID']['output'];
|
|
@@ -63823,8 +63896,8 @@ export declare type RadarError = {
|
|
|
63823
63896
|
__typename?: 'RadarError';
|
|
63824
63897
|
errorCode: Scalars['String']['output'];
|
|
63825
63898
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
63826
|
-
extensions?: Maybe<Array<
|
|
63827
|
-
location?: Maybe<Array<
|
|
63899
|
+
extensions?: Maybe<Array<RadarErrorExtension>>;
|
|
63900
|
+
location?: Maybe<Array<RadarLocation>>;
|
|
63828
63901
|
message?: Maybe<Scalars['String']['output']>;
|
|
63829
63902
|
stackTrace?: Maybe<Array<Scalars['String']['output']>>;
|
|
63830
63903
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
@@ -63832,16 +63905,16 @@ export declare type RadarError = {
|
|
|
63832
63905
|
export declare type RadarErrorExtension = {
|
|
63833
63906
|
__typename?: 'RadarErrorExtension';
|
|
63834
63907
|
property: Scalars['String']['output'];
|
|
63835
|
-
value
|
|
63908
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
63836
63909
|
};
|
|
63837
63910
|
export declare type RadarFieldDefinition = Node & {
|
|
63838
63911
|
__typename?: 'RadarFieldDefinition';
|
|
63839
|
-
displayName
|
|
63840
|
-
entity
|
|
63841
|
-
filterOptions
|
|
63912
|
+
displayName: Scalars['String']['output'];
|
|
63913
|
+
entity: RadarEntityType;
|
|
63914
|
+
filterOptions: RadarFilterOptions;
|
|
63842
63915
|
id: Scalars['ID']['output'];
|
|
63843
|
-
isCustom
|
|
63844
|
-
type
|
|
63916
|
+
isCustom: Scalars['Boolean']['output'];
|
|
63917
|
+
type: RadarFieldType;
|
|
63845
63918
|
};
|
|
63846
63919
|
export declare enum RadarFieldType {
|
|
63847
63920
|
Boolean = "BOOLEAN",
|
|
@@ -63855,19 +63928,19 @@ export declare type RadarFieldValue = RadarBooleanFieldValue | RadarDateFieldVal
|
|
|
63855
63928
|
export declare type RadarFieldValueIdPair = {
|
|
63856
63929
|
__typename?: 'RadarFieldValueIdPair';
|
|
63857
63930
|
fieldId: Scalars['ID']['output'];
|
|
63858
|
-
fieldValue
|
|
63931
|
+
fieldValue: RadarFieldValue;
|
|
63859
63932
|
};
|
|
63860
63933
|
export declare type RadarFieldValuesConnection = RadarConnection & {
|
|
63861
63934
|
__typename?: 'RadarFieldValuesConnection';
|
|
63862
|
-
edges?: Maybe<Array<
|
|
63863
|
-
nodes?: Maybe<Array<
|
|
63935
|
+
edges?: Maybe<Array<RadarFieldValuesEdge>>;
|
|
63936
|
+
nodes?: Maybe<Array<RadarFieldValue>>;
|
|
63864
63937
|
pageInfo: PageInfo;
|
|
63865
|
-
totalCount
|
|
63938
|
+
totalCount: Scalars['Int']['output'];
|
|
63866
63939
|
};
|
|
63867
63940
|
export declare type RadarFieldValuesEdge = RadarEdge & {
|
|
63868
63941
|
__typename?: 'RadarFieldValuesEdge';
|
|
63869
63942
|
cursor: Scalars['String']['output'];
|
|
63870
|
-
node
|
|
63943
|
+
node: RadarFieldValue;
|
|
63871
63944
|
};
|
|
63872
63945
|
export declare enum RadarFilterInputType {
|
|
63873
63946
|
Checkbox = "CHECKBOX",
|
|
@@ -63885,9 +63958,9 @@ export declare enum RadarFilterOperators {
|
|
|
63885
63958
|
NotLike = "NOT_LIKE"
|
|
63886
63959
|
}
|
|
63887
63960
|
export declare type RadarFilterOptions = {
|
|
63888
|
-
operators
|
|
63889
|
-
plurality
|
|
63890
|
-
type
|
|
63961
|
+
operators: Array<RadarFilterOperators>;
|
|
63962
|
+
plurality: RadarFilterPlurality;
|
|
63963
|
+
type: RadarFilterInputType;
|
|
63891
63964
|
};
|
|
63892
63965
|
export declare enum RadarFilterPlurality {
|
|
63893
63966
|
And = "AND",
|
|
@@ -63900,18 +63973,14 @@ export declare type RadarFocusAreaMappingsInput = {
|
|
|
63900
63973
|
};
|
|
63901
63974
|
export declare type RadarLocation = {
|
|
63902
63975
|
__typename?: 'RadarLocation';
|
|
63903
|
-
column
|
|
63904
|
-
line
|
|
63976
|
+
column: Scalars['Int']['output'];
|
|
63977
|
+
line: Scalars['Int']['output'];
|
|
63905
63978
|
};
|
|
63906
|
-
export declare type
|
|
63907
|
-
errors?: Maybe<Array<RadarError>>;
|
|
63908
|
-
success: Scalars['Boolean']['output'];
|
|
63909
|
-
};
|
|
63910
|
-
export declare type RadarMutationResponse = RadarMutationBaseResponse & {
|
|
63979
|
+
export declare type RadarMutationResponse = {
|
|
63911
63980
|
__typename?: 'RadarMutationResponse';
|
|
63912
|
-
errors?: Maybe<Array<RadarError>>;
|
|
63913
63981
|
success: Scalars['Boolean']['output'];
|
|
63914
63982
|
};
|
|
63983
|
+
export declare type RadarMutationResponseResult = RadarError | RadarMutationResponse;
|
|
63915
63984
|
export declare type RadarNumericFieldValue = {
|
|
63916
63985
|
__typename?: 'RadarNumericFieldValue';
|
|
63917
63986
|
displayValue?: Maybe<Scalars['Int']['output']>;
|
|
@@ -63925,22 +63994,22 @@ export declare type RadarPosition = Node & RadarEntity & {
|
|
|
63925
63994
|
};
|
|
63926
63995
|
export declare type RadarPositionConnection = RadarConnection & {
|
|
63927
63996
|
__typename?: 'RadarPositionConnection';
|
|
63928
|
-
edges?: Maybe<Array<
|
|
63929
|
-
nodes?: Maybe<Array<
|
|
63997
|
+
edges?: Maybe<Array<RadarPositionEdge>>;
|
|
63998
|
+
nodes?: Maybe<Array<RadarPosition>>;
|
|
63930
63999
|
pageInfo: PageInfo;
|
|
63931
|
-
totalCount
|
|
64000
|
+
totalCount: Scalars['Int']['output'];
|
|
63932
64001
|
};
|
|
63933
64002
|
export declare type RadarPositionConnectionResult = RadarError | RadarPositionConnection;
|
|
63934
64003
|
export declare type RadarPositionEdge = RadarEdge & {
|
|
63935
64004
|
__typename?: 'RadarPositionEdge';
|
|
63936
64005
|
cursor: Scalars['String']['output'];
|
|
63937
|
-
node
|
|
64006
|
+
node: RadarPosition;
|
|
63938
64007
|
};
|
|
63939
64008
|
export declare type RadarStaticStringFilterOptions = RadarFilterOptions & {
|
|
63940
64009
|
__typename?: 'RadarStaticStringFilterOptions';
|
|
63941
|
-
operators
|
|
63942
|
-
plurality
|
|
63943
|
-
type
|
|
64010
|
+
operators: Array<RadarFilterOperators>;
|
|
64011
|
+
plurality: RadarFilterPlurality;
|
|
64012
|
+
type: RadarFilterInputType;
|
|
63944
64013
|
values?: Maybe<Array<Maybe<RadarFieldValue>>>;
|
|
63945
64014
|
};
|
|
63946
64015
|
export declare type RadarStatusFieldValue = {
|
|
@@ -63960,6 +64029,11 @@ export declare type RadarUrlFieldValue = {
|
|
|
63960
64029
|
icon?: Maybe<Scalars['String']['output']>;
|
|
63961
64030
|
value?: Maybe<Scalars['String']['output']>;
|
|
63962
64031
|
};
|
|
64032
|
+
export declare type RadarWorkspace = {
|
|
64033
|
+
__typename?: 'RadarWorkspace';
|
|
64034
|
+
cloudId: Scalars['ID']['output'];
|
|
64035
|
+
positionFields: Array<RadarFieldDefinition>;
|
|
64036
|
+
};
|
|
63963
64037
|
export declare type RankColumnInput = {
|
|
63964
64038
|
boardId: Scalars['ID']['input'];
|
|
63965
64039
|
columnId: Scalars['ID']['input'];
|
|
@@ -66153,6 +66227,11 @@ export declare type ShepherdActorActivity = {
|
|
|
66153
66227
|
message?: Maybe<Scalars['JSON']['output']>;
|
|
66154
66228
|
time: Scalars['DateTime']['output'];
|
|
66155
66229
|
};
|
|
66230
|
+
export declare type ShepherdActorInput = {
|
|
66231
|
+
aaid?: InputMaybe<Scalars['ID']['input']>;
|
|
66232
|
+
anonymous?: InputMaybe<ShepherdAnonymousActorInput>;
|
|
66233
|
+
unknown?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66234
|
+
};
|
|
66156
66235
|
export declare type ShepherdActorMutationPayload = Payload & {
|
|
66157
66236
|
__typename?: 'ShepherdActorMutationPayload';
|
|
66158
66237
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -66439,6 +66518,9 @@ export declare type ShepherdAnonymousActor = {
|
|
|
66439
66518
|
__typename?: 'ShepherdAnonymousActor';
|
|
66440
66519
|
ipAddress?: Maybe<Scalars['String']['output']>;
|
|
66441
66520
|
};
|
|
66521
|
+
export declare type ShepherdAnonymousActorInput = {
|
|
66522
|
+
ipAddress?: InputMaybe<Scalars['String']['input']>;
|
|
66523
|
+
};
|
|
66442
66524
|
export declare type ShepherdAppInfo = {
|
|
66443
66525
|
__typename?: 'ShepherdAppInfo';
|
|
66444
66526
|
apiVersion: Scalars['Int']['output'];
|
|
@@ -66553,14 +66635,16 @@ export declare type ShepherdClassificationsQueriesByResourceArgs = {
|
|
|
66553
66635
|
};
|
|
66554
66636
|
export declare type ShepherdClassificationsResult = QueryError | ShepherdClassificationsConnection;
|
|
66555
66637
|
export declare type ShepherdCreateAlertInput = {
|
|
66638
|
+
actor?: InputMaybe<ShepherdActorInput>;
|
|
66556
66639
|
assignee?: InputMaybe<Scalars['ID']['input']>;
|
|
66557
66640
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
66558
|
-
|
|
66559
|
-
|
|
66641
|
+
customFields?: InputMaybe<Scalars['JSON']['input']>;
|
|
66642
|
+
deduplicationKey?: InputMaybe<Scalars['String']['input']>;
|
|
66560
66643
|
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
66561
66644
|
status?: InputMaybe<ShepherdAlertStatus>;
|
|
66562
|
-
|
|
66645
|
+
time?: InputMaybe<ShepherdTimeInput>;
|
|
66563
66646
|
title: Scalars['String']['input'];
|
|
66647
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
66564
66648
|
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
66565
66649
|
};
|
|
66566
66650
|
export declare type ShepherdCreateAlertPayload = Payload & {
|
|
@@ -66569,6 +66653,12 @@ export declare type ShepherdCreateAlertPayload = Payload & {
|
|
|
66569
66653
|
node?: Maybe<ShepherdAlert>;
|
|
66570
66654
|
success: Scalars['Boolean']['output'];
|
|
66571
66655
|
};
|
|
66656
|
+
export declare type ShepherdCreateAlertsPayload = Payload & {
|
|
66657
|
+
__typename?: 'ShepherdCreateAlertsPayload';
|
|
66658
|
+
errors?: Maybe<Array<MutationError>>;
|
|
66659
|
+
nodes?: Maybe<Array<Maybe<ShepherdAlert>>>;
|
|
66660
|
+
success: Scalars['Boolean']['output'];
|
|
66661
|
+
};
|
|
66572
66662
|
export declare type ShepherdCreateExampleAlertInput = {
|
|
66573
66663
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
66574
66664
|
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -66905,6 +66995,7 @@ export declare type ShepherdMutation = {
|
|
|
66905
66995
|
__typename?: 'ShepherdMutation';
|
|
66906
66996
|
actor?: Maybe<ShepherdActorMutations>;
|
|
66907
66997
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
66998
|
+
createAlerts?: Maybe<ShepherdCreateAlertsPayload>;
|
|
66908
66999
|
createExampleAlert?: Maybe<ShepherdCreateExampleAlertPayload>;
|
|
66909
67000
|
createTestAlert?: Maybe<ShepherdCreateTestAlertPayload>;
|
|
66910
67001
|
deleteAlert?: Maybe<ShepherdDeleteAlertPayload>;
|
|
@@ -66918,6 +67009,9 @@ export declare type ShepherdMutation = {
|
|
|
66918
67009
|
export declare type ShepherdMutationCreateAlertArgs = {
|
|
66919
67010
|
input: ShepherdCreateAlertInput;
|
|
66920
67011
|
};
|
|
67012
|
+
export declare type ShepherdMutationCreateAlertsArgs = {
|
|
67013
|
+
input: Array<ShepherdCreateAlertInput>;
|
|
67014
|
+
};
|
|
66921
67015
|
export declare type ShepherdMutationCreateExampleAlertArgs = {
|
|
66922
67016
|
input: ShepherdCreateExampleAlertInput;
|
|
66923
67017
|
};
|
|
@@ -69034,7 +69128,7 @@ export declare type TownsquareGoalEdge = {
|
|
|
69034
69128
|
export declare type TownsquareGoalIcon = {
|
|
69035
69129
|
__typename?: 'TownsquareGoalIcon';
|
|
69036
69130
|
appearance?: Maybe<TownsquareGoalIconAppearance>;
|
|
69037
|
-
key?: Maybe<
|
|
69131
|
+
key?: Maybe<TownsquareGoalIconKey>;
|
|
69038
69132
|
};
|
|
69039
69133
|
export declare enum TownsquareGoalIconAppearance {
|
|
69040
69134
|
AtRisk = "AT_RISK",
|
|
@@ -69042,6 +69136,11 @@ export declare enum TownsquareGoalIconAppearance {
|
|
|
69042
69136
|
OffTrack = "OFF_TRACK",
|
|
69043
69137
|
OnTrack = "ON_TRACK"
|
|
69044
69138
|
}
|
|
69139
|
+
export declare enum TownsquareGoalIconKey {
|
|
69140
|
+
Goal = "GOAL",
|
|
69141
|
+
KeyResult = "KEY_RESULT",
|
|
69142
|
+
Objective = "OBJECTIVE"
|
|
69143
|
+
}
|
|
69045
69144
|
export declare enum TownsquareGoalSortEnum {
|
|
69046
69145
|
CreationDateAsc = "CREATION_DATE_ASC",
|
|
69047
69146
|
CreationDateDesc = "CREATION_DATE_DESC",
|
|
@@ -69115,13 +69214,8 @@ export declare type TownsquareGoalTypeEdge = {
|
|
|
69115
69214
|
};
|
|
69116
69215
|
export declare type TownsquareGoalTypeIcon = {
|
|
69117
69216
|
__typename?: 'TownsquareGoalTypeIcon';
|
|
69118
|
-
key?: Maybe<
|
|
69217
|
+
key?: Maybe<TownsquareGoalIconKey>;
|
|
69119
69218
|
};
|
|
69120
|
-
export declare enum TownsquareGoalTypeIconKey {
|
|
69121
|
-
Goal = "GOAL",
|
|
69122
|
-
KeyResult = "KEY_RESULT",
|
|
69123
|
-
Objective = "OBJECTIVE"
|
|
69124
|
-
}
|
|
69125
69219
|
export declare type TownsquareGoalTypeName = TownsquareGoalTypeCustomName | TownsquareLocalizationField;
|
|
69126
69220
|
export declare enum TownsquareGoalTypeState {
|
|
69127
69221
|
Disabled = "DISABLED",
|
|
@@ -70524,8 +70618,6 @@ export declare type TrelloPlannerCalendarEventEdge = {
|
|
|
70524
70618
|
};
|
|
70525
70619
|
export declare enum TrelloPlannerCalendarEventStatus {
|
|
70526
70620
|
Accepted = "ACCEPTED",
|
|
70527
|
-
Cancelled = "CANCELLED",
|
|
70528
|
-
Confirmed = "CONFIRMED",
|
|
70529
70621
|
Declined = "DECLINED",
|
|
70530
70622
|
NeedsAction = "NEEDS_ACTION",
|
|
70531
70623
|
Tentative = "TENTATIVE"
|
|
@@ -70542,7 +70634,6 @@ export declare type TrelloPlannerCalendarEventsFilter = {
|
|
|
70542
70634
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
70543
70635
|
__typename?: 'TrelloPlannerProviderCalendar';
|
|
70544
70636
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
70545
|
-
events?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
70546
70637
|
id: Scalars['ID']['output'];
|
|
70547
70638
|
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
70548
70639
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -70550,11 +70641,6 @@ export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalenda
|
|
|
70550
70641
|
title?: Maybe<Scalars['String']['output']>;
|
|
70551
70642
|
type?: Maybe<TrelloSupportedPlannerProviders>;
|
|
70552
70643
|
};
|
|
70553
|
-
export declare type TrelloPlannerProviderCalendarEventsArgs = {
|
|
70554
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
70555
|
-
filter: TrelloPlannerCalendarEventsFilter;
|
|
70556
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70557
|
-
};
|
|
70558
70644
|
export declare type TrelloPlannerProviderCalendarConnection = {
|
|
70559
70645
|
__typename?: 'TrelloPlannerProviderCalendarConnection';
|
|
70560
70646
|
edges?: Maybe<Array<TrelloPlannerProviderCalendarEdge>>;
|