@forge/cli-shared 3.11.0-next.9 → 3.11.0
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
|
+
## 3.11.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- f2d9cd7: Added "forge environment delete" command
|
|
8
|
+
- 52f15e18: Improve reading of AppDeploymentFailedError by adding requestId
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- 04a9b36: Node Runtime tunnel now reports an error if --debug is enabled
|
|
13
|
+
- 87b2440: Bumping dependencies via Renovate:
|
|
14
|
+
|
|
15
|
+
- recursive-readdir
|
|
16
|
+
- @types/recursive-readdir
|
|
17
|
+
|
|
18
|
+
- 3e7edfb: Fix consistency of environment name in the CLI
|
|
19
|
+
- 97b57e7: Bumping dependencies via Renovate:
|
|
20
|
+
|
|
21
|
+
- unzipper
|
|
22
|
+
- @types/unzipper
|
|
23
|
+
|
|
24
|
+
- b91c323: output request ID in analytics for all GraphQL errors
|
|
25
|
+
- Updated dependencies [9c3f9e4]
|
|
26
|
+
- Updated dependencies [6e015d7]
|
|
27
|
+
- Updated dependencies [6cb6ad2]
|
|
28
|
+
- Updated dependencies [59c693ee]
|
|
29
|
+
- @forge/manifest@4.10.0
|
|
30
|
+
|
|
31
|
+
## 3.11.0-next.10
|
|
32
|
+
|
|
33
|
+
### Patch Changes
|
|
34
|
+
|
|
35
|
+
- Updated dependencies [6cb6ad2]
|
|
36
|
+
- @forge/manifest@4.10.0-next.3
|
|
37
|
+
|
|
3
38
|
## 3.11.0-next.9
|
|
4
39
|
|
|
5
40
|
### Minor Changes
|
|
@@ -2110,6 +2110,8 @@ export declare type CompassCatalogMutationApi = {
|
|
|
2110
2110
|
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
2111
2111
|
deleteCustomFieldDefinition?: Maybe<CompassDeleteCustomFieldDefinitionPayload>;
|
|
2112
2112
|
createComponentFromTemplate?: Maybe<CreateCompassComponentFromTemplatePayload>;
|
|
2113
|
+
createStarredComponent?: Maybe<CreateCompassStarredComponentPayload>;
|
|
2114
|
+
deleteStarredComponent?: Maybe<DeleteCompassStarredComponentPayload>;
|
|
2113
2115
|
};
|
|
2114
2116
|
export declare type CompassCatalogMutationApiCreateComponentArgs = {
|
|
2115
2117
|
cloudId: Scalars['ID'];
|
|
@@ -2278,6 +2280,12 @@ export declare type CompassCatalogMutationApiDeleteCustomFieldDefinitionArgs = {
|
|
|
2278
2280
|
export declare type CompassCatalogMutationApiCreateComponentFromTemplateArgs = {
|
|
2279
2281
|
input: CreateCompassComponentFromTemplateInput;
|
|
2280
2282
|
};
|
|
2283
|
+
export declare type CompassCatalogMutationApiCreateStarredComponentArgs = {
|
|
2284
|
+
input: CreateCompassStarredComponentInput;
|
|
2285
|
+
};
|
|
2286
|
+
export declare type CompassCatalogMutationApiDeleteStarredComponentArgs = {
|
|
2287
|
+
input: DeleteCompassStarredComponentInput;
|
|
2288
|
+
};
|
|
2281
2289
|
export declare type CompassCatalogQueryApi = {
|
|
2282
2290
|
__typename?: 'CompassCatalogQueryApi';
|
|
2283
2291
|
component?: Maybe<CompassComponentResult>;
|
|
@@ -2298,6 +2306,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
2298
2306
|
eventSource?: Maybe<CompassEventSourceResult>;
|
|
2299
2307
|
customFieldDefinitions?: Maybe<CompassCustomFieldDefinitionsResult>;
|
|
2300
2308
|
metricValuesTimeSeries?: Maybe<CompassMetricValuesTimeseriesResult>;
|
|
2309
|
+
starredComponents?: Maybe<CompassStarredComponentsResult>;
|
|
2301
2310
|
};
|
|
2302
2311
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
2303
2312
|
id: Scalars['ID'];
|
|
@@ -2365,6 +2374,9 @@ export declare type CompassCatalogQueryApiMetricValuesTimeSeriesArgs = {
|
|
|
2365
2374
|
cloudId: Scalars['ID'];
|
|
2366
2375
|
metricSourceId: Scalars['ID'];
|
|
2367
2376
|
};
|
|
2377
|
+
export declare type CompassCatalogQueryApiStarredComponentsArgs = {
|
|
2378
|
+
cloudId: Scalars['ID'];
|
|
2379
|
+
};
|
|
2368
2380
|
export declare type CompassChangeMetadata = {
|
|
2369
2381
|
__typename?: 'CompassChangeMetadata';
|
|
2370
2382
|
createdAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -3306,6 +3318,7 @@ export declare type CompassMetricDefinition = Node & {
|
|
|
3306
3318
|
type: CompassMetricDefinitionType;
|
|
3307
3319
|
metricSources?: Maybe<CompassMetricSourcesQueryResult>;
|
|
3308
3320
|
derivedEventTypes?: Maybe<Array<CompassEventType>>;
|
|
3321
|
+
isPinned?: Maybe<Scalars['Boolean']>;
|
|
3309
3322
|
};
|
|
3310
3323
|
export declare type CompassMetricDefinitionMetricSourcesArgs = {
|
|
3311
3324
|
query?: Maybe<CompassMetricSourcesQuery>;
|
|
@@ -3692,6 +3705,18 @@ export declare type CompassSloMetricSourceConfigurationInput = {
|
|
|
3692
3705
|
goodQuery: Scalars['String'];
|
|
3693
3706
|
badQuery: Scalars['String'];
|
|
3694
3707
|
};
|
|
3708
|
+
export declare type CompassStarredComponentConnection = {
|
|
3709
|
+
__typename?: 'CompassStarredComponentConnection';
|
|
3710
|
+
nodes?: Maybe<Array<CompassComponent>>;
|
|
3711
|
+
edges?: Maybe<Array<CompassStarredComponentEdge>>;
|
|
3712
|
+
pageInfo: PageInfo;
|
|
3713
|
+
};
|
|
3714
|
+
export declare type CompassStarredComponentEdge = {
|
|
3715
|
+
__typename?: 'CompassStarredComponentEdge';
|
|
3716
|
+
cursor: Scalars['String'];
|
|
3717
|
+
node?: Maybe<CompassComponent>;
|
|
3718
|
+
};
|
|
3719
|
+
export declare type CompassStarredComponentsResult = CompassStarredComponentConnection | QueryError;
|
|
3695
3720
|
export declare type CompassSynchronizeLinkAssociationsInput = {
|
|
3696
3721
|
cloudId: Scalars['ID'];
|
|
3697
3722
|
forgeAppId: Scalars['ID'];
|
|
@@ -3826,6 +3851,7 @@ export declare type CompassUpdateMetricDefinitionInput = {
|
|
|
3826
3851
|
name?: Maybe<Scalars['String']>;
|
|
3827
3852
|
description?: Maybe<Scalars['String']>;
|
|
3828
3853
|
format?: Maybe<CompassMetricDefinitionFormatInput>;
|
|
3854
|
+
isPinned?: Maybe<Scalars['Boolean']>;
|
|
3829
3855
|
};
|
|
3830
3856
|
export declare type CompassUpdateMetricDefinitionPayload = Payload & {
|
|
3831
3857
|
__typename?: 'CompassUpdateMetricDefinitionPayload';
|
|
@@ -5396,6 +5422,14 @@ export declare type CreateCompassScorecardPayload = Payload & {
|
|
|
5396
5422
|
errors?: Maybe<Array<MutationError>>;
|
|
5397
5423
|
scorecardDetails?: Maybe<CompassScorecard>;
|
|
5398
5424
|
};
|
|
5425
|
+
export declare type CreateCompassStarredComponentInput = {
|
|
5426
|
+
componentId: Scalars['ID'];
|
|
5427
|
+
};
|
|
5428
|
+
export declare type CreateCompassStarredComponentPayload = Payload & {
|
|
5429
|
+
__typename?: 'CreateCompassStarredComponentPayload';
|
|
5430
|
+
success: Scalars['Boolean'];
|
|
5431
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5432
|
+
};
|
|
5399
5433
|
export declare type CreateCustomFilterInput = {
|
|
5400
5434
|
boardId: Scalars['ID'];
|
|
5401
5435
|
name: Scalars['String'];
|
|
@@ -6187,6 +6221,14 @@ export declare type DeleteCompassScorecardPayload = Payload & {
|
|
|
6187
6221
|
errors?: Maybe<Array<MutationError>>;
|
|
6188
6222
|
scorecardId: Scalars['ID'];
|
|
6189
6223
|
};
|
|
6224
|
+
export declare type DeleteCompassStarredComponentInput = {
|
|
6225
|
+
componentId: Scalars['ID'];
|
|
6226
|
+
};
|
|
6227
|
+
export declare type DeleteCompassStarredComponentPayload = Payload & {
|
|
6228
|
+
__typename?: 'DeleteCompassStarredComponentPayload';
|
|
6229
|
+
success: Scalars['Boolean'];
|
|
6230
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6231
|
+
};
|
|
6190
6232
|
export declare type DeleteCustomFilterInput = {
|
|
6191
6233
|
boardId: Scalars['ID'];
|
|
6192
6234
|
customFilterId: Scalars['String'];
|
|
@@ -8432,7 +8474,10 @@ export declare type HasTotal = {
|
|
|
8432
8474
|
export declare type HelpCenter = Node & {
|
|
8433
8475
|
__typename?: 'HelpCenter';
|
|
8434
8476
|
id: Scalars['ID'];
|
|
8477
|
+
type?: Maybe<HelpCenterType>;
|
|
8478
|
+
slug?: Maybe<Scalars['String']>;
|
|
8435
8479
|
topics?: Maybe<Array<HelpCenterTopic>>;
|
|
8480
|
+
layout?: Maybe<HelpCenterHomePageLayout>;
|
|
8436
8481
|
};
|
|
8437
8482
|
export declare type HelpCenterBulkCreateTopicsInput = {
|
|
8438
8483
|
helpCenterCreateTopicInputItem: Array<HelpCenterCreateTopicInput>;
|
|
@@ -8463,6 +8508,10 @@ export declare type HelpCenterDeleteUpdateTopicPayload = Payload & {
|
|
|
8463
8508
|
topicIds: Array<Maybe<HelpCenterSuccessfullyDeletedUpdatedTopicIds>>;
|
|
8464
8509
|
};
|
|
8465
8510
|
export declare type HelpCenterHelpObject = HelpObjectStoreRequestForm | HelpObjectStoreArticle | HelpObjectStoreChannel | HelpObjectStoreQueryError;
|
|
8511
|
+
export declare type HelpCenterHomePageLayout = {
|
|
8512
|
+
__typename?: 'HelpCenterHomePageLayout';
|
|
8513
|
+
layoutId: Scalars['ID'];
|
|
8514
|
+
};
|
|
8466
8515
|
export declare type HelpCenterMutationApi = {
|
|
8467
8516
|
__typename?: 'HelpCenterMutationApi';
|
|
8468
8517
|
createTopic?: Maybe<HelpCenterCreateTopicPayload>;
|
|
@@ -8553,6 +8602,9 @@ export declare type HelpCenterTopicItemInput = {
|
|
|
8553
8602
|
ari: Scalars['ID'];
|
|
8554
8603
|
};
|
|
8555
8604
|
export declare type HelpCenterTopicResult = HelpCenterTopic | QueryError;
|
|
8605
|
+
export declare enum HelpCenterType {
|
|
8606
|
+
Advanced = "ADVANCED"
|
|
8607
|
+
}
|
|
8556
8608
|
export declare type HelpCenterUpdateTopicInput = {
|
|
8557
8609
|
productName: Scalars['String'];
|
|
8558
8610
|
topicId: Scalars['ID'];
|
|
@@ -8570,6 +8622,145 @@ export declare type HelpCenterUpdateTopicsOrderPayload = Payload & {
|
|
|
8570
8622
|
success: Scalars['Boolean'];
|
|
8571
8623
|
errors?: Maybe<Array<MutationError>>;
|
|
8572
8624
|
};
|
|
8625
|
+
export declare type HelpLayout = Node & {
|
|
8626
|
+
__typename?: 'HelpLayout';
|
|
8627
|
+
id: Scalars['ID'];
|
|
8628
|
+
sections?: Maybe<HelpLayoutSectionConnection>;
|
|
8629
|
+
};
|
|
8630
|
+
export declare type HelpLayoutSectionsArgs = {
|
|
8631
|
+
first?: Maybe<Scalars['Int']>;
|
|
8632
|
+
after?: Maybe<Scalars['String']>;
|
|
8633
|
+
};
|
|
8634
|
+
export declare type HelpLayoutCell = {
|
|
8635
|
+
__typename?: 'HelpLayoutCell';
|
|
8636
|
+
span: Scalars['Int'];
|
|
8637
|
+
elements?: Maybe<Array<Maybe<HelpLayoutElement>>>;
|
|
8638
|
+
};
|
|
8639
|
+
export declare type HelpLayoutCellElementsArgs = {
|
|
8640
|
+
supported: Array<HelpLayoutElementTypeName>;
|
|
8641
|
+
};
|
|
8642
|
+
export declare type HelpLayoutCellInput = {
|
|
8643
|
+
span: Scalars['Int'];
|
|
8644
|
+
elements: Array<HelpLayoutElementInput>;
|
|
8645
|
+
};
|
|
8646
|
+
export declare type HelpLayoutCreationInput = {
|
|
8647
|
+
sections: Array<HelpLayoutSectionInput>;
|
|
8648
|
+
};
|
|
8649
|
+
export declare type HelpLayoutElement = HelpLayoutTextElement | HelpLayoutImageElement | HelpLayoutHeroElement;
|
|
8650
|
+
export declare type HelpLayoutElementInput = {
|
|
8651
|
+
elementType: HelpLayoutElementTypeInput;
|
|
8652
|
+
imageConfigInput?: Maybe<HelpLayoutImageConfigInput>;
|
|
8653
|
+
textConfigInput?: Maybe<HelpLayoutTextConfigInput>;
|
|
8654
|
+
};
|
|
8655
|
+
export declare type HelpLayoutElementType = {
|
|
8656
|
+
name?: Maybe<HelpLayoutElementTypeName>;
|
|
8657
|
+
displayName?: Maybe<Scalars['String']>;
|
|
8658
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
8659
|
+
};
|
|
8660
|
+
export declare enum HelpLayoutElementTypeInput {
|
|
8661
|
+
Image = "IMAGE",
|
|
8662
|
+
Text = "TEXT"
|
|
8663
|
+
}
|
|
8664
|
+
export declare enum HelpLayoutElementTypeName {
|
|
8665
|
+
Image = "IMAGE",
|
|
8666
|
+
Text = "TEXT",
|
|
8667
|
+
Hero = "HERO"
|
|
8668
|
+
}
|
|
8669
|
+
export declare type HelpLayoutHeroElement = {
|
|
8670
|
+
__typename?: 'HelpLayoutHeroElement';
|
|
8671
|
+
config?: Maybe<HelpLayoutHeroElementConfig>;
|
|
8672
|
+
};
|
|
8673
|
+
export declare type HelpLayoutHeroElementConfig = {
|
|
8674
|
+
__typename?: 'HelpLayoutHeroElementConfig';
|
|
8675
|
+
header?: Maybe<Scalars['String']>;
|
|
8676
|
+
isSearchBarShown?: Maybe<Scalars['Boolean']>;
|
|
8677
|
+
backgroundImageUrl?: Maybe<Scalars['String']>;
|
|
8678
|
+
};
|
|
8679
|
+
export declare type HelpLayoutHeroElementType = HelpLayoutElementType & {
|
|
8680
|
+
__typename?: 'HelpLayoutHeroElementType';
|
|
8681
|
+
name?: Maybe<HelpLayoutElementTypeName>;
|
|
8682
|
+
displayName?: Maybe<Scalars['String']>;
|
|
8683
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
8684
|
+
};
|
|
8685
|
+
export declare type HelpLayoutImageConfigInput = {
|
|
8686
|
+
fileId?: Maybe<Scalars['String']>;
|
|
8687
|
+
altText?: Maybe<Scalars['String']>;
|
|
8688
|
+
caption?: Maybe<Scalars['String']>;
|
|
8689
|
+
};
|
|
8690
|
+
export declare type HelpLayoutImageElement = {
|
|
8691
|
+
__typename?: 'HelpLayoutImageElement';
|
|
8692
|
+
config?: Maybe<HelpLayoutImageElementConfig>;
|
|
8693
|
+
};
|
|
8694
|
+
export declare type HelpLayoutImageElementConfig = {
|
|
8695
|
+
__typename?: 'HelpLayoutImageElementConfig';
|
|
8696
|
+
fileId?: Maybe<Scalars['String']>;
|
|
8697
|
+
altText?: Maybe<Scalars['String']>;
|
|
8698
|
+
caption?: Maybe<Scalars['String']>;
|
|
8699
|
+
};
|
|
8700
|
+
export declare type HelpLayoutImageElementType = HelpLayoutElementType & {
|
|
8701
|
+
__typename?: 'HelpLayoutImageElementType';
|
|
8702
|
+
name?: Maybe<HelpLayoutElementTypeName>;
|
|
8703
|
+
displayName?: Maybe<Scalars['String']>;
|
|
8704
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
8705
|
+
};
|
|
8706
|
+
export declare type HelpLayoutMutationApi = {
|
|
8707
|
+
__typename?: 'HelpLayoutMutationApi';
|
|
8708
|
+
createLayout: Scalars['ID'];
|
|
8709
|
+
deleteLayout?: Maybe<Scalars['Boolean']>;
|
|
8710
|
+
updateLayout?: Maybe<Scalars['Boolean']>;
|
|
8711
|
+
};
|
|
8712
|
+
export declare type HelpLayoutMutationApiCreateLayoutArgs = {
|
|
8713
|
+
input: HelpLayoutCreationInput;
|
|
8714
|
+
};
|
|
8715
|
+
export declare type HelpLayoutMutationApiDeleteLayoutArgs = {
|
|
8716
|
+
layoutId: Scalars['ID'];
|
|
8717
|
+
};
|
|
8718
|
+
export declare type HelpLayoutMutationApiUpdateLayoutArgs = {
|
|
8719
|
+
layoutId: Scalars['ID'];
|
|
8720
|
+
input: HelpLayoutCreationInput;
|
|
8721
|
+
};
|
|
8722
|
+
export declare type HelpLayoutQueryApi = {
|
|
8723
|
+
__typename?: 'HelpLayoutQueryApi';
|
|
8724
|
+
layout?: Maybe<HelpLayout>;
|
|
8725
|
+
elementTypes?: Maybe<Array<Maybe<HelpLayoutElementType>>>;
|
|
8726
|
+
};
|
|
8727
|
+
export declare type HelpLayoutQueryApiLayoutArgs = {
|
|
8728
|
+
id: Scalars['ID'];
|
|
8729
|
+
};
|
|
8730
|
+
export declare type HelpLayoutSectionConnection = {
|
|
8731
|
+
__typename?: 'HelpLayoutSectionConnection';
|
|
8732
|
+
edges?: Maybe<Array<Maybe<HelpLayoutSectionEdge>>>;
|
|
8733
|
+
pageInfo: PageInfo;
|
|
8734
|
+
};
|
|
8735
|
+
export declare type HelpLayoutSectionEdge = {
|
|
8736
|
+
__typename?: 'HelpLayoutSectionEdge';
|
|
8737
|
+
cursor: Scalars['String'];
|
|
8738
|
+
node?: Maybe<HelpLayoutSectionNode>;
|
|
8739
|
+
};
|
|
8740
|
+
export declare type HelpLayoutSectionInput = {
|
|
8741
|
+
cells: Array<HelpLayoutCellInput>;
|
|
8742
|
+
};
|
|
8743
|
+
export declare type HelpLayoutSectionNode = {
|
|
8744
|
+
__typename?: 'HelpLayoutSectionNode';
|
|
8745
|
+
cells?: Maybe<Array<Maybe<HelpLayoutCell>>>;
|
|
8746
|
+
};
|
|
8747
|
+
export declare type HelpLayoutTextConfigInput = {
|
|
8748
|
+
adf?: Maybe<Scalars['String']>;
|
|
8749
|
+
};
|
|
8750
|
+
export declare type HelpLayoutTextElement = {
|
|
8751
|
+
__typename?: 'HelpLayoutTextElement';
|
|
8752
|
+
config?: Maybe<HelpLayoutTextElementConfig>;
|
|
8753
|
+
};
|
|
8754
|
+
export declare type HelpLayoutTextElementConfig = {
|
|
8755
|
+
__typename?: 'HelpLayoutTextElementConfig';
|
|
8756
|
+
adf?: Maybe<Scalars['String']>;
|
|
8757
|
+
};
|
|
8758
|
+
export declare type HelpLayoutTextElementType = HelpLayoutElementType & {
|
|
8759
|
+
__typename?: 'HelpLayoutTextElementType';
|
|
8760
|
+
name?: Maybe<HelpLayoutElementTypeName>;
|
|
8761
|
+
displayName?: Maybe<Scalars['String']>;
|
|
8762
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
8763
|
+
};
|
|
8573
8764
|
export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node & {
|
|
8574
8765
|
__typename?: 'HelpObjectStoreArticle';
|
|
8575
8766
|
id: Scalars['ID'];
|
|
@@ -16958,6 +17149,7 @@ export declare type Mutation = {
|
|
|
16958
17149
|
createJwmOverview?: Maybe<JiraWorkManagementCreateOverviewPayload>;
|
|
16959
17150
|
updateJwmOverview?: Maybe<JiraWorkManagementUpdateOverviewPayload>;
|
|
16960
17151
|
deleteJwmOverview?: Maybe<JiraWorkManagementDeleteOverviewPayload>;
|
|
17152
|
+
helpLayout?: Maybe<HelpLayoutMutationApi>;
|
|
16961
17153
|
virtualAgent?: Maybe<VirtualAgentMutationApi>;
|
|
16962
17154
|
createAppDeploymentUrl?: Maybe<CreateAppDeploymentUrlResponse>;
|
|
16963
17155
|
createHostedResourceUploadUrl?: Maybe<CreateHostedResourceUploadUrlPayload>;
|
|
@@ -17421,6 +17613,9 @@ export declare type MutationDeleteJwmOverviewArgs = {
|
|
|
17421
17613
|
cloudId: Scalars['ID'];
|
|
17422
17614
|
input: JiraWorkManagementDeleteOverviewInput;
|
|
17423
17615
|
};
|
|
17616
|
+
export declare type MutationHelpLayoutArgs = {
|
|
17617
|
+
cloudId?: Maybe<Scalars['ID']>;
|
|
17618
|
+
};
|
|
17424
17619
|
export declare type MutationCreateAppDeploymentUrlArgs = {
|
|
17425
17620
|
input: CreateAppDeploymentUrlInput;
|
|
17426
17621
|
};
|
|
@@ -17810,6 +18005,18 @@ export declare type PartnerCatalogApi = {
|
|
|
17810
18005
|
export declare type PartnerCatalogApiPartnerOfferingDetailsArgs = {
|
|
17811
18006
|
where?: Maybe<PartnerOfferingFilter>;
|
|
17812
18007
|
};
|
|
18008
|
+
export declare type PartnerCloudApp = PartnerOfferingNode & {
|
|
18009
|
+
__typename?: 'PartnerCloudApp';
|
|
18010
|
+
key: Scalars['ID'];
|
|
18011
|
+
name?: Maybe<Scalars['String']>;
|
|
18012
|
+
sku?: Maybe<Scalars['String']>;
|
|
18013
|
+
level?: Maybe<Scalars['Int']>;
|
|
18014
|
+
supportedBillingSystems?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
18015
|
+
hostingType?: Maybe<Scalars['String']>;
|
|
18016
|
+
pricingType?: Maybe<Scalars['String']>;
|
|
18017
|
+
billingType?: Maybe<Scalars['String']>;
|
|
18018
|
+
parent?: Maybe<Scalars['String']>;
|
|
18019
|
+
};
|
|
17813
18020
|
export declare enum PartnerCloudLicenseType {
|
|
17814
18021
|
Academic = "ACADEMIC",
|
|
17815
18022
|
Commercial = "COMMERCIAL",
|
|
@@ -17829,6 +18036,11 @@ export declare type PartnerCloudProduct = PartnerCloudProductNode & {
|
|
|
17829
18036
|
offerings?: Maybe<Array<Maybe<PartnerOfferingItem>>>;
|
|
17830
18037
|
uncollectibleAction?: Maybe<PartnerUncollectibleAction>;
|
|
17831
18038
|
};
|
|
18039
|
+
export declare type PartnerCloudProductItem = PartnerCloudProductNode & {
|
|
18040
|
+
__typename?: 'PartnerCloudProductItem';
|
|
18041
|
+
key: Scalars['ID'];
|
|
18042
|
+
name?: Maybe<Scalars['String']>;
|
|
18043
|
+
};
|
|
17832
18044
|
export declare type PartnerCloudProductNode = {
|
|
17833
18045
|
key: Scalars['ID'];
|
|
17834
18046
|
name?: Maybe<Scalars['String']>;
|
|
@@ -17851,7 +18063,7 @@ export declare type PartnerOfferingDetailsResponse = {
|
|
|
17851
18063
|
__typename?: 'PartnerOfferingDetailsResponse';
|
|
17852
18064
|
btfApps?: Maybe<Array<Maybe<PartnerBtfProduct>>>;
|
|
17853
18065
|
btfProducts?: Maybe<Array<Maybe<PartnerBtfProduct>>>;
|
|
17854
|
-
cloudApps?: Maybe<Array<Maybe<
|
|
18066
|
+
cloudApps?: Maybe<Array<Maybe<PartnerCloudApp>>>;
|
|
17855
18067
|
cloudProducts?: Maybe<Array<Maybe<PartnerCloudProduct>>>;
|
|
17856
18068
|
};
|
|
17857
18069
|
export declare type PartnerOfferingFilter = {
|
|
@@ -17874,7 +18086,7 @@ export declare type PartnerOfferingItem = PartnerOfferingNode & {
|
|
|
17874
18086
|
export declare type PartnerOfferingListResponse = {
|
|
17875
18087
|
__typename?: 'PartnerOfferingListResponse';
|
|
17876
18088
|
btfProducts?: Maybe<Array<Maybe<PartnerBtfProduct>>>;
|
|
17877
|
-
cloudProducts?: Maybe<Array<Maybe<
|
|
18089
|
+
cloudProducts?: Maybe<Array<Maybe<PartnerCloudProductItem>>>;
|
|
17878
18090
|
};
|
|
17879
18091
|
export declare type PartnerOfferingNode = {
|
|
17880
18092
|
key: Scalars['ID'];
|
|
@@ -19323,6 +19535,7 @@ export declare type Query = {
|
|
|
19323
19535
|
jwmOverviews?: Maybe<JiraWorkManagementOverviewConnectionResult>;
|
|
19324
19536
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
19325
19537
|
surfacePlatform: SurfacePlatformQueryApi;
|
|
19538
|
+
helpLayout?: Maybe<HelpLayoutQueryApi>;
|
|
19326
19539
|
xflow?: Maybe<Scalars['String']>;
|
|
19327
19540
|
virtualAgent?: Maybe<VirtualAgentQueryApi>;
|
|
19328
19541
|
jiraReleases?: Maybe<JiraReleases>;
|
|
@@ -19688,6 +19901,9 @@ export declare type QueryTenantContextsArgs = {
|
|
|
19688
19901
|
cloudIds?: Maybe<Array<Scalars['ID']>>;
|
|
19689
19902
|
hostNames?: Maybe<Array<Scalars['String']>>;
|
|
19690
19903
|
};
|
|
19904
|
+
export declare type QueryHelpLayoutArgs = {
|
|
19905
|
+
cloudId?: Maybe<Scalars['ID']>;
|
|
19906
|
+
};
|
|
19691
19907
|
export declare type QueryAppDeploymentArgs = {
|
|
19692
19908
|
appId: Scalars['ID'];
|
|
19693
19909
|
environmentKey: Scalars['String'];
|
|
@@ -19749,6 +19965,7 @@ export declare enum RateLimitingCurrency {
|
|
|
19749
19965
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
19750
19966
|
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
19751
19967
|
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
19968
|
+
HelpLayoutCurrency = "HELP_LAYOUT_CURRENCY",
|
|
19752
19969
|
ForgeAuditLogsCurrency = "FORGE_AUDIT_LOGS_CURRENCY",
|
|
19753
19970
|
ForgeAppContributorCurrency = "FORGE_APP_CONTRIBUTOR_CURRENCY",
|
|
19754
19971
|
HelpCenterCurrency = "HELP_CENTER_CURRENCY",
|
|
@@ -23022,7 +23239,7 @@ export declare type TrelloBoard = {
|
|
|
23022
23239
|
prefs: TrelloBoardPrefs;
|
|
23023
23240
|
shortLink: Scalars['TrelloShortLink'];
|
|
23024
23241
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
23025
|
-
workspace?: Maybe<
|
|
23242
|
+
workspace?: Maybe<TrelloWorkspace>;
|
|
23026
23243
|
};
|
|
23027
23244
|
export declare type TrelloBoardBackground = {
|
|
23028
23245
|
__typename?: 'TrelloBoardBackground';
|
|
@@ -23100,12 +23317,12 @@ export declare type TrelloListLimits = {
|
|
|
23100
23317
|
export declare type TrelloQueryApi = {
|
|
23101
23318
|
__typename?: 'TrelloQueryApi';
|
|
23102
23319
|
board?: Maybe<TrelloBoard>;
|
|
23103
|
-
echo
|
|
23320
|
+
echo?: Maybe<Scalars['String']>;
|
|
23104
23321
|
list?: Maybe<TrelloList>;
|
|
23105
|
-
recentBoardsByIds
|
|
23106
|
-
templateCategories
|
|
23322
|
+
recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
|
|
23323
|
+
templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
|
|
23107
23324
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
23108
|
-
templateLanguages
|
|
23325
|
+
templateLanguages?: Maybe<Array<TrelloTemplateGalleryLanguage>>;
|
|
23109
23326
|
};
|
|
23110
23327
|
export declare type TrelloQueryApiBoardArgs = {
|
|
23111
23328
|
id: Scalars['ID'];
|
|
@@ -23173,8 +23390,8 @@ export declare type TrelloTemplateGalleryLanguage = {
|
|
|
23173
23390
|
locale: Scalars['String'];
|
|
23174
23391
|
localizedDescription: Scalars['String'];
|
|
23175
23392
|
};
|
|
23176
|
-
export declare type
|
|
23177
|
-
__typename?: '
|
|
23393
|
+
export declare type TrelloWorkspace = {
|
|
23394
|
+
__typename?: 'TrelloWorkspace';
|
|
23178
23395
|
displayName: Scalars['String'];
|
|
23179
23396
|
id: Scalars['ID'];
|
|
23180
23397
|
};
|