@forge/cli-shared 3.20.2-next.0 → 3.20.2-next.1
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
|
@@ -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';
|
|
@@ -7638,15 +7615,6 @@ export type DeleteCompassRelationshipPayload = Payload & {
|
|
|
7638
7615
|
export type DeleteCompassScorecardCriteriaInput = {
|
|
7639
7616
|
id: Scalars['ID']['input'];
|
|
7640
7617
|
};
|
|
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
7618
|
export type DeleteCompassScorecardPayload = Payload & {
|
|
7651
7619
|
__typename?: 'DeleteCompassScorecardPayload';
|
|
7652
7620
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -7873,6 +7841,7 @@ export type DetachEventSourcePayload = Payload & {
|
|
|
7873
7841
|
export type DevOps = {
|
|
7874
7842
|
__typename?: 'DevOps';
|
|
7875
7843
|
ariGraph?: Maybe<AriGraph>;
|
|
7844
|
+
buildEntityDetails?: Maybe<Array<Maybe<DevOpsBuildDetails>>>;
|
|
7876
7845
|
entitiesByAssociations?: Maybe<DevOpsEntities>;
|
|
7877
7846
|
graph?: Maybe<Graph>;
|
|
7878
7847
|
providers?: Maybe<DevOpsProviders>;
|
|
@@ -7882,6 +7851,9 @@ export type DevOps = {
|
|
|
7882
7851
|
summarisedEntities?: Maybe<Array<Maybe<DevOpsSummarisedEntities>>>;
|
|
7883
7852
|
toolchain?: Maybe<Toolchain>;
|
|
7884
7853
|
};
|
|
7854
|
+
export type DevOpsBuildEntityDetailsArgs = {
|
|
7855
|
+
ids: Array<Scalars['ID']['input']>;
|
|
7856
|
+
};
|
|
7885
7857
|
export type DevOpsEntitiesByAssociationsArgs = {
|
|
7886
7858
|
ids: Array<Scalars['ID']['input']>;
|
|
7887
7859
|
};
|
|
@@ -7915,6 +7887,19 @@ export type DevOpsBranchInfo = {
|
|
|
7915
7887
|
name?: Maybe<Scalars['String']['output']>;
|
|
7916
7888
|
url?: Maybe<Scalars['String']['output']>;
|
|
7917
7889
|
};
|
|
7890
|
+
export type DevOpsBuildDetails = {
|
|
7891
|
+
__typename?: 'DevOpsBuildDetails';
|
|
7892
|
+
associatedAris?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
7893
|
+
buildNumber?: Maybe<Scalars['Int']['output']>;
|
|
7894
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
7895
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
7896
|
+
id: Scalars['ID']['output'];
|
|
7897
|
+
pipelineId?: Maybe<Scalars['String']['output']>;
|
|
7898
|
+
providerId?: Maybe<Scalars['String']['output']>;
|
|
7899
|
+
state?: Maybe<DevOpsBuildState>;
|
|
7900
|
+
testInfo?: Maybe<DevOpsBuildTestInfo>;
|
|
7901
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
7902
|
+
};
|
|
7918
7903
|
export type DevOpsBuildProvider = DevOpsDataProvider & {
|
|
7919
7904
|
__typename?: 'DevOpsBuildProvider';
|
|
7920
7905
|
appInstallationId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -7934,6 +7919,13 @@ export declare enum DevOpsBuildState {
|
|
|
7934
7919
|
Successful = "SUCCESSFUL",
|
|
7935
7920
|
Unknown = "UNKNOWN"
|
|
7936
7921
|
}
|
|
7922
|
+
export type DevOpsBuildTestInfo = {
|
|
7923
|
+
__typename?: 'DevOpsBuildTestInfo';
|
|
7924
|
+
numberFailed?: Maybe<Scalars['Int']['output']>;
|
|
7925
|
+
numberPassed?: Maybe<Scalars['Int']['output']>;
|
|
7926
|
+
numberSkipped?: Maybe<Scalars['Int']['output']>;
|
|
7927
|
+
totalNumber?: Maybe<Scalars['Int']['output']>;
|
|
7928
|
+
};
|
|
7937
7929
|
export type DevOpsContainerRelationshipEntityPropertyInput = {
|
|
7938
7930
|
key: Scalars['String']['input'];
|
|
7939
7931
|
value: Scalars['JSON']['input'];
|
|
@@ -8557,6 +8549,8 @@ export type DevOpsService = Node & {
|
|
|
8557
8549
|
__typename?: 'DevOpsService';
|
|
8558
8550
|
bitbucketRepositoriesAvailableToLinkWith?: Maybe<BitbucketRepositoryIdConnection>;
|
|
8559
8551
|
cloudId: Scalars['String']['output'];
|
|
8552
|
+
compassId?: Maybe<Scalars['ID']['output']>;
|
|
8553
|
+
compassRevision?: Maybe<Scalars['Int']['output']>;
|
|
8560
8554
|
containedByDevOpsServiceRelationship?: Maybe<DevOpsServiceRelationship>;
|
|
8561
8555
|
containsDevOpsServiceRelationships?: Maybe<DevOpsServiceRelationshipConnection>;
|
|
8562
8556
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -8577,6 +8571,7 @@ export type DevOpsService = Node & {
|
|
|
8577
8571
|
repositoryRelationships?: Maybe<DevOpsServiceAndRepositoryRelationshipConnection>;
|
|
8578
8572
|
revision: Scalars['ID']['output'];
|
|
8579
8573
|
serviceTier?: Maybe<DevOpsServiceTier>;
|
|
8574
|
+
serviceType?: Maybe<DevOpsServiceType>;
|
|
8580
8575
|
servicesAvailableToLinkWith?: Maybe<DevOpsServiceConnection>;
|
|
8581
8576
|
};
|
|
8582
8577
|
export type DevOpsServiceBitbucketRepositoriesAvailableToLinkWithArgs = {
|
|
@@ -8785,6 +8780,15 @@ export type DevOpsServiceTier = {
|
|
|
8785
8780
|
export type DevOpsServiceTierInput = {
|
|
8786
8781
|
level: Scalars['Int']['input'];
|
|
8787
8782
|
};
|
|
8783
|
+
export type DevOpsServiceType = {
|
|
8784
|
+
__typename?: 'DevOpsServiceType';
|
|
8785
|
+
id: Scalars['ID']['output'];
|
|
8786
|
+
key: Scalars['String']['output'];
|
|
8787
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
8788
|
+
};
|
|
8789
|
+
export type DevOpsServiceTypeInput = {
|
|
8790
|
+
key: Scalars['String']['input'];
|
|
8791
|
+
};
|
|
8788
8792
|
export type DevOpsServicesFilterInput = {
|
|
8789
8793
|
nameContains?: InputMaybe<Scalars['String']['input']>;
|
|
8790
8794
|
tierLevelIn?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
@@ -10818,6 +10822,7 @@ export type GraphIssueAssociatedPrRelationshipEdge = {
|
|
|
10818
10822
|
};
|
|
10819
10823
|
export type GraphJiraBuild = Node & {
|
|
10820
10824
|
__typename?: 'GraphJiraBuild';
|
|
10825
|
+
build?: Maybe<DevOpsBuildDetails>;
|
|
10821
10826
|
id: Scalars['ID']['output'];
|
|
10822
10827
|
};
|
|
10823
10828
|
export type GraphJiraBuildConnection = {
|
|
@@ -14514,6 +14519,11 @@ export type JiraColorFieldPayload = Payload & {
|
|
|
14514
14519
|
export type JiraColorInput = {
|
|
14515
14520
|
name: Scalars['String']['input'];
|
|
14516
14521
|
};
|
|
14522
|
+
export declare enum JiraColorSchemeThemeSetting {
|
|
14523
|
+
Automatic = "AUTOMATIC",
|
|
14524
|
+
Dark = "DARK",
|
|
14525
|
+
Light = "LIGHT"
|
|
14526
|
+
}
|
|
14517
14527
|
export type JiraComment = {
|
|
14518
14528
|
author?: Maybe<User>;
|
|
14519
14529
|
commentId: Scalars['ID']['output'];
|
|
@@ -14986,6 +14996,7 @@ export type JiraDevOpsQuery = {
|
|
|
14986
14996
|
__typename?: 'JiraDevOpsQuery';
|
|
14987
14997
|
bitbucketIntegration?: Maybe<JiraBitbucketIntegration>;
|
|
14988
14998
|
devOpsIssuePanel?: Maybe<JiraDevOpsIssuePanel>;
|
|
14999
|
+
toolchain?: Maybe<JiraToolchain>;
|
|
14989
15000
|
};
|
|
14990
15001
|
export type JiraDevOpsQueryBitbucketIntegrationArgs = {
|
|
14991
15002
|
cloudId: Scalars['ID']['input'];
|
|
@@ -14993,6 +15004,9 @@ export type JiraDevOpsQueryBitbucketIntegrationArgs = {
|
|
|
14993
15004
|
export type JiraDevOpsQueryDevOpsIssuePanelArgs = {
|
|
14994
15005
|
issueId: Scalars['ID']['input'];
|
|
14995
15006
|
};
|
|
15007
|
+
export type JiraDevOpsQueryToolchainArgs = {
|
|
15008
|
+
cloudId: Scalars['ID']['input'];
|
|
15009
|
+
};
|
|
14996
15010
|
export type JiraDevSummaryField = JiraIssueField & Node & {
|
|
14997
15011
|
__typename?: 'JiraDevSummaryField';
|
|
14998
15012
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -19797,6 +19811,7 @@ export type JiraRole = Node & {
|
|
|
19797
19811
|
__typename?: 'JiraRole';
|
|
19798
19812
|
description?: Maybe<Scalars['String']['output']>;
|
|
19799
19813
|
id: Scalars['ID']['output'];
|
|
19814
|
+
isManaged?: Maybe<Scalars['Boolean']['output']>;
|
|
19800
19815
|
name?: Maybe<Scalars['String']['output']>;
|
|
19801
19816
|
roleId: Scalars['String']['output'];
|
|
19802
19817
|
};
|
|
@@ -21325,6 +21340,13 @@ export declare enum JiraTimeUnit {
|
|
|
21325
21340
|
Minute = "MINUTE",
|
|
21326
21341
|
Week = "WEEK"
|
|
21327
21342
|
}
|
|
21343
|
+
export type JiraToolchain = {
|
|
21344
|
+
__typename?: 'JiraToolchain';
|
|
21345
|
+
hasViewDevToolsPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
21346
|
+
};
|
|
21347
|
+
export type JiraToolchainHasViewDevToolsPermissionArgs = {
|
|
21348
|
+
projectKey: Scalars['String']['input'];
|
|
21349
|
+
};
|
|
21328
21350
|
export type JiraTransition = {
|
|
21329
21351
|
__typename?: 'JiraTransition';
|
|
21330
21352
|
hasPreConditions?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -21686,6 +21708,7 @@ export type JiraUserIssueFieldConfiguration = {
|
|
|
21686
21708
|
};
|
|
21687
21709
|
export type JiraUserPreferences = {
|
|
21688
21710
|
__typename?: 'JiraUserPreferences';
|
|
21711
|
+
colorSchemeThemeSetting?: Maybe<JiraColorSchemeThemeSetting>;
|
|
21689
21712
|
isIssueViewAttachmentReferenceFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
21690
21713
|
isIssueViewChildIssuesLimitBestPracticeFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
21691
21714
|
isIssueViewHideDoneChildIssuesFilterEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -25716,6 +25739,7 @@ export type Query = {
|
|
|
25716
25739
|
devOpsServiceRelationshipsForOpsgenieTeam?: Maybe<DevOpsServiceAndOpsgenieTeamRelationshipConnection>;
|
|
25717
25740
|
devOpsServiceRelationshipsForRepository?: Maybe<DevOpsServiceAndRepositoryRelationshipConnection>;
|
|
25718
25741
|
devOpsServiceTiers?: Maybe<Array<DevOpsServiceTier>>;
|
|
25742
|
+
devOpsServiceTypes?: Maybe<Array<DevOpsServiceType>>;
|
|
25719
25743
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
25720
25744
|
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
25721
25745
|
devOpsToolRelationshipsForJiraProject?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
@@ -25967,6 +25991,9 @@ export type QueryDevOpsServiceRelationshipsForRepositoryArgs = {
|
|
|
25967
25991
|
export type QueryDevOpsServiceTiersArgs = {
|
|
25968
25992
|
cloudId: Scalars['String']['input'];
|
|
25969
25993
|
};
|
|
25994
|
+
export type QueryDevOpsServiceTypesArgs = {
|
|
25995
|
+
cloudId: Scalars['String']['input'];
|
|
25996
|
+
};
|
|
25970
25997
|
export type QueryDevOpsServicesArgs = {
|
|
25971
25998
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25972
25999
|
cloudId: Scalars['String']['input'];
|
|
@@ -30183,6 +30210,7 @@ export type TrelloBoard = Node & {
|
|
|
30183
30210
|
name: Scalars['String']['output'];
|
|
30184
30211
|
objectId: Scalars['ID']['output'];
|
|
30185
30212
|
pluginData?: Maybe<TrelloPluginDataConnection>;
|
|
30213
|
+
plugins?: Maybe<TrelloBoardPluginConnection>;
|
|
30186
30214
|
pluginsDisableAt?: Maybe<Scalars['DateTime']['output']>;
|
|
30187
30215
|
popularLabelNamesByColor?: Maybe<Array<TrelloPopularLabelForColor>>;
|
|
30188
30216
|
prefs: TrelloBoardPrefs;
|
|
@@ -30213,6 +30241,11 @@ export type TrelloBoardPluginDataArgs = {
|
|
|
30213
30241
|
filter?: InputMaybe<TrelloPluginDataFilterInput>;
|
|
30214
30242
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30215
30243
|
};
|
|
30244
|
+
export type TrelloBoardPluginsArgs = {
|
|
30245
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30246
|
+
filter?: InputMaybe<TrelloBoardPluginFilterInput>;
|
|
30247
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30248
|
+
};
|
|
30216
30249
|
export type TrelloBoardTagsArgs = {
|
|
30217
30250
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30218
30251
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -30329,6 +30362,20 @@ export type TrelloBoardMembershipsConnection = {
|
|
|
30329
30362
|
nodes?: Maybe<Array<TrelloMember>>;
|
|
30330
30363
|
pageInfo: PageInfo;
|
|
30331
30364
|
};
|
|
30365
|
+
export type TrelloBoardPluginConnection = {
|
|
30366
|
+
__typename?: 'TrelloBoardPluginConnection';
|
|
30367
|
+
edges?: Maybe<Array<TrelloBoardPluginEdge>>;
|
|
30368
|
+
nodes?: Maybe<Array<TrelloPlugin>>;
|
|
30369
|
+
pageInfo: PageInfo;
|
|
30370
|
+
};
|
|
30371
|
+
export type TrelloBoardPluginEdge = {
|
|
30372
|
+
__typename?: 'TrelloBoardPluginEdge';
|
|
30373
|
+
cursor: Scalars['String']['output'];
|
|
30374
|
+
node: TrelloPlugin;
|
|
30375
|
+
};
|
|
30376
|
+
export type TrelloBoardPluginFilterInput = {
|
|
30377
|
+
access?: InputMaybe<Scalars['String']['input']>;
|
|
30378
|
+
};
|
|
30332
30379
|
export type TrelloBoardPrefs = {
|
|
30333
30380
|
__typename?: 'TrelloBoardPrefs';
|
|
30334
30381
|
background?: Maybe<TrelloBoardBackground>;
|
|
@@ -30356,6 +30403,13 @@ export type TrelloBoardReactionsLimits = {
|
|
|
30356
30403
|
__typename?: 'TrelloBoardReactionsLimits';
|
|
30357
30404
|
perAction?: Maybe<TrelloLimitProps>;
|
|
30358
30405
|
};
|
|
30406
|
+
export type TrelloBoardRestrictions = {
|
|
30407
|
+
__typename?: 'TrelloBoardRestrictions';
|
|
30408
|
+
enterprise?: Maybe<Scalars['String']['output']>;
|
|
30409
|
+
org?: Maybe<Scalars['String']['output']>;
|
|
30410
|
+
private?: Maybe<Scalars['String']['output']>;
|
|
30411
|
+
public?: Maybe<Scalars['String']['output']>;
|
|
30412
|
+
};
|
|
30359
30413
|
export type TrelloBoardStickersLimits = {
|
|
30360
30414
|
__typename?: 'TrelloBoardStickersLimits';
|
|
30361
30415
|
perCard?: Maybe<TrelloLimitProps>;
|
|
@@ -30522,7 +30576,7 @@ export type TrelloCardCoverUpdated = {
|
|
|
30522
30576
|
brightness?: Maybe<TrelloCardCoverBrightness>;
|
|
30523
30577
|
color?: Maybe<TrelloCardCoverColor>;
|
|
30524
30578
|
edgeColor?: Maybe<Scalars['String']['output']>;
|
|
30525
|
-
plugin?: Maybe<
|
|
30579
|
+
plugin?: Maybe<TrelloPluginUpdated>;
|
|
30526
30580
|
previews?: Maybe<TrelloImagePreviewUpdatedConnection>;
|
|
30527
30581
|
sharedSourceUrl?: Maybe<Scalars['URL']['output']>;
|
|
30528
30582
|
size?: Maybe<TrelloCardCoverSize>;
|
|
@@ -30899,7 +30953,12 @@ export type TrelloMutationApiWatchCardArgs = {
|
|
|
30899
30953
|
};
|
|
30900
30954
|
export type TrelloPlugin = {
|
|
30901
30955
|
__typename?: 'TrelloPlugin';
|
|
30956
|
+
author?: Maybe<Scalars['String']['output']>;
|
|
30957
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
30958
|
+
icon?: Maybe<TrelloPluginIcon>;
|
|
30959
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
30902
30960
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
30961
|
+
public?: Maybe<Scalars['Boolean']['output']>;
|
|
30903
30962
|
};
|
|
30904
30963
|
export type TrelloPluginData = {
|
|
30905
30964
|
__typename?: 'TrelloPluginData';
|
|
@@ -30933,6 +30992,14 @@ export declare enum TrelloPluginDataScope {
|
|
|
30933
30992
|
Card = "CARD",
|
|
30934
30993
|
Organization = "ORGANIZATION"
|
|
30935
30994
|
}
|
|
30995
|
+
export type TrelloPluginIcon = {
|
|
30996
|
+
__typename?: 'TrelloPluginIcon';
|
|
30997
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
30998
|
+
};
|
|
30999
|
+
export type TrelloPluginUpdated = {
|
|
31000
|
+
__typename?: 'TrelloPluginUpdated';
|
|
31001
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
31002
|
+
};
|
|
30936
31003
|
export type TrelloPopularLabelForColor = {
|
|
30937
31004
|
__typename?: 'TrelloPopularLabelForColor';
|
|
30938
31005
|
color?: Maybe<Scalars['String']['output']>;
|
|
@@ -31218,7 +31285,9 @@ export type TrelloWorkspacePrefs = {
|
|
|
31218
31285
|
__typename?: 'TrelloWorkspacePrefs';
|
|
31219
31286
|
associatedDomain?: Maybe<Scalars['String']['output']>;
|
|
31220
31287
|
attachmentRestrictions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
31288
|
+
boardDeleteRestrict?: Maybe<TrelloBoardRestrictions>;
|
|
31221
31289
|
boardInviteRestrict?: Maybe<Scalars['String']['output']>;
|
|
31290
|
+
boardVisibilityRestrict?: Maybe<TrelloBoardRestrictions>;
|
|
31222
31291
|
externalMembersDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
31223
31292
|
orgInviteRestrict?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
31224
31293
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
@@ -31414,15 +31483,6 @@ export type UpdateCompassScorecardCriteriaInput = {
|
|
|
31414
31483
|
hasMetricValue?: InputMaybe<UpdateCompassHasMetricValueCriteriaInput>;
|
|
31415
31484
|
hasOwner?: InputMaybe<UpdateCompassHasOwnerScorecardCriteriaInput>;
|
|
31416
31485
|
};
|
|
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
31486
|
export type UpdateCompassScorecardInput = {
|
|
31427
31487
|
componentLabelNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
31428
31488
|
componentTierValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -31518,12 +31578,15 @@ export type UpdateDevOpsServiceEntityPropertiesPayloadPropertiesArgs = {
|
|
|
31518
31578
|
keys: Array<Scalars['String']['input']>;
|
|
31519
31579
|
};
|
|
31520
31580
|
export type UpdateDevOpsServiceInput = {
|
|
31581
|
+
compassId?: InputMaybe<Scalars['ID']['input']>;
|
|
31582
|
+
compassRevision?: InputMaybe<Scalars['Int']['input']>;
|
|
31521
31583
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
31522
31584
|
id: Scalars['ID']['input'];
|
|
31523
31585
|
name: Scalars['String']['input'];
|
|
31524
31586
|
properties?: InputMaybe<Array<DevOpsServiceEntityPropertyInput>>;
|
|
31525
31587
|
revision: Scalars['ID']['input'];
|
|
31526
31588
|
serviceTier: Scalars['ID']['input'];
|
|
31589
|
+
serviceType?: InputMaybe<Scalars['ID']['input']>;
|
|
31527
31590
|
};
|
|
31528
31591
|
export type UpdateDevOpsServicePayload = Payload & {
|
|
31529
31592
|
__typename?: 'UpdateDevOpsServicePayload';
|