@forge/cli-shared 3.17.3-next.3 → 3.18.0-next.11

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,72 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.18.0-next.11
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [00b3e6cb]
8
+ - @forge/manifest@4.20.0-next.7
9
+
10
+ ## 3.18.0-next.10
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [a8ff99b1]
15
+ - @forge/manifest@4.20.0-next.6
16
+
17
+ ## 3.18.0-next.9
18
+
19
+ ### Patch Changes
20
+
21
+ - ccc113ec: Bumping dependencies via Renovate:
22
+
23
+ - @types/node
24
+
25
+ - 934c16e2: Bumping dependencies via Renovate:
26
+
27
+ - @atlassian/xen-test-util
28
+
29
+ - Updated dependencies [ccc113ec]
30
+ - @forge/manifest@4.20.0-next.5
31
+
32
+ ## 3.18.0-next.8
33
+
34
+ ### Patch Changes
35
+
36
+ - 45147109: Bumping dependencies via Renovate:
37
+
38
+ - @sentry/node
39
+
40
+ ## 3.18.0-next.7
41
+
42
+ ### Patch Changes
43
+
44
+ - 9f70463: Bumping dependencies via Renovate:
45
+
46
+ - node-fetch
47
+
48
+ - Updated dependencies [9f70463]
49
+ - @forge/manifest@4.20.0-next.4
50
+
51
+ ## 3.18.0-next.6
52
+
53
+ ### Minor Changes
54
+
55
+ - 424cf45e: Use CDN packaged wrapper script for the node runtime
56
+
57
+ ## 3.18.0-next.5
58
+
59
+ ### Patch Changes
60
+
61
+ - Updated dependencies [b9a5a33a]
62
+ - @forge/manifest@4.20.0-next.3
63
+
64
+ ## 3.18.0-next.4
65
+
66
+ ### Minor Changes
67
+
68
+ - 9a78932b: Update warning text for outdated CLI version
69
+
3
70
  ## 3.17.3-next.3
4
71
 
5
72
  ### Patch Changes
@@ -637,6 +637,7 @@ export type App = {
637
637
  termsOfService?: Maybe<Scalars['String']>;
638
638
  contactLink?: Maybe<Scalars['String']>;
639
639
  vendorName?: Maybe<Scalars['String']>;
640
+ installationsByContexts?: Maybe<AppInstallationByIndexConnection>;
640
641
  environments: Array<AppEnvironment>;
641
642
  environmentByKey?: Maybe<AppEnvironment>;
642
643
  tags?: Maybe<Array<Scalars['String']>>;
@@ -644,6 +645,13 @@ export type App = {
644
645
  marketplaceApp?: Maybe<MarketplaceApp>;
645
646
  deployments?: Maybe<AppDeploymentConnection>;
646
647
  };
648
+ export type AppInstallationsByContextsArgs = {
649
+ contextIds: Array<Scalars['ID']>;
650
+ first?: Maybe<Scalars['Int']>;
651
+ last?: Maybe<Scalars['Int']>;
652
+ before?: Maybe<Scalars['String']>;
653
+ after?: Maybe<Scalars['String']>;
654
+ };
647
655
  export type AppEnvironmentByKeyArgs = {
648
656
  key: Scalars['String'];
649
657
  };
@@ -1022,10 +1030,11 @@ export type AppLog = FunctionInvocationMetadata & Node & {
1022
1030
  moduleType?: Maybe<Scalars['String']>;
1023
1031
  startTime?: Maybe<Scalars['String']>;
1024
1032
  traceId?: Maybe<Scalars['ID']>;
1025
- appLogLines?: Maybe<AppLogLines>;
1033
+ appLogLines?: Maybe<AppLogLineConnection>;
1026
1034
  };
1027
1035
  export type AppLogAppLogLinesArgs = {
1028
1036
  first?: Maybe<Scalars['Int']>;
1037
+ query?: Maybe<LogQueryInput>;
1029
1038
  };
1030
1039
  export type AppLogConnection = {
1031
1040
  __typename?: 'AppLogConnection';
@@ -6676,6 +6685,19 @@ export type CreatedSprint = {
6676
6685
  canUpdateSprint?: Maybe<Scalars['Boolean']>;
6677
6686
  };
6678
6687
  export type CsApp = App | CsConnectApp;
6688
+ export type CsAppNetworkEgressPermission = {
6689
+ __typename?: 'CsAppNetworkEgressPermission';
6690
+ type?: Maybe<CsAppNetworkPermissionType>;
6691
+ addresses: Array<Scalars['String']>;
6692
+ };
6693
+ export declare enum CsAppNetworkPermissionType {
6694
+ Connect = "CONNECT"
6695
+ }
6696
+ export type CsAppPermission = {
6697
+ __typename?: 'CsAppPermission';
6698
+ scopes: Array<CsConnectScope>;
6699
+ egress: Array<CsAppNetworkEgressPermission>;
6700
+ };
6679
6701
  export type CsAppsInstalledInContextsConnection = {
6680
6702
  __typename?: 'CsAppsInstalledInContextsConnection';
6681
6703
  edges: Array<CsAppsInstalledInContextsEdge>;
@@ -6708,8 +6730,25 @@ export type CsConnectApp = {
6708
6730
  __typename?: 'CsConnectApp';
6709
6731
  id: Scalars['ID'];
6710
6732
  name: Scalars['String'];
6711
- distributionStatus: Scalars['String'];
6733
+ description: Scalars['String'];
6712
6734
  vendorName?: Maybe<Scalars['String']>;
6735
+ distributionStatus: Scalars['String'];
6736
+ installations: Array<CsConnectInstallations>;
6737
+ };
6738
+ export type CsConnectAppVersion = {
6739
+ __typename?: 'CsConnectAppVersion';
6740
+ version: Scalars['String'];
6741
+ permissions: Array<CsAppPermission>;
6742
+ };
6743
+ export type CsConnectInstallations = {
6744
+ __typename?: 'CsConnectInstallations';
6745
+ appVersion: CsConnectAppVersion;
6746
+ };
6747
+ export type CsConnectScope = {
6748
+ __typename?: 'CsConnectScope';
6749
+ key: Scalars['String'];
6750
+ name: Scalars['String'];
6751
+ description: Scalars['String'];
6713
6752
  };
6714
6753
  export type CumulativeFlowDiagram = {
6715
6754
  __typename?: 'CumulativeFlowDiagram';
@@ -7529,6 +7568,7 @@ export type DevOps = {
7529
7568
  summarisedEntities?: Maybe<Array<Maybe<DevOpsSummarisedEntities>>>;
7530
7569
  providers?: Maybe<DevOpsProviders>;
7531
7570
  providersByIds?: Maybe<Array<Maybe<DevOpsDataProvider>>>;
7571
+ providersByDomain?: Maybe<Array<Maybe<DevOpsDataProvider>>>;
7532
7572
  ariGraph?: Maybe<AriGraph>;
7533
7573
  graph?: Maybe<Graph>;
7534
7574
  toolchain?: Maybe<Toolchain>;
@@ -7551,6 +7591,11 @@ export type DevOpsProvidersByIdsArgs = {
7551
7591
  providerIds?: Maybe<Array<Scalars['String']>>;
7552
7592
  providerTypes?: Maybe<Array<DevOpsProviderType>>;
7553
7593
  };
7594
+ export type DevOpsProvidersByDomainArgs = {
7595
+ id: Scalars['ID'];
7596
+ providerDomain: Scalars['String'];
7597
+ providerTypes?: Maybe<Array<DevOpsProviderType>>;
7598
+ };
7554
7599
  export type DevOpsAvatar = {
7555
7600
  __typename?: 'DevOpsAvatar';
7556
7601
  url?: Maybe<Scalars['URL']>;
@@ -11117,6 +11162,7 @@ export type HelpObjectStoreCreateEntityMappingPayload = Payload & {
11117
11162
  errors?: Maybe<Array<MutationError>>;
11118
11163
  entityMappingDetails?: Maybe<Array<HelpObjectStoreSuccessfullyCreatedEntityMappingDetail>>;
11119
11164
  };
11165
+ export type HelpObjectStoreHelpCenterSearchResult = HelpObjectStoreSearchResult | HelpObjectStoreQueryError;
11120
11166
  export type HelpObjectStoreHelpObject = {
11121
11167
  id: Scalars['ID'];
11122
11168
  ari: Scalars['ID'];
@@ -11151,6 +11197,7 @@ export type HelpObjectStoreQueryApi = {
11151
11197
  requestForms?: Maybe<Array<Maybe<HelpObjectStoreRequestFormResult>>>;
11152
11198
  articles?: Maybe<Array<Maybe<HelpObjectStoreArticleResult>>>;
11153
11199
  channels?: Maybe<Array<Maybe<HelpObjectStoreChannelResult>>>;
11200
+ searchHelpObjects?: Maybe<Array<Maybe<HelpObjectStoreHelpCenterSearchResult>>>;
11154
11201
  };
11155
11202
  export type HelpObjectStoreQueryApiRequestFormsArgs = {
11156
11203
  ids: Array<Scalars['ID']>;
@@ -11161,6 +11208,9 @@ export type HelpObjectStoreQueryApiArticlesArgs = {
11161
11208
  export type HelpObjectStoreQueryApiChannelsArgs = {
11162
11209
  ids: Array<Scalars['ID']>;
11163
11210
  };
11211
+ export type HelpObjectStoreQueryApiSearchHelpObjectsArgs = {
11212
+ searchInput: HelpObjectStoreSearchInput;
11213
+ };
11164
11214
  export type HelpObjectStoreQueryError = {
11165
11215
  __typename?: 'HelpObjectStoreQueryError';
11166
11216
  ari: Scalars['ID'];
@@ -11181,6 +11231,40 @@ export type HelpObjectStoreRequestForm = HelpObjectStoreHelpObject & Node & {
11181
11231
  containerKey?: Maybe<Scalars['String']>;
11182
11232
  };
11183
11233
  export type HelpObjectStoreRequestFormResult = HelpObjectStoreRequestForm | HelpObjectStoreQueryError;
11234
+ export declare enum HelpObjectStoreSearchEntityType {
11235
+ Article = "ARTICLE",
11236
+ RequestForm = "REQUEST_FORM"
11237
+ }
11238
+ export type HelpObjectStoreSearchInput = {
11239
+ cloudId: Scalars['ID'];
11240
+ queryTerm: Scalars['String'];
11241
+ resultLimit?: Maybe<Scalars['Int']>;
11242
+ entityType: HelpObjectStoreSearchEntityType;
11243
+ };
11244
+ export type HelpObjectStoreSearchMetaData = {
11245
+ __typename?: 'HelpObjectStoreSearchMetaData';
11246
+ searchScore: Scalars['Int'];
11247
+ };
11248
+ export type HelpObjectStoreSearchResult = Node & {
11249
+ __typename?: 'HelpObjectStoreSearchResult';
11250
+ id: Scalars['ID'];
11251
+ entityId: Scalars['String'];
11252
+ entityType: Scalars['String'];
11253
+ title: Scalars['String'];
11254
+ description: Scalars['String'];
11255
+ displayLink: Scalars['String'];
11256
+ iconUrl: Scalars['String'];
11257
+ containerId: Scalars['String'];
11258
+ containerDisplayName?: Maybe<Scalars['String']>;
11259
+ isExternal: Scalars['Boolean'];
11260
+ metaData?: Maybe<HelpObjectStoreSearchMetaData>;
11261
+ };
11262
+ export declare enum HelpObjectStoreSearchableEntityType {
11263
+ RequestForm = "REQUEST_FORM",
11264
+ Article = "ARTICLE",
11265
+ Channel = "CHANNEL",
11266
+ Portal = "PORTAL"
11267
+ }
11184
11268
  export type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
11185
11269
  __typename?: 'HelpObjectStoreSuccessfullyCreatedEntityMappingDetail';
11186
11270
  ari: Scalars['ID'];
@@ -11315,7 +11399,6 @@ export type InfluentsNotificationItem = {
11315
11399
  export type InfluentsNotificationMutation = {
11316
11400
  __typename?: 'InfluentsNotificationMutation';
11317
11401
  markNotificationsAsRead?: Maybe<Scalars['String']>;
11318
- markNotificationsAsUnread?: Maybe<Scalars['String']>;
11319
11402
  markNotificationsByGroupIdAsRead?: Maybe<Scalars['String']>;
11320
11403
  markNotificationsByGroupIdAsUnread?: Maybe<Scalars['String']>;
11321
11404
  markNotificationsByIdsAsRead?: Maybe<Scalars['String']>;
@@ -11330,21 +11413,14 @@ export type InfluentsNotificationMutationMarkNotificationsAsReadArgs = {
11330
11413
  beforeInclusive?: Maybe<Scalars['String']>;
11331
11414
  beforeInclusiveTimestamp?: Maybe<Scalars['String']>;
11332
11415
  };
11333
- export type InfluentsNotificationMutationMarkNotificationsAsUnreadArgs = {
11334
- category?: Maybe<InfluentsNotificationCategory>;
11335
- product?: Maybe<Scalars['String']>;
11336
- workspaceId?: Maybe<Scalars['String']>;
11337
- beforeInclusive?: Maybe<Scalars['String']>;
11338
- beforeInclusiveTimestamp?: Maybe<Scalars['String']>;
11339
- };
11340
11416
  export type InfluentsNotificationMutationMarkNotificationsByGroupIdAsReadArgs = {
11341
11417
  category?: Maybe<InfluentsNotificationCategory>;
11342
- groupId?: Maybe<Scalars['String']>;
11418
+ groupId: Scalars['String'];
11343
11419
  beforeInclusive?: Maybe<Scalars['String']>;
11344
11420
  };
11345
11421
  export type InfluentsNotificationMutationMarkNotificationsByGroupIdAsUnreadArgs = {
11346
11422
  category?: Maybe<InfluentsNotificationCategory>;
11347
- groupId?: Maybe<Scalars['String']>;
11423
+ groupId: Scalars['String'];
11348
11424
  beforeInclusive?: Maybe<Scalars['String']>;
11349
11425
  };
11350
11426
  export type InfluentsNotificationMutationMarkNotificationsByIdsAsReadArgs = {
@@ -13732,6 +13808,7 @@ export type JiraIssue = Node & {
13732
13808
  isResolved?: Maybe<Scalars['Boolean']>;
13733
13809
  fields?: Maybe<JiraIssueFieldConnection>;
13734
13810
  fieldsById?: Maybe<JiraIssueFieldConnection>;
13811
+ fieldsByIdOrAlias?: Maybe<Array<Maybe<JiraIssueField>>>;
13735
13812
  comments?: Maybe<JiraCommentConnection>;
13736
13813
  worklogs?: Maybe<JiraWorkLogConnection>;
13737
13814
  attachments?: Maybe<JiraAttachmentConnection>;
@@ -13769,6 +13846,10 @@ export type JiraIssueFieldsByIdArgs = {
13769
13846
  last?: Maybe<Scalars['Int']>;
13770
13847
  before?: Maybe<Scalars['String']>;
13771
13848
  };
13849
+ export type JiraIssueFieldsByIdOrAliasArgs = {
13850
+ idsOrAliases: Array<Maybe<Scalars['String']>>;
13851
+ ignoreMissingFields?: Maybe<Scalars['Boolean']>;
13852
+ };
13772
13853
  export type JiraIssueCommentsArgs = {
13773
13854
  first?: Maybe<Scalars['Int']>;
13774
13855
  after?: Maybe<Scalars['String']>;
@@ -14554,6 +14635,9 @@ export type JiraIssueSearchViewPayload = Payload & {
14554
14635
  errors?: Maybe<Array<MutationError>>;
14555
14636
  view?: Maybe<JiraIssueSearchView>;
14556
14637
  };
14638
+ export type JiraIssueTransitionFieldLevelInput = {
14639
+ JiraSingleSelectField?: Maybe<Array<JiraUpdateSingleSelectFieldInput>>;
14640
+ };
14557
14641
  export declare enum JiraIssueTransitionLayoutMessageType {
14558
14642
  Error = "ERROR",
14559
14643
  Warn = "WARN",
@@ -14575,6 +14659,11 @@ export type JiraIssueTransitionModal = {
14575
14659
  messages?: Maybe<Array<Maybe<JiraIssueTransitionMessage>>>;
14576
14660
  issue?: Maybe<JiraIssue>;
14577
14661
  };
14662
+ export type JiraIssueTransitionResponse = Payload & {
14663
+ __typename?: 'JiraIssueTransitionResponse';
14664
+ success: Scalars['Boolean'];
14665
+ errors?: Maybe<Array<MutationError>>;
14666
+ };
14578
14667
  export type JiraIssueType = Node & {
14579
14668
  __typename?: 'JiraIssueType';
14580
14669
  id: Scalars['ID'];
@@ -15147,6 +15236,10 @@ export declare enum JiraJqlViewContext {
15147
15236
  Jwm = "JWM",
15148
15237
  ShadowRequest = "SHADOW_REQUEST"
15149
15238
  }
15239
+ export type JiraJwmField = {
15240
+ __typename?: 'JiraJwmField';
15241
+ encryptedData?: Maybe<Scalars['String']>;
15242
+ };
15150
15243
  export type JiraLabel = {
15151
15244
  __typename?: 'JiraLabel';
15152
15245
  labelId?: Maybe<Scalars['String']>;
@@ -15452,6 +15545,7 @@ export type JiraMutation = {
15452
15545
  updateJiraVersion?: Maybe<JiraUpdateVersionPayload>;
15453
15546
  updateJiraVersionDriver?: Maybe<JiraUpdateVersionPayload>;
15454
15547
  replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
15548
+ makeTransition?: Maybe<JiraIssueTransitionResponse>;
15455
15549
  userPreferences?: Maybe<JiraUserPreferencesMutation>;
15456
15550
  updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
15457
15551
  createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
@@ -15576,6 +15670,9 @@ export type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
15576
15670
  id: Scalars['ID'];
15577
15671
  input: JiraReplaceIssueSearchViewFieldSetsInput;
15578
15672
  };
15673
+ export type JiraMutationMakeTransitionArgs = {
15674
+ input: JiraUpdateIssueTransitionInput;
15675
+ };
15579
15676
  export type JiraMutationUserPreferencesArgs = {
15580
15677
  cloudId: Scalars['ID'];
15581
15678
  };
@@ -19081,6 +19178,13 @@ export type JiraSubmitBulkOperationProgress = Node & {
19081
19178
  taskId: Scalars['String'];
19082
19179
  submittedTime: Scalars['DateTime'];
19083
19180
  };
19181
+ export type JiraSubscription = {
19182
+ __typename?: 'JiraSubscription';
19183
+ onJwmFieldMutation?: Maybe<JiraJwmField>;
19184
+ };
19185
+ export type JiraSubscriptionOnJwmFieldMutationArgs = {
19186
+ siteId: Scalars['ID'];
19187
+ };
19084
19188
  export type JiraSubtasksField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
19085
19189
  __typename?: 'JiraSubtasksField';
19086
19190
  id: Scalars['ID'];
@@ -19378,6 +19482,11 @@ export type JiraUpdateGlobalPreferencesPayload = Payload & {
19378
19482
  errors?: Maybe<Array<MutationError>>;
19379
19483
  preferences?: Maybe<JiraNotificationPreferences>;
19380
19484
  };
19485
+ export type JiraUpdateIssueTransitionInput = {
19486
+ issueId: Scalars['ID'];
19487
+ transitionId: Scalars['Int'];
19488
+ fieldInputs?: Maybe<JiraIssueTransitionFieldLevelInput>;
19489
+ };
19381
19490
  export type JiraUpdateLabelsFieldInput = {
19382
19491
  id: Scalars['ID'];
19383
19492
  operations: Array<JiraLabelsFieldOperationInput>;
@@ -20440,6 +20549,9 @@ export type LogQueryInput = {
20440
20549
  installationContexts?: Maybe<Array<Scalars['ID']>>;
20441
20550
  functionKey?: Maybe<Scalars['String']>;
20442
20551
  appVersion?: Maybe<Scalars['String']>;
20552
+ lvl?: Maybe<Array<Maybe<Scalars['String']>>>;
20553
+ msg?: Maybe<Scalars['String']>;
20554
+ functionKeys?: Maybe<Array<Maybe<Scalars['String']>>>;
20443
20555
  dates?: Maybe<DateSearchInput>;
20444
20556
  };
20445
20557
  export type MarketplaceApp = {
@@ -20867,11 +20979,29 @@ export declare enum MembershipState {
20867
20979
  Alumni = "ALUMNI",
20868
20980
  RequestingToJoin = "REQUESTING_TO_JOIN"
20869
20981
  }
20982
+ export type Migration = {
20983
+ __typename?: 'Migration';
20984
+ id: Scalars['ID'];
20985
+ estimation?: Maybe<MigrationEstimation>;
20986
+ };
20987
+ export type MigrationEstimation = {
20988
+ __typename?: 'MigrationEstimation';
20989
+ lower: Scalars['Float'];
20990
+ middle: Scalars['Float'];
20991
+ upper: Scalars['Float'];
20992
+ };
20870
20993
  export type MigrationKeys = {
20871
20994
  __typename?: 'MigrationKeys';
20872
20995
  jira: Scalars['String'];
20873
20996
  confluence: Scalars['String'];
20874
20997
  };
20998
+ export type MigrationQuery = {
20999
+ __typename?: 'MigrationQuery';
21000
+ migration?: Maybe<Migration>;
21001
+ };
21002
+ export type MigrationQueryMigrationArgs = {
21003
+ migrationId: Scalars['ID'];
21004
+ };
20875
21005
  export type MoveCardOutput = {
20876
21006
  __typename?: 'MoveCardOutput';
20877
21007
  issuesWereTransitioned?: Maybe<Scalars['Boolean']>;
@@ -23451,6 +23581,7 @@ export type Query = {
23451
23581
  productListing?: Maybe<ProductListingResult>;
23452
23582
  productListings: Array<ProductListingResult>;
23453
23583
  marketplaceAppTrustInformation?: Maybe<MarketplaceAppTrustInformationResult>;
23584
+ migration: MigrationQuery;
23454
23585
  compass?: Maybe<CompassCatalogQueryApi>;
23455
23586
  notifications?: Maybe<InfluentsNotificationQuery>;
23456
23587
  extensionsEcho?: Maybe<Scalars['String']>;
@@ -23854,6 +23985,9 @@ export type QueryAppLogLinesArgs = {
23854
23985
  first?: Maybe<Scalars['Int']>;
23855
23986
  after?: Maybe<Scalars['String']>;
23856
23987
  invocation: Scalars['ID'];
23988
+ appId?: Maybe<Scalars['String']>;
23989
+ environmentId?: Maybe<Scalars['String']>;
23990
+ query?: Maybe<LogQueryInput>;
23857
23991
  };
23858
23992
  export type QueryDeveloperLogAccessArgs = {
23859
23993
  contextIds: Array<Scalars['ID']>;
@@ -26518,6 +26652,7 @@ export type Subscription = {
26518
26652
  trello: TrelloSubscriptionApi;
26519
26653
  devOps?: Maybe<AriGraphSubscriptions>;
26520
26654
  onJiraIssueCreatedForUser?: Maybe<JiraOnIssueCreatedForUserResponseType>;
26655
+ jira?: Maybe<JiraSubscription>;
26521
26656
  testing?: Maybe<TestingSubscription>;
26522
26657
  sandbox: SandboxSubscription;
26523
26658
  };
@@ -26749,6 +26884,12 @@ export type SupportRequestHierarchyRequests = {
26749
26884
  total: Scalars['Int'];
26750
26885
  page: Array<SupportRequestHierarchyRequest>;
26751
26886
  };
26887
+ export type SupportRequestIdentityUser = {
26888
+ __typename?: 'SupportRequestIdentityUser';
26889
+ accountId?: Maybe<Scalars['ID']>;
26890
+ name: Scalars['String'];
26891
+ picture?: Maybe<Scalars['String']>;
26892
+ };
26752
26893
  export type SupportRequestLastComment = {
26753
26894
  __typename?: 'SupportRequestLastComment';
26754
26895
  offset: Scalars['Int'];
@@ -26891,7 +27032,7 @@ export type SupportRequestUpdateInput = {
26891
27032
  };
26892
27033
  export type SupportRequestUser = {
26893
27034
  __typename?: 'SupportRequestUser';
26894
- user?: Maybe<User>;
27035
+ user?: Maybe<SupportRequestIdentityUser>;
26895
27036
  username?: Maybe<Scalars['String']>;
26896
27037
  email?: Maybe<Scalars['String']>;
26897
27038
  displayName?: Maybe<Scalars['String']>;
@@ -27575,6 +27716,7 @@ export type TownsquareProjectState = {
27575
27716
  export declare enum TownsquareProjectStateValue {
27576
27717
  Archived = "archived",
27577
27718
  AtRisk = "at_risk",
27719
+ Cancelled = "cancelled",
27578
27720
  Done = "done",
27579
27721
  OffTrack = "off_track",
27580
27722
  OnTrack = "on_track",
@@ -27734,6 +27876,7 @@ export type TrelloBoard = Node & {
27734
27876
  closed: Scalars['Boolean'];
27735
27877
  creationMethod?: Maybe<Scalars['String']>;
27736
27878
  description?: Maybe<TrelloDescription>;
27879
+ enterprise?: Maybe<TrelloEnterprise>;
27737
27880
  enterpriseOwned: Scalars['Boolean'];
27738
27881
  galleryInfo?: Maybe<TrelloTemplateGalleryItemInfo>;
27739
27882
  id: Scalars['ID'];
@@ -28228,6 +28371,12 @@ export type TrelloDescriptionDataEmojisArgs = {
28228
28371
  after?: Maybe<Scalars['String']>;
28229
28372
  first?: Maybe<Scalars['Int']>;
28230
28373
  };
28374
+ export type TrelloEnterprise = {
28375
+ __typename?: 'TrelloEnterprise';
28376
+ displayName?: Maybe<Scalars['String']>;
28377
+ id: Scalars['ID'];
28378
+ objectId: Scalars['ID'];
28379
+ };
28231
28380
  export type TrelloHelloInput = {
28232
28381
  hello: Scalars['String'];
28233
28382
  };
@@ -28366,6 +28515,7 @@ export type TrelloMember = Node & {
28366
28515
  avatarUrl?: Maybe<Scalars['String']>;
28367
28516
  bio?: Maybe<Scalars['String']>;
28368
28517
  confirmed?: Maybe<Scalars['Boolean']>;
28518
+ enterprise?: Maybe<TrelloEnterprise>;
28369
28519
  fullName?: Maybe<Scalars['String']>;
28370
28520
  id: Scalars['ID'];
28371
28521
  initials?: Maybe<Scalars['String']>;
@@ -28472,12 +28622,14 @@ export type TrelloQueryApi = {
28472
28622
  board?: Maybe<TrelloBoard>;
28473
28623
  card?: Maybe<TrelloCard>;
28474
28624
  echo?: Maybe<Scalars['String']>;
28625
+ enterprise?: Maybe<TrelloEnterprise>;
28475
28626
  list?: Maybe<TrelloList>;
28476
28627
  member?: Maybe<TrelloMember>;
28477
28628
  recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
28478
28629
  templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
28479
28630
  templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
28480
28631
  templateLanguages?: Maybe<Array<TrelloTemplateGalleryLanguage>>;
28632
+ workspace?: Maybe<TrelloWorkspace>;
28481
28633
  myRecentCards?: Maybe<TrelloRecentCardConnection>;
28482
28634
  };
28483
28635
  export type TrelloQueryApiBoardArgs = {
@@ -28486,6 +28638,9 @@ export type TrelloQueryApiBoardArgs = {
28486
28638
  export type TrelloQueryApiCardArgs = {
28487
28639
  id: Scalars['ID'];
28488
28640
  };
28641
+ export type TrelloQueryApiEnterpriseArgs = {
28642
+ id: Scalars['ID'];
28643
+ };
28489
28644
  export type TrelloQueryApiListArgs = {
28490
28645
  id: Scalars['ID'];
28491
28646
  };
@@ -28500,6 +28655,9 @@ export type TrelloQueryApiTemplateGalleryArgs = {
28500
28655
  filter?: Maybe<TrelloTemplateGalleryFilterInput>;
28501
28656
  first?: Maybe<Scalars['Int']>;
28502
28657
  };
28658
+ export type TrelloQueryApiWorkspaceArgs = {
28659
+ id: Scalars['ID'];
28660
+ };
28503
28661
  export type TrelloQueryApiMyRecentCardsArgs = {
28504
28662
  accountId?: Maybe<Scalars['ID']>;
28505
28663
  first?: Maybe<Scalars['Int']>;
@@ -28655,10 +28813,43 @@ export type TrelloWatchCardPayload = Payload & {
28655
28813
  };
28656
28814
  export type TrelloWorkspace = Node & {
28657
28815
  __typename?: 'TrelloWorkspace';
28816
+ description: Scalars['String'];
28658
28817
  displayName: Scalars['String'];
28659
28818
  id: Scalars['ID'];
28819
+ logoHash?: Maybe<Scalars['String']>;
28820
+ logoUrl?: Maybe<Scalars['String']>;
28821
+ members?: Maybe<TrelloWorkspaceMembershipsConnection>;
28822
+ name: Scalars['String'];
28660
28823
  objectId: Scalars['ID'];
28661
28824
  };
28825
+ export type TrelloWorkspaceMembersArgs = {
28826
+ after?: Maybe<Scalars['String']>;
28827
+ first?: Maybe<Scalars['Int']>;
28828
+ };
28829
+ export type TrelloWorkspaceMembershipEdge = {
28830
+ __typename?: 'TrelloWorkspaceMembershipEdge';
28831
+ cursor?: Maybe<Scalars['String']>;
28832
+ membership?: Maybe<TrelloWorkspaceMembershipInfo>;
28833
+ node?: Maybe<TrelloMember>;
28834
+ };
28835
+ export type TrelloWorkspaceMembershipInfo = {
28836
+ __typename?: 'TrelloWorkspaceMembershipInfo';
28837
+ deactivated?: Maybe<Scalars['Boolean']>;
28838
+ lastActive?: Maybe<Scalars['DateTime']>;
28839
+ objectId: Scalars['ID'];
28840
+ type?: Maybe<TrelloWorkspaceMembershipType>;
28841
+ unconfirmed?: Maybe<Scalars['Boolean']>;
28842
+ };
28843
+ export declare enum TrelloWorkspaceMembershipType {
28844
+ Admin = "ADMIN",
28845
+ Normal = "NORMAL"
28846
+ }
28847
+ export type TrelloWorkspaceMembershipsConnection = {
28848
+ __typename?: 'TrelloWorkspaceMembershipsConnection';
28849
+ edges?: Maybe<Array<TrelloWorkspaceMembershipEdge>>;
28850
+ nodes?: Maybe<Array<TrelloMember>>;
28851
+ pageInfo: PageInfo;
28852
+ };
28662
28853
  export type TunnelDefinitionsInput = {
28663
28854
  faasTunnelUrl?: Maybe<Scalars['URL']>;
28664
28855
  customUI?: Maybe<Array<Maybe<CustomUiTunnelDefinitionInput>>>;