@forge/cli-shared 3.17.0-next.2 → 3.17.0-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 +6 -0
- package/out/graphql/graphql-types.d.ts +40 -20
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/ui/text.d.ts +2 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9800,7 +9800,7 @@ export type HelpLayoutCompositeElement = {
|
|
|
9800
9800
|
id: Scalars['ID'];
|
|
9801
9801
|
visualConfig?: Maybe<Scalars['String']>;
|
|
9802
9802
|
children?: Maybe<Array<Maybe<HelpLayoutAtomicElement>>>;
|
|
9803
|
-
|
|
9803
|
+
elementType?: Maybe<HelpLayoutCompositeElementType>;
|
|
9804
9804
|
};
|
|
9805
9805
|
export declare enum HelpLayoutCompositeElementKey {
|
|
9806
9806
|
LinkCard = "LINK_CARD"
|
|
@@ -9893,7 +9893,7 @@ export type HelpLayoutImageAtomicElementData = {
|
|
|
9893
9893
|
export type HelpLayoutImageConfigInput = {
|
|
9894
9894
|
fileId?: Maybe<Scalars['String']>;
|
|
9895
9895
|
url?: Maybe<Scalars['String']>;
|
|
9896
|
-
altText
|
|
9896
|
+
altText?: Maybe<Scalars['String']>;
|
|
9897
9897
|
visualConfig: Scalars['String'];
|
|
9898
9898
|
};
|
|
9899
9899
|
export type HelpLayoutLinkCardCompositeElement = HelpLayoutVisualEntity & HelpLayoutCompositeElement & Node & {
|
|
@@ -9902,7 +9902,7 @@ export type HelpLayoutLinkCardCompositeElement = HelpLayoutVisualEntity & HelpLa
|
|
|
9902
9902
|
visualConfig?: Maybe<Scalars['String']>;
|
|
9903
9903
|
config?: Maybe<Scalars['String']>;
|
|
9904
9904
|
children?: Maybe<Array<Maybe<HelpLayoutAtomicElement>>>;
|
|
9905
|
-
|
|
9905
|
+
elementType?: Maybe<HelpLayoutCompositeElementType>;
|
|
9906
9906
|
};
|
|
9907
9907
|
export type HelpLayoutLinkCardInput = {
|
|
9908
9908
|
children: Array<HelpLayoutAtomicElementInput>;
|
|
@@ -10221,6 +10221,7 @@ export type IntervalInput = {
|
|
|
10221
10221
|
export type InvocationMetrics = {
|
|
10222
10222
|
__typename?: 'InvocationMetrics';
|
|
10223
10223
|
appTimeMs?: Maybe<Scalars['Float']>;
|
|
10224
|
+
appExecutionRegion?: Maybe<Scalars['String']>;
|
|
10224
10225
|
};
|
|
10225
10226
|
export type InvocationResponsePayload = {
|
|
10226
10227
|
__typename?: 'InvocationResponsePayload';
|
|
@@ -19343,7 +19344,7 @@ export type MoveSprintUpResponse = MutationResponse & {
|
|
|
19343
19344
|
};
|
|
19344
19345
|
export type Mutation = {
|
|
19345
19346
|
__typename?: 'Mutation';
|
|
19346
|
-
trello
|
|
19347
|
+
trello?: Maybe<TrelloMutationApi>;
|
|
19347
19348
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
19348
19349
|
createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
|
|
19349
19350
|
deleteJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipDeletePayload>;
|
|
@@ -25991,8 +25992,8 @@ export type TransitionFilter = {
|
|
|
25991
25992
|
from: Scalars['String'];
|
|
25992
25993
|
to: Scalars['String'];
|
|
25993
25994
|
};
|
|
25994
|
-
export type
|
|
25995
|
-
__typename?: '
|
|
25995
|
+
export type TrelloAddHelloPayload = Payload & {
|
|
25996
|
+
__typename?: 'TrelloAddHelloPayload';
|
|
25996
25997
|
errors?: Maybe<Array<MutationError>>;
|
|
25997
25998
|
hello: Scalars['String'];
|
|
25998
25999
|
success: Scalars['Boolean'];
|
|
@@ -26001,8 +26002,8 @@ export type TrelloAddMemberInput = {
|
|
|
26001
26002
|
cardId: Scalars['ID'];
|
|
26002
26003
|
memberId: Scalars['ID'];
|
|
26003
26004
|
};
|
|
26004
|
-
export type
|
|
26005
|
-
__typename?: '
|
|
26005
|
+
export type TrelloAddMemberToCardPayload = Payload & {
|
|
26006
|
+
__typename?: 'TrelloAddMemberToCardPayload';
|
|
26006
26007
|
card?: Maybe<TrelloCard>;
|
|
26007
26008
|
errors?: Maybe<Array<MutationError>>;
|
|
26008
26009
|
success: Scalars['Boolean'];
|
|
@@ -26034,6 +26035,7 @@ export type TrelloAttachmentEdge = {
|
|
|
26034
26035
|
export type TrelloBoard = Node & {
|
|
26035
26036
|
__typename?: 'TrelloBoard';
|
|
26036
26037
|
closed: Scalars['Boolean'];
|
|
26038
|
+
enterpriseOwned: Scalars['Boolean'];
|
|
26037
26039
|
galleryInfo?: Maybe<TrelloTemplateGalleryItemInfo>;
|
|
26038
26040
|
id: Scalars['ID'];
|
|
26039
26041
|
lastActivityAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -26138,8 +26140,13 @@ export type TrelloBoardPrefs = {
|
|
|
26138
26140
|
__typename?: 'TrelloBoardPrefs';
|
|
26139
26141
|
background?: Maybe<TrelloBoardBackground>;
|
|
26140
26142
|
canInvite?: Maybe<Scalars['Boolean']>;
|
|
26143
|
+
comments?: Maybe<Scalars['String']>;
|
|
26141
26144
|
hideVotes?: Maybe<Scalars['Boolean']>;
|
|
26145
|
+
invitations?: Maybe<Scalars['String']>;
|
|
26142
26146
|
isTemplate?: Maybe<Scalars['Boolean']>;
|
|
26147
|
+
permissionLevel?: Maybe<Scalars['String']>;
|
|
26148
|
+
selfJoin?: Maybe<Scalars['Boolean']>;
|
|
26149
|
+
voting?: Maybe<Scalars['String']>;
|
|
26143
26150
|
};
|
|
26144
26151
|
export type TrelloBoardPrefsUpdatedDeltas = {
|
|
26145
26152
|
__typename?: 'TrelloBoardPrefsUpdatedDeltas';
|
|
@@ -26162,6 +26169,7 @@ export type TrelloBoardUpdated = {
|
|
|
26162
26169
|
closed?: Maybe<Scalars['Boolean']>;
|
|
26163
26170
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
26164
26171
|
name?: Maybe<Scalars['String']>;
|
|
26172
|
+
objectId?: Maybe<Scalars['ID']>;
|
|
26165
26173
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
26166
26174
|
};
|
|
26167
26175
|
export type TrelloBoardUpdatedDeltas = {
|
|
@@ -26358,6 +26366,7 @@ export type TrelloCardUpdated = {
|
|
|
26358
26366
|
labels?: Maybe<TrelloLabelUpdatedConnection>;
|
|
26359
26367
|
lastActivityAt?: Maybe<Scalars['DateTime']>;
|
|
26360
26368
|
name?: Maybe<Scalars['String']>;
|
|
26369
|
+
objectId?: Maybe<Scalars['ID']>;
|
|
26361
26370
|
position?: Maybe<Scalars['Float']>;
|
|
26362
26371
|
};
|
|
26363
26372
|
export type TrelloCardUpdatedConnection = {
|
|
@@ -26399,16 +26408,16 @@ export type TrelloChecklistEdge = {
|
|
|
26399
26408
|
cursor: Scalars['String'];
|
|
26400
26409
|
node: TrelloChecklist;
|
|
26401
26410
|
};
|
|
26402
|
-
export type TrelloCreateCard = Payload & {
|
|
26403
|
-
__typename?: 'TrelloCreateCard';
|
|
26404
|
-
card?: Maybe<TrelloCard>;
|
|
26405
|
-
errors?: Maybe<Array<MutationError>>;
|
|
26406
|
-
success: Scalars['Boolean'];
|
|
26407
|
-
};
|
|
26408
26411
|
export type TrelloCreateCardInput = {
|
|
26409
26412
|
idList?: Maybe<Array<Scalars['ID']>>;
|
|
26410
26413
|
name: Scalars['String'];
|
|
26411
26414
|
};
|
|
26415
|
+
export type TrelloCreateCardPayload = Payload & {
|
|
26416
|
+
__typename?: 'TrelloCreateCardPayload';
|
|
26417
|
+
card?: Maybe<TrelloCard>;
|
|
26418
|
+
errors?: Maybe<Array<MutationError>>;
|
|
26419
|
+
success: Scalars['Boolean'];
|
|
26420
|
+
};
|
|
26412
26421
|
export type TrelloCustomField = {
|
|
26413
26422
|
__typename?: 'TrelloCustomField';
|
|
26414
26423
|
objectId: Scalars['ID'];
|
|
@@ -26574,6 +26583,7 @@ export type TrelloListUpdated = {
|
|
|
26574
26583
|
closed?: Maybe<Scalars['Boolean']>;
|
|
26575
26584
|
id: Scalars['ID'];
|
|
26576
26585
|
name?: Maybe<Scalars['String']>;
|
|
26586
|
+
objectId?: Maybe<Scalars['ID']>;
|
|
26577
26587
|
position?: Maybe<Scalars['Float']>;
|
|
26578
26588
|
softLimit?: Maybe<Scalars['Int']>;
|
|
26579
26589
|
};
|
|
@@ -26598,12 +26608,18 @@ export type TrelloListViewer = {
|
|
|
26598
26608
|
__typename?: 'TrelloListViewer';
|
|
26599
26609
|
subscribed?: Maybe<Scalars['Boolean']>;
|
|
26600
26610
|
};
|
|
26611
|
+
export type TrelloMember = Node & {
|
|
26612
|
+
__typename?: 'TrelloMember';
|
|
26613
|
+
id: Scalars['ID'];
|
|
26614
|
+
objectId: Scalars['ID'];
|
|
26615
|
+
username?: Maybe<Scalars['String']>;
|
|
26616
|
+
};
|
|
26601
26617
|
export type TrelloMutationApi = {
|
|
26602
26618
|
__typename?: 'TrelloMutationApi';
|
|
26603
|
-
addHello?: Maybe<
|
|
26604
|
-
addMemberToCard?: Maybe<
|
|
26605
|
-
createCard?: Maybe<
|
|
26606
|
-
removeMemberFromCard?: Maybe<
|
|
26619
|
+
addHello?: Maybe<TrelloAddHelloPayload>;
|
|
26620
|
+
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
26621
|
+
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
26622
|
+
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
26607
26623
|
};
|
|
26608
26624
|
export type TrelloMutationApiAddHelloArgs = {
|
|
26609
26625
|
input: TrelloHelloInput;
|
|
@@ -26659,6 +26675,7 @@ export type TrelloQueryApi = {
|
|
|
26659
26675
|
card?: Maybe<TrelloCard>;
|
|
26660
26676
|
echo?: Maybe<Scalars['String']>;
|
|
26661
26677
|
list?: Maybe<TrelloList>;
|
|
26678
|
+
member?: Maybe<TrelloMember>;
|
|
26662
26679
|
recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
|
|
26663
26680
|
templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
|
|
26664
26681
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
@@ -26674,6 +26691,9 @@ export type TrelloQueryApiCardArgs = {
|
|
|
26674
26691
|
export type TrelloQueryApiListArgs = {
|
|
26675
26692
|
id: Scalars['ID'];
|
|
26676
26693
|
};
|
|
26694
|
+
export type TrelloQueryApiMemberArgs = {
|
|
26695
|
+
id: Scalars['ID'];
|
|
26696
|
+
};
|
|
26677
26697
|
export type TrelloQueryApiRecentBoardsByIdsArgs = {
|
|
26678
26698
|
ids: Array<Scalars['ID']>;
|
|
26679
26699
|
};
|
|
@@ -26715,8 +26735,8 @@ export type TrelloRecentCardEdge = {
|
|
|
26715
26735
|
cursor?: Maybe<Scalars['String']>;
|
|
26716
26736
|
node?: Maybe<TrelloRecentCard>;
|
|
26717
26737
|
};
|
|
26718
|
-
export type
|
|
26719
|
-
__typename?: '
|
|
26738
|
+
export type TrelloRemoveMemberFromCardPayload = Payload & {
|
|
26739
|
+
__typename?: 'TrelloRemoveMemberFromCardPayload';
|
|
26720
26740
|
card?: Maybe<TrelloCard>;
|
|
26721
26741
|
errors?: Maybe<Array<MutationError>>;
|
|
26722
26742
|
success: Scalars['Boolean'];
|