@forge/cli-shared 3.20.2-next.0 → 3.20.2-next.2
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 +15 -0
- package/out/graphql/graphql-types.d.ts +148 -45
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +11 -5
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.20.2-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ce14925: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- @types/inquirer
|
|
10
|
+
|
|
11
|
+
## 3.20.2-next.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [add9c54]
|
|
16
|
+
- @forge/manifest@4.20.3-next.1
|
|
17
|
+
|
|
3
18
|
## 3.20.2-next.0
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -2975,7 +2975,6 @@ export type CompassCatalogMutationApi = {
|
|
|
2975
2975
|
createMetricSource?: Maybe<CompassCreateMetricSourcePayload>;
|
|
2976
2976
|
createRelationship?: Maybe<CreateCompassRelationshipPayload>;
|
|
2977
2977
|
createScorecard?: Maybe<CreateCompassScorecardPayload>;
|
|
2978
|
-
createScorecardCriterias?: Maybe<CreateCompassScorecardCriteriasPayload>;
|
|
2979
2978
|
createStarredComponent?: Maybe<CreateCompassStarredComponentPayload>;
|
|
2980
2979
|
createTeamCheckin?: Maybe<CompassCreateTeamCheckinPayload>;
|
|
2981
2980
|
createWebhook?: Maybe<CompassCreateWebhookPayload>;
|
|
@@ -2990,7 +2989,6 @@ export type CompassCatalogMutationApi = {
|
|
|
2990
2989
|
deleteMetricSource?: Maybe<CompassDeleteMetricSourcePayload>;
|
|
2991
2990
|
deleteRelationship?: Maybe<DeleteCompassRelationshipPayload>;
|
|
2992
2991
|
deleteScorecard?: Maybe<DeleteCompassScorecardPayload>;
|
|
2993
|
-
deleteScorecardCriterias?: Maybe<DeleteCompassScorecardCriteriasPayload>;
|
|
2994
2992
|
deleteStarredComponent?: Maybe<DeleteCompassStarredComponentPayload>;
|
|
2995
2993
|
deleteTeamCheckin?: Maybe<CompassDeleteTeamCheckinPayload>;
|
|
2996
2994
|
detachComponentDataManager?: Maybe<DetachCompassComponentDataManagerPayload>;
|
|
@@ -3010,7 +3008,6 @@ export type CompassCatalogMutationApi = {
|
|
|
3010
3008
|
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
3011
3009
|
updateMetricDefinition?: Maybe<CompassUpdateMetricDefinitionPayload>;
|
|
3012
3010
|
updateScorecard?: Maybe<UpdateCompassScorecardPayload>;
|
|
3013
|
-
updateScorecardCriterias?: Maybe<UpdateCompassScorecardCriteriasPayload>;
|
|
3014
3011
|
updateTeamCheckin?: Maybe<CompassUpdateTeamCheckinPayload>;
|
|
3015
3012
|
updateUserDefinedParameters?: Maybe<UpdateCompassUserDefinedParametersPayload>;
|
|
3016
3013
|
};
|
|
@@ -3081,10 +3078,6 @@ export type CompassCatalogMutationApiCreateScorecardArgs = {
|
|
|
3081
3078
|
cloudId: Scalars['ID']['input'];
|
|
3082
3079
|
input: CreateCompassScorecardInput;
|
|
3083
3080
|
};
|
|
3084
|
-
export type CompassCatalogMutationApiCreateScorecardCriteriasArgs = {
|
|
3085
|
-
input: CreateCompassScorecardCriteriasInput;
|
|
3086
|
-
scorecardId: Scalars['ID']['input'];
|
|
3087
|
-
};
|
|
3088
3081
|
export type CompassCatalogMutationApiCreateStarredComponentArgs = {
|
|
3089
3082
|
input: CreateCompassStarredComponentInput;
|
|
3090
3083
|
};
|
|
@@ -3127,10 +3120,6 @@ export type CompassCatalogMutationApiDeleteRelationshipArgs = {
|
|
|
3127
3120
|
export type CompassCatalogMutationApiDeleteScorecardArgs = {
|
|
3128
3121
|
scorecardId: Scalars['ID']['input'];
|
|
3129
3122
|
};
|
|
3130
|
-
export type CompassCatalogMutationApiDeleteScorecardCriteriasArgs = {
|
|
3131
|
-
input: DeleteCompassScorecardCriteriasInput;
|
|
3132
|
-
scorecardId: Scalars['ID']['input'];
|
|
3133
|
-
};
|
|
3134
3123
|
export type CompassCatalogMutationApiDeleteStarredComponentArgs = {
|
|
3135
3124
|
input: DeleteCompassStarredComponentInput;
|
|
3136
3125
|
};
|
|
@@ -3190,10 +3179,6 @@ export type CompassCatalogMutationApiUpdateScorecardArgs = {
|
|
|
3190
3179
|
input: UpdateCompassScorecardInput;
|
|
3191
3180
|
scorecardId: Scalars['ID']['input'];
|
|
3192
3181
|
};
|
|
3193
|
-
export type CompassCatalogMutationApiUpdateScorecardCriteriasArgs = {
|
|
3194
|
-
input: UpdateCompassScorecardCriteriasInput;
|
|
3195
|
-
scorecardId: Scalars['ID']['input'];
|
|
3196
|
-
};
|
|
3197
3182
|
export type CompassCatalogMutationApiUpdateTeamCheckinArgs = {
|
|
3198
3183
|
input: CompassUpdateTeamCheckinInput;
|
|
3199
3184
|
};
|
|
@@ -6602,15 +6587,6 @@ export type CreateCompassScorecardCriteriaInput = {
|
|
|
6602
6587
|
hasMetricValue?: InputMaybe<CreateCompassHasMetricValueCriteriaInput>;
|
|
6603
6588
|
hasOwner?: InputMaybe<CreateCompassHasOwnerScorecardCriteriaInput>;
|
|
6604
6589
|
};
|
|
6605
|
-
export type CreateCompassScorecardCriteriasInput = {
|
|
6606
|
-
criterias: Array<CreateCompassScorecardCriteriaInput>;
|
|
6607
|
-
};
|
|
6608
|
-
export type CreateCompassScorecardCriteriasPayload = Payload & {
|
|
6609
|
-
__typename?: 'CreateCompassScorecardCriteriasPayload';
|
|
6610
|
-
errors?: Maybe<Array<MutationError>>;
|
|
6611
|
-
scorecard?: Maybe<CompassScorecard>;
|
|
6612
|
-
success: Scalars['Boolean']['output'];
|
|
6613
|
-
};
|
|
6614
6590
|
export type CreateCompassScorecardInput = {
|
|
6615
6591
|
componentLabelNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6616
6592
|
componentTierValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -6690,6 +6666,7 @@ export type CreateDevOpsServiceInput = {
|
|
|
6690
6666
|
name: Scalars['String']['input'];
|
|
6691
6667
|
properties?: InputMaybe<Array<DevOpsServiceEntityPropertyInput>>;
|
|
6692
6668
|
serviceTier: DevOpsServiceTierInput;
|
|
6669
|
+
serviceType?: InputMaybe<DevOpsServiceTypeInput>;
|
|
6693
6670
|
};
|
|
6694
6671
|
export type CreateDevOpsServicePayload = Payload & {
|
|
6695
6672
|
__typename?: 'CreateDevOpsServicePayload';
|
|
@@ -7130,6 +7107,7 @@ export type CustomerServiceAttributeValue = Node & {
|
|
|
7130
7107
|
export type CustomerServiceAttributes = {
|
|
7131
7108
|
__typename?: 'CustomerServiceAttributes';
|
|
7132
7109
|
attributes?: Maybe<Array<CustomerServiceAttribute>>;
|
|
7110
|
+
maxAllowedAttributes?: Maybe<Scalars['Int']['output']>;
|
|
7133
7111
|
};
|
|
7134
7112
|
export type CustomerServiceAttributesQueryResult = CustomerServiceAttributes | QueryError;
|
|
7135
7113
|
export type CustomerServiceContext = {
|
|
@@ -7148,7 +7126,7 @@ export type CustomerServiceIndividual = Node & {
|
|
|
7148
7126
|
id: Scalars['ID']['output'];
|
|
7149
7127
|
links: Array<CustomerServiceLink>;
|
|
7150
7128
|
name: Scalars['String']['output'];
|
|
7151
|
-
notes:
|
|
7129
|
+
notes: CustomerServiceNotes;
|
|
7152
7130
|
organizations: Array<CustomerServiceOrganization>;
|
|
7153
7131
|
};
|
|
7154
7132
|
export type CustomerServiceIndividualLinksArgs = {
|
|
@@ -7362,13 +7340,19 @@ export type CustomerServiceNoteUpdatePayload = Payload & {
|
|
|
7362
7340
|
success: Scalars['Boolean']['output'];
|
|
7363
7341
|
successfullyUpdatedNote?: Maybe<CustomerServiceNote>;
|
|
7364
7342
|
};
|
|
7343
|
+
export type CustomerServiceNotes = {
|
|
7344
|
+
__typename?: 'CustomerServiceNotes';
|
|
7345
|
+
results: Array<CustomerServiceNote>;
|
|
7346
|
+
total: Scalars['Int']['output'];
|
|
7347
|
+
};
|
|
7348
|
+
export type CustomerServiceNotesQueryResult = CustomerServiceNotes | QueryError;
|
|
7365
7349
|
export type CustomerServiceOrganization = Node & {
|
|
7366
7350
|
__typename?: 'CustomerServiceOrganization';
|
|
7367
7351
|
attributes: Array<CustomerServiceAttributeValue>;
|
|
7368
7352
|
id: Scalars['ID']['output'];
|
|
7369
7353
|
links: Array<CustomerServiceLink>;
|
|
7370
7354
|
name: Scalars['String']['output'];
|
|
7371
|
-
notes:
|
|
7355
|
+
notes: CustomerServiceNotes;
|
|
7372
7356
|
};
|
|
7373
7357
|
export type CustomerServiceOrganizationLinksArgs = {
|
|
7374
7358
|
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -7638,15 +7622,6 @@ export type DeleteCompassRelationshipPayload = Payload & {
|
|
|
7638
7622
|
export type DeleteCompassScorecardCriteriaInput = {
|
|
7639
7623
|
id: Scalars['ID']['input'];
|
|
7640
7624
|
};
|
|
7641
|
-
export type DeleteCompassScorecardCriteriasInput = {
|
|
7642
|
-
criterias: Array<DeleteCompassScorecardCriteriaInput>;
|
|
7643
|
-
};
|
|
7644
|
-
export type DeleteCompassScorecardCriteriasPayload = Payload & {
|
|
7645
|
-
__typename?: 'DeleteCompassScorecardCriteriasPayload';
|
|
7646
|
-
errors?: Maybe<Array<MutationError>>;
|
|
7647
|
-
scorecard?: Maybe<CompassScorecard>;
|
|
7648
|
-
success: Scalars['Boolean']['output'];
|
|
7649
|
-
};
|
|
7650
7625
|
export type DeleteCompassScorecardPayload = Payload & {
|
|
7651
7626
|
__typename?: 'DeleteCompassScorecardPayload';
|
|
7652
7627
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -7873,6 +7848,7 @@ export type DetachEventSourcePayload = Payload & {
|
|
|
7873
7848
|
export type DevOps = {
|
|
7874
7849
|
__typename?: 'DevOps';
|
|
7875
7850
|
ariGraph?: Maybe<AriGraph>;
|
|
7851
|
+
buildEntityDetails?: Maybe<Array<Maybe<DevOpsBuildDetails>>>;
|
|
7876
7852
|
entitiesByAssociations?: Maybe<DevOpsEntities>;
|
|
7877
7853
|
graph?: Maybe<Graph>;
|
|
7878
7854
|
providers?: Maybe<DevOpsProviders>;
|
|
@@ -7882,6 +7858,9 @@ export type DevOps = {
|
|
|
7882
7858
|
summarisedEntities?: Maybe<Array<Maybe<DevOpsSummarisedEntities>>>;
|
|
7883
7859
|
toolchain?: Maybe<Toolchain>;
|
|
7884
7860
|
};
|
|
7861
|
+
export type DevOpsBuildEntityDetailsArgs = {
|
|
7862
|
+
ids: Array<Scalars['ID']['input']>;
|
|
7863
|
+
};
|
|
7885
7864
|
export type DevOpsEntitiesByAssociationsArgs = {
|
|
7886
7865
|
ids: Array<Scalars['ID']['input']>;
|
|
7887
7866
|
};
|
|
@@ -7915,6 +7894,19 @@ export type DevOpsBranchInfo = {
|
|
|
7915
7894
|
name?: Maybe<Scalars['String']['output']>;
|
|
7916
7895
|
url?: Maybe<Scalars['String']['output']>;
|
|
7917
7896
|
};
|
|
7897
|
+
export type DevOpsBuildDetails = {
|
|
7898
|
+
__typename?: 'DevOpsBuildDetails';
|
|
7899
|
+
associatedAris?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
7900
|
+
buildNumber?: Maybe<Scalars['Int']['output']>;
|
|
7901
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
7902
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
7903
|
+
id: Scalars['ID']['output'];
|
|
7904
|
+
pipelineId?: Maybe<Scalars['String']['output']>;
|
|
7905
|
+
providerId?: Maybe<Scalars['String']['output']>;
|
|
7906
|
+
state?: Maybe<DevOpsBuildState>;
|
|
7907
|
+
testInfo?: Maybe<DevOpsBuildTestInfo>;
|
|
7908
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
7909
|
+
};
|
|
7918
7910
|
export type DevOpsBuildProvider = DevOpsDataProvider & {
|
|
7919
7911
|
__typename?: 'DevOpsBuildProvider';
|
|
7920
7912
|
appInstallationId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -7934,6 +7926,13 @@ export declare enum DevOpsBuildState {
|
|
|
7934
7926
|
Successful = "SUCCESSFUL",
|
|
7935
7927
|
Unknown = "UNKNOWN"
|
|
7936
7928
|
}
|
|
7929
|
+
export type DevOpsBuildTestInfo = {
|
|
7930
|
+
__typename?: 'DevOpsBuildTestInfo';
|
|
7931
|
+
numberFailed?: Maybe<Scalars['Int']['output']>;
|
|
7932
|
+
numberPassed?: Maybe<Scalars['Int']['output']>;
|
|
7933
|
+
numberSkipped?: Maybe<Scalars['Int']['output']>;
|
|
7934
|
+
totalNumber?: Maybe<Scalars['Int']['output']>;
|
|
7935
|
+
};
|
|
7937
7936
|
export type DevOpsContainerRelationshipEntityPropertyInput = {
|
|
7938
7937
|
key: Scalars['String']['input'];
|
|
7939
7938
|
value: Scalars['JSON']['input'];
|
|
@@ -8557,6 +8556,8 @@ export type DevOpsService = Node & {
|
|
|
8557
8556
|
__typename?: 'DevOpsService';
|
|
8558
8557
|
bitbucketRepositoriesAvailableToLinkWith?: Maybe<BitbucketRepositoryIdConnection>;
|
|
8559
8558
|
cloudId: Scalars['String']['output'];
|
|
8559
|
+
compassId?: Maybe<Scalars['ID']['output']>;
|
|
8560
|
+
compassRevision?: Maybe<Scalars['Int']['output']>;
|
|
8560
8561
|
containedByDevOpsServiceRelationship?: Maybe<DevOpsServiceRelationship>;
|
|
8561
8562
|
containsDevOpsServiceRelationships?: Maybe<DevOpsServiceRelationshipConnection>;
|
|
8562
8563
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -8577,6 +8578,7 @@ export type DevOpsService = Node & {
|
|
|
8577
8578
|
repositoryRelationships?: Maybe<DevOpsServiceAndRepositoryRelationshipConnection>;
|
|
8578
8579
|
revision: Scalars['ID']['output'];
|
|
8579
8580
|
serviceTier?: Maybe<DevOpsServiceTier>;
|
|
8581
|
+
serviceType?: Maybe<DevOpsServiceType>;
|
|
8580
8582
|
servicesAvailableToLinkWith?: Maybe<DevOpsServiceConnection>;
|
|
8581
8583
|
};
|
|
8582
8584
|
export type DevOpsServiceBitbucketRepositoriesAvailableToLinkWithArgs = {
|
|
@@ -8785,6 +8787,15 @@ export type DevOpsServiceTier = {
|
|
|
8785
8787
|
export type DevOpsServiceTierInput = {
|
|
8786
8788
|
level: Scalars['Int']['input'];
|
|
8787
8789
|
};
|
|
8790
|
+
export type DevOpsServiceType = {
|
|
8791
|
+
__typename?: 'DevOpsServiceType';
|
|
8792
|
+
id: Scalars['ID']['output'];
|
|
8793
|
+
key: Scalars['String']['output'];
|
|
8794
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
8795
|
+
};
|
|
8796
|
+
export type DevOpsServiceTypeInput = {
|
|
8797
|
+
key: Scalars['String']['input'];
|
|
8798
|
+
};
|
|
8788
8799
|
export type DevOpsServicesFilterInput = {
|
|
8789
8800
|
nameContains?: InputMaybe<Scalars['String']['input']>;
|
|
8790
8801
|
tierLevelIn?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
@@ -10818,6 +10829,7 @@ export type GraphIssueAssociatedPrRelationshipEdge = {
|
|
|
10818
10829
|
};
|
|
10819
10830
|
export type GraphJiraBuild = Node & {
|
|
10820
10831
|
__typename?: 'GraphJiraBuild';
|
|
10832
|
+
build?: Maybe<DevOpsBuildDetails>;
|
|
10821
10833
|
id: Scalars['ID']['output'];
|
|
10822
10834
|
};
|
|
10823
10835
|
export type GraphJiraBuildConnection = {
|
|
@@ -14514,6 +14526,11 @@ export type JiraColorFieldPayload = Payload & {
|
|
|
14514
14526
|
export type JiraColorInput = {
|
|
14515
14527
|
name: Scalars['String']['input'];
|
|
14516
14528
|
};
|
|
14529
|
+
export declare enum JiraColorSchemeThemeSetting {
|
|
14530
|
+
Automatic = "AUTOMATIC",
|
|
14531
|
+
Dark = "DARK",
|
|
14532
|
+
Light = "LIGHT"
|
|
14533
|
+
}
|
|
14517
14534
|
export type JiraComment = {
|
|
14518
14535
|
author?: Maybe<User>;
|
|
14519
14536
|
commentId: Scalars['ID']['output'];
|
|
@@ -14986,6 +15003,7 @@ export type JiraDevOpsQuery = {
|
|
|
14986
15003
|
__typename?: 'JiraDevOpsQuery';
|
|
14987
15004
|
bitbucketIntegration?: Maybe<JiraBitbucketIntegration>;
|
|
14988
15005
|
devOpsIssuePanel?: Maybe<JiraDevOpsIssuePanel>;
|
|
15006
|
+
toolchain?: Maybe<JiraToolchain>;
|
|
14989
15007
|
};
|
|
14990
15008
|
export type JiraDevOpsQueryBitbucketIntegrationArgs = {
|
|
14991
15009
|
cloudId: Scalars['ID']['input'];
|
|
@@ -14993,6 +15011,9 @@ export type JiraDevOpsQueryBitbucketIntegrationArgs = {
|
|
|
14993
15011
|
export type JiraDevOpsQueryDevOpsIssuePanelArgs = {
|
|
14994
15012
|
issueId: Scalars['ID']['input'];
|
|
14995
15013
|
};
|
|
15014
|
+
export type JiraDevOpsQueryToolchainArgs = {
|
|
15015
|
+
cloudId: Scalars['ID']['input'];
|
|
15016
|
+
};
|
|
14996
15017
|
export type JiraDevSummaryField = JiraIssueField & Node & {
|
|
14997
15018
|
__typename?: 'JiraDevSummaryField';
|
|
14998
15019
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -16443,6 +16464,7 @@ export type JiraIssueSearchViewPayload = Payload & {
|
|
|
16443
16464
|
view?: Maybe<JiraIssueSearchView>;
|
|
16444
16465
|
};
|
|
16445
16466
|
export type JiraIssueTransitionFieldLevelInput = {
|
|
16467
|
+
JiraPriorityField?: InputMaybe<Array<JiraUpdatePriorityFieldInput>>;
|
|
16446
16468
|
JiraResolutionField?: InputMaybe<Array<JiraUpdateResolutionFieldInput>>;
|
|
16447
16469
|
JiraSingleLineTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
16448
16470
|
JiraSingleSelectField?: InputMaybe<Array<JiraUpdateSingleSelectFieldInput>>;
|
|
@@ -19797,6 +19819,7 @@ export type JiraRole = Node & {
|
|
|
19797
19819
|
__typename?: 'JiraRole';
|
|
19798
19820
|
description?: Maybe<Scalars['String']['output']>;
|
|
19799
19821
|
id: Scalars['ID']['output'];
|
|
19822
|
+
isManaged?: Maybe<Scalars['Boolean']['output']>;
|
|
19800
19823
|
name?: Maybe<Scalars['String']['output']>;
|
|
19801
19824
|
roleId: Scalars['String']['output'];
|
|
19802
19825
|
};
|
|
@@ -21325,6 +21348,13 @@ export declare enum JiraTimeUnit {
|
|
|
21325
21348
|
Minute = "MINUTE",
|
|
21326
21349
|
Week = "WEEK"
|
|
21327
21350
|
}
|
|
21351
|
+
export type JiraToolchain = {
|
|
21352
|
+
__typename?: 'JiraToolchain';
|
|
21353
|
+
hasViewDevToolsPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
21354
|
+
};
|
|
21355
|
+
export type JiraToolchainHasViewDevToolsPermissionArgs = {
|
|
21356
|
+
projectKey: Scalars['String']['input'];
|
|
21357
|
+
};
|
|
21328
21358
|
export type JiraTransition = {
|
|
21329
21359
|
__typename?: 'JiraTransition';
|
|
21330
21360
|
hasPreConditions?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -21686,6 +21716,7 @@ export type JiraUserIssueFieldConfiguration = {
|
|
|
21686
21716
|
};
|
|
21687
21717
|
export type JiraUserPreferences = {
|
|
21688
21718
|
__typename?: 'JiraUserPreferences';
|
|
21719
|
+
colorSchemeThemeSetting?: Maybe<JiraColorSchemeThemeSetting>;
|
|
21689
21720
|
isIssueViewAttachmentReferenceFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
21690
21721
|
isIssueViewChildIssuesLimitBestPracticeFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
21691
21722
|
isIssueViewHideDoneChildIssuesFilterEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -25716,6 +25747,7 @@ export type Query = {
|
|
|
25716
25747
|
devOpsServiceRelationshipsForOpsgenieTeam?: Maybe<DevOpsServiceAndOpsgenieTeamRelationshipConnection>;
|
|
25717
25748
|
devOpsServiceRelationshipsForRepository?: Maybe<DevOpsServiceAndRepositoryRelationshipConnection>;
|
|
25718
25749
|
devOpsServiceTiers?: Maybe<Array<DevOpsServiceTier>>;
|
|
25750
|
+
devOpsServiceTypes?: Maybe<Array<DevOpsServiceType>>;
|
|
25719
25751
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
25720
25752
|
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
25721
25753
|
devOpsToolRelationshipsForJiraProject?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
@@ -25967,6 +25999,9 @@ export type QueryDevOpsServiceRelationshipsForRepositoryArgs = {
|
|
|
25967
25999
|
export type QueryDevOpsServiceTiersArgs = {
|
|
25968
26000
|
cloudId: Scalars['String']['input'];
|
|
25969
26001
|
};
|
|
26002
|
+
export type QueryDevOpsServiceTypesArgs = {
|
|
26003
|
+
cloudId: Scalars['String']['input'];
|
|
26004
|
+
};
|
|
25970
26005
|
export type QueryDevOpsServicesArgs = {
|
|
25971
26006
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25972
26007
|
cloudId: Scalars['String']['input'];
|
|
@@ -26607,6 +26642,15 @@ export type RoadmapFilterConfiguration = {
|
|
|
26607
26642
|
customFilters?: Maybe<Array<RoadmapCustomFilter>>;
|
|
26608
26643
|
quickFilters?: Maybe<Array<RoadmapQuickFilter>>;
|
|
26609
26644
|
};
|
|
26645
|
+
export type RoadmapGoalDetails = {
|
|
26646
|
+
__typename?: 'RoadmapGoalDetails';
|
|
26647
|
+
issueIds?: Maybe<Array<Scalars['Long']['output']>>;
|
|
26648
|
+
key: Scalars['String']['output'];
|
|
26649
|
+
};
|
|
26650
|
+
export type RoadmapGoals = {
|
|
26651
|
+
__typename?: 'RoadmapGoals';
|
|
26652
|
+
goals?: Maybe<Array<RoadmapGoalDetails>>;
|
|
26653
|
+
};
|
|
26610
26654
|
export type RoadmapHealthCheck = {
|
|
26611
26655
|
__typename?: 'RoadmapHealthCheck';
|
|
26612
26656
|
explanation: Scalars['String']['output'];
|
|
@@ -27029,6 +27073,7 @@ export type RoadmapsQuery = {
|
|
|
27029
27073
|
roadmapFilterConfiguration?: Maybe<RoadmapFilterConfiguration>;
|
|
27030
27074
|
roadmapFilterItems: Array<Scalars['ID']['output']>;
|
|
27031
27075
|
roadmapForSource?: Maybe<RoadmapDetails>;
|
|
27076
|
+
roadmapGoals?: Maybe<RoadmapGoals>;
|
|
27032
27077
|
roadmapItemByIds?: Maybe<Array<Maybe<RoadmapItem>>>;
|
|
27033
27078
|
roadmapSubtasksByIds?: Maybe<RoadmapSubtasksWithStatusCategories>;
|
|
27034
27079
|
};
|
|
@@ -27049,6 +27094,9 @@ export type RoadmapsQueryRoadmapForSourceArgs = {
|
|
|
27049
27094
|
locationARI?: InputMaybe<Scalars['ID']['input']>;
|
|
27050
27095
|
sourceARI: Scalars['ID']['input'];
|
|
27051
27096
|
};
|
|
27097
|
+
export type RoadmapsQueryRoadmapGoalsArgs = {
|
|
27098
|
+
sourceARI: Scalars['ID']['input'];
|
|
27099
|
+
};
|
|
27052
27100
|
export type RoadmapsQueryRoadmapItemByIdsArgs = {
|
|
27053
27101
|
ids: Array<Scalars['ID']['input']>;
|
|
27054
27102
|
sourceARI: Scalars['ID']['input'];
|
|
@@ -30170,6 +30218,7 @@ export type TrelloBoard = Node & {
|
|
|
30170
30218
|
closed: Scalars['Boolean']['output'];
|
|
30171
30219
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
30172
30220
|
creator?: Maybe<TrelloMember>;
|
|
30221
|
+
customFields?: Maybe<TrelloCustomFieldConnection>;
|
|
30173
30222
|
description?: Maybe<TrelloDescription>;
|
|
30174
30223
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
30175
30224
|
enterpriseOwned: Scalars['Boolean']['output'];
|
|
@@ -30183,6 +30232,7 @@ export type TrelloBoard = Node & {
|
|
|
30183
30232
|
name: Scalars['String']['output'];
|
|
30184
30233
|
objectId: Scalars['ID']['output'];
|
|
30185
30234
|
pluginData?: Maybe<TrelloPluginDataConnection>;
|
|
30235
|
+
plugins?: Maybe<TrelloBoardPluginConnection>;
|
|
30186
30236
|
pluginsDisableAt?: Maybe<Scalars['DateTime']['output']>;
|
|
30187
30237
|
popularLabelNamesByColor?: Maybe<Array<TrelloPopularLabelForColor>>;
|
|
30188
30238
|
prefs: TrelloBoardPrefs;
|
|
@@ -30194,6 +30244,10 @@ export type TrelloBoard = Node & {
|
|
|
30194
30244
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
30195
30245
|
workspace?: Maybe<TrelloWorkspace>;
|
|
30196
30246
|
};
|
|
30247
|
+
export type TrelloBoardCustomFieldsArgs = {
|
|
30248
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30249
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30250
|
+
};
|
|
30197
30251
|
export type TrelloBoardLabelsArgs = {
|
|
30198
30252
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30199
30253
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -30213,6 +30267,11 @@ export type TrelloBoardPluginDataArgs = {
|
|
|
30213
30267
|
filter?: InputMaybe<TrelloPluginDataFilterInput>;
|
|
30214
30268
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30215
30269
|
};
|
|
30270
|
+
export type TrelloBoardPluginsArgs = {
|
|
30271
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30272
|
+
filter?: InputMaybe<TrelloBoardPluginFilterInput>;
|
|
30273
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30274
|
+
};
|
|
30216
30275
|
export type TrelloBoardTagsArgs = {
|
|
30217
30276
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30218
30277
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -30329,6 +30388,20 @@ export type TrelloBoardMembershipsConnection = {
|
|
|
30329
30388
|
nodes?: Maybe<Array<TrelloMember>>;
|
|
30330
30389
|
pageInfo: PageInfo;
|
|
30331
30390
|
};
|
|
30391
|
+
export type TrelloBoardPluginConnection = {
|
|
30392
|
+
__typename?: 'TrelloBoardPluginConnection';
|
|
30393
|
+
edges?: Maybe<Array<TrelloBoardPluginEdge>>;
|
|
30394
|
+
nodes?: Maybe<Array<TrelloPlugin>>;
|
|
30395
|
+
pageInfo: PageInfo;
|
|
30396
|
+
};
|
|
30397
|
+
export type TrelloBoardPluginEdge = {
|
|
30398
|
+
__typename?: 'TrelloBoardPluginEdge';
|
|
30399
|
+
cursor: Scalars['String']['output'];
|
|
30400
|
+
node: TrelloPlugin;
|
|
30401
|
+
};
|
|
30402
|
+
export type TrelloBoardPluginFilterInput = {
|
|
30403
|
+
access?: InputMaybe<Scalars['String']['input']>;
|
|
30404
|
+
};
|
|
30332
30405
|
export type TrelloBoardPrefs = {
|
|
30333
30406
|
__typename?: 'TrelloBoardPrefs';
|
|
30334
30407
|
background?: Maybe<TrelloBoardBackground>;
|
|
@@ -30356,6 +30429,13 @@ export type TrelloBoardReactionsLimits = {
|
|
|
30356
30429
|
__typename?: 'TrelloBoardReactionsLimits';
|
|
30357
30430
|
perAction?: Maybe<TrelloLimitProps>;
|
|
30358
30431
|
};
|
|
30432
|
+
export type TrelloBoardRestrictions = {
|
|
30433
|
+
__typename?: 'TrelloBoardRestrictions';
|
|
30434
|
+
enterprise?: Maybe<Scalars['String']['output']>;
|
|
30435
|
+
org?: Maybe<Scalars['String']['output']>;
|
|
30436
|
+
private?: Maybe<Scalars['String']['output']>;
|
|
30437
|
+
public?: Maybe<Scalars['String']['output']>;
|
|
30438
|
+
};
|
|
30359
30439
|
export type TrelloBoardStickersLimits = {
|
|
30360
30440
|
__typename?: 'TrelloBoardStickersLimits';
|
|
30361
30441
|
perCard?: Maybe<TrelloLimitProps>;
|
|
@@ -30522,7 +30602,7 @@ export type TrelloCardCoverUpdated = {
|
|
|
30522
30602
|
brightness?: Maybe<TrelloCardCoverBrightness>;
|
|
30523
30603
|
color?: Maybe<TrelloCardCoverColor>;
|
|
30524
30604
|
edgeColor?: Maybe<Scalars['String']['output']>;
|
|
30525
|
-
plugin?: Maybe<
|
|
30605
|
+
plugin?: Maybe<TrelloPluginUpdated>;
|
|
30526
30606
|
previews?: Maybe<TrelloImagePreviewUpdatedConnection>;
|
|
30527
30607
|
sharedSourceUrl?: Maybe<Scalars['URL']['output']>;
|
|
30528
30608
|
size?: Maybe<TrelloCardCoverSize>;
|
|
@@ -30623,7 +30703,21 @@ export type TrelloCreateCardPayload = Payload & {
|
|
|
30623
30703
|
};
|
|
30624
30704
|
export type TrelloCustomField = {
|
|
30625
30705
|
__typename?: 'TrelloCustomField';
|
|
30706
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
30626
30707
|
objectId: Scalars['ID']['output'];
|
|
30708
|
+
position?: Maybe<Scalars['Float']['output']>;
|
|
30709
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
30710
|
+
};
|
|
30711
|
+
export type TrelloCustomFieldConnection = {
|
|
30712
|
+
__typename?: 'TrelloCustomFieldConnection';
|
|
30713
|
+
edges?: Maybe<Array<TrelloCustomFieldEdge>>;
|
|
30714
|
+
nodes?: Maybe<Array<TrelloCustomField>>;
|
|
30715
|
+
pageInfo: PageInfo;
|
|
30716
|
+
};
|
|
30717
|
+
export type TrelloCustomFieldEdge = {
|
|
30718
|
+
__typename?: 'TrelloCustomFieldEdge';
|
|
30719
|
+
cursor: Scalars['String']['output'];
|
|
30720
|
+
node?: Maybe<TrelloCustomField>;
|
|
30627
30721
|
};
|
|
30628
30722
|
export type TrelloCustomFieldItem = {
|
|
30629
30723
|
__typename?: 'TrelloCustomFieldItem';
|
|
@@ -30899,7 +30993,12 @@ export type TrelloMutationApiWatchCardArgs = {
|
|
|
30899
30993
|
};
|
|
30900
30994
|
export type TrelloPlugin = {
|
|
30901
30995
|
__typename?: 'TrelloPlugin';
|
|
30996
|
+
author?: Maybe<Scalars['String']['output']>;
|
|
30997
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
30998
|
+
icon?: Maybe<TrelloPluginIcon>;
|
|
30999
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
30902
31000
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
31001
|
+
public?: Maybe<Scalars['Boolean']['output']>;
|
|
30903
31002
|
};
|
|
30904
31003
|
export type TrelloPluginData = {
|
|
30905
31004
|
__typename?: 'TrelloPluginData';
|
|
@@ -30933,6 +31032,14 @@ export declare enum TrelloPluginDataScope {
|
|
|
30933
31032
|
Card = "CARD",
|
|
30934
31033
|
Organization = "ORGANIZATION"
|
|
30935
31034
|
}
|
|
31035
|
+
export type TrelloPluginIcon = {
|
|
31036
|
+
__typename?: 'TrelloPluginIcon';
|
|
31037
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
31038
|
+
};
|
|
31039
|
+
export type TrelloPluginUpdated = {
|
|
31040
|
+
__typename?: 'TrelloPluginUpdated';
|
|
31041
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
31042
|
+
};
|
|
30936
31043
|
export type TrelloPopularLabelForColor = {
|
|
30937
31044
|
__typename?: 'TrelloPopularLabelForColor';
|
|
30938
31045
|
color?: Maybe<Scalars['String']['output']>;
|
|
@@ -31218,7 +31325,9 @@ export type TrelloWorkspacePrefs = {
|
|
|
31218
31325
|
__typename?: 'TrelloWorkspacePrefs';
|
|
31219
31326
|
associatedDomain?: Maybe<Scalars['String']['output']>;
|
|
31220
31327
|
attachmentRestrictions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
31328
|
+
boardDeleteRestrict?: Maybe<TrelloBoardRestrictions>;
|
|
31221
31329
|
boardInviteRestrict?: Maybe<Scalars['String']['output']>;
|
|
31330
|
+
boardVisibilityRestrict?: Maybe<TrelloBoardRestrictions>;
|
|
31222
31331
|
externalMembersDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
31223
31332
|
orgInviteRestrict?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
31224
31333
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
@@ -31414,15 +31523,6 @@ export type UpdateCompassScorecardCriteriaInput = {
|
|
|
31414
31523
|
hasMetricValue?: InputMaybe<UpdateCompassHasMetricValueCriteriaInput>;
|
|
31415
31524
|
hasOwner?: InputMaybe<UpdateCompassHasOwnerScorecardCriteriaInput>;
|
|
31416
31525
|
};
|
|
31417
|
-
export type UpdateCompassScorecardCriteriasInput = {
|
|
31418
|
-
criterias: Array<UpdateCompassScorecardCriteriaInput>;
|
|
31419
|
-
};
|
|
31420
|
-
export type UpdateCompassScorecardCriteriasPayload = Payload & {
|
|
31421
|
-
__typename?: 'UpdateCompassScorecardCriteriasPayload';
|
|
31422
|
-
errors?: Maybe<Array<MutationError>>;
|
|
31423
|
-
scorecard?: Maybe<CompassScorecard>;
|
|
31424
|
-
success: Scalars['Boolean']['output'];
|
|
31425
|
-
};
|
|
31426
31526
|
export type UpdateCompassScorecardInput = {
|
|
31427
31527
|
componentLabelNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
31428
31528
|
componentTierValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -31518,12 +31618,15 @@ export type UpdateDevOpsServiceEntityPropertiesPayloadPropertiesArgs = {
|
|
|
31518
31618
|
keys: Array<Scalars['String']['input']>;
|
|
31519
31619
|
};
|
|
31520
31620
|
export type UpdateDevOpsServiceInput = {
|
|
31621
|
+
compassId?: InputMaybe<Scalars['ID']['input']>;
|
|
31622
|
+
compassRevision?: InputMaybe<Scalars['Int']['input']>;
|
|
31521
31623
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
31522
31624
|
id: Scalars['ID']['input'];
|
|
31523
31625
|
name: Scalars['String']['input'];
|
|
31524
31626
|
properties?: InputMaybe<Array<DevOpsServiceEntityPropertyInput>>;
|
|
31525
31627
|
revision: Scalars['ID']['input'];
|
|
31526
31628
|
serviceTier: Scalars['ID']['input'];
|
|
31629
|
+
serviceType?: InputMaybe<Scalars['ID']['input']>;
|
|
31527
31630
|
};
|
|
31528
31631
|
export type UpdateDevOpsServicePayload = Payload & {
|
|
31529
31632
|
__typename?: 'UpdateDevOpsServicePayload';
|