@forge/cli-shared 3.17.2-next.6 → 3.17.2-next.7

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.
@@ -6902,7 +6902,7 @@ export type CustomerServiceAttributeValue = Node & {
6902
6902
  name: Scalars['String'];
6903
6903
  type: CustomerServiceAttributeType;
6904
6904
  value?: Maybe<Scalars['String']>;
6905
- values?: Maybe<Array<Maybe<Scalars['String']>>>;
6905
+ values?: Maybe<Array<Scalars['String']>>;
6906
6906
  config?: Maybe<CustomerServiceAttributeConfigMetadata>;
6907
6907
  };
6908
6908
  export type CustomerServiceAttributes = {
@@ -6910,11 +6910,22 @@ export type CustomerServiceAttributes = {
6910
6910
  attributes?: Maybe<Array<CustomerServiceAttribute>>;
6911
6911
  };
6912
6912
  export type CustomerServiceAttributesQueryResult = CustomerServiceAttributes | QueryError;
6913
+ export type CustomerServiceContext = {
6914
+ type: CustomerServiceContextType;
6915
+ };
6916
+ export declare enum CustomerServiceContextType {
6917
+ Default = "DEFAULT",
6918
+ Issue = "ISSUE"
6919
+ }
6920
+ export type CustomerServiceFilterInput = {
6921
+ context: CustomerServiceContext;
6922
+ };
6913
6923
  export type CustomerServiceIndividual = Node & {
6914
6924
  __typename?: 'CustomerServiceIndividual';
6915
6925
  id: Scalars['ID'];
6916
6926
  name: Scalars['String'];
6917
- attributes: Array<Maybe<CustomerServiceAttributeValue>>;
6927
+ attributes: Array<CustomerServiceAttributeValue>;
6928
+ organizations: Array<CustomerServiceOrganization>;
6918
6929
  };
6919
6930
  export type CustomerServiceIndividualDeletePayload = Payload & {
6920
6931
  __typename?: 'CustomerServiceIndividualDeletePayload';
@@ -7014,7 +7025,7 @@ export type CustomerServiceOrganization = Node & {
7014
7025
  __typename?: 'CustomerServiceOrganization';
7015
7026
  id: Scalars['ID'];
7016
7027
  name: Scalars['String'];
7017
- attributes: Array<Maybe<CustomerServiceAttributeValue>>;
7028
+ attributes: Array<CustomerServiceAttributeValue>;
7018
7029
  };
7019
7030
  export type CustomerServiceOrganizationCreateInput = {
7020
7031
  id: Scalars['ID'];
@@ -7075,9 +7086,11 @@ export type CustomerServiceQueryApi = {
7075
7086
  };
7076
7087
  export type CustomerServiceQueryApiOrganizationByOrganizationIdArgs = {
7077
7088
  organizationId: Scalars['ID'];
7089
+ filter?: Maybe<CustomerServiceFilterInput>;
7078
7090
  };
7079
7091
  export type CustomerServiceQueryApiIndividualByAccountIdArgs = {
7080
7092
  accountId: Scalars['ID'];
7093
+ filter?: Maybe<CustomerServiceFilterInput>;
7081
7094
  };
7082
7095
  export type CustomerServiceStatusPayload = Payload & {
7083
7096
  __typename?: 'CustomerServiceStatusPayload';
@@ -7586,6 +7599,17 @@ export type DevOpsDeploymentProvider = DevOpsDataProvider & {
7586
7599
  appInstallationId?: Maybe<Scalars['ID']>;
7587
7600
  supportedActions?: Maybe<DevOpsSupportedActions>;
7588
7601
  };
7602
+ export type DevOpsDesign = Node & {
7603
+ __typename?: 'DevOpsDesign';
7604
+ id: Scalars['ID'];
7605
+ displayName?: Maybe<Scalars['String']>;
7606
+ lastUpdated?: Maybe<Scalars['DateTime']>;
7607
+ url?: Maybe<Scalars['URL']>;
7608
+ liveEmbedUrl?: Maybe<Scalars['URL']>;
7609
+ inspectUrl?: Maybe<Scalars['URL']>;
7610
+ status?: Maybe<DevOpsDesignStatus>;
7611
+ type?: Maybe<DevOpsDesignType>;
7612
+ };
7589
7613
  export type DevOpsDesignProvider = DevOpsDataProvider & {
7590
7614
  __typename?: 'DevOpsDesignProvider';
7591
7615
  id: Scalars['ID'];
@@ -7597,6 +7621,19 @@ export type DevOpsDesignProvider = DevOpsDataProvider & {
7597
7621
  supportedActions?: Maybe<DevOpsSupportedActions>;
7598
7622
  grant3LOUrl?: Maybe<Scalars['String']>;
7599
7623
  };
7624
+ export declare enum DevOpsDesignStatus {
7625
+ ReadyForDevelopment = "READY_FOR_DEVELOPMENT",
7626
+ Unknown = "UNKNOWN",
7627
+ None = "NONE"
7628
+ }
7629
+ export declare enum DevOpsDesignType {
7630
+ File = "FILE",
7631
+ Canvas = "CANVAS",
7632
+ Group = "GROUP",
7633
+ Node = "NODE",
7634
+ Prototype = "PROTOTYPE",
7635
+ Other = "OTHER"
7636
+ }
7600
7637
  export type DevOpsDevInfoProvider = DevOpsDataProvider & {
7601
7638
  __typename?: 'DevOpsDevInfoProvider';
7602
7639
  id: Scalars['ID'];
@@ -8820,6 +8857,7 @@ export type EcosystemQuery = {
8820
8857
  fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
8821
8858
  appsInstalledInContexts: CsAppsInstalledInContextsConnection;
8822
8859
  appEnvironmentsByOAuthClientIds?: Maybe<Array<AppEnvironment>>;
8860
+ appByOauthClient?: Maybe<App>;
8823
8861
  forgeMetrics?: Maybe<ForgeMetricsQuery>;
8824
8862
  forgeAuditLogs?: Maybe<ForgeAuditLogsQuery>;
8825
8863
  forgeContributors?: Maybe<ForgeAuditLogsContributorsActivityResult>;
@@ -8866,6 +8904,9 @@ export type EcosystemQueryAppsInstalledInContextsArgs = {
8866
8904
  export type EcosystemQueryAppEnvironmentsByOAuthClientIdsArgs = {
8867
8905
  oauthClientIds: Array<Scalars['ID']>;
8868
8906
  };
8907
+ export type EcosystemQueryAppByOauthClientArgs = {
8908
+ oauthClientId: Scalars['ID'];
8909
+ };
8869
8910
  export type EcosystemQueryForgeMetricsArgs = {
8870
8911
  appId: Scalars['ID'];
8871
8912
  };
@@ -10701,8 +10742,8 @@ export type HelpLayout = Node & {
10701
10742
  sections?: Maybe<HelpLayoutSectionConnection>;
10702
10743
  };
10703
10744
  export type HelpLayoutSectionsArgs = {
10704
- first?: Maybe<Scalars['Int']>;
10705
10745
  after?: Maybe<Scalars['String']>;
10746
+ first?: Maybe<Scalars['Int']>;
10706
10747
  };
10707
10748
  export type HelpLayoutAlignmentSettings = {
10708
10749
  __typename?: 'HelpLayoutAlignmentSettings';
@@ -10713,26 +10754,26 @@ export type HelpLayoutAlignmentSettingsInput = {
10713
10754
  horizontalAlignment?: Maybe<HelpLayoutHorizontalAlignment>;
10714
10755
  verticalAlignment?: Maybe<HelpLayoutVerticalAlignment>;
10715
10756
  };
10716
- export type HelpLayoutAtomicElement = HelpLayoutImageAtomicElement | HelpLayoutHeadingAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutSearchAtomicElement;
10757
+ export type HelpLayoutAtomicElement = HelpLayoutHeadingAtomicElement | HelpLayoutImageAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutSearchAtomicElement;
10717
10758
  export type HelpLayoutAtomicElementInput = {
10718
10759
  elementTypeKey: HelpLayoutAtomicElementKey;
10719
- imageConfigInput?: Maybe<HelpLayoutImageConfigInput>;
10720
10760
  headingConfigInput?: Maybe<HelpLayoutHeadingConfigInput>;
10721
- searchConfigInput?: Maybe<HelpLayoutSearchConfigInput>;
10761
+ imageConfigInput?: Maybe<HelpLayoutImageConfigInput>;
10722
10762
  paragraphConfigInput?: Maybe<HelpLayoutParagraphConfigInput>;
10763
+ searchConfigInput?: Maybe<HelpLayoutSearchConfigInput>;
10723
10764
  };
10724
10765
  export declare enum HelpLayoutAtomicElementKey {
10725
- Image = "IMAGE",
10726
10766
  Heading = "HEADING",
10767
+ Image = "IMAGE",
10727
10768
  Paragraph = "PARAGRAPH",
10728
10769
  Search = "SEARCH"
10729
10770
  }
10730
10771
  export type HelpLayoutAtomicElementType = HelpLayoutElementType & {
10731
10772
  __typename?: 'HelpLayoutAtomicElementType';
10732
- key?: Maybe<HelpLayoutAtomicElementKey>;
10773
+ category?: Maybe<HelpLayoutElementCategory>;
10733
10774
  displayName?: Maybe<Scalars['String']>;
10734
10775
  iconUrl?: Maybe<Scalars['String']>;
10735
- category?: Maybe<HelpLayoutElementCategory>;
10776
+ key?: Maybe<HelpLayoutAtomicElementKey>;
10736
10777
  mediaConfig?: Maybe<HelpLayoutMediaConfig>;
10737
10778
  };
10738
10779
  export type HelpLayoutAtomicElementTypeMediaConfigArgs = {
@@ -10740,80 +10781,80 @@ export type HelpLayoutAtomicElementTypeMediaConfigArgs = {
10740
10781
  };
10741
10782
  export type HelpLayoutBackgroundImage = {
10742
10783
  __typename?: 'HelpLayoutBackgroundImage';
10743
- url?: Maybe<Scalars['String']>;
10744
10784
  fileId?: Maybe<Scalars['String']>;
10785
+ url?: Maybe<Scalars['String']>;
10745
10786
  };
10746
10787
  export type HelpLayoutBackgroundImageInput = {
10747
- url?: Maybe<Scalars['String']>;
10748
10788
  fileId?: Maybe<Scalars['String']>;
10789
+ url?: Maybe<Scalars['String']>;
10749
10790
  };
10750
10791
  export type HelpLayoutCompositeElement = {
10751
- id: Scalars['ID'];
10752
- visualConfig?: Maybe<HelpLayoutVisualConfig>;
10753
10792
  children?: Maybe<Array<Maybe<HelpLayoutAtomicElement>>>;
10754
10793
  elementType?: Maybe<HelpLayoutCompositeElementType>;
10794
+ id: Scalars['ID'];
10795
+ visualConfig?: Maybe<HelpLayoutVisualConfig>;
10755
10796
  };
10756
10797
  export declare enum HelpLayoutCompositeElementKey {
10757
10798
  LinkCard = "LINK_CARD"
10758
10799
  }
10759
10800
  export type HelpLayoutCompositeElementType = HelpLayoutElementType & {
10760
10801
  __typename?: 'HelpLayoutCompositeElementType';
10761
- key?: Maybe<HelpLayoutCompositeElementKey>;
10802
+ allowedElements?: Maybe<Array<Maybe<HelpLayoutAtomicElementKey>>>;
10803
+ category?: Maybe<HelpLayoutElementCategory>;
10762
10804
  displayName?: Maybe<Scalars['String']>;
10763
10805
  iconUrl?: Maybe<Scalars['String']>;
10764
- category?: Maybe<HelpLayoutElementCategory>;
10765
- allowedElements?: Maybe<Array<Maybe<HelpLayoutAtomicElementKey>>>;
10806
+ key?: Maybe<HelpLayoutCompositeElementKey>;
10766
10807
  };
10767
10808
  export type HelpLayoutCreatePayload = Payload & {
10768
10809
  __typename?: 'HelpLayoutCreatePayload';
10769
- success: Scalars['Boolean'];
10770
10810
  errors?: Maybe<Array<MutationError>>;
10771
10811
  layoutId?: Maybe<Scalars['ID']>;
10812
+ success: Scalars['Boolean'];
10772
10813
  };
10773
10814
  export type HelpLayoutCreationInput = {
10774
10815
  parentAri: Scalars['ID'];
10775
10816
  sections: Array<HelpLayoutSectionInput>;
10776
10817
  };
10777
- export type HelpLayoutElement = HelpLayoutImageAtomicElement | HelpLayoutHeadingAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutSearchAtomicElement | HelpLayoutLinkCardCompositeElement;
10818
+ export type HelpLayoutElement = HelpLayoutHeadingAtomicElement | HelpLayoutImageAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutSearchAtomicElement | HelpLayoutLinkCardCompositeElement;
10778
10819
  export declare enum HelpLayoutElementCategory {
10779
10820
  Basic = "BASIC",
10780
10821
  Navigation = "NAVIGATION"
10781
10822
  }
10782
10823
  export type HelpLayoutElementInput = {
10783
10824
  elementTypeKey: HelpLayoutElementKey;
10784
- imageConfigInput?: Maybe<HelpLayoutImageConfigInput>;
10785
10825
  headingConfigInput?: Maybe<HelpLayoutHeadingConfigInput>;
10826
+ imageConfigInput?: Maybe<HelpLayoutImageConfigInput>;
10827
+ linkCardInput?: Maybe<HelpLayoutLinkCardInput>;
10786
10828
  paragraphConfigInput?: Maybe<HelpLayoutParagraphConfigInput>;
10787
10829
  searchConfigInput?: Maybe<HelpLayoutSearchConfigInput>;
10788
- linkCardInput?: Maybe<HelpLayoutLinkCardInput>;
10789
10830
  };
10790
10831
  export declare enum HelpLayoutElementKey {
10832
+ LinkCard = "LINK_CARD",
10791
10833
  Image = "IMAGE",
10792
10834
  Heading = "HEADING",
10793
10835
  Paragraph = "PARAGRAPH",
10794
- Search = "SEARCH",
10795
- LinkCard = "LINK_CARD"
10836
+ Search = "SEARCH"
10796
10837
  }
10797
10838
  export type HelpLayoutElementType = {
10839
+ category?: Maybe<HelpLayoutElementCategory>;
10798
10840
  displayName?: Maybe<Scalars['String']>;
10799
10841
  iconUrl?: Maybe<Scalars['String']>;
10800
- category?: Maybe<HelpLayoutElementCategory>;
10801
10842
  };
10802
10843
  export type HelpLayoutHeadingAtomicElement = HelpLayoutVisualEntity & Node & {
10803
10844
  __typename?: 'HelpLayoutHeadingAtomicElement';
10804
- id: Scalars['ID'];
10805
- visualConfig?: Maybe<HelpLayoutVisualConfig>;
10806
10845
  config?: Maybe<HelpLayoutHeadingAtomicElementConfig>;
10807
10846
  elementType?: Maybe<HelpLayoutAtomicElementType>;
10847
+ id: Scalars['ID'];
10848
+ visualConfig?: Maybe<HelpLayoutVisualConfig>;
10808
10849
  };
10809
10850
  export type HelpLayoutHeadingAtomicElementConfig = {
10810
10851
  __typename?: 'HelpLayoutHeadingAtomicElementConfig';
10811
- text?: Maybe<Scalars['String']>;
10812
10852
  headingType?: Maybe<HelpLayoutHeadingType>;
10853
+ text?: Maybe<Scalars['String']>;
10813
10854
  };
10814
10855
  export type HelpLayoutHeadingConfigInput = {
10815
- text: Scalars['String'];
10816
10856
  headingType: HelpLayoutHeadingType;
10857
+ text: Scalars['String'];
10817
10858
  visualConfig?: Maybe<HelpLayoutVisualConfigInput>;
10818
10859
  };
10819
10860
  export declare enum HelpLayoutHeadingType {
@@ -10825,67 +10866,67 @@ export declare enum HelpLayoutHeadingType {
10825
10866
  H6 = "h6"
10826
10867
  }
10827
10868
  export declare enum HelpLayoutHorizontalAlignment {
10828
- Left = "LEFT",
10829
10869
  Center = "CENTER",
10870
+ Left = "LEFT",
10830
10871
  Right = "RIGHT"
10831
10872
  }
10832
10873
  export type HelpLayoutImageAtomicElement = HelpLayoutVisualEntity & Node & {
10833
10874
  __typename?: 'HelpLayoutImageAtomicElement';
10834
- id: Scalars['ID'];
10835
- visualConfig?: Maybe<HelpLayoutVisualConfig>;
10836
10875
  config?: Maybe<HelpLayoutImageAtomicElementConfig>;
10837
10876
  data?: Maybe<HelpLayoutImageAtomicElementData>;
10838
10877
  elementType?: Maybe<HelpLayoutAtomicElementType>;
10878
+ id: Scalars['ID'];
10879
+ visualConfig?: Maybe<HelpLayoutVisualConfig>;
10839
10880
  };
10840
10881
  export type HelpLayoutImageAtomicElementConfig = {
10841
10882
  __typename?: 'HelpLayoutImageAtomicElementConfig';
10842
10883
  altText?: Maybe<Scalars['String']>;
10843
10884
  fileId?: Maybe<Scalars['String']>;
10844
- size?: Maybe<Scalars['String']>;
10845
10885
  fit?: Maybe<Scalars['String']>;
10846
10886
  position?: Maybe<Scalars['String']>;
10847
10887
  scale?: Maybe<Scalars['Int']>;
10888
+ size?: Maybe<Scalars['String']>;
10848
10889
  };
10849
10890
  export type HelpLayoutImageAtomicElementData = {
10850
10891
  __typename?: 'HelpLayoutImageAtomicElementData';
10851
10892
  imageUrl?: Maybe<Scalars['String']>;
10852
10893
  };
10853
10894
  export type HelpLayoutImageConfigInput = {
10854
- fileId?: Maybe<Scalars['String']>;
10855
- url?: Maybe<Scalars['String']>;
10856
10895
  altText?: Maybe<Scalars['String']>;
10857
- size?: Maybe<Scalars['String']>;
10896
+ fileId?: Maybe<Scalars['String']>;
10858
10897
  fit?: Maybe<Scalars['String']>;
10859
10898
  position?: Maybe<Scalars['String']>;
10860
10899
  scale?: Maybe<Scalars['Int']>;
10900
+ size?: Maybe<Scalars['String']>;
10901
+ url?: Maybe<Scalars['String']>;
10861
10902
  visualConfig?: Maybe<HelpLayoutVisualConfigInput>;
10862
10903
  };
10863
- export type HelpLayoutLinkCardCompositeElement = HelpLayoutVisualEntity & HelpLayoutCompositeElement & Node & {
10904
+ export type HelpLayoutLinkCardCompositeElement = HelpLayoutCompositeElement & HelpLayoutVisualEntity & Node & {
10864
10905
  __typename?: 'HelpLayoutLinkCardCompositeElement';
10865
- id: Scalars['ID'];
10866
- visualConfig?: Maybe<HelpLayoutVisualConfig>;
10867
- config?: Maybe<Scalars['String']>;
10868
10906
  children?: Maybe<Array<Maybe<HelpLayoutAtomicElement>>>;
10907
+ config?: Maybe<Scalars['String']>;
10869
10908
  elementType?: Maybe<HelpLayoutCompositeElementType>;
10909
+ id: Scalars['ID'];
10910
+ visualConfig?: Maybe<HelpLayoutVisualConfig>;
10870
10911
  };
10871
10912
  export type HelpLayoutLinkCardInput = {
10872
10913
  children: Array<HelpLayoutAtomicElementInput>;
10914
+ config: Scalars['String'];
10873
10915
  type: HelpLayoutCompositeElementKey;
10874
10916
  visualConfig?: Maybe<HelpLayoutVisualConfigInput>;
10875
- config: Scalars['String'];
10876
10917
  };
10877
10918
  export type HelpLayoutMediaConfig = {
10878
10919
  __typename?: 'HelpLayoutMediaConfig';
10879
- mediaUrl?: Maybe<Scalars['String']>;
10880
- mediaToken?: Maybe<Scalars['String']>;
10881
- mediaCollectionName?: Maybe<Scalars['String']>;
10882
10920
  asapIssuer?: Maybe<Scalars['String']>;
10921
+ mediaCollectionName?: Maybe<Scalars['String']>;
10922
+ mediaToken?: Maybe<Scalars['String']>;
10923
+ mediaUrl?: Maybe<Scalars['String']>;
10883
10924
  };
10884
10925
  export type HelpLayoutMutationApi = {
10885
10926
  __typename?: 'HelpLayoutMutationApi';
10886
10927
  createLayout: HelpLayoutCreatePayload;
10887
10928
  deleteLayout?: Maybe<Payload>;
10888
- updateLayout?: Maybe<HelpLayoutUpdatePayload>;
10929
+ updateLayout: HelpLayoutUpdatePayload;
10889
10930
  };
10890
10931
  export type HelpLayoutMutationApiCreateLayoutArgs = {
10891
10932
  input: HelpLayoutCreationInput;
@@ -10896,12 +10937,17 @@ export type HelpLayoutMutationApiDeleteLayoutArgs = {
10896
10937
  export type HelpLayoutMutationApiUpdateLayoutArgs = {
10897
10938
  input: HelpLayoutUpdateInput;
10898
10939
  };
10940
+ export type HelpLayoutMutationErrorExtension = MutationErrorExtension & {
10941
+ __typename?: 'HelpLayoutMutationErrorExtension';
10942
+ errorType?: Maybe<Scalars['String']>;
10943
+ statusCode?: Maybe<Scalars['Int']>;
10944
+ };
10899
10945
  export type HelpLayoutParagraphAtomicElement = HelpLayoutVisualEntity & Node & {
10900
10946
  __typename?: 'HelpLayoutParagraphAtomicElement';
10901
- id: Scalars['ID'];
10902
- visualConfig?: Maybe<HelpLayoutVisualConfig>;
10903
10947
  config?: Maybe<HelpLayoutParagraphAtomicElementConfig>;
10904
10948
  elementType?: Maybe<HelpLayoutAtomicElementType>;
10949
+ id: Scalars['ID'];
10950
+ visualConfig?: Maybe<HelpLayoutVisualConfig>;
10905
10951
  };
10906
10952
  export type HelpLayoutParagraphAtomicElementConfig = {
10907
10953
  __typename?: 'HelpLayoutParagraphAtomicElementConfig';
@@ -10913,8 +10959,8 @@ export type HelpLayoutParagraphConfigInput = {
10913
10959
  };
10914
10960
  export type HelpLayoutQueryApi = {
10915
10961
  __typename?: 'HelpLayoutQueryApi';
10916
- layout?: Maybe<HelpLayoutResult>;
10917
10962
  elementTypes?: Maybe<Array<HelpLayoutElementType>>;
10963
+ layout?: Maybe<HelpLayoutResult>;
10918
10964
  mediaConfig?: Maybe<HelpLayoutMediaConfig>;
10919
10965
  };
10920
10966
  export type HelpLayoutQueryApiLayoutArgs = {
@@ -10923,13 +10969,18 @@ export type HelpLayoutQueryApiLayoutArgs = {
10923
10969
  export type HelpLayoutQueryApiMediaConfigArgs = {
10924
10970
  parentAri: Scalars['ID'];
10925
10971
  };
10972
+ export type HelpLayoutQueryErrorExtension = QueryErrorExtension & {
10973
+ __typename?: 'HelpLayoutQueryErrorExtension';
10974
+ errorType?: Maybe<Scalars['String']>;
10975
+ statusCode?: Maybe<Scalars['Int']>;
10976
+ };
10926
10977
  export type HelpLayoutResult = HelpLayout | QueryError;
10927
10978
  export type HelpLayoutSearchAtomicElement = HelpLayoutVisualEntity & Node & {
10928
10979
  __typename?: 'HelpLayoutSearchAtomicElement';
10929
- id: Scalars['ID'];
10930
- visualConfig?: Maybe<HelpLayoutVisualConfig>;
10931
10980
  config?: Maybe<HelpLayoutSearchAtomicElementConfig>;
10932
10981
  elementType?: Maybe<HelpLayoutAtomicElementType>;
10982
+ id: Scalars['ID'];
10983
+ visualConfig?: Maybe<HelpLayoutVisualConfig>;
10933
10984
  };
10934
10985
  export type HelpLayoutSearchAtomicElementConfig = {
10935
10986
  __typename?: 'HelpLayoutSearchAtomicElementConfig';
@@ -10939,7 +10990,7 @@ export type HelpLayoutSearchConfigInput = {
10939
10990
  placeHolderText: Scalars['String'];
10940
10991
  visualConfig?: Maybe<HelpLayoutVisualConfigInput>;
10941
10992
  };
10942
- export type HelpLayoutSection = Node & HelpLayoutVisualEntity & {
10993
+ export type HelpLayoutSection = HelpLayoutVisualEntity & Node & {
10943
10994
  __typename?: 'HelpLayoutSection';
10944
10995
  id: Scalars['ID'];
10945
10996
  subsections?: Maybe<Array<Maybe<HelpLayoutSubsection>>>;
@@ -10956,14 +11007,14 @@ export type HelpLayoutSectionEdge = {
10956
11007
  node?: Maybe<HelpLayoutSection>;
10957
11008
  };
10958
11009
  export type HelpLayoutSectionInput = {
10959
- visualConfig?: Maybe<HelpLayoutVisualConfigInput>;
10960
11010
  subsections: Array<HelpLayoutSubsectionInput>;
11011
+ visualConfig?: Maybe<HelpLayoutVisualConfigInput>;
10961
11012
  };
10962
- export type HelpLayoutSubsection = Node & HelpLayoutVisualEntity & {
11013
+ export type HelpLayoutSubsection = HelpLayoutVisualEntity & Node & {
10963
11014
  __typename?: 'HelpLayoutSubsection';
10964
- id: Scalars['ID'];
10965
11015
  config?: Maybe<HelpLayoutSubsectionConfig>;
10966
11016
  elements?: Maybe<Array<Maybe<HelpLayoutElement>>>;
11017
+ id: Scalars['ID'];
10967
11018
  visualConfig?: Maybe<HelpLayoutVisualConfig>;
10968
11019
  };
10969
11020
  export type HelpLayoutSubsectionConfig = {
@@ -10975,8 +11026,8 @@ export type HelpLayoutSubsectionConfigInput = {
10975
11026
  };
10976
11027
  export type HelpLayoutSubsectionInput = {
10977
11028
  config: HelpLayoutSubsectionConfigInput;
10978
- visualConfig?: Maybe<HelpLayoutVisualConfigInput>;
10979
11029
  elements: Array<HelpLayoutElementInput>;
11030
+ visualConfig?: Maybe<HelpLayoutVisualConfigInput>;
10980
11031
  };
10981
11032
  export type HelpLayoutUpdateInput = {
10982
11033
  layoutId: Scalars['ID'];
@@ -10984,24 +11035,24 @@ export type HelpLayoutUpdateInput = {
10984
11035
  };
10985
11036
  export type HelpLayoutUpdatePayload = Payload & {
10986
11037
  __typename?: 'HelpLayoutUpdatePayload';
10987
- success: Scalars['Boolean'];
10988
11038
  errors?: Maybe<Array<MutationError>>;
10989
11039
  layoutId?: Maybe<Scalars['ID']>;
11040
+ success: Scalars['Boolean'];
10990
11041
  };
10991
11042
  export declare enum HelpLayoutVerticalAlignment {
10992
- Top = "TOP",
11043
+ Bottom = "BOTTOM",
10993
11044
  Middle = "MIDDLE",
10994
- Bottom = "BOTTOM"
11045
+ Top = "TOP"
10995
11046
  }
10996
11047
  export type HelpLayoutVisualConfig = {
10997
11048
  __typename?: 'HelpLayoutVisualConfig';
10998
- backgroundImage?: Maybe<HelpLayoutBackgroundImage>;
10999
11049
  alignment?: Maybe<HelpLayoutAlignmentSettings>;
11050
+ backgroundImage?: Maybe<HelpLayoutBackgroundImage>;
11000
11051
  themeTemplateId?: Maybe<Scalars['String']>;
11001
11052
  };
11002
11053
  export type HelpLayoutVisualConfigInput = {
11003
- backgroundImage?: Maybe<HelpLayoutBackgroundImageInput>;
11004
11054
  alignment?: Maybe<HelpLayoutAlignmentSettingsInput>;
11055
+ backgroundImage?: Maybe<HelpLayoutBackgroundImageInput>;
11005
11056
  themeTemplateId?: Maybe<Scalars['String']>;
11006
11057
  };
11007
11058
  export type HelpLayoutVisualEntity = {
@@ -11202,33 +11253,44 @@ export type InfluentsNotificationEntity = {
11202
11253
  iconUrl?: Maybe<Scalars['String']>;
11203
11254
  url?: Maybe<Scalars['String']>;
11204
11255
  };
11205
- export type InfluentsNotificationFeedFilter = {
11256
+ export type InfluentsNotificationEntityModel = {
11257
+ __typename?: 'InfluentsNotificationEntityModel';
11258
+ objectId: Scalars['String'];
11259
+ containerId?: Maybe<Scalars['String']>;
11260
+ workspaceId?: Maybe<Scalars['String']>;
11261
+ cloudId?: Maybe<Scalars['String']>;
11262
+ };
11263
+ export type InfluentsNotificationFeedConnection = {
11264
+ __typename?: 'InfluentsNotificationFeedConnection';
11265
+ nodes: Array<InfluentsNotificationHeadItem>;
11266
+ pageInfo: InfluentsNotificationPageInfo;
11267
+ };
11268
+ export type InfluentsNotificationFilter = {
11206
11269
  workspaceId?: Maybe<Scalars['String']>;
11207
11270
  categoryFilter?: Maybe<InfluentsNotificationCategory>;
11208
11271
  readStateFilter?: Maybe<InfluentsNotificationReadState>;
11209
11272
  productFilter?: Maybe<Scalars['String']>;
11210
- groupId?: Maybe<Scalars['String']>;
11211
11273
  };
11212
- export type InfluentsNotificationGroupedConnection = {
11213
- __typename?: 'InfluentsNotificationGroupedConnection';
11214
- nodes: Array<InfluentsNotificationGroupedItem>;
11274
+ export type InfluentsNotificationGroupConnection = {
11275
+ __typename?: 'InfluentsNotificationGroupConnection';
11276
+ nodes: Array<InfluentsNotificationItem>;
11215
11277
  pageInfo: InfluentsNotificationPageInfo;
11216
11278
  };
11217
- export type InfluentsNotificationGroupedItem = {
11218
- __typename?: 'InfluentsNotificationGroupedItem';
11279
+ export type InfluentsNotificationHeadItem = {
11280
+ __typename?: 'InfluentsNotificationHeadItem';
11219
11281
  groupId: Scalars['ID'];
11220
11282
  groupSize: Scalars['Int'];
11283
+ readStates: Array<Maybe<Scalars['String']>>;
11284
+ additionalActors: Array<InfluentsNotificationActor>;
11285
+ additionalTypes: Array<Scalars['String']>;
11221
11286
  headNotification: InfluentsNotificationItem;
11222
- childItems?: Maybe<Array<InfluentsNotificationItem>>;
11223
- };
11224
- export type InfluentsNotificationGroupedItemChildItemsArgs = {
11225
- first?: Maybe<Scalars['Int']>;
11226
- after?: Maybe<Scalars['String']>;
11287
+ endCursor?: Maybe<Scalars['String']>;
11227
11288
  };
11228
11289
  export type InfluentsNotificationItem = {
11229
11290
  __typename?: 'InfluentsNotificationItem';
11230
11291
  notificationId: Scalars['ID'];
11231
11292
  timestamp: Scalars['DateTime'];
11293
+ entityModel?: Maybe<InfluentsNotificationEntityModel>;
11232
11294
  content: InfluentsNotificationContent;
11233
11295
  readState: InfluentsNotificationReadState;
11234
11296
  category: InfluentsNotificationCategory;
@@ -11244,6 +11306,7 @@ export type InfluentsNotificationMutation = {
11244
11306
  markNotificationsByIdsAsRead?: Maybe<Scalars['String']>;
11245
11307
  markNotificationsByIdsAsUnread?: Maybe<Scalars['String']>;
11246
11308
  archiveNotifications?: Maybe<Scalars['String']>;
11309
+ clearUnseenCount?: Maybe<Scalars['String']>;
11247
11310
  };
11248
11311
  export type InfluentsNotificationMutationMarkNotificationsAsReadArgs = {
11249
11312
  category?: Maybe<InfluentsNotificationCategory>;
@@ -11278,6 +11341,10 @@ export type InfluentsNotificationMutationMarkNotificationsByIdsAsUnreadArgs = {
11278
11341
  export type InfluentsNotificationMutationArchiveNotificationsArgs = {
11279
11342
  ids: Array<Scalars['String']>;
11280
11343
  };
11344
+ export type InfluentsNotificationMutationClearUnseenCountArgs = {
11345
+ product?: Maybe<Scalars['String']>;
11346
+ workspaceId?: Maybe<Scalars['String']>;
11347
+ };
11281
11348
  export type InfluentsNotificationPageInfo = {
11282
11349
  __typename?: 'InfluentsNotificationPageInfo';
11283
11350
  hasNextPage: Scalars['Boolean'];
@@ -11293,11 +11360,18 @@ export type InfluentsNotificationPath = {
11293
11360
  };
11294
11361
  export type InfluentsNotificationQuery = {
11295
11362
  __typename?: 'InfluentsNotificationQuery';
11296
- notificationFeed: InfluentsNotificationGroupedConnection;
11363
+ notificationFeed: InfluentsNotificationFeedConnection;
11364
+ notificationGroup: InfluentsNotificationGroupConnection;
11297
11365
  unseenNotificationCount: Scalars['Int'];
11298
11366
  };
11299
11367
  export type InfluentsNotificationQueryNotificationFeedArgs = {
11300
- feedFilter?: Maybe<InfluentsNotificationFeedFilter>;
11368
+ filter?: Maybe<InfluentsNotificationFilter>;
11369
+ first?: Maybe<Scalars['Int']>;
11370
+ after?: Maybe<Scalars['String']>;
11371
+ };
11372
+ export type InfluentsNotificationQueryNotificationGroupArgs = {
11373
+ groupId: Scalars['String'];
11374
+ filter?: Maybe<InfluentsNotificationFilter>;
11301
11375
  first?: Maybe<Scalars['Int']>;
11302
11376
  after?: Maybe<Scalars['String']>;
11303
11377
  };
@@ -13210,6 +13284,14 @@ export type JiraFieldNonEditableReason = {
13210
13284
  __typename?: 'JiraFieldNonEditableReason';
13211
13285
  message?: Maybe<Scalars['String']>;
13212
13286
  };
13287
+ export type JiraFieldOptionIdsFilterInput = {
13288
+ optionIds: Array<Scalars['ID']>;
13289
+ operation: JiraFieldOptionIdsFilterOperation;
13290
+ };
13291
+ export declare enum JiraFieldOptionIdsFilterOperation {
13292
+ Allow = "ALLOW",
13293
+ Exclude = "EXCLUDE"
13294
+ }
13213
13295
  export type JiraFieldType = {
13214
13296
  __typename?: 'JiraFieldType';
13215
13297
  name: Scalars['String'];
@@ -13892,16 +13974,6 @@ export type JiraIssueEdge = {
13892
13974
  node?: Maybe<JiraIssue>;
13893
13975
  cursor: Scalars['String'];
13894
13976
  };
13895
- export type JiraIssueEmailBatchingWindowPayload = Payload & {
13896
- __typename?: 'JiraIssueEmailBatchingWindowPayload';
13897
- success: Scalars['Boolean'];
13898
- errors?: Maybe<Array<MutationError>>;
13899
- };
13900
- export type JiraIssueEmailMaxIdleTimePayload = Payload & {
13901
- __typename?: 'JiraIssueEmailMaxIdleTimePayload';
13902
- success: Scalars['Boolean'];
13903
- errors?: Maybe<Array<MutationError>>;
13904
- };
13905
13977
  export type JiraIssueField = {
13906
13978
  id: Scalars['ID'];
13907
13979
  fieldId: Scalars['String'];
@@ -15252,6 +15324,7 @@ export type JiraMultipleSelectFieldSelectedOptionsArgs = {
15252
15324
  };
15253
15325
  export type JiraMultipleSelectFieldFieldOptionsArgs = {
15254
15326
  searchBy?: Maybe<Scalars['String']>;
15327
+ filterById?: Maybe<JiraFieldOptionIdsFilterInput>;
15255
15328
  first?: Maybe<Scalars['Int']>;
15256
15329
  after?: Maybe<Scalars['String']>;
15257
15330
  last?: Maybe<Scalars['Int']>;
@@ -19474,8 +19547,6 @@ export type JiraUserPreferences = {
19474
19547
  jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
19475
19548
  issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
19476
19549
  isNaturalLanguageSpotlightTourEnabled?: Maybe<Scalars['Boolean']>;
19477
- issueEmailBatchingWindow?: Maybe<Scalars['String']>;
19478
- issueEmailMaxIdleTime?: Maybe<Scalars['String']>;
19479
19550
  };
19480
19551
  export type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
19481
19552
  projectKey: Scalars['String'];
@@ -19485,8 +19556,6 @@ export type JiraUserPreferencesMutation = {
19485
19556
  setJQLBuilderSearchMode?: Maybe<JiraJqlBuilderSearchModeMutationPayload>;
19486
19557
  setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
19487
19558
  setNaturalLanguageSpotlightTourEnabled?: Maybe<JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload>;
19488
- setIssueEmailBatchingWindow?: Maybe<JiraIssueEmailBatchingWindowPayload>;
19489
- setIssueEmailMaxIdleTime?: Maybe<JiraIssueEmailMaxIdleTimePayload>;
19490
19559
  };
19491
19560
  export type JiraUserPreferencesMutationSetJqlBuilderSearchModeArgs = {
19492
19561
  searchMode?: Maybe<JiraJqlBuilderSearchMode>;
@@ -19497,12 +19566,6 @@ export type JiraUserPreferencesMutationSetIssueNavigatorSearchLayoutArgs = {
19497
19566
  export type JiraUserPreferencesMutationSetNaturalLanguageSpotlightTourEnabledArgs = {
19498
19567
  isEnabled: Scalars['Boolean'];
19499
19568
  };
19500
- export type JiraUserPreferencesMutationSetIssueEmailBatchingWindowArgs = {
19501
- batchWindow: Scalars['String'];
19502
- };
19503
- export type JiraUserPreferencesMutationSetIssueEmailMaxIdleTimeArgs = {
19504
- maxIdleTime: Scalars['String'];
19505
- };
19506
19569
  export type JiraUserSegmentation = {
19507
19570
  __typename?: 'JiraUserSegmentation';
19508
19571
  role?: Maybe<Scalars['String']>;
@@ -21542,6 +21605,7 @@ export type NlpSource = {
21542
21605
  type: NlpSearchResultType;
21543
21606
  lastModified?: Maybe<Scalars['String']>;
21544
21607
  spaceName?: Maybe<Scalars['String']>;
21608
+ spaceUrl?: Maybe<Scalars['String']>;
21545
21609
  };
21546
21610
  export type Node = {
21547
21611
  id: Scalars['ID'];
@@ -27136,7 +27200,23 @@ export type ToolchainAssociateContainersPayload = Payload & {
27136
27200
  errors?: Maybe<Array<MutationError>>;
27137
27201
  containers?: Maybe<Array<ToolchainAssociatedContainer>>;
27138
27202
  };
27203
+ export type ToolchainAssociateEntitiesInput = {
27204
+ cloudId: Scalars['ID'];
27205
+ providerId: Scalars['ID'];
27206
+ associations: Array<ToolchainAssociateEntityInput>;
27207
+ };
27208
+ export type ToolchainAssociateEntitiesPayload = Payload & {
27209
+ __typename?: 'ToolchainAssociateEntitiesPayload';
27210
+ success: Scalars['Boolean'];
27211
+ errors?: Maybe<Array<MutationError>>;
27212
+ entities?: Maybe<Array<ToolchainAssociatedEntity>>;
27213
+ };
27214
+ export type ToolchainAssociateEntityInput = {
27215
+ fromId: Scalars['ID'];
27216
+ toEntityUrl: Scalars['URL'];
27217
+ };
27139
27218
  export type ToolchainAssociatedContainer = DevOpsDocument | DevOpsRepository;
27219
+ export type ToolchainAssociatedEntity = DevOpsDesign;
27140
27220
  export type ToolchainCheck3Lo = {
27141
27221
  __typename?: 'ToolchainCheck3LO';
27142
27222
  authorized: Scalars['Boolean'];
@@ -27190,10 +27270,26 @@ export type ToolchainDisassociateContainersPayload = Payload & {
27190
27270
  success: Scalars['Boolean'];
27191
27271
  errors?: Maybe<Array<MutationError>>;
27192
27272
  };
27273
+ export type ToolchainDisassociateEntitiesInput = {
27274
+ cloudId: Scalars['ID'];
27275
+ providerId: Scalars['ID'];
27276
+ disassociations: Array<ToolchainDisassociateEntityInput>;
27277
+ };
27278
+ export type ToolchainDisassociateEntitiesPayload = Payload & {
27279
+ __typename?: 'ToolchainDisassociateEntitiesPayload';
27280
+ success: Scalars['Boolean'];
27281
+ errors?: Maybe<Array<MutationError>>;
27282
+ };
27283
+ export type ToolchainDisassociateEntityInput = {
27284
+ fromId: Scalars['ID'];
27285
+ toEntityId: Scalars['ID'];
27286
+ };
27193
27287
  export type ToolchainMutation = {
27194
27288
  __typename?: 'ToolchainMutation';
27195
27289
  associateContainers?: Maybe<ToolchainAssociateContainersPayload>;
27196
27290
  disassociateContainers?: Maybe<ToolchainDisassociateContainersPayload>;
27291
+ associateEntities?: Maybe<ToolchainAssociateEntitiesPayload>;
27292
+ disassociateEntities?: Maybe<ToolchainDisassociateEntitiesPayload>;
27197
27293
  createContainer?: Maybe<ToolchainCreateContainerPayload>;
27198
27294
  };
27199
27295
  export type ToolchainMutationAssociateContainersArgs = {
@@ -27202,6 +27298,12 @@ export type ToolchainMutationAssociateContainersArgs = {
27202
27298
  export type ToolchainMutationDisassociateContainersArgs = {
27203
27299
  input: ToolchainDisassociateContainersInput;
27204
27300
  };
27301
+ export type ToolchainMutationAssociateEntitiesArgs = {
27302
+ input: ToolchainAssociateEntitiesInput;
27303
+ };
27304
+ export type ToolchainMutationDisassociateEntitiesArgs = {
27305
+ input: ToolchainDisassociateEntitiesInput;
27306
+ };
27205
27307
  export type ToolchainMutationCreateContainerArgs = {
27206
27308
  input: ToolchainCreateContainerInput;
27207
27309
  };
@@ -28186,6 +28288,7 @@ export type TrelloMutationApi = {
28186
28288
  removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
28187
28289
  unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
28188
28290
  unwatchCard?: Maybe<TrelloWatchCardPayload>;
28291
+ updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
28189
28292
  watchCard?: Maybe<TrelloWatchCardPayload>;
28190
28293
  };
28191
28294
  export type TrelloMutationApiAddHelloArgs = {
@@ -28209,6 +28312,9 @@ export type TrelloMutationApiUnarchiveCardArgs = {
28209
28312
  export type TrelloMutationApiUnwatchCardArgs = {
28210
28313
  input: TrelloWatchCardInput;
28211
28314
  };
28315
+ export type TrelloMutationApiUpdateCardNameArgs = {
28316
+ input: TrelloUpdateCardNameInput;
28317
+ };
28212
28318
  export type TrelloMutationApiWatchCardArgs = {
28213
28319
  input: TrelloWatchCardInput;
28214
28320
  };
@@ -28411,6 +28517,16 @@ export type TrelloUnarchiveCardPayload = Payload & {
28411
28517
  errors?: Maybe<Array<MutationError>>;
28412
28518
  success: Scalars['Boolean'];
28413
28519
  };
28520
+ export type TrelloUpdateCardNameInput = {
28521
+ cardId: Scalars['ID'];
28522
+ name?: Maybe<Scalars['String']>;
28523
+ };
28524
+ export type TrelloUpdateCardNamePayload = Payload & {
28525
+ __typename?: 'TrelloUpdateCardNamePayload';
28526
+ card?: Maybe<TrelloCard>;
28527
+ errors?: Maybe<Array<MutationError>>;
28528
+ success: Scalars['Boolean'];
28529
+ };
28414
28530
  export type TrelloUploadedBackground = {
28415
28531
  __typename?: 'TrelloUploadedBackground';
28416
28532
  objectId: Scalars['ID'];