@forge/cli-shared 3.11.3-next.1 → 3.11.3-next.3
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 +13 -0
- package/out/graphql/graphql-types.d.ts +161 -6
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +26 -5
- package/out/ui/text.d.ts +3 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +3 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.11.3-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5eff9d5f: Adding additional error message (in the case of app installations failure) during forge deploy command
|
|
8
|
+
|
|
9
|
+
## 3.11.3-next.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [05d6c05e]
|
|
14
|
+
- @forge/manifest@4.13.0-next.2
|
|
15
|
+
|
|
3
16
|
## 3.11.3-next.1
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -6535,6 +6535,50 @@ export declare type DevOpsDevInfoProvider = DevOpsDataProvider & {
|
|
|
6535
6535
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
6536
6536
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
6537
6537
|
};
|
|
6538
|
+
export declare type DevOpsDocument = {
|
|
6539
|
+
__typename?: 'DevOpsDocument';
|
|
6540
|
+
id: Scalars['ID'];
|
|
6541
|
+
parentId?: Maybe<Scalars['ID']>;
|
|
6542
|
+
providerId?: Maybe<Scalars['String']>;
|
|
6543
|
+
displayName?: Maybe<Scalars['String']>;
|
|
6544
|
+
type?: Maybe<DevOpsDocumentType>;
|
|
6545
|
+
url?: Maybe<Scalars['URL']>;
|
|
6546
|
+
createdAt?: Maybe<Scalars['DateTime']>;
|
|
6547
|
+
createdBy?: Maybe<User>;
|
|
6548
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
6549
|
+
lastUpdatedBy?: Maybe<User>;
|
|
6550
|
+
collaborators?: Maybe<Array<Maybe<User>>>;
|
|
6551
|
+
byteSize?: Maybe<Scalars['Long']>;
|
|
6552
|
+
exportLinks?: Maybe<Array<Maybe<DevOpsDocumentExportLink>>>;
|
|
6553
|
+
hasChildren?: Maybe<Scalars['Boolean']>;
|
|
6554
|
+
};
|
|
6555
|
+
export declare enum DevOpsDocumentCategory {
|
|
6556
|
+
Folder = "FOLDER",
|
|
6557
|
+
Document = "DOCUMENT",
|
|
6558
|
+
Presentation = "PRESENTATION",
|
|
6559
|
+
Spreadsheet = "SPREADSHEET",
|
|
6560
|
+
Image = "IMAGE",
|
|
6561
|
+
Audio = "AUDIO",
|
|
6562
|
+
Video = "VIDEO",
|
|
6563
|
+
Pdf = "PDF",
|
|
6564
|
+
Shortcut = "SHORTCUT",
|
|
6565
|
+
Code = "CODE",
|
|
6566
|
+
Archive = "ARCHIVE",
|
|
6567
|
+
Form = "FORM",
|
|
6568
|
+
Other = "OTHER"
|
|
6569
|
+
}
|
|
6570
|
+
export declare type DevOpsDocumentExportLink = {
|
|
6571
|
+
__typename?: 'DevOpsDocumentExportLink';
|
|
6572
|
+
mimeType?: Maybe<Scalars['String']>;
|
|
6573
|
+
url?: Maybe<Scalars['URL']>;
|
|
6574
|
+
};
|
|
6575
|
+
export declare type DevOpsDocumentType = {
|
|
6576
|
+
__typename?: 'DevOpsDocumentType';
|
|
6577
|
+
category?: Maybe<DevOpsDocumentCategory>;
|
|
6578
|
+
mimeType?: Maybe<Scalars['String']>;
|
|
6579
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
6580
|
+
fileExtension?: Maybe<Scalars['String']>;
|
|
6581
|
+
};
|
|
6538
6582
|
export declare type DevOpsDocumentationProvider = DevOpsDataProvider & {
|
|
6539
6583
|
__typename?: 'DevOpsDocumentationProvider';
|
|
6540
6584
|
id: Scalars['ID'];
|
|
@@ -6543,6 +6587,8 @@ export declare type DevOpsDocumentationProvider = DevOpsDataProvider & {
|
|
|
6543
6587
|
logoUrl?: Maybe<Scalars['URL']>;
|
|
6544
6588
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
6545
6589
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
6590
|
+
check3LOUrl?: Maybe<Scalars['String']>;
|
|
6591
|
+
grant3LOUrl?: Maybe<Scalars['String']>;
|
|
6546
6592
|
linkedContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
6547
6593
|
};
|
|
6548
6594
|
export declare type DevOpsDocumentationProviderLinkedContainersArgs = {
|
|
@@ -7802,6 +7848,7 @@ export declare type Extension = {
|
|
|
7802
7848
|
consentUrl?: Maybe<Scalars['String']>;
|
|
7803
7849
|
currentUserConsent?: Maybe<UserConsentExtension>;
|
|
7804
7850
|
requiresUserConsent?: Maybe<Scalars['Boolean']>;
|
|
7851
|
+
requiresAutoConsent?: Maybe<Scalars['Boolean']>;
|
|
7805
7852
|
};
|
|
7806
7853
|
export declare type ExtensionContext = {
|
|
7807
7854
|
__typename?: 'ExtensionContext';
|
|
@@ -8403,6 +8450,8 @@ export declare enum GrantCheckProduct {
|
|
|
8403
8450
|
}
|
|
8404
8451
|
export declare type Graph = {
|
|
8405
8452
|
__typename?: 'Graph';
|
|
8453
|
+
projectAssociatedPr?: Maybe<GraphJiraPullRequestConnection>;
|
|
8454
|
+
projectAssociatedDeployment?: Maybe<GraphJiraDeploymentConnection>;
|
|
8406
8455
|
issueAssociatedPr?: Maybe<GraphJiraPullRequestConnection>;
|
|
8407
8456
|
issueAssociatedPrInverse?: Maybe<GraphJiraIssueConnection>;
|
|
8408
8457
|
issueAssociatedPrRelationship?: Maybe<GraphIssueAssociatedPrRelationshipConnection>;
|
|
@@ -8412,6 +8461,16 @@ export declare type Graph = {
|
|
|
8412
8461
|
sprintRetrospectivePageRelationship?: Maybe<GraphSprintRetrospectivePageRelationshipConnection>;
|
|
8413
8462
|
sprintRetrospectivePageRelationshipInverse?: Maybe<GraphSprintRetrospectivePageRelationshipConnection>;
|
|
8414
8463
|
};
|
|
8464
|
+
export declare type GraphProjectAssociatedPrArgs = {
|
|
8465
|
+
after?: Maybe<Scalars['String']>;
|
|
8466
|
+
first?: Maybe<Scalars['Int']>;
|
|
8467
|
+
from: Scalars['ID'];
|
|
8468
|
+
};
|
|
8469
|
+
export declare type GraphProjectAssociatedDeploymentArgs = {
|
|
8470
|
+
after?: Maybe<Scalars['String']>;
|
|
8471
|
+
first?: Maybe<Scalars['Int']>;
|
|
8472
|
+
from: Scalars['ID'];
|
|
8473
|
+
};
|
|
8415
8474
|
export declare type GraphIssueAssociatedPrArgs = {
|
|
8416
8475
|
after?: Maybe<Scalars['String']>;
|
|
8417
8476
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -8502,6 +8561,20 @@ export declare type GraphIssueAssociatedPrRelationshipEdge = {
|
|
|
8502
8561
|
cursor?: Maybe<Scalars['String']>;
|
|
8503
8562
|
node: GraphIssueAssociatedPrRelationship;
|
|
8504
8563
|
};
|
|
8564
|
+
export declare type GraphJiraDeployment = Node & {
|
|
8565
|
+
__typename?: 'GraphJiraDeployment';
|
|
8566
|
+
id: Scalars['ID'];
|
|
8567
|
+
};
|
|
8568
|
+
export declare type GraphJiraDeploymentConnection = {
|
|
8569
|
+
__typename?: 'GraphJiraDeploymentConnection';
|
|
8570
|
+
edges: Array<Maybe<GraphJiraDeploymentEdge>>;
|
|
8571
|
+
pageInfo: PageInfo;
|
|
8572
|
+
};
|
|
8573
|
+
export declare type GraphJiraDeploymentEdge = {
|
|
8574
|
+
__typename?: 'GraphJiraDeploymentEdge';
|
|
8575
|
+
cursor?: Maybe<Scalars['String']>;
|
|
8576
|
+
node: GraphJiraDeployment;
|
|
8577
|
+
};
|
|
8505
8578
|
export declare type GraphJiraIssue = Node & {
|
|
8506
8579
|
__typename?: 'GraphJiraIssue';
|
|
8507
8580
|
id: Scalars['ID'];
|
|
@@ -10708,6 +10781,11 @@ export declare type JiraFilterEdge = {
|
|
|
10708
10781
|
node?: Maybe<JiraFilter>;
|
|
10709
10782
|
cursor: Scalars['String'];
|
|
10710
10783
|
};
|
|
10784
|
+
export declare type JiraFilterEditGrantMutationErrorExtension = MutationErrorExtension & {
|
|
10785
|
+
__typename?: 'JiraFilterEditGrantMutationErrorExtension';
|
|
10786
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
10787
|
+
errorType?: Maybe<Scalars['String']>;
|
|
10788
|
+
};
|
|
10711
10789
|
export declare type JiraFilterEmailSubscription = Node & {
|
|
10712
10790
|
__typename?: 'JiraFilterEmailSubscription';
|
|
10713
10791
|
id: Scalars['ID'];
|
|
@@ -10746,6 +10824,11 @@ export declare type JiraFilterNameMutationErrorExtension = MutationErrorExtensio
|
|
|
10746
10824
|
errorType?: Maybe<Scalars['String']>;
|
|
10747
10825
|
};
|
|
10748
10826
|
export declare type JiraFilterResult = JiraCustomFilter | JiraSystemFilter | QueryError;
|
|
10827
|
+
export declare type JiraFilterShareGrantMutationErrorExtension = MutationErrorExtension & {
|
|
10828
|
+
__typename?: 'JiraFilterShareGrantMutationErrorExtension';
|
|
10829
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
10830
|
+
errorType?: Maybe<Scalars['String']>;
|
|
10831
|
+
};
|
|
10749
10832
|
export declare type JiraFlag = {
|
|
10750
10833
|
__typename?: 'JiraFlag';
|
|
10751
10834
|
isFlagged?: Maybe<Scalars['Boolean']>;
|
|
@@ -11112,6 +11195,7 @@ export declare type JiraIssue = Node & {
|
|
|
11112
11195
|
issueTypesForHierarchyAbove?: Maybe<JiraIssueTypeConnection>;
|
|
11113
11196
|
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
11114
11197
|
errorRetrievingData?: Maybe<Scalars['Boolean']>;
|
|
11198
|
+
issueColorField?: Maybe<JiraColorField>;
|
|
11115
11199
|
storyPointsField?: Maybe<JiraNumberField>;
|
|
11116
11200
|
storyPointEstimateField?: Maybe<JiraNumberField>;
|
|
11117
11201
|
screenId?: Maybe<Scalars['Long']>;
|
|
@@ -15166,14 +15250,19 @@ export declare type JiraServiceManagementRequestTypeTemplate = {
|
|
|
15166
15250
|
formTemplateInternalId: Scalars['String'];
|
|
15167
15251
|
name?: Maybe<Scalars['String']>;
|
|
15168
15252
|
description?: Maybe<Scalars['String']>;
|
|
15169
|
-
groups?: Maybe<Array<
|
|
15253
|
+
groups?: Maybe<Array<JiraServiceManagementRequestTypeTemplateGroup>>;
|
|
15254
|
+
requestTypeIcon?: Maybe<JiraServiceManagementRequestTypeTemplateRequestTypeIcon>;
|
|
15170
15255
|
previewImageUrl?: Maybe<Scalars['URL']>;
|
|
15171
15256
|
};
|
|
15172
15257
|
export declare type JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies = {
|
|
15173
15258
|
__typename?: 'JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies';
|
|
15174
15259
|
workflow?: Maybe<JiraServiceManagementRequestTypeTemplateWorkflow>;
|
|
15175
15260
|
requestTypeGroup?: Maybe<JiraServiceManagementRequestTypeTemplateRequestTypeGroup>;
|
|
15176
|
-
|
|
15261
|
+
};
|
|
15262
|
+
export declare type JiraServiceManagementRequestTypeTemplateGroup = {
|
|
15263
|
+
__typename?: 'JiraServiceManagementRequestTypeTemplateGroup';
|
|
15264
|
+
groupKey: Scalars['String'];
|
|
15265
|
+
name?: Maybe<Scalars['String']>;
|
|
15177
15266
|
};
|
|
15178
15267
|
export declare type JiraServiceManagementRequestTypeTemplateRequestTypeGroup = {
|
|
15179
15268
|
__typename?: 'JiraServiceManagementRequestTypeTemplateRequestTypeGroup';
|
|
@@ -23185,6 +23274,7 @@ export declare type ToggleBoardFeatureOutput = MutationResponse & {
|
|
|
23185
23274
|
export declare type Toolchain = {
|
|
23186
23275
|
__typename?: 'Toolchain';
|
|
23187
23276
|
containers?: Maybe<ToolchainContainerConnection>;
|
|
23277
|
+
syncStatus?: Maybe<ToolchainSyncStatus>;
|
|
23188
23278
|
};
|
|
23189
23279
|
export declare type ToolchainContainersArgs = {
|
|
23190
23280
|
cloudId?: Maybe<Scalars['ID']>;
|
|
@@ -23194,6 +23284,25 @@ export declare type ToolchainContainersArgs = {
|
|
|
23194
23284
|
first?: Maybe<Scalars['Int']>;
|
|
23195
23285
|
after?: Maybe<Scalars['String']>;
|
|
23196
23286
|
};
|
|
23287
|
+
export declare type ToolchainSyncStatusArgs = {
|
|
23288
|
+
cloudId: Scalars['ID'];
|
|
23289
|
+
providerId: Scalars['String'];
|
|
23290
|
+
containerId: Scalars['ID'];
|
|
23291
|
+
};
|
|
23292
|
+
export declare type ToolchainAssociateContainerInput = {
|
|
23293
|
+
cloudId: Scalars['ID'];
|
|
23294
|
+
providerId: Scalars['ID'];
|
|
23295
|
+
jiraProjectId: Scalars['ID'];
|
|
23296
|
+
workspaceId?: Maybe<Scalars['ID']>;
|
|
23297
|
+
containerId: Scalars['ID'];
|
|
23298
|
+
};
|
|
23299
|
+
export declare type ToolchainAssociateContainerPayload = Payload & {
|
|
23300
|
+
__typename?: 'ToolchainAssociateContainerPayload';
|
|
23301
|
+
success: Scalars['Boolean'];
|
|
23302
|
+
errors?: Maybe<Array<MutationError>>;
|
|
23303
|
+
container?: Maybe<ToolchainAssociatedContainer>;
|
|
23304
|
+
};
|
|
23305
|
+
export declare type ToolchainAssociatedContainer = DevOpsDocument;
|
|
23197
23306
|
export declare type ToolchainContainer = Node & {
|
|
23198
23307
|
__typename?: 'ToolchainContainer';
|
|
23199
23308
|
id: Scalars['ID'];
|
|
@@ -23223,13 +23332,40 @@ export declare type ToolchainCreateContainerPayload = Payload & {
|
|
|
23223
23332
|
errors?: Maybe<Array<MutationError>>;
|
|
23224
23333
|
createdContainer?: Maybe<ToolchainContainer>;
|
|
23225
23334
|
};
|
|
23335
|
+
export declare type ToolchainDisassociateContainerInput = {
|
|
23336
|
+
cloudId: Scalars['ID'];
|
|
23337
|
+
providerId: Scalars['ID'];
|
|
23338
|
+
jiraProjectId: Scalars['ID'];
|
|
23339
|
+
containerId: Scalars['ID'];
|
|
23340
|
+
};
|
|
23341
|
+
export declare type ToolchainDisassociateContainerPayload = Payload & {
|
|
23342
|
+
__typename?: 'ToolchainDisassociateContainerPayload';
|
|
23343
|
+
success: Scalars['Boolean'];
|
|
23344
|
+
errors?: Maybe<Array<MutationError>>;
|
|
23345
|
+
};
|
|
23226
23346
|
export declare type ToolchainMutation = {
|
|
23227
23347
|
__typename?: 'ToolchainMutation';
|
|
23348
|
+
associateContainer?: Maybe<ToolchainAssociateContainerPayload>;
|
|
23349
|
+
disassociateContainer?: Maybe<ToolchainDisassociateContainerPayload>;
|
|
23228
23350
|
createContainer?: Maybe<ToolchainCreateContainerPayload>;
|
|
23229
23351
|
};
|
|
23352
|
+
export declare type ToolchainMutationAssociateContainerArgs = {
|
|
23353
|
+
input: ToolchainAssociateContainerInput;
|
|
23354
|
+
};
|
|
23355
|
+
export declare type ToolchainMutationDisassociateContainerArgs = {
|
|
23356
|
+
input: ToolchainDisassociateContainerInput;
|
|
23357
|
+
};
|
|
23230
23358
|
export declare type ToolchainMutationCreateContainerArgs = {
|
|
23231
23359
|
input: ToolchainCreateContainerInput;
|
|
23232
23360
|
};
|
|
23361
|
+
export declare enum ToolchainSyncState {
|
|
23362
|
+
InProgress = "IN_PROGRESS",
|
|
23363
|
+
Complete = "COMPLETE"
|
|
23364
|
+
}
|
|
23365
|
+
export declare type ToolchainSyncStatus = {
|
|
23366
|
+
__typename?: 'ToolchainSyncStatus';
|
|
23367
|
+
state: ToolchainSyncState;
|
|
23368
|
+
};
|
|
23233
23369
|
export declare type TownsquareComment = Node & {
|
|
23234
23370
|
__typename?: 'TownsquareComment';
|
|
23235
23371
|
creator?: Maybe<User>;
|
|
@@ -23465,7 +23601,7 @@ export declare type TransitionFilter = {
|
|
|
23465
23601
|
from: Scalars['String'];
|
|
23466
23602
|
to: Scalars['String'];
|
|
23467
23603
|
};
|
|
23468
|
-
export declare type TrelloBoard = {
|
|
23604
|
+
export declare type TrelloBoard = Node & {
|
|
23469
23605
|
__typename?: 'TrelloBoard';
|
|
23470
23606
|
closed: Scalars['Boolean'];
|
|
23471
23607
|
galleryInfo?: Maybe<TrelloTemplateGalleryItemInfo>;
|
|
@@ -23486,17 +23622,23 @@ export declare type TrelloBoardListsArgs = {
|
|
|
23486
23622
|
};
|
|
23487
23623
|
export declare type TrelloBoardBackground = {
|
|
23488
23624
|
__typename?: 'TrelloBoardBackground';
|
|
23625
|
+
bottomColor?: Maybe<Scalars['String']>;
|
|
23626
|
+
brightness?: Maybe<Scalars['String']>;
|
|
23489
23627
|
color?: Maybe<Scalars['String']>;
|
|
23490
23628
|
image?: Maybe<Scalars['String']>;
|
|
23491
23629
|
imageScaled?: Maybe<Array<TrelloScaleProps>>;
|
|
23492
23630
|
tile: Scalars['Boolean'];
|
|
23631
|
+
topColor?: Maybe<Scalars['String']>;
|
|
23493
23632
|
};
|
|
23494
23633
|
export declare type TrelloBoardBackgroundUpdatedDeltas = {
|
|
23495
23634
|
__typename?: 'TrelloBoardBackgroundUpdatedDeltas';
|
|
23635
|
+
bottomColor?: Maybe<Scalars['Boolean']>;
|
|
23636
|
+
brightness?: Maybe<Scalars['Boolean']>;
|
|
23496
23637
|
color?: Maybe<Scalars['Boolean']>;
|
|
23497
23638
|
image?: Maybe<Scalars['Boolean']>;
|
|
23498
23639
|
imageScaled?: Maybe<Scalars['Boolean']>;
|
|
23499
23640
|
title?: Maybe<Scalars['Boolean']>;
|
|
23641
|
+
topColor?: Maybe<Scalars['Boolean']>;
|
|
23500
23642
|
};
|
|
23501
23643
|
export declare type TrelloBoardEdge = {
|
|
23502
23644
|
__typename?: 'TrelloBoardEdge';
|
|
@@ -23506,11 +23648,15 @@ export declare type TrelloBoardEdge = {
|
|
|
23506
23648
|
export declare type TrelloBoardPrefs = {
|
|
23507
23649
|
__typename?: 'TrelloBoardPrefs';
|
|
23508
23650
|
background: TrelloBoardBackground;
|
|
23651
|
+
canInvite?: Maybe<Scalars['Boolean']>;
|
|
23652
|
+
hideVotes?: Maybe<Scalars['Boolean']>;
|
|
23509
23653
|
isTemplate: Scalars['Boolean'];
|
|
23510
23654
|
};
|
|
23511
23655
|
export declare type TrelloBoardPrefsUpdatedDeltas = {
|
|
23512
23656
|
__typename?: 'TrelloBoardPrefsUpdatedDeltas';
|
|
23513
23657
|
background?: Maybe<TrelloBoardBackgroundUpdatedDeltas>;
|
|
23658
|
+
canInvite?: Maybe<Scalars['Boolean']>;
|
|
23659
|
+
hideVotes?: Maybe<Scalars['Boolean']>;
|
|
23514
23660
|
isTemplate?: Maybe<Scalars['Boolean']>;
|
|
23515
23661
|
};
|
|
23516
23662
|
export declare type TrelloBoardUpdated = {
|
|
@@ -23533,7 +23679,7 @@ export declare type TrelloBoardViewer = {
|
|
|
23533
23679
|
lastSeenAt?: Maybe<Scalars['DateTime']>;
|
|
23534
23680
|
starred: Scalars['Boolean'];
|
|
23535
23681
|
};
|
|
23536
|
-
export declare type TrelloCard = {
|
|
23682
|
+
export declare type TrelloCard = Node & {
|
|
23537
23683
|
__typename?: 'TrelloCard';
|
|
23538
23684
|
closed?: Maybe<Scalars['Boolean']>;
|
|
23539
23685
|
description?: Maybe<Scalars['String']>;
|
|
@@ -23558,6 +23704,11 @@ export declare type TrelloCardStickersArgs = {
|
|
|
23558
23704
|
after?: Maybe<Scalars['String']>;
|
|
23559
23705
|
first?: Maybe<Scalars['Int']>;
|
|
23560
23706
|
};
|
|
23707
|
+
export declare type TrelloCardCoordinates = {
|
|
23708
|
+
__typename?: 'TrelloCardCoordinates';
|
|
23709
|
+
latitude: Scalars['Float'];
|
|
23710
|
+
longitude: Scalars['Float'];
|
|
23711
|
+
};
|
|
23561
23712
|
export declare type TrelloCardDueInfo = {
|
|
23562
23713
|
__typename?: 'TrelloCardDueInfo';
|
|
23563
23714
|
at?: Maybe<Scalars['DateTime']>;
|
|
@@ -23577,6 +23728,7 @@ export declare type TrelloCardLimits = {
|
|
|
23577
23728
|
export declare type TrelloCardLocation = {
|
|
23578
23729
|
__typename?: 'TrelloCardLocation';
|
|
23579
23730
|
address?: Maybe<Scalars['String']>;
|
|
23731
|
+
coordinates?: Maybe<TrelloCardCoordinates>;
|
|
23580
23732
|
name?: Maybe<Scalars['String']>;
|
|
23581
23733
|
};
|
|
23582
23734
|
export declare enum TrelloCardRole {
|
|
@@ -23592,7 +23744,7 @@ export declare type TrelloLimitProps = {
|
|
|
23592
23744
|
status: Scalars['String'];
|
|
23593
23745
|
warnAt: Scalars['Int'];
|
|
23594
23746
|
};
|
|
23595
|
-
export declare type TrelloList = {
|
|
23747
|
+
export declare type TrelloList = Node & {
|
|
23596
23748
|
__typename?: 'TrelloList';
|
|
23597
23749
|
board?: Maybe<TrelloBoard>;
|
|
23598
23750
|
closed: Scalars['Boolean'];
|
|
@@ -23631,6 +23783,7 @@ export declare type TrelloListUpdated = {
|
|
|
23631
23783
|
id: Scalars['ID'];
|
|
23632
23784
|
name?: Maybe<Scalars['String']>;
|
|
23633
23785
|
position?: Maybe<Scalars['Float']>;
|
|
23786
|
+
softLimit?: Maybe<Scalars['Int']>;
|
|
23634
23787
|
};
|
|
23635
23788
|
export declare type TrelloListUpdatedConnection = {
|
|
23636
23789
|
__typename?: 'TrelloListUpdatedConnection';
|
|
@@ -23645,6 +23798,7 @@ export declare type TrelloListUpdatedDeltas = {
|
|
|
23645
23798
|
closed?: Maybe<Scalars['Boolean']>;
|
|
23646
23799
|
name?: Maybe<Scalars['Boolean']>;
|
|
23647
23800
|
position?: Maybe<Scalars['Boolean']>;
|
|
23801
|
+
softLimit?: Maybe<Scalars['Boolean']>;
|
|
23648
23802
|
};
|
|
23649
23803
|
export declare type TrelloListViewer = {
|
|
23650
23804
|
__typename?: 'TrelloListViewer';
|
|
@@ -23686,6 +23840,7 @@ export declare type TrelloScaleProps = {
|
|
|
23686
23840
|
};
|
|
23687
23841
|
export declare type TrelloSticker = {
|
|
23688
23842
|
__typename?: 'TrelloSticker';
|
|
23843
|
+
image?: Maybe<Scalars['String']>;
|
|
23689
23844
|
left?: Maybe<Scalars['Float']>;
|
|
23690
23845
|
objectId: Scalars['ID'];
|
|
23691
23846
|
rotate?: Maybe<Scalars['Float']>;
|
|
@@ -23750,7 +23905,7 @@ export declare type TrelloTemplateGalleryLanguage = {
|
|
|
23750
23905
|
locale: Scalars['String'];
|
|
23751
23906
|
localizedDescription: Scalars['String'];
|
|
23752
23907
|
};
|
|
23753
|
-
export declare type TrelloWorkspace = {
|
|
23908
|
+
export declare type TrelloWorkspace = Node & {
|
|
23754
23909
|
__typename?: 'TrelloWorkspace';
|
|
23755
23910
|
displayName: Scalars['String'];
|
|
23756
23911
|
id: Scalars['ID'];
|