@forge/cli-shared 3.8.0-next.6 → 3.8.0

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,39 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.8.0
4
+
5
+ ### Minor Changes
6
+
7
+ - db2615bd: Allow custom environment names
8
+ - 149ebb5: Introduced command to list custom entities indexes
9
+ - dc0e198: Added 'forge environment list' command
10
+ - 9614f64: Add warning to Forge linter for scopes that require interactive user consent
11
+
12
+ ### Patch Changes
13
+
14
+ - 0d36e72: Improve node version warning text
15
+ - 081aaa9: Bumping dependencies via Renovate:
16
+
17
+ - cli-table3
18
+
19
+ - Updated dependencies [7100287]
20
+ - Updated dependencies [9614f64]
21
+ - Updated dependencies [32ca02f]
22
+ - Updated dependencies [4d594e7]
23
+ - @forge/util@1.2.2
24
+ - @forge/manifest@4.8.0
25
+
26
+ ## 3.8.0-next.7
27
+
28
+ ### Minor Changes
29
+
30
+ - 9614f64: Add warning to Forge linter for scopes that require interactive user consent
31
+
32
+ ### Patch Changes
33
+
34
+ - Updated dependencies [9614f64]
35
+ - @forge/manifest@4.8.0-next.3
36
+
3
37
  ## 3.8.0-next.6
4
38
 
5
39
  ### Minor Changes
@@ -5353,12 +5353,6 @@ export declare type CreateJiraProjectAndRepositoryRelationshipPayload = Payload
5353
5353
  errors?: Maybe<Array<MutationError>>;
5354
5354
  jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
5355
5355
  };
5356
- export declare type CreatePolarisAnonymousVisitorHashPayload = Payload & {
5357
- __typename?: 'CreatePolarisAnonymousVisitorHashPayload';
5358
- success: Scalars['Boolean'];
5359
- errors?: Maybe<Array<MutationError>>;
5360
- node?: Maybe<PolarisAnonymousVisitorHash>;
5361
- };
5362
5356
  export declare type CreatePolarisCalculatedField = {
5363
5357
  project: Scalars['ID'];
5364
5358
  label: Scalars['String'];
@@ -5981,11 +5975,6 @@ export declare type DeleteJiraProjectAndRepositoryRelationshipPayload = Payload
5981
5975
  success: Scalars['Boolean'];
5982
5976
  errors?: Maybe<Array<MutationError>>;
5983
5977
  };
5984
- export declare type DeletePolarisAnonymousVisitorHashPayload = Payload & {
5985
- __typename?: 'DeletePolarisAnonymousVisitorHashPayload';
5986
- success: Scalars['Boolean'];
5987
- errors?: Maybe<Array<MutationError>>;
5988
- };
5989
5978
  export declare type DeletePolarisDecorationInput = {
5990
5979
  emoji?: Maybe<Scalars['Boolean']>;
5991
5980
  backgroundColor?: Maybe<Scalars['Boolean']>;
@@ -7507,7 +7496,6 @@ export declare type ExtensionContextsFilter = {
7507
7496
  value: Array<Scalars['String']>;
7508
7497
  };
7509
7498
  export declare enum ExtensionContextsFilterType {
7510
- Container = "CONTAINER",
7511
7499
  DataClassificationTag = "DATA_CLASSIFICATION_TAG",
7512
7500
  ExtensionType = "EXTENSION_TYPE",
7513
7501
  PrincipalType = "PRINCIPAL_TYPE"
@@ -12557,7 +12545,8 @@ export declare enum JiraPermissionTagEnum {
12557
12545
  New = "NEW"
12558
12546
  }
12559
12547
  export declare enum JiraPermissionType {
12560
- BrowseProjects = "BROWSE_PROJECTS"
12548
+ BrowseProjects = "BROWSE_PROJECTS",
12549
+ BulkChange = "BULK_CHANGE"
12561
12550
  }
12562
12551
  export declare type JiraPlatformAttachment = JiraAttachment & Node & {
12563
12552
  __typename?: 'JiraPlatformAttachment';
@@ -15315,6 +15304,7 @@ export declare type JiraVersion = Node & {
15315
15304
  epicsForFilter?: Maybe<JiraIssueConnection>;
15316
15305
  canViewVersionDetailsPage?: Maybe<Scalars['Boolean']>;
15317
15306
  warningsCount?: Maybe<Scalars['Long']>;
15307
+ contributors?: Maybe<JiraVersionContributorConnection>;
15318
15308
  releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
15319
15309
  availableSites?: Maybe<JiraReleaseNotesInConfluenceAvailableSitesConnection>;
15320
15310
  relatedWork?: Maybe<JiraVersionRelatedWorkConnection>;
@@ -15356,6 +15346,12 @@ export declare type JiraVersionReleaseNotesArgs = {
15356
15346
  export declare type JiraVersionEpicsForFilterArgs = {
15357
15347
  searchStr?: Maybe<Scalars['String']>;
15358
15348
  };
15349
+ export declare type JiraVersionContributorsArgs = {
15350
+ first?: Maybe<Scalars['Int']>;
15351
+ after?: Maybe<Scalars['String']>;
15352
+ last?: Maybe<Scalars['Int']>;
15353
+ before?: Maybe<Scalars['String']>;
15354
+ };
15359
15355
  export declare type JiraVersionAvailableSitesArgs = {
15360
15356
  first?: Maybe<Scalars['Int']>;
15361
15357
  after?: Maybe<Scalars['String']>;
@@ -15390,6 +15386,16 @@ export declare type JiraVersionConnection = {
15390
15386
  edges?: Maybe<Array<Maybe<JiraVersionEdge>>>;
15391
15387
  errors?: Maybe<Array<QueryError>>;
15392
15388
  };
15389
+ export declare type JiraVersionContributorConnection = {
15390
+ __typename?: 'JiraVersionContributorConnection';
15391
+ pageInfo: PageInfo;
15392
+ edges?: Maybe<Array<Maybe<JiraVersionContributorEdge>>>;
15393
+ };
15394
+ export declare type JiraVersionContributorEdge = {
15395
+ __typename?: 'JiraVersionContributorEdge';
15396
+ node?: Maybe<User>;
15397
+ cursor: Scalars['String'];
15398
+ };
15393
15399
  export declare type JiraVersionCreateMutationInput = {
15394
15400
  projectId: Scalars['ID'];
15395
15401
  name: Scalars['String'];
@@ -16380,8 +16386,6 @@ export declare type Mutation = {
16380
16386
  confluence?: Maybe<ConfluenceMutationApi>;
16381
16387
  updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
16382
16388
  polaris?: Maybe<PolarisMutationNamespace>;
16383
- createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
16384
- deletePolarisAnonymousVisitorHash?: Maybe<DeletePolarisAnonymousVisitorHashPayload>;
16385
16389
  resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
16386
16390
  invokePolarisObject?: Maybe<InvokePolarisObjectPayload>;
16387
16391
  createPolarisComment?: Maybe<CreatePolarisCommentPayload>;
@@ -16613,12 +16617,6 @@ export declare type MutationDeleteJiraProjectAndRepositoryRelationshipArgs = {
16613
16617
  export declare type MutationUpdatePolarisTermsConsentArgs = {
16614
16618
  input: UpdatePolarisTermsConsentInput;
16615
16619
  };
16616
- export declare type MutationCreatePolarisAnonymousVisitorHashArgs = {
16617
- id: Scalars['ID'];
16618
- };
16619
- export declare type MutationDeletePolarisAnonymousVisitorHashArgs = {
16620
- hash: Scalars['String'];
16621
- };
16622
16620
  export declare type MutationResolvePolarisObjectArgs = {
16623
16621
  input: ResolvePolarisObjectInput;
16624
16622
  };
@@ -17546,15 +17544,6 @@ export declare type PolarisAddReactionPayload = Payload & {
17546
17544
  errors?: Maybe<Array<MutationError>>;
17547
17545
  node: Array<PolarisReactionSummary>;
17548
17546
  };
17549
- export declare type PolarisAnonymousVisitorHash = PolarisAnonymousVisitorViewHash;
17550
- export declare type PolarisAnonymousVisitorViewHash = {
17551
- __typename?: 'PolarisAnonymousVisitorViewHash';
17552
- cloudId: Scalars['String'];
17553
- projectId: Scalars['Int'];
17554
- projectKey: Scalars['String'];
17555
- viewId: Scalars['Int'];
17556
- hash: Scalars['String'];
17557
- };
17558
17547
  export declare type PolarisComment = {
17559
17548
  __typename?: 'PolarisComment';
17560
17549
  id: Scalars['ID'];
@@ -18802,7 +18791,6 @@ export declare type Query = {
18802
18791
  confluence?: Maybe<ConfluenceQueryApi>;
18803
18792
  polarisProject?: Maybe<PolarisProject>;
18804
18793
  polarisView?: Maybe<PolarisView>;
18805
- polarisAPIVersion?: Maybe<Scalars['String']>;
18806
18794
  polarisInsights?: Maybe<Array<PolarisInsight>>;
18807
18795
  polarisInsight?: Maybe<PolarisInsight>;
18808
18796
  polarisInsightsWithErrors?: Maybe<Array<PolarisInsight>>;
@@ -18810,11 +18798,7 @@ export declare type Query = {
18810
18798
  polarisLabels?: Maybe<Array<LabelUsage>>;
18811
18799
  polarisTermsConsent?: Maybe<PolarisTermsConsent>;
18812
18800
  polarisSnippetPropertiesConfig?: Maybe<PolarisSnippetPropertiesConfig>;
18813
- polarisIdeas?: Maybe<PolarisIdeas>;
18814
- polarisAnonymousVisitorHash?: Maybe<PolarisAnonymousVisitorHash>;
18815
18801
  polarisCollabToken?: Maybe<PolarisDelegationToken>;
18816
- polarisAnonymousVisitorHashByID?: Maybe<PolarisAnonymousVisitorHash>;
18817
- polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
18818
18802
  polaris?: Maybe<PolarisQueryNamespace>;
18819
18803
  polarisIdeaTemplates?: Maybe<Array<PolarisIdeaTemplate>>;
18820
18804
  polarisViewArrangementInfo?: Maybe<Scalars['JSON']>;
@@ -19062,25 +19046,9 @@ export declare type QueryPolarisSnippetPropertiesConfigArgs = {
19062
19046
  oauthClientId: Scalars['String'];
19063
19047
  groupId: Scalars['String'];
19064
19048
  };
19065
- export declare type QueryPolarisIdeasArgs = {
19066
- project: Scalars['ID'];
19067
- fieldKeys?: Maybe<Array<Scalars['String']>>;
19068
- expand?: Maybe<Array<Scalars['String']>>;
19069
- jql?: Maybe<Scalars['String']>;
19070
- };
19071
- export declare type QueryPolarisAnonymousVisitorHashArgs = {
19072
- hash: Scalars['String'];
19073
- };
19074
19049
  export declare type QueryPolarisCollabTokenArgs = {
19075
19050
  viewID: Scalars['ID'];
19076
19051
  };
19077
- export declare type QueryPolarisAnonymousVisitorHashByIdArgs = {
19078
- id: Scalars['ID'];
19079
- };
19080
- export declare type QueryPolarisLinkedDeliveryTicketsArgs = {
19081
- project: Scalars['ID'];
19082
- issueIds?: Maybe<Array<Scalars['Int']>>;
19083
- };
19084
19052
  export declare type QueryPolarisIdeaTemplatesArgs = {
19085
19053
  project: Scalars['ID'];
19086
19054
  };
@@ -20934,10 +20902,6 @@ export declare type ShepherdCreateAlertPayload = Payload & {
20934
20902
  node?: Maybe<ShepherdAlert>;
20935
20903
  success: Scalars['Boolean'];
20936
20904
  };
20937
- export declare type ShepherdCreateEmailInput = {
20938
- email?: Maybe<Scalars['String']>;
20939
- status?: Maybe<ShepherdSubscriptionStatus>;
20940
- };
20941
20905
  export declare type ShepherdCreateExampleAlertInput = {
20942
20906
  cloudId?: Maybe<Scalars['ID']>;
20943
20907
  orgId?: Maybe<Scalars['ID']>;
@@ -20948,16 +20912,6 @@ export declare type ShepherdCreateExampleAlertPayload = Payload & {
20948
20912
  node?: Maybe<ShepherdAlert>;
20949
20913
  success: Scalars['Boolean'];
20950
20914
  };
20951
- export declare type ShepherdCreateOrganizationInput = {
20952
- enabled?: Maybe<Scalars['Boolean']>;
20953
- id: Scalars['ID'];
20954
- };
20955
- export declare type ShepherdCreateOrganizationPayload = Payload & {
20956
- __typename?: 'ShepherdCreateOrganizationPayload';
20957
- errors?: Maybe<Array<MutationError>>;
20958
- node?: Maybe<ShepherdOrganization>;
20959
- success: Scalars['Boolean'];
20960
- };
20961
20915
  export declare type ShepherdCreateSlackInput = {
20962
20916
  authToken: Scalars['String'];
20963
20917
  callbackURL: Scalars['URL'];
@@ -20965,12 +20919,6 @@ export declare type ShepherdCreateSlackInput = {
20965
20919
  status: ShepherdSubscriptionStatus;
20966
20920
  teamId: Scalars['String'];
20967
20921
  };
20968
- export declare type ShepherdCreateSubscriptionInput = {
20969
- email?: Maybe<ShepherdCreateEmailInput>;
20970
- orgId: Scalars['ID'];
20971
- slack?: Maybe<ShepherdCreateSlackInput>;
20972
- webhook?: Maybe<ShepherdCreateWebhookInput>;
20973
- };
20974
20922
  export declare type ShepherdCreateSubscriptionPayload = Payload & {
20975
20923
  __typename?: 'ShepherdCreateSubscriptionPayload';
20976
20924
  errors?: Maybe<Array<MutationError>>;
@@ -21014,25 +20962,6 @@ export declare type ShepherdDetectionSetting = {
21014
20962
  value: ShepherdDetectionSettingValueType;
21015
20963
  };
21016
20964
  export declare type ShepherdDetectionSettingValueType = ShepherdRateThresholdSetting;
21017
- export declare type ShepherdEmailConnection = {
21018
- __typename?: 'ShepherdEmailConnection';
21019
- edges?: Maybe<Array<Maybe<ShepherdEmailEdge>>>;
21020
- };
21021
- export declare type ShepherdEmailEdge = ShepherdSubscriptionEdge & {
21022
- __typename?: 'ShepherdEmailEdge';
21023
- cursor?: Maybe<Scalars['String']>;
21024
- node?: Maybe<ShepherdEmailSubscription>;
21025
- };
21026
- export declare type ShepherdEmailSubscription = Node & ShepherdSubscription & {
21027
- __typename?: 'ShepherdEmailSubscription';
21028
- createdBy: Scalars['String'];
21029
- createdOn: Scalars['DateTime'];
21030
- email: Scalars['String'];
21031
- id: Scalars['ID'];
21032
- status: ShepherdSubscriptionStatus;
21033
- updatedBy?: Maybe<Scalars['String']>;
21034
- updatedOn?: Maybe<Scalars['DateTime']>;
21035
- };
21036
20965
  export declare type ShepherdGenericMutationErrorExtension = MutationErrorExtension & {
21037
20966
  __typename?: 'ShepherdGenericMutationErrorExtension';
21038
20967
  errorType?: Maybe<Scalars['String']>;
@@ -21066,15 +20995,9 @@ export declare type ShepherdMutation = {
21066
20995
  __typename?: 'ShepherdMutation';
21067
20996
  createAlert?: Maybe<ShepherdCreateAlertPayload>;
21068
20997
  createExampleAlert?: Maybe<ShepherdCreateExampleAlertPayload>;
21069
- createOrganization?: Maybe<ShepherdCreateOrganizationPayload>;
21070
- createSubscription?: Maybe<ShepherdCreateSubscriptionPayload>;
21071
- deleteSubscription?: Maybe<ShepherdSubscriptionMutationPayload>;
21072
20998
  subscription?: Maybe<ShepherdSubscriptionMutations>;
21073
- testSubscription?: Maybe<ShepherdTestSubscriptionPayload>;
21074
20999
  updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
21075
21000
  updateAlerts?: Maybe<ShepherdUpdateAlertsPayload>;
21076
- updateOrganization?: Maybe<ShepherdUpdateOrganizationPayload>;
21077
- updateSubscription?: Maybe<ShepherdUpdateSubscriptionPayload>;
21078
21001
  workspace?: Maybe<ShepherdWorkspaceMutations>;
21079
21002
  };
21080
21003
  export declare type ShepherdMutationCreateAlertArgs = {
@@ -21083,21 +21006,6 @@ export declare type ShepherdMutationCreateAlertArgs = {
21083
21006
  export declare type ShepherdMutationCreateExampleAlertArgs = {
21084
21007
  input: ShepherdCreateExampleAlertInput;
21085
21008
  };
21086
- export declare type ShepherdMutationCreateOrganizationArgs = {
21087
- input: ShepherdCreateOrganizationInput;
21088
- };
21089
- export declare type ShepherdMutationCreateSubscriptionArgs = {
21090
- input: ShepherdCreateSubscriptionInput;
21091
- };
21092
- export declare type ShepherdMutationDeleteSubscriptionArgs = {
21093
- hardDelete?: Maybe<Scalars['Boolean']>;
21094
- orgId: Scalars['ID'];
21095
- subscriptionId: Scalars['ID'];
21096
- };
21097
- export declare type ShepherdMutationTestSubscriptionArgs = {
21098
- orgId: Scalars['ID'];
21099
- subscriptionId: Scalars['ID'];
21100
- };
21101
21009
  export declare type ShepherdMutationUpdateAlertArgs = {
21102
21010
  id: Scalars['ID'];
21103
21011
  input: ShepherdUpdateAlertInput;
@@ -21106,39 +21014,19 @@ export declare type ShepherdMutationUpdateAlertsArgs = {
21106
21014
  ids: Array<Maybe<Scalars['ID']>>;
21107
21015
  input: ShepherdUpdateAlertInput;
21108
21016
  };
21109
- export declare type ShepherdMutationUpdateOrganizationArgs = {
21110
- id: Scalars['ID'];
21111
- input: ShepherdUpdateOrganizationInput;
21112
- };
21113
- export declare type ShepherdMutationUpdateSubscriptionArgs = {
21114
- id: Scalars['ID'];
21115
- input: ShepherdUpdateSubscriptionInput;
21116
- };
21117
21017
  export declare enum ShepherdMutationErrorType {
21118
21018
  BadRequest = "BAD_REQUEST",
21119
21019
  InternalServerError = "INTERNAL_SERVER_ERROR",
21120
21020
  NoProductAccess = "NO_PRODUCT_ACCESS",
21121
21021
  Unauthorized = "UNAUTHORIZED"
21122
21022
  }
21123
- export declare type ShepherdOrganization = {
21124
- __typename?: 'ShepherdOrganization';
21125
- createdOn: Scalars['DateTime'];
21126
- enabled: Scalars['Boolean'];
21127
- id: Scalars['ID'];
21128
- subscriptions?: Maybe<ShepherdSubscriptionsResult>;
21129
- updatedOn?: Maybe<Scalars['DateTime']>;
21130
- };
21131
- export declare type ShepherdOrganizationResult = QueryError | ShepherdOrganization;
21132
21023
  export declare type ShepherdQuery = {
21133
21024
  __typename?: 'ShepherdQuery';
21134
21025
  alert?: Maybe<ShepherdAlertQueries>;
21135
21026
  shepherdActivity?: Maybe<ShepherdActivityResult>;
21136
21027
  shepherdAlert?: Maybe<ShepherdAlertResult>;
21137
- shepherdAlerts?: Maybe<ShepherdAlertsResult>;
21138
21028
  shepherdAppInfo: ShepherdAppInfo;
21139
21029
  shepherdConfig?: Maybe<ShepherdConfigResult>;
21140
- shepherdOrganization?: Maybe<ShepherdOrganizationResult>;
21141
- shepherdSubscriptions?: Maybe<ShepherdSubscriptionsResult>;
21142
21030
  shepherdUser?: Maybe<ShepherdUser>;
21143
21031
  subscriptions?: Maybe<ShepherdSubscriptionsResult>;
21144
21032
  workspace?: Maybe<ShepherdWorkspaceResult>;
@@ -21158,16 +21046,6 @@ export declare type ShepherdQueryShepherdActivityArgs = {
21158
21046
  export declare type ShepherdQueryShepherdAlertArgs = {
21159
21047
  id: Scalars['ID'];
21160
21048
  };
21161
- export declare type ShepherdQueryShepherdAlertsArgs = {
21162
- aaid?: Maybe<Scalars['ID']>;
21163
- orgId: Scalars['ID'];
21164
- };
21165
- export declare type ShepherdQueryShepherdOrganizationArgs = {
21166
- id: Scalars['ID'];
21167
- };
21168
- export declare type ShepherdQueryShepherdSubscriptionsArgs = {
21169
- orgId: Scalars['ID'];
21170
- };
21171
21049
  export declare type ShepherdQueryShepherdUserArgs = {
21172
21050
  id?: Maybe<Scalars['ID']>;
21173
21051
  };
@@ -21293,13 +21171,7 @@ export declare type ShepherdSubscriptionUpdateInput = {
21293
21171
  slack?: Maybe<ShepherdUpdateSlackInput>;
21294
21172
  webhook?: Maybe<ShepherdUpdateWebhookInput>;
21295
21173
  };
21296
- export declare type ShepherdSubscriptionsResult = QueryError | ShepherdEmailConnection | ShepherdSubscriptionConnection | ShepherdWebhookConnection;
21297
- export declare type ShepherdTestSubscriptionPayload = Payload & {
21298
- __typename?: 'ShepherdTestSubscriptionPayload';
21299
- errors?: Maybe<Array<MutationError>>;
21300
- node?: Maybe<ShepherdSubscription>;
21301
- success: Scalars['Boolean'];
21302
- };
21174
+ export declare type ShepherdSubscriptionsResult = QueryError | ShepherdSubscriptionConnection;
21303
21175
  export declare type ShepherdTime = {
21304
21176
  __typename?: 'ShepherdTime';
21305
21177
  end?: Maybe<Scalars['DateTime']>;
@@ -21325,19 +21197,6 @@ export declare type ShepherdUpdateAlertsPayload = Payload & {
21325
21197
  nodes?: Maybe<Array<Maybe<ShepherdAlert>>>;
21326
21198
  success: Scalars['Boolean'];
21327
21199
  };
21328
- export declare type ShepherdUpdateEmailInput = {
21329
- email?: Maybe<ShepherdCreateEmailInput>;
21330
- status?: Maybe<ShepherdSubscriptionStatus>;
21331
- };
21332
- export declare type ShepherdUpdateOrganizationInput = {
21333
- enabled?: Maybe<Scalars['Boolean']>;
21334
- };
21335
- export declare type ShepherdUpdateOrganizationPayload = Payload & {
21336
- __typename?: 'ShepherdUpdateOrganizationPayload';
21337
- errors?: Maybe<Array<MutationError>>;
21338
- node?: Maybe<ShepherdOrganization>;
21339
- success: Scalars['Boolean'];
21340
- };
21341
21200
  export declare type ShepherdUpdateSlackInput = {
21342
21201
  authToken?: Maybe<Scalars['String']>;
21343
21202
  callbackURL?: Maybe<Scalars['URL']>;
@@ -21345,12 +21204,6 @@ export declare type ShepherdUpdateSlackInput = {
21345
21204
  status?: Maybe<ShepherdSubscriptionStatus>;
21346
21205
  teamId?: Maybe<Scalars['String']>;
21347
21206
  };
21348
- export declare type ShepherdUpdateSubscriptionInput = {
21349
- email?: Maybe<ShepherdUpdateEmailInput>;
21350
- orgId: Scalars['ID'];
21351
- slack?: Maybe<ShepherdUpdateSlackInput>;
21352
- webhook?: Maybe<ShepherdUpdateWebhookInput>;
21353
- };
21354
21207
  export declare type ShepherdUpdateSubscriptionPayload = Payload & {
21355
21208
  __typename?: 'ShepherdUpdateSubscriptionPayload';
21356
21209
  errors?: Maybe<Array<MutationError>>;
@@ -21369,10 +21222,6 @@ export declare type ShepherdUser = {
21369
21222
  createdOn?: Maybe<Scalars['DateTime']>;
21370
21223
  user?: Maybe<User>;
21371
21224
  };
21372
- export declare type ShepherdWebhookConnection = {
21373
- __typename?: 'ShepherdWebhookConnection';
21374
- edges?: Maybe<Array<Maybe<ShepherdWebhookEdge>>>;
21375
- };
21376
21225
  export declare enum ShepherdWebhookDestinationType {
21377
21226
  Default = "DEFAULT",
21378
21227
  MicrosoftTeams = "MICROSOFT_TEAMS"
@@ -22473,7 +22322,9 @@ export declare type Toolchain = {
22473
22322
  containers?: Maybe<ToolchainContainerConnection>;
22474
22323
  };
22475
22324
  export declare type ToolchainContainersArgs = {
22476
- workspaceId: Scalars['ID'];
22325
+ cloudId?: Maybe<Scalars['ID']>;
22326
+ providerId?: Maybe<Scalars['String']>;
22327
+ workspaceId?: Maybe<Scalars['ID']>;
22477
22328
  query?: Maybe<Scalars['String']>;
22478
22329
  first?: Maybe<Scalars['Int']>;
22479
22330
  after?: Maybe<Scalars['String']>;
@@ -22789,10 +22640,37 @@ export declare type TrelloBoardViewer = {
22789
22640
  lastSeenAt?: Maybe<Scalars['DateTime']>;
22790
22641
  starred: Scalars['Boolean'];
22791
22642
  };
22643
+ export declare type TrelloLimitProps = {
22644
+ __typename?: 'TrelloLimitProps';
22645
+ disableAt: Scalars['Int'];
22646
+ status: Scalars['String'];
22647
+ warnAt: Scalars['Int'];
22648
+ };
22649
+ export declare type TrelloList = {
22650
+ __typename?: 'TrelloList';
22651
+ closed: Scalars['Boolean'];
22652
+ creationMethod: Scalars['String'];
22653
+ id: Scalars['ID'];
22654
+ limits?: Maybe<TrelloListLimits>;
22655
+ name: Scalars['String'];
22656
+ objectId: Scalars['String'];
22657
+ position: Scalars['Int'];
22658
+ softLimit?: Maybe<Scalars['Int']>;
22659
+ };
22660
+ export declare type TrelloListCardLimits = {
22661
+ __typename?: 'TrelloListCardLimits';
22662
+ openPerList?: Maybe<TrelloLimitProps>;
22663
+ totalPerList?: Maybe<TrelloLimitProps>;
22664
+ };
22665
+ export declare type TrelloListLimits = {
22666
+ __typename?: 'TrelloListLimits';
22667
+ cards?: Maybe<TrelloListCardLimits>;
22668
+ };
22792
22669
  export declare type TrelloQueryApi = {
22793
22670
  __typename?: 'TrelloQueryApi';
22794
22671
  board?: Maybe<TrelloBoard>;
22795
22672
  echo: Scalars['String'];
22673
+ list?: Maybe<TrelloList>;
22796
22674
  recentBoardsByIds: Array<Maybe<TrelloBoard>>;
22797
22675
  templateCategories: Array<TrelloTemplateGalleryCategory>;
22798
22676
  templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
@@ -22801,6 +22679,9 @@ export declare type TrelloQueryApi = {
22801
22679
  export declare type TrelloQueryApiBoardArgs = {
22802
22680
  id: Scalars['ID'];
22803
22681
  };
22682
+ export declare type TrelloQueryApiListArgs = {
22683
+ id: Scalars['ID'];
22684
+ };
22804
22685
  export declare type TrelloQueryApiRecentBoardsByIdsArgs = {
22805
22686
  ids: Array<Scalars['ID']>;
22806
22687
  };