@forge/cli-shared 2.1.6-next.10 → 2.1.6-next.14
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
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.1.6-next.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [a0a2c5b]
|
|
8
|
+
- Updated dependencies [689c09b]
|
|
9
|
+
- Updated dependencies [92d081d]
|
|
10
|
+
- Updated dependencies [36c7c8f]
|
|
11
|
+
- @forge/manifest@2.6.0-next.13
|
|
12
|
+
|
|
13
|
+
## 2.1.6-next.13
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [62089be]
|
|
18
|
+
- @forge/manifest@2.6.0-next.12
|
|
19
|
+
|
|
20
|
+
## 2.1.6-next.12
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [dfe9dd8]
|
|
25
|
+
- Updated dependencies [d3c8c8d]
|
|
26
|
+
- Updated dependencies [0a7725f]
|
|
27
|
+
- Updated dependencies [2bb89c5]
|
|
28
|
+
- @forge/manifest@2.6.0-next.11
|
|
29
|
+
|
|
30
|
+
## 2.1.6-next.11
|
|
31
|
+
|
|
32
|
+
### Patch Changes
|
|
33
|
+
|
|
34
|
+
- Updated dependencies [bd6e025]
|
|
35
|
+
- Updated dependencies [d2f6992]
|
|
36
|
+
- @forge/manifest@2.6.0-next.10
|
|
37
|
+
|
|
3
38
|
## 2.1.6-next.10
|
|
4
39
|
|
|
5
40
|
### Patch Changes
|
|
@@ -2213,7 +2213,6 @@ export declare type CompassScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
|
2213
2213
|
};
|
|
2214
2214
|
export declare type CompassScorecardCriteriaScore = {
|
|
2215
2215
|
__typename?: 'CompassScorecardCriteriaScore';
|
|
2216
|
-
scorecardCriteria: CompassScorecardCriteria;
|
|
2217
2216
|
score: Scalars['Int'];
|
|
2218
2217
|
maxScore: Scalars['Int'];
|
|
2219
2218
|
};
|
|
@@ -2235,7 +2234,6 @@ export declare type CompassScorecardScore = {
|
|
|
2235
2234
|
__typename?: 'CompassScorecardScore';
|
|
2236
2235
|
totalScore: Scalars['Int'];
|
|
2237
2236
|
maxTotalScore: Scalars['Int'];
|
|
2238
|
-
scorecard: CompassScorecard;
|
|
2239
2237
|
criteriaScores?: Maybe<Array<CompassScorecardCriteriaScore>>;
|
|
2240
2238
|
};
|
|
2241
2239
|
export declare type CompassScorecardScoreQuery = {
|
|
@@ -2448,6 +2446,7 @@ export declare type ConfigurePolarisRefreshPayload = Payload & {
|
|
|
2448
2446
|
};
|
|
2449
2447
|
export declare type ConfluenceAbstractPage = {
|
|
2450
2448
|
id?: Maybe<Scalars['ID']>;
|
|
2449
|
+
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
2451
2450
|
space?: Maybe<ConfluenceSpace>;
|
|
2452
2451
|
status?: Maybe<ConfluenceContentStatus>;
|
|
2453
2452
|
title?: Maybe<Scalars['String']>;
|
|
@@ -2458,6 +2457,7 @@ export declare type ConfluenceBlogPost = ConfluenceAbstractPage & {
|
|
|
2458
2457
|
blogPostId: Scalars['ID'];
|
|
2459
2458
|
id?: Maybe<Scalars['ID']>;
|
|
2460
2459
|
links?: Maybe<ConfluenceBlogPostLinks>;
|
|
2460
|
+
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
2461
2461
|
space?: Maybe<ConfluenceSpace>;
|
|
2462
2462
|
status?: Maybe<ConfluenceContentStatus>;
|
|
2463
2463
|
title?: Maybe<Scalars['String']>;
|
|
@@ -2492,8 +2492,12 @@ export declare type ConfluenceContentBody = {
|
|
|
2492
2492
|
styledView?: Maybe<Scalars['String']>;
|
|
2493
2493
|
view?: Maybe<Scalars['String']>;
|
|
2494
2494
|
};
|
|
2495
|
+
export declare type ConfluenceContentMetadata = {
|
|
2496
|
+
__typename?: 'ConfluenceContentMetadata';
|
|
2497
|
+
titleEmojiDraft?: Maybe<ConfluenceContentTitleEmoji>;
|
|
2498
|
+
titleEmojiPublished?: Maybe<ConfluenceContentTitleEmoji>;
|
|
2499
|
+
};
|
|
2495
2500
|
export declare enum ConfluenceContentStatus {
|
|
2496
|
-
Any = "ANY",
|
|
2497
2501
|
Archived = "ARCHIVED",
|
|
2498
2502
|
Current = "CURRENT",
|
|
2499
2503
|
Deleted = "DELETED",
|
|
@@ -2501,6 +2505,12 @@ export declare enum ConfluenceContentStatus {
|
|
|
2501
2505
|
Historical = "HISTORICAL",
|
|
2502
2506
|
Trashed = "TRASHED"
|
|
2503
2507
|
}
|
|
2508
|
+
export declare type ConfluenceContentTitleEmoji = {
|
|
2509
|
+
__typename?: 'ConfluenceContentTitleEmoji';
|
|
2510
|
+
id?: Maybe<Scalars['String']>;
|
|
2511
|
+
key?: Maybe<Scalars['String']>;
|
|
2512
|
+
value?: Maybe<Scalars['String']>;
|
|
2513
|
+
};
|
|
2504
2514
|
export declare enum ConfluenceContentType {
|
|
2505
2515
|
Attachment = "ATTACHMENT",
|
|
2506
2516
|
BlogPost = "BLOG_POST",
|
|
@@ -2538,21 +2548,59 @@ export declare enum ConfluenceInlineTaskStatus {
|
|
|
2538
2548
|
Complete = "COMPLETE",
|
|
2539
2549
|
Incomplete = "INCOMPLETE"
|
|
2540
2550
|
}
|
|
2551
|
+
export declare type ConfluenceLabel = {
|
|
2552
|
+
__typename?: 'ConfluenceLabel';
|
|
2553
|
+
id?: Maybe<Scalars['ID']>;
|
|
2554
|
+
label?: Maybe<Scalars['String']>;
|
|
2555
|
+
prefix?: Maybe<Scalars['String']>;
|
|
2556
|
+
};
|
|
2541
2557
|
export declare type ConfluenceMutationApi = {
|
|
2542
2558
|
__typename?: 'ConfluenceMutationApi';
|
|
2543
|
-
|
|
2544
|
-
|
|
2559
|
+
confluenceCreateSpace?: Maybe<ConfluenceCreateSpacePayload>;
|
|
2560
|
+
confluenceUpdateSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
2545
2561
|
};
|
|
2546
|
-
export declare type
|
|
2562
|
+
export declare type ConfluenceMutationApiConfluenceCreateSpaceArgs = {
|
|
2547
2563
|
input: ConfluenceCreateSpaceInput;
|
|
2548
2564
|
};
|
|
2549
|
-
export declare type
|
|
2565
|
+
export declare type ConfluenceMutationApiConfluenceUpdateSpaceArgs = {
|
|
2550
2566
|
input: ConfluenceUpdateSpaceInput;
|
|
2551
2567
|
};
|
|
2568
|
+
export declare type ConfluenceOperationCheck = {
|
|
2569
|
+
__typename?: 'ConfluenceOperationCheck';
|
|
2570
|
+
operation?: Maybe<ConfluenceOperationName>;
|
|
2571
|
+
target?: Maybe<ConfluenceOperationTarget>;
|
|
2572
|
+
};
|
|
2573
|
+
export declare enum ConfluenceOperationName {
|
|
2574
|
+
Administer = "ADMINISTER",
|
|
2575
|
+
Archive = "ARCHIVE",
|
|
2576
|
+
Copy = "COPY",
|
|
2577
|
+
Create = "CREATE",
|
|
2578
|
+
CreateSpace = "CREATE_SPACE",
|
|
2579
|
+
Delete = "DELETE",
|
|
2580
|
+
Export = "EXPORT",
|
|
2581
|
+
Move = "MOVE",
|
|
2582
|
+
Purge = "PURGE",
|
|
2583
|
+
PurgeVersion = "PURGE_VERSION",
|
|
2584
|
+
Read = "READ",
|
|
2585
|
+
Restore = "RESTORE",
|
|
2586
|
+
RestrictContent = "RESTRICT_CONTENT",
|
|
2587
|
+
Update = "UPDATE",
|
|
2588
|
+
Use = "USE"
|
|
2589
|
+
}
|
|
2590
|
+
export declare enum ConfluenceOperationTarget {
|
|
2591
|
+
Application = "APPLICATION",
|
|
2592
|
+
Attachment = "ATTACHMENT",
|
|
2593
|
+
BlogPost = "BLOG_POST",
|
|
2594
|
+
Comment = "COMMENT",
|
|
2595
|
+
Page = "PAGE",
|
|
2596
|
+
Space = "SPACE",
|
|
2597
|
+
UserProfile = "USER_PROFILE"
|
|
2598
|
+
}
|
|
2552
2599
|
export declare type ConfluencePage = ConfluenceAbstractPage & {
|
|
2553
2600
|
__typename?: 'ConfluencePage';
|
|
2554
2601
|
id?: Maybe<Scalars['ID']>;
|
|
2555
2602
|
links?: Maybe<ConfluencePageLinks>;
|
|
2603
|
+
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
2556
2604
|
pageId: Scalars['ID'];
|
|
2557
2605
|
space?: Maybe<ConfluenceSpace>;
|
|
2558
2606
|
status?: Maybe<ConfluenceContentStatus>;
|
|
@@ -2607,15 +2655,30 @@ export declare type ConfluenceQueryApiConfluenceSpacesArgs = {
|
|
|
2607
2655
|
};
|
|
2608
2656
|
export declare type ConfluenceSpace = {
|
|
2609
2657
|
__typename?: 'ConfluenceSpace';
|
|
2658
|
+
description?: Maybe<ConfluenceSpaceDescription>;
|
|
2659
|
+
history?: Maybe<ConfluenceSpaceHistory>;
|
|
2660
|
+
homepage?: Maybe<ConfluenceAbstractPage>;
|
|
2610
2661
|
icon?: Maybe<ConfluenceSpaceIcon>;
|
|
2611
2662
|
id?: Maybe<Scalars['ID']>;
|
|
2612
2663
|
key?: Maybe<Scalars['String']>;
|
|
2613
2664
|
links?: Maybe<ConfluenceSpaceLinks>;
|
|
2665
|
+
metadata?: Maybe<ConfluenceSpaceMetadata>;
|
|
2614
2666
|
name?: Maybe<Scalars['String']>;
|
|
2667
|
+
operations?: Maybe<Array<Maybe<ConfluenceOperationCheck>>>;
|
|
2615
2668
|
spaceId?: Maybe<Scalars['ID']>;
|
|
2616
2669
|
status?: Maybe<ConfluenceSpaceStatus>;
|
|
2617
2670
|
type?: Maybe<ConfluenceSpaceType>;
|
|
2618
2671
|
};
|
|
2672
|
+
export declare type ConfluenceSpaceDescription = {
|
|
2673
|
+
__typename?: 'ConfluenceSpaceDescription';
|
|
2674
|
+
plain?: Maybe<Scalars['String']>;
|
|
2675
|
+
view?: Maybe<Scalars['String']>;
|
|
2676
|
+
};
|
|
2677
|
+
export declare type ConfluenceSpaceHistory = {
|
|
2678
|
+
__typename?: 'ConfluenceSpaceHistory';
|
|
2679
|
+
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
2680
|
+
createdDate?: Maybe<Scalars['String']>;
|
|
2681
|
+
};
|
|
2619
2682
|
export declare type ConfluenceSpaceIcon = {
|
|
2620
2683
|
__typename?: 'ConfluenceSpaceIcon';
|
|
2621
2684
|
height?: Maybe<Scalars['Int']>;
|
|
@@ -2628,6 +2691,15 @@ export declare type ConfluenceSpaceLinks = {
|
|
|
2628
2691
|
base?: Maybe<Scalars['String']>;
|
|
2629
2692
|
webUi?: Maybe<Scalars['String']>;
|
|
2630
2693
|
};
|
|
2694
|
+
export declare type ConfluenceSpaceMetadata = {
|
|
2695
|
+
__typename?: 'ConfluenceSpaceMetadata';
|
|
2696
|
+
labels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
|
|
2697
|
+
recentCommenters?: Maybe<Array<Maybe<ConfluenceUserInfo>>>;
|
|
2698
|
+
recentWatchers?: Maybe<Array<Maybe<ConfluenceUserInfo>>>;
|
|
2699
|
+
totalCommenters?: Maybe<Scalars['Int']>;
|
|
2700
|
+
totalCurrentPages?: Maybe<Scalars['Int']>;
|
|
2701
|
+
totalWatchers?: Maybe<Scalars['Int']>;
|
|
2702
|
+
};
|
|
2631
2703
|
export declare enum ConfluenceSpaceStatus {
|
|
2632
2704
|
Archived = "ARCHIVED",
|
|
2633
2705
|
Current = "CURRENT"
|
|
@@ -3467,6 +3539,7 @@ export declare type CustomFiltersValidationError = {
|
|
|
3467
3539
|
__typename?: 'CustomFiltersValidationError';
|
|
3468
3540
|
fieldName: Scalars['String'];
|
|
3469
3541
|
errorMessage: Scalars['String'];
|
|
3542
|
+
errorKey: Scalars['String'];
|
|
3470
3543
|
};
|
|
3471
3544
|
export declare type CustomUiTunnelDefinition = {
|
|
3472
3545
|
__typename?: 'CustomUITunnelDefinition';
|
|
@@ -4316,6 +4389,13 @@ export declare type DevOpsToolConnection = {
|
|
|
4316
4389
|
nodes?: Maybe<Array<Maybe<DevOpsTool>>>;
|
|
4317
4390
|
pageInfo: PageInfo;
|
|
4318
4391
|
};
|
|
4392
|
+
export declare enum DevOpsToolConnectionState {
|
|
4393
|
+
Initial = "INITIAL",
|
|
4394
|
+
Unconnected = "UNCONNECTED",
|
|
4395
|
+
Incomplete = "INCOMPLETE",
|
|
4396
|
+
Connected = "CONNECTED",
|
|
4397
|
+
Seen = "SEEN"
|
|
4398
|
+
}
|
|
4319
4399
|
export declare type DevOpsToolContainer = Node & {
|
|
4320
4400
|
__typename?: 'DevOpsToolContainer';
|
|
4321
4401
|
id: Scalars['ID'];
|
|
@@ -4371,6 +4451,12 @@ export declare type DevOpsToolNamespaceEdge = {
|
|
|
4371
4451
|
cursor: Scalars['String'];
|
|
4372
4452
|
node?: Maybe<DevOpsToolNamespace>;
|
|
4373
4453
|
};
|
|
4454
|
+
export declare type DevOpsToolNavbarConnectionState = {
|
|
4455
|
+
__typename?: 'DevOpsToolNavbarConnectionState';
|
|
4456
|
+
codeTab: DevOpsToolConnectionState;
|
|
4457
|
+
oncallTab: DevOpsToolConnectionState;
|
|
4458
|
+
pagesTab: DevOpsToolConnectionState;
|
|
4459
|
+
};
|
|
4374
4460
|
export declare type DevOpsToolSupportedContainerType = {
|
|
4375
4461
|
__typename?: 'DevOpsToolSupportedContainerType';
|
|
4376
4462
|
category: DevOpsToolCategory;
|
|
@@ -4390,6 +4476,7 @@ export declare type DevOpsTools = {
|
|
|
4390
4476
|
tool?: Maybe<DevOpsTool>;
|
|
4391
4477
|
namespace?: Maybe<DevOpsToolNamespace>;
|
|
4392
4478
|
container?: Maybe<DevOpsToolContainer>;
|
|
4479
|
+
navbarConnectionState?: Maybe<DevOpsToolNavbarConnectionState>;
|
|
4393
4480
|
};
|
|
4394
4481
|
export declare type DevOpsToolsToolsArgs = {
|
|
4395
4482
|
cloudId: Scalars['ID'];
|
|
@@ -4405,6 +4492,10 @@ export declare type DevOpsToolsNamespaceArgs = {
|
|
|
4405
4492
|
export declare type DevOpsToolsContainerArgs = {
|
|
4406
4493
|
id: Scalars['ID'];
|
|
4407
4494
|
};
|
|
4495
|
+
export declare type DevOpsToolsNavbarConnectionStateArgs = {
|
|
4496
|
+
cloudId: Scalars['ID'];
|
|
4497
|
+
projectId: Scalars['ID'];
|
|
4498
|
+
};
|
|
4408
4499
|
export declare type DevStatus = {
|
|
4409
4500
|
__typename?: 'DevStatus';
|
|
4410
4501
|
activity: DevStatusActivity;
|
|
@@ -7075,6 +7166,12 @@ export declare type JiraOAuthAppsAppInput = {
|
|
|
7075
7166
|
deploymentsModule?: Maybe<JiraOAuthAppsDeploymentsModuleInput>;
|
|
7076
7167
|
devInfoModule?: Maybe<JiraOAuthAppsDevInfoModuleInput>;
|
|
7077
7168
|
};
|
|
7169
|
+
export declare type JiraOAuthAppsAppUpdateInput = {
|
|
7170
|
+
buildsModule?: Maybe<JiraOAuthAppsBuildsModuleInput>;
|
|
7171
|
+
featureFlagsModule?: Maybe<JiraOAuthAppsFeatureFlagsModuleInput>;
|
|
7172
|
+
deploymentsModule?: Maybe<JiraOAuthAppsDeploymentsModuleInput>;
|
|
7173
|
+
devInfoModule?: Maybe<JiraOAuthAppsDevInfoModuleInput>;
|
|
7174
|
+
};
|
|
7078
7175
|
export declare type JiraOAuthAppsApps = {
|
|
7079
7176
|
__typename?: 'JiraOAuthAppsApps';
|
|
7080
7177
|
apps?: Maybe<Array<Maybe<JiraOAuthAppsApp>>>;
|
|
@@ -7152,12 +7249,17 @@ export declare type JiraOAuthAppsFeatureFlagsModuleInput = {
|
|
|
7152
7249
|
export declare type JiraOAuthAppsMutation = {
|
|
7153
7250
|
__typename?: 'JiraOAuthAppsMutation';
|
|
7154
7251
|
createJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
|
|
7252
|
+
updateJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
|
|
7155
7253
|
deleteJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
|
|
7156
7254
|
};
|
|
7157
7255
|
export declare type JiraOAuthAppsMutationCreateJiraOAuthAppArgs = {
|
|
7158
7256
|
cloudId: Scalars['String'];
|
|
7159
7257
|
input: JiraOAuthAppsCreateAppInput;
|
|
7160
7258
|
};
|
|
7259
|
+
export declare type JiraOAuthAppsMutationUpdateJiraOAuthAppArgs = {
|
|
7260
|
+
cloudId: Scalars['String'];
|
|
7261
|
+
input: JiraOAuthAppsUpdateAppInput;
|
|
7262
|
+
};
|
|
7161
7263
|
export declare type JiraOAuthAppsMutationDeleteJiraOAuthAppArgs = {
|
|
7162
7264
|
cloudId: Scalars['String'];
|
|
7163
7265
|
input: JiraOAuthAppsDeleteAppInput;
|
|
@@ -7170,8 +7272,8 @@ export declare type JiraOAuthAppsPayload = Payload & {
|
|
|
7170
7272
|
errors?: Maybe<Array<MutationError>>;
|
|
7171
7273
|
};
|
|
7172
7274
|
export declare type JiraOAuthAppsUpdateAppInput = {
|
|
7173
|
-
|
|
7174
|
-
app:
|
|
7275
|
+
clientId: Scalars['ID'];
|
|
7276
|
+
app: JiraOAuthAppsAppUpdateInput;
|
|
7175
7277
|
clientMutationId?: Maybe<Scalars['ID']>;
|
|
7176
7278
|
};
|
|
7177
7279
|
export declare type JiraOAuthAppsUrlTemplate = {
|
|
@@ -7451,6 +7553,7 @@ export declare type JiraProject = Node & {
|
|
|
7451
7553
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
7452
7554
|
servicesAvailableToLinkWith?: Maybe<DevOpsServiceConnection>;
|
|
7453
7555
|
opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
|
|
7556
|
+
confluenceSpaceRelationships?: Maybe<JiraProjectAndConfluenceSpaceRelationshipConnection>;
|
|
7454
7557
|
};
|
|
7455
7558
|
export declare type JiraProjectRepositoryRelationshipsArgs = {
|
|
7456
7559
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7476,6 +7579,34 @@ export declare type JiraProjectOpsgenieTeamsAvailableToLinkWithArgs = {
|
|
|
7476
7579
|
first?: Maybe<Scalars['Int']>;
|
|
7477
7580
|
after?: Maybe<Scalars['String']>;
|
|
7478
7581
|
};
|
|
7582
|
+
export declare type JiraProjectConfluenceSpaceRelationshipsArgs = {
|
|
7583
|
+
first?: Maybe<Scalars['Int']>;
|
|
7584
|
+
after?: Maybe<Scalars['String']>;
|
|
7585
|
+
};
|
|
7586
|
+
export declare type JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectInput = {
|
|
7587
|
+
id: Scalars['ID'];
|
|
7588
|
+
};
|
|
7589
|
+
export declare type JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload = {
|
|
7590
|
+
__typename?: 'JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload';
|
|
7591
|
+
success: Scalars['Boolean'];
|
|
7592
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7593
|
+
};
|
|
7594
|
+
export declare type JiraProjectAndConfluenceSpaceRelationship = {
|
|
7595
|
+
__typename?: 'JiraProjectAndConfluenceSpaceRelationship';
|
|
7596
|
+
jiraProject?: Maybe<JiraProject>;
|
|
7597
|
+
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
7598
|
+
};
|
|
7599
|
+
export declare type JiraProjectAndConfluenceSpaceRelationshipConnection = {
|
|
7600
|
+
__typename?: 'JiraProjectAndConfluenceSpaceRelationshipConnection';
|
|
7601
|
+
edges?: Maybe<Array<Maybe<JiraProjectAndConfluenceSpaceRelationshipEdge>>>;
|
|
7602
|
+
nodes?: Maybe<Array<Maybe<JiraProjectAndConfluenceSpaceRelationship>>>;
|
|
7603
|
+
pageInfo: PageInfo;
|
|
7604
|
+
};
|
|
7605
|
+
export declare type JiraProjectAndConfluenceSpaceRelationshipEdge = {
|
|
7606
|
+
__typename?: 'JiraProjectAndConfluenceSpaceRelationshipEdge';
|
|
7607
|
+
cursor: Scalars['String'];
|
|
7608
|
+
node?: Maybe<JiraProjectAndConfluenceSpaceRelationship>;
|
|
7609
|
+
};
|
|
7479
7610
|
export declare type JiraProjectAndOpsgenieTeamRelationship = Node & {
|
|
7480
7611
|
__typename?: 'JiraProjectAndOpsgenieTeamRelationship';
|
|
7481
7612
|
id: Scalars['ID'];
|
|
@@ -8977,6 +9108,7 @@ export declare type MarketplaceApp = {
|
|
|
8977
9108
|
appId: Scalars['ID'];
|
|
8978
9109
|
appKey: Scalars['String'];
|
|
8979
9110
|
name: Scalars['String'];
|
|
9111
|
+
partnerId: Scalars['ID'];
|
|
8980
9112
|
partner?: Maybe<MarketplacePartner>;
|
|
8981
9113
|
entityStatus: MarketplaceEntityStatus;
|
|
8982
9114
|
createdAt: Scalars['DateTime'];
|
|
@@ -9000,6 +9132,7 @@ export declare type MarketplaceApp = {
|
|
|
9000
9132
|
programs?: Maybe<MarketplaceAppPrograms>;
|
|
9001
9133
|
marketingLabels: Array<Scalars['String']>;
|
|
9002
9134
|
googleAnalyticsId?: Maybe<Scalars['String']>;
|
|
9135
|
+
segmentWriteKey?: Maybe<Scalars['String']>;
|
|
9003
9136
|
categories: Array<MarketplaceAppCategory>;
|
|
9004
9137
|
jsdWidgetKey?: Maybe<Scalars['String']>;
|
|
9005
9138
|
};
|
|
@@ -9041,6 +9174,7 @@ export declare enum MarketplaceAppPermission {
|
|
|
9041
9174
|
export declare type MarketplaceAppPrograms = {
|
|
9042
9175
|
__typename?: 'MarketplaceAppPrograms';
|
|
9043
9176
|
cloudFortified?: Maybe<MarketplaceCloudFortified>;
|
|
9177
|
+
bugBountyParticipant?: Maybe<MarketplaceBugBountyParticipant>;
|
|
9044
9178
|
};
|
|
9045
9179
|
export declare type MarketplaceAppReviewSummary = {
|
|
9046
9180
|
__typename?: 'MarketplaceAppReviewSummary';
|
|
@@ -9109,6 +9243,16 @@ export declare enum MarketplaceBillingCycle {
|
|
|
9109
9243
|
Annual = "ANNUAL",
|
|
9110
9244
|
Monthly = "MONTHLY"
|
|
9111
9245
|
}
|
|
9246
|
+
export declare type MarketplaceBugBountyParticipant = {
|
|
9247
|
+
__typename?: 'MarketplaceBugBountyParticipant';
|
|
9248
|
+
cloud?: Maybe<MarketplaceBugBountyProgramHostingStatus>;
|
|
9249
|
+
server?: Maybe<MarketplaceBugBountyProgramHostingStatus>;
|
|
9250
|
+
dataCenter?: Maybe<MarketplaceBugBountyProgramHostingStatus>;
|
|
9251
|
+
};
|
|
9252
|
+
export declare type MarketplaceBugBountyProgramHostingStatus = {
|
|
9253
|
+
__typename?: 'MarketplaceBugBountyProgramHostingStatus';
|
|
9254
|
+
status?: Maybe<MarketplaceProgramStatus>;
|
|
9255
|
+
};
|
|
9112
9256
|
export declare type MarketplaceCloudAppDeployment = MarketplaceAppDeployment & {
|
|
9113
9257
|
__typename?: 'MarketplaceCloudAppDeployment';
|
|
9114
9258
|
compatibleProducts: Array<CompatibleAtlassianProduct>;
|
|
@@ -9120,6 +9264,7 @@ export declare type MarketplaceCloudAppDeployment = MarketplaceAppDeployment & {
|
|
|
9120
9264
|
export declare type MarketplaceCloudFortified = {
|
|
9121
9265
|
__typename?: 'MarketplaceCloudFortified';
|
|
9122
9266
|
status?: Maybe<MarketplaceCloudFortifiedStatus>;
|
|
9267
|
+
programStatus?: Maybe<MarketplaceProgramStatus>;
|
|
9123
9268
|
};
|
|
9124
9269
|
export declare enum MarketplaceCloudFortifiedStatus {
|
|
9125
9270
|
Approved = "APPROVED",
|
|
@@ -9290,6 +9435,11 @@ export declare enum MarketplacePricingTierType {
|
|
|
9290
9435
|
UserTiered = "USER_TIERED",
|
|
9291
9436
|
RemoteAgentTiered = "REMOTE_AGENT_TIERED"
|
|
9292
9437
|
}
|
|
9438
|
+
export declare enum MarketplaceProgramStatus {
|
|
9439
|
+
Approved = "APPROVED",
|
|
9440
|
+
Rejected = "REJECTED",
|
|
9441
|
+
NotAParticipant = "NOT_A_PARTICIPANT"
|
|
9442
|
+
}
|
|
9293
9443
|
export declare type MarketplaceSupportedAtlassianProduct = {
|
|
9294
9444
|
__typename?: 'MarketplaceSupportedAtlassianProduct';
|
|
9295
9445
|
id: Scalars['ID'];
|
|
@@ -9319,6 +9469,11 @@ export declare enum MembershipRole {
|
|
|
9319
9469
|
Regular = "REGULAR",
|
|
9320
9470
|
Admin = "ADMIN"
|
|
9321
9471
|
}
|
|
9472
|
+
export declare enum MembershipSetting {
|
|
9473
|
+
Open = "OPEN",
|
|
9474
|
+
MemberInvite = "MEMBER_INVITE",
|
|
9475
|
+
AdminInvite = "ADMIN_INVITE"
|
|
9476
|
+
}
|
|
9322
9477
|
export declare enum MembershipState {
|
|
9323
9478
|
FullMember = "FULL_MEMBER",
|
|
9324
9479
|
Invited = "INVITED",
|
|
@@ -9491,6 +9646,7 @@ export declare type Mutation = {
|
|
|
9491
9646
|
deleteAppEnvironmentVariable?: Maybe<DeleteAppEnvironmentVariablePayload>;
|
|
9492
9647
|
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
9493
9648
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
9649
|
+
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
9494
9650
|
};
|
|
9495
9651
|
export declare type MutationCreateReleaseNoteArgs = {
|
|
9496
9652
|
changeStatus?: Maybe<Scalars['String']>;
|
|
@@ -9888,6 +10044,9 @@ export declare type MutationDeleteAppEnvironmentVariableArgs = {
|
|
|
9888
10044
|
export declare type MutationCreateAppDeploymentArgs = {
|
|
9889
10045
|
input: CreateAppDeploymentInput;
|
|
9890
10046
|
};
|
|
10047
|
+
export declare type MutationDeleteConfluenceSpaceRelationshipsForJiraProjectArgs = {
|
|
10048
|
+
input: JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectInput;
|
|
10049
|
+
};
|
|
9891
10050
|
export declare type MutationError = {
|
|
9892
10051
|
__typename?: 'MutationError';
|
|
9893
10052
|
message?: Maybe<Scalars['String']>;
|
|
@@ -10099,7 +10258,7 @@ export declare type Payload = {
|
|
|
10099
10258
|
export declare type PermissionToConsentByOauthId = {
|
|
10100
10259
|
__typename?: 'PermissionToConsentByOauthId';
|
|
10101
10260
|
isAllowed: Scalars['Boolean'];
|
|
10102
|
-
|
|
10261
|
+
isSiteAdmin: Scalars['Boolean'];
|
|
10103
10262
|
};
|
|
10104
10263
|
export declare type PolarisAnonymousVisitorHash = PolarisAnonymousVisitorViewHash;
|
|
10105
10264
|
export declare type PolarisAnonymousVisitorViewHash = {
|
|
@@ -11431,6 +11590,8 @@ export declare type RankColumnOutput = MutationResponse & {
|
|
|
11431
11590
|
export declare enum RateLimitingCurrency {
|
|
11432
11591
|
TestingService = "TESTING_SERVICE",
|
|
11433
11592
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
11593
|
+
TeamsCurrency = "TEAMS_CURRENCY",
|
|
11594
|
+
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
11434
11595
|
CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY"
|
|
11435
11596
|
}
|
|
11436
11597
|
export declare type RawStatus = {
|
|
@@ -12025,6 +12186,7 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
|
|
|
12025
12186
|
};
|
|
12026
12187
|
export declare type ShepherdAlert = {
|
|
12027
12188
|
__typename?: 'ShepherdAlert';
|
|
12189
|
+
actor?: Maybe<ShepherdUser>;
|
|
12028
12190
|
cloudId?: Maybe<Scalars['ID']>;
|
|
12029
12191
|
createdOn: Scalars['DateTime'];
|
|
12030
12192
|
id: Scalars['ID'];
|
|
@@ -12033,6 +12195,11 @@ export declare type ShepherdAlert = {
|
|
|
12033
12195
|
title: Scalars['String'];
|
|
12034
12196
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
12035
12197
|
};
|
|
12198
|
+
export declare type ShepherdAlertEdge = {
|
|
12199
|
+
__typename?: 'ShepherdAlertEdge';
|
|
12200
|
+
node?: Maybe<ShepherdAlert>;
|
|
12201
|
+
};
|
|
12202
|
+
export declare type ShepherdAlertResult = ShepherdAlert | ShepherdQueryError;
|
|
12036
12203
|
export declare enum ShepherdAlertSeverity {
|
|
12037
12204
|
Critical = "CRITICAL",
|
|
12038
12205
|
High = "HIGH",
|
|
@@ -12044,9 +12211,16 @@ export declare enum ShepherdAlertStatus {
|
|
|
12044
12211
|
Triaged = "TRIAGED",
|
|
12045
12212
|
Untriaged = "UNTRIAGED"
|
|
12046
12213
|
}
|
|
12214
|
+
export declare type ShepherdAlertsConnection = {
|
|
12215
|
+
__typename?: 'ShepherdAlertsConnection';
|
|
12216
|
+
edges?: Maybe<Array<Maybe<ShepherdAlertEdge>>>;
|
|
12217
|
+
};
|
|
12218
|
+
export declare type ShepherdAlertsResult = ShepherdAlertsConnection | ShepherdQueryError;
|
|
12047
12219
|
export declare type ShepherdAppInfo = {
|
|
12048
12220
|
__typename?: 'ShepherdAppInfo';
|
|
12049
12221
|
apiVersion: Scalars['Int'];
|
|
12222
|
+
env: Scalars['String'];
|
|
12223
|
+
loginUrl: Scalars['String'];
|
|
12050
12224
|
};
|
|
12051
12225
|
export declare type ShepherdCreateAlertInput = {
|
|
12052
12226
|
cloudId?: Maybe<Scalars['ID']>;
|
|
@@ -12060,23 +12234,59 @@ export declare type ShepherdCreateAlertPayload = Payload & {
|
|
|
12060
12234
|
node?: Maybe<ShepherdAlert>;
|
|
12061
12235
|
success: Scalars['Boolean'];
|
|
12062
12236
|
};
|
|
12237
|
+
export declare type ShepherdCreateOrganizationInput = {
|
|
12238
|
+
enabled?: Maybe<Scalars['Boolean']>;
|
|
12239
|
+
id: Scalars['ID'];
|
|
12240
|
+
};
|
|
12241
|
+
export declare type ShepherdCreateOrganizationPayload = Payload & {
|
|
12242
|
+
__typename?: 'ShepherdCreateOrganizationPayload';
|
|
12243
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12244
|
+
node?: Maybe<ShepherdOrganization>;
|
|
12245
|
+
success: Scalars['Boolean'];
|
|
12246
|
+
};
|
|
12247
|
+
export declare enum ShepherdErrorType {
|
|
12248
|
+
NoProductAccess = "NO_PRODUCT_ACCESS",
|
|
12249
|
+
Unauthorized = "UNAUTHORIZED"
|
|
12250
|
+
}
|
|
12251
|
+
export declare type ShepherdGenericQueryErrorExtension = ShepherdQueryErrorExtension & {
|
|
12252
|
+
__typename?: 'ShepherdGenericQueryErrorExtension';
|
|
12253
|
+
errorType?: Maybe<ShepherdErrorType>;
|
|
12254
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
12255
|
+
};
|
|
12063
12256
|
export declare type ShepherdMutation = {
|
|
12064
12257
|
__typename?: 'ShepherdMutation';
|
|
12065
12258
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
12259
|
+
createOrganization?: Maybe<ShepherdCreateOrganizationPayload>;
|
|
12066
12260
|
updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
|
|
12261
|
+
updateOrganization?: Maybe<ShepherdUpdateOrganizationPayload>;
|
|
12067
12262
|
};
|
|
12068
12263
|
export declare type ShepherdMutationCreateAlertArgs = {
|
|
12069
12264
|
input: ShepherdCreateAlertInput;
|
|
12070
12265
|
};
|
|
12266
|
+
export declare type ShepherdMutationCreateOrganizationArgs = {
|
|
12267
|
+
input: ShepherdCreateOrganizationInput;
|
|
12268
|
+
};
|
|
12071
12269
|
export declare type ShepherdMutationUpdateAlertArgs = {
|
|
12072
12270
|
id: Scalars['ID'];
|
|
12073
12271
|
input: ShepherdUpdateAlertInput;
|
|
12074
12272
|
};
|
|
12273
|
+
export declare type ShepherdMutationUpdateOrganizationArgs = {
|
|
12274
|
+
id: Scalars['ID'];
|
|
12275
|
+
input: ShepherdUpdateOrganizationInput;
|
|
12276
|
+
};
|
|
12277
|
+
export declare type ShepherdOrganization = {
|
|
12278
|
+
__typename?: 'ShepherdOrganization';
|
|
12279
|
+
createdOn: Scalars['DateTime'];
|
|
12280
|
+
enabled: Scalars['Boolean'];
|
|
12281
|
+
id: Scalars['ID'];
|
|
12282
|
+
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
12283
|
+
};
|
|
12075
12284
|
export declare type ShepherdQuery = {
|
|
12076
12285
|
__typename?: 'ShepherdQuery';
|
|
12077
|
-
shepherdAlert?: Maybe<
|
|
12078
|
-
shepherdAlerts?: Maybe<
|
|
12286
|
+
shepherdAlert?: Maybe<ShepherdAlertResult>;
|
|
12287
|
+
shepherdAlerts?: Maybe<ShepherdAlertsResult>;
|
|
12079
12288
|
shepherdAppInfo: ShepherdAppInfo;
|
|
12289
|
+
shepherdOrganization?: Maybe<ShepherdOrganization>;
|
|
12080
12290
|
shepherdUser?: Maybe<ShepherdUser>;
|
|
12081
12291
|
};
|
|
12082
12292
|
export declare type ShepherdQueryShepherdAlertArgs = {
|
|
@@ -12085,6 +12295,19 @@ export declare type ShepherdQueryShepherdAlertArgs = {
|
|
|
12085
12295
|
export declare type ShepherdQueryShepherdAlertsArgs = {
|
|
12086
12296
|
orgId: Scalars['ID'];
|
|
12087
12297
|
};
|
|
12298
|
+
export declare type ShepherdQueryShepherdOrganizationArgs = {
|
|
12299
|
+
id: Scalars['ID'];
|
|
12300
|
+
};
|
|
12301
|
+
export declare type ShepherdQueryError = {
|
|
12302
|
+
__typename?: 'ShepherdQueryError';
|
|
12303
|
+
extensions?: Maybe<Array<ShepherdQueryErrorExtension>>;
|
|
12304
|
+
identifier?: Maybe<Scalars['ID']>;
|
|
12305
|
+
message?: Maybe<Scalars['String']>;
|
|
12306
|
+
};
|
|
12307
|
+
export declare type ShepherdQueryErrorExtension = {
|
|
12308
|
+
errorType?: Maybe<ShepherdErrorType>;
|
|
12309
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
12310
|
+
};
|
|
12088
12311
|
export declare type ShepherdUpdateAlertInput = {
|
|
12089
12312
|
status?: Maybe<ShepherdAlertStatus>;
|
|
12090
12313
|
};
|
|
@@ -12094,9 +12317,18 @@ export declare type ShepherdUpdateAlertPayload = Payload & {
|
|
|
12094
12317
|
node?: Maybe<ShepherdAlert>;
|
|
12095
12318
|
success: Scalars['Boolean'];
|
|
12096
12319
|
};
|
|
12320
|
+
export declare type ShepherdUpdateOrganizationInput = {
|
|
12321
|
+
enabled?: Maybe<Scalars['Boolean']>;
|
|
12322
|
+
};
|
|
12323
|
+
export declare type ShepherdUpdateOrganizationPayload = Payload & {
|
|
12324
|
+
__typename?: 'ShepherdUpdateOrganizationPayload';
|
|
12325
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12326
|
+
node?: Maybe<ShepherdOrganization>;
|
|
12327
|
+
success: Scalars['Boolean'];
|
|
12328
|
+
};
|
|
12097
12329
|
export declare type ShepherdUser = {
|
|
12098
12330
|
__typename?: 'ShepherdUser';
|
|
12099
|
-
|
|
12331
|
+
user?: Maybe<User>;
|
|
12100
12332
|
};
|
|
12101
12333
|
export declare type SoftwareBoard = {
|
|
12102
12334
|
__typename?: 'SoftwareBoard';
|
|
@@ -12317,9 +12549,9 @@ export declare type SupportRequest = SupportRequestCommonRequest & {
|
|
|
12317
12549
|
reporter: SupportRequestUser;
|
|
12318
12550
|
participants: Array<SupportRequestUser>;
|
|
12319
12551
|
fields: Array<SupportRequestField>;
|
|
12320
|
-
comments
|
|
12552
|
+
comments?: Maybe<SupportRequestComments>;
|
|
12321
12553
|
statuses: SupportRequestStatuses;
|
|
12322
|
-
transitions
|
|
12554
|
+
transitions?: Maybe<SupportRequestTransitions>;
|
|
12323
12555
|
targetScreen: Scalars['String'];
|
|
12324
12556
|
lastComment: SupportRequestComments;
|
|
12325
12557
|
};
|
|
@@ -12347,6 +12579,7 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
12347
12579
|
__typename?: 'SupportRequestCatalogMutationApi';
|
|
12348
12580
|
addComment?: Maybe<SupportRequestComment>;
|
|
12349
12581
|
statusTransition?: Maybe<Scalars['Boolean']>;
|
|
12582
|
+
removeRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
12350
12583
|
createNamedContactOperationRequest?: Maybe<SupportRequest>;
|
|
12351
12584
|
};
|
|
12352
12585
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
@@ -12355,6 +12588,9 @@ export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
|
12355
12588
|
export declare type SupportRequestCatalogMutationApiStatusTransitionArgs = {
|
|
12356
12589
|
input?: Maybe<SupportRequestTransitionInput>;
|
|
12357
12590
|
};
|
|
12591
|
+
export declare type SupportRequestCatalogMutationApiRemoveRequestParticipantsArgs = {
|
|
12592
|
+
input?: Maybe<SupportRequestParticipantsInput>;
|
|
12593
|
+
};
|
|
12358
12594
|
export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationRequestArgs = {
|
|
12359
12595
|
emails: Array<Scalars['String']>;
|
|
12360
12596
|
organizationId?: Maybe<Scalars['String']>;
|
|
@@ -12478,6 +12714,19 @@ export declare type SupportRequestPageMigrationRequestsArgs = {
|
|
|
12478
12714
|
offset?: Scalars['Int'];
|
|
12479
12715
|
size?: Scalars['Int'];
|
|
12480
12716
|
};
|
|
12717
|
+
export declare type SupportRequestParticipants = {
|
|
12718
|
+
__typename?: 'SupportRequestParticipants';
|
|
12719
|
+
offset: Scalars['Int'];
|
|
12720
|
+
limit: Scalars['Int'];
|
|
12721
|
+
size: Scalars['Int'];
|
|
12722
|
+
lastPage: Scalars['Boolean'];
|
|
12723
|
+
values: Array<SupportRequestUser>;
|
|
12724
|
+
};
|
|
12725
|
+
export declare type SupportRequestParticipantsInput = {
|
|
12726
|
+
requestKey: Scalars['String'];
|
|
12727
|
+
aaids?: Maybe<Array<Scalars['String']>>;
|
|
12728
|
+
gsacUsernames?: Maybe<Array<Scalars['String']>>;
|
|
12729
|
+
};
|
|
12481
12730
|
export declare enum SupportRequestQueryOwnership {
|
|
12482
12731
|
Reporter = "REPORTER",
|
|
12483
12732
|
Participant = "PARTICIPANT"
|
|
@@ -12508,6 +12757,8 @@ export declare type SupportRequestStatuses = {
|
|
|
12508
12757
|
export declare type SupportRequestTicket = {
|
|
12509
12758
|
__typename?: 'SupportRequestTicket';
|
|
12510
12759
|
issueKey?: Maybe<Scalars['String']>;
|
|
12760
|
+
statusName?: Maybe<Scalars['String']>;
|
|
12761
|
+
categoryKey?: Maybe<Scalars['String']>;
|
|
12511
12762
|
};
|
|
12512
12763
|
export declare type SupportRequestTransition = {
|
|
12513
12764
|
__typename?: 'SupportRequestTransition';
|
|
@@ -12556,8 +12807,12 @@ export declare enum SwimlaneStrategy {
|
|
|
12556
12807
|
export declare type Team = {
|
|
12557
12808
|
__typename?: 'Team';
|
|
12558
12809
|
id: Scalars['ID'];
|
|
12810
|
+
organizationId?: Maybe<Scalars['String']>;
|
|
12811
|
+
creator?: Maybe<User>;
|
|
12812
|
+
state?: Maybe<TeamState>;
|
|
12559
12813
|
displayName?: Maybe<Scalars['String']>;
|
|
12560
12814
|
description?: Maybe<Scalars['String']>;
|
|
12815
|
+
membershipSetting?: Maybe<MembershipSetting>;
|
|
12561
12816
|
smallHeaderImageUrl?: Maybe<Scalars['String']>;
|
|
12562
12817
|
largeHeaderImageUrl?: Maybe<Scalars['String']>;
|
|
12563
12818
|
smallAvatarImageUrl?: Maybe<Scalars['String']>;
|
|
@@ -12567,7 +12822,7 @@ export declare type Team = {
|
|
|
12567
12822
|
export declare type TeamMembersArgs = {
|
|
12568
12823
|
after?: Maybe<Scalars['String']>;
|
|
12569
12824
|
first?: Scalars['Int'];
|
|
12570
|
-
state?: MembershipState
|
|
12825
|
+
state?: Array<MembershipState>;
|
|
12571
12826
|
};
|
|
12572
12827
|
export declare type TeamMember = {
|
|
12573
12828
|
__typename?: 'TeamMember';
|
|
@@ -12593,6 +12848,11 @@ export declare type TeamQuery = {
|
|
|
12593
12848
|
export declare type TeamQueryTeamArgs = {
|
|
12594
12849
|
id: Scalars['ID'];
|
|
12595
12850
|
};
|
|
12851
|
+
export declare enum TeamState {
|
|
12852
|
+
Active = "ACTIVE",
|
|
12853
|
+
Disbanded = "DISBANDED",
|
|
12854
|
+
Purged = "PURGED"
|
|
12855
|
+
}
|
|
12596
12856
|
export declare type TenantContext = {
|
|
12597
12857
|
__typename?: 'TenantContext';
|
|
12598
12858
|
cloudId?: Maybe<Scalars['ID']>;
|