@forge/cli-shared 3.2.2-next.1 → 3.2.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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.2.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 652e9f2: Bump Typescript and ESlint to latest
8
+ - Updated dependencies [138bb0a]
9
+ - @forge/manifest@4.4.1
10
+
3
11
  ## 3.2.2-next.1
4
12
 
5
13
  ### Patch Changes
@@ -521,6 +521,7 @@ export declare type AppInstallationByIndexConnection = {
521
521
  edges?: Maybe<Array<Maybe<AppInstallationByIndexEdge>>>;
522
522
  nodes?: Maybe<Array<Maybe<AppInstallation>>>;
523
523
  pageInfo: AppInstallationPageInfo;
524
+ totalCount?: Maybe<Scalars['Int']>;
524
525
  };
525
526
  export declare type AppInstallationByIndexEdge = {
526
527
  __typename?: 'AppInstallationByIndexEdge';
@@ -2010,6 +2011,8 @@ export declare type CompassCatalogQueryApi = {
2010
2011
  __typename?: 'CompassCatalogQueryApi';
2011
2012
  component?: Maybe<CompassComponentResult>;
2012
2013
  componentByExternalAlias?: Maybe<CompassComponentResult>;
2014
+ componentType?: Maybe<CompassComponentTypeResult>;
2015
+ componentTypes?: Maybe<CompassComponentTypesQueryResult>;
2013
2016
  fieldDefinitionsByComponentType?: Maybe<CompassFieldDefinitionsResult>;
2014
2017
  searchComponents?: Maybe<CompassComponentQueryResult>;
2015
2018
  searchComponentLabels?: Maybe<CompassComponentLabelsQueryResult>;
@@ -2034,6 +2037,14 @@ export declare type CompassCatalogQueryApiComponentByExternalAliasArgs = {
2034
2037
  externalSource?: Maybe<Scalars['ID']>;
2035
2038
  externalID: Scalars['ID'];
2036
2039
  };
2040
+ export declare type CompassCatalogQueryApiComponentTypeArgs = {
2041
+ cloudId: Scalars['ID'];
2042
+ id: Scalars['ID'];
2043
+ };
2044
+ export declare type CompassCatalogQueryApiComponentTypesArgs = {
2045
+ cloudId: Scalars['ID'];
2046
+ query?: Maybe<CompassComponentTypeQueryInput>;
2047
+ };
2037
2048
  export declare type CompassCatalogQueryApiFieldDefinitionsByComponentTypeArgs = {
2038
2049
  cloudId: Scalars['ID'];
2039
2050
  input: CompassComponentType;
@@ -2099,6 +2110,7 @@ export declare type CompassComponent = Node & {
2099
2110
  __typename?: 'CompassComponent';
2100
2111
  id: Scalars['ID'];
2101
2112
  type: CompassComponentType;
2113
+ typeId: Scalars['ID'];
2102
2114
  name: Scalars['String'];
2103
2115
  description?: Maybe<Scalars['String']>;
2104
2116
  ownerId?: Maybe<Scalars['ID']>;
@@ -2165,6 +2177,29 @@ export declare enum CompassComponentType {
2165
2177
  Service = "SERVICE",
2166
2178
  Other = "OTHER"
2167
2179
  }
2180
+ export declare type CompassComponentTypeConnection = {
2181
+ __typename?: 'CompassComponentTypeConnection';
2182
+ edges?: Maybe<Array<CompassComponentTypeEdge>>;
2183
+ nodes?: Maybe<Array<CompassComponentTypeObject>>;
2184
+ totalCount?: Maybe<Scalars['Int']>;
2185
+ pageInfo: PageInfo;
2186
+ };
2187
+ export declare type CompassComponentTypeEdge = {
2188
+ __typename?: 'CompassComponentTypeEdge';
2189
+ cursor: Scalars['String'];
2190
+ node?: Maybe<CompassComponentTypeObject>;
2191
+ };
2192
+ export declare type CompassComponentTypeObject = {
2193
+ __typename?: 'CompassComponentTypeObject';
2194
+ id: Scalars['ID'];
2195
+ fieldDefinitions?: Maybe<CompassFieldDefinitionsResult>;
2196
+ };
2197
+ export declare type CompassComponentTypeQueryInput = {
2198
+ first?: Maybe<Scalars['Int']>;
2199
+ after?: Maybe<Scalars['String']>;
2200
+ };
2201
+ export declare type CompassComponentTypeResult = CompassComponentTypeObject | QueryError;
2202
+ export declare type CompassComponentTypesQueryResult = CompassComponentTypeConnection | QueryError;
2168
2203
  export declare type CompassCreateAlertEventInput = {
2169
2204
  displayName: Scalars['String'];
2170
2205
  lastUpdated: Scalars['DateTime'];
@@ -2207,7 +2242,8 @@ export declare type CompassCreateCustomBooleanFieldDefinitionInput = {
2207
2242
  cloudId: Scalars['ID'];
2208
2243
  name: Scalars['String'];
2209
2244
  description?: Maybe<Scalars['String']>;
2210
- componentTypes: Array<CompassComponentType>;
2245
+ componentTypes?: Maybe<Array<CompassComponentType>>;
2246
+ componentTypeIds?: Maybe<Array<Scalars['ID']>>;
2211
2247
  };
2212
2248
  export declare type CompassCreateCustomEventInput = {
2213
2249
  displayName: Scalars['String'];
@@ -2233,13 +2269,15 @@ export declare type CompassCreateCustomNumberFieldDefinitionInput = {
2233
2269
  cloudId: Scalars['ID'];
2234
2270
  name: Scalars['String'];
2235
2271
  description?: Maybe<Scalars['String']>;
2236
- componentTypes: Array<CompassComponentType>;
2272
+ componentTypes?: Maybe<Array<CompassComponentType>>;
2273
+ componentTypeIds?: Maybe<Array<Scalars['ID']>>;
2237
2274
  };
2238
2275
  export declare type CompassCreateCustomTextFieldDefinitionInput = {
2239
2276
  cloudId: Scalars['ID'];
2240
2277
  name: Scalars['String'];
2241
2278
  description?: Maybe<Scalars['String']>;
2242
- componentTypes: Array<CompassComponentType>;
2279
+ componentTypes?: Maybe<Array<CompassComponentType>>;
2280
+ componentTypeIds?: Maybe<Array<Scalars['ID']>>;
2243
2281
  };
2244
2282
  export declare type CompassCreateDeploymentEventInput = {
2245
2283
  updateSequenceNumber: Scalars['Long'];
@@ -2401,6 +2439,7 @@ export declare type CompassCustomBooleanFieldDefinition = CompassCustomFieldDefi
2401
2439
  name?: Maybe<Scalars['String']>;
2402
2440
  description?: Maybe<Scalars['String']>;
2403
2441
  componentTypes?: Maybe<Array<CompassComponentType>>;
2442
+ componentTypeIds?: Maybe<Array<Scalars['ID']>>;
2404
2443
  };
2405
2444
  export declare type CompassCustomBooleanFieldInput = {
2406
2445
  definitionId: Scalars['ID'];
@@ -2438,6 +2477,7 @@ export declare type CompassCustomFieldDefinition = {
2438
2477
  name?: Maybe<Scalars['String']>;
2439
2478
  description?: Maybe<Scalars['String']>;
2440
2479
  componentTypes?: Maybe<Array<CompassComponentType>>;
2480
+ componentTypeIds?: Maybe<Array<Scalars['ID']>>;
2441
2481
  };
2442
2482
  export declare type CompassCustomFieldDefinitionEdge = {
2443
2483
  __typename?: 'CompassCustomFieldDefinitionEdge';
@@ -2453,6 +2493,7 @@ export declare type CompassCustomFieldDefinitionsConnection = {
2453
2493
  export declare type CompassCustomFieldDefinitionsQuery = {
2454
2494
  cloudId: Scalars['ID'];
2455
2495
  componentTypes?: Maybe<Array<CompassComponentType>>;
2496
+ componentTypeIds?: Maybe<Array<Scalars['ID']>>;
2456
2497
  };
2457
2498
  export declare type CompassCustomFieldDefinitionsResult = CompassCustomFieldDefinitionsConnection | QueryError;
2458
2499
  export declare type CompassCustomFieldInput = {
@@ -2479,6 +2520,7 @@ export declare type CompassCustomNumberFieldDefinition = CompassCustomFieldDefin
2479
2520
  name?: Maybe<Scalars['String']>;
2480
2521
  description?: Maybe<Scalars['String']>;
2481
2522
  componentTypes?: Maybe<Array<CompassComponentType>>;
2523
+ componentTypeIds?: Maybe<Array<Scalars['ID']>>;
2482
2524
  };
2483
2525
  export declare type CompassCustomNumberFieldInput = {
2484
2526
  definitionId: Scalars['ID'];
@@ -2495,6 +2537,7 @@ export declare type CompassCustomTextFieldDefinition = CompassCustomFieldDefinit
2495
2537
  name?: Maybe<Scalars['String']>;
2496
2538
  description?: Maybe<Scalars['String']>;
2497
2539
  componentTypes?: Maybe<Array<CompassComponentType>>;
2540
+ componentTypeIds?: Maybe<Array<Scalars['ID']>>;
2498
2541
  };
2499
2542
  export declare type CompassCustomTextFieldInput = {
2500
2543
  definitionId: Scalars['ID'];
@@ -3133,6 +3176,7 @@ export declare type CompassScorecard = Node & {
3133
3176
  criterias?: Maybe<Array<CompassScorecardCriteria>>;
3134
3177
  owner?: Maybe<User>;
3135
3178
  componentType: CompassComponentType;
3179
+ componentTypeId: Scalars['ID'];
3136
3180
  importance: CompassScorecardImportance;
3137
3181
  scorecardScore?: Maybe<CompassScorecardScore>;
3138
3182
  appliedToComponents?: Maybe<CompassScorecardAppliedToComponentsQueryResult>;
@@ -3351,6 +3395,7 @@ export declare type CompassTeamData = {
3351
3395
  teamId?: Maybe<Scalars['ID']>;
3352
3396
  team?: Maybe<Team>;
3353
3397
  labels?: Maybe<Array<CompassTeamLabel>>;
3398
+ currentCheckin?: Maybe<CompassTeamCheckin>;
3354
3399
  };
3355
3400
  export declare type CompassTeamDataInput = {
3356
3401
  cloudId: Scalars['ID'];
@@ -3380,6 +3425,7 @@ export declare type CompassUpdateCustomBooleanFieldDefinitionInput = {
3380
3425
  name?: Maybe<Scalars['String']>;
3381
3426
  description?: Maybe<Scalars['String']>;
3382
3427
  componentTypes?: Maybe<Array<CompassComponentType>>;
3428
+ componentTypeIds?: Maybe<Array<Scalars['ID']>>;
3383
3429
  };
3384
3430
  export declare type CompassUpdateCustomFieldDefinitionInput = {
3385
3431
  booleanFieldDefinition?: Maybe<CompassUpdateCustomBooleanFieldDefinitionInput>;
@@ -3397,12 +3443,14 @@ export declare type CompassUpdateCustomNumberFieldDefinitionInput = {
3397
3443
  name?: Maybe<Scalars['String']>;
3398
3444
  description?: Maybe<Scalars['String']>;
3399
3445
  componentTypes?: Maybe<Array<CompassComponentType>>;
3446
+ componentTypeIds?: Maybe<Array<Scalars['ID']>>;
3400
3447
  };
3401
3448
  export declare type CompassUpdateCustomTextFieldDefinitionInput = {
3402
3449
  id: Scalars['ID'];
3403
3450
  name?: Maybe<Scalars['String']>;
3404
3451
  description?: Maybe<Scalars['String']>;
3405
3452
  componentTypes?: Maybe<Array<CompassComponentType>>;
3453
+ componentTypeIds?: Maybe<Array<Scalars['ID']>>;
3406
3454
  };
3407
3455
  export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
3408
3456
  id: Scalars['ID'];
@@ -4566,7 +4614,6 @@ export declare type ContentPlatformDateRangeFilter = {
4566
4614
  };
4567
4615
  export declare type ContentPlatformField = {
4568
4616
  field: ContentPlatformFieldNames;
4569
- weight?: Maybe<Scalars['Float']>;
4570
4617
  };
4571
4618
  export declare enum ContentPlatformFieldNames {
4572
4619
  Title = "TITLE",
@@ -4575,7 +4622,6 @@ export declare enum ContentPlatformFieldNames {
4575
4622
  export declare type ContentPlatformFieldType = {
4576
4623
  __typename?: 'ContentPlatformFieldType';
4577
4624
  field: ContentPlatformFieldNames;
4578
- weight?: Maybe<Scalars['Float']>;
4579
4625
  };
4580
4626
  export declare type ContentPlatformImageAsset = {
4581
4627
  __typename?: 'ContentPlatformImageAsset';
@@ -4602,10 +4648,6 @@ export declare type ContentPlatformImageComponent = {
4602
4648
  image: ContentPlatformImageAsset;
4603
4649
  contextReference: Array<ContentPlatformAnyContext>;
4604
4650
  };
4605
- export declare type ContentPlatformNestSearchOptions = {
4606
- queries: Array<ContentPlatformSearchQuery>;
4607
- operator?: Maybe<ContentPlatformBooleanOperators>;
4608
- };
4609
4651
  export declare enum ContentPlatformOperators {
4610
4652
  Any = "ANY",
4611
4653
  All = "ALL"
@@ -4653,7 +4695,6 @@ export declare type ContentPlatformReleaseNoteFilterOptions = {
4653
4695
  releaseNoteFlags?: Maybe<Array<Scalars['String']>>;
4654
4696
  productFeatureFlags?: Maybe<Scalars['JSON']>;
4655
4697
  releaseNoteFlagOffValues?: Maybe<Array<Scalars['String']>>;
4656
- publishStatus?: Maybe<Array<Scalars['String']>>;
4657
4698
  updatedAt?: Maybe<ContentPlatformDateRangeFilter>;
4658
4699
  };
4659
4700
  export declare type ContentPlatformReleaseNotesConnection = {
@@ -4666,6 +4707,10 @@ export declare type ContentPlatformReleaseNotesEdge = {
4666
4707
  node: ContentPlatformReleaseNote;
4667
4708
  cursor: Scalars['String'];
4668
4709
  };
4710
+ export declare type ContentPlatformSearchOptions = {
4711
+ queries: Array<ContentPlatformSearchQuery>;
4712
+ operator?: Maybe<ContentPlatformBooleanOperators>;
4713
+ };
4669
4714
  export declare type ContentPlatformSearchQuery = {
4670
4715
  searchType: ContentPlatformSearchTypes;
4671
4716
  terms: Array<Scalars['String']>;
@@ -4806,7 +4851,8 @@ export declare type CreateCompassComponentExternalAliasPayload = Payload & {
4806
4851
  export declare type CreateCompassComponentInput = {
4807
4852
  name: Scalars['String'];
4808
4853
  description?: Maybe<Scalars['String']>;
4809
- type: CompassComponentType;
4854
+ type?: Maybe<CompassComponentType>;
4855
+ typeId?: Maybe<Scalars['ID']>;
4810
4856
  ownerId?: Maybe<Scalars['ID']>;
4811
4857
  fields?: Maybe<Array<CreateCompassFieldInput>>;
4812
4858
  customFields?: Maybe<Array<CompassCustomFieldInput>>;
@@ -4891,7 +4937,8 @@ export declare type CreateCompassScorecardInput = {
4891
4937
  name: Scalars['String'];
4892
4938
  description?: Maybe<Scalars['String']>;
4893
4939
  ownerId?: Maybe<Scalars['ID']>;
4894
- componentType: CompassComponentType;
4940
+ componentType?: Maybe<CompassComponentType>;
4941
+ componentTypeId?: Maybe<Scalars['ID']>;
4895
4942
  importance: CompassScorecardImportance;
4896
4943
  criterias?: Maybe<Array<CreateCompassScorecardCriteriaInput>>;
4897
4944
  componentLabelNames?: Maybe<Array<Scalars['String']>>;
@@ -8639,6 +8686,7 @@ export declare type JiraCreateReleaseNoteConfluencePageInput = {
8639
8686
  parentPageId?: Maybe<Scalars['ID']>;
8640
8687
  issueFieldIds: Array<Scalars['ID']>;
8641
8688
  issueTypeIds: Array<Scalars['ID']>;
8689
+ excludeIssueKey?: Maybe<Scalars['Boolean']>;
8642
8690
  };
8643
8691
  export declare type JiraCreateReleaseNoteConfluencePagePayload = Payload & {
8644
8692
  __typename?: 'JiraCreateReleaseNoteConfluencePagePayload';
@@ -11798,6 +11846,7 @@ export declare type JiraQueryVersionsForProjectArgs = {
11798
11846
  last?: Maybe<Scalars['Int']>;
11799
11847
  before?: Maybe<Scalars['String']>;
11800
11848
  filter?: Maybe<Array<Maybe<JiraVersionStatus>>>;
11849
+ searchString?: Maybe<Scalars['String']>;
11801
11850
  };
11802
11851
  export declare type JiraQueryVersionDetailPageArgs = {
11803
11852
  versionId: Scalars['ID'];
@@ -14053,6 +14102,7 @@ export declare type MercuryCreateStrategyInput = {
14053
14102
  };
14054
14103
  export declare type MercuryCreateTeamInput = {
14055
14104
  name: Scalars['String'];
14105
+ teamsServiceTeamId: Scalars['ID'];
14056
14106
  active?: Maybe<Scalars['Boolean']>;
14057
14107
  };
14058
14108
  export declare type MercuryDeleteJobFunctionInput = {
@@ -14064,6 +14114,23 @@ export declare type MercuryDeleteStrategyInput = {
14064
14114
  export declare type MercuryDeleteTeamInput = {
14065
14115
  teamId: Scalars['ID'];
14066
14116
  };
14117
+ export declare type MercuryInitiative = {
14118
+ __typename?: 'MercuryInitiative';
14119
+ name?: Maybe<Scalars['String']>;
14120
+ key?: Maybe<Scalars['String']>;
14121
+ definition?: Maybe<Scalars['String']>;
14122
+ };
14123
+ export declare type MercuryInitiativeConnection = {
14124
+ __typename?: 'MercuryInitiativeConnection';
14125
+ edges?: Maybe<Array<Maybe<MercuryInitiativeEdge>>>;
14126
+ nodes?: Maybe<Array<Maybe<MercuryInitiative>>>;
14127
+ pageInfo: PageInfo;
14128
+ };
14129
+ export declare type MercuryInitiativeEdge = {
14130
+ __typename?: 'MercuryInitiativeEdge';
14131
+ cursor: Scalars['String'];
14132
+ node?: Maybe<MercuryInitiative>;
14133
+ };
14067
14134
  export declare type MercuryJobFunction = Node & {
14068
14135
  __typename?: 'MercuryJobFunction';
14069
14136
  id: Scalars['ID'];
@@ -14148,6 +14215,8 @@ export declare type MercuryQueryApi = {
14148
14215
  jobFunctions?: Maybe<MercuryJobFunctionConnection>;
14149
14216
  teams?: Maybe<MercuryTeamConnection>;
14150
14217
  team?: Maybe<MercuryTeam>;
14218
+ initiative?: Maybe<MercuryInitiative>;
14219
+ initiatives?: Maybe<MercuryInitiativeConnection>;
14151
14220
  };
14152
14221
  export declare type MercuryQueryApiStrategiesArgs = {
14153
14222
  first?: Maybe<Scalars['Int']>;
@@ -14170,6 +14239,13 @@ export declare type MercuryQueryApiTeamsArgs = {
14170
14239
  export declare type MercuryQueryApiTeamArgs = {
14171
14240
  id: Scalars['ID'];
14172
14241
  };
14242
+ export declare type MercuryQueryApiInitiativeArgs = {
14243
+ key: Scalars['String'];
14244
+ };
14245
+ export declare type MercuryQueryApiInitiativesArgs = {
14246
+ first?: Maybe<Scalars['Int']>;
14247
+ after?: Maybe<Scalars['String']>;
14248
+ };
14173
14249
  export declare type MercuryRemoveGoalsFromStrategyInput = {
14174
14250
  strategyId: Scalars['ID'];
14175
14251
  goals?: Maybe<Array<MercuryLinkGoalInput>>;
@@ -14213,6 +14289,7 @@ export declare type MercuryStrategyMutationPayload = Payload & {
14213
14289
  export declare type MercuryTeam = Node & {
14214
14290
  __typename?: 'MercuryTeam';
14215
14291
  id: Scalars['ID'];
14292
+ teamsServiceTeamId: Scalars['ID'];
14216
14293
  name: Scalars['String'];
14217
14294
  active?: Maybe<Scalars['Boolean']>;
14218
14295
  };
@@ -14265,8 +14342,8 @@ export declare type MercuryUpdateStrategyInput = {
14265
14342
  };
14266
14343
  export declare type MercuryUpdateTeamInput = {
14267
14344
  teamId: Scalars['ID'];
14268
- name?: Maybe<Scalars['String']>;
14269
- active?: Maybe<Scalars['Boolean']>;
14345
+ name: Scalars['String'];
14346
+ active: Scalars['Boolean'];
14270
14347
  };
14271
14348
  export declare type MigrationKeys = {
14272
14349
  __typename?: 'MigrationKeys';
@@ -14386,6 +14463,7 @@ export declare type Mutation = {
14386
14463
  createAppTunnels?: Maybe<CreateAppTunnelResponse>;
14387
14464
  deleteAppTunnels?: Maybe<GenericMutationResponse>;
14388
14465
  invokeExtension?: Maybe<InvokeExtensionResponse>;
14466
+ rateLimitTest?: Maybe<GenericMutationResponse>;
14389
14467
  invokeAuxEffects?: Maybe<InvokeAuxEffectsResponse>;
14390
14468
  userAuthTokenForExtension?: Maybe<UserAuthTokenForExtensionResponse>;
14391
14469
  createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
@@ -14720,6 +14798,9 @@ export declare type MutationDeleteAppTunnelsArgs = {
14720
14798
  export declare type MutationInvokeExtensionArgs = {
14721
14799
  input: InvokeExtensionInput;
14722
14800
  };
14801
+ export declare type MutationRateLimitTestArgs = {
14802
+ input: InvokeExtensionInput;
14803
+ };
14723
14804
  export declare type MutationInvokeAuxEffectsArgs = {
14724
14805
  input: InvokeAuxEffectsInput;
14725
14806
  };
@@ -16322,7 +16403,7 @@ export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
16322
16403
  export declare type QueryReleaseNotesArgs = {
16323
16404
  after?: Maybe<Scalars['String']>;
16324
16405
  first?: Maybe<Scalars['Int']>;
16325
- search?: Maybe<ContentPlatformNestSearchOptions>;
16406
+ search?: Maybe<ContentPlatformSearchOptions>;
16326
16407
  filter?: Maybe<ContentPlatformReleaseNoteFilterOptions>;
16327
16408
  filterByAnnouncementPlan?: Maybe<Scalars['Boolean']>;
16328
16409
  productFeatureFlags?: Maybe<Scalars['JSON']>;
@@ -17994,6 +18075,7 @@ export declare enum ShepherdAlertTemplateType {
17994
18075
  ExportedOrgeventscsv = "EXPORTED_ORGEVENTSCSV",
17995
18076
  InitiatedGsyncConnection = "INITIATED_GSYNC_CONNECTION",
17996
18077
  JiraIssueCrawling = "JIRA_ISSUE_CRAWLING",
18078
+ OrgLoggedInAsUser = "ORG_LOGGED_IN_AS_USER",
17997
18079
  RotateScimDirectoryToken = "ROTATE_SCIM_DIRECTORY_TOKEN",
17998
18080
  TokenCreated = "TOKEN_CREATED",
17999
18081
  UpdatedAuthPolicy = "UPDATED_AUTH_POLICY",
@@ -19480,6 +19562,20 @@ export declare type TransitionFilter = {
19480
19562
  export declare type TrelloQueryApi = {
19481
19563
  __typename?: 'TrelloQueryApi';
19482
19564
  echo: Scalars['String'];
19565
+ templateCategories: Array<TrelloTemplateGalleryCategory>;
19566
+ templateLanguages: Array<TrelloTemplateGalleryLanguage>;
19567
+ };
19568
+ export declare type TrelloTemplateGalleryCategory = {
19569
+ __typename?: 'TrelloTemplateGalleryCategory';
19570
+ key: Scalars['String'];
19571
+ };
19572
+ export declare type TrelloTemplateGalleryLanguage = {
19573
+ __typename?: 'TrelloTemplateGalleryLanguage';
19574
+ description: Scalars['String'];
19575
+ enabled: Scalars['Boolean'];
19576
+ language: Scalars['String'];
19577
+ locale: Scalars['String'];
19578
+ localizedDescription: Scalars['String'];
19483
19579
  };
19484
19580
  export declare type TunnelDefinitionsInput = {
19485
19581
  faasTunnelUrl?: Maybe<Scalars['URL']>;
@@ -19589,7 +19685,8 @@ export declare type UpdateCompassComponentPayload = Payload & {
19589
19685
  };
19590
19686
  export declare type UpdateCompassComponentTypeInput = {
19591
19687
  id: Scalars['ID'];
19592
- type: CompassComponentType;
19688
+ type?: Maybe<CompassComponentType>;
19689
+ typeId?: Maybe<Scalars['ID']>;
19593
19690
  };
19594
19691
  export declare type UpdateCompassComponentTypePayload = Payload & {
19595
19692
  __typename?: 'UpdateCompassComponentTypePayload';
@@ -19656,6 +19753,7 @@ export declare type UpdateCompassScorecardInput = {
19656
19753
  description?: Maybe<Scalars['String']>;
19657
19754
  ownerId?: Maybe<Scalars['ID']>;
19658
19755
  componentType?: Maybe<CompassComponentType>;
19756
+ componentTypeId?: Maybe<Scalars['ID']>;
19659
19757
  importance?: Maybe<CompassScorecardImportance>;
19660
19758
  componentLabelNames?: Maybe<Array<Scalars['String']>>;
19661
19759
  };