@forge/cli-shared 8.8.1-next.5-experimental-04e7c02 → 8.8.1-next.6
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 +2 -13
- package/out/graphql/graphql-types.d.ts +190 -8
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +41 -25
- package/out/ui/text.d.ts +6 -5
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +15 -8
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,21 +1,10 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 8.8.1-next.
|
|
3
|
+
## 8.8.1-next.6
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
- 9cb69da: Enable force forge container deletion
|
|
9
|
-
- 94243f1: Split development and contribution guidelines
|
|
10
|
-
- Updated dependencies [b3792e4]
|
|
11
|
-
- Updated dependencies [fae0e71]
|
|
12
|
-
- Updated dependencies [0ea6722]
|
|
13
|
-
- Updated dependencies [4718346]
|
|
14
|
-
- Updated dependencies [94243f1]
|
|
15
|
-
- Updated dependencies [0ef937d]
|
|
16
|
-
- Updated dependencies [dcd46a4]
|
|
17
|
-
- @forge/manifest@10.8.0-next.5-experimental-04e7c02
|
|
18
|
-
- @forge/util@2.0.1-next.0-experimental-04e7c02
|
|
7
|
+
- 8183db5: added cli command to hit decoupled state endpoint
|
|
19
8
|
|
|
20
9
|
## 8.8.1-next.5
|
|
21
10
|
|
|
@@ -17525,6 +17525,17 @@ export declare type ConfluenceNbmStartScanLongTaskPayload = Payload & {
|
|
|
17525
17525
|
success: Scalars['Boolean']['output'];
|
|
17526
17526
|
taskId?: Maybe<Scalars['ID']['output']>;
|
|
17527
17527
|
};
|
|
17528
|
+
export declare type ConfluenceNbmStartTransformationLongTaskInput = {
|
|
17529
|
+
scanId: Scalars['ID']['input'];
|
|
17530
|
+
transformationEntryIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
17531
|
+
};
|
|
17532
|
+
export declare type ConfluenceNbmStartTransformationLongTaskPayload = Payload & {
|
|
17533
|
+
__typename?: 'ConfluenceNbmStartTransformationLongTaskPayload';
|
|
17534
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17535
|
+
scanId?: Maybe<Scalars['ID']['output']>;
|
|
17536
|
+
success: Scalars['Boolean']['output'];
|
|
17537
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
17538
|
+
};
|
|
17528
17539
|
export declare type ConfluenceNbmStartVerificationLongTaskInput = {
|
|
17529
17540
|
scanId: Scalars['String']['input'];
|
|
17530
17541
|
verificationEntryIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -17537,6 +17548,35 @@ export declare type ConfluenceNbmStartVerificationLongTaskPayload = Payload & {
|
|
|
17537
17548
|
taskId?: Maybe<Scalars['ID']['output']>;
|
|
17538
17549
|
verificationEntryIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
17539
17550
|
};
|
|
17551
|
+
export declare type ConfluenceNbmTransformationEntry = {
|
|
17552
|
+
__typename?: 'ConfluenceNbmTransformationEntry';
|
|
17553
|
+
chain?: Maybe<Scalars['String']['output']>;
|
|
17554
|
+
id: Scalars['ID']['output'];
|
|
17555
|
+
status?: Maybe<ConfluenceNbmTransformationStatus>;
|
|
17556
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
17557
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
17558
|
+
transformedChain?: Maybe<Scalars['String']['output']>;
|
|
17559
|
+
transformerDescription?: Maybe<Scalars['String']['output']>;
|
|
17560
|
+
};
|
|
17561
|
+
export declare type ConfluenceNbmTransformationListConnection = {
|
|
17562
|
+
__typename?: 'ConfluenceNbmTransformationListConnection';
|
|
17563
|
+
edges?: Maybe<Array<Maybe<ConfluenceNbmTransformationListEdge>>>;
|
|
17564
|
+
nodes?: Maybe<Array<Maybe<ConfluenceNbmTransformationEntry>>>;
|
|
17565
|
+
pageInfo: ConfluencePageInfo;
|
|
17566
|
+
};
|
|
17567
|
+
export declare type ConfluenceNbmTransformationListEdge = {
|
|
17568
|
+
__typename?: 'ConfluenceNbmTransformationListEdge';
|
|
17569
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
17570
|
+
node?: Maybe<ConfluenceNbmTransformationEntry>;
|
|
17571
|
+
};
|
|
17572
|
+
export declare enum ConfluenceNbmTransformationStatus {
|
|
17573
|
+
Cancelled = "CANCELLED",
|
|
17574
|
+
Completed = "COMPLETED",
|
|
17575
|
+
Failed = "FAILED",
|
|
17576
|
+
NotTriggered = "NOT_TRIGGERED",
|
|
17577
|
+
Pending = "PENDING",
|
|
17578
|
+
Running = "RUNNING"
|
|
17579
|
+
}
|
|
17540
17580
|
export declare enum ConfluenceNbmVerificationAiState {
|
|
17541
17581
|
Broken = "BROKEN",
|
|
17542
17582
|
Unknown = "UNKNOWN",
|
|
@@ -18723,6 +18763,7 @@ export declare enum ConfluenceSpacePermissionAuditReportType {
|
|
|
18723
18763
|
export declare type ConfluenceSpaceRecommendations = {
|
|
18724
18764
|
__typename?: 'ConfluenceSpaceRecommendations';
|
|
18725
18765
|
active?: Maybe<Array<Maybe<Space>>>;
|
|
18766
|
+
personalSpace?: Maybe<Space>;
|
|
18726
18767
|
starred?: Maybe<Array<Maybe<Space>>>;
|
|
18727
18768
|
};
|
|
18728
18769
|
export declare type ConfluenceSpaceReportPayload = Payload & {
|
|
@@ -70200,6 +70241,7 @@ export declare type JiraIssueCreateInput = {
|
|
|
70200
70241
|
issueTypeId: Scalars['ID']['input'];
|
|
70201
70242
|
projectId: Scalars['ID']['input'];
|
|
70202
70243
|
rank?: InputMaybe<JiraIssueCreateRankInput>;
|
|
70244
|
+
transitionId?: InputMaybe<Scalars['Int']['input']>;
|
|
70203
70245
|
};
|
|
70204
70246
|
export declare type JiraIssueCreatePayload = Payload & {
|
|
70205
70247
|
__typename?: 'JiraIssueCreatePayload';
|
|
@@ -87885,7 +87927,8 @@ export declare type MarketplaceConsoleEditionsFilterInput = {
|
|
|
87885
87927
|
};
|
|
87886
87928
|
export declare enum MarketplaceConsoleEditionsGroup {
|
|
87887
87929
|
Default = "DEFAULT",
|
|
87888
|
-
FedrampModerate = "FEDRAMP_MODERATE"
|
|
87930
|
+
FedrampModerate = "FEDRAMP_MODERATE",
|
|
87931
|
+
IsolatedCloud = "ISOLATED_CLOUD"
|
|
87889
87932
|
}
|
|
87890
87933
|
export declare type MarketplaceConsoleEditionsInput = {
|
|
87891
87934
|
appKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -93365,6 +93408,7 @@ export declare type Mutation = {
|
|
|
93365
93408
|
confluence_nbmBulkUpdateVerificationEntry?: Maybe<ConfluenceNbmBulkUpdateVerificationEntryPayload>;
|
|
93366
93409
|
confluence_nbmRetryScanLongTask?: Maybe<ConfluenceNbmRetryScanLongTaskPayload>;
|
|
93367
93410
|
confluence_nbmStartScanLongTask?: Maybe<ConfluenceNbmStartScanLongTaskPayload>;
|
|
93411
|
+
confluence_nbmStartTransformationLongTask?: Maybe<ConfluenceNbmStartTransformationLongTaskPayload>;
|
|
93368
93412
|
confluence_nbmStartVerificationLongTask?: Maybe<ConfluenceNbmStartVerificationLongTaskPayload>;
|
|
93369
93413
|
confluence_patchCalendar?: Maybe<ConfluencePatchCalendarPayload>;
|
|
93370
93414
|
confluence_publishBlueprintSharedDraft?: Maybe<ConfluencePublishBlueprintSharedDraftPayload>;
|
|
@@ -94596,6 +94640,10 @@ export declare type MutationConfluence_NbmStartScanLongTaskArgs = {
|
|
|
94596
94640
|
cloudId: Scalars['ID']['input'];
|
|
94597
94641
|
input: ConfluenceNbmStartScanLongTaskInput;
|
|
94598
94642
|
};
|
|
94643
|
+
export declare type MutationConfluence_NbmStartTransformationLongTaskArgs = {
|
|
94644
|
+
cloudId: Scalars['ID']['input'];
|
|
94645
|
+
input: ConfluenceNbmStartTransformationLongTaskInput;
|
|
94646
|
+
};
|
|
94599
94647
|
export declare type MutationConfluence_NbmStartVerificationLongTaskArgs = {
|
|
94600
94648
|
cloudId: Scalars['ID']['input'];
|
|
94601
94649
|
input: ConfluenceNbmStartVerificationLongTaskInput;
|
|
@@ -99631,6 +99679,7 @@ export declare type Query = {
|
|
|
99631
99679
|
confluence_mediaTokenData?: Maybe<ConfluenceMediaTokenData>;
|
|
99632
99680
|
confluence_nbmScanList?: Maybe<ConfluenceNbmScanConnection>;
|
|
99633
99681
|
confluence_nbmScanResult?: Maybe<ConfluenceNbmScanResult>;
|
|
99682
|
+
confluence_nbmTransformationList?: Maybe<ConfluenceNbmTransformationListConnection>;
|
|
99634
99683
|
confluence_nbmVerificationResult?: Maybe<ConfluenceNbmVerificationResultConnection>;
|
|
99635
99684
|
confluence_ncsPdfExportConfiguration?: Maybe<ConfluenceNcsPdfExportConfiguration>;
|
|
99636
99685
|
confluence_note?: Maybe<NoteResponse>;
|
|
@@ -100163,7 +100212,9 @@ export declare type Query = {
|
|
|
100163
100212
|
stakeholderComms_getComponentUptimePercentage?: Maybe<StakeholderCommsComponentUptimePercentageResponse>;
|
|
100164
100213
|
stakeholderComms_getComponentWithUptimeByComponentId?: Maybe<StakeholderCommsComponentWithUptimeResponse>;
|
|
100165
100214
|
stakeholderComms_getComponentsWithUptimeByPageId?: Maybe<StakeholderCommsPageComponentsWithUptimeResponse>;
|
|
100215
|
+
stakeholderComms_getComponentsWithUptimeByPageIdV2?: Maybe<StakeholderCommsNestedComponentWithUptimeConnection>;
|
|
100166
100216
|
stakeholderComms_getDraftComponentsByPageId?: Maybe<StakeholderCommsPageDraftComponentResponse>;
|
|
100217
|
+
stakeholderComms_getDraftComponentsByPageIdV2?: Maybe<StakeholderCommsNestedComponentConnection>;
|
|
100167
100218
|
stakeholderComms_getDraftPageById?: Maybe<StakeholderCommsPageResponse>;
|
|
100168
100219
|
stakeholderComms_getDraftPageByName?: Maybe<StakeholderCommsPageResponse>;
|
|
100169
100220
|
stakeholderComms_getFileReadMediaToken?: Maybe<StakeholderCommsMediaToken>;
|
|
@@ -100192,6 +100243,7 @@ export declare type Query = {
|
|
|
100192
100243
|
stakeholderComms_isPageNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
100193
100244
|
stakeholderComms_isStakeholderGroupNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
100194
100245
|
stakeholderComms_listIncidents?: Maybe<StakeholderCommsListIncidentResponse>;
|
|
100246
|
+
stakeholderComms_listIncidentsV2?: Maybe<StakeholderCommsIncidentWithUpdatesConnection>;
|
|
100195
100247
|
stakeholderComms_listStakeholders?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
100196
100248
|
stakeholderComms_unifiedSearch?: Maybe<StakeholderCommsUnifiedSearchResults>;
|
|
100197
100249
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
@@ -101293,6 +101345,12 @@ export declare type QueryConfluence_NbmScanResultArgs = {
|
|
|
101293
101345
|
cloudId: Scalars['ID']['input'];
|
|
101294
101346
|
scanId: Scalars['ID']['input'];
|
|
101295
101347
|
};
|
|
101348
|
+
export declare type QueryConfluence_NbmTransformationListArgs = {
|
|
101349
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
101350
|
+
cloudId: Scalars['ID']['input'];
|
|
101351
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101352
|
+
scanId: Scalars['ID']['input'];
|
|
101353
|
+
};
|
|
101296
101354
|
export declare type QueryConfluence_NbmVerificationResultArgs = {
|
|
101297
101355
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
101298
101356
|
cloudId: Scalars['ID']['input'];
|
|
@@ -103421,9 +103479,15 @@ export declare type QueryStakeholderComms_GetComponentsWithUptimeByPageIdArgs =
|
|
|
103421
103479
|
pageId: Scalars['String']['input'];
|
|
103422
103480
|
startDate: Scalars['String']['input'];
|
|
103423
103481
|
};
|
|
103482
|
+
export declare type QueryStakeholderComms_GetComponentsWithUptimeByPageIdV2Args = {
|
|
103483
|
+
nestedComponentWithUptimeConnectionInput: StakeholderCommsNestedComponentWithUptimeConnectionInput;
|
|
103484
|
+
};
|
|
103424
103485
|
export declare type QueryStakeholderComms_GetDraftComponentsByPageIdArgs = {
|
|
103425
103486
|
pageId: Scalars['String']['input'];
|
|
103426
103487
|
};
|
|
103488
|
+
export declare type QueryStakeholderComms_GetDraftComponentsByPageIdV2Args = {
|
|
103489
|
+
nestedComponentConnectionInput: StakeholderCommsNestedComponentConnectionInput;
|
|
103490
|
+
};
|
|
103427
103491
|
export declare type QueryStakeholderComms_GetDraftPageByIdArgs = {
|
|
103428
103492
|
pageId: Scalars['String']['input'];
|
|
103429
103493
|
};
|
|
@@ -103510,6 +103574,9 @@ export declare type QueryStakeholderComms_IsStakeholderGroupNameUniqueArgs = {
|
|
|
103510
103574
|
export declare type QueryStakeholderComms_ListIncidentsArgs = {
|
|
103511
103575
|
listIncidentInput?: InputMaybe<StakeholderCommsListIncidentInput>;
|
|
103512
103576
|
};
|
|
103577
|
+
export declare type QueryStakeholderComms_ListIncidentsV2Args = {
|
|
103578
|
+
incidentWithUpdatesConnectionInput: StakeholderCommsIncidentWithUpdatesConnectionInput;
|
|
103579
|
+
};
|
|
103513
103580
|
export declare type QueryStakeholderComms_ListStakeholdersArgs = {
|
|
103514
103581
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
103515
103582
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -104676,6 +104743,7 @@ export declare type RegisterTunnelResponse = Payload & {
|
|
|
104676
104743
|
errors?: Maybe<Array<MutationError>>;
|
|
104677
104744
|
success: Scalars['Boolean']['output'];
|
|
104678
104745
|
tunnelId?: Maybe<Scalars['String']['output']>;
|
|
104746
|
+
tunnelK8AuthToken?: Maybe<Scalars['String']['output']>;
|
|
104679
104747
|
tunnelToken?: Maybe<Scalars['String']['output']>;
|
|
104680
104748
|
tunnelUrl?: Maybe<Scalars['String']['output']>;
|
|
104681
104749
|
};
|
|
@@ -106457,6 +106525,7 @@ export declare enum SearchLinkedEntityGranularity {
|
|
|
106457
106525
|
export declare type SearchLinkedResult = SearchResult & {
|
|
106458
106526
|
__typename?: 'SearchLinkedResult';
|
|
106459
106527
|
category: SearchLinkedResultCategory;
|
|
106528
|
+
connectorType?: Maybe<Scalars['String']['output']>;
|
|
106460
106529
|
description: Scalars['String']['output'];
|
|
106461
106530
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
106462
106531
|
id: Scalars['ID']['output'];
|
|
@@ -128142,6 +128211,27 @@ export declare type StakeholderCommsIncidentWithUpdates = {
|
|
|
128142
128211
|
incident?: Maybe<StakeholderCommsIncident>;
|
|
128143
128212
|
incidentUpdates?: Maybe<Array<Maybe<StakeholderCommsIncidentUpdate>>>;
|
|
128144
128213
|
};
|
|
128214
|
+
export declare type StakeholderCommsIncidentWithUpdatesConnection = {
|
|
128215
|
+
__typename?: 'StakeholderCommsIncidentWithUpdatesConnection';
|
|
128216
|
+
edges: Array<StakeholderCommsIncidentWithUpdatesEdge>;
|
|
128217
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
128218
|
+
nodes: Array<StakeholderCommsIncidentWithUpdates>;
|
|
128219
|
+
pageInfo: StakeholderCommsPageInfo;
|
|
128220
|
+
totalCount: Scalars['Int']['output'];
|
|
128221
|
+
};
|
|
128222
|
+
export declare type StakeholderCommsIncidentWithUpdatesConnectionInput = {
|
|
128223
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
128224
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
128225
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
128226
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
128227
|
+
pageId: Scalars['String']['input'];
|
|
128228
|
+
showActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
128229
|
+
};
|
|
128230
|
+
export declare type StakeholderCommsIncidentWithUpdatesEdge = {
|
|
128231
|
+
__typename?: 'StakeholderCommsIncidentWithUpdatesEdge';
|
|
128232
|
+
cursor: Scalars['String']['output'];
|
|
128233
|
+
node: StakeholderCommsIncidentWithUpdates;
|
|
128234
|
+
};
|
|
128145
128235
|
export declare type StakeholderCommsLicenseLimit = {
|
|
128146
128236
|
__typename?: 'StakeholderCommsLicenseLimit';
|
|
128147
128237
|
availableLimit?: Maybe<Scalars['Int']['output']>;
|
|
@@ -128197,6 +128287,26 @@ export declare type StakeholderCommsNestedComponent = {
|
|
|
128197
128287
|
status?: Maybe<StakeholderCommsComponentStatus>;
|
|
128198
128288
|
type?: Maybe<StakeholderCommsComponentType>;
|
|
128199
128289
|
};
|
|
128290
|
+
export declare type StakeholderCommsNestedComponentConnection = {
|
|
128291
|
+
__typename?: 'StakeholderCommsNestedComponentConnection';
|
|
128292
|
+
edges: Array<StakeholderCommsNestedComponentEdge>;
|
|
128293
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
128294
|
+
nodes: Array<StakeholderCommsNestedComponent>;
|
|
128295
|
+
pageInfo: StakeholderCommsPageInfo;
|
|
128296
|
+
totalCount: Scalars['Int']['output'];
|
|
128297
|
+
};
|
|
128298
|
+
export declare type StakeholderCommsNestedComponentConnectionInput = {
|
|
128299
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
128300
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
128301
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
128302
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
128303
|
+
pageId: Scalars['String']['input'];
|
|
128304
|
+
};
|
|
128305
|
+
export declare type StakeholderCommsNestedComponentEdge = {
|
|
128306
|
+
__typename?: 'StakeholderCommsNestedComponentEdge';
|
|
128307
|
+
cursor: Scalars['String']['output'];
|
|
128308
|
+
node: StakeholderCommsNestedComponent;
|
|
128309
|
+
};
|
|
128200
128310
|
export declare type StakeholderCommsNestedComponentWithUptime = {
|
|
128201
128311
|
__typename?: 'StakeholderCommsNestedComponentWithUptime';
|
|
128202
128312
|
components?: Maybe<Array<Maybe<StakeholderCommsNestedComponentWithUptime>>>;
|
|
@@ -128210,6 +128320,31 @@ export declare type StakeholderCommsNestedComponentWithUptime = {
|
|
|
128210
128320
|
status?: Maybe<StakeholderCommsComponentStatus>;
|
|
128211
128321
|
type?: Maybe<StakeholderCommsComponentType>;
|
|
128212
128322
|
};
|
|
128323
|
+
export declare type StakeholderCommsNestedComponentWithUptimeConnection = {
|
|
128324
|
+
__typename?: 'StakeholderCommsNestedComponentWithUptimeConnection';
|
|
128325
|
+
edges: Array<StakeholderCommsNestedComponentWithUptimeEdge>;
|
|
128326
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
128327
|
+
nodes: Array<StakeholderCommsNestedComponentWithUptime>;
|
|
128328
|
+
pageInfo: StakeholderCommsPageInfo;
|
|
128329
|
+
pageUptime?: Maybe<StakeholderCommsPageUptime>;
|
|
128330
|
+
totalCount: Scalars['Int']['output'];
|
|
128331
|
+
};
|
|
128332
|
+
export declare type StakeholderCommsNestedComponentWithUptimeConnectionInput = {
|
|
128333
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
128334
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
128335
|
+
endDate: Scalars['String']['input'];
|
|
128336
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
128337
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
128338
|
+
pageId: Scalars['String']['input'];
|
|
128339
|
+
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
128340
|
+
startDate: Scalars['String']['input'];
|
|
128341
|
+
statusFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
128342
|
+
};
|
|
128343
|
+
export declare type StakeholderCommsNestedComponentWithUptimeEdge = {
|
|
128344
|
+
__typename?: 'StakeholderCommsNestedComponentWithUptimeEdge';
|
|
128345
|
+
cursor: Scalars['String']['output'];
|
|
128346
|
+
node: StakeholderCommsNestedComponentWithUptime;
|
|
128347
|
+
};
|
|
128213
128348
|
export declare type StakeholderCommsNestedDraftComponentInput = {
|
|
128214
128349
|
components?: InputMaybe<Array<InputMaybe<StakeholderCommsNestedDraftComponentInput>>>;
|
|
128215
128350
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -130724,6 +130859,7 @@ export declare type TownsquareGoalProgress = {
|
|
|
130724
130859
|
export declare enum TownsquareGoalProgressType {
|
|
130725
130860
|
AttachedMetric = "ATTACHED_METRIC",
|
|
130726
130861
|
AverageRollup = "AVERAGE_ROLLUP",
|
|
130862
|
+
AverageSuccessMeasureRollup = "AVERAGE_SUCCESS_MEASURE_ROLLUP",
|
|
130727
130863
|
None = "NONE"
|
|
130728
130864
|
}
|
|
130729
130865
|
export declare enum TownsquareGoalScoringMode {
|
|
@@ -130787,6 +130923,7 @@ export declare type TownsquareGoalType = Node & {
|
|
|
130787
130923
|
description?: Maybe<TownsquareGoalTypeDescription>;
|
|
130788
130924
|
icon?: Maybe<TownsquareGoalTypeIcon>;
|
|
130789
130925
|
id: Scalars['ID']['output'];
|
|
130926
|
+
kind?: Maybe<TownsquareGoalTypeKind>;
|
|
130790
130927
|
name?: Maybe<TownsquareGoalTypeName>;
|
|
130791
130928
|
requiresParentGoal?: Maybe<Scalars['Boolean']['output']>;
|
|
130792
130929
|
state?: Maybe<TownsquareGoalTypeState>;
|
|
@@ -130824,6 +130961,10 @@ export declare type TownsquareGoalTypeIcon = {
|
|
|
130824
130961
|
__typename?: 'TownsquareGoalTypeIcon';
|
|
130825
130962
|
key?: Maybe<TownsquareGoalIconKey>;
|
|
130826
130963
|
};
|
|
130964
|
+
export declare enum TownsquareGoalTypeKind {
|
|
130965
|
+
Goal = "GOAL",
|
|
130966
|
+
SuccessMeasure = "SUCCESS_MEASURE"
|
|
130967
|
+
}
|
|
130827
130968
|
export declare type TownsquareGoalTypeName = TownsquareGoalTypeCustomName | TownsquareLocalizationField;
|
|
130828
130969
|
export declare enum TownsquareGoalTypeState {
|
|
130829
130970
|
Disabled = "DISABLED",
|
|
@@ -132813,6 +132954,20 @@ export declare type TrelloBoardBackground = {
|
|
|
132813
132954
|
tile?: Maybe<Scalars['Boolean']['output']>;
|
|
132814
132955
|
topColor?: Maybe<Scalars['String']['output']>;
|
|
132815
132956
|
};
|
|
132957
|
+
export declare type TrelloBoardBackgroundAttachmentInput = {
|
|
132958
|
+
objectId: Scalars['String']['input'];
|
|
132959
|
+
};
|
|
132960
|
+
export declare type TrelloBoardBackgroundColorInput = {
|
|
132961
|
+
objectId: Scalars['String']['input'];
|
|
132962
|
+
};
|
|
132963
|
+
export declare type TrelloBoardBackgroundInput = {
|
|
132964
|
+
attachment?: InputMaybe<TrelloBoardBackgroundAttachmentInput>;
|
|
132965
|
+
color?: InputMaybe<TrelloBoardBackgroundColorInput>;
|
|
132966
|
+
photo?: InputMaybe<TrelloBoardBackgroundPhotoInput>;
|
|
132967
|
+
};
|
|
132968
|
+
export declare type TrelloBoardBackgroundPhotoInput = {
|
|
132969
|
+
objectId: Scalars['String']['input'];
|
|
132970
|
+
};
|
|
132816
132971
|
export declare type TrelloBoardBoardsLimits = {
|
|
132817
132972
|
__typename?: 'TrelloBoardBoardsLimits';
|
|
132818
132973
|
totalAccessRequestsPerBoard?: Maybe<TrelloLimitProps>;
|
|
@@ -134134,7 +134289,7 @@ export declare type TrelloInboxCardUpdated = TrelloBaseCardUpdated & {
|
|
|
134134
134289
|
};
|
|
134135
134290
|
export declare type TrelloInboxNotificationsUpdated = {
|
|
134136
134291
|
__typename?: 'TrelloInboxNotificationsUpdated';
|
|
134137
|
-
|
|
134292
|
+
onQuickCaptureNotificationsCleared?: Maybe<Array<TrelloQuickCaptureNotificationCleared>>;
|
|
134138
134293
|
quickCaptureCards?: Maybe<Array<TrelloInboxQuickCaptureCard>>;
|
|
134139
134294
|
};
|
|
134140
134295
|
export declare type TrelloInboxPrefs = TrelloBaseBoardPrefs & {
|
|
@@ -134144,12 +134299,10 @@ export declare type TrelloInboxPrefs = TrelloBaseBoardPrefs & {
|
|
|
134144
134299
|
};
|
|
134145
134300
|
export declare type TrelloInboxQuickCaptureCard = {
|
|
134146
134301
|
__typename?: 'TrelloInboxQuickCaptureCard';
|
|
134147
|
-
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
134148
134302
|
card?: Maybe<TrelloCard>;
|
|
134149
134303
|
dateCreated?: Maybe<Scalars['DateTime']['output']>;
|
|
134150
|
-
inbox?: Maybe<TrelloInbox>;
|
|
134151
134304
|
member?: Maybe<TrelloMember>;
|
|
134152
|
-
source?: Maybe<
|
|
134305
|
+
source?: Maybe<TrelloCardExternalSource>;
|
|
134153
134306
|
};
|
|
134154
134307
|
export declare type TrelloInboxUpdated = TrelloBaseBoardUpdated & {
|
|
134155
134308
|
__typename?: 'TrelloInboxUpdated';
|
|
@@ -134158,7 +134311,6 @@ export declare type TrelloInboxUpdated = TrelloBaseBoardUpdated & {
|
|
|
134158
134311
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
134159
134312
|
id?: Maybe<Scalars['ID']['output']>;
|
|
134160
134313
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
134161
|
-
notifications?: Maybe<TrelloInboxNotificationsUpdated>;
|
|
134162
134314
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
134163
134315
|
prefs?: Maybe<TrelloInboxPrefs>;
|
|
134164
134316
|
workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
|
|
@@ -134400,6 +134552,7 @@ export declare type TrelloMemberNonPublicData = {
|
|
|
134400
134552
|
fullName?: Maybe<Scalars['String']['output']>;
|
|
134401
134553
|
initials?: Maybe<Scalars['String']['output']>;
|
|
134402
134554
|
};
|
|
134555
|
+
export declare type TrelloMemberNotificationsUpdated = TrelloInboxNotificationsUpdated;
|
|
134403
134556
|
export declare type TrelloMemberPrefs = {
|
|
134404
134557
|
__typename?: 'TrelloMemberPrefs';
|
|
134405
134558
|
colorBlind?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -134414,6 +134567,7 @@ export declare type TrelloMemberUpdated = {
|
|
|
134414
134567
|
id?: Maybe<Scalars['ID']['output']>;
|
|
134415
134568
|
inbox?: Maybe<TrelloInboxUpdated>;
|
|
134416
134569
|
initials?: Maybe<Scalars['String']['output']>;
|
|
134570
|
+
notifications?: Maybe<TrelloMemberNotificationsUpdated>;
|
|
134417
134571
|
planner?: Maybe<TrelloPlannerUpdated>;
|
|
134418
134572
|
username?: Maybe<Scalars['String']['output']>;
|
|
134419
134573
|
};
|
|
@@ -134583,6 +134737,7 @@ export declare type TrelloMutationApi = {
|
|
|
134583
134737
|
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
134584
134738
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
134585
134739
|
updateAiRule?: Maybe<TrelloUpdateAiRulePayload>;
|
|
134740
|
+
updateBoardBackground?: Maybe<TrelloUpdateBoardBackgroundPayload>;
|
|
134586
134741
|
updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
|
|
134587
134742
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
134588
134743
|
updateBoardStarPosition?: Maybe<TrelloUpdateBoardStarPositionPayload>;
|
|
@@ -134594,6 +134749,7 @@ export declare type TrelloMutationApi = {
|
|
|
134594
134749
|
updateBoardVisibility?: Maybe<TrelloUpdateBoardVisibilityPayload>;
|
|
134595
134750
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
134596
134751
|
updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
|
|
134752
|
+
updateInboxBackground?: Maybe<TrelloUpdateInboxBackgroundPayload>;
|
|
134597
134753
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
134598
134754
|
updateOAuth2Client?: Maybe<TrelloUpdateOAuth2ClientPayload>;
|
|
134599
134755
|
updatePrimaryPlannerAccount?: Maybe<TrelloUpdatePrimaryPlannerAccountPayload>;
|
|
@@ -134690,6 +134846,9 @@ export declare type TrelloMutationApiUnwatchCardArgs = {
|
|
|
134690
134846
|
export declare type TrelloMutationApiUpdateAiRuleArgs = {
|
|
134691
134847
|
input: TrelloUpdateAiRuleInput;
|
|
134692
134848
|
};
|
|
134849
|
+
export declare type TrelloMutationApiUpdateBoardBackgroundArgs = {
|
|
134850
|
+
input: TrelloUpdateBoardBackgroundInput;
|
|
134851
|
+
};
|
|
134693
134852
|
export declare type TrelloMutationApiUpdateBoardIsTemplateArgs = {
|
|
134694
134853
|
input: TrelloUpdateBoardIsTemplateInput;
|
|
134695
134854
|
};
|
|
@@ -134723,6 +134882,9 @@ export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
|
134723
134882
|
export declare type TrelloMutationApiUpdateCardPositionOnPlannerCalendarEventArgs = {
|
|
134724
134883
|
input: TrelloUpdateCardPositionOnPlannerCalendarEventInput;
|
|
134725
134884
|
};
|
|
134885
|
+
export declare type TrelloMutationApiUpdateInboxBackgroundArgs = {
|
|
134886
|
+
input: TrelloUpdateInboxBackgroundInput;
|
|
134887
|
+
};
|
|
134726
134888
|
export declare type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
|
|
134727
134889
|
input: TrelloUpdateKeyboardShortcutsPrefInput;
|
|
134728
134890
|
};
|
|
@@ -135370,8 +135532,8 @@ export declare type TrelloQueryApiUsersByIdArgs = {
|
|
|
135370
135532
|
export declare type TrelloQueryApiWorkspaceArgs = {
|
|
135371
135533
|
id: Scalars['ID']['input'];
|
|
135372
135534
|
};
|
|
135373
|
-
export declare type
|
|
135374
|
-
__typename?: '
|
|
135535
|
+
export declare type TrelloQuickCaptureNotificationCleared = {
|
|
135536
|
+
__typename?: 'TrelloQuickCaptureNotificationCleared';
|
|
135375
135537
|
id?: Maybe<Scalars['ID']['output']>;
|
|
135376
135538
|
};
|
|
135377
135539
|
export declare type TrelloReaction = {
|
|
@@ -135629,6 +135791,16 @@ export declare type TrelloUpdateAiRulePayload = Payload & {
|
|
|
135629
135791
|
errors?: Maybe<Array<MutationError>>;
|
|
135630
135792
|
success: Scalars['Boolean']['output'];
|
|
135631
135793
|
};
|
|
135794
|
+
export declare type TrelloUpdateBoardBackgroundInput = {
|
|
135795
|
+
background?: InputMaybe<TrelloBoardBackgroundInput>;
|
|
135796
|
+
id: Scalars['ID']['input'];
|
|
135797
|
+
};
|
|
135798
|
+
export declare type TrelloUpdateBoardBackgroundPayload = Payload & {
|
|
135799
|
+
__typename?: 'TrelloUpdateBoardBackgroundPayload';
|
|
135800
|
+
errors?: Maybe<Array<MutationError>>;
|
|
135801
|
+
prefs?: Maybe<TrelloBoardPrefs>;
|
|
135802
|
+
success: Scalars['Boolean']['output'];
|
|
135803
|
+
};
|
|
135632
135804
|
export declare type TrelloUpdateBoardIsTemplateInput = {
|
|
135633
135805
|
boardId: Scalars['ID']['input'];
|
|
135634
135806
|
value: Scalars['Boolean']['input'];
|
|
@@ -135867,6 +136039,16 @@ export declare type TrelloUpdateCustomFieldItemActionDisplayEntities = {
|
|
|
135867
136039
|
customFieldItem?: Maybe<TrelloActionCustomFieldItemEntity>;
|
|
135868
136040
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
135869
136041
|
};
|
|
136042
|
+
export declare type TrelloUpdateInboxBackgroundInput = {
|
|
136043
|
+
background?: InputMaybe<TrelloBoardBackgroundInput>;
|
|
136044
|
+
memberId: Scalars['ID']['input'];
|
|
136045
|
+
};
|
|
136046
|
+
export declare type TrelloUpdateInboxBackgroundPayload = Payload & {
|
|
136047
|
+
__typename?: 'TrelloUpdateInboxBackgroundPayload';
|
|
136048
|
+
errors?: Maybe<Array<MutationError>>;
|
|
136049
|
+
prefs?: Maybe<TrelloInboxPrefs>;
|
|
136050
|
+
success: Scalars['Boolean']['output'];
|
|
136051
|
+
};
|
|
135870
136052
|
export declare type TrelloUpdateKeyboardShortcutsPrefInput = {
|
|
135871
136053
|
userId: Scalars['ID']['input'];
|
|
135872
136054
|
value: Scalars['Boolean']['input'];
|