@forge/cli-shared 3.5.1-next.3 → 3.5.1-next.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/out/graphql/graphql-types.d.ts +214 -9
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +28 -4
- package/out/service/feature-flag-service.d.ts +1 -0
- package/out/service/feature-flag-service.d.ts.map +1 -1
- package/out/shared/error-handling.d.ts +1 -1
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +8 -3
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.5.1-next.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [30a32d0]
|
|
8
|
+
- @forge/manifest@4.6.0-next.3
|
|
9
|
+
|
|
10
|
+
## 3.5.1-next.4
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 38e4ae44: Added sentry to the CLI for error capture and analytics
|
|
15
|
+
|
|
3
16
|
## 3.5.1-next.3
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -334,7 +334,9 @@ export declare enum ApiGroup {
|
|
|
334
334
|
VirtualAgent = "VIRTUAL_AGENT",
|
|
335
335
|
CollaborationGraph = "COLLABORATION_GRAPH",
|
|
336
336
|
DevopsThirdParty = "DEVOPS_THIRD_PARTY",
|
|
337
|
-
CloudAdmin = "CLOUD_ADMIN"
|
|
337
|
+
CloudAdmin = "CLOUD_ADMIN",
|
|
338
|
+
CustomerService = "CUSTOMER_SERVICE",
|
|
339
|
+
SurfacePlatform = "SURFACE_PLATFORM"
|
|
338
340
|
}
|
|
339
341
|
export declare type App = {
|
|
340
342
|
__typename?: 'App';
|
|
@@ -4710,6 +4712,8 @@ export declare type ContentPlatformReleaseNote = {
|
|
|
4710
4712
|
featureRolloutEndDate?: Maybe<Scalars['String']>;
|
|
4711
4713
|
changeCategory?: Maybe<ContentPlatformTaxonomyChangeCategory>;
|
|
4712
4714
|
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
4715
|
+
releaseNoteFlagProject?: Maybe<Scalars['String']>;
|
|
4716
|
+
releaseNoteFlagEnvironment?: Maybe<Scalars['String']>;
|
|
4713
4717
|
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
4714
4718
|
publishStatus?: Maybe<Scalars['String']>;
|
|
4715
4719
|
benefitsList?: Maybe<Scalars['JSON']>;
|
|
@@ -5334,6 +5338,70 @@ export declare type CustomUiTunnelDefinitionInput = {
|
|
|
5334
5338
|
resourceKey?: Maybe<Scalars['String']>;
|
|
5335
5339
|
tunnelUrl?: Maybe<Scalars['URL']>;
|
|
5336
5340
|
};
|
|
5341
|
+
export declare type CustomerServiceAccount = Node & {
|
|
5342
|
+
__typename?: 'CustomerServiceAccount';
|
|
5343
|
+
id: Scalars['ID'];
|
|
5344
|
+
name: Scalars['String'];
|
|
5345
|
+
description?: Maybe<Scalars['String']>;
|
|
5346
|
+
};
|
|
5347
|
+
export declare type CustomerServiceAccountCreateInput = {
|
|
5348
|
+
name: Scalars['String'];
|
|
5349
|
+
description?: Maybe<Scalars['String']>;
|
|
5350
|
+
};
|
|
5351
|
+
export declare type CustomerServiceAccountCreatePayload = Payload & {
|
|
5352
|
+
__typename?: 'CustomerServiceAccountCreatePayload';
|
|
5353
|
+
success: Scalars['Boolean'];
|
|
5354
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5355
|
+
successfullyCreatedAccountId?: Maybe<Scalars['ID']>;
|
|
5356
|
+
};
|
|
5357
|
+
export declare type CustomerServiceAccountDeleteInput = {
|
|
5358
|
+
id: Scalars['ID'];
|
|
5359
|
+
};
|
|
5360
|
+
export declare type CustomerServiceAccountDeletePayload = Payload & {
|
|
5361
|
+
__typename?: 'CustomerServiceAccountDeletePayload';
|
|
5362
|
+
success: Scalars['Boolean'];
|
|
5363
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5364
|
+
successfullyDeletedAccountId?: Maybe<Scalars['ID']>;
|
|
5365
|
+
};
|
|
5366
|
+
export declare type CustomerServiceAccountQueryResult = CustomerServiceAccount | QueryError;
|
|
5367
|
+
export declare type CustomerServiceAccountUpdateInput = {
|
|
5368
|
+
id: Scalars['ID'];
|
|
5369
|
+
name?: Maybe<Scalars['String']>;
|
|
5370
|
+
description?: Maybe<Scalars['String']>;
|
|
5371
|
+
};
|
|
5372
|
+
export declare type CustomerServiceAccountUpdatePayload = Payload & {
|
|
5373
|
+
__typename?: 'CustomerServiceAccountUpdatePayload';
|
|
5374
|
+
success: Scalars['Boolean'];
|
|
5375
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5376
|
+
successfullyUpdatedAccountId?: Maybe<Scalars['ID']>;
|
|
5377
|
+
};
|
|
5378
|
+
export declare type CustomerServiceMutationApi = {
|
|
5379
|
+
__typename?: 'CustomerServiceMutationApi';
|
|
5380
|
+
createAccount?: Maybe<CustomerServiceAccountCreatePayload>;
|
|
5381
|
+
updateAccount?: Maybe<CustomerServiceAccountUpdatePayload>;
|
|
5382
|
+
deleteAccount?: Maybe<CustomerServiceAccountDeletePayload>;
|
|
5383
|
+
};
|
|
5384
|
+
export declare type CustomerServiceMutationApiCreateAccountArgs = {
|
|
5385
|
+
input: CustomerServiceAccountCreateInput;
|
|
5386
|
+
};
|
|
5387
|
+
export declare type CustomerServiceMutationApiUpdateAccountArgs = {
|
|
5388
|
+
input: CustomerServiceAccountUpdateInput;
|
|
5389
|
+
};
|
|
5390
|
+
export declare type CustomerServiceMutationApiDeleteAccountArgs = {
|
|
5391
|
+
input?: Maybe<CustomerServiceAccountDeleteInput>;
|
|
5392
|
+
};
|
|
5393
|
+
export declare type CustomerServiceQueryApi = {
|
|
5394
|
+
__typename?: 'CustomerServiceQueryApi';
|
|
5395
|
+
accountByAccountId?: Maybe<CustomerServiceAccountQueryResult>;
|
|
5396
|
+
};
|
|
5397
|
+
export declare type CustomerServiceQueryApiAccountByAccountIdArgs = {
|
|
5398
|
+
accountId: Scalars['ID'];
|
|
5399
|
+
};
|
|
5400
|
+
export declare type CustomerServiceStatusPayload = Payload & {
|
|
5401
|
+
__typename?: 'CustomerServiceStatusPayload';
|
|
5402
|
+
success: Scalars['Boolean'];
|
|
5403
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5404
|
+
};
|
|
5337
5405
|
export declare type CustomerUser = User & LocalizationContext & {
|
|
5338
5406
|
__typename?: 'CustomerUser';
|
|
5339
5407
|
id: Scalars['ID'];
|
|
@@ -7820,6 +7888,9 @@ export declare type InstallationSummaryApp = {
|
|
|
7820
7888
|
name?: Maybe<Scalars['String']>;
|
|
7821
7889
|
description?: Maybe<Scalars['String']>;
|
|
7822
7890
|
environment: InstallationSummaryAppEnvironment;
|
|
7891
|
+
definitionId?: Maybe<Scalars['ID']>;
|
|
7892
|
+
installationId?: Maybe<Scalars['ID']>;
|
|
7893
|
+
isSystemApp?: Maybe<Scalars['Boolean']>;
|
|
7823
7894
|
};
|
|
7824
7895
|
export declare type InstallationSummaryAppEnvironment = {
|
|
7825
7896
|
__typename?: 'InstallationSummaryAppEnvironment';
|
|
@@ -8491,6 +8562,74 @@ export declare type JiraCmdbFieldSelectedCmdbObjectsConnectionArgs = {
|
|
|
8491
8562
|
last?: Maybe<Scalars['Int']>;
|
|
8492
8563
|
before?: Maybe<Scalars['String']>;
|
|
8493
8564
|
};
|
|
8565
|
+
export declare type JiraCannedResponse = Node & {
|
|
8566
|
+
__typename?: 'JiraCannedResponse';
|
|
8567
|
+
id: Scalars['ID'];
|
|
8568
|
+
projectAri: Scalars['ID'];
|
|
8569
|
+
title: Scalars['String'];
|
|
8570
|
+
content: Scalars['String'];
|
|
8571
|
+
scope: JiraCannedResponseScope;
|
|
8572
|
+
lastUpdatedAt?: Maybe<Scalars['Long']>;
|
|
8573
|
+
createdBy?: Maybe<Scalars['ID']>;
|
|
8574
|
+
usageCount?: Maybe<Scalars['Int']>;
|
|
8575
|
+
};
|
|
8576
|
+
export declare type JiraCannedResponseCreateInput = {
|
|
8577
|
+
projectAri: Scalars['ID'];
|
|
8578
|
+
title: Scalars['String'];
|
|
8579
|
+
content: Scalars['String'];
|
|
8580
|
+
scope: JiraCannedResponseScope;
|
|
8581
|
+
};
|
|
8582
|
+
export declare type JiraCannedResponseCreatePayload = Payload & {
|
|
8583
|
+
__typename?: 'JiraCannedResponseCreatePayload';
|
|
8584
|
+
success: Scalars['Boolean'];
|
|
8585
|
+
errors?: Maybe<Array<MutationError>>;
|
|
8586
|
+
jiraCannedResponse?: Maybe<JiraCannedResponse>;
|
|
8587
|
+
};
|
|
8588
|
+
export declare type JiraCannedResponseDeletePayload = Payload & {
|
|
8589
|
+
__typename?: 'JiraCannedResponseDeletePayload';
|
|
8590
|
+
id: Scalars['ID'];
|
|
8591
|
+
success: Scalars['Boolean'];
|
|
8592
|
+
errors?: Maybe<Array<MutationError>>;
|
|
8593
|
+
};
|
|
8594
|
+
export declare type JiraCannedResponseMutationApi = {
|
|
8595
|
+
__typename?: 'JiraCannedResponseMutationApi';
|
|
8596
|
+
createCannedResponse?: Maybe<JiraCannedResponseCreatePayload>;
|
|
8597
|
+
updateCannedResponse?: Maybe<JiraCannedResponseUpdatePayload>;
|
|
8598
|
+
deleteCannedResponse?: Maybe<JiraCannedResponseDeletePayload>;
|
|
8599
|
+
};
|
|
8600
|
+
export declare type JiraCannedResponseMutationApiCreateCannedResponseArgs = {
|
|
8601
|
+
input: JiraCannedResponseCreateInput;
|
|
8602
|
+
};
|
|
8603
|
+
export declare type JiraCannedResponseMutationApiUpdateCannedResponseArgs = {
|
|
8604
|
+
input: JiraCannedResponseUpdateInput;
|
|
8605
|
+
};
|
|
8606
|
+
export declare type JiraCannedResponseMutationApiDeleteCannedResponseArgs = {
|
|
8607
|
+
id: Scalars['ID'];
|
|
8608
|
+
};
|
|
8609
|
+
export declare type JiraCannedResponseQueryApi = {
|
|
8610
|
+
__typename?: 'JiraCannedResponseQueryApi';
|
|
8611
|
+
cannedResponseById?: Maybe<JiraCannedResponseQueryResult>;
|
|
8612
|
+
};
|
|
8613
|
+
export declare type JiraCannedResponseQueryApiCannedResponseByIdArgs = {
|
|
8614
|
+
id: Scalars['ID'];
|
|
8615
|
+
};
|
|
8616
|
+
export declare type JiraCannedResponseQueryResult = JiraCannedResponse | QueryError;
|
|
8617
|
+
export declare enum JiraCannedResponseScope {
|
|
8618
|
+
Project = "PROJECT",
|
|
8619
|
+
Personal = "PERSONAL"
|
|
8620
|
+
}
|
|
8621
|
+
export declare type JiraCannedResponseUpdateInput = {
|
|
8622
|
+
id: Scalars['ID'];
|
|
8623
|
+
title: Scalars['String'];
|
|
8624
|
+
content: Scalars['String'];
|
|
8625
|
+
scope: JiraCannedResponseScope;
|
|
8626
|
+
};
|
|
8627
|
+
export declare type JiraCannedResponseUpdatePayload = Payload & {
|
|
8628
|
+
__typename?: 'JiraCannedResponseUpdatePayload';
|
|
8629
|
+
success: Scalars['Boolean'];
|
|
8630
|
+
errors?: Maybe<Array<MutationError>>;
|
|
8631
|
+
jiraCannedResponse?: Maybe<JiraCannedResponse>;
|
|
8632
|
+
};
|
|
8494
8633
|
export declare type JiraCascadingOption = {
|
|
8495
8634
|
__typename?: 'JiraCascadingOption';
|
|
8496
8635
|
parentOptionValue?: Maybe<JiraOption>;
|
|
@@ -8698,9 +8837,9 @@ export declare type JiraCmdbMediaClientConfig = {
|
|
|
8698
8837
|
mediaBaseUrl?: Maybe<Scalars['URL']>;
|
|
8699
8838
|
mediaJwtToken?: Maybe<Scalars['String']>;
|
|
8700
8839
|
};
|
|
8701
|
-
export declare type JiraCmdbObject =
|
|
8840
|
+
export declare type JiraCmdbObject = {
|
|
8702
8841
|
__typename?: 'JiraCmdbObject';
|
|
8703
|
-
id
|
|
8842
|
+
id?: Maybe<Scalars['String']>;
|
|
8704
8843
|
objectGlobalId?: Maybe<Scalars['String']>;
|
|
8705
8844
|
objectId?: Maybe<Scalars['String']>;
|
|
8706
8845
|
workspaceId?: Maybe<Scalars['String']>;
|
|
@@ -14004,6 +14143,7 @@ export declare type JiraVersion = Node & {
|
|
|
14004
14143
|
issues?: Maybe<JiraIssueConnection>;
|
|
14005
14144
|
project?: Maybe<JiraProject>;
|
|
14006
14145
|
canEdit?: Maybe<Scalars['Boolean']>;
|
|
14146
|
+
canEditRelatedWork?: Maybe<Scalars['Boolean']>;
|
|
14007
14147
|
canAddAndRemoveIssues?: Maybe<Scalars['Boolean']>;
|
|
14008
14148
|
canViewDevTools?: Maybe<Scalars['Boolean']>;
|
|
14009
14149
|
releaseNotesOptionsIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
@@ -14012,6 +14152,7 @@ export declare type JiraVersion = Node & {
|
|
|
14012
14152
|
releaseNotes?: Maybe<JiraAdf>;
|
|
14013
14153
|
devOpsSummarisedEntities?: Maybe<DevOpsSummarisedEntities>;
|
|
14014
14154
|
versionIssueTableHiddenColumns?: Maybe<Array<Maybe<JiraVersionIssueTableColumn>>>;
|
|
14155
|
+
epicsForFilter?: Maybe<JiraIssueConnection>;
|
|
14015
14156
|
canViewVersionDetailsPage?: Maybe<Scalars['Boolean']>;
|
|
14016
14157
|
releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
|
|
14017
14158
|
availableSites?: Maybe<JiraReleaseNotesInConfluenceAvailableSitesConnection>;
|
|
@@ -14050,6 +14191,9 @@ export declare type JiraVersionNativeReleaseNotesOptionsIssueFieldsArgs = {
|
|
|
14050
14191
|
export declare type JiraVersionReleaseNotesArgs = {
|
|
14051
14192
|
releaseNoteConfiguration?: Maybe<JiraVersionReleaseNotesConfigurationInput>;
|
|
14052
14193
|
};
|
|
14194
|
+
export declare type JiraVersionEpicsForFilterArgs = {
|
|
14195
|
+
searchStr?: Maybe<Scalars['String']>;
|
|
14196
|
+
};
|
|
14053
14197
|
export declare type JiraVersionAvailableSitesArgs = {
|
|
14054
14198
|
first?: Maybe<Scalars['Int']>;
|
|
14055
14199
|
after?: Maybe<Scalars['String']>;
|
|
@@ -15507,6 +15651,7 @@ export declare type Mutation = {
|
|
|
15507
15651
|
createReleaseNote: ContentPlatformReleaseNote;
|
|
15508
15652
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
15509
15653
|
updateReleaseNote: ContentPlatformReleaseNote;
|
|
15654
|
+
jiraCannedResponse?: Maybe<JiraCannedResponseMutationApi>;
|
|
15510
15655
|
devOps?: Maybe<DevOpsMutation>;
|
|
15511
15656
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
15512
15657
|
updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -15591,6 +15736,7 @@ export declare type Mutation = {
|
|
|
15591
15736
|
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
15592
15737
|
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
15593
15738
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
15739
|
+
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
15594
15740
|
mercury?: Maybe<MercuryMutationApi>;
|
|
15595
15741
|
shepherd?: Maybe<ShepherdMutation>;
|
|
15596
15742
|
directory?: Maybe<DirectoryMutation>;
|
|
@@ -15677,6 +15823,8 @@ export declare type MutationCreateReleaseNoteArgs = {
|
|
|
15677
15823
|
fdIssueLink?: Maybe<Scalars['String']>;
|
|
15678
15824
|
featureRolloutDate?: Maybe<Scalars['DateTime']>;
|
|
15679
15825
|
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
15826
|
+
releaseNoteFlagProject?: Maybe<Scalars['String']>;
|
|
15827
|
+
releaseNoteFlagEnvironment?: Maybe<Scalars['String']>;
|
|
15680
15828
|
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
15681
15829
|
announcementPlan?: Maybe<Scalars['String']>;
|
|
15682
15830
|
productNames?: Maybe<Array<Scalars['String']>>;
|
|
@@ -15698,6 +15846,8 @@ export declare type MutationUpdateReleaseNoteArgs = {
|
|
|
15698
15846
|
fdIssueLink?: Maybe<Scalars['String']>;
|
|
15699
15847
|
featureRolloutDate?: Maybe<Scalars['DateTime']>;
|
|
15700
15848
|
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
15849
|
+
releaseNoteFlagProject?: Maybe<Scalars['String']>;
|
|
15850
|
+
releaseNoteFlagEnvironment?: Maybe<Scalars['String']>;
|
|
15701
15851
|
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
15702
15852
|
announcementPlan?: Maybe<Scalars['String']>;
|
|
15703
15853
|
changeCategory?: Maybe<Scalars['String']>;
|
|
@@ -15953,6 +16103,9 @@ export declare type MutationWatchMarketplaceAppArgs = {
|
|
|
15953
16103
|
export declare type MutationUnwatchMarketplaceAppArgs = {
|
|
15954
16104
|
id: Scalars['ID'];
|
|
15955
16105
|
};
|
|
16106
|
+
export declare type MutationCustomerServiceArgs = {
|
|
16107
|
+
cloudId: Scalars['ID'];
|
|
16108
|
+
};
|
|
15956
16109
|
export declare type MutationHelpObjectStoreArgs = {
|
|
15957
16110
|
cloudId: Scalars['ID'];
|
|
15958
16111
|
};
|
|
@@ -17746,6 +17899,7 @@ export declare type PolarisView = {
|
|
|
17746
17899
|
hideEmptyGroups?: Maybe<Scalars['Boolean']>;
|
|
17747
17900
|
enabledAutoSave?: Maybe<Scalars['Boolean']>;
|
|
17748
17901
|
layoutType?: Maybe<PolarisViewLayoutType>;
|
|
17902
|
+
hideEmptyColumns?: Maybe<Scalars['Boolean']>;
|
|
17749
17903
|
};
|
|
17750
17904
|
export declare type PolarisViewJqlArgs = {
|
|
17751
17905
|
filter?: Maybe<PolarisFilterInput>;
|
|
@@ -17881,6 +18035,7 @@ export declare type Query = {
|
|
|
17881
18035
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
17882
18036
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
17883
18037
|
smarts?: Maybe<SmartsQueryApi>;
|
|
18038
|
+
jiraCannedResponse?: Maybe<JiraCannedResponseQueryApi>;
|
|
17884
18039
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
17885
18040
|
devOps?: Maybe<DevOps>;
|
|
17886
18041
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
@@ -17947,6 +18102,7 @@ export declare type Query = {
|
|
|
17947
18102
|
echo?: Maybe<Scalars['String']>;
|
|
17948
18103
|
diagnostics?: Maybe<Scalars['JSON']>;
|
|
17949
18104
|
node?: Maybe<Node>;
|
|
18105
|
+
customerService?: Maybe<CustomerServiceQueryApi>;
|
|
17950
18106
|
activities?: Maybe<Activities>;
|
|
17951
18107
|
activity?: Maybe<Activity>;
|
|
17952
18108
|
mercury?: Maybe<MercuryQueryApi>;
|
|
@@ -18228,6 +18384,9 @@ export declare type QueryExtensionByKeyArgs = {
|
|
|
18228
18384
|
export declare type QueryNodeArgs = {
|
|
18229
18385
|
id: Scalars['ID'];
|
|
18230
18386
|
};
|
|
18387
|
+
export declare type QueryCustomerServiceArgs = {
|
|
18388
|
+
cloudId: Scalars['ID'];
|
|
18389
|
+
};
|
|
18231
18390
|
export declare type QueryBoardScopeArgs = {
|
|
18232
18391
|
boardId: Scalars['ID'];
|
|
18233
18392
|
};
|
|
@@ -18370,6 +18529,7 @@ export declare enum RateLimitingCurrency {
|
|
|
18370
18529
|
DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
|
|
18371
18530
|
TeamsCurrency = "TEAMS_CURRENCY",
|
|
18372
18531
|
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
18532
|
+
TeamSearchCurrency = "TEAM_SEARCH_CURRENCY",
|
|
18373
18533
|
CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY",
|
|
18374
18534
|
CompassSynchronizeLinkAssociationsCurrency = "COMPASS_SYNCHRONIZE_LINK_ASSOCIATIONS_CURRENCY",
|
|
18375
18535
|
DirectoryCurrency = "DIRECTORY_CURRENCY",
|
|
@@ -19392,7 +19552,7 @@ export declare type SearchConfluencePageBlogAttachment = SearchResult & {
|
|
|
19392
19552
|
lastModified?: Maybe<Scalars['DateTime']>;
|
|
19393
19553
|
excerpt?: Maybe<Scalars['String']>;
|
|
19394
19554
|
iconCssClass?: Maybe<Scalars['String']>;
|
|
19395
|
-
|
|
19555
|
+
spaceEntity?: Maybe<ConfluenceSpace>;
|
|
19396
19556
|
pageEntity?: Maybe<ConfluencePage>;
|
|
19397
19557
|
confluenceEntity?: Maybe<SearchConfluenceEntity>;
|
|
19398
19558
|
};
|
|
@@ -19551,11 +19711,6 @@ export declare enum SearchResultType {
|
|
|
19551
19711
|
Project = "project",
|
|
19552
19712
|
Unrecognised = "unrecognised"
|
|
19553
19713
|
}
|
|
19554
|
-
export declare type SearchSpace = {
|
|
19555
|
-
__typename?: 'SearchSpace';
|
|
19556
|
-
key: Scalars['String'];
|
|
19557
|
-
iconUrl: Scalars['URL'];
|
|
19558
|
-
};
|
|
19559
19714
|
export declare type SecurityContainer = {
|
|
19560
19715
|
name: Scalars['String'];
|
|
19561
19716
|
url?: Maybe<Scalars['URL']>;
|
|
@@ -20576,6 +20731,10 @@ export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
|
20576
20731
|
projectType?: JiraProjectType;
|
|
20577
20732
|
filter?: JiraProjectFilterInput;
|
|
20578
20733
|
};
|
|
20734
|
+
export declare enum SubscriptionEventSources {
|
|
20735
|
+
Streamhub = "STREAMHUB",
|
|
20736
|
+
Producer = "PRODUCER"
|
|
20737
|
+
}
|
|
20579
20738
|
export declare type SupportRequest = {
|
|
20580
20739
|
__typename?: 'SupportRequest';
|
|
20581
20740
|
id: Scalars['ID'];
|
|
@@ -21011,13 +21170,58 @@ export declare type TeamMemberEdge = {
|
|
|
21011
21170
|
node?: Maybe<TeamMember>;
|
|
21012
21171
|
cursor: Scalars['String'];
|
|
21013
21172
|
};
|
|
21173
|
+
export declare type TeamMembershipFilter = {
|
|
21174
|
+
memberIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
21175
|
+
};
|
|
21014
21176
|
export declare type TeamQuery = {
|
|
21015
21177
|
__typename?: 'TeamQuery';
|
|
21016
21178
|
team?: Maybe<Team>;
|
|
21179
|
+
teamSearch?: Maybe<TeamSearchResultConnection>;
|
|
21017
21180
|
};
|
|
21018
21181
|
export declare type TeamQueryTeamArgs = {
|
|
21019
21182
|
id: Scalars['ID'];
|
|
21020
21183
|
};
|
|
21184
|
+
export declare type TeamQueryTeamSearchArgs = {
|
|
21185
|
+
organizationId: Scalars['ID'];
|
|
21186
|
+
filter?: Maybe<TeamSearchFilter>;
|
|
21187
|
+
first?: Maybe<Scalars['Int']>;
|
|
21188
|
+
after?: Maybe<Scalars['String']>;
|
|
21189
|
+
sortBy?: Maybe<Array<Maybe<TeamSort>>>;
|
|
21190
|
+
};
|
|
21191
|
+
export declare type TeamSearchFilter = {
|
|
21192
|
+
query?: Maybe<Scalars['String']>;
|
|
21193
|
+
membership?: Maybe<TeamMembershipFilter>;
|
|
21194
|
+
};
|
|
21195
|
+
export declare type TeamSearchResult = {
|
|
21196
|
+
__typename?: 'TeamSearchResult';
|
|
21197
|
+
team?: Maybe<Team>;
|
|
21198
|
+
memberCount?: Maybe<Scalars['Int']>;
|
|
21199
|
+
includesYou?: Maybe<Scalars['Boolean']>;
|
|
21200
|
+
};
|
|
21201
|
+
export declare type TeamSearchResultConnection = {
|
|
21202
|
+
__typename?: 'TeamSearchResultConnection';
|
|
21203
|
+
edges?: Maybe<Array<Maybe<TeamSearchResultEdge>>>;
|
|
21204
|
+
nodes?: Maybe<Array<Maybe<TeamSearchResult>>>;
|
|
21205
|
+
pageInfo?: Maybe<PageInfo>;
|
|
21206
|
+
};
|
|
21207
|
+
export declare type TeamSearchResultEdge = {
|
|
21208
|
+
__typename?: 'TeamSearchResultEdge';
|
|
21209
|
+
node?: Maybe<TeamSearchResult>;
|
|
21210
|
+
cursor: Scalars['String'];
|
|
21211
|
+
};
|
|
21212
|
+
export declare type TeamSort = {
|
|
21213
|
+
field: TeamSortField;
|
|
21214
|
+
order?: Maybe<TeamSortOrder>;
|
|
21215
|
+
};
|
|
21216
|
+
export declare enum TeamSortField {
|
|
21217
|
+
Id = "ID",
|
|
21218
|
+
DisplayName = "DISPLAY_NAME",
|
|
21219
|
+
State = "STATE"
|
|
21220
|
+
}
|
|
21221
|
+
export declare enum TeamSortOrder {
|
|
21222
|
+
Asc = "ASC",
|
|
21223
|
+
Desc = "DESC"
|
|
21224
|
+
}
|
|
21021
21225
|
export declare enum TeamState {
|
|
21022
21226
|
Active = "ACTIVE",
|
|
21023
21227
|
Disbanded = "DISBANDED",
|
|
@@ -22058,6 +22262,7 @@ export declare type UpdatePolarisViewInput = {
|
|
|
22058
22262
|
matrixConfig?: Maybe<UpdatePolarisMatrixConfig>;
|
|
22059
22263
|
sortMode?: Maybe<PolarisViewSortMode>;
|
|
22060
22264
|
hideEmptyGroups?: Maybe<Scalars['Boolean']>;
|
|
22265
|
+
hideEmptyColumns?: Maybe<Scalars['Boolean']>;
|
|
22061
22266
|
enabledAutoSave?: Maybe<Scalars['Boolean']>;
|
|
22062
22267
|
layoutType?: Maybe<PolarisViewLayoutType>;
|
|
22063
22268
|
};
|