@forge/cli-shared 3.17.2-next.6-experimental-8802d63 → 3.17.2-next.8
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 +6 -15
- package/out/config/config-file.d.ts.map +1 -1
- package/out/config/config-file.js +1 -1
- package/out/graphql/graphql-types.d.ts +175 -105
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +35 -11
- package/out/shared/environment.d.ts +1 -1
- package/out/shared/environment.d.ts.map +1 -1
- package/out/ui/command-line-ui.d.ts +0 -1
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/package.json +5 -4
|
@@ -326,12 +326,12 @@ export type AddCompassComponentLabelsPayload = Payload & {
|
|
|
326
326
|
export type AddMultipleAppContributorInput = {
|
|
327
327
|
appId: Scalars['ID'];
|
|
328
328
|
newContributorEmails: Array<Scalars['String']>;
|
|
329
|
-
|
|
329
|
+
roles: Array<AppContributorRole>;
|
|
330
330
|
};
|
|
331
331
|
export type AddMultipleAppContributorResponsePayload = Payload & {
|
|
332
332
|
__typename?: 'AddMultipleAppContributorResponsePayload';
|
|
333
333
|
success: Scalars['Boolean'];
|
|
334
|
-
contributorsFailed
|
|
334
|
+
contributorsFailed?: Maybe<Array<ContributorFailed>>;
|
|
335
335
|
errors?: Maybe<Array<MutationError>>;
|
|
336
336
|
};
|
|
337
337
|
export type AddPolarisColumnInput = {
|
|
@@ -686,11 +686,14 @@ export type AppContributor = {
|
|
|
686
686
|
status: Scalars['String'];
|
|
687
687
|
isOwner?: Maybe<Scalars['Boolean']>;
|
|
688
688
|
avatarUrl?: Maybe<Scalars['String']>;
|
|
689
|
-
|
|
689
|
+
roles?: Maybe<Array<Scalars['String']>>;
|
|
690
690
|
};
|
|
691
691
|
export declare enum AppContributorRole {
|
|
692
692
|
Admin = "ADMIN",
|
|
693
|
-
Developer = "DEVELOPER"
|
|
693
|
+
Developer = "DEVELOPER",
|
|
694
|
+
ViewerAdvanced = "VIEWER_ADVANCED",
|
|
695
|
+
Viewer = "VIEWER",
|
|
696
|
+
Deployer = "DEPLOYER"
|
|
694
697
|
}
|
|
695
698
|
export type AppDeployment = {
|
|
696
699
|
__typename?: 'AppDeployment';
|
|
@@ -6902,7 +6905,7 @@ export type CustomerServiceAttributeValue = Node & {
|
|
|
6902
6905
|
name: Scalars['String'];
|
|
6903
6906
|
type: CustomerServiceAttributeType;
|
|
6904
6907
|
value?: Maybe<Scalars['String']>;
|
|
6905
|
-
values?: Maybe<Array<
|
|
6908
|
+
values?: Maybe<Array<Scalars['String']>>;
|
|
6906
6909
|
config?: Maybe<CustomerServiceAttributeConfigMetadata>;
|
|
6907
6910
|
};
|
|
6908
6911
|
export type CustomerServiceAttributes = {
|
|
@@ -6910,11 +6913,22 @@ export type CustomerServiceAttributes = {
|
|
|
6910
6913
|
attributes?: Maybe<Array<CustomerServiceAttribute>>;
|
|
6911
6914
|
};
|
|
6912
6915
|
export type CustomerServiceAttributesQueryResult = CustomerServiceAttributes | QueryError;
|
|
6916
|
+
export type CustomerServiceContext = {
|
|
6917
|
+
type: CustomerServiceContextType;
|
|
6918
|
+
};
|
|
6919
|
+
export declare enum CustomerServiceContextType {
|
|
6920
|
+
Default = "DEFAULT",
|
|
6921
|
+
Issue = "ISSUE"
|
|
6922
|
+
}
|
|
6923
|
+
export type CustomerServiceFilterInput = {
|
|
6924
|
+
context: CustomerServiceContext;
|
|
6925
|
+
};
|
|
6913
6926
|
export type CustomerServiceIndividual = Node & {
|
|
6914
6927
|
__typename?: 'CustomerServiceIndividual';
|
|
6915
6928
|
id: Scalars['ID'];
|
|
6916
6929
|
name: Scalars['String'];
|
|
6917
|
-
attributes: Array<
|
|
6930
|
+
attributes: Array<CustomerServiceAttributeValue>;
|
|
6931
|
+
organizations: Array<CustomerServiceOrganization>;
|
|
6918
6932
|
};
|
|
6919
6933
|
export type CustomerServiceIndividualDeletePayload = Payload & {
|
|
6920
6934
|
__typename?: 'CustomerServiceIndividualDeletePayload';
|
|
@@ -7014,7 +7028,7 @@ export type CustomerServiceOrganization = Node & {
|
|
|
7014
7028
|
__typename?: 'CustomerServiceOrganization';
|
|
7015
7029
|
id: Scalars['ID'];
|
|
7016
7030
|
name: Scalars['String'];
|
|
7017
|
-
attributes: Array<
|
|
7031
|
+
attributes: Array<CustomerServiceAttributeValue>;
|
|
7018
7032
|
};
|
|
7019
7033
|
export type CustomerServiceOrganizationCreateInput = {
|
|
7020
7034
|
id: Scalars['ID'];
|
|
@@ -7075,9 +7089,11 @@ export type CustomerServiceQueryApi = {
|
|
|
7075
7089
|
};
|
|
7076
7090
|
export type CustomerServiceQueryApiOrganizationByOrganizationIdArgs = {
|
|
7077
7091
|
organizationId: Scalars['ID'];
|
|
7092
|
+
filter?: Maybe<CustomerServiceFilterInput>;
|
|
7078
7093
|
};
|
|
7079
7094
|
export type CustomerServiceQueryApiIndividualByAccountIdArgs = {
|
|
7080
7095
|
accountId: Scalars['ID'];
|
|
7096
|
+
filter?: Maybe<CustomerServiceFilterInput>;
|
|
7081
7097
|
};
|
|
7082
7098
|
export type CustomerServiceStatusPayload = Payload & {
|
|
7083
7099
|
__typename?: 'CustomerServiceStatusPayload';
|
|
@@ -7554,6 +7570,7 @@ export type DevOpsBuildProvider = DevOpsDataProvider & {
|
|
|
7554
7570
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
7555
7571
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
7556
7572
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
7573
|
+
providerType?: Maybe<DevOpsProviderType>;
|
|
7557
7574
|
};
|
|
7558
7575
|
export declare enum DevOpsBuildState {
|
|
7559
7576
|
Pending = "PENDING",
|
|
@@ -7575,6 +7592,7 @@ export type DevOpsDataProvider = {
|
|
|
7575
7592
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
7576
7593
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
7577
7594
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
7595
|
+
providerType?: Maybe<DevOpsProviderType>;
|
|
7578
7596
|
};
|
|
7579
7597
|
export type DevOpsDeploymentProvider = DevOpsDataProvider & {
|
|
7580
7598
|
__typename?: 'DevOpsDeploymentProvider';
|
|
@@ -7585,6 +7603,7 @@ export type DevOpsDeploymentProvider = DevOpsDataProvider & {
|
|
|
7585
7603
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
7586
7604
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
7587
7605
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
7606
|
+
providerType?: Maybe<DevOpsProviderType>;
|
|
7588
7607
|
};
|
|
7589
7608
|
export type DevOpsDesign = Node & {
|
|
7590
7609
|
__typename?: 'DevOpsDesign';
|
|
@@ -7607,6 +7626,7 @@ export type DevOpsDesignProvider = DevOpsDataProvider & {
|
|
|
7607
7626
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
7608
7627
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
7609
7628
|
grant3LOUrl?: Maybe<Scalars['String']>;
|
|
7629
|
+
providerType?: Maybe<DevOpsProviderType>;
|
|
7610
7630
|
};
|
|
7611
7631
|
export declare enum DevOpsDesignStatus {
|
|
7612
7632
|
ReadyForDevelopment = "READY_FOR_DEVELOPMENT",
|
|
@@ -7630,6 +7650,7 @@ export type DevOpsDevInfoProvider = DevOpsDataProvider & {
|
|
|
7630
7650
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
7631
7651
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
7632
7652
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
7653
|
+
providerType?: Maybe<DevOpsProviderType>;
|
|
7633
7654
|
};
|
|
7634
7655
|
export type DevOpsDocument = Node & {
|
|
7635
7656
|
__typename?: 'DevOpsDocument';
|
|
@@ -7686,6 +7707,7 @@ export type DevOpsDocumentationProvider = DevOpsDataProvider & {
|
|
|
7686
7707
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
7687
7708
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
7688
7709
|
grant3LOUrl?: Maybe<Scalars['String']>;
|
|
7710
|
+
providerType?: Maybe<DevOpsProviderType>;
|
|
7689
7711
|
linkedContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
7690
7712
|
};
|
|
7691
7713
|
export type DevOpsDocumentationProviderLinkedContainersArgs = {
|
|
@@ -7771,6 +7793,7 @@ export type DevOpsFeatureFlagProvider = DevOpsDataProvider & {
|
|
|
7771
7793
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
7772
7794
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
7773
7795
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
7796
|
+
providerType?: Maybe<DevOpsProviderType>;
|
|
7774
7797
|
createFeatureFlagTemplateUrl?: Maybe<Scalars['String']>;
|
|
7775
7798
|
connectFeatureFlagTemplateUrl?: Maybe<Scalars['String']>;
|
|
7776
7799
|
};
|
|
@@ -8055,6 +8078,7 @@ export type DevOpsRemoteLinksProvider = DevOpsDataProvider & {
|
|
|
8055
8078
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
8056
8079
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
8057
8080
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
8081
|
+
providerType?: Maybe<DevOpsProviderType>;
|
|
8058
8082
|
};
|
|
8059
8083
|
export type DevOpsRepository = {
|
|
8060
8084
|
__typename?: 'DevOpsRepository';
|
|
@@ -8086,6 +8110,7 @@ export type DevOpsSecurityProvider = DevOpsDataProvider & {
|
|
|
8086
8110
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
8087
8111
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
8088
8112
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
8113
|
+
providerType?: Maybe<DevOpsProviderType>;
|
|
8089
8114
|
linkedWorkspaces?: Maybe<AriGraphRelationshipConnection>;
|
|
8090
8115
|
linkedContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
8091
8116
|
};
|
|
@@ -10729,8 +10754,8 @@ export type HelpLayout = Node & {
|
|
|
10729
10754
|
sections?: Maybe<HelpLayoutSectionConnection>;
|
|
10730
10755
|
};
|
|
10731
10756
|
export type HelpLayoutSectionsArgs = {
|
|
10732
|
-
first?: Maybe<Scalars['Int']>;
|
|
10733
10757
|
after?: Maybe<Scalars['String']>;
|
|
10758
|
+
first?: Maybe<Scalars['Int']>;
|
|
10734
10759
|
};
|
|
10735
10760
|
export type HelpLayoutAlignmentSettings = {
|
|
10736
10761
|
__typename?: 'HelpLayoutAlignmentSettings';
|
|
@@ -10741,26 +10766,26 @@ export type HelpLayoutAlignmentSettingsInput = {
|
|
|
10741
10766
|
horizontalAlignment?: Maybe<HelpLayoutHorizontalAlignment>;
|
|
10742
10767
|
verticalAlignment?: Maybe<HelpLayoutVerticalAlignment>;
|
|
10743
10768
|
};
|
|
10744
|
-
export type HelpLayoutAtomicElement =
|
|
10769
|
+
export type HelpLayoutAtomicElement = HelpLayoutHeadingAtomicElement | HelpLayoutImageAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutSearchAtomicElement;
|
|
10745
10770
|
export type HelpLayoutAtomicElementInput = {
|
|
10746
10771
|
elementTypeKey: HelpLayoutAtomicElementKey;
|
|
10747
|
-
imageConfigInput?: Maybe<HelpLayoutImageConfigInput>;
|
|
10748
10772
|
headingConfigInput?: Maybe<HelpLayoutHeadingConfigInput>;
|
|
10749
|
-
|
|
10773
|
+
imageConfigInput?: Maybe<HelpLayoutImageConfigInput>;
|
|
10750
10774
|
paragraphConfigInput?: Maybe<HelpLayoutParagraphConfigInput>;
|
|
10775
|
+
searchConfigInput?: Maybe<HelpLayoutSearchConfigInput>;
|
|
10751
10776
|
};
|
|
10752
10777
|
export declare enum HelpLayoutAtomicElementKey {
|
|
10753
|
-
Image = "IMAGE",
|
|
10754
10778
|
Heading = "HEADING",
|
|
10779
|
+
Image = "IMAGE",
|
|
10755
10780
|
Paragraph = "PARAGRAPH",
|
|
10756
10781
|
Search = "SEARCH"
|
|
10757
10782
|
}
|
|
10758
10783
|
export type HelpLayoutAtomicElementType = HelpLayoutElementType & {
|
|
10759
10784
|
__typename?: 'HelpLayoutAtomicElementType';
|
|
10760
|
-
|
|
10785
|
+
category?: Maybe<HelpLayoutElementCategory>;
|
|
10761
10786
|
displayName?: Maybe<Scalars['String']>;
|
|
10762
10787
|
iconUrl?: Maybe<Scalars['String']>;
|
|
10763
|
-
|
|
10788
|
+
key?: Maybe<HelpLayoutAtomicElementKey>;
|
|
10764
10789
|
mediaConfig?: Maybe<HelpLayoutMediaConfig>;
|
|
10765
10790
|
};
|
|
10766
10791
|
export type HelpLayoutAtomicElementTypeMediaConfigArgs = {
|
|
@@ -10768,80 +10793,80 @@ export type HelpLayoutAtomicElementTypeMediaConfigArgs = {
|
|
|
10768
10793
|
};
|
|
10769
10794
|
export type HelpLayoutBackgroundImage = {
|
|
10770
10795
|
__typename?: 'HelpLayoutBackgroundImage';
|
|
10771
|
-
url?: Maybe<Scalars['String']>;
|
|
10772
10796
|
fileId?: Maybe<Scalars['String']>;
|
|
10797
|
+
url?: Maybe<Scalars['String']>;
|
|
10773
10798
|
};
|
|
10774
10799
|
export type HelpLayoutBackgroundImageInput = {
|
|
10775
|
-
url?: Maybe<Scalars['String']>;
|
|
10776
10800
|
fileId?: Maybe<Scalars['String']>;
|
|
10801
|
+
url?: Maybe<Scalars['String']>;
|
|
10777
10802
|
};
|
|
10778
10803
|
export type HelpLayoutCompositeElement = {
|
|
10779
|
-
id: Scalars['ID'];
|
|
10780
|
-
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
10781
10804
|
children?: Maybe<Array<Maybe<HelpLayoutAtomicElement>>>;
|
|
10782
10805
|
elementType?: Maybe<HelpLayoutCompositeElementType>;
|
|
10806
|
+
id: Scalars['ID'];
|
|
10807
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
10783
10808
|
};
|
|
10784
10809
|
export declare enum HelpLayoutCompositeElementKey {
|
|
10785
10810
|
LinkCard = "LINK_CARD"
|
|
10786
10811
|
}
|
|
10787
10812
|
export type HelpLayoutCompositeElementType = HelpLayoutElementType & {
|
|
10788
10813
|
__typename?: 'HelpLayoutCompositeElementType';
|
|
10789
|
-
|
|
10814
|
+
allowedElements?: Maybe<Array<Maybe<HelpLayoutAtomicElementKey>>>;
|
|
10815
|
+
category?: Maybe<HelpLayoutElementCategory>;
|
|
10790
10816
|
displayName?: Maybe<Scalars['String']>;
|
|
10791
10817
|
iconUrl?: Maybe<Scalars['String']>;
|
|
10792
|
-
|
|
10793
|
-
allowedElements?: Maybe<Array<Maybe<HelpLayoutAtomicElementKey>>>;
|
|
10818
|
+
key?: Maybe<HelpLayoutCompositeElementKey>;
|
|
10794
10819
|
};
|
|
10795
10820
|
export type HelpLayoutCreatePayload = Payload & {
|
|
10796
10821
|
__typename?: 'HelpLayoutCreatePayload';
|
|
10797
|
-
success: Scalars['Boolean'];
|
|
10798
10822
|
errors?: Maybe<Array<MutationError>>;
|
|
10799
10823
|
layoutId?: Maybe<Scalars['ID']>;
|
|
10824
|
+
success: Scalars['Boolean'];
|
|
10800
10825
|
};
|
|
10801
10826
|
export type HelpLayoutCreationInput = {
|
|
10802
10827
|
parentAri: Scalars['ID'];
|
|
10803
10828
|
sections: Array<HelpLayoutSectionInput>;
|
|
10804
10829
|
};
|
|
10805
|
-
export type HelpLayoutElement =
|
|
10830
|
+
export type HelpLayoutElement = HelpLayoutHeadingAtomicElement | HelpLayoutImageAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutSearchAtomicElement | HelpLayoutLinkCardCompositeElement;
|
|
10806
10831
|
export declare enum HelpLayoutElementCategory {
|
|
10807
10832
|
Basic = "BASIC",
|
|
10808
10833
|
Navigation = "NAVIGATION"
|
|
10809
10834
|
}
|
|
10810
10835
|
export type HelpLayoutElementInput = {
|
|
10811
10836
|
elementTypeKey: HelpLayoutElementKey;
|
|
10812
|
-
imageConfigInput?: Maybe<HelpLayoutImageConfigInput>;
|
|
10813
10837
|
headingConfigInput?: Maybe<HelpLayoutHeadingConfigInput>;
|
|
10838
|
+
imageConfigInput?: Maybe<HelpLayoutImageConfigInput>;
|
|
10839
|
+
linkCardInput?: Maybe<HelpLayoutLinkCardInput>;
|
|
10814
10840
|
paragraphConfigInput?: Maybe<HelpLayoutParagraphConfigInput>;
|
|
10815
10841
|
searchConfigInput?: Maybe<HelpLayoutSearchConfigInput>;
|
|
10816
|
-
linkCardInput?: Maybe<HelpLayoutLinkCardInput>;
|
|
10817
10842
|
};
|
|
10818
10843
|
export declare enum HelpLayoutElementKey {
|
|
10844
|
+
LinkCard = "LINK_CARD",
|
|
10819
10845
|
Image = "IMAGE",
|
|
10820
10846
|
Heading = "HEADING",
|
|
10821
10847
|
Paragraph = "PARAGRAPH",
|
|
10822
|
-
Search = "SEARCH"
|
|
10823
|
-
LinkCard = "LINK_CARD"
|
|
10848
|
+
Search = "SEARCH"
|
|
10824
10849
|
}
|
|
10825
10850
|
export type HelpLayoutElementType = {
|
|
10851
|
+
category?: Maybe<HelpLayoutElementCategory>;
|
|
10826
10852
|
displayName?: Maybe<Scalars['String']>;
|
|
10827
10853
|
iconUrl?: Maybe<Scalars['String']>;
|
|
10828
|
-
category?: Maybe<HelpLayoutElementCategory>;
|
|
10829
10854
|
};
|
|
10830
10855
|
export type HelpLayoutHeadingAtomicElement = HelpLayoutVisualEntity & Node & {
|
|
10831
10856
|
__typename?: 'HelpLayoutHeadingAtomicElement';
|
|
10832
|
-
id: Scalars['ID'];
|
|
10833
|
-
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
10834
10857
|
config?: Maybe<HelpLayoutHeadingAtomicElementConfig>;
|
|
10835
10858
|
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
10859
|
+
id: Scalars['ID'];
|
|
10860
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
10836
10861
|
};
|
|
10837
10862
|
export type HelpLayoutHeadingAtomicElementConfig = {
|
|
10838
10863
|
__typename?: 'HelpLayoutHeadingAtomicElementConfig';
|
|
10839
|
-
text?: Maybe<Scalars['String']>;
|
|
10840
10864
|
headingType?: Maybe<HelpLayoutHeadingType>;
|
|
10865
|
+
text?: Maybe<Scalars['String']>;
|
|
10841
10866
|
};
|
|
10842
10867
|
export type HelpLayoutHeadingConfigInput = {
|
|
10843
|
-
text: Scalars['String'];
|
|
10844
10868
|
headingType: HelpLayoutHeadingType;
|
|
10869
|
+
text: Scalars['String'];
|
|
10845
10870
|
visualConfig?: Maybe<HelpLayoutVisualConfigInput>;
|
|
10846
10871
|
};
|
|
10847
10872
|
export declare enum HelpLayoutHeadingType {
|
|
@@ -10853,67 +10878,67 @@ export declare enum HelpLayoutHeadingType {
|
|
|
10853
10878
|
H6 = "h6"
|
|
10854
10879
|
}
|
|
10855
10880
|
export declare enum HelpLayoutHorizontalAlignment {
|
|
10856
|
-
Left = "LEFT",
|
|
10857
10881
|
Center = "CENTER",
|
|
10882
|
+
Left = "LEFT",
|
|
10858
10883
|
Right = "RIGHT"
|
|
10859
10884
|
}
|
|
10860
10885
|
export type HelpLayoutImageAtomicElement = HelpLayoutVisualEntity & Node & {
|
|
10861
10886
|
__typename?: 'HelpLayoutImageAtomicElement';
|
|
10862
|
-
id: Scalars['ID'];
|
|
10863
|
-
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
10864
10887
|
config?: Maybe<HelpLayoutImageAtomicElementConfig>;
|
|
10865
10888
|
data?: Maybe<HelpLayoutImageAtomicElementData>;
|
|
10866
10889
|
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
10890
|
+
id: Scalars['ID'];
|
|
10891
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
10867
10892
|
};
|
|
10868
10893
|
export type HelpLayoutImageAtomicElementConfig = {
|
|
10869
10894
|
__typename?: 'HelpLayoutImageAtomicElementConfig';
|
|
10870
10895
|
altText?: Maybe<Scalars['String']>;
|
|
10871
10896
|
fileId?: Maybe<Scalars['String']>;
|
|
10872
|
-
size?: Maybe<Scalars['String']>;
|
|
10873
10897
|
fit?: Maybe<Scalars['String']>;
|
|
10874
10898
|
position?: Maybe<Scalars['String']>;
|
|
10875
10899
|
scale?: Maybe<Scalars['Int']>;
|
|
10900
|
+
size?: Maybe<Scalars['String']>;
|
|
10876
10901
|
};
|
|
10877
10902
|
export type HelpLayoutImageAtomicElementData = {
|
|
10878
10903
|
__typename?: 'HelpLayoutImageAtomicElementData';
|
|
10879
10904
|
imageUrl?: Maybe<Scalars['String']>;
|
|
10880
10905
|
};
|
|
10881
10906
|
export type HelpLayoutImageConfigInput = {
|
|
10882
|
-
fileId?: Maybe<Scalars['String']>;
|
|
10883
|
-
url?: Maybe<Scalars['String']>;
|
|
10884
10907
|
altText?: Maybe<Scalars['String']>;
|
|
10885
|
-
|
|
10908
|
+
fileId?: Maybe<Scalars['String']>;
|
|
10886
10909
|
fit?: Maybe<Scalars['String']>;
|
|
10887
10910
|
position?: Maybe<Scalars['String']>;
|
|
10888
10911
|
scale?: Maybe<Scalars['Int']>;
|
|
10912
|
+
size?: Maybe<Scalars['String']>;
|
|
10913
|
+
url?: Maybe<Scalars['String']>;
|
|
10889
10914
|
visualConfig?: Maybe<HelpLayoutVisualConfigInput>;
|
|
10890
10915
|
};
|
|
10891
|
-
export type HelpLayoutLinkCardCompositeElement =
|
|
10916
|
+
export type HelpLayoutLinkCardCompositeElement = HelpLayoutCompositeElement & HelpLayoutVisualEntity & Node & {
|
|
10892
10917
|
__typename?: 'HelpLayoutLinkCardCompositeElement';
|
|
10893
|
-
id: Scalars['ID'];
|
|
10894
|
-
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
10895
|
-
config?: Maybe<Scalars['String']>;
|
|
10896
10918
|
children?: Maybe<Array<Maybe<HelpLayoutAtomicElement>>>;
|
|
10919
|
+
config?: Maybe<Scalars['String']>;
|
|
10897
10920
|
elementType?: Maybe<HelpLayoutCompositeElementType>;
|
|
10921
|
+
id: Scalars['ID'];
|
|
10922
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
10898
10923
|
};
|
|
10899
10924
|
export type HelpLayoutLinkCardInput = {
|
|
10900
10925
|
children: Array<HelpLayoutAtomicElementInput>;
|
|
10926
|
+
config: Scalars['String'];
|
|
10901
10927
|
type: HelpLayoutCompositeElementKey;
|
|
10902
10928
|
visualConfig?: Maybe<HelpLayoutVisualConfigInput>;
|
|
10903
|
-
config: Scalars['String'];
|
|
10904
10929
|
};
|
|
10905
10930
|
export type HelpLayoutMediaConfig = {
|
|
10906
10931
|
__typename?: 'HelpLayoutMediaConfig';
|
|
10907
|
-
mediaUrl?: Maybe<Scalars['String']>;
|
|
10908
|
-
mediaToken?: Maybe<Scalars['String']>;
|
|
10909
|
-
mediaCollectionName?: Maybe<Scalars['String']>;
|
|
10910
10932
|
asapIssuer?: Maybe<Scalars['String']>;
|
|
10933
|
+
mediaCollectionName?: Maybe<Scalars['String']>;
|
|
10934
|
+
mediaToken?: Maybe<Scalars['String']>;
|
|
10935
|
+
mediaUrl?: Maybe<Scalars['String']>;
|
|
10911
10936
|
};
|
|
10912
10937
|
export type HelpLayoutMutationApi = {
|
|
10913
10938
|
__typename?: 'HelpLayoutMutationApi';
|
|
10914
10939
|
createLayout: HelpLayoutCreatePayload;
|
|
10915
10940
|
deleteLayout?: Maybe<Payload>;
|
|
10916
|
-
updateLayout
|
|
10941
|
+
updateLayout: HelpLayoutUpdatePayload;
|
|
10917
10942
|
};
|
|
10918
10943
|
export type HelpLayoutMutationApiCreateLayoutArgs = {
|
|
10919
10944
|
input: HelpLayoutCreationInput;
|
|
@@ -10924,12 +10949,17 @@ export type HelpLayoutMutationApiDeleteLayoutArgs = {
|
|
|
10924
10949
|
export type HelpLayoutMutationApiUpdateLayoutArgs = {
|
|
10925
10950
|
input: HelpLayoutUpdateInput;
|
|
10926
10951
|
};
|
|
10952
|
+
export type HelpLayoutMutationErrorExtension = MutationErrorExtension & {
|
|
10953
|
+
__typename?: 'HelpLayoutMutationErrorExtension';
|
|
10954
|
+
errorType?: Maybe<Scalars['String']>;
|
|
10955
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
10956
|
+
};
|
|
10927
10957
|
export type HelpLayoutParagraphAtomicElement = HelpLayoutVisualEntity & Node & {
|
|
10928
10958
|
__typename?: 'HelpLayoutParagraphAtomicElement';
|
|
10929
|
-
id: Scalars['ID'];
|
|
10930
|
-
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
10931
10959
|
config?: Maybe<HelpLayoutParagraphAtomicElementConfig>;
|
|
10932
10960
|
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
10961
|
+
id: Scalars['ID'];
|
|
10962
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
10933
10963
|
};
|
|
10934
10964
|
export type HelpLayoutParagraphAtomicElementConfig = {
|
|
10935
10965
|
__typename?: 'HelpLayoutParagraphAtomicElementConfig';
|
|
@@ -10941,8 +10971,8 @@ export type HelpLayoutParagraphConfigInput = {
|
|
|
10941
10971
|
};
|
|
10942
10972
|
export type HelpLayoutQueryApi = {
|
|
10943
10973
|
__typename?: 'HelpLayoutQueryApi';
|
|
10944
|
-
layout?: Maybe<HelpLayoutResult>;
|
|
10945
10974
|
elementTypes?: Maybe<Array<HelpLayoutElementType>>;
|
|
10975
|
+
layout?: Maybe<HelpLayoutResult>;
|
|
10946
10976
|
mediaConfig?: Maybe<HelpLayoutMediaConfig>;
|
|
10947
10977
|
};
|
|
10948
10978
|
export type HelpLayoutQueryApiLayoutArgs = {
|
|
@@ -10951,13 +10981,18 @@ export type HelpLayoutQueryApiLayoutArgs = {
|
|
|
10951
10981
|
export type HelpLayoutQueryApiMediaConfigArgs = {
|
|
10952
10982
|
parentAri: Scalars['ID'];
|
|
10953
10983
|
};
|
|
10984
|
+
export type HelpLayoutQueryErrorExtension = QueryErrorExtension & {
|
|
10985
|
+
__typename?: 'HelpLayoutQueryErrorExtension';
|
|
10986
|
+
errorType?: Maybe<Scalars['String']>;
|
|
10987
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
10988
|
+
};
|
|
10954
10989
|
export type HelpLayoutResult = HelpLayout | QueryError;
|
|
10955
10990
|
export type HelpLayoutSearchAtomicElement = HelpLayoutVisualEntity & Node & {
|
|
10956
10991
|
__typename?: 'HelpLayoutSearchAtomicElement';
|
|
10957
|
-
id: Scalars['ID'];
|
|
10958
|
-
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
10959
10992
|
config?: Maybe<HelpLayoutSearchAtomicElementConfig>;
|
|
10960
10993
|
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
10994
|
+
id: Scalars['ID'];
|
|
10995
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
10961
10996
|
};
|
|
10962
10997
|
export type HelpLayoutSearchAtomicElementConfig = {
|
|
10963
10998
|
__typename?: 'HelpLayoutSearchAtomicElementConfig';
|
|
@@ -10967,7 +11002,7 @@ export type HelpLayoutSearchConfigInput = {
|
|
|
10967
11002
|
placeHolderText: Scalars['String'];
|
|
10968
11003
|
visualConfig?: Maybe<HelpLayoutVisualConfigInput>;
|
|
10969
11004
|
};
|
|
10970
|
-
export type HelpLayoutSection =
|
|
11005
|
+
export type HelpLayoutSection = HelpLayoutVisualEntity & Node & {
|
|
10971
11006
|
__typename?: 'HelpLayoutSection';
|
|
10972
11007
|
id: Scalars['ID'];
|
|
10973
11008
|
subsections?: Maybe<Array<Maybe<HelpLayoutSubsection>>>;
|
|
@@ -10984,14 +11019,14 @@ export type HelpLayoutSectionEdge = {
|
|
|
10984
11019
|
node?: Maybe<HelpLayoutSection>;
|
|
10985
11020
|
};
|
|
10986
11021
|
export type HelpLayoutSectionInput = {
|
|
10987
|
-
visualConfig?: Maybe<HelpLayoutVisualConfigInput>;
|
|
10988
11022
|
subsections: Array<HelpLayoutSubsectionInput>;
|
|
11023
|
+
visualConfig?: Maybe<HelpLayoutVisualConfigInput>;
|
|
10989
11024
|
};
|
|
10990
|
-
export type HelpLayoutSubsection =
|
|
11025
|
+
export type HelpLayoutSubsection = HelpLayoutVisualEntity & Node & {
|
|
10991
11026
|
__typename?: 'HelpLayoutSubsection';
|
|
10992
|
-
id: Scalars['ID'];
|
|
10993
11027
|
config?: Maybe<HelpLayoutSubsectionConfig>;
|
|
10994
11028
|
elements?: Maybe<Array<Maybe<HelpLayoutElement>>>;
|
|
11029
|
+
id: Scalars['ID'];
|
|
10995
11030
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
10996
11031
|
};
|
|
10997
11032
|
export type HelpLayoutSubsectionConfig = {
|
|
@@ -11003,8 +11038,8 @@ export type HelpLayoutSubsectionConfigInput = {
|
|
|
11003
11038
|
};
|
|
11004
11039
|
export type HelpLayoutSubsectionInput = {
|
|
11005
11040
|
config: HelpLayoutSubsectionConfigInput;
|
|
11006
|
-
visualConfig?: Maybe<HelpLayoutVisualConfigInput>;
|
|
11007
11041
|
elements: Array<HelpLayoutElementInput>;
|
|
11042
|
+
visualConfig?: Maybe<HelpLayoutVisualConfigInput>;
|
|
11008
11043
|
};
|
|
11009
11044
|
export type HelpLayoutUpdateInput = {
|
|
11010
11045
|
layoutId: Scalars['ID'];
|
|
@@ -11012,24 +11047,24 @@ export type HelpLayoutUpdateInput = {
|
|
|
11012
11047
|
};
|
|
11013
11048
|
export type HelpLayoutUpdatePayload = Payload & {
|
|
11014
11049
|
__typename?: 'HelpLayoutUpdatePayload';
|
|
11015
|
-
success: Scalars['Boolean'];
|
|
11016
11050
|
errors?: Maybe<Array<MutationError>>;
|
|
11017
11051
|
layoutId?: Maybe<Scalars['ID']>;
|
|
11052
|
+
success: Scalars['Boolean'];
|
|
11018
11053
|
};
|
|
11019
11054
|
export declare enum HelpLayoutVerticalAlignment {
|
|
11020
|
-
|
|
11055
|
+
Bottom = "BOTTOM",
|
|
11021
11056
|
Middle = "MIDDLE",
|
|
11022
|
-
|
|
11057
|
+
Top = "TOP"
|
|
11023
11058
|
}
|
|
11024
11059
|
export type HelpLayoutVisualConfig = {
|
|
11025
11060
|
__typename?: 'HelpLayoutVisualConfig';
|
|
11026
|
-
backgroundImage?: Maybe<HelpLayoutBackgroundImage>;
|
|
11027
11061
|
alignment?: Maybe<HelpLayoutAlignmentSettings>;
|
|
11062
|
+
backgroundImage?: Maybe<HelpLayoutBackgroundImage>;
|
|
11028
11063
|
themeTemplateId?: Maybe<Scalars['String']>;
|
|
11029
11064
|
};
|
|
11030
11065
|
export type HelpLayoutVisualConfigInput = {
|
|
11031
|
-
backgroundImage?: Maybe<HelpLayoutBackgroundImageInput>;
|
|
11032
11066
|
alignment?: Maybe<HelpLayoutAlignmentSettingsInput>;
|
|
11067
|
+
backgroundImage?: Maybe<HelpLayoutBackgroundImageInput>;
|
|
11033
11068
|
themeTemplateId?: Maybe<Scalars['String']>;
|
|
11034
11069
|
};
|
|
11035
11070
|
export type HelpLayoutVisualEntity = {
|
|
@@ -11230,33 +11265,44 @@ export type InfluentsNotificationEntity = {
|
|
|
11230
11265
|
iconUrl?: Maybe<Scalars['String']>;
|
|
11231
11266
|
url?: Maybe<Scalars['String']>;
|
|
11232
11267
|
};
|
|
11233
|
-
export type
|
|
11268
|
+
export type InfluentsNotificationEntityModel = {
|
|
11269
|
+
__typename?: 'InfluentsNotificationEntityModel';
|
|
11270
|
+
objectId: Scalars['String'];
|
|
11271
|
+
containerId?: Maybe<Scalars['String']>;
|
|
11272
|
+
workspaceId?: Maybe<Scalars['String']>;
|
|
11273
|
+
cloudId?: Maybe<Scalars['String']>;
|
|
11274
|
+
};
|
|
11275
|
+
export type InfluentsNotificationFeedConnection = {
|
|
11276
|
+
__typename?: 'InfluentsNotificationFeedConnection';
|
|
11277
|
+
nodes: Array<InfluentsNotificationHeadItem>;
|
|
11278
|
+
pageInfo: InfluentsNotificationPageInfo;
|
|
11279
|
+
};
|
|
11280
|
+
export type InfluentsNotificationFilter = {
|
|
11234
11281
|
workspaceId?: Maybe<Scalars['String']>;
|
|
11235
11282
|
categoryFilter?: Maybe<InfluentsNotificationCategory>;
|
|
11236
11283
|
readStateFilter?: Maybe<InfluentsNotificationReadState>;
|
|
11237
11284
|
productFilter?: Maybe<Scalars['String']>;
|
|
11238
|
-
groupId?: Maybe<Scalars['String']>;
|
|
11239
11285
|
};
|
|
11240
|
-
export type
|
|
11241
|
-
__typename?: '
|
|
11242
|
-
nodes: Array<
|
|
11286
|
+
export type InfluentsNotificationGroupConnection = {
|
|
11287
|
+
__typename?: 'InfluentsNotificationGroupConnection';
|
|
11288
|
+
nodes: Array<InfluentsNotificationItem>;
|
|
11243
11289
|
pageInfo: InfluentsNotificationPageInfo;
|
|
11244
11290
|
};
|
|
11245
|
-
export type
|
|
11246
|
-
__typename?: '
|
|
11291
|
+
export type InfluentsNotificationHeadItem = {
|
|
11292
|
+
__typename?: 'InfluentsNotificationHeadItem';
|
|
11247
11293
|
groupId: Scalars['ID'];
|
|
11248
11294
|
groupSize: Scalars['Int'];
|
|
11295
|
+
readStates: Array<Maybe<Scalars['String']>>;
|
|
11296
|
+
additionalActors: Array<InfluentsNotificationActor>;
|
|
11297
|
+
additionalTypes: Array<Scalars['String']>;
|
|
11249
11298
|
headNotification: InfluentsNotificationItem;
|
|
11250
|
-
|
|
11251
|
-
};
|
|
11252
|
-
export type InfluentsNotificationGroupedItemChildItemsArgs = {
|
|
11253
|
-
first?: Maybe<Scalars['Int']>;
|
|
11254
|
-
after?: Maybe<Scalars['String']>;
|
|
11299
|
+
endCursor?: Maybe<Scalars['String']>;
|
|
11255
11300
|
};
|
|
11256
11301
|
export type InfluentsNotificationItem = {
|
|
11257
11302
|
__typename?: 'InfluentsNotificationItem';
|
|
11258
11303
|
notificationId: Scalars['ID'];
|
|
11259
11304
|
timestamp: Scalars['DateTime'];
|
|
11305
|
+
entityModel?: Maybe<InfluentsNotificationEntityModel>;
|
|
11260
11306
|
content: InfluentsNotificationContent;
|
|
11261
11307
|
readState: InfluentsNotificationReadState;
|
|
11262
11308
|
category: InfluentsNotificationCategory;
|
|
@@ -11272,6 +11318,7 @@ export type InfluentsNotificationMutation = {
|
|
|
11272
11318
|
markNotificationsByIdsAsRead?: Maybe<Scalars['String']>;
|
|
11273
11319
|
markNotificationsByIdsAsUnread?: Maybe<Scalars['String']>;
|
|
11274
11320
|
archiveNotifications?: Maybe<Scalars['String']>;
|
|
11321
|
+
clearUnseenCount?: Maybe<Scalars['String']>;
|
|
11275
11322
|
};
|
|
11276
11323
|
export type InfluentsNotificationMutationMarkNotificationsAsReadArgs = {
|
|
11277
11324
|
category?: Maybe<InfluentsNotificationCategory>;
|
|
@@ -11306,6 +11353,10 @@ export type InfluentsNotificationMutationMarkNotificationsByIdsAsUnreadArgs = {
|
|
|
11306
11353
|
export type InfluentsNotificationMutationArchiveNotificationsArgs = {
|
|
11307
11354
|
ids: Array<Scalars['String']>;
|
|
11308
11355
|
};
|
|
11356
|
+
export type InfluentsNotificationMutationClearUnseenCountArgs = {
|
|
11357
|
+
product?: Maybe<Scalars['String']>;
|
|
11358
|
+
workspaceId?: Maybe<Scalars['String']>;
|
|
11359
|
+
};
|
|
11309
11360
|
export type InfluentsNotificationPageInfo = {
|
|
11310
11361
|
__typename?: 'InfluentsNotificationPageInfo';
|
|
11311
11362
|
hasNextPage: Scalars['Boolean'];
|
|
@@ -11321,11 +11372,18 @@ export type InfluentsNotificationPath = {
|
|
|
11321
11372
|
};
|
|
11322
11373
|
export type InfluentsNotificationQuery = {
|
|
11323
11374
|
__typename?: 'InfluentsNotificationQuery';
|
|
11324
|
-
notificationFeed:
|
|
11375
|
+
notificationFeed: InfluentsNotificationFeedConnection;
|
|
11376
|
+
notificationGroup: InfluentsNotificationGroupConnection;
|
|
11325
11377
|
unseenNotificationCount: Scalars['Int'];
|
|
11326
11378
|
};
|
|
11327
11379
|
export type InfluentsNotificationQueryNotificationFeedArgs = {
|
|
11328
|
-
|
|
11380
|
+
filter?: Maybe<InfluentsNotificationFilter>;
|
|
11381
|
+
first?: Maybe<Scalars['Int']>;
|
|
11382
|
+
after?: Maybe<Scalars['String']>;
|
|
11383
|
+
};
|
|
11384
|
+
export type InfluentsNotificationQueryNotificationGroupArgs = {
|
|
11385
|
+
groupId: Scalars['String'];
|
|
11386
|
+
filter?: Maybe<InfluentsNotificationFilter>;
|
|
11329
11387
|
first?: Maybe<Scalars['Int']>;
|
|
11330
11388
|
after?: Maybe<Scalars['String']>;
|
|
11331
11389
|
};
|
|
@@ -13238,6 +13296,14 @@ export type JiraFieldNonEditableReason = {
|
|
|
13238
13296
|
__typename?: 'JiraFieldNonEditableReason';
|
|
13239
13297
|
message?: Maybe<Scalars['String']>;
|
|
13240
13298
|
};
|
|
13299
|
+
export type JiraFieldOptionIdsFilterInput = {
|
|
13300
|
+
optionIds: Array<Scalars['ID']>;
|
|
13301
|
+
operation: JiraFieldOptionIdsFilterOperation;
|
|
13302
|
+
};
|
|
13303
|
+
export declare enum JiraFieldOptionIdsFilterOperation {
|
|
13304
|
+
Allow = "ALLOW",
|
|
13305
|
+
Exclude = "EXCLUDE"
|
|
13306
|
+
}
|
|
13241
13307
|
export type JiraFieldType = {
|
|
13242
13308
|
__typename?: 'JiraFieldType';
|
|
13243
13309
|
name: Scalars['String'];
|
|
@@ -15270,6 +15336,7 @@ export type JiraMultipleSelectFieldSelectedOptionsArgs = {
|
|
|
15270
15336
|
};
|
|
15271
15337
|
export type JiraMultipleSelectFieldFieldOptionsArgs = {
|
|
15272
15338
|
searchBy?: Maybe<Scalars['String']>;
|
|
15339
|
+
filterById?: Maybe<JiraFieldOptionIdsFilterInput>;
|
|
15273
15340
|
first?: Maybe<Scalars['Int']>;
|
|
15274
15341
|
after?: Maybe<Scalars['String']>;
|
|
15275
15342
|
last?: Maybe<Scalars['Int']>;
|
|
@@ -20797,7 +20864,6 @@ export type Mutation = {
|
|
|
20797
20864
|
createPolarisStandardField?: Maybe<CreatePolarisStandardFieldPayload>;
|
|
20798
20865
|
createPolarisCalculatedField?: Maybe<CreatePolarisCalculatedFieldPayload>;
|
|
20799
20866
|
updatePolarisCalculatedField?: Maybe<UpdatePolarisCalculatedFieldPayload>;
|
|
20800
|
-
updatePolarisFieldDescription?: Maybe<UpdatePolarisFieldDescriptionPayload>;
|
|
20801
20867
|
updatePolarisField?: Maybe<UpdatePolarisFieldPayload>;
|
|
20802
20868
|
updatePolarisFieldEmoji?: Maybe<UpdatePolarisFieldEmojiPayload>;
|
|
20803
20869
|
deletePolarisField?: Maybe<DeletePolarisFieldPayload>;
|
|
@@ -20824,7 +20890,6 @@ export type Mutation = {
|
|
|
20824
20890
|
createPolarisInsightFromPlayContribution?: Maybe<CreatePolarisInsightPayload>;
|
|
20825
20891
|
configurePolarisRefresh?: Maybe<ConfigurePolarisRefreshPayload>;
|
|
20826
20892
|
applyPolarisProjectTemplate?: Maybe<ApplyPolarisProjectTemplatePayload>;
|
|
20827
|
-
setPolarisProjectOnboarded?: Maybe<SetPolarisProjectOnboardedPayload>;
|
|
20828
20893
|
setPolarisSelectedDeliveryProject?: Maybe<SetPolarisSelectedDeliveryProjectPayload>;
|
|
20829
20894
|
polarisAddReaction?: Maybe<PolarisAddReactionPayload>;
|
|
20830
20895
|
polarisDeleteReaction?: Maybe<PolarisDeleteReactionPayload>;
|
|
@@ -21047,9 +21112,6 @@ export type MutationCreatePolarisCalculatedFieldArgs = {
|
|
|
21047
21112
|
export type MutationUpdatePolarisCalculatedFieldArgs = {
|
|
21048
21113
|
input: UpdatePolarisCalculatedFieldInput;
|
|
21049
21114
|
};
|
|
21050
|
-
export type MutationUpdatePolarisFieldDescriptionArgs = {
|
|
21051
|
-
input: UpdatePolarisFieldDescriptionInput;
|
|
21052
|
-
};
|
|
21053
21115
|
export type MutationUpdatePolarisFieldArgs = {
|
|
21054
21116
|
input: UpdatePolarisFieldInput;
|
|
21055
21117
|
};
|
|
@@ -21136,9 +21198,6 @@ export type MutationConfigurePolarisRefreshArgs = {
|
|
|
21136
21198
|
export type MutationApplyPolarisProjectTemplateArgs = {
|
|
21137
21199
|
input: ApplyPolarisProjectTemplateInput;
|
|
21138
21200
|
};
|
|
21139
|
-
export type MutationSetPolarisProjectOnboardedArgs = {
|
|
21140
|
-
input: SetPolarisProjectOnboardedInput;
|
|
21141
|
-
};
|
|
21142
21201
|
export type MutationSetPolarisSelectedDeliveryProjectArgs = {
|
|
21143
21202
|
input: SetPolarisSelectedDeliveryProjectInput;
|
|
21144
21203
|
};
|
|
@@ -21550,6 +21609,7 @@ export type NlpSource = {
|
|
|
21550
21609
|
type: NlpSearchResultType;
|
|
21551
21610
|
lastModified?: Maybe<Scalars['String']>;
|
|
21552
21611
|
spaceName?: Maybe<Scalars['String']>;
|
|
21612
|
+
spaceUrl?: Maybe<Scalars['String']>;
|
|
21553
21613
|
};
|
|
21554
21614
|
export type Node = {
|
|
21555
21615
|
id: Scalars['ID'];
|
|
@@ -25368,15 +25428,6 @@ export type SetIssueMediaVisibilityOutput = MutationResponse & {
|
|
|
25368
25428
|
message: Scalars['String'];
|
|
25369
25429
|
clientMutationId?: Maybe<Scalars['ID']>;
|
|
25370
25430
|
};
|
|
25371
|
-
export type SetPolarisProjectOnboardedInput = {
|
|
25372
|
-
projectId: Scalars['ID'];
|
|
25373
|
-
value: Scalars['Boolean'];
|
|
25374
|
-
};
|
|
25375
|
-
export type SetPolarisProjectOnboardedPayload = Payload & {
|
|
25376
|
-
__typename?: 'SetPolarisProjectOnboardedPayload';
|
|
25377
|
-
success: Scalars['Boolean'];
|
|
25378
|
-
errors?: Maybe<Array<MutationError>>;
|
|
25379
|
-
};
|
|
25380
25431
|
export type SetPolarisSelectedDeliveryProjectInput = {
|
|
25381
25432
|
projectId: Scalars['ID'];
|
|
25382
25433
|
selectedDeliveryProjectId: Scalars['ID'];
|
|
@@ -25575,6 +25626,10 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
25575
25626
|
UserRevokedRole = "USER_REVOKED_ROLE",
|
|
25576
25627
|
VerifiedDomainVerification = "VERIFIED_DOMAIN_VERIFICATION"
|
|
25577
25628
|
}
|
|
25629
|
+
export type ShepherdAlertTitle = {
|
|
25630
|
+
__typename?: 'ShepherdAlertTitle';
|
|
25631
|
+
default: Scalars['String'];
|
|
25632
|
+
};
|
|
25578
25633
|
export type ShepherdAlertsConnection = {
|
|
25579
25634
|
__typename?: 'ShepherdAlertsConnection';
|
|
25580
25635
|
edges?: Maybe<Array<Maybe<ShepherdAlertEdge>>>;
|
|
@@ -25661,6 +25716,7 @@ export type ShepherdDetection = {
|
|
|
25661
25716
|
description?: Maybe<Scalars['JSON']>;
|
|
25662
25717
|
id: Scalars['ID'];
|
|
25663
25718
|
product: ShepherdAtlassianProduct;
|
|
25719
|
+
relatedAlertTypes?: Maybe<Array<Maybe<ShepherdRelatedAlertType>>>;
|
|
25664
25720
|
scanningInfo: ShepherdDetectionScanningInfo;
|
|
25665
25721
|
settings?: Maybe<Array<ShepherdDetectionSetting>>;
|
|
25666
25722
|
title: Scalars['String'];
|
|
@@ -25830,6 +25886,11 @@ export declare enum ShepherdRateThresholdValue {
|
|
|
25830
25886
|
Low = "LOW",
|
|
25831
25887
|
Medium = "MEDIUM"
|
|
25832
25888
|
}
|
|
25889
|
+
export type ShepherdRelatedAlertType = {
|
|
25890
|
+
__typename?: 'ShepherdRelatedAlertType';
|
|
25891
|
+
template?: Maybe<ShepherdAlertTemplateType>;
|
|
25892
|
+
title?: Maybe<ShepherdAlertTitle>;
|
|
25893
|
+
};
|
|
25833
25894
|
export type ShepherdResourceActivity = {
|
|
25834
25895
|
__typename?: 'ShepherdResourceActivity';
|
|
25835
25896
|
action: ShepherdActionType;
|
|
@@ -27106,6 +27167,7 @@ export type Toolchain = {
|
|
|
27106
27167
|
export type ToolchainContainersArgs = {
|
|
27107
27168
|
cloudId?: Maybe<Scalars['ID']>;
|
|
27108
27169
|
providerId?: Maybe<Scalars['String']>;
|
|
27170
|
+
providerType?: Maybe<ToolchainProviderType>;
|
|
27109
27171
|
workspaceId?: Maybe<Scalars['ID']>;
|
|
27110
27172
|
query?: Maybe<Scalars['String']>;
|
|
27111
27173
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -27114,6 +27176,7 @@ export type ToolchainContainersArgs = {
|
|
|
27114
27176
|
export type ToolchainWorkspacesArgs = {
|
|
27115
27177
|
cloudId: Scalars['ID'];
|
|
27116
27178
|
providerId: Scalars['String'];
|
|
27179
|
+
providerType?: Maybe<ToolchainProviderType>;
|
|
27117
27180
|
query?: Maybe<Scalars['String']>;
|
|
27118
27181
|
first?: Maybe<Scalars['Int']>;
|
|
27119
27182
|
after?: Maybe<Scalars['String']>;
|
|
@@ -27121,12 +27184,14 @@ export type ToolchainWorkspacesArgs = {
|
|
|
27121
27184
|
export type ToolchainSyncStatusArgs = {
|
|
27122
27185
|
cloudId: Scalars['ID'];
|
|
27123
27186
|
providerId: Scalars['String'];
|
|
27187
|
+
providerType?: Maybe<ToolchainProviderType>;
|
|
27124
27188
|
jiraProjectId: Scalars['ID'];
|
|
27125
27189
|
containerId: Scalars['ID'];
|
|
27126
27190
|
};
|
|
27127
27191
|
export type ToolchainCheck3LoArgs = {
|
|
27128
27192
|
cloudId: Scalars['ID'];
|
|
27129
27193
|
providerId: Scalars['String'];
|
|
27194
|
+
providerType?: Maybe<ToolchainProviderType>;
|
|
27130
27195
|
};
|
|
27131
27196
|
export type ToolchainAssociateContainerInput = {
|
|
27132
27197
|
jiraProjectId: Scalars['ID'];
|
|
@@ -27136,6 +27201,7 @@ export type ToolchainAssociateContainerInput = {
|
|
|
27136
27201
|
export type ToolchainAssociateContainersInput = {
|
|
27137
27202
|
cloudId: Scalars['ID'];
|
|
27138
27203
|
providerId: Scalars['ID'];
|
|
27204
|
+
providerType?: Maybe<ToolchainProviderType>;
|
|
27139
27205
|
associations: Array<ToolchainAssociateContainerInput>;
|
|
27140
27206
|
};
|
|
27141
27207
|
export type ToolchainAssociateContainersPayload = Payload & {
|
|
@@ -27147,6 +27213,7 @@ export type ToolchainAssociateContainersPayload = Payload & {
|
|
|
27147
27213
|
export type ToolchainAssociateEntitiesInput = {
|
|
27148
27214
|
cloudId: Scalars['ID'];
|
|
27149
27215
|
providerId: Scalars['ID'];
|
|
27216
|
+
providerType?: Maybe<ToolchainProviderType>;
|
|
27150
27217
|
associations: Array<ToolchainAssociateEntityInput>;
|
|
27151
27218
|
};
|
|
27152
27219
|
export type ToolchainAssociateEntitiesPayload = Payload & {
|
|
@@ -27190,6 +27257,7 @@ export type ToolchainContainerWorkspaceDetails = {
|
|
|
27190
27257
|
export type ToolchainCreateContainerInput = {
|
|
27191
27258
|
cloudId: Scalars['ID'];
|
|
27192
27259
|
providerId?: Maybe<Scalars['ID']>;
|
|
27260
|
+
providerType?: Maybe<ToolchainProviderType>;
|
|
27193
27261
|
workspaceId?: Maybe<Scalars['ID']>;
|
|
27194
27262
|
name: Scalars['String'];
|
|
27195
27263
|
type?: Maybe<Scalars['String']>;
|
|
@@ -27207,6 +27275,7 @@ export type ToolchainDisassociateContainerInput = {
|
|
|
27207
27275
|
export type ToolchainDisassociateContainersInput = {
|
|
27208
27276
|
cloudId: Scalars['ID'];
|
|
27209
27277
|
providerId: Scalars['ID'];
|
|
27278
|
+
providerType?: Maybe<ToolchainProviderType>;
|
|
27210
27279
|
disassociations: Array<ToolchainDisassociateContainerInput>;
|
|
27211
27280
|
};
|
|
27212
27281
|
export type ToolchainDisassociateContainersPayload = Payload & {
|
|
@@ -27217,6 +27286,7 @@ export type ToolchainDisassociateContainersPayload = Payload & {
|
|
|
27217
27286
|
export type ToolchainDisassociateEntitiesInput = {
|
|
27218
27287
|
cloudId: Scalars['ID'];
|
|
27219
27288
|
providerId: Scalars['ID'];
|
|
27289
|
+
providerType?: Maybe<ToolchainProviderType>;
|
|
27220
27290
|
disassociations: Array<ToolchainDisassociateEntityInput>;
|
|
27221
27291
|
};
|
|
27222
27292
|
export type ToolchainDisassociateEntitiesPayload = Payload & {
|
|
@@ -27251,6 +27321,16 @@ export type ToolchainMutationDisassociateEntitiesArgs = {
|
|
|
27251
27321
|
export type ToolchainMutationCreateContainerArgs = {
|
|
27252
27322
|
input: ToolchainCreateContainerInput;
|
|
27253
27323
|
};
|
|
27324
|
+
export declare enum ToolchainProviderType {
|
|
27325
|
+
DevInfo = "DEV_INFO",
|
|
27326
|
+
Build = "BUILD",
|
|
27327
|
+
Deployment = "DEPLOYMENT",
|
|
27328
|
+
FeatureFlag = "FEATURE_FLAG",
|
|
27329
|
+
RemoteLinks = "REMOTE_LINKS",
|
|
27330
|
+
Security = "SECURITY",
|
|
27331
|
+
Documentation = "DOCUMENTATION",
|
|
27332
|
+
Design = "DESIGN"
|
|
27333
|
+
}
|
|
27254
27334
|
export declare enum ToolchainSyncState {
|
|
27255
27335
|
InProgress = "IN_PROGRESS",
|
|
27256
27336
|
Complete = "COMPLETE",
|
|
@@ -28862,17 +28942,6 @@ export type UpdatePolarisDecorationPayload = Payload & {
|
|
|
28862
28942
|
errors?: Maybe<Array<MutationError>>;
|
|
28863
28943
|
node?: Maybe<PolarisDecoration>;
|
|
28864
28944
|
};
|
|
28865
|
-
export type UpdatePolarisFieldDescriptionInput = {
|
|
28866
|
-
field: Scalars['ID'];
|
|
28867
|
-
ideaType: Scalars['ID'];
|
|
28868
|
-
description: Scalars['String'];
|
|
28869
|
-
};
|
|
28870
|
-
export type UpdatePolarisFieldDescriptionPayload = Payload & {
|
|
28871
|
-
__typename?: 'UpdatePolarisFieldDescriptionPayload';
|
|
28872
|
-
success: Scalars['Boolean'];
|
|
28873
|
-
errors?: Maybe<Array<MutationError>>;
|
|
28874
|
-
node?: Maybe<PolarisIdeaField>;
|
|
28875
|
-
};
|
|
28876
28945
|
export type UpdatePolarisFieldEmojiInput = {
|
|
28877
28946
|
field: Scalars['ID'];
|
|
28878
28947
|
ideaType: Scalars['ID'];
|
|
@@ -29362,6 +29431,7 @@ export type VirtualAgentIntentTemplate = Node & {
|
|
|
29362
29431
|
type: VirtualAgentIntentTemplateType;
|
|
29363
29432
|
name: Scalars['String'];
|
|
29364
29433
|
description?: Maybe<Scalars['String']>;
|
|
29434
|
+
noOfQuestions?: Maybe<Scalars['Int']>;
|
|
29365
29435
|
questions?: Maybe<Array<Scalars['String']>>;
|
|
29366
29436
|
};
|
|
29367
29437
|
export type VirtualAgentIntentTemplateEdge = {
|