@forge/cli-shared 3.20.1 → 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
@@ -1,5 +1,19 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.20.2-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [add9c54]
8
+ - @forge/manifest@4.20.3-next.1
9
+
10
+ ## 3.20.2-next.0
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [64ac4be]
15
+ - @forge/manifest@4.20.3-next.0
16
+
3
17
  ## 3.20.1
4
18
 
5
19
  ### 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';
@@ -7146,10 +7123,15 @@ export type CustomerServiceIndividual = Node & {
7146
7123
  __typename?: 'CustomerServiceIndividual';
7147
7124
  attributes: Array<CustomerServiceAttributeValue>;
7148
7125
  id: Scalars['ID']['output'];
7126
+ links: Array<CustomerServiceLink>;
7149
7127
  name: Scalars['String']['output'];
7150
7128
  notes: Array<CustomerServiceNote>;
7151
7129
  organizations: Array<CustomerServiceOrganization>;
7152
7130
  };
7131
+ export type CustomerServiceIndividualLinksArgs = {
7132
+ maxResults?: InputMaybe<Scalars['Int']['input']>;
7133
+ startAt?: InputMaybe<Scalars['Int']['input']>;
7134
+ };
7153
7135
  export type CustomerServiceIndividualNotesArgs = {
7154
7136
  maxResults?: InputMaybe<Scalars['Int']['input']>;
7155
7137
  startAt?: InputMaybe<Scalars['Int']['input']>;
@@ -7181,13 +7163,48 @@ export type CustomerServiceIndividualUpdateAttributeValuePayload = Payload & {
7181
7163
  errors?: Maybe<Array<MutationError>>;
7182
7164
  success: Scalars['Boolean']['output'];
7183
7165
  };
7166
+ export type CustomerServiceLink = {
7167
+ __typename?: 'CustomerServiceLink';
7168
+ displayName?: Maybe<Scalars['String']['output']>;
7169
+ id: Scalars['ID']['output'];
7170
+ url: Scalars['URL']['output'];
7171
+ };
7172
+ export type CustomerServiceLinkCreateInput = {
7173
+ displayName?: InputMaybe<Scalars['String']['input']>;
7174
+ entityId: Scalars['ID']['input'];
7175
+ type: CustomerServiceLinkEntityType;
7176
+ url: Scalars['URL']['input'];
7177
+ };
7178
+ export type CustomerServiceLinkCreatePayload = Payload & {
7179
+ __typename?: 'CustomerServiceLinkCreatePayload';
7180
+ errors?: Maybe<Array<MutationError>>;
7181
+ success: Scalars['Boolean']['output'];
7182
+ successfullyCreatedLink?: Maybe<CustomerServiceLink>;
7183
+ };
7184
+ export type CustomerServiceLinkDeleteInput = {
7185
+ entityId: Scalars['ID']['input'];
7186
+ linkId: Scalars['ID']['input'];
7187
+ type: CustomerServiceLinkEntityType;
7188
+ };
7189
+ export type CustomerServiceLinkDeletePayload = Payload & {
7190
+ __typename?: 'CustomerServiceLinkDeletePayload';
7191
+ errors?: Maybe<Array<MutationError>>;
7192
+ success: Scalars['Boolean']['output'];
7193
+ };
7194
+ export declare enum CustomerServiceLinkEntityType {
7195
+ Customer = "CUSTOMER",
7196
+ Organization = "ORGANIZATION"
7197
+ }
7198
+ export type CustomerServiceLinksQueryResult = CustomerServiceLink | QueryError;
7184
7199
  export type CustomerServiceMutationApi = {
7185
7200
  __typename?: 'CustomerServiceMutationApi';
7186
7201
  createIndividualAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
7202
+ createLink?: Maybe<CustomerServiceLinkCreatePayload>;
7187
7203
  createNote?: Maybe<CustomerServiceNoteCreatePayload>;
7188
7204
  createOrganization?: Maybe<CustomerServiceOrganizationCreatePayload>;
7189
7205
  createOrganizationAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
7190
7206
  deleteIndividualAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
7207
+ deleteLink?: Maybe<CustomerServiceLinkDeletePayload>;
7191
7208
  deleteNote?: Maybe<CustomerServiceNoteDeletePayload>;
7192
7209
  deleteOrganization?: Maybe<CustomerServiceOrganizationDeletePayload>;
7193
7210
  deleteOrganizationAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
@@ -7206,6 +7223,9 @@ export type CustomerServiceMutationApi = {
7206
7223
  export type CustomerServiceMutationApiCreateIndividualAttributeArgs = {
7207
7224
  input: CustomerServiceAttributeCreateInput;
7208
7225
  };
7226
+ export type CustomerServiceMutationApiCreateLinkArgs = {
7227
+ input: CustomerServiceLinkCreateInput;
7228
+ };
7209
7229
  export type CustomerServiceMutationApiCreateNoteArgs = {
7210
7230
  input?: InputMaybe<CustomerServiceNoteCreateInput>;
7211
7231
  };
@@ -7218,6 +7238,9 @@ export type CustomerServiceMutationApiCreateOrganizationAttributeArgs = {
7218
7238
  export type CustomerServiceMutationApiDeleteIndividualAttributeArgs = {
7219
7239
  input: CustomerServiceAttributeDeleteInput;
7220
7240
  };
7241
+ export type CustomerServiceMutationApiDeleteLinkArgs = {
7242
+ input: CustomerServiceLinkDeleteInput;
7243
+ };
7221
7244
  export type CustomerServiceMutationApiDeleteNoteArgs = {
7222
7245
  input?: InputMaybe<CustomerServiceNoteDeleteInput>;
7223
7246
  };
@@ -7320,9 +7343,14 @@ export type CustomerServiceOrganization = Node & {
7320
7343
  __typename?: 'CustomerServiceOrganization';
7321
7344
  attributes: Array<CustomerServiceAttributeValue>;
7322
7345
  id: Scalars['ID']['output'];
7346
+ links: Array<CustomerServiceLink>;
7323
7347
  name: Scalars['String']['output'];
7324
7348
  notes: Array<CustomerServiceNote>;
7325
7349
  };
7350
+ export type CustomerServiceOrganizationLinksArgs = {
7351
+ maxResults?: InputMaybe<Scalars['Int']['input']>;
7352
+ startAt?: InputMaybe<Scalars['Int']['input']>;
7353
+ };
7326
7354
  export type CustomerServiceOrganizationNotesArgs = {
7327
7355
  maxResults?: InputMaybe<Scalars['Int']['input']>;
7328
7356
  startAt?: InputMaybe<Scalars['Int']['input']>;
@@ -7587,15 +7615,6 @@ export type DeleteCompassRelationshipPayload = Payload & {
7587
7615
  export type DeleteCompassScorecardCriteriaInput = {
7588
7616
  id: Scalars['ID']['input'];
7589
7617
  };
7590
- export type DeleteCompassScorecardCriteriasInput = {
7591
- criterias: Array<DeleteCompassScorecardCriteriaInput>;
7592
- };
7593
- export type DeleteCompassScorecardCriteriasPayload = Payload & {
7594
- __typename?: 'DeleteCompassScorecardCriteriasPayload';
7595
- errors?: Maybe<Array<MutationError>>;
7596
- scorecard?: Maybe<CompassScorecard>;
7597
- success: Scalars['Boolean']['output'];
7598
- };
7599
7618
  export type DeleteCompassScorecardPayload = Payload & {
7600
7619
  __typename?: 'DeleteCompassScorecardPayload';
7601
7620
  errors?: Maybe<Array<MutationError>>;
@@ -7822,6 +7841,7 @@ export type DetachEventSourcePayload = Payload & {
7822
7841
  export type DevOps = {
7823
7842
  __typename?: 'DevOps';
7824
7843
  ariGraph?: Maybe<AriGraph>;
7844
+ buildEntityDetails?: Maybe<Array<Maybe<DevOpsBuildDetails>>>;
7825
7845
  entitiesByAssociations?: Maybe<DevOpsEntities>;
7826
7846
  graph?: Maybe<Graph>;
7827
7847
  providers?: Maybe<DevOpsProviders>;
@@ -7831,6 +7851,9 @@ export type DevOps = {
7831
7851
  summarisedEntities?: Maybe<Array<Maybe<DevOpsSummarisedEntities>>>;
7832
7852
  toolchain?: Maybe<Toolchain>;
7833
7853
  };
7854
+ export type DevOpsBuildEntityDetailsArgs = {
7855
+ ids: Array<Scalars['ID']['input']>;
7856
+ };
7834
7857
  export type DevOpsEntitiesByAssociationsArgs = {
7835
7858
  ids: Array<Scalars['ID']['input']>;
7836
7859
  };
@@ -7864,6 +7887,19 @@ export type DevOpsBranchInfo = {
7864
7887
  name?: Maybe<Scalars['String']['output']>;
7865
7888
  url?: Maybe<Scalars['String']['output']>;
7866
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
+ };
7867
7903
  export type DevOpsBuildProvider = DevOpsDataProvider & {
7868
7904
  __typename?: 'DevOpsBuildProvider';
7869
7905
  appInstallationId?: Maybe<Scalars['ID']['output']>;
@@ -7883,6 +7919,13 @@ export declare enum DevOpsBuildState {
7883
7919
  Successful = "SUCCESSFUL",
7884
7920
  Unknown = "UNKNOWN"
7885
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
+ };
7886
7929
  export type DevOpsContainerRelationshipEntityPropertyInput = {
7887
7930
  key: Scalars['String']['input'];
7888
7931
  value: Scalars['JSON']['input'];
@@ -8506,6 +8549,8 @@ export type DevOpsService = Node & {
8506
8549
  __typename?: 'DevOpsService';
8507
8550
  bitbucketRepositoriesAvailableToLinkWith?: Maybe<BitbucketRepositoryIdConnection>;
8508
8551
  cloudId: Scalars['String']['output'];
8552
+ compassId?: Maybe<Scalars['ID']['output']>;
8553
+ compassRevision?: Maybe<Scalars['Int']['output']>;
8509
8554
  containedByDevOpsServiceRelationship?: Maybe<DevOpsServiceRelationship>;
8510
8555
  containsDevOpsServiceRelationships?: Maybe<DevOpsServiceRelationshipConnection>;
8511
8556
  createdAt: Scalars['DateTime']['output'];
@@ -8526,6 +8571,7 @@ export type DevOpsService = Node & {
8526
8571
  repositoryRelationships?: Maybe<DevOpsServiceAndRepositoryRelationshipConnection>;
8527
8572
  revision: Scalars['ID']['output'];
8528
8573
  serviceTier?: Maybe<DevOpsServiceTier>;
8574
+ serviceType?: Maybe<DevOpsServiceType>;
8529
8575
  servicesAvailableToLinkWith?: Maybe<DevOpsServiceConnection>;
8530
8576
  };
8531
8577
  export type DevOpsServiceBitbucketRepositoriesAvailableToLinkWithArgs = {
@@ -8734,6 +8780,15 @@ export type DevOpsServiceTier = {
8734
8780
  export type DevOpsServiceTierInput = {
8735
8781
  level: Scalars['Int']['input'];
8736
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
+ };
8737
8792
  export type DevOpsServicesFilterInput = {
8738
8793
  nameContains?: InputMaybe<Scalars['String']['input']>;
8739
8794
  tierLevelIn?: InputMaybe<Array<Scalars['Int']['input']>>;
@@ -10767,6 +10822,7 @@ export type GraphIssueAssociatedPrRelationshipEdge = {
10767
10822
  };
10768
10823
  export type GraphJiraBuild = Node & {
10769
10824
  __typename?: 'GraphJiraBuild';
10825
+ build?: Maybe<DevOpsBuildDetails>;
10770
10826
  id: Scalars['ID']['output'];
10771
10827
  };
10772
10828
  export type GraphJiraBuildConnection = {
@@ -14463,6 +14519,11 @@ export type JiraColorFieldPayload = Payload & {
14463
14519
  export type JiraColorInput = {
14464
14520
  name: Scalars['String']['input'];
14465
14521
  };
14522
+ export declare enum JiraColorSchemeThemeSetting {
14523
+ Automatic = "AUTOMATIC",
14524
+ Dark = "DARK",
14525
+ Light = "LIGHT"
14526
+ }
14466
14527
  export type JiraComment = {
14467
14528
  author?: Maybe<User>;
14468
14529
  commentId: Scalars['ID']['output'];
@@ -14935,6 +14996,7 @@ export type JiraDevOpsQuery = {
14935
14996
  __typename?: 'JiraDevOpsQuery';
14936
14997
  bitbucketIntegration?: Maybe<JiraBitbucketIntegration>;
14937
14998
  devOpsIssuePanel?: Maybe<JiraDevOpsIssuePanel>;
14999
+ toolchain?: Maybe<JiraToolchain>;
14938
15000
  };
14939
15001
  export type JiraDevOpsQueryBitbucketIntegrationArgs = {
14940
15002
  cloudId: Scalars['ID']['input'];
@@ -14942,6 +15004,9 @@ export type JiraDevOpsQueryBitbucketIntegrationArgs = {
14942
15004
  export type JiraDevOpsQueryDevOpsIssuePanelArgs = {
14943
15005
  issueId: Scalars['ID']['input'];
14944
15006
  };
15007
+ export type JiraDevOpsQueryToolchainArgs = {
15008
+ cloudId: Scalars['ID']['input'];
15009
+ };
14945
15010
  export type JiraDevSummaryField = JiraIssueField & Node & {
14946
15011
  __typename?: 'JiraDevSummaryField';
14947
15012
  aliasFieldId?: Maybe<Scalars['ID']['output']>;
@@ -15387,6 +15452,16 @@ export type JiraForgeUsersFieldUsersArgs = {
15387
15452
  searchBy?: InputMaybe<Scalars['String']['input']>;
15388
15453
  suggested?: InputMaybe<Scalars['Boolean']['input']>;
15389
15454
  };
15455
+ export type JiraGenericIssueField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
15456
+ __typename?: 'JiraGenericIssueField';
15457
+ aliasFieldId?: Maybe<Scalars['ID']['output']>;
15458
+ description?: Maybe<Scalars['String']['output']>;
15459
+ fieldConfig?: Maybe<JiraFieldConfig>;
15460
+ fieldId: Scalars['String']['output'];
15461
+ id: Scalars['ID']['output'];
15462
+ name: Scalars['String']['output'];
15463
+ type: Scalars['String']['output'];
15464
+ };
15390
15465
  export type JiraGlobalPermission = {
15391
15466
  __typename?: 'JiraGlobalPermission';
15392
15467
  description?: Maybe<Scalars['String']['output']>;
@@ -18860,6 +18935,7 @@ export type JiraQuery = {
18860
18935
  jqlBuilder?: Maybe<JiraJqlBuilder>;
18861
18936
  jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
18862
18937
  jsonUserProperty?: Maybe<JiraEntityPropertyJson>;
18938
+ jwmForm?: Maybe<JiraWorkManagementFormConfiguration>;
18863
18939
  jwmNavigation?: Maybe<JiraWorkManagementNavigation>;
18864
18940
  jwmNavigationByProjectId?: Maybe<JiraWorkManagementNavigation>;
18865
18941
  jwmNavigationByProjectKey?: Maybe<JiraWorkManagementNavigation>;
@@ -19177,6 +19253,10 @@ export type JiraQueryJsonUserPropertyArgs = {
19177
19253
  cloudId: Scalars['ID']['input'];
19178
19254
  propertyKey: Scalars['String']['input'];
19179
19255
  };
19256
+ export type JiraQueryJwmFormArgs = {
19257
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
19258
+ formId: Scalars['ID']['input'];
19259
+ };
19180
19260
  export type JiraQueryJwmNavigationArgs = {
19181
19261
  cloudId: Scalars['ID']['input'];
19182
19262
  };
@@ -19731,6 +19811,7 @@ export type JiraRole = Node & {
19731
19811
  __typename?: 'JiraRole';
19732
19812
  description?: Maybe<Scalars['String']['output']>;
19733
19813
  id: Scalars['ID']['output'];
19814
+ isManaged?: Maybe<Scalars['Boolean']['output']>;
19734
19815
  name?: Maybe<Scalars['String']['output']>;
19735
19816
  roleId: Scalars['String']['output'];
19736
19817
  };
@@ -21259,6 +21340,13 @@ export declare enum JiraTimeUnit {
21259
21340
  Minute = "MINUTE",
21260
21341
  Week = "WEEK"
21261
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
+ };
21262
21350
  export type JiraTransition = {
21263
21351
  __typename?: 'JiraTransition';
21264
21352
  hasPreConditions?: Maybe<Scalars['Boolean']['output']>;
@@ -21620,6 +21708,7 @@ export type JiraUserIssueFieldConfiguration = {
21620
21708
  };
21621
21709
  export type JiraUserPreferences = {
21622
21710
  __typename?: 'JiraUserPreferences';
21711
+ colorSchemeThemeSetting?: Maybe<JiraColorSchemeThemeSetting>;
21623
21712
  isIssueViewAttachmentReferenceFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
21624
21713
  isIssueViewChildIssuesLimitBestPracticeFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
21625
21714
  isIssueViewHideDoneChildIssuesFilterEnabled?: Maybe<Scalars['Boolean']['output']>;
@@ -22270,6 +22359,30 @@ export type JiraWorkManagementDeleteOverviewPayload = Payload & {
22270
22359
  errors?: Maybe<Array<MutationError>>;
22271
22360
  success: Scalars['Boolean']['output'];
22272
22361
  };
22362
+ export type JiraWorkManagementFormConfiguration = Node & {
22363
+ __typename?: 'JiraWorkManagementFormConfiguration';
22364
+ accessLevel?: Maybe<Scalars['String']['output']>;
22365
+ bannerColor?: Maybe<Scalars['String']['output']>;
22366
+ description?: Maybe<Scalars['String']['output']>;
22367
+ enabled: Scalars['Boolean']['output'];
22368
+ errors?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
22369
+ fields?: Maybe<Array<Maybe<JiraWorkManagementFormField>>>;
22370
+ formId: Scalars['ID']['output'];
22371
+ id: Scalars['ID']['output'];
22372
+ isSubmittableByAllLoggedInUsers: Scalars['Boolean']['output'];
22373
+ issueType?: Maybe<JiraIssueType>;
22374
+ projectId: Scalars['Long']['output'];
22375
+ title: Scalars['String']['output'];
22376
+ updateAuthor?: Maybe<User>;
22377
+ updated: Scalars['DateTime']['output'];
22378
+ };
22379
+ export type JiraWorkManagementFormField = {
22380
+ __typename?: 'JiraWorkManagementFormField';
22381
+ alias?: Maybe<Scalars['String']['output']>;
22382
+ field: JiraIssueField;
22383
+ fieldId: Scalars['ID']['output'];
22384
+ id: Scalars['ID']['output'];
22385
+ };
22273
22386
  export type JiraWorkManagementLicensing = {
22274
22387
  __typename?: 'JiraWorkManagementLicensing';
22275
22388
  currentUserSeatEdition?: Maybe<JiraWorkManagementUserLicenseSeatEdition>;
@@ -25626,6 +25739,7 @@ export type Query = {
25626
25739
  devOpsServiceRelationshipsForOpsgenieTeam?: Maybe<DevOpsServiceAndOpsgenieTeamRelationshipConnection>;
25627
25740
  devOpsServiceRelationshipsForRepository?: Maybe<DevOpsServiceAndRepositoryRelationshipConnection>;
25628
25741
  devOpsServiceTiers?: Maybe<Array<DevOpsServiceTier>>;
25742
+ devOpsServiceTypes?: Maybe<Array<DevOpsServiceType>>;
25629
25743
  devOpsServices?: Maybe<DevOpsServiceConnection>;
25630
25744
  devOpsServicesById?: Maybe<Array<DevOpsService>>;
25631
25745
  devOpsToolRelationshipsForJiraProject?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
@@ -25877,6 +25991,9 @@ export type QueryDevOpsServiceRelationshipsForRepositoryArgs = {
25877
25991
  export type QueryDevOpsServiceTiersArgs = {
25878
25992
  cloudId: Scalars['String']['input'];
25879
25993
  };
25994
+ export type QueryDevOpsServiceTypesArgs = {
25995
+ cloudId: Scalars['String']['input'];
25996
+ };
25880
25997
  export type QueryDevOpsServicesArgs = {
25881
25998
  after?: InputMaybe<Scalars['String']['input']>;
25882
25999
  cloudId: Scalars['String']['input'];
@@ -30093,6 +30210,7 @@ export type TrelloBoard = Node & {
30093
30210
  name: Scalars['String']['output'];
30094
30211
  objectId: Scalars['ID']['output'];
30095
30212
  pluginData?: Maybe<TrelloPluginDataConnection>;
30213
+ plugins?: Maybe<TrelloBoardPluginConnection>;
30096
30214
  pluginsDisableAt?: Maybe<Scalars['DateTime']['output']>;
30097
30215
  popularLabelNamesByColor?: Maybe<Array<TrelloPopularLabelForColor>>;
30098
30216
  prefs: TrelloBoardPrefs;
@@ -30123,6 +30241,11 @@ export type TrelloBoardPluginDataArgs = {
30123
30241
  filter?: InputMaybe<TrelloPluginDataFilterInput>;
30124
30242
  first?: InputMaybe<Scalars['Int']['input']>;
30125
30243
  };
30244
+ export type TrelloBoardPluginsArgs = {
30245
+ after?: InputMaybe<Scalars['String']['input']>;
30246
+ filter?: InputMaybe<TrelloBoardPluginFilterInput>;
30247
+ first?: InputMaybe<Scalars['Int']['input']>;
30248
+ };
30126
30249
  export type TrelloBoardTagsArgs = {
30127
30250
  after?: InputMaybe<Scalars['String']['input']>;
30128
30251
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -30239,6 +30362,20 @@ export type TrelloBoardMembershipsConnection = {
30239
30362
  nodes?: Maybe<Array<TrelloMember>>;
30240
30363
  pageInfo: PageInfo;
30241
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
+ };
30242
30379
  export type TrelloBoardPrefs = {
30243
30380
  __typename?: 'TrelloBoardPrefs';
30244
30381
  background?: Maybe<TrelloBoardBackground>;
@@ -30266,6 +30403,13 @@ export type TrelloBoardReactionsLimits = {
30266
30403
  __typename?: 'TrelloBoardReactionsLimits';
30267
30404
  perAction?: Maybe<TrelloLimitProps>;
30268
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
+ };
30269
30413
  export type TrelloBoardStickersLimits = {
30270
30414
  __typename?: 'TrelloBoardStickersLimits';
30271
30415
  perCard?: Maybe<TrelloLimitProps>;
@@ -30432,7 +30576,7 @@ export type TrelloCardCoverUpdated = {
30432
30576
  brightness?: Maybe<TrelloCardCoverBrightness>;
30433
30577
  color?: Maybe<TrelloCardCoverColor>;
30434
30578
  edgeColor?: Maybe<Scalars['String']['output']>;
30435
- plugin?: Maybe<TrelloPlugin>;
30579
+ plugin?: Maybe<TrelloPluginUpdated>;
30436
30580
  previews?: Maybe<TrelloImagePreviewUpdatedConnection>;
30437
30581
  sharedSourceUrl?: Maybe<Scalars['URL']['output']>;
30438
30582
  size?: Maybe<TrelloCardCoverSize>;
@@ -30809,7 +30953,12 @@ export type TrelloMutationApiWatchCardArgs = {
30809
30953
  };
30810
30954
  export type TrelloPlugin = {
30811
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']>;
30812
30960
  objectId?: Maybe<Scalars['ID']['output']>;
30961
+ public?: Maybe<Scalars['Boolean']['output']>;
30813
30962
  };
30814
30963
  export type TrelloPluginData = {
30815
30964
  __typename?: 'TrelloPluginData';
@@ -30843,6 +30992,14 @@ export declare enum TrelloPluginDataScope {
30843
30992
  Card = "CARD",
30844
30993
  Organization = "ORGANIZATION"
30845
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
+ };
30846
31003
  export type TrelloPopularLabelForColor = {
30847
31004
  __typename?: 'TrelloPopularLabelForColor';
30848
31005
  color?: Maybe<Scalars['String']['output']>;
@@ -31128,7 +31285,9 @@ export type TrelloWorkspacePrefs = {
31128
31285
  __typename?: 'TrelloWorkspacePrefs';
31129
31286
  associatedDomain?: Maybe<Scalars['String']['output']>;
31130
31287
  attachmentRestrictions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
31288
+ boardDeleteRestrict?: Maybe<TrelloBoardRestrictions>;
31131
31289
  boardInviteRestrict?: Maybe<Scalars['String']['output']>;
31290
+ boardVisibilityRestrict?: Maybe<TrelloBoardRestrictions>;
31132
31291
  externalMembersDisabled?: Maybe<Scalars['Boolean']['output']>;
31133
31292
  orgInviteRestrict?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
31134
31293
  permissionLevel?: Maybe<Scalars['String']['output']>;
@@ -31324,15 +31483,6 @@ export type UpdateCompassScorecardCriteriaInput = {
31324
31483
  hasMetricValue?: InputMaybe<UpdateCompassHasMetricValueCriteriaInput>;
31325
31484
  hasOwner?: InputMaybe<UpdateCompassHasOwnerScorecardCriteriaInput>;
31326
31485
  };
31327
- export type UpdateCompassScorecardCriteriasInput = {
31328
- criterias: Array<UpdateCompassScorecardCriteriaInput>;
31329
- };
31330
- export type UpdateCompassScorecardCriteriasPayload = Payload & {
31331
- __typename?: 'UpdateCompassScorecardCriteriasPayload';
31332
- errors?: Maybe<Array<MutationError>>;
31333
- scorecard?: Maybe<CompassScorecard>;
31334
- success: Scalars['Boolean']['output'];
31335
- };
31336
31486
  export type UpdateCompassScorecardInput = {
31337
31487
  componentLabelNames?: InputMaybe<Array<Scalars['String']['input']>>;
31338
31488
  componentTierValues?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -31428,12 +31578,15 @@ export type UpdateDevOpsServiceEntityPropertiesPayloadPropertiesArgs = {
31428
31578
  keys: Array<Scalars['String']['input']>;
31429
31579
  };
31430
31580
  export type UpdateDevOpsServiceInput = {
31581
+ compassId?: InputMaybe<Scalars['ID']['input']>;
31582
+ compassRevision?: InputMaybe<Scalars['Int']['input']>;
31431
31583
  description?: InputMaybe<Scalars['String']['input']>;
31432
31584
  id: Scalars['ID']['input'];
31433
31585
  name: Scalars['String']['input'];
31434
31586
  properties?: InputMaybe<Array<DevOpsServiceEntityPropertyInput>>;
31435
31587
  revision: Scalars['ID']['input'];
31436
31588
  serviceTier: Scalars['ID']['input'];
31589
+ serviceType?: InputMaybe<Scalars['ID']['input']>;
31437
31590
  };
31438
31591
  export type UpdateDevOpsServicePayload = Payload & {
31439
31592
  __typename?: 'UpdateDevOpsServicePayload';