@forge/cli-shared 6.4.0-next.7 → 6.4.0-next.9
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 +14 -0
- package/out/graphql/graphql-types.d.ts +98 -30
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +3 -0
- package/out/service/statsig-service.js +1 -1
- package/out/ui/text.d.ts +15 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +15 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.4.0-next.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 08c832b: Add support for license-modes and users-with-access options in the forge install command
|
|
8
|
+
|
|
9
|
+
## 6.4.0-next.8
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 34fe2fa: Changing the default value of feature gate forge-cli-enable-atlas-product-support to false
|
|
14
|
+
- Updated dependencies [c3a2fca]
|
|
15
|
+
- @forge/manifest@8.1.0-next.6
|
|
16
|
+
|
|
3
17
|
## 6.4.0-next.7
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -17123,6 +17123,7 @@ export declare type CustomerServiceQueryApi = {
|
|
|
17123
17123
|
organizationByOrganizationId?: Maybe<CustomerServiceOrganizationQueryResult>;
|
|
17124
17124
|
productConnections?: Maybe<CustomerServiceProductConnection>;
|
|
17125
17125
|
products?: Maybe<CustomerServiceProductQueryResult>;
|
|
17126
|
+
templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
|
|
17126
17127
|
};
|
|
17127
17128
|
export declare type CustomerServiceQueryApiCustomDetailsByEntityTypeArgs = {
|
|
17128
17129
|
customDetailsEntityType: CustomerServiceCustomDetailsEntityType;
|
|
@@ -17149,11 +17150,33 @@ export declare type CustomerServiceQueryApiProductsArgs = {
|
|
|
17149
17150
|
filter?: InputMaybe<CustomerServiceProductFilterInput>;
|
|
17150
17151
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17151
17152
|
};
|
|
17153
|
+
export declare type CustomerServiceQueryApiTemplateFormByIdArgs = {
|
|
17154
|
+
helpCenterId: Scalars['ID']['input'];
|
|
17155
|
+
templateFormId: Scalars['ID']['input'];
|
|
17156
|
+
};
|
|
17157
|
+
export declare type CustomerServiceRoutingRule = {
|
|
17158
|
+
__typename?: 'CustomerServiceRoutingRule';
|
|
17159
|
+
id: Scalars['ID']['output'];
|
|
17160
|
+
issueTypeIconUrl?: Maybe<Scalars['String']['output']>;
|
|
17161
|
+
issueTypeId?: Maybe<Scalars['ID']['output']>;
|
|
17162
|
+
issueTypeName?: Maybe<Scalars['String']['output']>;
|
|
17163
|
+
project?: Maybe<JiraProject>;
|
|
17164
|
+
projectId?: Maybe<Scalars['ID']['output']>;
|
|
17165
|
+
};
|
|
17152
17166
|
export declare type CustomerServiceStatusPayload = Payload & {
|
|
17153
17167
|
__typename?: 'CustomerServiceStatusPayload';
|
|
17154
17168
|
errors?: Maybe<Array<MutationError>>;
|
|
17155
17169
|
success: Scalars['Boolean']['output'];
|
|
17156
17170
|
};
|
|
17171
|
+
export declare type CustomerServiceTemplateForm = Node & {
|
|
17172
|
+
__typename?: 'CustomerServiceTemplateForm';
|
|
17173
|
+
defaultRouteRule?: Maybe<CustomerServiceRoutingRule>;
|
|
17174
|
+
helpCenter?: Maybe<HelpCenterQueryResult>;
|
|
17175
|
+
helpCenterId: Scalars['ID']['output'];
|
|
17176
|
+
id: Scalars['ID']['output'];
|
|
17177
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
17178
|
+
};
|
|
17179
|
+
export declare type CustomerServiceTemplateFormQueryResult = CustomerServiceTemplateForm | QueryError;
|
|
17157
17180
|
export declare type CustomerServiceUpdateCustomDetailContextConfigsPayload = Payload & {
|
|
17158
17181
|
__typename?: 'CustomerServiceUpdateCustomDetailContextConfigsPayload';
|
|
17159
17182
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -17820,6 +17843,7 @@ export declare type DevAiGenericMutationErrorExtension = MutationErrorExtension
|
|
|
17820
17843
|
export declare enum DevAiIssueScopingLabel {
|
|
17821
17844
|
Complex = "COMPLEX",
|
|
17822
17845
|
InScope = "IN_SCOPE",
|
|
17846
|
+
Optimal = "OPTIMAL",
|
|
17823
17847
|
Recoverable = "RECOVERABLE",
|
|
17824
17848
|
Unsolvable = "UNSOLVABLE"
|
|
17825
17849
|
}
|
|
@@ -19839,7 +19863,7 @@ export declare type EcosystemQueryFortifiedMetricsArgs = {
|
|
|
19839
19863
|
export declare type EcosystemQueryUserAccessArgs = {
|
|
19840
19864
|
contextId: Scalars['ID']['input'];
|
|
19841
19865
|
definitionId: Scalars['ID']['input'];
|
|
19842
|
-
userAaid
|
|
19866
|
+
userAaid?: InputMaybe<Scalars['ID']['input']>;
|
|
19843
19867
|
};
|
|
19844
19868
|
export declare type EcosystemQueryUserGrantsArgs = {
|
|
19845
19869
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -19971,7 +19995,7 @@ export declare type ExtensionDataClassificationPolicyDecisionArgs = {
|
|
|
19971
19995
|
input: DataClassificationPolicyDecisionInput;
|
|
19972
19996
|
};
|
|
19973
19997
|
export declare type ExtensionUserAccessArgs = {
|
|
19974
|
-
userAaid
|
|
19998
|
+
userAaid?: InputMaybe<Scalars['ID']['input']>;
|
|
19975
19999
|
};
|
|
19976
20000
|
export declare type ExtensionContext = {
|
|
19977
20001
|
__typename?: 'ExtensionContext';
|
|
@@ -25374,6 +25398,8 @@ export declare type GraphStore = {
|
|
|
25374
25398
|
componentLinkedJswIssueInverse?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection>;
|
|
25375
25399
|
componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
25376
25400
|
componentLinkedJswIssueRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
25401
|
+
confluencePageHasConfluenceComment?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection>;
|
|
25402
|
+
confluencePageHasConfluenceCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseConnection>;
|
|
25377
25403
|
contentReferencedEntity?: Maybe<GraphStoreSimplifiedContentReferencedEntityConnection>;
|
|
25378
25404
|
contentReferencedEntityBatch?: Maybe<GraphStoreBatchContentReferencedEntityConnection>;
|
|
25379
25405
|
contentReferencedEntityInverse?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseConnection>;
|
|
@@ -26005,6 +26031,20 @@ export declare type GraphStoreComponentLinkedJswIssueRelationshipArgs = {
|
|
|
26005
26031
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26006
26032
|
id: Scalars['ID']['input'];
|
|
26007
26033
|
};
|
|
26034
|
+
export declare type GraphStoreConfluencePageHasConfluenceCommentArgs = {
|
|
26035
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
26036
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26037
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26038
|
+
id: Scalars['ID']['input'];
|
|
26039
|
+
sort?: InputMaybe<GraphStoreConfluencePageHasConfluenceCommentSortInput>;
|
|
26040
|
+
};
|
|
26041
|
+
export declare type GraphStoreConfluencePageHasConfluenceCommentInverseArgs = {
|
|
26042
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
26043
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26044
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26045
|
+
id: Scalars['ID']['input'];
|
|
26046
|
+
sort?: InputMaybe<GraphStoreConfluencePageHasConfluenceCommentSortInput>;
|
|
26047
|
+
};
|
|
26008
26048
|
export declare type GraphStoreContentReferencedEntityArgs = {
|
|
26009
26049
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26010
26050
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28369,7 +28409,7 @@ export declare type GraphStoreBatchContentReferencedEntityEndNode = {
|
|
|
28369
28409
|
data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
|
|
28370
28410
|
id: Scalars['ID']['output'];
|
|
28371
28411
|
};
|
|
28372
|
-
export declare type GraphStoreBatchContentReferencedEntityEndUnion = CompassComponent | ConfluencePage | JiraIssue;
|
|
28412
|
+
export declare type GraphStoreBatchContentReferencedEntityEndUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
28373
28413
|
export declare type GraphStoreBatchContentReferencedEntityInnerConnection = {
|
|
28374
28414
|
__typename?: 'GraphStoreBatchContentReferencedEntityInnerConnection';
|
|
28375
28415
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityInnerEdge>>;
|
|
@@ -28394,7 +28434,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
28394
28434
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
28395
28435
|
id: Scalars['ID']['output'];
|
|
28396
28436
|
};
|
|
28397
|
-
export declare type GraphStoreBatchContentReferencedEntityStartUnion = ConfluencePage | JiraIssue;
|
|
28437
|
+
export declare type GraphStoreBatchContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
28398
28438
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
28399
28439
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
28400
28440
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -28900,7 +28940,7 @@ export declare type GraphStoreBatchMediaAttachedToContentEndNode = {
|
|
|
28900
28940
|
data?: Maybe<GraphStoreBatchMediaAttachedToContentEndUnion>;
|
|
28901
28941
|
id: Scalars['ID']['output'];
|
|
28902
28942
|
};
|
|
28903
|
-
export declare type GraphStoreBatchMediaAttachedToContentEndUnion = ConfluencePage | JiraIssue;
|
|
28943
|
+
export declare type GraphStoreBatchMediaAttachedToContentEndUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
28904
28944
|
export declare type GraphStoreBatchMediaAttachedToContentInnerConnection = {
|
|
28905
28945
|
__typename?: 'GraphStoreBatchMediaAttachedToContentInnerConnection';
|
|
28906
28946
|
edges: Array<Maybe<GraphStoreBatchMediaAttachedToContentInnerEdge>>;
|
|
@@ -29020,6 +29060,9 @@ export declare type GraphStoreComponentLinkedJswIssueSortInput = {
|
|
|
29020
29060
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
29021
29061
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
29022
29062
|
};
|
|
29063
|
+
export declare type GraphStoreConfluencePageHasConfluenceCommentSortInput = {
|
|
29064
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
29065
|
+
};
|
|
29023
29066
|
export declare type GraphStoreContentReferencedEntitySortInput = {
|
|
29024
29067
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
29025
29068
|
};
|
|
@@ -29965,7 +30008,7 @@ export declare type GraphStoreFullContentReferencedEntityEndNode = {
|
|
|
29965
30008
|
data?: Maybe<GraphStoreFullContentReferencedEntityEndUnion>;
|
|
29966
30009
|
id: Scalars['ID']['output'];
|
|
29967
30010
|
};
|
|
29968
|
-
export declare type GraphStoreFullContentReferencedEntityEndUnion = CompassComponent | ConfluencePage | JiraIssue;
|
|
30011
|
+
export declare type GraphStoreFullContentReferencedEntityEndUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
29969
30012
|
export declare type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
29970
30013
|
__typename?: 'GraphStoreFullContentReferencedEntityNode';
|
|
29971
30014
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -29979,7 +30022,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
29979
30022
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
29980
30023
|
id: Scalars['ID']['output'];
|
|
29981
30024
|
};
|
|
29982
|
-
export declare type GraphStoreFullContentReferencedEntityStartUnion = ConfluencePage | JiraIssue;
|
|
30025
|
+
export declare type GraphStoreFullContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
29983
30026
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
29984
30027
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
29985
30028
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -34437,6 +34480,34 @@ export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseEdge = {
|
|
|
34437
34480
|
};
|
|
34438
34481
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion = CompassComponent | DevOpsOperationsComponentDetails | DevOpsService;
|
|
34439
34482
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueUnion = JiraIssue;
|
|
34483
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection = HasPageInfo & {
|
|
34484
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection';
|
|
34485
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentEdge>>>;
|
|
34486
|
+
pageInfo: PageInfo;
|
|
34487
|
+
};
|
|
34488
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentEdge = {
|
|
34489
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceCommentEdge';
|
|
34490
|
+
createdAt: Scalars['DateTime']['output'];
|
|
34491
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
34492
|
+
id: Scalars['ID']['output'];
|
|
34493
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
34494
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentUnion>;
|
|
34495
|
+
};
|
|
34496
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseConnection = HasPageInfo & {
|
|
34497
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseConnection';
|
|
34498
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseEdge>>>;
|
|
34499
|
+
pageInfo: PageInfo;
|
|
34500
|
+
};
|
|
34501
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseEdge = {
|
|
34502
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseEdge';
|
|
34503
|
+
createdAt: Scalars['DateTime']['output'];
|
|
34504
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
34505
|
+
id: Scalars['ID']['output'];
|
|
34506
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
34507
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseUnion>;
|
|
34508
|
+
};
|
|
34509
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
34510
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
34440
34511
|
export declare type GraphStoreSimplifiedContentReferencedEntityConnection = HasPageInfo & {
|
|
34441
34512
|
__typename?: 'GraphStoreSimplifiedContentReferencedEntityConnection';
|
|
34442
34513
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedContentReferencedEntityEdge>>>;
|
|
@@ -34463,8 +34534,8 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
34463
34534
|
lastUpdated: Scalars['DateTime']['output'];
|
|
34464
34535
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
34465
34536
|
};
|
|
34466
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluencePage | JiraIssue;
|
|
34467
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = CompassComponent | ConfluencePage | JiraIssue;
|
|
34537
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
34538
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
34468
34539
|
export declare type GraphStoreSimplifiedDeploymentContainsCommitConnection = HasPageInfo & {
|
|
34469
34540
|
__typename?: 'GraphStoreSimplifiedDeploymentContainsCommitConnection';
|
|
34470
34541
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDeploymentContainsCommitEdge>>>;
|
|
@@ -35368,7 +35439,7 @@ export declare type GraphStoreSimplifiedMediaAttachedToContentEdge = {
|
|
|
35368
35439
|
lastUpdated: Scalars['DateTime']['output'];
|
|
35369
35440
|
node?: Maybe<GraphStoreSimplifiedMediaAttachedToContentUnion>;
|
|
35370
35441
|
};
|
|
35371
|
-
export declare type GraphStoreSimplifiedMediaAttachedToContentUnion = ConfluencePage | JiraIssue;
|
|
35442
|
+
export declare type GraphStoreSimplifiedMediaAttachedToContentUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
35372
35443
|
export declare type GraphStoreSimplifiedOnPremProjectHasIssueConnection = HasPageInfo & {
|
|
35373
35444
|
__typename?: 'GraphStoreSimplifiedOnPremProjectHasIssueConnection';
|
|
35374
35445
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedOnPremProjectHasIssueEdge>>>;
|
|
@@ -37740,12 +37811,14 @@ export declare enum GrowthUnifiedProfileJtbd {
|
|
|
37740
37811
|
ProjectPlanning = "PROJECT_PLANNING",
|
|
37741
37812
|
ProjectPlanningAndCoordination = "PROJECT_PLANNING_AND_COORDINATION",
|
|
37742
37813
|
ProjectProgress = "PROJECT_PROGRESS",
|
|
37814
|
+
RunSprints = "RUN_SPRINTS",
|
|
37743
37815
|
Stakeholders = "STAKEHOLDERS",
|
|
37744
37816
|
StrategiesAndGoals = "STRATEGIES_AND_GOALS",
|
|
37745
37817
|
SystemAndToolEvaluations = "SYSTEM_AND_TOOL_EVALUATIONS",
|
|
37746
37818
|
TrackingRprtng = "TRACKING_RPRTNG",
|
|
37747
37819
|
TrackBugs = "TRACK_BUGS",
|
|
37748
|
-
UseKanbanBoard = "USE_KANBAN_BOARD"
|
|
37820
|
+
UseKanbanBoard = "USE_KANBAN_BOARD",
|
|
37821
|
+
WorkInScrum = "WORK_IN_SCRUM"
|
|
37749
37822
|
}
|
|
37750
37823
|
export declare enum GrowthUnifiedProfileJiraFamiliarity {
|
|
37751
37824
|
Experience = "EXPERIENCE",
|
|
@@ -55600,6 +55673,7 @@ export declare enum JsmChatConversationAnalyticsEvent {
|
|
|
55600
55673
|
export declare type JsmChatConversationAnalyticsMetadataInput = {
|
|
55601
55674
|
channelType?: InputMaybe<JsmChatConversationChannelType>;
|
|
55602
55675
|
csatScore?: InputMaybe<Scalars['Int']['input']>;
|
|
55676
|
+
helpCenterId?: InputMaybe<Scalars['String']['input']>;
|
|
55603
55677
|
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
55604
55678
|
};
|
|
55605
55679
|
export declare type JsmChatConversationAppendixAction = JsmChatDropdownAppendix | JsmChatJiraFieldAppendix | JsmChatOptionAppendix;
|
|
@@ -58170,7 +58244,7 @@ export declare type MarketplaceConsoleRemoteArtifactDetails = {
|
|
|
58170
58244
|
};
|
|
58171
58245
|
export declare type MarketplaceConsoleRemoteArtifactLinks = {
|
|
58172
58246
|
__typename?: 'MarketplaceConsoleRemoteArtifactLinks';
|
|
58173
|
-
binary
|
|
58247
|
+
binary?: Maybe<MarketplaceConsoleLink>;
|
|
58174
58248
|
remote?: Maybe<MarketplaceConsoleLink>;
|
|
58175
58249
|
self: MarketplaceConsoleLink;
|
|
58176
58250
|
};
|
|
@@ -70936,6 +71010,7 @@ export declare type TrelloAssignCardToPlannerCalendarEventInput = {
|
|
|
70936
71010
|
export declare type TrelloAssignCardToPlannerCalendarEventPayload = Payload & {
|
|
70937
71011
|
__typename?: 'TrelloAssignCardToPlannerCalendarEventPayload';
|
|
70938
71012
|
errors?: Maybe<Array<MutationError>>;
|
|
71013
|
+
event?: Maybe<TrelloPlannerCalendarEvent>;
|
|
70939
71014
|
eventCard?: Maybe<TrelloPlannerCalendarEventCardConnectionUpdated>;
|
|
70940
71015
|
success: Scalars['Boolean']['output'];
|
|
70941
71016
|
};
|
|
@@ -72142,7 +72217,6 @@ export declare type TrelloQueryApi = {
|
|
|
72142
72217
|
board?: Maybe<TrelloBoard>;
|
|
72143
72218
|
boardByShortLink?: Maybe<TrelloBoard>;
|
|
72144
72219
|
card?: Maybe<TrelloCard>;
|
|
72145
|
-
cardsForPlannerEvent?: Maybe<TrelloPlannerCalendarEventCardConnection>;
|
|
72146
72220
|
echo?: Maybe<Scalars['String']['output']>;
|
|
72147
72221
|
echos?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
72148
72222
|
enabledPlannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
|
|
@@ -72171,13 +72245,6 @@ export declare type TrelloQueryApiBoardByShortLinkArgs = {
|
|
|
72171
72245
|
export declare type TrelloQueryApiCardArgs = {
|
|
72172
72246
|
id: Scalars['ID']['input'];
|
|
72173
72247
|
};
|
|
72174
|
-
export declare type TrelloQueryApiCardsForPlannerEventArgs = {
|
|
72175
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
72176
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
72177
|
-
providerAccountId: Scalars['ID']['input'];
|
|
72178
|
-
providerEventId: Scalars['ID']['input'];
|
|
72179
|
-
workspaceId: Scalars['ID']['input'];
|
|
72180
|
-
};
|
|
72181
72248
|
export declare type TrelloQueryApiEchosArgs = {
|
|
72182
72249
|
echo: Array<Scalars['String']['input']>;
|
|
72183
72250
|
};
|
|
@@ -72855,7 +72922,7 @@ export declare type UnifiedLearningCertificationEdge = UnifiedIEdge & {
|
|
|
72855
72922
|
export declare type UnifiedLinkTransaction = {
|
|
72856
72923
|
__typename?: 'UnifiedLinkTransaction';
|
|
72857
72924
|
id: Scalars['ID']['output'];
|
|
72858
|
-
|
|
72925
|
+
token?: Maybe<Scalars['String']['output']>;
|
|
72859
72926
|
};
|
|
72860
72927
|
export declare type UnifiedLinkedAccount = UnifiedINode & {
|
|
72861
72928
|
__typename?: 'UnifiedLinkedAccount';
|
|
@@ -72887,9 +72954,9 @@ export declare type UnifiedLinkedAccountPayload = UnifiedPayload & {
|
|
|
72887
72954
|
};
|
|
72888
72955
|
export declare type UnifiedLinkingMutation = {
|
|
72889
72956
|
__typename?: 'UnifiedLinkingMutation';
|
|
72890
|
-
authenticateTransaction?: Maybe<
|
|
72891
|
-
completeTransaction?: Maybe<
|
|
72892
|
-
initializeTransaction?: Maybe<
|
|
72957
|
+
authenticateTransaction?: Maybe<UnifiedLinkingPayload>;
|
|
72958
|
+
completeTransaction?: Maybe<UnifiedLinkingPayload>;
|
|
72959
|
+
initializeTransaction?: Maybe<UnifiedULinkTransactionPayload>;
|
|
72893
72960
|
};
|
|
72894
72961
|
export declare type UnifiedLinkingMutationAuthenticateTransactionArgs = {
|
|
72895
72962
|
isLoggedInPrimary?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -72902,6 +72969,12 @@ export declare type UnifiedLinkingMutationInitializeTransactionArgs = {
|
|
|
72902
72969
|
account2Aaid?: InputMaybe<Scalars['String']['input']>;
|
|
72903
72970
|
primaryAccountType?: InputMaybe<UnifiedPrimaryAccountType>;
|
|
72904
72971
|
};
|
|
72972
|
+
export declare type UnifiedLinkingPayload = UnifiedPayload & {
|
|
72973
|
+
__typename?: 'UnifiedLinkingPayload';
|
|
72974
|
+
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
72975
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
72976
|
+
success: Scalars['Boolean']['output'];
|
|
72977
|
+
};
|
|
72905
72978
|
export declare type UnifiedMutation = {
|
|
72906
72979
|
__typename?: 'UnifiedMutation';
|
|
72907
72980
|
createLinkedAccount?: Maybe<UnifiedLinkedAccountPayload>;
|
|
@@ -73115,7 +73188,7 @@ export declare type UnifiedUGamificationResult = UnifiedGamification | UnifiedQu
|
|
|
73115
73188
|
export declare type UnifiedUGatingStatusResult = UnifiedAccessStatus | UnifiedQueryError;
|
|
73116
73189
|
export declare type UnifiedULearningCertificationResult = UnifiedLearningCertificationConnection | UnifiedQueryError;
|
|
73117
73190
|
export declare type UnifiedULearningResult = UnifiedLearning | UnifiedQueryError;
|
|
73118
|
-
export declare type
|
|
73191
|
+
export declare type UnifiedULinkTransactionPayload = UnifiedLinkTransaction | UnifiedLinkingPayload;
|
|
73119
73192
|
export declare type UnifiedULinkedAccount2Result = UnifiedLinkedAccount2Connection | UnifiedQueryError;
|
|
73120
73193
|
export declare type UnifiedUProfileBadgesResult = UnifiedProfileBadgesConnection | UnifiedQueryError;
|
|
73121
73194
|
export declare type UnifiedUProfileResult = UnifiedProfile | UnifiedQueryError;
|
|
@@ -74448,7 +74521,6 @@ export declare type WorkSuggestionsByProjectsResponse = {
|
|
|
74448
74521
|
inactivePRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestInactiveTask>>;
|
|
74449
74522
|
pullRequestSuggestions?: Maybe<Array<WorkSuggestionsPeriscopeTask>>;
|
|
74450
74523
|
recentPullRequests?: Maybe<WorkSuggestionsPullRequestSuggestionsResponse>;
|
|
74451
|
-
sortOrder?: Maybe<WorkSuggestionsOrder>;
|
|
74452
74524
|
stuckIssueSuggestions?: Maybe<Array<WorkSuggestionsStuckIssueTask>>;
|
|
74453
74525
|
};
|
|
74454
74526
|
export declare type WorkSuggestionsByProjectsResponseAutoDevJobsSuggestionsArgs = {
|
|
@@ -74670,10 +74742,6 @@ export declare type WorkSuggestionsMutationErrorExtension = MutationErrorExtensi
|
|
|
74670
74742
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
74671
74743
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
74672
74744
|
};
|
|
74673
|
-
export declare type WorkSuggestionsOrder = {
|
|
74674
|
-
__typename?: 'WorkSuggestionsOrder';
|
|
74675
|
-
defaultOrder: Array<Scalars['ID']['output']>;
|
|
74676
|
-
};
|
|
74677
74745
|
export declare type WorkSuggestionsOrderScore = {
|
|
74678
74746
|
__typename?: 'WorkSuggestionsOrderScore';
|
|
74679
74747
|
byTaskType?: Maybe<WorkSuggestionsOrderScores>;
|