@forge/cli-shared 3.20.4-next.3-experimental-5c9420a → 3.20.4-next.4
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,24 +1,20 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 3.20.4-next.
|
|
3
|
+
## 3.20.4-next.4
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
|
|
9
|
-
- @sentry/node
|
|
7
|
+
- cde16c5: Bumping dependencies via Renovate:
|
|
10
8
|
|
|
11
|
-
-
|
|
12
|
-
|
|
13
|
-
- @sentry/node
|
|
9
|
+
- @types/jest
|
|
14
10
|
|
|
15
|
-
-
|
|
11
|
+
- a52c60e: Bumping dependencies via Renovate:
|
|
16
12
|
|
|
17
|
-
-
|
|
13
|
+
- @types/node-fetch
|
|
18
14
|
|
|
19
|
-
- Updated dependencies [
|
|
20
|
-
- Updated dependencies [
|
|
21
|
-
- @forge/manifest@5.0.1-next.
|
|
15
|
+
- Updated dependencies [cde16c5]
|
|
16
|
+
- Updated dependencies [a52c60e]
|
|
17
|
+
- @forge/manifest@5.0.1-next.2
|
|
22
18
|
|
|
23
19
|
## 3.20.4-next.3
|
|
24
20
|
|
|
@@ -2046,6 +2046,7 @@ export type BoardScope = Node & {
|
|
|
2046
2046
|
filteredCardIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
2047
2047
|
globalCardCreateAdditionalFields?: Maybe<GlobalCardCreateAdditionalFields>;
|
|
2048
2048
|
id: Scalars['ID']['output'];
|
|
2049
|
+
issues?: Maybe<HydratingJiraIssueConnection>;
|
|
2049
2050
|
jql?: Maybe<Scalars['String']['output']>;
|
|
2050
2051
|
name?: Maybe<Scalars['String']['output']>;
|
|
2051
2052
|
projectLocation: SoftwareProject;
|
|
@@ -2064,6 +2065,10 @@ export type BoardScopeFilteredCardIdsArgs = {
|
|
|
2064
2065
|
customFilterIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
2065
2066
|
issueIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
2066
2067
|
};
|
|
2068
|
+
export type BoardScopeIssuesArgs = {
|
|
2069
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
2070
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2071
|
+
};
|
|
2067
2072
|
export type BoardScopeSprintArgs = {
|
|
2068
2073
|
sprintId: Scalars['ID']['input'];
|
|
2069
2074
|
};
|
|
@@ -2749,12 +2754,17 @@ export type Column = {
|
|
|
2749
2754
|
id?: Maybe<Scalars['ID']['output']>;
|
|
2750
2755
|
isDone: Scalars['Boolean']['output'];
|
|
2751
2756
|
isInitial: Scalars['Boolean']['output'];
|
|
2757
|
+
issues?: Maybe<HydratingJiraIssueConnection>;
|
|
2752
2758
|
maxCardCount?: Maybe<Scalars['Int']['output']>;
|
|
2753
2759
|
name?: Maybe<Scalars['String']['output']>;
|
|
2754
2760
|
};
|
|
2755
2761
|
export type ColumnCardsArgs = {
|
|
2756
2762
|
customFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2757
2763
|
};
|
|
2764
|
+
export type ColumnIssuesArgs = {
|
|
2765
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
2766
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2767
|
+
};
|
|
2758
2768
|
export type ColumnConfigSwimlane = {
|
|
2759
2769
|
__typename?: 'ColumnConfigSwimlane';
|
|
2760
2770
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -13266,6 +13276,16 @@ export type HostedStorage = {
|
|
|
13266
13276
|
classifications?: Maybe<Array<Classification>>;
|
|
13267
13277
|
locations?: Maybe<Array<Scalars['String']['output']>>;
|
|
13268
13278
|
};
|
|
13279
|
+
export type HydratingJiraIssueConnection = {
|
|
13280
|
+
__typename?: 'HydratingJiraIssueConnection';
|
|
13281
|
+
edges: Array<HydratingJiraIssueEdge>;
|
|
13282
|
+
pageInfo: PageInfo;
|
|
13283
|
+
};
|
|
13284
|
+
export type HydratingJiraIssueEdge = {
|
|
13285
|
+
__typename?: 'HydratingJiraIssueEdge';
|
|
13286
|
+
cursor: Scalars['String']['output'];
|
|
13287
|
+
node?: Maybe<JiraIssue>;
|
|
13288
|
+
};
|
|
13269
13289
|
export type Icon = {
|
|
13270
13290
|
__typename?: 'Icon';
|
|
13271
13291
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -16022,6 +16042,10 @@ export type JiraGroupGrantTypeValue = Node & {
|
|
|
16022
16042
|
export type JiraGroupInput = {
|
|
16023
16043
|
groupName: Scalars['ID']['input'];
|
|
16024
16044
|
};
|
|
16045
|
+
export declare enum JiraGroupsContext {
|
|
16046
|
+
Group = "GROUP",
|
|
16047
|
+
User = "USER"
|
|
16048
|
+
}
|
|
16025
16049
|
export type JiraHierarchyConfigError = {
|
|
16026
16050
|
__typename?: 'JiraHierarchyConfigError';
|
|
16027
16051
|
code?: Maybe<Scalars['String']['output']>;
|
|
@@ -17167,6 +17191,7 @@ export type JiraJqlBuilderRecentlyUsedUsersArgs = {
|
|
|
17167
17191
|
export type JiraJqlBuilderSuggestedGroupsArgs = {
|
|
17168
17192
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
17169
17193
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
17194
|
+
context?: InputMaybe<JiraGroupsContext>;
|
|
17170
17195
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17171
17196
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
17172
17197
|
};
|
|
@@ -18186,6 +18211,20 @@ export type JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload = Paylo
|
|
|
18186
18211
|
export type JiraNaturalLanguageToJqlInput = {
|
|
18187
18212
|
naturalLanguageInput: Scalars['String']['input'];
|
|
18188
18213
|
};
|
|
18214
|
+
export type JiraNavigationUiStateUserProperty = JiraEntityProperty & Node & {
|
|
18215
|
+
__typename?: 'JiraNavigationUIStateUserProperty';
|
|
18216
|
+
id: Scalars['ID']['output'];
|
|
18217
|
+
isLeftSidebarCollapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
18218
|
+
leftSidebarWidth?: Maybe<Scalars['Int']['output']>;
|
|
18219
|
+
propertyKey?: Maybe<Scalars['String']['output']>;
|
|
18220
|
+
rightPanels?: Maybe<JiraRightPanelStateConnection>;
|
|
18221
|
+
};
|
|
18222
|
+
export type JiraNavigationUiStateUserPropertyRightPanelsArgs = {
|
|
18223
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
18224
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
18225
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
18226
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
18227
|
+
};
|
|
18189
18228
|
export type JiraNotificationChannel = {
|
|
18190
18229
|
__typename?: 'JiraNotificationChannel';
|
|
18191
18230
|
channel?: Maybe<JiraNotificationChannelType>;
|
|
@@ -19248,6 +19287,16 @@ export type JiraProjectInput = {
|
|
|
19248
19287
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
19249
19288
|
projectId: Scalars['ID']['input'];
|
|
19250
19289
|
};
|
|
19290
|
+
export declare enum JiraProjectListRightPanelState {
|
|
19291
|
+
Closed = "CLOSED",
|
|
19292
|
+
Open = "OPEN"
|
|
19293
|
+
}
|
|
19294
|
+
export type JiraProjectListRightPanelStateMutationPayload = Payload & {
|
|
19295
|
+
__typename?: 'JiraProjectListRightPanelStateMutationPayload';
|
|
19296
|
+
errors?: Maybe<Array<MutationError>>;
|
|
19297
|
+
projectListRightPanelState?: Maybe<JiraProjectListRightPanelState>;
|
|
19298
|
+
success: Scalars['Boolean']['output'];
|
|
19299
|
+
};
|
|
19251
19300
|
export type JiraProjectListViewTemplateConnection = {
|
|
19252
19301
|
__typename?: 'JiraProjectListViewTemplateConnection';
|
|
19253
19302
|
edges?: Maybe<Array<Maybe<JiraProjectListViewTemplateEdge>>>;
|
|
@@ -19458,6 +19507,7 @@ export type JiraQuery = {
|
|
|
19458
19507
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
19459
19508
|
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
19460
19509
|
naturalLanguageToJql?: Maybe<JiraJqlFromNaturalLanguage>;
|
|
19510
|
+
navigationUIState?: Maybe<JiraNavigationUiStateUserProperty>;
|
|
19461
19511
|
notificationGlobalPreference?: Maybe<JiraNotificationGlobalPreference>;
|
|
19462
19512
|
notificationProjectPreferences?: Maybe<Array<Maybe<JiraNotificationProjectPreferences>>>;
|
|
19463
19513
|
permission?: Maybe<JiraPermission>;
|
|
@@ -19821,6 +19871,9 @@ export type JiraQueryNaturalLanguageToJqlArgs = {
|
|
|
19821
19871
|
cloudId: Scalars['ID']['input'];
|
|
19822
19872
|
input: JiraNaturalLanguageToJqlInput;
|
|
19823
19873
|
};
|
|
19874
|
+
export type JiraQueryNavigationUiStateArgs = {
|
|
19875
|
+
cloudId: Scalars['ID']['input'];
|
|
19876
|
+
};
|
|
19824
19877
|
export type JiraQueryNotificationGlobalPreferenceArgs = {
|
|
19825
19878
|
cloudId: Scalars['ID']['input'];
|
|
19826
19879
|
};
|
|
@@ -20350,6 +20403,24 @@ export type JiraRichTextInput = {
|
|
|
20350
20403
|
adfValue?: InputMaybe<Scalars['JSON']['input']>;
|
|
20351
20404
|
wikiText?: InputMaybe<Scalars['String']['input']>;
|
|
20352
20405
|
};
|
|
20406
|
+
export type JiraRightPanelState = {
|
|
20407
|
+
__typename?: 'JiraRightPanelState';
|
|
20408
|
+
isCollapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
20409
|
+
isMinimised?: Maybe<Scalars['Boolean']['output']>;
|
|
20410
|
+
panelId?: Maybe<Scalars['ID']['output']>;
|
|
20411
|
+
width?: Maybe<Scalars['Int']['output']>;
|
|
20412
|
+
};
|
|
20413
|
+
export type JiraRightPanelStateConnection = {
|
|
20414
|
+
__typename?: 'JiraRightPanelStateConnection';
|
|
20415
|
+
edges?: Maybe<Array<Maybe<JiraRightPanelStateEdge>>>;
|
|
20416
|
+
pageInfo: PageInfo;
|
|
20417
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
20418
|
+
};
|
|
20419
|
+
export type JiraRightPanelStateEdge = {
|
|
20420
|
+
__typename?: 'JiraRightPanelStateEdge';
|
|
20421
|
+
cursor: Scalars['String']['output'];
|
|
20422
|
+
node?: Maybe<JiraRightPanelState>;
|
|
20423
|
+
};
|
|
20353
20424
|
export type JiraRole = Node & {
|
|
20354
20425
|
__typename?: 'JiraRole';
|
|
20355
20426
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -22304,6 +22375,7 @@ export type JiraUserPreferences = {
|
|
|
22304
22375
|
issueViewSidebarResizeRatio?: Maybe<Scalars['String']['output']>;
|
|
22305
22376
|
issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
22306
22377
|
jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
22378
|
+
projectListRightPanelState?: Maybe<JiraProjectListRightPanelState>;
|
|
22307
22379
|
};
|
|
22308
22380
|
export type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
|
|
22309
22381
|
projectKey: Scalars['String']['input'];
|
|
@@ -22313,6 +22385,7 @@ export type JiraUserPreferencesMutation = {
|
|
|
22313
22385
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
22314
22386
|
setJQLBuilderSearchMode?: Maybe<JiraJqlBuilderSearchModeMutationPayload>;
|
|
22315
22387
|
setNaturalLanguageSpotlightTourEnabled?: Maybe<JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload>;
|
|
22388
|
+
setProjectListRightPanelState?: Maybe<JiraProjectListRightPanelStateMutationPayload>;
|
|
22316
22389
|
};
|
|
22317
22390
|
export type JiraUserPreferencesMutationSetIssueNavigatorSearchLayoutArgs = {
|
|
22318
22391
|
searchLayout?: InputMaybe<JiraIssueNavigatorSearchLayout>;
|
|
@@ -22323,6 +22396,9 @@ export type JiraUserPreferencesMutationSetJqlBuilderSearchModeArgs = {
|
|
|
22323
22396
|
export type JiraUserPreferencesMutationSetNaturalLanguageSpotlightTourEnabledArgs = {
|
|
22324
22397
|
isEnabled: Scalars['Boolean']['input'];
|
|
22325
22398
|
};
|
|
22399
|
+
export type JiraUserPreferencesMutationSetProjectListRightPanelStateArgs = {
|
|
22400
|
+
state?: InputMaybe<JiraProjectListRightPanelState>;
|
|
22401
|
+
};
|
|
22326
22402
|
export type JiraUserSegmentation = {
|
|
22327
22403
|
__typename?: 'JiraUserSegmentation';
|
|
22328
22404
|
role?: Maybe<Scalars['String']['output']>;
|
|
@@ -27065,6 +27141,16 @@ export type RoadmapAddLevelOneIssueTypeHealthcheckResolution = {
|
|
|
27065
27141
|
create?: InputMaybe<RoadmapCreateLevelOneIssueType>;
|
|
27066
27142
|
promote?: InputMaybe<RoadmapPromoteLevelOneIssueType>;
|
|
27067
27143
|
};
|
|
27144
|
+
export type RoadmapAriGoalDetails = {
|
|
27145
|
+
__typename?: 'RoadmapAriGoalDetails';
|
|
27146
|
+
ari: Scalars['String']['output'];
|
|
27147
|
+
goal?: Maybe<TownsquareGoal>;
|
|
27148
|
+
issueIds: Array<Scalars['Long']['output']>;
|
|
27149
|
+
};
|
|
27150
|
+
export type RoadmapAriGoals = {
|
|
27151
|
+
__typename?: 'RoadmapAriGoals';
|
|
27152
|
+
goals?: Maybe<Array<RoadmapAriGoalDetails>>;
|
|
27153
|
+
};
|
|
27068
27154
|
export type RoadmapBoardConfiguration = {
|
|
27069
27155
|
__typename?: 'RoadmapBoardConfiguration';
|
|
27070
27156
|
childIssuePlanningMode?: Maybe<RoadmapChildIssuePlanningMode>;
|
|
@@ -27648,6 +27734,7 @@ export type RoadmapsMutationUpdateRoadmapSettingsArgs = {
|
|
|
27648
27734
|
};
|
|
27649
27735
|
export type RoadmapsQuery = {
|
|
27650
27736
|
__typename?: 'RoadmapsQuery';
|
|
27737
|
+
roadmapAriGoals?: Maybe<RoadmapAriGoals>;
|
|
27651
27738
|
roadmapDeriveFields: Array<Maybe<RoadmapField>>;
|
|
27652
27739
|
roadmapFilterConfiguration?: Maybe<RoadmapFilterConfiguration>;
|
|
27653
27740
|
roadmapFilterItems: Array<Scalars['ID']['output']>;
|
|
@@ -27656,6 +27743,9 @@ export type RoadmapsQuery = {
|
|
|
27656
27743
|
roadmapItemByIds?: Maybe<Array<Maybe<RoadmapItem>>>;
|
|
27657
27744
|
roadmapSubtasksByIds?: Maybe<RoadmapSubtasksWithStatusCategories>;
|
|
27658
27745
|
};
|
|
27746
|
+
export type RoadmapsQueryRoadmapAriGoalsArgs = {
|
|
27747
|
+
sourceARI: Scalars['ID']['input'];
|
|
27748
|
+
};
|
|
27659
27749
|
export type RoadmapsQueryRoadmapDeriveFieldsArgs = {
|
|
27660
27750
|
customFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
27661
27751
|
jqlContexts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -30350,6 +30440,7 @@ export type ToolchainAssociateEntitiesInput = {
|
|
|
30350
30440
|
};
|
|
30351
30441
|
export type ToolchainAssociateEntitiesPayload = Payload & {
|
|
30352
30442
|
__typename?: 'ToolchainAssociateEntitiesPayload';
|
|
30443
|
+
associatedEntities?: Maybe<Array<ToolchainAssociatedEntity>>;
|
|
30353
30444
|
entities?: Maybe<Array<ToolchainAssociatedEntity>>;
|
|
30354
30445
|
errors?: Maybe<Array<MutationError>>;
|
|
30355
30446
|
success: Scalars['Boolean']['output'];
|
|
@@ -31010,6 +31101,7 @@ export type TrelloBoardPrefs = {
|
|
|
31010
31101
|
cardAging?: Maybe<Scalars['String']['output']>;
|
|
31011
31102
|
cardCovers?: Maybe<Scalars['Boolean']['output']>;
|
|
31012
31103
|
comments?: Maybe<Scalars['String']['output']>;
|
|
31104
|
+
hiddenPowerUpBoardButtons?: Maybe<Array<TrelloPowerUp>>;
|
|
31013
31105
|
hideVotes?: Maybe<Scalars['Boolean']['output']>;
|
|
31014
31106
|
invitations?: Maybe<Scalars['String']['output']>;
|
|
31015
31107
|
isTemplate?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -31059,10 +31151,23 @@ export type TrelloBoardUpdatedDeltas = {
|
|
|
31059
31151
|
};
|
|
31060
31152
|
export type TrelloBoardViewer = {
|
|
31061
31153
|
__typename?: 'TrelloBoardViewer';
|
|
31154
|
+
calendarKey?: Maybe<Scalars['String']['output']>;
|
|
31155
|
+
email?: Maybe<TrelloBoardViewerEmail>;
|
|
31062
31156
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
31157
|
+
sidebar?: Maybe<TrelloBoardViewerSidebar>;
|
|
31063
31158
|
starred: Scalars['Boolean']['output'];
|
|
31064
31159
|
subscribed?: Maybe<Scalars['Boolean']['output']>;
|
|
31065
31160
|
};
|
|
31161
|
+
export type TrelloBoardViewerEmail = {
|
|
31162
|
+
__typename?: 'TrelloBoardViewerEmail';
|
|
31163
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
31164
|
+
list?: Maybe<TrelloList>;
|
|
31165
|
+
position?: Maybe<Scalars['String']['output']>;
|
|
31166
|
+
};
|
|
31167
|
+
export type TrelloBoardViewerSidebar = {
|
|
31168
|
+
__typename?: 'TrelloBoardViewerSidebar';
|
|
31169
|
+
show?: Maybe<Scalars['Boolean']['output']>;
|
|
31170
|
+
};
|
|
31066
31171
|
export type TrelloCard = Node & {
|
|
31067
31172
|
__typename?: 'TrelloCard';
|
|
31068
31173
|
attachments?: Maybe<TrelloAttachmentConnection>;
|
|
@@ -31553,6 +31658,12 @@ export type TrelloMember = Node & {
|
|
|
31553
31658
|
url?: Maybe<Scalars['String']['output']>;
|
|
31554
31659
|
user?: Maybe<User>;
|
|
31555
31660
|
username?: Maybe<Scalars['String']['output']>;
|
|
31661
|
+
workspaces?: Maybe<TrelloMemberWorkspaceConnection>;
|
|
31662
|
+
};
|
|
31663
|
+
export type TrelloMemberWorkspacesArgs = {
|
|
31664
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31665
|
+
filter: TrelloMemberWorkspaceFilter;
|
|
31666
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31556
31667
|
};
|
|
31557
31668
|
export type TrelloMemberConnection = {
|
|
31558
31669
|
__typename?: 'TrelloMemberConnection';
|
|
@@ -31571,6 +31682,21 @@ export type TrelloMemberNonPublicData = {
|
|
|
31571
31682
|
fullName?: Maybe<Scalars['String']['output']>;
|
|
31572
31683
|
initials?: Maybe<Scalars['String']['output']>;
|
|
31573
31684
|
};
|
|
31685
|
+
export type TrelloMemberWorkspaceConnection = {
|
|
31686
|
+
__typename?: 'TrelloMemberWorkspaceConnection';
|
|
31687
|
+
edges?: Maybe<Array<TrelloMemberWorkspaceEdge>>;
|
|
31688
|
+
nodes?: Maybe<Array<TrelloWorkspace>>;
|
|
31689
|
+
pageInfo: PageInfo;
|
|
31690
|
+
};
|
|
31691
|
+
export type TrelloMemberWorkspaceEdge = {
|
|
31692
|
+
__typename?: 'TrelloMemberWorkspaceEdge';
|
|
31693
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
31694
|
+
node?: Maybe<TrelloWorkspace>;
|
|
31695
|
+
};
|
|
31696
|
+
export type TrelloMemberWorkspaceFilter = {
|
|
31697
|
+
membershipType: TrelloWorkspaceMembershipType;
|
|
31698
|
+
tier: TrelloWorkspaceTier;
|
|
31699
|
+
};
|
|
31574
31700
|
export type TrelloMutationApi = {
|
|
31575
31701
|
__typename?: 'TrelloMutationApi';
|
|
31576
31702
|
addHello?: Maybe<TrelloAddHelloPayload>;
|
|
@@ -31952,6 +32078,9 @@ export type TrelloWorkspacePrefs = {
|
|
|
31952
32078
|
orgInviteRestrict?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
31953
32079
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
31954
32080
|
};
|
|
32081
|
+
export declare enum TrelloWorkspaceTier {
|
|
32082
|
+
Paid = "PAID"
|
|
32083
|
+
}
|
|
31955
32084
|
export type TunnelDefinitionsInput = {
|
|
31956
32085
|
customUI?: InputMaybe<Array<InputMaybe<CustomUiTunnelDefinitionInput>>>;
|
|
31957
32086
|
faasTunnelUrl?: InputMaybe<Scalars['URL']['input']>;
|