@forge/cli-shared 6.1.0-next.5 → 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.
|
@@ -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']>>;
|
|
@@ -7025,6 +7044,12 @@ export declare enum ConfluenceContentType {
|
|
|
7025
7044
|
Page = "PAGE",
|
|
7026
7045
|
Whiteboard = "WHITEBOARD"
|
|
7027
7046
|
}
|
|
7047
|
+
export declare type ConfluenceContentVersion = {
|
|
7048
|
+
__typename?: 'ConfluenceContentVersion';
|
|
7049
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
7050
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
7051
|
+
number?: Maybe<Scalars['Int']['output']>;
|
|
7052
|
+
};
|
|
7028
7053
|
export declare type ConfluenceContribution = {
|
|
7029
7054
|
__typename?: 'ConfluenceContribution';
|
|
7030
7055
|
status: ConfluenceContributionStatus;
|
|
@@ -7122,6 +7147,7 @@ export declare type ConfluenceDatabase = {
|
|
|
7122
7147
|
author?: Maybe<ConfluenceUserInfo>;
|
|
7123
7148
|
databaseId: Scalars['ID']['output'];
|
|
7124
7149
|
id: Scalars['ID']['output'];
|
|
7150
|
+
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
7125
7151
|
links?: Maybe<ConfluenceDatabaseLinks>;
|
|
7126
7152
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
7127
7153
|
space?: Maybe<ConfluenceSpace>;
|
|
@@ -7180,6 +7206,7 @@ export declare type ConfluenceEmbed = {
|
|
|
7180
7206
|
author?: Maybe<ConfluenceUserInfo>;
|
|
7181
7207
|
embedId: Scalars['ID']['output'];
|
|
7182
7208
|
id: Scalars['ID']['output'];
|
|
7209
|
+
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
7183
7210
|
links?: Maybe<ConfluenceEmbedLinks>;
|
|
7184
7211
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
7185
7212
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
@@ -7202,6 +7229,7 @@ export declare type ConfluenceFolder = {
|
|
|
7202
7229
|
author?: Maybe<ConfluenceUserInfo>;
|
|
7203
7230
|
folderId: Scalars['ID']['output'];
|
|
7204
7231
|
id: Scalars['ID']['output'];
|
|
7232
|
+
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
7205
7233
|
links?: Maybe<ConfluenceFolderLinks>;
|
|
7206
7234
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
7207
7235
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
@@ -14055,6 +14083,7 @@ export declare type ConfluenceWhiteboard = {
|
|
|
14055
14083
|
author?: Maybe<ConfluenceUserInfo>;
|
|
14056
14084
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
14057
14085
|
id: Scalars['ID']['output'];
|
|
14086
|
+
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
14058
14087
|
links?: Maybe<ConfluenceWhiteboardLinks>;
|
|
14059
14088
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
14060
14089
|
space?: Maybe<ConfluenceSpace>;
|
|
@@ -36603,14 +36632,6 @@ export declare enum GrowthUnifiedProfileEnterpriseAccountStatus {
|
|
|
36603
36632
|
Platimun = "PLATIMUN",
|
|
36604
36633
|
Silver = "SILVER"
|
|
36605
36634
|
}
|
|
36606
|
-
export declare type GrowthUnifiedProfileEntitlement = {
|
|
36607
|
-
__typename?: 'GrowthUnifiedProfileEntitlement';
|
|
36608
|
-
d0Entitlement?: Maybe<Scalars['Boolean']['output']>;
|
|
36609
|
-
d1tod6Entitlement?: Maybe<Scalars['Boolean']['output']>;
|
|
36610
|
-
productEdition?: Maybe<Scalars['String']['output']>;
|
|
36611
|
-
productKey?: Maybe<Scalars['String']['output']>;
|
|
36612
|
-
productName?: Maybe<Scalars['String']['output']>;
|
|
36613
|
-
};
|
|
36614
36635
|
export declare enum GrowthUnifiedProfileEntityType {
|
|
36615
36636
|
AjsAnonymousUser = "AJS_ANONYMOUS_USER",
|
|
36616
36637
|
AtlassianAccount = "ATLASSIAN_ACCOUNT",
|
|
@@ -36693,6 +36714,14 @@ export declare type GrowthUnifiedProfilePaidChannelContext = {
|
|
|
36693
36714
|
teamType?: Maybe<GrowthUnifiedProfileTeamType>;
|
|
36694
36715
|
utm?: Maybe<GrowthUnifiedProfileUtm>;
|
|
36695
36716
|
};
|
|
36717
|
+
export declare type GrowthUnifiedProfileProductDetails = {
|
|
36718
|
+
__typename?: 'GrowthUnifiedProfileProductDetails';
|
|
36719
|
+
d0Entitlement?: Maybe<Scalars['Boolean']['output']>;
|
|
36720
|
+
d1tod6Entitlement?: Maybe<Scalars['Boolean']['output']>;
|
|
36721
|
+
productEdition?: Maybe<Scalars['String']['output']>;
|
|
36722
|
+
productKey?: Maybe<Scalars['String']['output']>;
|
|
36723
|
+
productName?: Maybe<Scalars['String']['output']>;
|
|
36724
|
+
};
|
|
36696
36725
|
export declare enum GrowthUnifiedProfileProductType {
|
|
36697
36726
|
Confluence = "CONFLUENCE",
|
|
36698
36727
|
JiraSoftware = "JIRA_SOFTWARE",
|
|
@@ -36719,7 +36748,7 @@ export declare type GrowthUnifiedProfileSiteDetails = {
|
|
|
36719
36748
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
36720
36749
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
36721
36750
|
hasAdminAccess?: Maybe<Scalars['Boolean']['output']>;
|
|
36722
|
-
products?: Maybe<Array<Maybe<
|
|
36751
|
+
products?: Maybe<Array<Maybe<GrowthUnifiedProfileProductDetails>>>;
|
|
36723
36752
|
siteCreatedAt?: Maybe<Scalars['Int']['output']>;
|
|
36724
36753
|
url?: Maybe<Scalars['String']['output']>;
|
|
36725
36754
|
};
|
|
@@ -37107,7 +37136,7 @@ export declare type HelpCenterMutationApi = {
|
|
|
37107
37136
|
deleteHelpCenter?: Maybe<HelpCenterDeletePayload>;
|
|
37108
37137
|
deleteTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
|
|
37109
37138
|
updateHelpCenter?: Maybe<HelpCenterUpdatePayload>;
|
|
37110
|
-
|
|
37139
|
+
updateHelpCenterPermissionSettings?: Maybe<HelpCenterPermissionSettingsPayload>;
|
|
37111
37140
|
updateHomePageAnnouncement?: Maybe<HelpCenterAnnouncementUpdatePayload>;
|
|
37112
37141
|
updateLoginAnnouncement?: Maybe<HelpCenterAnnouncementUpdatePayload>;
|
|
37113
37142
|
updatePortalsConfiguration?: Maybe<HelpCenterPortalsConfigurationUpdatePayload>;
|
|
@@ -37130,8 +37159,8 @@ export declare type HelpCenterMutationApiDeleteTopicArgs = {
|
|
|
37130
37159
|
export declare type HelpCenterMutationApiUpdateHelpCenterArgs = {
|
|
37131
37160
|
input: HelpCenterUpdateInput;
|
|
37132
37161
|
};
|
|
37133
|
-
export declare type
|
|
37134
|
-
input:
|
|
37162
|
+
export declare type HelpCenterMutationApiUpdateHelpCenterPermissionSettingsArgs = {
|
|
37163
|
+
input: HelpCenterPermissionSettingsInput;
|
|
37135
37164
|
};
|
|
37136
37165
|
export declare type HelpCenterMutationApiUpdateHomePageAnnouncementArgs = {
|
|
37137
37166
|
input: HelpCenterAnnouncementInput;
|
|
@@ -37160,23 +37189,23 @@ export declare type HelpCenterNameInput = {
|
|
|
37160
37189
|
default: Scalars['String']['input'];
|
|
37161
37190
|
translations?: InputMaybe<Array<InputMaybe<HelpCenterTranslationInput>>>;
|
|
37162
37191
|
};
|
|
37163
|
-
export declare type
|
|
37164
|
-
__typename?: '
|
|
37192
|
+
export declare type HelpCenterPermissionSettings = {
|
|
37193
|
+
__typename?: 'HelpCenterPermissionSettings';
|
|
37165
37194
|
accessControlType: HelpCenterAccessControlType;
|
|
37166
37195
|
allowedAccessGroups?: Maybe<Array<CustomerServiceOrganizationQueryResult>>;
|
|
37167
37196
|
};
|
|
37168
|
-
export declare type
|
|
37197
|
+
export declare type HelpCenterPermissionSettingsInput = {
|
|
37169
37198
|
accessControlType: HelpCenterAccessControlType;
|
|
37170
37199
|
addedAllowedAccessGroups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
37171
37200
|
deletedAllowedAccessGroups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
37172
37201
|
helpCenterAri: Scalars['String']['input'];
|
|
37173
37202
|
};
|
|
37174
|
-
export declare type
|
|
37175
|
-
__typename?: '
|
|
37203
|
+
export declare type HelpCenterPermissionSettingsPayload = Payload & {
|
|
37204
|
+
__typename?: 'HelpCenterPermissionSettingsPayload';
|
|
37176
37205
|
errors?: Maybe<Array<MutationError>>;
|
|
37177
37206
|
success: Scalars['Boolean']['output'];
|
|
37178
37207
|
};
|
|
37179
|
-
export declare type
|
|
37208
|
+
export declare type HelpCenterPermissionSettingsResult = HelpCenterPermissionSettings | QueryError;
|
|
37180
37209
|
export declare type HelpCenterPortal = {
|
|
37181
37210
|
__typename?: 'HelpCenterPortal';
|
|
37182
37211
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -37256,7 +37285,7 @@ export declare type HelpCenterQueryApi = {
|
|
|
37256
37285
|
helpCenterByHoistedProjectId?: Maybe<HelpCenterQueryResult>;
|
|
37257
37286
|
helpCenterByHoistedProjectIdRouted?: Maybe<HelpCenterQueryResult>;
|
|
37258
37287
|
helpCenterById?: Maybe<HelpCenterQueryResult>;
|
|
37259
|
-
|
|
37288
|
+
helpCenterPermissionSettings?: Maybe<HelpCenterPermissionSettingsResult>;
|
|
37260
37289
|
helpCenterReportingById?: Maybe<HelpCenterReportingResult>;
|
|
37261
37290
|
helpCenterTopicById?: Maybe<HelpCenterTopicResult>;
|
|
37262
37291
|
helpCenters?: Maybe<HelpCenterQueryResultConnection>;
|
|
@@ -37275,7 +37304,7 @@ export declare type HelpCenterQueryApiHelpCenterByHoistedProjectIdRoutedArgs = {
|
|
|
37275
37304
|
export declare type HelpCenterQueryApiHelpCenterByIdArgs = {
|
|
37276
37305
|
helpCenterAri: Scalars['ID']['input'];
|
|
37277
37306
|
};
|
|
37278
|
-
export declare type
|
|
37307
|
+
export declare type HelpCenterQueryApiHelpCenterPermissionSettingsArgs = {
|
|
37279
37308
|
helpCenterAri: Scalars['ID']['input'];
|
|
37280
37309
|
};
|
|
37281
37310
|
export declare type HelpCenterQueryApiHelpCenterReportingByIdArgs = {
|
|
@@ -44586,6 +44615,10 @@ export declare type JiraIssueSearchByJqlContentByFieldSetIdsArgs = {
|
|
|
44586
44615
|
fieldSetIds: Array<Scalars['String']['input']>;
|
|
44587
44616
|
};
|
|
44588
44617
|
export declare type JiraIssueSearchByJqlResult = JiraIssueSearchByJql | QueryError;
|
|
44618
|
+
export declare type JiraIssueSearchChildIssuesInput = {
|
|
44619
|
+
filterByProjectKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
44620
|
+
parentIssueKey: Scalars['String']['input'];
|
|
44621
|
+
};
|
|
44589
44622
|
export declare type JiraIssueSearchContextlessContent = JiraIssueSearchResultContent & {
|
|
44590
44623
|
__typename?: 'JiraIssueSearchContextlessContent';
|
|
44591
44624
|
issues?: Maybe<JiraIssueConnection>;
|
|
@@ -44662,6 +44695,7 @@ export declare type JiraIssueSearchHierarchyPreferenceMutationPayload = Payload
|
|
|
44662
44695
|
success: Scalars['Boolean']['output'];
|
|
44663
44696
|
};
|
|
44664
44697
|
export declare type JiraIssueSearchInput = {
|
|
44698
|
+
childIssuesInput?: InputMaybe<JiraIssueSearchChildIssuesInput>;
|
|
44665
44699
|
customInput?: InputMaybe<JiraIssueSearchCustomInput>;
|
|
44666
44700
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
44667
44701
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -46612,7 +46646,7 @@ export declare type JiraMutationUpdateIssueHierarchyConfigArgs = {
|
|
|
46612
46646
|
input: JiraIssueHierarchyConfigurationMutationInput;
|
|
46613
46647
|
};
|
|
46614
46648
|
export declare type JiraMutationUpdateIssueSearchGroupByConfigArgs = {
|
|
46615
|
-
fieldId
|
|
46649
|
+
fieldId?: InputMaybe<Scalars['String']['input']>;
|
|
46616
46650
|
viewId: Scalars['ID']['input'];
|
|
46617
46651
|
};
|
|
46618
46652
|
export declare type JiraMutationUpdateIssueSearchHierarchyPreferenceArgs = {
|
|
@@ -51078,7 +51112,7 @@ export declare type JiraServiceManagementRequestTypeCategoryEdge = {
|
|
|
51078
51112
|
export declare type JiraServiceManagementRequestTypeCategoryPayload = Payload & {
|
|
51079
51113
|
__typename?: 'JiraServiceManagementRequestTypeCategoryPayload';
|
|
51080
51114
|
errors?: Maybe<Array<MutationError>>;
|
|
51081
|
-
requestTypeCategory?: Maybe<
|
|
51115
|
+
requestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryEdge>;
|
|
51082
51116
|
success: Scalars['Boolean']['output'];
|
|
51083
51117
|
};
|
|
51084
51118
|
export declare enum JiraServiceManagementRequestTypeCategoryRestriction {
|
|
@@ -56202,8 +56236,9 @@ export declare type MarketplaceConsoleAppSoftwares = {
|
|
|
56202
56236
|
appSoftwares: Array<MarketplaceConsoleAppSoftwareShort>;
|
|
56203
56237
|
};
|
|
56204
56238
|
export declare type MarketplaceConsoleAppVersionCreateRequestInput = {
|
|
56205
|
-
buildNumber?: InputMaybe<Scalars['
|
|
56239
|
+
buildNumber?: InputMaybe<Scalars['String']['input']>;
|
|
56206
56240
|
compatibilities: Array<MarketplaceConsoleAppSoftwareVersionCompatibilityInput>;
|
|
56241
|
+
dcBuildNumber?: InputMaybe<Scalars['String']['input']>;
|
|
56207
56242
|
frameworkDetails: MarketplaceConsoleAppSoftwareVersionFrameworkDetailsInput;
|
|
56208
56243
|
versionNumber?: InputMaybe<Scalars['String']['input']>;
|
|
56209
56244
|
};
|
|
@@ -56240,6 +56275,11 @@ export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
|
56240
56275
|
export declare type MarketplaceConsoleConnectFrameworkAttributesInput = {
|
|
56241
56276
|
href: Scalars['String']['input'];
|
|
56242
56277
|
};
|
|
56278
|
+
export declare type MarketplaceConsoleCreatePrivateAppVersionMutationResponse = {
|
|
56279
|
+
__typename?: 'MarketplaceConsoleCreatePrivateAppVersionMutationResponse';
|
|
56280
|
+
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
56281
|
+
success: Scalars['Boolean']['output'];
|
|
56282
|
+
};
|
|
56243
56283
|
export declare type MarketplaceConsoleDeploymentInstruction = {
|
|
56244
56284
|
__typename?: 'MarketplaceConsoleDeploymentInstruction';
|
|
56245
56285
|
body: Scalars['String']['output'];
|
|
@@ -56520,7 +56560,6 @@ export declare type MarketplaceConsoleListingScreenshotInput = {
|
|
|
56520
56560
|
};
|
|
56521
56561
|
export declare type MarketplaceConsoleMakeAppVersionPublicRequest = {
|
|
56522
56562
|
appKey: Scalars['ID']['input'];
|
|
56523
|
-
appSoftwareId: Scalars['ID']['input'];
|
|
56524
56563
|
appStatusPageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
56525
56564
|
binaryUrl?: InputMaybe<Scalars['String']['input']>;
|
|
56526
56565
|
buildNumber: Scalars['ID']['input'];
|
|
@@ -56543,16 +56582,19 @@ export declare type MarketplaceConsoleMakeAppVersionPublicRequest = {
|
|
|
56543
56582
|
learnMoreUrl?: InputMaybe<Scalars['String']['input']>;
|
|
56544
56583
|
licenseType?: InputMaybe<MarketplaceConsoleAppSoftwareVersionLicenseTypeId>;
|
|
56545
56584
|
logoUrl?: InputMaybe<Scalars['String']['input']>;
|
|
56585
|
+
marketingLabels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
56546
56586
|
moreDetails?: InputMaybe<Scalars['String']['input']>;
|
|
56547
56587
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
56548
56588
|
paymentModel?: InputMaybe<MarketplaceConsolePaymentModel>;
|
|
56549
56589
|
privacyUrl?: InputMaybe<Scalars['String']['input']>;
|
|
56550
56590
|
productId: Scalars['ID']['input'];
|
|
56591
|
+
purchaseUrl?: InputMaybe<Scalars['String']['input']>;
|
|
56551
56592
|
releaseNotes?: InputMaybe<Scalars['String']['input']>;
|
|
56552
56593
|
releaseSummary?: InputMaybe<Scalars['String']['input']>;
|
|
56553
56594
|
screenshots?: InputMaybe<Array<MarketplaceConsoleListingScreenshotInput>>;
|
|
56554
56595
|
segmentWriteKey?: InputMaybe<Scalars['String']['input']>;
|
|
56555
56596
|
sourceCodeLicenseUrl?: InputMaybe<Scalars['String']['input']>;
|
|
56597
|
+
statusAfterApproval?: InputMaybe<MarketplaceConsoleLegacyMongoStatus>;
|
|
56556
56598
|
storesPersonalData?: InputMaybe<Scalars['Boolean']['input']>;
|
|
56557
56599
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
56558
56600
|
supportTicketSystemUrl?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -56564,7 +56606,7 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
56564
56606
|
activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
|
|
56565
56607
|
createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
|
|
56566
56608
|
createEcoHelpTicket?: Maybe<Scalars['ID']['output']>;
|
|
56567
|
-
createPrivateAppSoftwareVersion?: Maybe<
|
|
56609
|
+
createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleCreatePrivateAppVersionMutationResponse>;
|
|
56568
56610
|
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
56569
56611
|
deleteAppVersion?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
56570
56612
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
|
|
@@ -56753,6 +56795,7 @@ export declare type MarketplaceConsoleProductListing = {
|
|
|
56753
56795
|
tagLine?: Maybe<Scalars['String']['output']>;
|
|
56754
56796
|
tags?: Maybe<MarketplaceConsoleProductListingTags>;
|
|
56755
56797
|
titleLogo?: Maybe<MarketplaceConsoleImageMediaAsset>;
|
|
56798
|
+
vendorId: Scalars['String']['output'];
|
|
56756
56799
|
vendorLinks?: Maybe<MarketplaceConsoleVendorLinks>;
|
|
56757
56800
|
};
|
|
56758
56801
|
export declare type MarketplaceConsoleProductListingTags = {
|
|
@@ -56859,6 +56902,11 @@ export declare type MarketplaceConsoleQueryApiProductListingByAppIdArgs = {
|
|
|
56859
56902
|
export declare type MarketplaceConsoleQueryApiProductMetadataByAppIdArgs = {
|
|
56860
56903
|
appId: Scalars['ID']['input'];
|
|
56861
56904
|
};
|
|
56905
|
+
export declare type MarketplaceConsoleRemoteArtifactDetails = {
|
|
56906
|
+
__typename?: 'MarketplaceConsoleRemoteArtifactDetails';
|
|
56907
|
+
dataCenterStatus?: Maybe<Scalars['String']['output']>;
|
|
56908
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
56909
|
+
};
|
|
56862
56910
|
export declare type MarketplaceConsoleRemoteArtifactLinks = {
|
|
56863
56911
|
__typename?: 'MarketplaceConsoleRemoteArtifactLinks';
|
|
56864
56912
|
binary: MarketplaceConsoleLink;
|
|
@@ -56873,6 +56921,7 @@ export declare type MarketplaceConsoleServerVersionPublicChecks = {
|
|
|
56873
56921
|
};
|
|
56874
56922
|
export declare type MarketplaceConsoleSoftwareArtifact = {
|
|
56875
56923
|
__typename?: 'MarketplaceConsoleSoftwareArtifact';
|
|
56924
|
+
details?: Maybe<MarketplaceConsoleRemoteArtifactDetails>;
|
|
56876
56925
|
fileInfo: MarketplaceConsoleArtifactFileInfo;
|
|
56877
56926
|
links: MarketplaceConsoleRemoteArtifactLinks;
|
|
56878
56927
|
};
|
|
@@ -58137,6 +58186,29 @@ export declare type MercuryHumanResourcesAllocation = {
|
|
|
58137
58186
|
totalAsPercentageOfBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
58138
58187
|
totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
58139
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
|
+
};
|
|
58140
58212
|
export declare type MercuryLinkAtlassianWorkToFocusAreaInput = {
|
|
58141
58213
|
focusAreaAri: Scalars['String']['input'];
|
|
58142
58214
|
workAris: Array<Scalars['String']['input']>;
|
|
@@ -58377,6 +58449,11 @@ export declare enum MercuryProjectStatusColor {
|
|
|
58377
58449
|
Red = "RED",
|
|
58378
58450
|
Yellow = "YELLOW"
|
|
58379
58451
|
}
|
|
58452
|
+
export declare type MercuryProjectStatusImpl = MercuryProjectStatus & {
|
|
58453
|
+
__typename?: 'MercuryProjectStatusImpl';
|
|
58454
|
+
mercuryColor?: Maybe<MercuryProjectStatusColor>;
|
|
58455
|
+
mercuryName?: Maybe<Scalars['String']['output']>;
|
|
58456
|
+
};
|
|
58380
58457
|
export declare enum MercuryProjectTargetDateType {
|
|
58381
58458
|
Day = "DAY",
|
|
58382
58459
|
Month = "MONTH",
|
|
@@ -59239,6 +59316,7 @@ export declare type Mutation = {
|
|
|
59239
59316
|
polarisAddReaction?: Maybe<PolarisAddReactionPayload>;
|
|
59240
59317
|
polarisDeleteReaction?: Maybe<PolarisDeleteReactionPayload>;
|
|
59241
59318
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
59319
|
+
radar_updateFocusAreaMappings: RadarMutationResponseResult;
|
|
59242
59320
|
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
59243
59321
|
rankColumn?: Maybe<RankColumnOutput>;
|
|
59244
59322
|
rankCustomFilter?: Maybe<GenericMutationResponse>;
|
|
@@ -60048,6 +60126,10 @@ export declare type MutationPolarisDeleteReactionArgs = {
|
|
|
60048
60126
|
export declare type MutationPublishReleaseNoteArgs = {
|
|
60049
60127
|
id: Scalars['String']['input'];
|
|
60050
60128
|
};
|
|
60129
|
+
export declare type MutationRadar_UpdateFocusAreaMappingsArgs = {
|
|
60130
|
+
cloudId: Scalars['ID']['input'];
|
|
60131
|
+
input: Array<RadarFocusAreaMappingsInput>;
|
|
60132
|
+
};
|
|
60051
60133
|
export declare type MutationRankCardParentArgs = {
|
|
60052
60134
|
input: CardParentRankInput;
|
|
60053
60135
|
};
|
|
@@ -60701,6 +60783,7 @@ export declare type PeapMutationApi = {
|
|
|
60701
60783
|
};
|
|
60702
60784
|
export declare type PeapNewProgramInput = {
|
|
60703
60785
|
name: Scalars['String']['input'];
|
|
60786
|
+
owner?: InputMaybe<Scalars['String']['input']>;
|
|
60704
60787
|
};
|
|
60705
60788
|
export declare type PeapProgram = {
|
|
60706
60789
|
__typename?: 'PEAPProgram';
|
|
@@ -60793,6 +60876,7 @@ export declare type PeapSiteEnrollmentStatus = {
|
|
|
60793
60876
|
};
|
|
60794
60877
|
export declare type PeapUpdateProgramInput = {
|
|
60795
60878
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
60879
|
+
owner?: InputMaybe<Scalars['String']['input']>;
|
|
60796
60880
|
};
|
|
60797
60881
|
export declare type PageInfo = {
|
|
60798
60882
|
__typename?: 'PageInfo';
|
|
@@ -62139,6 +62223,7 @@ export declare type Query = {
|
|
|
62139
62223
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
62140
62224
|
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
62141
62225
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
62226
|
+
devai_autodevJobFileContents?: Maybe<Scalars['String']['output']>;
|
|
62142
62227
|
devai_autodevJobLogGroups?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
62143
62228
|
devai_autodevJobLogs?: Maybe<DevAiAutodevLogConnection>;
|
|
62144
62229
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
@@ -62199,6 +62284,7 @@ export declare type Query = {
|
|
|
62199
62284
|
marketplaceStore: MarketplaceStoreQueryApi;
|
|
62200
62285
|
me: AuthenticationContext;
|
|
62201
62286
|
mercury?: Maybe<MercuryQueryApi>;
|
|
62287
|
+
mercury_jiraAlignProvider?: Maybe<MercuryJiraAlignProviderQueryApi>;
|
|
62202
62288
|
migration: MigrationQuery;
|
|
62203
62289
|
migrationCatalogue: MigrationCatalogueQuery;
|
|
62204
62290
|
myMarketplaceApps?: Maybe<MarketplaceAppConnection>;
|
|
@@ -62233,9 +62319,9 @@ export declare type Query = {
|
|
|
62233
62319
|
pricings: ContentPlatformPricingSearchConnection;
|
|
62234
62320
|
productListing?: Maybe<ProductListingResult>;
|
|
62235
62321
|
productListings: Array<ProductListingResult>;
|
|
62236
|
-
radar_enlistment: RadarEnlistment;
|
|
62237
62322
|
radar_fieldValues: RadarFieldValuesConnection;
|
|
62238
|
-
radar_positions:
|
|
62323
|
+
radar_positions: RadarPositionConnectionResult;
|
|
62324
|
+
radar_workspace: RadarWorkspace;
|
|
62239
62325
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
62240
62326
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
62241
62327
|
repositoryRelationshipsForDevOpsService?: Maybe<DevOpsServiceAndRepositoryRelationshipConnection>;
|
|
@@ -63387,6 +63473,13 @@ export declare type QueryDevOpsServicesArgs = {
|
|
|
63387
63473
|
export declare type QueryDevOpsServicesByIdArgs = {
|
|
63388
63474
|
ids: Array<Scalars['ID']['input']>;
|
|
63389
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
|
+
};
|
|
63390
63483
|
export declare type QueryDevai_AutodevJobLogGroupsArgs = {
|
|
63391
63484
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
63392
63485
|
cloudId: Scalars['ID']['input'];
|
|
@@ -63627,9 +63720,6 @@ export declare type QueryProductListingsArgs = {
|
|
|
63627
63720
|
ids: Array<Scalars['ID']['input']>;
|
|
63628
63721
|
locales?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
63629
63722
|
};
|
|
63630
|
-
export declare type QueryRadar_EnlistmentArgs = {
|
|
63631
|
-
cloudId: Scalars['ID']['input'];
|
|
63632
|
-
};
|
|
63633
63723
|
export declare type QueryRadar_FieldValuesArgs = {
|
|
63634
63724
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
63635
63725
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -63644,11 +63734,14 @@ export declare type QueryRadar_PositionsArgs = {
|
|
|
63644
63734
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
63645
63735
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
63646
63736
|
cloudId: Scalars['ID']['input'];
|
|
63647
|
-
fieldIdIsIn?: InputMaybe<Array<
|
|
63737
|
+
fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
63648
63738
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63649
63739
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
63650
63740
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
63651
63741
|
};
|
|
63742
|
+
export declare type QueryRadar_WorkspaceArgs = {
|
|
63743
|
+
cloudId: Scalars['ID']['input'];
|
|
63744
|
+
};
|
|
63652
63745
|
export declare type QueryReleaseNoteArgs = {
|
|
63653
63746
|
id: Scalars['String']['input'];
|
|
63654
63747
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -63776,7 +63869,7 @@ export declare type RadarBooleanFieldValue = {
|
|
|
63776
63869
|
};
|
|
63777
63870
|
export declare type RadarConnection = {
|
|
63778
63871
|
pageInfo: PageInfo;
|
|
63779
|
-
totalCount
|
|
63872
|
+
totalCount: Scalars['Int']['output'];
|
|
63780
63873
|
};
|
|
63781
63874
|
export declare type RadarDateFieldValue = {
|
|
63782
63875
|
__typename?: 'RadarDateFieldValue';
|
|
@@ -63784,18 +63877,13 @@ export declare type RadarDateFieldValue = {
|
|
|
63784
63877
|
};
|
|
63785
63878
|
export declare type RadarDynamicFilterOptions = RadarFilterOptions & {
|
|
63786
63879
|
__typename?: 'RadarDynamicFilterOptions';
|
|
63787
|
-
operators
|
|
63788
|
-
plurality
|
|
63789
|
-
type
|
|
63880
|
+
operators: Array<RadarFilterOperators>;
|
|
63881
|
+
plurality: RadarFilterPlurality;
|
|
63882
|
+
type: RadarFilterInputType;
|
|
63790
63883
|
};
|
|
63791
63884
|
export declare type RadarEdge = {
|
|
63792
63885
|
cursor: Scalars['String']['output'];
|
|
63793
63886
|
};
|
|
63794
|
-
export declare type RadarEnlistment = {
|
|
63795
|
-
__typename?: 'RadarEnlistment';
|
|
63796
|
-
cloudId: Scalars['ID']['output'];
|
|
63797
|
-
positionFields?: Maybe<Array<Maybe<RadarFieldDefinition>>>;
|
|
63798
|
-
};
|
|
63799
63887
|
export declare type RadarEntity = {
|
|
63800
63888
|
fieldValues?: Maybe<Array<Maybe<RadarFieldValueIdPair>>>;
|
|
63801
63889
|
id: Scalars['ID']['output'];
|
|
@@ -63806,20 +63894,27 @@ export declare enum RadarEntityType {
|
|
|
63806
63894
|
}
|
|
63807
63895
|
export declare type RadarError = {
|
|
63808
63896
|
__typename?: 'RadarError';
|
|
63809
|
-
errorCode
|
|
63897
|
+
errorCode: Scalars['String']['output'];
|
|
63810
63898
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
63899
|
+
extensions?: Maybe<Array<RadarErrorExtension>>;
|
|
63900
|
+
location?: Maybe<Array<RadarLocation>>;
|
|
63811
63901
|
message?: Maybe<Scalars['String']['output']>;
|
|
63812
|
-
stackTrace?: Maybe<Array<
|
|
63902
|
+
stackTrace?: Maybe<Array<Scalars['String']['output']>>;
|
|
63813
63903
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
63814
63904
|
};
|
|
63905
|
+
export declare type RadarErrorExtension = {
|
|
63906
|
+
__typename?: 'RadarErrorExtension';
|
|
63907
|
+
property: Scalars['String']['output'];
|
|
63908
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
63909
|
+
};
|
|
63815
63910
|
export declare type RadarFieldDefinition = Node & {
|
|
63816
63911
|
__typename?: 'RadarFieldDefinition';
|
|
63817
|
-
displayName
|
|
63818
|
-
entity
|
|
63819
|
-
filterOptions
|
|
63912
|
+
displayName: Scalars['String']['output'];
|
|
63913
|
+
entity: RadarEntityType;
|
|
63914
|
+
filterOptions: RadarFilterOptions;
|
|
63820
63915
|
id: Scalars['ID']['output'];
|
|
63821
|
-
isCustom
|
|
63822
|
-
type
|
|
63916
|
+
isCustom: Scalars['Boolean']['output'];
|
|
63917
|
+
type: RadarFieldType;
|
|
63823
63918
|
};
|
|
63824
63919
|
export declare enum RadarFieldType {
|
|
63825
63920
|
Boolean = "BOOLEAN",
|
|
@@ -63833,19 +63928,19 @@ export declare type RadarFieldValue = RadarBooleanFieldValue | RadarDateFieldVal
|
|
|
63833
63928
|
export declare type RadarFieldValueIdPair = {
|
|
63834
63929
|
__typename?: 'RadarFieldValueIdPair';
|
|
63835
63930
|
fieldId: Scalars['ID']['output'];
|
|
63836
|
-
fieldValue
|
|
63931
|
+
fieldValue: RadarFieldValue;
|
|
63837
63932
|
};
|
|
63838
63933
|
export declare type RadarFieldValuesConnection = RadarConnection & {
|
|
63839
63934
|
__typename?: 'RadarFieldValuesConnection';
|
|
63840
|
-
edges?: Maybe<Array<
|
|
63841
|
-
nodes?: Maybe<Array<
|
|
63935
|
+
edges?: Maybe<Array<RadarFieldValuesEdge>>;
|
|
63936
|
+
nodes?: Maybe<Array<RadarFieldValue>>;
|
|
63842
63937
|
pageInfo: PageInfo;
|
|
63843
|
-
totalCount
|
|
63938
|
+
totalCount: Scalars['Int']['output'];
|
|
63844
63939
|
};
|
|
63845
63940
|
export declare type RadarFieldValuesEdge = RadarEdge & {
|
|
63846
63941
|
__typename?: 'RadarFieldValuesEdge';
|
|
63847
63942
|
cursor: Scalars['String']['output'];
|
|
63848
|
-
node
|
|
63943
|
+
node: RadarFieldValue;
|
|
63849
63944
|
};
|
|
63850
63945
|
export declare enum RadarFilterInputType {
|
|
63851
63946
|
Checkbox = "CHECKBOX",
|
|
@@ -63863,9 +63958,9 @@ export declare enum RadarFilterOperators {
|
|
|
63863
63958
|
NotLike = "NOT_LIKE"
|
|
63864
63959
|
}
|
|
63865
63960
|
export declare type RadarFilterOptions = {
|
|
63866
|
-
operators
|
|
63867
|
-
plurality
|
|
63868
|
-
type
|
|
63961
|
+
operators: Array<RadarFilterOperators>;
|
|
63962
|
+
plurality: RadarFilterPlurality;
|
|
63963
|
+
type: RadarFilterInputType;
|
|
63869
63964
|
};
|
|
63870
63965
|
export declare enum RadarFilterPlurality {
|
|
63871
63966
|
And = "AND",
|
|
@@ -63876,15 +63971,16 @@ export declare type RadarFocusAreaMappingsInput = {
|
|
|
63876
63971
|
focusAreaAri: Scalars['ID']['input'];
|
|
63877
63972
|
positionId: Scalars['ID']['input'];
|
|
63878
63973
|
};
|
|
63879
|
-
export declare type
|
|
63880
|
-
|
|
63881
|
-
|
|
63974
|
+
export declare type RadarLocation = {
|
|
63975
|
+
__typename?: 'RadarLocation';
|
|
63976
|
+
column: Scalars['Int']['output'];
|
|
63977
|
+
line: Scalars['Int']['output'];
|
|
63882
63978
|
};
|
|
63883
|
-
export declare type RadarMutationResponse =
|
|
63979
|
+
export declare type RadarMutationResponse = {
|
|
63884
63980
|
__typename?: 'RadarMutationResponse';
|
|
63885
|
-
errors?: Maybe<Array<RadarError>>;
|
|
63886
63981
|
success: Scalars['Boolean']['output'];
|
|
63887
63982
|
};
|
|
63983
|
+
export declare type RadarMutationResponseResult = RadarError | RadarMutationResponse;
|
|
63888
63984
|
export declare type RadarNumericFieldValue = {
|
|
63889
63985
|
__typename?: 'RadarNumericFieldValue';
|
|
63890
63986
|
displayValue?: Maybe<Scalars['Int']['output']>;
|
|
@@ -63898,21 +63994,22 @@ export declare type RadarPosition = Node & RadarEntity & {
|
|
|
63898
63994
|
};
|
|
63899
63995
|
export declare type RadarPositionConnection = RadarConnection & {
|
|
63900
63996
|
__typename?: 'RadarPositionConnection';
|
|
63901
|
-
edges?: Maybe<Array<
|
|
63902
|
-
nodes?: Maybe<Array<
|
|
63997
|
+
edges?: Maybe<Array<RadarPositionEdge>>;
|
|
63998
|
+
nodes?: Maybe<Array<RadarPosition>>;
|
|
63903
63999
|
pageInfo: PageInfo;
|
|
63904
|
-
totalCount
|
|
64000
|
+
totalCount: Scalars['Int']['output'];
|
|
63905
64001
|
};
|
|
64002
|
+
export declare type RadarPositionConnectionResult = RadarError | RadarPositionConnection;
|
|
63906
64003
|
export declare type RadarPositionEdge = RadarEdge & {
|
|
63907
64004
|
__typename?: 'RadarPositionEdge';
|
|
63908
64005
|
cursor: Scalars['String']['output'];
|
|
63909
|
-
node
|
|
64006
|
+
node: RadarPosition;
|
|
63910
64007
|
};
|
|
63911
64008
|
export declare type RadarStaticStringFilterOptions = RadarFilterOptions & {
|
|
63912
64009
|
__typename?: 'RadarStaticStringFilterOptions';
|
|
63913
|
-
operators
|
|
63914
|
-
plurality
|
|
63915
|
-
type
|
|
64010
|
+
operators: Array<RadarFilterOperators>;
|
|
64011
|
+
plurality: RadarFilterPlurality;
|
|
64012
|
+
type: RadarFilterInputType;
|
|
63916
64013
|
values?: Maybe<Array<Maybe<RadarFieldValue>>>;
|
|
63917
64014
|
};
|
|
63918
64015
|
export declare type RadarStatusFieldValue = {
|
|
@@ -63932,6 +64029,11 @@ export declare type RadarUrlFieldValue = {
|
|
|
63932
64029
|
icon?: Maybe<Scalars['String']['output']>;
|
|
63933
64030
|
value?: Maybe<Scalars['String']['output']>;
|
|
63934
64031
|
};
|
|
64032
|
+
export declare type RadarWorkspace = {
|
|
64033
|
+
__typename?: 'RadarWorkspace';
|
|
64034
|
+
cloudId: Scalars['ID']['output'];
|
|
64035
|
+
positionFields: Array<RadarFieldDefinition>;
|
|
64036
|
+
};
|
|
63935
64037
|
export declare type RankColumnInput = {
|
|
63936
64038
|
boardId: Scalars['ID']['input'];
|
|
63937
64039
|
columnId: Scalars['ID']['input'];
|
|
@@ -66125,6 +66227,11 @@ export declare type ShepherdActorActivity = {
|
|
|
66125
66227
|
message?: Maybe<Scalars['JSON']['output']>;
|
|
66126
66228
|
time: Scalars['DateTime']['output'];
|
|
66127
66229
|
};
|
|
66230
|
+
export declare type ShepherdActorInput = {
|
|
66231
|
+
aaid?: InputMaybe<Scalars['ID']['input']>;
|
|
66232
|
+
anonymous?: InputMaybe<ShepherdAnonymousActorInput>;
|
|
66233
|
+
unknown?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66234
|
+
};
|
|
66128
66235
|
export declare type ShepherdActorMutationPayload = Payload & {
|
|
66129
66236
|
__typename?: 'ShepherdActorMutationPayload';
|
|
66130
66237
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -66411,6 +66518,9 @@ export declare type ShepherdAnonymousActor = {
|
|
|
66411
66518
|
__typename?: 'ShepherdAnonymousActor';
|
|
66412
66519
|
ipAddress?: Maybe<Scalars['String']['output']>;
|
|
66413
66520
|
};
|
|
66521
|
+
export declare type ShepherdAnonymousActorInput = {
|
|
66522
|
+
ipAddress?: InputMaybe<Scalars['String']['input']>;
|
|
66523
|
+
};
|
|
66414
66524
|
export declare type ShepherdAppInfo = {
|
|
66415
66525
|
__typename?: 'ShepherdAppInfo';
|
|
66416
66526
|
apiVersion: Scalars['Int']['output'];
|
|
@@ -66525,14 +66635,16 @@ export declare type ShepherdClassificationsQueriesByResourceArgs = {
|
|
|
66525
66635
|
};
|
|
66526
66636
|
export declare type ShepherdClassificationsResult = QueryError | ShepherdClassificationsConnection;
|
|
66527
66637
|
export declare type ShepherdCreateAlertInput = {
|
|
66638
|
+
actor?: InputMaybe<ShepherdActorInput>;
|
|
66528
66639
|
assignee?: InputMaybe<Scalars['ID']['input']>;
|
|
66529
66640
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
66530
|
-
|
|
66531
|
-
|
|
66641
|
+
customFields?: InputMaybe<Scalars['JSON']['input']>;
|
|
66642
|
+
deduplicationKey?: InputMaybe<Scalars['String']['input']>;
|
|
66532
66643
|
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
66533
66644
|
status?: InputMaybe<ShepherdAlertStatus>;
|
|
66534
|
-
|
|
66645
|
+
time?: InputMaybe<ShepherdTimeInput>;
|
|
66535
66646
|
title: Scalars['String']['input'];
|
|
66647
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
66536
66648
|
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
66537
66649
|
};
|
|
66538
66650
|
export declare type ShepherdCreateAlertPayload = Payload & {
|
|
@@ -66541,6 +66653,12 @@ export declare type ShepherdCreateAlertPayload = Payload & {
|
|
|
66541
66653
|
node?: Maybe<ShepherdAlert>;
|
|
66542
66654
|
success: Scalars['Boolean']['output'];
|
|
66543
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
|
+
};
|
|
66544
66662
|
export declare type ShepherdCreateExampleAlertInput = {
|
|
66545
66663
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
66546
66664
|
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -66877,6 +66995,7 @@ export declare type ShepherdMutation = {
|
|
|
66877
66995
|
__typename?: 'ShepherdMutation';
|
|
66878
66996
|
actor?: Maybe<ShepherdActorMutations>;
|
|
66879
66997
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
66998
|
+
createAlerts?: Maybe<ShepherdCreateAlertsPayload>;
|
|
66880
66999
|
createExampleAlert?: Maybe<ShepherdCreateExampleAlertPayload>;
|
|
66881
67000
|
createTestAlert?: Maybe<ShepherdCreateTestAlertPayload>;
|
|
66882
67001
|
deleteAlert?: Maybe<ShepherdDeleteAlertPayload>;
|
|
@@ -66890,6 +67009,9 @@ export declare type ShepherdMutation = {
|
|
|
66890
67009
|
export declare type ShepherdMutationCreateAlertArgs = {
|
|
66891
67010
|
input: ShepherdCreateAlertInput;
|
|
66892
67011
|
};
|
|
67012
|
+
export declare type ShepherdMutationCreateAlertsArgs = {
|
|
67013
|
+
input: Array<ShepherdCreateAlertInput>;
|
|
67014
|
+
};
|
|
66893
67015
|
export declare type ShepherdMutationCreateExampleAlertArgs = {
|
|
66894
67016
|
input: ShepherdCreateExampleAlertInput;
|
|
66895
67017
|
};
|
|
@@ -69006,7 +69128,7 @@ export declare type TownsquareGoalEdge = {
|
|
|
69006
69128
|
export declare type TownsquareGoalIcon = {
|
|
69007
69129
|
__typename?: 'TownsquareGoalIcon';
|
|
69008
69130
|
appearance?: Maybe<TownsquareGoalIconAppearance>;
|
|
69009
|
-
key?: Maybe<
|
|
69131
|
+
key?: Maybe<TownsquareGoalIconKey>;
|
|
69010
69132
|
};
|
|
69011
69133
|
export declare enum TownsquareGoalIconAppearance {
|
|
69012
69134
|
AtRisk = "AT_RISK",
|
|
@@ -69014,6 +69136,11 @@ export declare enum TownsquareGoalIconAppearance {
|
|
|
69014
69136
|
OffTrack = "OFF_TRACK",
|
|
69015
69137
|
OnTrack = "ON_TRACK"
|
|
69016
69138
|
}
|
|
69139
|
+
export declare enum TownsquareGoalIconKey {
|
|
69140
|
+
Goal = "GOAL",
|
|
69141
|
+
KeyResult = "KEY_RESULT",
|
|
69142
|
+
Objective = "OBJECTIVE"
|
|
69143
|
+
}
|
|
69017
69144
|
export declare enum TownsquareGoalSortEnum {
|
|
69018
69145
|
CreationDateAsc = "CREATION_DATE_ASC",
|
|
69019
69146
|
CreationDateDesc = "CREATION_DATE_DESC",
|
|
@@ -69087,13 +69214,8 @@ export declare type TownsquareGoalTypeEdge = {
|
|
|
69087
69214
|
};
|
|
69088
69215
|
export declare type TownsquareGoalTypeIcon = {
|
|
69089
69216
|
__typename?: 'TownsquareGoalTypeIcon';
|
|
69090
|
-
key?: Maybe<
|
|
69217
|
+
key?: Maybe<TownsquareGoalIconKey>;
|
|
69091
69218
|
};
|
|
69092
|
-
export declare enum TownsquareGoalTypeIconKey {
|
|
69093
|
-
Goal = "GOAL",
|
|
69094
|
-
KeyResult = "KEY_RESULT",
|
|
69095
|
-
Objective = "OBJECTIVE"
|
|
69096
|
-
}
|
|
69097
69219
|
export declare type TownsquareGoalTypeName = TownsquareGoalTypeCustomName | TownsquareLocalizationField;
|
|
69098
69220
|
export declare enum TownsquareGoalTypeState {
|
|
69099
69221
|
Disabled = "DISABLED",
|
|
@@ -70496,8 +70618,6 @@ export declare type TrelloPlannerCalendarEventEdge = {
|
|
|
70496
70618
|
};
|
|
70497
70619
|
export declare enum TrelloPlannerCalendarEventStatus {
|
|
70498
70620
|
Accepted = "ACCEPTED",
|
|
70499
|
-
Cancelled = "CANCELLED",
|
|
70500
|
-
Confirmed = "CONFIRMED",
|
|
70501
70621
|
Declined = "DECLINED",
|
|
70502
70622
|
NeedsAction = "NEEDS_ACTION",
|
|
70503
70623
|
Tentative = "TENTATIVE"
|
|
@@ -70514,7 +70634,6 @@ export declare type TrelloPlannerCalendarEventsFilter = {
|
|
|
70514
70634
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
70515
70635
|
__typename?: 'TrelloPlannerProviderCalendar';
|
|
70516
70636
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
70517
|
-
events?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
70518
70637
|
id: Scalars['ID']['output'];
|
|
70519
70638
|
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
70520
70639
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -70522,11 +70641,6 @@ export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalenda
|
|
|
70522
70641
|
title?: Maybe<Scalars['String']['output']>;
|
|
70523
70642
|
type?: Maybe<TrelloSupportedPlannerProviders>;
|
|
70524
70643
|
};
|
|
70525
|
-
export declare type TrelloPlannerProviderCalendarEventsArgs = {
|
|
70526
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
70527
|
-
filter: TrelloPlannerCalendarEventsFilter;
|
|
70528
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70529
|
-
};
|
|
70530
70644
|
export declare type TrelloPlannerProviderCalendarConnection = {
|
|
70531
70645
|
__typename?: 'TrelloPlannerProviderCalendarConnection';
|
|
70532
70646
|
edges?: Maybe<Array<TrelloPlannerProviderCalendarEdge>>;
|