@forge/cli-shared 8.10.0-next.15 → 8.10.0-next.15-experimental-ec29181
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 +38 -0
- package/out/graphql/graphql-types.d.ts +279 -12
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +68 -32
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +1 -1
- package/out/ui/command-line-ui.js +7 -0
- package/out/ui/text.d.ts +2 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +6 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 8.10.0-next.15-experimental-ec29181
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- bdec87e: Add list subcommand to webtrigger
|
|
8
|
+
- a6c8085: Validate that provided webtrigger module keys via commands are deployed
|
|
9
|
+
- 895128b: Added shard option to all show commands
|
|
10
|
+
- bc5760d: Add delete subcommand to webtrigger
|
|
11
|
+
- 84a6923: Added new webtrigger create subcommand
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- e1a1a98:
|
|
16
|
+
- 8125559: Disable developer space in fedramp env
|
|
17
|
+
- 6292148: Make links clickable in developer terms
|
|
18
|
+
- 6bd82a7: Enable Christmas seasonal spinner effects for December 1-25 with festive emoji animation
|
|
19
|
+
- f3d2047:
|
|
20
|
+
- 0592764:
|
|
21
|
+
- 949f9df: improve docker compose startup failure error message
|
|
22
|
+
- 128d1f8: Error handling logic for install upgrade code
|
|
23
|
+
- 0e50442: Update Developer Terms link
|
|
24
|
+
- 0c4a82e:
|
|
25
|
+
- Updated dependencies [559c541]
|
|
26
|
+
- Updated dependencies [b5f0775]
|
|
27
|
+
- Updated dependencies [af4af6f]
|
|
28
|
+
- Updated dependencies [2f0c3c2]
|
|
29
|
+
- Updated dependencies [c50eeb5]
|
|
30
|
+
- Updated dependencies [beefc94]
|
|
31
|
+
- Updated dependencies [00eaa35]
|
|
32
|
+
- Updated dependencies [b9cefff]
|
|
33
|
+
- Updated dependencies [b5f0775]
|
|
34
|
+
- Updated dependencies [069288e]
|
|
35
|
+
- Updated dependencies [d317f2e]
|
|
36
|
+
- Updated dependencies [bf0e0f6]
|
|
37
|
+
- Updated dependencies [af4af6f]
|
|
38
|
+
- Updated dependencies [bb6e58a]
|
|
39
|
+
- @forge/manifest@11.1.0-next.7-experimental-ec29181
|
|
40
|
+
|
|
3
41
|
## 8.10.0-next.15
|
|
4
42
|
|
|
5
43
|
### Patch Changes
|
|
@@ -653,7 +653,8 @@ export declare type AvpHotTierFilterConfigInput = {
|
|
|
653
653
|
semanticModel?: InputMaybe<Scalars['String']['input']>;
|
|
654
654
|
};
|
|
655
655
|
export declare enum AvpIntegrationId {
|
|
656
|
-
JsmAssets = "JSM_ASSETS"
|
|
656
|
+
JsmAssets = "JSM_ASSETS",
|
|
657
|
+
JsmSummaryPage = "JSM_SUMMARY_PAGE"
|
|
657
658
|
}
|
|
658
659
|
export declare type AvpMetricsConfiguration = {
|
|
659
660
|
__typename?: 'AVPMetricsConfiguration';
|
|
@@ -1774,6 +1775,15 @@ export declare type AdminDataResidencyFeature = {
|
|
|
1774
1775
|
isDataResidencyAllowed?: Maybe<Scalars['Boolean']['output']>;
|
|
1775
1776
|
realms?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
1776
1777
|
};
|
|
1778
|
+
export declare type AdminDateFilterInput = {
|
|
1779
|
+
absoluteFrom?: InputMaybe<Scalars['DateTime']['input']>;
|
|
1780
|
+
absoluteTo?: InputMaybe<Scalars['DateTime']['input']>;
|
|
1781
|
+
relativeFrom?: InputMaybe<Scalars['Int']['input']>;
|
|
1782
|
+
relativeTo?: InputMaybe<Scalars['Int']['input']>;
|
|
1783
|
+
searchType: AdminTimeSearchType;
|
|
1784
|
+
timeUnit?: InputMaybe<AdminTimeUnit>;
|
|
1785
|
+
value?: InputMaybe<Scalars['Int']['input']>;
|
|
1786
|
+
};
|
|
1777
1787
|
export declare type AdminDeactivateResponsePayload = Payload & {
|
|
1778
1788
|
__typename?: 'AdminDeactivateResponsePayload';
|
|
1779
1789
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -2332,6 +2342,66 @@ export declare type AdminStringKeyValuePair = {
|
|
|
2332
2342
|
key: Scalars['String']['output'];
|
|
2333
2343
|
value: Scalars['String']['output'];
|
|
2334
2344
|
};
|
|
2345
|
+
export declare enum AdminTimeSearchType {
|
|
2346
|
+
BetweenAbsolute = "BETWEEN_ABSOLUTE",
|
|
2347
|
+
BetweenRelative = "BETWEEN_RELATIVE",
|
|
2348
|
+
GreaterThan = "GREATER_THAN",
|
|
2349
|
+
LessThan = "LESS_THAN"
|
|
2350
|
+
}
|
|
2351
|
+
export declare enum AdminTimeUnit {
|
|
2352
|
+
Day = "DAY",
|
|
2353
|
+
Hour = "HOUR",
|
|
2354
|
+
Minute = "MINUTE",
|
|
2355
|
+
Week = "WEEK"
|
|
2356
|
+
}
|
|
2357
|
+
export declare type AdminToken = {
|
|
2358
|
+
__typename?: 'AdminToken';
|
|
2359
|
+
createdAt: Scalars['DateTime']['output'];
|
|
2360
|
+
createdBy?: Maybe<AdminTokenUser>;
|
|
2361
|
+
expiresAt?: Maybe<Scalars['DateTime']['output']>;
|
|
2362
|
+
id: Scalars['ID']['output'];
|
|
2363
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
2364
|
+
lastActiveAt?: Maybe<Scalars['DateTime']['output']>;
|
|
2365
|
+
owner?: Maybe<AdminTokenUser>;
|
|
2366
|
+
resourceId?: Maybe<Scalars['ID']['output']>;
|
|
2367
|
+
revocationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
2368
|
+
revokedBy?: Maybe<Scalars['String']['output']>;
|
|
2369
|
+
scopes?: Maybe<Array<Scalars['String']['output']>>;
|
|
2370
|
+
status?: Maybe<AdminTokenStatus>;
|
|
2371
|
+
type: AdminTokenType;
|
|
2372
|
+
};
|
|
2373
|
+
export declare type AdminTokenConnection = {
|
|
2374
|
+
__typename?: 'AdminTokenConnection';
|
|
2375
|
+
nodes: Array<AdminToken>;
|
|
2376
|
+
pageInfo: PageInfo;
|
|
2377
|
+
totalCount: Scalars['Int']['output'];
|
|
2378
|
+
};
|
|
2379
|
+
export declare type AdminTokenFilters = {
|
|
2380
|
+
createdAt?: InputMaybe<AdminDateFilterInput>;
|
|
2381
|
+
expiresAt?: InputMaybe<AdminDateFilterInput>;
|
|
2382
|
+
includeRevoked?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2383
|
+
lastActiveAt?: InputMaybe<AdminDateFilterInput>;
|
|
2384
|
+
ownerAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2385
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
2386
|
+
status?: InputMaybe<AdminTokenStatus>;
|
|
2387
|
+
};
|
|
2388
|
+
export declare enum AdminTokenStatus {
|
|
2389
|
+
Allowed = "ALLOWED",
|
|
2390
|
+
Blocked = "BLOCKED"
|
|
2391
|
+
}
|
|
2392
|
+
export declare enum AdminTokenType {
|
|
2393
|
+
AdminApiKey = "ADMIN_API_KEY",
|
|
2394
|
+
UserApiToken = "USER_API_TOKEN"
|
|
2395
|
+
}
|
|
2396
|
+
export declare type AdminTokenUser = {
|
|
2397
|
+
__typename?: 'AdminTokenUser';
|
|
2398
|
+
appType?: Maybe<Scalars['String']['output']>;
|
|
2399
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
2400
|
+
id: Scalars['ID']['output'];
|
|
2401
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2402
|
+
orgId?: Maybe<Scalars['ID']['output']>;
|
|
2403
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
2404
|
+
};
|
|
2335
2405
|
export declare type AdminUnit = {
|
|
2336
2406
|
__typename?: 'AdminUnit';
|
|
2337
2407
|
apps?: Maybe<AdminUnitAppsConnection>;
|
|
@@ -3482,9 +3552,14 @@ export declare type AgentStudioWidget = {
|
|
|
3482
3552
|
agentAri: Scalars['ID']['output'];
|
|
3483
3553
|
containerAri: Scalars['String']['output'];
|
|
3484
3554
|
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
3555
|
+
widgetId?: Maybe<Scalars['ID']['output']>;
|
|
3485
3556
|
};
|
|
3486
3557
|
export declare type AgentStudioWidgetByContainerAriResult = AgentStudioWidget | QueryError;
|
|
3487
3558
|
export declare type AgentStudioWidgetContainer = JiraProject;
|
|
3559
|
+
export declare enum AgentStudioWidgetContainerType {
|
|
3560
|
+
HelpCenter = "HELP_CENTER",
|
|
3561
|
+
Portal = "PORTAL"
|
|
3562
|
+
}
|
|
3488
3563
|
export declare type AgentStudioWidgetContainers = {
|
|
3489
3564
|
__typename?: 'AgentStudioWidgetContainers';
|
|
3490
3565
|
containerAris: Array<Scalars['ID']['output']>;
|
|
@@ -3492,6 +3567,12 @@ export declare type AgentStudioWidgetContainers = {
|
|
|
3492
3567
|
totalCount: Scalars['Int']['output'];
|
|
3493
3568
|
};
|
|
3494
3569
|
export declare type AgentStudioWidgetContainersByAgentIdResult = AgentStudioWidgetContainers | QueryError;
|
|
3570
|
+
export declare type AgentStudioWidgets = {
|
|
3571
|
+
__typename?: 'AgentStudioWidgets';
|
|
3572
|
+
totalCount: Scalars['Int']['output'];
|
|
3573
|
+
widgets?: Maybe<Array<AgentStudioWidget>>;
|
|
3574
|
+
};
|
|
3575
|
+
export declare type AgentStudioWidgetsByAgentIdAndContainerTypeResult = AgentStudioWidgets | QueryError;
|
|
3495
3576
|
export declare enum AiCoreApiQuestionType {
|
|
3496
3577
|
DraftDocument = "DRAFT_DOCUMENT",
|
|
3497
3578
|
KnowledgeBase = "KNOWLEDGE_BASE"
|
|
@@ -17446,11 +17527,29 @@ export declare type ConfluenceImport = {
|
|
|
17446
17527
|
accountID: Scalars['ID']['output'];
|
|
17447
17528
|
application: ConfluenceApplication;
|
|
17448
17529
|
cloudID: Scalars['ID']['output'];
|
|
17530
|
+
importResult?: Maybe<ConfluenceImportResult>;
|
|
17449
17531
|
spaceName?: Maybe<Scalars['String']['output']>;
|
|
17450
17532
|
taskCreationTime?: Maybe<Scalars['String']['output']>;
|
|
17451
17533
|
taskID: Scalars['ID']['output'];
|
|
17452
17534
|
taskStatus: ConfluenceImportStatus;
|
|
17453
17535
|
};
|
|
17536
|
+
export declare type ConfluenceImportError = {
|
|
17537
|
+
__typename?: 'ConfluenceImportError';
|
|
17538
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
17539
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
17540
|
+
};
|
|
17541
|
+
export declare type ConfluenceImportFailureReason = {
|
|
17542
|
+
__typename?: 'ConfluenceImportFailureReason';
|
|
17543
|
+
entities?: Maybe<Array<Scalars['String']['output']>>;
|
|
17544
|
+
error?: Maybe<ConfluenceImportError>;
|
|
17545
|
+
};
|
|
17546
|
+
export declare type ConfluenceImportResult = {
|
|
17547
|
+
__typename?: 'ConfluenceImportResult';
|
|
17548
|
+
entitiesFailedCount?: Maybe<Scalars['Int']['output']>;
|
|
17549
|
+
entitiesImportedCount?: Maybe<Scalars['Int']['output']>;
|
|
17550
|
+
entitiesReceivedCount?: Maybe<Scalars['Int']['output']>;
|
|
17551
|
+
failureReasons?: Maybe<Array<ConfluenceImportFailureReason>>;
|
|
17552
|
+
};
|
|
17454
17553
|
export declare type ConfluenceImportSpaceConfiguration = {
|
|
17455
17554
|
__typename?: 'ConfluenceImportSpaceConfiguration';
|
|
17456
17555
|
clientId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -26121,6 +26220,7 @@ export declare type CustomerServiceStatusPayload = Payload & {
|
|
|
26121
26220
|
export declare type CustomerServiceTemplateForm = Node & {
|
|
26122
26221
|
__typename?: 'CustomerServiceTemplateForm';
|
|
26123
26222
|
defaultRouteRule?: Maybe<CustomerServiceRoutingRule>;
|
|
26223
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
26124
26224
|
helpCenter?: Maybe<HelpCenterQueryResult>;
|
|
26125
26225
|
helpCenterId: Scalars['ID']['output'];
|
|
26126
26226
|
id: Scalars['ID']['output'];
|
|
@@ -26164,6 +26264,7 @@ export declare type CustomerServiceTemplateFormFilterInput = {
|
|
|
26164
26264
|
export declare type CustomerServiceTemplateFormQueryResult = CustomerServiceTemplateForm | QueryError;
|
|
26165
26265
|
export declare type CustomerServiceTemplateFormUpdateInput = {
|
|
26166
26266
|
defaultRoutingRule?: InputMaybe<CustomerServiceDefaultRoutingRuleInput>;
|
|
26267
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
26167
26268
|
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26168
26269
|
};
|
|
26169
26270
|
export declare type CustomerServiceTemplateFormUpdatePayload = Payload & {
|
|
@@ -30462,7 +30563,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
30462
30563
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
30463
30564
|
node?: Maybe<ExternalAssociation>;
|
|
30464
30565
|
};
|
|
30465
|
-
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
30566
|
+
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
30466
30567
|
export declare type ExternalAttachment = {
|
|
30467
30568
|
__typename?: 'ExternalAttachment';
|
|
30468
30569
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -30764,6 +30865,30 @@ export declare type ExternalCustomerOrg = Node & {
|
|
|
30764
30865
|
url?: Maybe<Scalars['String']['output']>;
|
|
30765
30866
|
websiteUrl?: Maybe<Scalars['String']['output']>;
|
|
30766
30867
|
};
|
|
30868
|
+
export declare type ExternalCustomerOrgCategory = Node & {
|
|
30869
|
+
__typename?: 'ExternalCustomerOrgCategory';
|
|
30870
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
30871
|
+
categoryType?: Maybe<Scalars['String']['output']>;
|
|
30872
|
+
container?: Maybe<ExternalEntity>;
|
|
30873
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
30874
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
30875
|
+
createdBy?: Maybe<ExternalUser>;
|
|
30876
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
30877
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
30878
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
30879
|
+
id: Scalars['ID']['output'];
|
|
30880
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
30881
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
30882
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
30883
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
30884
|
+
parent?: Maybe<ExternalEntity>;
|
|
30885
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
30886
|
+
provider?: Maybe<ExternalProvider>;
|
|
30887
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
30888
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
30889
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
30890
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
30891
|
+
};
|
|
30767
30892
|
export declare type ExternalCustomerOrgLastActivity = {
|
|
30768
30893
|
__typename?: 'ExternalCustomerOrgLastActivity';
|
|
30769
30894
|
event?: Maybe<Scalars['String']['output']>;
|
|
@@ -31007,6 +31132,7 @@ export declare type ExternalEntities = {
|
|
|
31007
31132
|
commit?: Maybe<Array<Maybe<ExternalCommit>>>;
|
|
31008
31133
|
conversation?: Maybe<Array<Maybe<ExternalConversation>>>;
|
|
31009
31134
|
customerOrg?: Maybe<Array<Maybe<ExternalCustomerOrg>>>;
|
|
31135
|
+
customerOrgCategory?: Maybe<Array<Maybe<ExternalCustomerOrgCategory>>>;
|
|
31010
31136
|
dashboard?: Maybe<Array<Maybe<ExternalDashboard>>>;
|
|
31011
31137
|
dataTable?: Maybe<Array<Maybe<ExternalDataTable>>>;
|
|
31012
31138
|
deal?: Maybe<Array<Maybe<ExternalDeal>>>;
|
|
@@ -31033,7 +31159,7 @@ export declare type ExternalEntities = {
|
|
|
31033
31159
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
31034
31160
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
31035
31161
|
};
|
|
31036
|
-
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
31162
|
+
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
31037
31163
|
export declare type ExternalEnvironment = {
|
|
31038
31164
|
__typename?: 'ExternalEnvironment';
|
|
31039
31165
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -65775,6 +65901,27 @@ export declare type JiraAffectedServicesInput = {
|
|
|
65775
65901
|
serviceId: Scalars['ID']['input'];
|
|
65776
65902
|
};
|
|
65777
65903
|
export declare type JiraAggregatedDate = JiraDatePickerField | JiraDateTimePickerField;
|
|
65904
|
+
export declare type JiraAggregatedStatusField = JiraIssueField & Node & {
|
|
65905
|
+
__typename?: 'JiraAggregatedStatusField';
|
|
65906
|
+
aggregatedStatusCategory?: Maybe<JiraStatusCategoryProgressConnection>;
|
|
65907
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
65908
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
65909
|
+
fieldId: Scalars['String']['output'];
|
|
65910
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
65911
|
+
id: Scalars['ID']['output'];
|
|
65912
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
65913
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
65914
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
65915
|
+
issue?: Maybe<JiraIssue>;
|
|
65916
|
+
name: Scalars['String']['output'];
|
|
65917
|
+
type: Scalars['String']['output'];
|
|
65918
|
+
};
|
|
65919
|
+
export declare type JiraAggregatedStatusFieldAggregatedStatusCategoryArgs = {
|
|
65920
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
65921
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
65922
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65923
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
65924
|
+
};
|
|
65778
65925
|
export declare type JiraAggregatedTimelineField = JiraIssueField & JiraTimelineVirtualField & Node & {
|
|
65779
65926
|
__typename?: 'JiraAggregatedTimelineField';
|
|
65780
65927
|
aggregatedEndDateViewField?: Maybe<JiraAggregatedDate>;
|
|
@@ -86929,6 +87076,7 @@ export declare type JiraViewQueryInput = {
|
|
|
86929
87076
|
projectKeyAndItemQuery?: InputMaybe<JiraViewProjectKeyAndItemQuery>;
|
|
86930
87077
|
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
86931
87078
|
};
|
|
87079
|
+
export declare type JiraViewResult = JiraBoardView | QueryError;
|
|
86932
87080
|
export declare type JiraViewScopeInput = {
|
|
86933
87081
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
86934
87082
|
projectKeys?: InputMaybe<JiraProjectKeysInput>;
|
|
@@ -88996,6 +89144,12 @@ export declare type KitsuneFeedback = Node & {
|
|
|
88996
89144
|
export declare type KitsuneNode = {
|
|
88997
89145
|
_id: Scalars['ID']['output'];
|
|
88998
89146
|
};
|
|
89147
|
+
export declare type KitsuneSourceInput = {
|
|
89148
|
+
sourceWeb?: InputMaybe<KitsuneSourceInputWeb>;
|
|
89149
|
+
};
|
|
89150
|
+
export declare type KitsuneSourceInputWeb = {
|
|
89151
|
+
url: Scalars['String']['input'];
|
|
89152
|
+
};
|
|
88999
89153
|
export declare type KnowledgeBaseAccessibleLinkedSourceResult = {
|
|
89000
89154
|
__typename?: 'KnowledgeBaseAccessibleLinkedSourceResult';
|
|
89001
89155
|
sourceARI?: Maybe<Scalars['ID']['output']>;
|
|
@@ -90346,25 +90500,46 @@ export declare type LinksSelf = {
|
|
|
90346
90500
|
__typename?: 'LinksSelf';
|
|
90347
90501
|
self?: Maybe<Scalars['String']['output']>;
|
|
90348
90502
|
};
|
|
90503
|
+
export declare type LiveChatClosed = {
|
|
90504
|
+
__typename?: 'LiveChatClosed';
|
|
90505
|
+
adf: Scalars['String']['output'];
|
|
90506
|
+
};
|
|
90349
90507
|
export declare enum LiveChatEventType {
|
|
90350
90508
|
ChatClosed = "CHAT_CLOSED",
|
|
90509
|
+
ChatStarted = "CHAT_STARTED",
|
|
90351
90510
|
ParticipantJoined = "PARTICIPANT_JOINED",
|
|
90352
90511
|
ParticipantLeft = "PARTICIPANT_LEFT",
|
|
90353
90512
|
SystemMessage = "SYSTEM_MESSAGE",
|
|
90354
90513
|
UserMessage = "USER_MESSAGE"
|
|
90355
90514
|
}
|
|
90356
|
-
export declare type
|
|
90357
|
-
__typename?: '
|
|
90515
|
+
export declare type LiveChatParticipantJoined = {
|
|
90516
|
+
__typename?: 'LiveChatParticipantJoined';
|
|
90358
90517
|
adf: Scalars['String']['output'];
|
|
90359
|
-
eventType: LiveChatEventType;
|
|
90360
|
-
senderAccountId?: Maybe<Scalars['String']['output']>;
|
|
90361
90518
|
};
|
|
90519
|
+
export declare type LiveChatParticipantLeft = {
|
|
90520
|
+
__typename?: 'LiveChatParticipantLeft';
|
|
90521
|
+
adf: Scalars['String']['output'];
|
|
90522
|
+
};
|
|
90523
|
+
export declare type LiveChatStarted = {
|
|
90524
|
+
__typename?: 'LiveChatStarted';
|
|
90525
|
+
adf: Scalars['String']['output'];
|
|
90526
|
+
};
|
|
90527
|
+
export declare type LiveChatSystemMessage = {
|
|
90528
|
+
__typename?: 'LiveChatSystemMessage';
|
|
90529
|
+
adf: Scalars['String']['output'];
|
|
90530
|
+
};
|
|
90531
|
+
export declare type LiveChatUpdate = LiveChatClosed | LiveChatParticipantJoined | LiveChatParticipantLeft | LiveChatStarted | LiveChatSystemMessage | LiveChatUserMessage;
|
|
90362
90532
|
export declare type LiveChatUpdateInput = {
|
|
90363
90533
|
adf: Scalars['String']['input'];
|
|
90364
90534
|
chatAri: Scalars['ID']['input'];
|
|
90365
90535
|
eventType: LiveChatEventType;
|
|
90366
90536
|
senderAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
90367
90537
|
};
|
|
90538
|
+
export declare type LiveChatUserMessage = {
|
|
90539
|
+
__typename?: 'LiveChatUserMessage';
|
|
90540
|
+
adf: Scalars['String']['output'];
|
|
90541
|
+
senderAccountId?: Maybe<Scalars['String']['output']>;
|
|
90542
|
+
};
|
|
90368
90543
|
export declare type LocalStorage = {
|
|
90369
90544
|
__typename?: 'LocalStorage';
|
|
90370
90545
|
booleanValues: Array<Maybe<LocalStorageBooleanPair>>;
|
|
@@ -94732,8 +94907,8 @@ export declare type MercuryDismissSuggestedFocusAreaFollowers = Payload & {
|
|
|
94732
94907
|
success: Scalars['Boolean']['output'];
|
|
94733
94908
|
};
|
|
94734
94909
|
export declare type MercuryDismissSuggestedFocusAreaFollowersInput = {
|
|
94735
|
-
|
|
94736
|
-
|
|
94910
|
+
focusAreaId: Scalars['ID']['input'];
|
|
94911
|
+
userIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
94737
94912
|
};
|
|
94738
94913
|
export declare enum MercuryEntityType {
|
|
94739
94914
|
ChangeProposal = "CHANGE_PROPOSAL",
|
|
@@ -95380,13 +95555,14 @@ export declare type MercuryInsightsQueryApi = {
|
|
|
95380
95555
|
};
|
|
95381
95556
|
export declare type MercuryInsightsQueryApiFocusAreaFollowerSuggestionsArgs = {
|
|
95382
95557
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95383
|
-
|
|
95558
|
+
focusAreaId: Scalars['ID']['input'];
|
|
95384
95559
|
};
|
|
95385
95560
|
export declare type MercuryInsightsQueryApiFocusAreaInsightsArgs = {
|
|
95386
95561
|
filter?: InputMaybe<MercuryFocusAreaInsightsFilter>;
|
|
95387
95562
|
focusAreaId: Scalars['ID']['input'];
|
|
95388
95563
|
};
|
|
95389
95564
|
export declare type MercuryInsightsQueryApiFocusAreaWorkSuggestionsArgs = {
|
|
95565
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95390
95566
|
focusAreaId: Scalars['ID']['input'];
|
|
95391
95567
|
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
95392
95568
|
workContainerAri?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -98063,9 +98239,12 @@ export declare type Mutation = {
|
|
|
98063
98239
|
goals_editMetricTarget?: Maybe<TownsquareGoalsEditMetricTargetPayload>;
|
|
98064
98240
|
goals_editRisk?: Maybe<TownsquareGoalsEditRiskPayload>;
|
|
98065
98241
|
goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
|
|
98242
|
+
goals_grantAccess?: Maybe<TownsquareGoalGrantAccessPayload>;
|
|
98066
98243
|
goals_linkWorkItem?: Maybe<TownsquareGoalsLinkWorkItemPayload>;
|
|
98067
98244
|
goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
|
|
98068
98245
|
goals_removeMetricTarget?: Maybe<TownsquareGoalsRemoveMetricTargetPayload>;
|
|
98246
|
+
goals_revokeAccess?: Maybe<TownsquareGoalRevokeAccessPayload>;
|
|
98247
|
+
goals_setUserWatchingTeam?: Maybe<TownsquareGoalsSetUserWatchingTeamPayload>;
|
|
98069
98248
|
goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
|
|
98070
98249
|
goals_setWatchingTeam?: Maybe<TownsquareGoalsSetWatchingTeamPayload>;
|
|
98071
98250
|
goals_shareGoal?: Maybe<TownsquareGoalsShareGoalPayload>;
|
|
@@ -100003,6 +100182,9 @@ export declare type MutationGoals_EditRiskArgs = {
|
|
|
100003
100182
|
export declare type MutationGoals_EditUpdateArgs = {
|
|
100004
100183
|
input?: InputMaybe<TownsquareGoalsEditUpdateInput>;
|
|
100005
100184
|
};
|
|
100185
|
+
export declare type MutationGoals_GrantAccessArgs = {
|
|
100186
|
+
input: TownsquareGoalGrantAccessInput;
|
|
100187
|
+
};
|
|
100006
100188
|
export declare type MutationGoals_LinkWorkItemArgs = {
|
|
100007
100189
|
input: TownsquareGoalsLinkWorkItemInput;
|
|
100008
100190
|
};
|
|
@@ -100012,6 +100194,12 @@ export declare type MutationGoals_RemoveGoalTeamLinkArgs = {
|
|
|
100012
100194
|
export declare type MutationGoals_RemoveMetricTargetArgs = {
|
|
100013
100195
|
input: TownsquareGoalsRemoveMetricTargetInput;
|
|
100014
100196
|
};
|
|
100197
|
+
export declare type MutationGoals_RevokeAccessArgs = {
|
|
100198
|
+
input: TownsquareGoalRevokeAccessInput;
|
|
100199
|
+
};
|
|
100200
|
+
export declare type MutationGoals_SetUserWatchingTeamArgs = {
|
|
100201
|
+
input: TownsquareGoalsSetUserWatchingTeamInput;
|
|
100202
|
+
};
|
|
100015
100203
|
export declare type MutationGoals_SetWatchingGoalArgs = {
|
|
100016
100204
|
input?: InputMaybe<TownsquareGoalsSetWatchingGoalInput>;
|
|
100017
100205
|
};
|
|
@@ -100441,6 +100629,7 @@ export declare type MutationJsmConversation_CloseConversationArgs = {
|
|
|
100441
100629
|
export declare type MutationKitsune_CreateFeedbackArgs = {
|
|
100442
100630
|
content: Scalars['String']['input'];
|
|
100443
100631
|
projectAri: Scalars['ID']['input'];
|
|
100632
|
+
source?: InputMaybe<KitsuneSourceInput>;
|
|
100444
100633
|
title: Scalars['String']['input'];
|
|
100445
100634
|
};
|
|
100446
100635
|
export declare type MutationKitsune_RemoveFeedbackArgs = {
|
|
@@ -103699,8 +103888,8 @@ export declare type PolarisValueRule = {
|
|
|
103699
103888
|
};
|
|
103700
103889
|
export declare type PolarisView = {
|
|
103701
103890
|
__typename?: 'PolarisView';
|
|
103891
|
+
columnSize?: Maybe<PolarisColumnSize>;
|
|
103702
103892
|
comments?: Maybe<Array<PolarisComment>>;
|
|
103703
|
-
connectionsColumnSize?: Maybe<PolarisColumnSize>;
|
|
103704
103893
|
connectionsFilter?: Maybe<Array<PolarisViewFilter>>;
|
|
103705
103894
|
connectionsLayoutType?: Maybe<PolarisConnectionsLayout>;
|
|
103706
103895
|
containsArchived: Scalars['Boolean']['output'];
|
|
@@ -104289,6 +104478,7 @@ export declare type Query = {
|
|
|
104289
104478
|
admin_licenseUsage?: Maybe<AdminLicenseDataConnection>;
|
|
104290
104479
|
admin_org?: Maybe<AdminOrganization>;
|
|
104291
104480
|
admin_permissions?: Maybe<Array<AdminPermission>>;
|
|
104481
|
+
admin_tokens?: Maybe<AdminTokenConnection>;
|
|
104292
104482
|
admin_unitCreateStatus?: Maybe<AdminUnitCreateStatus>;
|
|
104293
104483
|
admin_unitProfile?: Maybe<AdminUnit>;
|
|
104294
104484
|
admin_unitValidateName?: Maybe<AdminUnitValidateName>;
|
|
@@ -104321,6 +104511,7 @@ export declare type Query = {
|
|
|
104321
104511
|
agentStudio_getCreateAgentPermissions?: Maybe<AgentStudioAgentCreatePermissionsConnection>;
|
|
104322
104512
|
agentStudio_getToolsByIdAndSource?: Maybe<Array<AgentStudioTool>>;
|
|
104323
104513
|
agentStudio_getWidgetContainersByAgentId?: Maybe<AgentStudioWidgetContainersByAgentIdResult>;
|
|
104514
|
+
agentStudio_getWidgetsByAgentIdAndContainerType?: Maybe<AgentStudioWidgetsByAgentIdAndContainerTypeResult>;
|
|
104324
104515
|
agentStudio_insightsConfiguration?: Maybe<AgentStudioInsightsConfigurationResult>;
|
|
104325
104516
|
agentStudio_jobExecutionHistory: AgentStudioJobExecutionHistory;
|
|
104326
104517
|
agentStudio_jobRuns: AgentStudioBatchEvaluationJobRunResult;
|
|
@@ -104852,6 +105043,7 @@ export declare type Query = {
|
|
|
104852
105043
|
jira_projectTypesByIds?: Maybe<Array<Maybe<JiraProjectTypeDetails>>>;
|
|
104853
105044
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
104854
105045
|
jira_userSegRedirectAdvice?: Maybe<JiraUserSegRedirectAdvice>;
|
|
105046
|
+
jira_view?: Maybe<JiraViewResult>;
|
|
104855
105047
|
jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
|
|
104856
105048
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
104857
105049
|
jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
@@ -105318,6 +105510,16 @@ export declare type QueryAdmin_PermissionsArgs = {
|
|
|
105318
105510
|
principalId: Scalars['ID']['input'];
|
|
105319
105511
|
resourceId: Scalars['ID']['input'];
|
|
105320
105512
|
};
|
|
105513
|
+
export declare type QueryAdmin_TokensArgs = {
|
|
105514
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
105515
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
105516
|
+
filters?: InputMaybe<AdminTokenFilters>;
|
|
105517
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
105518
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
105519
|
+
orgId: Scalars['ID']['input'];
|
|
105520
|
+
sortBy?: InputMaybe<AdminSortBy>;
|
|
105521
|
+
tokenType: AdminTokenType;
|
|
105522
|
+
};
|
|
105321
105523
|
export declare type QueryAdmin_UnitCreateStatusArgs = {
|
|
105322
105524
|
orgId: Scalars['ID']['input'];
|
|
105323
105525
|
requestId: Scalars['ID']['input'];
|
|
@@ -105496,6 +105698,11 @@ export declare type QueryAgentStudio_GetWidgetContainersByAgentIdArgs = {
|
|
|
105496
105698
|
agentId: Scalars['ID']['input'];
|
|
105497
105699
|
cloudId: Scalars['String']['input'];
|
|
105498
105700
|
};
|
|
105701
|
+
export declare type QueryAgentStudio_GetWidgetsByAgentIdAndContainerTypeArgs = {
|
|
105702
|
+
agentId: Scalars['ID']['input'];
|
|
105703
|
+
cloudId: Scalars['String']['input'];
|
|
105704
|
+
widgetContainerType: AgentStudioWidgetContainerType;
|
|
105705
|
+
};
|
|
105499
105706
|
export declare type QueryAgentStudio_InsightsConfigurationArgs = {
|
|
105500
105707
|
cloudId: Scalars['String']['input'];
|
|
105501
105708
|
id: Scalars['ID']['input'];
|
|
@@ -107823,6 +108030,9 @@ export declare type QueryJira_UserSegRedirectAdviceArgs = {
|
|
|
107823
108030
|
accountId: Scalars['ID']['input'];
|
|
107824
108031
|
cloudId: Scalars['ID']['input'];
|
|
107825
108032
|
};
|
|
108033
|
+
export declare type QueryJira_ViewArgs = {
|
|
108034
|
+
input: JiraViewQueryInput;
|
|
108035
|
+
};
|
|
107826
108036
|
export declare type QueryJpdViewsService_EchoArgs = {
|
|
107827
108037
|
cloudId: Scalars['ID']['input'];
|
|
107828
108038
|
message: Scalars['String']['input'];
|
|
@@ -108306,6 +108516,7 @@ export declare type QueryProjects_SearchJiraWorkItemsToLinkArgs = {
|
|
|
108306
108516
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
108307
108517
|
projectId: Scalars['ID']['input'];
|
|
108308
108518
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
108519
|
+
strictlyReturnFirstItems?: InputMaybe<Scalars['Boolean']['input']>;
|
|
108309
108520
|
};
|
|
108310
108521
|
export declare type QueryProjects_UpdatesByIdsArgs = {
|
|
108311
108522
|
projectUpdateIds: Array<Scalars['String']['input']>;
|
|
@@ -112091,6 +112302,23 @@ export declare type SearchResultAtlasProjectUpdate = SearchResult & {
|
|
|
112091
112302
|
type: SearchResultType;
|
|
112092
112303
|
url: Scalars['String']['output'];
|
|
112093
112304
|
};
|
|
112305
|
+
export declare type SearchResultAtlasTag = SearchResult & {
|
|
112306
|
+
__typename?: 'SearchResultAtlasTag';
|
|
112307
|
+
description: Scalars['String']['output'];
|
|
112308
|
+
entityKey?: Maybe<Scalars['String']['output']>;
|
|
112309
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
112310
|
+
id: Scalars['ID']['output'];
|
|
112311
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
112312
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
112313
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
112314
|
+
permissionsSet?: Maybe<Array<Scalars['String']['output']>>;
|
|
112315
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
112316
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
112317
|
+
smartLinkAris?: Maybe<Array<Scalars['ID']['output']>>;
|
|
112318
|
+
title: Scalars['String']['output'];
|
|
112319
|
+
type: SearchResultType;
|
|
112320
|
+
url: Scalars['String']['output'];
|
|
112321
|
+
};
|
|
112094
112322
|
export declare type SearchResultBitbucketRepository = SearchResult & {
|
|
112095
112323
|
__typename?: 'SearchResultBitbucketRepository';
|
|
112096
112324
|
description: Scalars['String']['output'];
|
|
@@ -136513,6 +136741,10 @@ export declare type TownsquareGoalWorkItemsArgs = {
|
|
|
136513
136741
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
136514
136742
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
136515
136743
|
};
|
|
136744
|
+
export declare enum TownsquareGoalAccessRoleInput {
|
|
136745
|
+
Editor = "EDITOR",
|
|
136746
|
+
Viewer = "VIEWER"
|
|
136747
|
+
}
|
|
136516
136748
|
export declare type TownsquareGoalCapabilities = {
|
|
136517
136749
|
__typename?: 'TownsquareGoalCapabilities';
|
|
136518
136750
|
canAddJiraAlignItems?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -136567,6 +136799,18 @@ export declare type TownsquareGoalEdge = {
|
|
|
136567
136799
|
cursor: Scalars['String']['output'];
|
|
136568
136800
|
node?: Maybe<TownsquareGoal>;
|
|
136569
136801
|
};
|
|
136802
|
+
export declare type TownsquareGoalGrantAccessInput = {
|
|
136803
|
+
addAsFollower?: InputMaybe<Scalars['Boolean']['input']>;
|
|
136804
|
+
goalId: Scalars['ID']['input'];
|
|
136805
|
+
principalIds: Array<Scalars['ID']['input']>;
|
|
136806
|
+
role: TownsquareGoalAccessRoleInput;
|
|
136807
|
+
};
|
|
136808
|
+
export declare type TownsquareGoalGrantAccessPayload = {
|
|
136809
|
+
__typename?: 'TownsquareGoalGrantAccessPayload';
|
|
136810
|
+
errors?: Maybe<Array<MutationError>>;
|
|
136811
|
+
goal?: Maybe<TownsquareGoal>;
|
|
136812
|
+
success: Scalars['Boolean']['output'];
|
|
136813
|
+
};
|
|
136570
136814
|
export declare type TownsquareGoalIcon = {
|
|
136571
136815
|
__typename?: 'TownsquareGoalIcon';
|
|
136572
136816
|
appearance?: Maybe<TownsquareGoalIconAppearance>;
|
|
@@ -136594,6 +136838,16 @@ export declare enum TownsquareGoalProgressType {
|
|
|
136594
136838
|
AverageSuccessMeasureRollup = "AVERAGE_SUCCESS_MEASURE_ROLLUP",
|
|
136595
136839
|
None = "NONE"
|
|
136596
136840
|
}
|
|
136841
|
+
export declare type TownsquareGoalRevokeAccessInput = {
|
|
136842
|
+
goalId: Scalars['ID']['input'];
|
|
136843
|
+
principalIds: Array<Scalars['ID']['input']>;
|
|
136844
|
+
};
|
|
136845
|
+
export declare type TownsquareGoalRevokeAccessPayload = {
|
|
136846
|
+
__typename?: 'TownsquareGoalRevokeAccessPayload';
|
|
136847
|
+
errors?: Maybe<Array<MutationError>>;
|
|
136848
|
+
goal?: Maybe<TownsquareGoal>;
|
|
136849
|
+
success: Scalars['Boolean']['output'];
|
|
136850
|
+
};
|
|
136597
136851
|
export declare enum TownsquareGoalScoringMode {
|
|
136598
136852
|
Okr = "OKR",
|
|
136599
136853
|
Simple = "SIMPLE"
|
|
@@ -137050,6 +137304,17 @@ export declare type TownsquareGoalsRemoveMetricTargetPayload = {
|
|
|
137050
137304
|
goal?: Maybe<TownsquareGoal>;
|
|
137051
137305
|
success: Scalars['Boolean']['output'];
|
|
137052
137306
|
};
|
|
137307
|
+
export declare type TownsquareGoalsSetUserWatchingTeamInput = {
|
|
137308
|
+
containerId: Scalars['ID']['input'];
|
|
137309
|
+
isWatching: Scalars['Boolean']['input'];
|
|
137310
|
+
teamId: Scalars['ID']['input'];
|
|
137311
|
+
};
|
|
137312
|
+
export declare type TownsquareGoalsSetUserWatchingTeamPayload = {
|
|
137313
|
+
__typename?: 'TownsquareGoalsSetUserWatchingTeamPayload';
|
|
137314
|
+
errors?: Maybe<Array<MutationError>>;
|
|
137315
|
+
success: Scalars['Boolean']['output'];
|
|
137316
|
+
team?: Maybe<TeamV2>;
|
|
137317
|
+
};
|
|
137053
137318
|
export declare type TownsquareGoalsSetWatchingGoalInput = {
|
|
137054
137319
|
goalId: Scalars['ID']['input'];
|
|
137055
137320
|
isWatching: Scalars['Boolean']['input'];
|
|
@@ -138946,6 +139211,7 @@ export declare type TrelloBaseBoardUpdated = {
|
|
|
138946
139211
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
138947
139212
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
138948
139213
|
id?: Maybe<Scalars['ID']['output']>;
|
|
139214
|
+
labels?: Maybe<TrelloLabelConnectionUpdated>;
|
|
138949
139215
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
138950
139216
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
138951
139217
|
workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
|
|
@@ -140527,6 +140793,7 @@ export declare type TrelloInboxUpdated = TrelloBaseBoardUpdated & {
|
|
|
140527
140793
|
board: TrelloBoardUpdated;
|
|
140528
140794
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
140529
140795
|
id?: Maybe<Scalars['ID']['output']>;
|
|
140796
|
+
labels?: Maybe<TrelloLabelConnectionUpdated>;
|
|
140530
140797
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
140531
140798
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
140532
140799
|
prefs?: Maybe<TrelloInboxPrefs>;
|
|
@@ -144732,7 +144999,7 @@ export declare type UpdatePolarisViewArrangementInfoPayload = Payload & {
|
|
|
144732
144999
|
success: Scalars['Boolean']['output'];
|
|
144733
145000
|
};
|
|
144734
145001
|
export declare type UpdatePolarisViewInput = {
|
|
144735
|
-
|
|
145002
|
+
columnSize?: InputMaybe<PolarisColumnSize>;
|
|
144736
145003
|
connectionsFilter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
144737
145004
|
connectionsLayoutType?: InputMaybe<PolarisConnectionsLayout>;
|
|
144738
145005
|
description?: InputMaybe<Scalars['JSON']['input']>;
|