@forge/cli-shared 3.23.1-next.1 → 3.23.1-next.2-experimental-7b43f81
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 +23 -0
- package/out/graphql/graphql-types.d.ts +261 -37
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.23.1-next.2-experimental-7b43f81
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- d7c1db6: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- @sentry/node
|
|
10
|
+
|
|
11
|
+
- 84bb0de: Bumping dependencies via Renovate:
|
|
12
|
+
|
|
13
|
+
- @sentry/node
|
|
14
|
+
|
|
15
|
+
- c1d7f59: Consistent formatting of forge command suggestions in output
|
|
16
|
+
- Updated dependencies [ea1e909]
|
|
17
|
+
- @forge/manifest@5.5.1-next.0-experimental-7b43f81
|
|
18
|
+
|
|
19
|
+
## 3.23.1-next.2
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies [ea1e909]
|
|
24
|
+
- @forge/manifest@5.5.1-next.0
|
|
25
|
+
|
|
3
26
|
## 3.23.1-next.1
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
|
@@ -6501,10 +6501,35 @@ export declare type ContainerEventObject = {
|
|
|
6501
6501
|
type: Scalars['String']['output'];
|
|
6502
6502
|
};
|
|
6503
6503
|
export declare type ContentPlatformAnyContext = ContentPlatformContextApp | ContentPlatformContextProduct | ContentPlatformContextTheme;
|
|
6504
|
+
export declare type ContentPlatformAuthor = {
|
|
6505
|
+
__typename?: 'ContentPlatformAuthor';
|
|
6506
|
+
authorPicture?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
6507
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6508
|
+
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
6509
|
+
name: Scalars['String']['output'];
|
|
6510
|
+
organization?: Maybe<ContentPlatformOrganization>;
|
|
6511
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6512
|
+
};
|
|
6504
6513
|
export declare enum ContentPlatformBooleanOperators {
|
|
6505
6514
|
And = "AND",
|
|
6506
6515
|
Or = "OR"
|
|
6507
6516
|
}
|
|
6517
|
+
export declare type ContentPlatformCategory = {
|
|
6518
|
+
__typename?: 'ContentPlatformCategory';
|
|
6519
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6520
|
+
name: Scalars['String']['output'];
|
|
6521
|
+
shortDescription: Scalars['String']['output'];
|
|
6522
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6523
|
+
};
|
|
6524
|
+
export declare type ContentPlatformContentClause = {
|
|
6525
|
+
and?: InputMaybe<Array<ContentPlatformContentClause>>;
|
|
6526
|
+
fieldNamed?: InputMaybe<Scalars['String']['input']>;
|
|
6527
|
+
gte?: InputMaybe<ContentPlatformDateCondition>;
|
|
6528
|
+
havingValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6529
|
+
lte?: InputMaybe<ContentPlatformDateCondition>;
|
|
6530
|
+
or?: InputMaybe<Array<ContentPlatformContentClause>>;
|
|
6531
|
+
searchText?: InputMaybe<ContentPlatformSearchTextClause>;
|
|
6532
|
+
};
|
|
6508
6533
|
export declare type ContentPlatformContentEdge = {
|
|
6509
6534
|
__typename?: 'ContentPlatformContentEdge';
|
|
6510
6535
|
cursor: Scalars['String']['output'];
|
|
@@ -6517,34 +6542,18 @@ export declare type ContentPlatformContentFacet = {
|
|
|
6517
6542
|
field: Scalars['String']['output'];
|
|
6518
6543
|
totalCount: Scalars['Float']['output'];
|
|
6519
6544
|
};
|
|
6520
|
-
export declare type ContentPlatformContentFacetClause = {
|
|
6521
|
-
and?: InputMaybe<Array<ContentPlatformContentFacetClause>>;
|
|
6522
|
-
fieldNamed?: InputMaybe<Scalars['String']['input']>;
|
|
6523
|
-
havingValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6524
|
-
isNotNull?: InputMaybe<Scalars['String']['input']>;
|
|
6525
|
-
isNull?: InputMaybe<Scalars['String']['input']>;
|
|
6526
|
-
not?: InputMaybe<Array<ContentPlatformContentFacetClause>>;
|
|
6527
|
-
or?: InputMaybe<Array<ContentPlatformContentFacetClause>>;
|
|
6528
|
-
returnDefaultLocaleIfNoResult?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6529
|
-
withLocales?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6530
|
-
};
|
|
6531
|
-
export declare type ContentPlatformContentFacetClauseType = {
|
|
6532
|
-
__typename?: 'ContentPlatformContentFacetClauseType';
|
|
6533
|
-
and?: Maybe<Array<ContentPlatformContentFacetClauseType>>;
|
|
6534
|
-
fieldNamed?: Maybe<Scalars['String']['output']>;
|
|
6535
|
-
havingValues?: Maybe<Array<Scalars['String']['output']>>;
|
|
6536
|
-
isNotNull?: Maybe<Scalars['String']['output']>;
|
|
6537
|
-
isNull?: Maybe<Scalars['String']['output']>;
|
|
6538
|
-
not?: Maybe<Array<ContentPlatformContentFacetClauseType>>;
|
|
6539
|
-
or?: Maybe<Array<ContentPlatformContentFacetClauseType>>;
|
|
6540
|
-
returnDefaultLocaleIfNoResult?: Maybe<Scalars['Boolean']['output']>;
|
|
6541
|
-
withLocales?: Maybe<Array<Scalars['String']['output']>>;
|
|
6542
|
-
};
|
|
6543
6545
|
export declare type ContentPlatformContentFacetConnection = {
|
|
6544
6546
|
__typename?: 'ContentPlatformContentFacetConnection';
|
|
6545
6547
|
edges: Array<ContentPlatformContentEdge>;
|
|
6546
6548
|
pageInfo: PageInfo;
|
|
6547
6549
|
};
|
|
6550
|
+
export declare type ContentPlatformContentQueryInput = {
|
|
6551
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
6552
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6553
|
+
sortBy?: InputMaybe<ContentPlatformSortClause>;
|
|
6554
|
+
where?: InputMaybe<ContentPlatformContentClause>;
|
|
6555
|
+
withProductFeatureFlags?: InputMaybe<Scalars['JSON']['input']>;
|
|
6556
|
+
};
|
|
6548
6557
|
export declare type ContentPlatformContextApp = {
|
|
6549
6558
|
__typename?: 'ContentPlatformContextApp';
|
|
6550
6559
|
appName: Scalars['String']['output'];
|
|
@@ -6594,6 +6603,10 @@ export declare type ContentPlatformContextTheme = {
|
|
|
6594
6603
|
title: Scalars['String']['output'];
|
|
6595
6604
|
url?: Maybe<Scalars['String']['output']>;
|
|
6596
6605
|
};
|
|
6606
|
+
export declare type ContentPlatformDateCondition = {
|
|
6607
|
+
dateFieldNamed?: Scalars['String']['input'];
|
|
6608
|
+
havingDate: Scalars['DateTime']['input'];
|
|
6609
|
+
};
|
|
6597
6610
|
export declare type ContentPlatformDateRangeFilter = {
|
|
6598
6611
|
after: Scalars['DateTime']['input'];
|
|
6599
6612
|
before: Scalars['DateTime']['input'];
|
|
@@ -6638,6 +6651,17 @@ export declare enum ContentPlatformOperators {
|
|
|
6638
6651
|
All = "ALL",
|
|
6639
6652
|
Any = "ANY"
|
|
6640
6653
|
}
|
|
6654
|
+
export declare type ContentPlatformOrganization = {
|
|
6655
|
+
__typename?: 'ContentPlatformOrganization';
|
|
6656
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6657
|
+
industry?: Maybe<Array<ContentPlatformTaxonomyIndustry>>;
|
|
6658
|
+
logo?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
6659
|
+
name: Scalars['String']['output'];
|
|
6660
|
+
shortDescription?: Maybe<Scalars['String']['output']>;
|
|
6661
|
+
tagline?: Maybe<Scalars['String']['output']>;
|
|
6662
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6663
|
+
};
|
|
6664
|
+
export declare type ContentPlatformOrganizationAndAuthorUnion = ContentPlatformAuthor | ContentPlatformOrganization;
|
|
6641
6665
|
export declare type ContentPlatformReleaseNote = {
|
|
6642
6666
|
__typename?: 'ContentPlatformReleaseNote';
|
|
6643
6667
|
affectedUsers?: Maybe<Array<ContentPlatformTaxonomyUserRole>>;
|
|
@@ -6672,6 +6696,11 @@ export declare type ContentPlatformReleaseNote = {
|
|
|
6672
6696
|
url?: Maybe<Scalars['String']['output']>;
|
|
6673
6697
|
usersNeedingInformed?: Maybe<Array<ContentPlatformTaxonomyUserRole>>;
|
|
6674
6698
|
};
|
|
6699
|
+
export declare type ContentPlatformReleaseNoteContentSearchConnection = {
|
|
6700
|
+
__typename?: 'ContentPlatformReleaseNoteContentSearchConnection';
|
|
6701
|
+
edges: Array<ContentPlatformReleaseNoteResultEdge>;
|
|
6702
|
+
pageInfo: PageInfo;
|
|
6703
|
+
};
|
|
6675
6704
|
export declare type ContentPlatformReleaseNoteFilterOptions = {
|
|
6676
6705
|
changeStatus?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6677
6706
|
changeTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -6687,6 +6716,11 @@ export declare type ContentPlatformReleaseNoteFilterOptions = {
|
|
|
6687
6716
|
releaseNoteFlags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6688
6717
|
updatedAt?: InputMaybe<ContentPlatformDateRangeFilter>;
|
|
6689
6718
|
};
|
|
6719
|
+
export declare type ContentPlatformReleaseNoteResultEdge = {
|
|
6720
|
+
__typename?: 'ContentPlatformReleaseNoteResultEdge';
|
|
6721
|
+
cursor: Scalars['String']['output'];
|
|
6722
|
+
node: ContentPlatformReleaseNote;
|
|
6723
|
+
};
|
|
6690
6724
|
export declare type ContentPlatformReleaseNotesConnection = {
|
|
6691
6725
|
__typename?: 'ContentPlatformReleaseNotesConnection';
|
|
6692
6726
|
edges: Array<ContentPlatformReleaseNotesEdge>;
|
|
@@ -6697,6 +6731,9 @@ export declare type ContentPlatformReleaseNotesEdge = {
|
|
|
6697
6731
|
cursor: Scalars['String']['output'];
|
|
6698
6732
|
node: ContentPlatformReleaseNote;
|
|
6699
6733
|
};
|
|
6734
|
+
export declare type ContentPlatformSearchApIv2Query = {
|
|
6735
|
+
queries: Array<ContentPlatformContentQueryInput>;
|
|
6736
|
+
};
|
|
6700
6737
|
export declare type ContentPlatformSearchOptions = {
|
|
6701
6738
|
operator?: InputMaybe<ContentPlatformBooleanOperators>;
|
|
6702
6739
|
queries: Array<ContentPlatformSearchQuery>;
|
|
@@ -6716,10 +6753,27 @@ export declare type ContentPlatformSearchQueryType = {
|
|
|
6716
6753
|
termOperator?: Maybe<ContentPlatformOperators>;
|
|
6717
6754
|
terms: Array<Scalars['String']['output']>;
|
|
6718
6755
|
};
|
|
6756
|
+
export declare type ContentPlatformSearchTextClause = {
|
|
6757
|
+
and?: InputMaybe<Array<ContentPlatformSearchTextClause>>;
|
|
6758
|
+
exactlyMatching?: InputMaybe<ContentPlatformSearchTextMatchingClause>;
|
|
6759
|
+
or?: InputMaybe<Array<ContentPlatformSearchTextClause>>;
|
|
6760
|
+
partiallyMatching?: InputMaybe<ContentPlatformSearchTextMatchingClause>;
|
|
6761
|
+
};
|
|
6762
|
+
export declare type ContentPlatformSearchTextMatchingClause = {
|
|
6763
|
+
and?: InputMaybe<Array<ContentPlatformSearchTextMatchingClause>>;
|
|
6764
|
+
fieldNamed?: InputMaybe<Scalars['String']['input']>;
|
|
6765
|
+
havingValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6766
|
+
matchingAllValues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6767
|
+
or?: InputMaybe<Array<ContentPlatformSearchTextMatchingClause>>;
|
|
6768
|
+
};
|
|
6719
6769
|
export declare enum ContentPlatformSearchTypes {
|
|
6720
6770
|
Contains = "CONTAINS",
|
|
6721
6771
|
ExactMatch = "EXACT_MATCH"
|
|
6722
6772
|
}
|
|
6773
|
+
export declare type ContentPlatformSortClause = {
|
|
6774
|
+
fieldNamed?: Scalars['String']['input'];
|
|
6775
|
+
havingOrder?: Scalars['String']['input'];
|
|
6776
|
+
};
|
|
6723
6777
|
export declare type ContentPlatformStatusOfChange = {
|
|
6724
6778
|
__typename?: 'ContentPlatformStatusOfChange';
|
|
6725
6779
|
description: Scalars['String']['output'];
|
|
@@ -6740,11 +6794,88 @@ export declare type ContentPlatformTaxonomyChangeCategory = {
|
|
|
6740
6794
|
description: Scalars['String']['output'];
|
|
6741
6795
|
title: Scalars['String']['output'];
|
|
6742
6796
|
};
|
|
6797
|
+
export declare type ContentPlatformTaxonomyCompanySize = {
|
|
6798
|
+
__typename?: 'ContentPlatformTaxonomyCompanySize';
|
|
6799
|
+
companySizeNameExternal: Scalars['String']['output'];
|
|
6800
|
+
companySizeNameInternal: Scalars['String']['output'];
|
|
6801
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6802
|
+
shortDescription: Scalars['String']['output'];
|
|
6803
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6804
|
+
};
|
|
6805
|
+
export declare type ContentPlatformTaxonomyIndustry = {
|
|
6806
|
+
__typename?: 'ContentPlatformTaxonomyIndustry';
|
|
6807
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6808
|
+
name: Scalars['String']['output'];
|
|
6809
|
+
shortDescription: Scalars['String']['output'];
|
|
6810
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6811
|
+
};
|
|
6743
6812
|
export declare type ContentPlatformTaxonomyUserRole = {
|
|
6744
6813
|
__typename?: 'ContentPlatformTaxonomyUserRole';
|
|
6745
6814
|
description: Scalars['String']['output'];
|
|
6746
6815
|
title: Scalars['String']['output'];
|
|
6747
6816
|
};
|
|
6817
|
+
export declare type ContentPlatformTaxonomyUserRoleNew = {
|
|
6818
|
+
__typename?: 'ContentPlatformTaxonomyUserRoleNew';
|
|
6819
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6820
|
+
roleDescription: Scalars['String']['output'];
|
|
6821
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6822
|
+
userRole: Scalars['String']['output'];
|
|
6823
|
+
userRoleId: Scalars['String']['output'];
|
|
6824
|
+
};
|
|
6825
|
+
export declare type ContentPlatformTemplate = {
|
|
6826
|
+
__typename?: 'ContentPlatformTemplate';
|
|
6827
|
+
aboutThisTemplate: Scalars['JSON']['output'];
|
|
6828
|
+
category?: Maybe<Array<ContentPlatformCategory>>;
|
|
6829
|
+
contributor?: Maybe<ContentPlatformOrganizationAndAuthorUnion>;
|
|
6830
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6831
|
+
howToUseThisTemplate: ContentPlatformTemplateGuide;
|
|
6832
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
6833
|
+
oneLinerHeadline?: Maybe<Scalars['String']['output']>;
|
|
6834
|
+
previewBlurb?: Maybe<Scalars['String']['output']>;
|
|
6835
|
+
relatedTemplates?: Maybe<Array<ContentPlatformTemplate>>;
|
|
6836
|
+
targetAudience?: Maybe<Array<ContentPlatformTaxonomyUserRoleNew>>;
|
|
6837
|
+
targetOrganizationSize?: Maybe<Array<ContentPlatformTaxonomyCompanySize>>;
|
|
6838
|
+
templateIcon?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
6839
|
+
templateId: Scalars['String']['output'];
|
|
6840
|
+
templatePreview?: Maybe<Array<ContentPlatformTemplateImageAsset>>;
|
|
6841
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6842
|
+
};
|
|
6843
|
+
export declare type ContentPlatformTemplateContentSearchConnection = {
|
|
6844
|
+
__typename?: 'ContentPlatformTemplateContentSearchConnection';
|
|
6845
|
+
edges: Array<ContentPlatformTemplateResultEdge>;
|
|
6846
|
+
pageInfo: PageInfo;
|
|
6847
|
+
};
|
|
6848
|
+
export declare type ContentPlatformTemplateGuide = {
|
|
6849
|
+
__typename?: 'ContentPlatformTemplateGuide';
|
|
6850
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6851
|
+
name: Scalars['String']['output'];
|
|
6852
|
+
steps?: Maybe<Array<ContentPlatformTemplateUseStep>>;
|
|
6853
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6854
|
+
};
|
|
6855
|
+
export declare type ContentPlatformTemplateImageAsset = {
|
|
6856
|
+
__typename?: 'ContentPlatformTemplateImageAsset';
|
|
6857
|
+
contentType: Scalars['String']['output'];
|
|
6858
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6859
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
6860
|
+
details: Scalars['JSON']['output'];
|
|
6861
|
+
fileName: Scalars['String']['output'];
|
|
6862
|
+
title: Scalars['String']['output'];
|
|
6863
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6864
|
+
url: Scalars['String']['output'];
|
|
6865
|
+
};
|
|
6866
|
+
export declare type ContentPlatformTemplateResultEdge = {
|
|
6867
|
+
__typename?: 'ContentPlatformTemplateResultEdge';
|
|
6868
|
+
cursor: Scalars['String']['output'];
|
|
6869
|
+
node: ContentPlatformTemplate;
|
|
6870
|
+
};
|
|
6871
|
+
export declare type ContentPlatformTemplateUseStep = {
|
|
6872
|
+
__typename?: 'ContentPlatformTemplateUseStep';
|
|
6873
|
+
asset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
6874
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6875
|
+
description?: Maybe<Scalars['JSON']['output']>;
|
|
6876
|
+
name: Scalars['String']['output'];
|
|
6877
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6878
|
+
};
|
|
6748
6879
|
export declare type ContentPlatformTypeOfChange = {
|
|
6749
6880
|
__typename?: 'ContentPlatformTypeOfChange';
|
|
6750
6881
|
icon: ContentPlatformImageAsset;
|
|
@@ -10519,21 +10650,11 @@ export declare type ForgeAlertsCreateConfigInput = {
|
|
|
10519
10650
|
export declare type ForgeAlertsDeleteAlertConfigsInput = {
|
|
10520
10651
|
appIds: Array<Scalars['ID']['input']>;
|
|
10521
10652
|
};
|
|
10522
|
-
export declare type ForgeAlertsFixAlertConfigsInput = {
|
|
10523
|
-
appIds: Array<Scalars['ID']['input']>;
|
|
10524
|
-
};
|
|
10525
|
-
export declare type ForgeAlertsFixAlertPayload = Payload & {
|
|
10526
|
-
__typename?: 'ForgeAlertsFixAlertPayload';
|
|
10527
|
-
alertConfigs?: Maybe<Array<Maybe<ForgeAlertsConfigData>>>;
|
|
10528
|
-
errors?: Maybe<Array<MutationError>>;
|
|
10529
|
-
success: Scalars['Boolean']['output'];
|
|
10530
|
-
};
|
|
10531
10653
|
export declare type ForgeAlertsMutation = {
|
|
10532
10654
|
__typename?: 'ForgeAlertsMutation';
|
|
10533
10655
|
appId: Scalars['ID']['output'];
|
|
10534
10656
|
createAlertConfig?: Maybe<ForgeAlertsCreateAlertPayload>;
|
|
10535
10657
|
deleteAlertConfigs?: Maybe<Payload>;
|
|
10536
|
-
fixAlertConfigs?: Maybe<ForgeAlertsFixAlertPayload>;
|
|
10537
10658
|
modifyAlertConfig?: Maybe<ForgeAlertsUpdateAlertPayload>;
|
|
10538
10659
|
};
|
|
10539
10660
|
export declare type ForgeAlertsMutationCreateAlertConfigArgs = {
|
|
@@ -10542,9 +10663,6 @@ export declare type ForgeAlertsMutationCreateAlertConfigArgs = {
|
|
|
10542
10663
|
export declare type ForgeAlertsMutationDeleteAlertConfigsArgs = {
|
|
10543
10664
|
input: ForgeAlertsDeleteAlertConfigsInput;
|
|
10544
10665
|
};
|
|
10545
|
-
export declare type ForgeAlertsMutationFixAlertConfigsArgs = {
|
|
10546
|
-
input: ForgeAlertsFixAlertConfigsInput;
|
|
10547
|
-
};
|
|
10548
10666
|
export declare type ForgeAlertsMutationModifyAlertConfigArgs = {
|
|
10549
10667
|
input: ForgeAlertsUpdateConfigInput;
|
|
10550
10668
|
};
|
|
@@ -10905,6 +11023,7 @@ export declare type ForgeMetricsQuery = {
|
|
|
10905
11023
|
invocationsValue: ForgeMetricsInvocationsValueResult;
|
|
10906
11024
|
latencies: ForgeMetricsLatenciesResult;
|
|
10907
11025
|
latencyBuckets: ForgeMetricsLatenciesResult;
|
|
11026
|
+
requestUrls: ForgeMetricsRequestUrlsResult;
|
|
10908
11027
|
sites: ForgeMetricsSitesResult;
|
|
10909
11028
|
successRate: ForgeMetricsSuccessRateResult;
|
|
10910
11029
|
successRateValue: ForgeMetricsSuccessRateValueResult;
|
|
@@ -10947,6 +11066,9 @@ export declare type ForgeMetricsQueryLatencyBucketsArgs = {
|
|
|
10947
11066
|
percentiles?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
10948
11067
|
query: ForgeMetricsLatencyBucketsQueryInput;
|
|
10949
11068
|
};
|
|
11069
|
+
export declare type ForgeMetricsQueryRequestUrlsArgs = {
|
|
11070
|
+
query: ForgeMetricsQueryInput;
|
|
11071
|
+
};
|
|
10950
11072
|
export declare type ForgeMetricsQuerySitesArgs = {
|
|
10951
11073
|
query: ForgeMetricsQueryInput;
|
|
10952
11074
|
};
|
|
@@ -10965,6 +11087,11 @@ export declare type ForgeMetricsQueryInput = {
|
|
|
10965
11087
|
filters: ForgeMetricsQueryFilters;
|
|
10966
11088
|
groupBy?: InputMaybe<Array<ForgeMetricsGroupByDimensions>>;
|
|
10967
11089
|
};
|
|
11090
|
+
export declare type ForgeMetricsRequestUrlsData = {
|
|
11091
|
+
__typename?: 'ForgeMetricsRequestUrlsData';
|
|
11092
|
+
data: Array<Scalars['String']['output']>;
|
|
11093
|
+
};
|
|
11094
|
+
export declare type ForgeMetricsRequestUrlsResult = ForgeMetricsRequestUrlsData | QueryError;
|
|
10968
11095
|
export declare type ForgeMetricsResolution = {
|
|
10969
11096
|
__typename?: 'ForgeMetricsResolution';
|
|
10970
11097
|
size: Scalars['Int']['output'];
|
|
@@ -14241,6 +14368,7 @@ export declare type GraphStore = {
|
|
|
14241
14368
|
contentReferencedEntityInverse?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseConnection>;
|
|
14242
14369
|
contentReferencedEntityInverseRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
14243
14370
|
contentReferencedEntityRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
14371
|
+
fetchAllRelationships: GraphStoreAllRelationshipsConnection;
|
|
14244
14372
|
incidentAssociatedPostIncidentReview?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection>;
|
|
14245
14373
|
incidentAssociatedPostIncidentReviewBatch?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection>;
|
|
14246
14374
|
incidentAssociatedPostIncidentReviewInverse?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewInverseConnection>;
|
|
@@ -14523,6 +14651,9 @@ export declare type GraphStore = {
|
|
|
14523
14651
|
versionAssociatedPullRequestInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedPullRequestInverseConnection>;
|
|
14524
14652
|
versionAssociatedPullRequestInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedPullRequestConnection>;
|
|
14525
14653
|
versionAssociatedPullRequestRelationship?: Maybe<GraphStoreFullVersionAssociatedPullRequestConnection>;
|
|
14654
|
+
versionAssociatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseConnection>;
|
|
14655
|
+
versionAssociatedRemoteLinkInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedRemoteLinkConnection>;
|
|
14656
|
+
versionAssociatedRemoteLinkRelationship?: Maybe<GraphStoreFullVersionAssociatedRemoteLinkConnection>;
|
|
14526
14657
|
versionUserAssociatedFeatureFlag?: Maybe<GraphStoreSimplifiedVersionUserAssociatedFeatureFlagConnection>;
|
|
14527
14658
|
versionUserAssociatedFeatureFlagInverse?: Maybe<GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseConnection>;
|
|
14528
14659
|
versionUserAssociatedFeatureFlagInverseRelationship?: Maybe<GraphStoreFullVersionUserAssociatedFeatureFlagConnection>;
|
|
@@ -14647,6 +14778,12 @@ export declare type GraphStoreContentReferencedEntityRelationshipArgs = {
|
|
|
14647
14778
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14648
14779
|
id: Scalars['ID']['input'];
|
|
14649
14780
|
};
|
|
14781
|
+
export declare type GraphStoreFetchAllRelationshipsArgs = {
|
|
14782
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14783
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14784
|
+
id: Scalars['ID']['input'];
|
|
14785
|
+
ignoredRelationshipTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
14786
|
+
};
|
|
14650
14787
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewArgs = {
|
|
14651
14788
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14652
14789
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -16115,6 +16252,21 @@ export declare type GraphStoreVersionAssociatedPullRequestRelationshipArgs = {
|
|
|
16115
16252
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16116
16253
|
id: Scalars['ID']['input'];
|
|
16117
16254
|
};
|
|
16255
|
+
export declare type GraphStoreVersionAssociatedRemoteLinkInverseArgs = {
|
|
16256
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16257
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16258
|
+
id: Scalars['ID']['input'];
|
|
16259
|
+
};
|
|
16260
|
+
export declare type GraphStoreVersionAssociatedRemoteLinkInverseRelationshipArgs = {
|
|
16261
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16262
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16263
|
+
id: Scalars['ID']['input'];
|
|
16264
|
+
};
|
|
16265
|
+
export declare type GraphStoreVersionAssociatedRemoteLinkRelationshipArgs = {
|
|
16266
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16267
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16268
|
+
id: Scalars['ID']['input'];
|
|
16269
|
+
};
|
|
16118
16270
|
export declare type GraphStoreVersionUserAssociatedFeatureFlagArgs = {
|
|
16119
16271
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16120
16272
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -16155,6 +16307,28 @@ export declare type GraphStoreVulnerabilityAssociatedIssueRelationshipArgs = {
|
|
|
16155
16307
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16156
16308
|
id: Scalars['ID']['input'];
|
|
16157
16309
|
};
|
|
16310
|
+
export declare type GraphStoreAllRelationshipsConnection = {
|
|
16311
|
+
__typename?: 'GraphStoreAllRelationshipsConnection';
|
|
16312
|
+
edges: Array<GraphStoreAllRelationshipsEdge>;
|
|
16313
|
+
pageInfo: PageInfo;
|
|
16314
|
+
};
|
|
16315
|
+
export declare type GraphStoreAllRelationshipsEdge = {
|
|
16316
|
+
__typename?: 'GraphStoreAllRelationshipsEdge';
|
|
16317
|
+
from: GraphStoreAllRelationshipsNode;
|
|
16318
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16319
|
+
to: GraphStoreAllRelationshipsNode;
|
|
16320
|
+
type: Scalars['String']['output'];
|
|
16321
|
+
};
|
|
16322
|
+
export declare type GraphStoreAllRelationshipsNode = {
|
|
16323
|
+
__typename?: 'GraphStoreAllRelationshipsNode';
|
|
16324
|
+
fetchAllRelationships: GraphStoreAllRelationshipsConnection;
|
|
16325
|
+
id: Scalars['ID']['output'];
|
|
16326
|
+
};
|
|
16327
|
+
export declare type GraphStoreAllRelationshipsNodeFetchAllRelationshipsArgs = {
|
|
16328
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16329
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16330
|
+
ignoredRelationshipTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
16331
|
+
};
|
|
16158
16332
|
export declare type GraphStoreAriFilterInput = {
|
|
16159
16333
|
is?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
16160
16334
|
isNot?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -20101,6 +20275,35 @@ export declare type GraphStoreFullVersionAssociatedPullRequestStartNode = {
|
|
|
20101
20275
|
id: Scalars['ID']['output'];
|
|
20102
20276
|
};
|
|
20103
20277
|
export declare type GraphStoreFullVersionAssociatedPullRequestStartUnion = JiraVersion;
|
|
20278
|
+
export declare type GraphStoreFullVersionAssociatedRemoteLinkConnection = HasPageInfo & {
|
|
20279
|
+
__typename?: 'GraphStoreFullVersionAssociatedRemoteLinkConnection';
|
|
20280
|
+
edges: Array<Maybe<GraphStoreFullVersionAssociatedRemoteLinkEdge>>;
|
|
20281
|
+
nodes: Array<Maybe<GraphStoreFullVersionAssociatedRemoteLinkNode>>;
|
|
20282
|
+
pageInfo: PageInfo;
|
|
20283
|
+
};
|
|
20284
|
+
export declare type GraphStoreFullVersionAssociatedRemoteLinkEdge = {
|
|
20285
|
+
__typename?: 'GraphStoreFullVersionAssociatedRemoteLinkEdge';
|
|
20286
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
20287
|
+
node: GraphStoreFullVersionAssociatedRemoteLinkNode;
|
|
20288
|
+
};
|
|
20289
|
+
export declare type GraphStoreFullVersionAssociatedRemoteLinkEndNode = {
|
|
20290
|
+
__typename?: 'GraphStoreFullVersionAssociatedRemoteLinkEndNode';
|
|
20291
|
+
id: Scalars['ID']['output'];
|
|
20292
|
+
};
|
|
20293
|
+
export declare type GraphStoreFullVersionAssociatedRemoteLinkNode = Node & {
|
|
20294
|
+
__typename?: 'GraphStoreFullVersionAssociatedRemoteLinkNode';
|
|
20295
|
+
createdAt: Scalars['DateTime']['output'];
|
|
20296
|
+
from: GraphStoreFullVersionAssociatedRemoteLinkStartNode;
|
|
20297
|
+
id: Scalars['ID']['output'];
|
|
20298
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
20299
|
+
to: GraphStoreFullVersionAssociatedRemoteLinkEndNode;
|
|
20300
|
+
};
|
|
20301
|
+
export declare type GraphStoreFullVersionAssociatedRemoteLinkStartNode = {
|
|
20302
|
+
__typename?: 'GraphStoreFullVersionAssociatedRemoteLinkStartNode';
|
|
20303
|
+
data?: Maybe<GraphStoreFullVersionAssociatedRemoteLinkStartUnion>;
|
|
20304
|
+
id: Scalars['ID']['output'];
|
|
20305
|
+
};
|
|
20306
|
+
export declare type GraphStoreFullVersionAssociatedRemoteLinkStartUnion = JiraVersion;
|
|
20104
20307
|
export declare type GraphStoreFullVersionUserAssociatedFeatureFlagConnection = HasPageInfo & {
|
|
20105
20308
|
__typename?: 'GraphStoreFullVersionUserAssociatedFeatureFlagConnection';
|
|
20106
20309
|
edges: Array<Maybe<GraphStoreFullVersionUserAssociatedFeatureFlagEdge>>;
|
|
@@ -22468,6 +22671,19 @@ export declare type GraphStoreSimplifiedVersionAssociatedPullRequestInverseEdge
|
|
|
22468
22671
|
};
|
|
22469
22672
|
export declare type GraphStoreSimplifiedVersionAssociatedPullRequestInverseUnion = JiraVersion;
|
|
22470
22673
|
export declare type GraphStoreSimplifiedVersionAssociatedPullRequestUnion = DevOpsPullRequestDetails;
|
|
22674
|
+
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseConnection = HasPageInfo & {
|
|
22675
|
+
__typename?: 'GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseConnection';
|
|
22676
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge>>>;
|
|
22677
|
+
pageInfo: PageInfo;
|
|
22678
|
+
};
|
|
22679
|
+
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge = {
|
|
22680
|
+
__typename?: 'GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge';
|
|
22681
|
+
createdAt: Scalars['DateTime']['output'];
|
|
22682
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
22683
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
22684
|
+
node?: Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseUnion>;
|
|
22685
|
+
};
|
|
22686
|
+
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseUnion = JiraVersion;
|
|
22471
22687
|
export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagConnection = HasPageInfo & {
|
|
22472
22688
|
__typename?: 'GraphStoreSimplifiedVersionUserAssociatedFeatureFlagConnection';
|
|
22473
22689
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionUserAssociatedFeatureFlagEdge>>>;
|
|
@@ -38037,6 +38253,8 @@ export declare type Query = {
|
|
|
38037
38253
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
38038
38254
|
surfacePlatform: SurfacePlatformQueryApi;
|
|
38039
38255
|
team?: Maybe<TeamQuery>;
|
|
38256
|
+
template?: Maybe<ContentPlatformTemplate>;
|
|
38257
|
+
templates: ContentPlatformTemplateContentSearchConnection;
|
|
38040
38258
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
38041
38259
|
testing?: Maybe<Testing>;
|
|
38042
38260
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
@@ -38161,7 +38379,6 @@ export declare type QueryContentFacetArgs = {
|
|
|
38161
38379
|
first?: Scalars['Int']['input'];
|
|
38162
38380
|
forContentType: Scalars['String']['input'];
|
|
38163
38381
|
forFields: Array<Scalars['String']['input']>;
|
|
38164
|
-
where?: InputMaybe<ContentPlatformContentFacetClause>;
|
|
38165
38382
|
};
|
|
38166
38383
|
export declare type QueryCustomerServiceArgs = {
|
|
38167
38384
|
cloudId: Scalars['ID']['input'];
|
|
@@ -38438,6 +38655,13 @@ export declare type QueryRepositoryRelationshipsForJiraProjectArgs = {
|
|
|
38438
38655
|
export declare type QuerySoftwareBoardsArgs = {
|
|
38439
38656
|
projectAri: Scalars['ID']['input'];
|
|
38440
38657
|
};
|
|
38658
|
+
export declare type QueryTemplateArgs = {
|
|
38659
|
+
id: Scalars['String']['input'];
|
|
38660
|
+
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38661
|
+
};
|
|
38662
|
+
export declare type QueryTemplatesArgs = {
|
|
38663
|
+
search: ContentPlatformSearchApIv2Query;
|
|
38664
|
+
};
|
|
38441
38665
|
export declare type QueryTenantContextsArgs = {
|
|
38442
38666
|
cloudIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
38443
38667
|
hostNames?: InputMaybe<Array<Scalars['String']['input']>>;
|