@forge/cli-shared 8.15.0-next.1-experimental-919607a → 8.15.0-next.3
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 +10 -6
- package/out/graphql/graphql-types.d.ts +535 -18
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +75 -32
- package/package.json +2 -2
|
@@ -5752,6 +5752,10 @@ export declare type ArjHierarchyConfigurationLevel = {
|
|
|
5752
5752
|
issueTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
5753
5753
|
title: Scalars['String']['output'];
|
|
5754
5754
|
};
|
|
5755
|
+
export declare type AssetsAttributeOnObject = {
|
|
5756
|
+
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
5757
|
+
id: Scalars['ID']['output'];
|
|
5758
|
+
};
|
|
5755
5759
|
export declare type AssetsAvatar = {
|
|
5756
5760
|
__typename?: 'AssetsAvatar';
|
|
5757
5761
|
url16?: Maybe<Scalars['String']['output']>;
|
|
@@ -5760,6 +5764,17 @@ export declare type AssetsAvatar = {
|
|
|
5760
5764
|
url144?: Maybe<Scalars['String']['output']>;
|
|
5761
5765
|
url288?: Maybe<Scalars['String']['output']>;
|
|
5762
5766
|
};
|
|
5767
|
+
export declare type AssetsBooleanAttributeOnObject = AssetsAttributeOnObject & {
|
|
5768
|
+
__typename?: 'AssetsBooleanAttributeOnObject';
|
|
5769
|
+
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
5770
|
+
id: Scalars['ID']['output'];
|
|
5771
|
+
values: Array<AssetsBooleanAttributeValue>;
|
|
5772
|
+
};
|
|
5773
|
+
export declare type AssetsBooleanAttributeValue = {
|
|
5774
|
+
__typename?: 'AssetsBooleanAttributeValue';
|
|
5775
|
+
displayValue: Scalars['String']['output'];
|
|
5776
|
+
value?: Maybe<Scalars['Boolean']['output']>;
|
|
5777
|
+
};
|
|
5763
5778
|
export declare type AssetsDmAdapter = {
|
|
5764
5779
|
__typename?: 'AssetsDMAdapter';
|
|
5765
5780
|
dataSourceType?: Maybe<Scalars['String']['output']>;
|
|
@@ -6437,6 +6452,7 @@ export declare type AssetsDmDataSourceFormFieldsQualysReportsArgs = {
|
|
|
6437
6452
|
export declare type AssetsDmDataSourceHeaderDetails = {
|
|
6438
6453
|
__typename?: 'AssetsDMDataSourceHeaderDetails';
|
|
6439
6454
|
dataSourceName: Scalars['String']['output'];
|
|
6455
|
+
objectClassId?: Maybe<Scalars['ID']['output']>;
|
|
6440
6456
|
objectClassName: Scalars['String']['output'];
|
|
6441
6457
|
};
|
|
6442
6458
|
export declare type AssetsDmDataSourceInfo = {
|
|
@@ -7758,18 +7774,100 @@ export declare type AssetsDmUpdateDefaultCleansingRuleResponse = {
|
|
|
7758
7774
|
isSuccessful: Scalars['Boolean']['output'];
|
|
7759
7775
|
message?: Maybe<Scalars['String']['output']>;
|
|
7760
7776
|
};
|
|
7777
|
+
export declare type AssetsDateAttributeOnObject = AssetsAttributeOnObject & {
|
|
7778
|
+
__typename?: 'AssetsDateAttributeOnObject';
|
|
7779
|
+
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
7780
|
+
id: Scalars['ID']['output'];
|
|
7781
|
+
values: Array<AssetsDateAttributeValue>;
|
|
7782
|
+
};
|
|
7783
|
+
export declare type AssetsDateAttributeValue = {
|
|
7784
|
+
__typename?: 'AssetsDateAttributeValue';
|
|
7785
|
+
displayValue: Scalars['String']['output'];
|
|
7786
|
+
};
|
|
7787
|
+
export declare type AssetsDatetimeAttributeOnObject = AssetsAttributeOnObject & {
|
|
7788
|
+
__typename?: 'AssetsDatetimeAttributeOnObject';
|
|
7789
|
+
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
7790
|
+
id: Scalars['ID']['output'];
|
|
7791
|
+
values: Array<AssetsDatetimeAttributeValue>;
|
|
7792
|
+
};
|
|
7793
|
+
export declare type AssetsDatetimeAttributeValue = {
|
|
7794
|
+
__typename?: 'AssetsDatetimeAttributeValue';
|
|
7795
|
+
displayValue: Scalars['String']['output'];
|
|
7796
|
+
value?: Maybe<Scalars['DateTime']['output']>;
|
|
7797
|
+
};
|
|
7798
|
+
export declare type AssetsEmailAttributeOnObject = AssetsAttributeOnObject & {
|
|
7799
|
+
__typename?: 'AssetsEmailAttributeOnObject';
|
|
7800
|
+
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
7801
|
+
id: Scalars['ID']['output'];
|
|
7802
|
+
values: Array<AssetsEmailAttributeValue>;
|
|
7803
|
+
};
|
|
7804
|
+
export declare type AssetsEmailAttributeValue = {
|
|
7805
|
+
__typename?: 'AssetsEmailAttributeValue';
|
|
7806
|
+
displayValue: Scalars['String']['output'];
|
|
7807
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
7808
|
+
};
|
|
7809
|
+
export declare type AssetsFloatAttributeOnObject = AssetsAttributeOnObject & {
|
|
7810
|
+
__typename?: 'AssetsFloatAttributeOnObject';
|
|
7811
|
+
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
7812
|
+
id: Scalars['ID']['output'];
|
|
7813
|
+
values: Array<AssetsFloatAttributeValue>;
|
|
7814
|
+
};
|
|
7815
|
+
export declare type AssetsFloatAttributeValue = {
|
|
7816
|
+
__typename?: 'AssetsFloatAttributeValue';
|
|
7817
|
+
displayValue: Scalars['String']['output'];
|
|
7818
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
7819
|
+
};
|
|
7820
|
+
export declare type AssetsGroupAttributeOnObject = AssetsAttributeOnObject & {
|
|
7821
|
+
__typename?: 'AssetsGroupAttributeOnObject';
|
|
7822
|
+
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
7823
|
+
id: Scalars['ID']['output'];
|
|
7824
|
+
values: Array<AssetsGroupAttributeValue>;
|
|
7825
|
+
};
|
|
7826
|
+
export declare type AssetsGroupAttributeValue = {
|
|
7827
|
+
__typename?: 'AssetsGroupAttributeValue';
|
|
7828
|
+
displayValue: Scalars['String']['output'];
|
|
7829
|
+
value?: Maybe<AssetsGroupValueData>;
|
|
7830
|
+
};
|
|
7831
|
+
export declare type AssetsGroupValueData = {
|
|
7832
|
+
__typename?: 'AssetsGroupValueData';
|
|
7833
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
7834
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7835
|
+
};
|
|
7836
|
+
export declare type AssetsIpAddressAttributeOnObject = AssetsAttributeOnObject & {
|
|
7837
|
+
__typename?: 'AssetsIPAddressAttributeOnObject';
|
|
7838
|
+
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
7839
|
+
id: Scalars['ID']['output'];
|
|
7840
|
+
values: Array<AssetsIpAddressAttributeValue>;
|
|
7841
|
+
};
|
|
7842
|
+
export declare type AssetsIpAddressAttributeValue = {
|
|
7843
|
+
__typename?: 'AssetsIPAddressAttributeValue';
|
|
7844
|
+
displayValue: Scalars['String']['output'];
|
|
7845
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
7846
|
+
};
|
|
7761
7847
|
export declare type AssetsIcon = {
|
|
7762
7848
|
__typename?: 'AssetsIcon';
|
|
7763
7849
|
id?: Maybe<Scalars['String']['output']>;
|
|
7764
7850
|
url16?: Maybe<Scalars['String']['output']>;
|
|
7765
7851
|
url48?: Maybe<Scalars['String']['output']>;
|
|
7766
7852
|
};
|
|
7853
|
+
export declare type AssetsIntegerAttributeOnObject = AssetsAttributeOnObject & {
|
|
7854
|
+
__typename?: 'AssetsIntegerAttributeOnObject';
|
|
7855
|
+
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
7856
|
+
id: Scalars['ID']['output'];
|
|
7857
|
+
values: Array<AssetsIntegerAttributeValue>;
|
|
7858
|
+
};
|
|
7859
|
+
export declare type AssetsIntegerAttributeValue = {
|
|
7860
|
+
__typename?: 'AssetsIntegerAttributeValue';
|
|
7861
|
+
displayValue: Scalars['String']['output'];
|
|
7862
|
+
value?: Maybe<Scalars['Int']['output']>;
|
|
7863
|
+
};
|
|
7767
7864
|
export declare type AssetsLinks = {
|
|
7768
7865
|
__typename?: 'AssetsLinks';
|
|
7769
7866
|
web?: Maybe<Scalars['String']['output']>;
|
|
7770
7867
|
};
|
|
7771
|
-
export declare type AssetsObject = Node & {
|
|
7868
|
+
export declare type AssetsObject = AssetsObjectNode & Node & {
|
|
7772
7869
|
__typename?: 'AssetsObject';
|
|
7870
|
+
attributes?: Maybe<Array<Maybe<AssetsAttributeOnObject>>>;
|
|
7773
7871
|
avatar?: Maybe<AssetsAvatar>;
|
|
7774
7872
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
7775
7873
|
displayTypename?: Maybe<Scalars['String']['output']>;
|
|
@@ -7781,6 +7879,48 @@ export declare type AssetsObject = Node & {
|
|
|
7781
7879
|
sequentialId?: Maybe<Scalars['String']['output']>;
|
|
7782
7880
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
7783
7881
|
};
|
|
7882
|
+
export declare type AssetsObjectAttributesArgs = {
|
|
7883
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
7884
|
+
};
|
|
7885
|
+
export declare type AssetsObjectAqlResult = {
|
|
7886
|
+
__typename?: 'AssetsObjectAQLResult';
|
|
7887
|
+
items: Array<AssetsObjectNode>;
|
|
7888
|
+
limit?: Maybe<Scalars['Int']['output']>;
|
|
7889
|
+
offset?: Maybe<Scalars['Int']['output']>;
|
|
7890
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
7891
|
+
};
|
|
7892
|
+
export declare type AssetsObjectAttribute = AssetsObjectTypeAttribute & {
|
|
7893
|
+
__typename?: 'AssetsObjectAttribute';
|
|
7894
|
+
id: Scalars['ID']['output'];
|
|
7895
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7896
|
+
qlQuery?: Maybe<Scalars['String']['output']>;
|
|
7897
|
+
referenceObjectType?: Maybe<AssetsObjectType>;
|
|
7898
|
+
};
|
|
7899
|
+
export declare type AssetsObjectNode = {
|
|
7900
|
+
attributes?: Maybe<Array<Maybe<AssetsAttributeOnObject>>>;
|
|
7901
|
+
avatar?: Maybe<AssetsAvatar>;
|
|
7902
|
+
created?: Maybe<Scalars['DateTime']['output']>;
|
|
7903
|
+
id: Scalars['ID']['output'];
|
|
7904
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
7905
|
+
links?: Maybe<AssetsLinks>;
|
|
7906
|
+
objectKey?: Maybe<Scalars['String']['output']>;
|
|
7907
|
+
objectType?: Maybe<AssetsObjectType>;
|
|
7908
|
+
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
7909
|
+
};
|
|
7910
|
+
export declare type AssetsObjectNodeAttributesArgs = {
|
|
7911
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
7912
|
+
};
|
|
7913
|
+
export declare type AssetsObjectReferenceAttributeOnObject = AssetsAttributeOnObject & {
|
|
7914
|
+
__typename?: 'AssetsObjectReferenceAttributeOnObject';
|
|
7915
|
+
attribute?: Maybe<AssetsObjectAttribute>;
|
|
7916
|
+
id: Scalars['ID']['output'];
|
|
7917
|
+
values: Array<AssetsObjectReferenceAttributeValue>;
|
|
7918
|
+
};
|
|
7919
|
+
export declare type AssetsObjectReferenceAttributeValue = {
|
|
7920
|
+
__typename?: 'AssetsObjectReferenceAttributeValue';
|
|
7921
|
+
displayValue: Scalars['String']['output'];
|
|
7922
|
+
value?: Maybe<AssetsObjectType>;
|
|
7923
|
+
};
|
|
7784
7924
|
export declare type AssetsObjectType = Node & {
|
|
7785
7925
|
__typename?: 'AssetsObjectType';
|
|
7786
7926
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -7793,6 +7933,10 @@ export declare type AssetsObjectType = Node & {
|
|
|
7793
7933
|
sequentialId?: Maybe<Scalars['String']['output']>;
|
|
7794
7934
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
7795
7935
|
};
|
|
7936
|
+
export declare type AssetsObjectTypeAttribute = {
|
|
7937
|
+
id: Scalars['ID']['output'];
|
|
7938
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7939
|
+
};
|
|
7796
7940
|
export declare type AssetsSchema = Node & {
|
|
7797
7941
|
__typename?: 'AssetsSchema';
|
|
7798
7942
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -7804,6 +7948,148 @@ export declare type AssetsSchema = Node & {
|
|
|
7804
7948
|
sequentialId?: Maybe<Scalars['String']['output']>;
|
|
7805
7949
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
7806
7950
|
};
|
|
7951
|
+
export declare type AssetsSelectAttribute = AssetsObjectTypeAttribute & {
|
|
7952
|
+
__typename?: 'AssetsSelectAttribute';
|
|
7953
|
+
id: Scalars['ID']['output'];
|
|
7954
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7955
|
+
options?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
7956
|
+
};
|
|
7957
|
+
export declare type AssetsSelectAttributeOnObject = AssetsAttributeOnObject & {
|
|
7958
|
+
__typename?: 'AssetsSelectAttributeOnObject';
|
|
7959
|
+
attribute?: Maybe<AssetsSelectAttribute>;
|
|
7960
|
+
id: Scalars['ID']['output'];
|
|
7961
|
+
values: Array<AssetsSelectAttributeValue>;
|
|
7962
|
+
};
|
|
7963
|
+
export declare type AssetsSelectAttributeValue = {
|
|
7964
|
+
__typename?: 'AssetsSelectAttributeValue';
|
|
7965
|
+
displayValue: Scalars['String']['output'];
|
|
7966
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
7967
|
+
};
|
|
7968
|
+
export declare type AssetsServiceObject = AssetsObjectNode & {
|
|
7969
|
+
__typename?: 'AssetsServiceObject';
|
|
7970
|
+
alertCount?: Maybe<Scalars['Int']['output']>;
|
|
7971
|
+
attributes?: Maybe<Array<Maybe<AssetsAttributeOnObject>>>;
|
|
7972
|
+
avatar?: Maybe<AssetsAvatar>;
|
|
7973
|
+
created?: Maybe<Scalars['DateTime']['output']>;
|
|
7974
|
+
id: Scalars['ID']['output'];
|
|
7975
|
+
inboundDependencyCount?: Maybe<Scalars['Int']['output']>;
|
|
7976
|
+
incidentCount?: Maybe<Scalars['Int']['output']>;
|
|
7977
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
7978
|
+
legacyId?: Maybe<Scalars['String']['output']>;
|
|
7979
|
+
links?: Maybe<AssetsLinks>;
|
|
7980
|
+
objectKey?: Maybe<Scalars['String']['output']>;
|
|
7981
|
+
objectType?: Maybe<AssetsObjectType>;
|
|
7982
|
+
outboundDependencyCount?: Maybe<Scalars['Int']['output']>;
|
|
7983
|
+
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
7984
|
+
};
|
|
7985
|
+
export declare type AssetsServiceObjectAttributesArgs = {
|
|
7986
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
7987
|
+
};
|
|
7988
|
+
export declare type AssetsSpaceAttributeOnObject = AssetsAttributeOnObject & {
|
|
7989
|
+
__typename?: 'AssetsSpaceAttributeOnObject';
|
|
7990
|
+
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
7991
|
+
id: Scalars['ID']['output'];
|
|
7992
|
+
values: Array<AssetsSpaceAttributeValue>;
|
|
7993
|
+
};
|
|
7994
|
+
export declare type AssetsSpaceAttributeValue = {
|
|
7995
|
+
__typename?: 'AssetsSpaceAttributeValue';
|
|
7996
|
+
displayValue: Scalars['String']['output'];
|
|
7997
|
+
value?: Maybe<AssetsSpaceValueData>;
|
|
7998
|
+
};
|
|
7999
|
+
export declare type AssetsSpaceValueData = {
|
|
8000
|
+
__typename?: 'AssetsSpaceValueData';
|
|
8001
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
8002
|
+
id: Scalars['ID']['output'];
|
|
8003
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
8004
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
8005
|
+
};
|
|
8006
|
+
export declare type AssetsStatusAttribute = AssetsObjectTypeAttribute & {
|
|
8007
|
+
__typename?: 'AssetsStatusAttribute';
|
|
8008
|
+
allowedStatusTypes?: Maybe<Array<AssetsStatusType>>;
|
|
8009
|
+
id: Scalars['ID']['output'];
|
|
8010
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
8011
|
+
};
|
|
8012
|
+
export declare type AssetsStatusAttributeOnObject = AssetsAttributeOnObject & {
|
|
8013
|
+
__typename?: 'AssetsStatusAttributeOnObject';
|
|
8014
|
+
attribute?: Maybe<AssetsStatusAttribute>;
|
|
8015
|
+
id: Scalars['ID']['output'];
|
|
8016
|
+
values: Array<AssetsStatusAttributeValue>;
|
|
8017
|
+
};
|
|
8018
|
+
export declare type AssetsStatusAttributeValue = {
|
|
8019
|
+
__typename?: 'AssetsStatusAttributeValue';
|
|
8020
|
+
displayValue: Scalars['String']['output'];
|
|
8021
|
+
value?: Maybe<AssetsStatusType>;
|
|
8022
|
+
};
|
|
8023
|
+
export declare enum AssetsStatusCategory {
|
|
8024
|
+
Moved = "MOVED",
|
|
8025
|
+
Removed = "REMOVED",
|
|
8026
|
+
Success = "SUCCESS"
|
|
8027
|
+
}
|
|
8028
|
+
export declare type AssetsStatusType = {
|
|
8029
|
+
__typename?: 'AssetsStatusType';
|
|
8030
|
+
category?: Maybe<AssetsStatusCategory>;
|
|
8031
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
8032
|
+
id: Scalars['ID']['output'];
|
|
8033
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
8034
|
+
};
|
|
8035
|
+
export declare type AssetsTextAttributeOnObject = AssetsAttributeOnObject & {
|
|
8036
|
+
__typename?: 'AssetsTextAttributeOnObject';
|
|
8037
|
+
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8038
|
+
id: Scalars['ID']['output'];
|
|
8039
|
+
values: Array<AssetsTextAttributeValue>;
|
|
8040
|
+
};
|
|
8041
|
+
export declare type AssetsTextAttributeValue = {
|
|
8042
|
+
__typename?: 'AssetsTextAttributeValue';
|
|
8043
|
+
displayValue: Scalars['String']['output'];
|
|
8044
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
8045
|
+
};
|
|
8046
|
+
export declare type AssetsTextareaAttributeOnObject = AssetsAttributeOnObject & {
|
|
8047
|
+
__typename?: 'AssetsTextareaAttributeOnObject';
|
|
8048
|
+
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8049
|
+
id: Scalars['ID']['output'];
|
|
8050
|
+
values: Array<AssetsTextareaAttributeValue>;
|
|
8051
|
+
};
|
|
8052
|
+
export declare type AssetsTextareaAttributeValue = {
|
|
8053
|
+
__typename?: 'AssetsTextareaAttributeValue';
|
|
8054
|
+
displayValue: Scalars['String']['output'];
|
|
8055
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
8056
|
+
};
|
|
8057
|
+
export declare type AssetsUrlAttributeOnObject = AssetsAttributeOnObject & {
|
|
8058
|
+
__typename?: 'AssetsURLAttributeOnObject';
|
|
8059
|
+
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8060
|
+
id: Scalars['ID']['output'];
|
|
8061
|
+
values: Array<AssetsUrlAttributeValue>;
|
|
8062
|
+
};
|
|
8063
|
+
export declare type AssetsUrlAttributeValue = {
|
|
8064
|
+
__typename?: 'AssetsURLAttributeValue';
|
|
8065
|
+
displayValue: Scalars['String']['output'];
|
|
8066
|
+
};
|
|
8067
|
+
export declare type AssetsUserAttribute = AssetsObjectTypeAttribute & {
|
|
8068
|
+
__typename?: 'AssetsUserAttribute';
|
|
8069
|
+
id: Scalars['ID']['output'];
|
|
8070
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
8071
|
+
userGroups?: Maybe<Array<AssetsGroupValueData>>;
|
|
8072
|
+
};
|
|
8073
|
+
export declare type AssetsUserAttributeOnObject = AssetsAttributeOnObject & {
|
|
8074
|
+
__typename?: 'AssetsUserAttributeOnObject';
|
|
8075
|
+
attribute?: Maybe<AssetsUserAttribute>;
|
|
8076
|
+
id: Scalars['ID']['output'];
|
|
8077
|
+
values: Array<AssetsUserAttributeValue>;
|
|
8078
|
+
};
|
|
8079
|
+
export declare type AssetsUserAttributeValue = {
|
|
8080
|
+
__typename?: 'AssetsUserAttributeValue';
|
|
8081
|
+
displayValue: Scalars['String']['output'];
|
|
8082
|
+
value?: Maybe<AssetsUserValueData>;
|
|
8083
|
+
};
|
|
8084
|
+
export declare type AssetsUserValueData = {
|
|
8085
|
+
__typename?: 'AssetsUserValueData';
|
|
8086
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
8087
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
8088
|
+
emailAddress?: Maybe<Scalars['String']['output']>;
|
|
8089
|
+
isDeleted?: Maybe<Scalars['Boolean']['output']>;
|
|
8090
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
8091
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
8092
|
+
};
|
|
7807
8093
|
export declare type AssignIssueParentInput = {
|
|
7808
8094
|
boardId: Scalars['ID']['input'];
|
|
7809
8095
|
issueIds: Array<Scalars['ID']['input']>;
|
|
@@ -18025,6 +18311,16 @@ export declare type ConfluenceCreateAnswerPayload = Payload & {
|
|
|
18025
18311
|
errors?: Maybe<Array<MutationError>>;
|
|
18026
18312
|
success: Scalars['Boolean']['output'];
|
|
18027
18313
|
};
|
|
18314
|
+
export declare type ConfluenceCreateAutoConvertedDateInput = {
|
|
18315
|
+
contentId: Scalars['ID']['input'];
|
|
18316
|
+
};
|
|
18317
|
+
export declare type ConfluenceCreateAutoConvertedDatePayload = Payload & {
|
|
18318
|
+
__typename?: 'ConfluenceCreateAutoConvertedDatePayload';
|
|
18319
|
+
autoConvertedDate?: Maybe<Scalars['String']['output']>;
|
|
18320
|
+
contentId: Scalars['String']['output'];
|
|
18321
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18322
|
+
success: Scalars['Boolean']['output'];
|
|
18323
|
+
};
|
|
18028
18324
|
export declare type ConfluenceCreateBlogPostInput = {
|
|
18029
18325
|
body?: InputMaybe<ConfluenceContentBodyInput>;
|
|
18030
18326
|
spaceId: Scalars['ID']['input'];
|
|
@@ -20010,7 +20306,8 @@ export declare type ConfluenceNbmVerificationResultEdge = {
|
|
|
20010
20306
|
};
|
|
20011
20307
|
export declare enum ConfluenceNbmVerificationResultOrder {
|
|
20012
20308
|
AiState = "AI_STATE",
|
|
20013
|
-
ManualState = "MANUAL_STATE"
|
|
20309
|
+
ManualState = "MANUAL_STATE",
|
|
20310
|
+
Status = "STATUS"
|
|
20014
20311
|
}
|
|
20015
20312
|
export declare enum ConfluenceNbmVerificationStatus {
|
|
20016
20313
|
Cancelled = "CANCELLED",
|
|
@@ -25143,6 +25440,11 @@ export declare type ConvoAiTraceMessage = ConvoAiAgentMessage & {
|
|
|
25143
25440
|
messageTemplate: Scalars['String']['output'];
|
|
25144
25441
|
timeCreated: Scalars['DateTime']['output'];
|
|
25145
25442
|
};
|
|
25443
|
+
export declare type ConvoAiUpdateConversationStatePayload = Payload & {
|
|
25444
|
+
__typename?: 'ConvoAiUpdateConversationStatePayload';
|
|
25445
|
+
errors?: Maybe<Array<MutationError>>;
|
|
25446
|
+
success: Scalars['Boolean']['output'];
|
|
25447
|
+
};
|
|
25146
25448
|
export declare type CopyPolarisInsightsContainerInput = {
|
|
25147
25449
|
container?: InputMaybe<Scalars['ID']['input']>;
|
|
25148
25450
|
project: Scalars['ID']['input'];
|
|
@@ -28459,6 +28761,7 @@ export declare enum DataSecurityPolicyAction {
|
|
|
28459
28761
|
AnonymousAccess = "ANONYMOUS_ACCESS",
|
|
28460
28762
|
AppAccess = "APP_ACCESS",
|
|
28461
28763
|
AppAccessConfigured = "APP_ACCESS_CONFIGURED",
|
|
28764
|
+
AttachmentDownload = "ATTACHMENT_DOWNLOAD",
|
|
28462
28765
|
PageExport = "PAGE_EXPORT",
|
|
28463
28766
|
PublicLinks = "PUBLIC_LINKS"
|
|
28464
28767
|
}
|
|
@@ -31671,6 +31974,7 @@ export declare enum DocumentRepresentation {
|
|
|
31671
31974
|
}
|
|
31672
31975
|
export declare type DraftContentProperties = {
|
|
31673
31976
|
__typename?: 'DraftContentProperties';
|
|
31977
|
+
autoConvertedDate?: Maybe<Scalars['String']['output']>;
|
|
31674
31978
|
contentAppearance?: Maybe<Scalars['String']['output']>;
|
|
31675
31979
|
contentMode?: Maybe<Scalars['String']['output']>;
|
|
31676
31980
|
coverPicture?: Maybe<Scalars['String']['output']>;
|
|
@@ -33447,6 +33751,7 @@ export declare type ExternalMessage = Node & {
|
|
|
33447
33751
|
lastActive?: Maybe<Scalars['String']['output']>;
|
|
33448
33752
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
33449
33753
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
33754
|
+
links?: Maybe<Array<Maybe<ExternalMessageLink>>>;
|
|
33450
33755
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
33451
33756
|
parent?: Maybe<ExternalEntity>;
|
|
33452
33757
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -33456,6 +33761,10 @@ export declare type ExternalMessage = Node & {
|
|
|
33456
33761
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
33457
33762
|
url?: Maybe<Scalars['String']['output']>;
|
|
33458
33763
|
};
|
|
33764
|
+
export declare type ExternalMessageLink = {
|
|
33765
|
+
__typename?: 'ExternalMessageLink';
|
|
33766
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
33767
|
+
};
|
|
33459
33768
|
export declare type ExternalOrganisation = Node & {
|
|
33460
33769
|
__typename?: 'ExternalOrganisation';
|
|
33461
33770
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
@@ -33716,6 +34025,7 @@ export declare type ExternalSpace = Node & {
|
|
|
33716
34025
|
};
|
|
33717
34026
|
export declare enum ExternalSpaceSubtype {
|
|
33718
34027
|
Business = "BUSINESS",
|
|
34028
|
+
Drive = "DRIVE",
|
|
33719
34029
|
Project = "PROJECT",
|
|
33720
34030
|
ServiceDesk = "SERVICE_DESK",
|
|
33721
34031
|
Site = "SITE",
|
|
@@ -90124,10 +90434,15 @@ export declare enum JiraBoardType {
|
|
|
90124
90434
|
}
|
|
90125
90435
|
export declare type JiraBoardView = JiraView & Node & {
|
|
90126
90436
|
__typename?: 'JiraBoardView';
|
|
90437
|
+
canArchiveIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
90438
|
+
canAssignIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
90127
90439
|
canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
90440
|
+
canEditIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
90128
90441
|
canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
90129
90442
|
canManageStatuses?: Maybe<Scalars['Boolean']['output']>;
|
|
90130
90443
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
90444
|
+
canScheduleIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
90445
|
+
canTransitionIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
90131
90446
|
cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
|
|
90132
90447
|
columns?: Maybe<JiraBoardViewColumnConnection>;
|
|
90133
90448
|
completedIssueSearchCutOffInDays?: Maybe<Scalars['Int']['output']>;
|
|
@@ -91130,6 +91445,10 @@ export declare type JiraCannedResponseUpdatePayload = Payload & {
|
|
|
91130
91445
|
jiraCannedResponse?: Maybe<JiraCannedResponse>;
|
|
91131
91446
|
success: Scalars['Boolean']['output'];
|
|
91132
91447
|
};
|
|
91448
|
+
export declare enum JiraCapacitySubRouteEnum {
|
|
91449
|
+
People = "PEOPLE",
|
|
91450
|
+
Work = "WORK"
|
|
91451
|
+
}
|
|
91133
91452
|
export declare type JiraCappedCount = {
|
|
91134
91453
|
__typename?: 'JiraCappedCount';
|
|
91135
91454
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -95530,6 +95849,10 @@ export declare enum JiraInstallDeploymentsBannerPrecondition {
|
|
|
95530
95849
|
FeatureNotEnabled = "FEATURE_NOT_ENABLED",
|
|
95531
95850
|
NotAvailable = "NOT_AVAILABLE"
|
|
95532
95851
|
}
|
|
95852
|
+
export declare type JiraInvalidIssueSearchInputError = {
|
|
95853
|
+
__typename?: 'JiraInvalidIssueSearchInputError';
|
|
95854
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
95855
|
+
};
|
|
95533
95856
|
export declare type JiraInvalidJqlError = {
|
|
95534
95857
|
__typename?: 'JiraInvalidJqlError';
|
|
95535
95858
|
messages?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -97342,7 +97665,7 @@ export declare type JiraIssueSearchCustomInput = {
|
|
|
97342
97665
|
jiraSoftwareInput?: InputMaybe<JiraSoftwareIssueSearchCustomInput>;
|
|
97343
97666
|
jiraTimelineInput?: InputMaybe<JiraTimelineIssueSearchCustomInput>;
|
|
97344
97667
|
};
|
|
97345
|
-
export declare type JiraIssueSearchError = JiraCustomIssueSearchError | JiraInvalidJqlError | JiraInvalidSyntaxError | JiraServerError;
|
|
97668
|
+
export declare type JiraIssueSearchError = JiraCustomIssueSearchError | JiraInvalidIssueSearchInputError | JiraInvalidJqlError | JiraInvalidSyntaxError | JiraServerError;
|
|
97346
97669
|
export declare type JiraIssueSearchErrorExtension = QueryErrorExtension & {
|
|
97347
97670
|
__typename?: 'JiraIssueSearchErrorExtension';
|
|
97348
97671
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
@@ -107065,6 +107388,16 @@ export declare type JiraSetBoardViewWorkflowSelectedPayload = Payload & {
|
|
|
107065
107388
|
errors?: Maybe<Array<MutationError>>;
|
|
107066
107389
|
success: Scalars['Boolean']['output'];
|
|
107067
107390
|
};
|
|
107391
|
+
export declare type JiraSetCapacityMostRecentSubRouteInput = {
|
|
107392
|
+
cloudId: Scalars['ID']['input'];
|
|
107393
|
+
scopeId: Scalars['ID']['input'];
|
|
107394
|
+
subRoute: JiraCapacitySubRouteEnum;
|
|
107395
|
+
};
|
|
107396
|
+
export declare type JiraSetCapacityMostRecentSubRoutePayload = Payload & {
|
|
107397
|
+
__typename?: 'JiraSetCapacityMostRecentSubRoutePayload';
|
|
107398
|
+
errors?: Maybe<Array<MutationError>>;
|
|
107399
|
+
success: Scalars['Boolean']['output'];
|
|
107400
|
+
};
|
|
107068
107401
|
export declare type JiraSetDefaultNavigationItemInput = {
|
|
107069
107402
|
id: Scalars['ID']['input'];
|
|
107070
107403
|
scopeId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -112513,6 +112846,16 @@ export declare type KitsuneFeedback = Node & {
|
|
|
112513
112846
|
export declare type KitsuneFeedbackChunksArgs = {
|
|
112514
112847
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
112515
112848
|
};
|
|
112849
|
+
export declare type KitsuneFeedbackConnection = KitsuneConnection & {
|
|
112850
|
+
__typename?: 'KitsuneFeedbackConnection';
|
|
112851
|
+
edges: Array<KitsuneFeedbackEdge>;
|
|
112852
|
+
pageInfo: PageInfo;
|
|
112853
|
+
};
|
|
112854
|
+
export declare type KitsuneFeedbackEdge = KitsuneEdge & {
|
|
112855
|
+
__typename?: 'KitsuneFeedbackEdge';
|
|
112856
|
+
cursor: Scalars['String']['output'];
|
|
112857
|
+
node?: Maybe<KitsuneFeedback>;
|
|
112858
|
+
};
|
|
112516
112859
|
export declare type KitsuneFeedbackEvent = {
|
|
112517
112860
|
__typename?: 'KitsuneFeedbackEvent';
|
|
112518
112861
|
content: Scalars['KitsuneADF']['output'];
|
|
@@ -112544,9 +112887,13 @@ export declare type KitsuneSourceInputWeb = {
|
|
|
112544
112887
|
};
|
|
112545
112888
|
export declare type KitsuneSpace = Node & {
|
|
112546
112889
|
__typename?: 'KitsuneSpace';
|
|
112890
|
+
feedbacks: KitsuneFeedbackConnection;
|
|
112547
112891
|
id: Scalars['ID']['output'];
|
|
112548
112892
|
name?: Maybe<Scalars['String']['output']>;
|
|
112549
112893
|
};
|
|
112894
|
+
export declare type KitsuneSpaceFeedbacksArgs = {
|
|
112895
|
+
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
112896
|
+
};
|
|
112550
112897
|
export declare type KnowledgeBaseAccessibleLinkedSourceResult = {
|
|
112551
112898
|
__typename?: 'KnowledgeBaseAccessibleLinkedSourceResult';
|
|
112552
112899
|
sourceARI?: Maybe<Scalars['ID']['output']>;
|
|
@@ -114727,6 +115074,7 @@ export declare type MarketplaceAppVersion = {
|
|
|
114727
115074
|
endUserLicenseAgreementUrl?: Maybe<Scalars['URL']['output']>;
|
|
114728
115075
|
heroImage?: Maybe<MarketplaceListingImage>;
|
|
114729
115076
|
highlights?: Maybe<Array<MarketplaceListingHighlight>>;
|
|
115077
|
+
isForgeROACompliant?: Maybe<Scalars['Boolean']['output']>;
|
|
114730
115078
|
isSupported: Scalars['Boolean']['output'];
|
|
114731
115079
|
learnMoreUrl?: Maybe<Scalars['URL']['output']>;
|
|
114732
115080
|
licenseType?: Maybe<MarketplaceAppVersionLicenseType>;
|
|
@@ -115847,6 +116195,7 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
115847
116195
|
updateAppDetails?: Maybe<MarketplaceConsoleUpdateAppDetailsResponse>;
|
|
115848
116196
|
updateMakerAccountAndMakerListing?: Maybe<MarketplaceConsoleMakerResponse>;
|
|
115849
116197
|
updateMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
|
|
116198
|
+
updateProductListingApprovalStatus: MarketplaceConsoleUpdateProductListingApprovalStatusResponse;
|
|
115850
116199
|
upsertMakerPaymentDetails?: Maybe<MarketplaceConsoleMakerResponse>;
|
|
115851
116200
|
upsertProgramEnrollment?: Maybe<MarketplaceConsoleMakerResponse>;
|
|
115852
116201
|
validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
@@ -115921,6 +116270,9 @@ export declare type MarketplaceConsoleMutationApiUpdateMakerAccountAndMakerListi
|
|
|
115921
116270
|
export declare type MarketplaceConsoleMutationApiUpdateMakerContactArgs = {
|
|
115922
116271
|
input: MarketplaceConsoleMakerContactUpdateInput;
|
|
115923
116272
|
};
|
|
116273
|
+
export declare type MarketplaceConsoleMutationApiUpdateProductListingApprovalStatusArgs = {
|
|
116274
|
+
input: MarketplaceConsoleUpdateProductListingApprovalStatusInput;
|
|
116275
|
+
};
|
|
115924
116276
|
export declare type MarketplaceConsoleMutationApiUpsertMakerPaymentDetailsArgs = {
|
|
115925
116277
|
input: MarketplaceConsoleUpsertMakerPaymentInput;
|
|
115926
116278
|
};
|
|
@@ -116192,6 +116544,40 @@ export declare type MarketplaceConsoleProductListingAdditionalChecksInput = {
|
|
|
116192
116544
|
productId: Scalars['ID']['input'];
|
|
116193
116545
|
serverAppSoftwareId?: InputMaybe<Scalars['ID']['input']>;
|
|
116194
116546
|
};
|
|
116547
|
+
export declare enum MarketplaceConsoleProductListingApprovalStatus {
|
|
116548
|
+
Private = "PRIVATE",
|
|
116549
|
+
Public = "PUBLIC",
|
|
116550
|
+
Rejected = "REJECTED",
|
|
116551
|
+
Submitted = "SUBMITTED"
|
|
116552
|
+
}
|
|
116553
|
+
export declare type MarketplaceConsoleProductListingApprovalStatusDetail = {
|
|
116554
|
+
__typename?: 'MarketplaceConsoleProductListingApprovalStatusDetail';
|
|
116555
|
+
approvalStatus: MarketplaceConsoleProductListingApprovalStatus;
|
|
116556
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
116557
|
+
};
|
|
116558
|
+
export declare type MarketplaceConsoleProductListingApprovalStatusError = MarketplaceConsoleError & {
|
|
116559
|
+
__typename?: 'MarketplaceConsoleProductListingApprovalStatusError';
|
|
116560
|
+
code: Scalars['String']['output'];
|
|
116561
|
+
message: Scalars['String']['output'];
|
|
116562
|
+
statusCode: Scalars['Int']['output'];
|
|
116563
|
+
};
|
|
116564
|
+
export declare type MarketplaceConsoleProductListingApprovalStatusResponse = MarketplaceConsoleProductListingApprovalStatusError | MarketplaceConsoleProductListingApprovalStatusSuccess;
|
|
116565
|
+
export declare type MarketplaceConsoleProductListingApprovalStatusSuccess = {
|
|
116566
|
+
__typename?: 'MarketplaceConsoleProductListingApprovalStatusSuccess';
|
|
116567
|
+
currentTaskStatus: MarketplaceConsoleProductListingCurrentTaskStatus;
|
|
116568
|
+
failureReason?: Maybe<Scalars['String']['output']>;
|
|
116569
|
+
productListing: MarketplaceConsoleProductListingApprovalStatusDetail;
|
|
116570
|
+
};
|
|
116571
|
+
export declare enum MarketplaceConsoleProductListingApprovalStatusUpdateAction {
|
|
116572
|
+
Approved = "APPROVED",
|
|
116573
|
+
Rejected = "REJECTED",
|
|
116574
|
+
Resubmit = "RESUBMIT"
|
|
116575
|
+
}
|
|
116576
|
+
export declare enum MarketplaceConsoleProductListingCurrentTaskStatus {
|
|
116577
|
+
Failed = "FAILED",
|
|
116578
|
+
Processing = "PROCESSING",
|
|
116579
|
+
Success = "SUCCESS"
|
|
116580
|
+
}
|
|
116195
116581
|
export declare type MarketplaceConsoleProductListingTags = {
|
|
116196
116582
|
__typename?: 'MarketplaceConsoleProductListingTags';
|
|
116197
116583
|
category?: Maybe<Array<Maybe<MarketplaceConsoleTagsContent>>>;
|
|
@@ -116277,6 +116663,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
116277
116663
|
product?: Maybe<MarketplaceConsoleProduct>;
|
|
116278
116664
|
productLifecycleJobs?: Maybe<Array<MarketplaceConsoleProductLifecycleJob>>;
|
|
116279
116665
|
productListingAdditionalChecks?: Maybe<MarketplaceConsoleProductListingAdditionalChecks>;
|
|
116666
|
+
productListingApprovalStatus: MarketplaceConsoleProductListingApprovalStatusResponse;
|
|
116280
116667
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
116281
116668
|
productMetadataByAppId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
116282
116669
|
productTags?: Maybe<MarketplaceConsoleProductTags>;
|
|
@@ -116360,6 +116747,9 @@ export declare type MarketplaceConsoleQueryApiProductLifecycleJobsArgs = {
|
|
|
116360
116747
|
export declare type MarketplaceConsoleQueryApiProductListingAdditionalChecksArgs = {
|
|
116361
116748
|
productListingAdditionalChecksInput: MarketplaceConsoleProductListingAdditionalChecksInput;
|
|
116362
116749
|
};
|
|
116750
|
+
export declare type MarketplaceConsoleQueryApiProductListingApprovalStatusArgs = {
|
|
116751
|
+
productId: Scalars['ID']['input'];
|
|
116752
|
+
};
|
|
116363
116753
|
export declare type MarketplaceConsoleQueryApiProductListingByAppIdArgs = {
|
|
116364
116754
|
appId: Scalars['ID']['input'];
|
|
116365
116755
|
productId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -116479,6 +116869,16 @@ export declare type MarketplaceConsoleUpdateMakerListingInput = {
|
|
|
116479
116869
|
developerSpaceListing: MarketplaceConsoleDevSpaceListingInput;
|
|
116480
116870
|
makerName: Scalars['String']['input'];
|
|
116481
116871
|
};
|
|
116872
|
+
export declare type MarketplaceConsoleUpdateProductListingApprovalStatusInput = {
|
|
116873
|
+
productId: Scalars['ID']['input'];
|
|
116874
|
+
reason?: InputMaybe<Scalars['String']['input']>;
|
|
116875
|
+
status: MarketplaceConsoleProductListingApprovalStatusUpdateAction;
|
|
116876
|
+
};
|
|
116877
|
+
export declare type MarketplaceConsoleUpdateProductListingApprovalStatusResponse = MarketplaceConsoleProductListingApprovalStatusError | MarketplaceConsoleUpdateProductListingApprovalStatusSuccess;
|
|
116878
|
+
export declare type MarketplaceConsoleUpdateProductListingApprovalStatusSuccess = {
|
|
116879
|
+
__typename?: 'MarketplaceConsoleUpdateProductListingApprovalStatusSuccess';
|
|
116880
|
+
success: Scalars['Boolean']['output'];
|
|
116881
|
+
};
|
|
116482
116882
|
export declare type MarketplaceConsoleUpsertMakerPaymentInput = {
|
|
116483
116883
|
developerId: Scalars['ID']['input'];
|
|
116484
116884
|
paymentDetails: MarketplaceConsoleMakerPaymentInput;
|
|
@@ -118838,7 +119238,6 @@ export declare type MercuryFocusArea = Node & {
|
|
|
118838
119238
|
focusAreaStatusUpdates?: Maybe<MercuryFocusAreaStatusUpdateConnection>;
|
|
118839
119239
|
focusAreaType: MercuryFocusAreaType;
|
|
118840
119240
|
funding?: Maybe<MercuryFunding>;
|
|
118841
|
-
fundsSummary?: Maybe<MercuryFundsSummary>;
|
|
118842
119241
|
goalLinks?: Maybe<MercuryFocusAreaGoalLinks>;
|
|
118843
119242
|
health?: Maybe<MercuryFocusAreaHealth>;
|
|
118844
119243
|
icon: MercuryFocusAreaIcon;
|
|
@@ -118943,6 +119342,11 @@ export declare type MercuryFocusAreaFundChangeSummary = {
|
|
|
118943
119342
|
nonLaborAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
118944
119343
|
totalAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
118945
119344
|
};
|
|
119345
|
+
export declare type MercuryFocusAreaFundsMonthlySummary = {
|
|
119346
|
+
__typename?: 'MercuryFocusAreaFundsMonthlySummary';
|
|
119347
|
+
focusAreaId: Scalars['ID']['output'];
|
|
119348
|
+
monthlySummaries?: Maybe<Array<Maybe<MercuryFundsMonthlySummary>>>;
|
|
119349
|
+
};
|
|
118946
119350
|
export declare type MercuryFocusAreaGoalContext = {
|
|
118947
119351
|
__typename?: 'MercuryFocusAreaGoalContext';
|
|
118948
119352
|
focusAreaLinkedGoalContext?: Maybe<Array<Maybe<MercuryFocusAreaLinkedGoalContextData>>>;
|
|
@@ -119261,6 +119665,7 @@ export declare type MercuryFundsMonthlySummary = {
|
|
|
119261
119665
|
amountSummary?: Maybe<MercuryFundsAmountSummary>;
|
|
119262
119666
|
costSubtype?: Maybe<MercuryCostSubtype>;
|
|
119263
119667
|
fiscalQuarter?: Maybe<Scalars['Int']['output']>;
|
|
119668
|
+
fiscalYear?: Maybe<Scalars['Int']['output']>;
|
|
119264
119669
|
fundsType?: Maybe<MercuryFundsType>;
|
|
119265
119670
|
investmentCategory?: Maybe<MercuryInvestmentCategory>;
|
|
119266
119671
|
investmentCategorySet?: Maybe<MercuryInvestmentCategorySet>;
|
|
@@ -119333,6 +119738,7 @@ export declare type MercuryFundsQueryApi = {
|
|
|
119333
119738
|
fiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
119334
119739
|
fiscalCalendarConfigurations?: Maybe<Array<Maybe<MercuryFiscalCalendarConfiguration>>>;
|
|
119335
119740
|
fiscalCalendarConfigurationsSearch?: Maybe<MercuryFiscalCalendarConfigurationConnection>;
|
|
119741
|
+
focusAreaMonthlySummaries?: Maybe<Array<Maybe<MercuryFocusAreaFundsMonthlySummary>>>;
|
|
119336
119742
|
investmentCategories?: Maybe<Array<Maybe<MercuryInvestmentCategory>>>;
|
|
119337
119743
|
investmentCategorySets?: Maybe<Array<Maybe<MercuryInvestmentCategorySet>>>;
|
|
119338
119744
|
investmentCategorySetsSearch?: Maybe<MercuryInvestmentCategorySetConnection>;
|
|
@@ -119362,6 +119768,9 @@ export declare type MercuryFundsQueryApiFiscalCalendarConfigurationsSearchArgs =
|
|
|
119362
119768
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
119363
119769
|
sort?: InputMaybe<Array<InputMaybe<MercuryFiscalCalendarConfigurationSort>>>;
|
|
119364
119770
|
};
|
|
119771
|
+
export declare type MercuryFundsQueryApiFocusAreaMonthlySummariesArgs = {
|
|
119772
|
+
focusAreaIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
119773
|
+
};
|
|
119365
119774
|
export declare type MercuryFundsQueryApiInvestmentCategoriesArgs = {
|
|
119366
119775
|
ids: Array<Scalars['ID']['input']>;
|
|
119367
119776
|
};
|
|
@@ -119374,11 +119783,6 @@ export declare type MercuryFundsQueryApiInvestmentCategorySetsSearchArgs = {
|
|
|
119374
119783
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
119375
119784
|
sort?: InputMaybe<Array<InputMaybe<MercuryInvestmentCategorySetSort>>>;
|
|
119376
119785
|
};
|
|
119377
|
-
export declare type MercuryFundsSummary = {
|
|
119378
|
-
__typename?: 'MercuryFundsSummary';
|
|
119379
|
-
focusAreaId: Scalars['ID']['output'];
|
|
119380
|
-
monthlySummaries?: Maybe<Array<Maybe<MercuryFundsMonthlySummary>>>;
|
|
119381
|
-
};
|
|
119382
119786
|
export declare enum MercuryFundsType {
|
|
119383
119787
|
Actual = "ACTUAL",
|
|
119384
119788
|
Budget = "BUDGET",
|
|
@@ -122032,6 +122436,7 @@ export declare type Mutation = {
|
|
|
122032
122436
|
confluence_copyNote?: Maybe<ConfluenceCopyNotePayload>;
|
|
122033
122437
|
confluence_copySpaceSecurityConfiguration?: Maybe<ConfluenceCopySpaceSecurityConfigurationPayload>;
|
|
122034
122438
|
confluence_createAnswer?: Maybe<ConfluenceCreateAnswerPayload>;
|
|
122439
|
+
confluence_createAutoConvertedDate?: Maybe<ConfluenceCreateAutoConvertedDatePayload>;
|
|
122035
122440
|
confluence_createCalendar?: Maybe<ConfluenceCreateCalendarPayload>;
|
|
122036
122441
|
confluence_createCommentOnAnswer?: Maybe<ConfluenceCreateCommentOnAnswerPayload>;
|
|
122037
122442
|
confluence_createCommentOnQuestion?: Maybe<ConfluenceCreateCommentOnQuestionPayload>;
|
|
@@ -122127,6 +122532,7 @@ export declare type Mutation = {
|
|
|
122127
122532
|
contactAdmin?: Maybe<GraphQlContactAdminStatus>;
|
|
122128
122533
|
convertPageToLiveEditAction?: Maybe<ConvertPageToLiveEditActionPayload>;
|
|
122129
122534
|
convertToFolder?: Maybe<ConfluenceConvertContentToFolderPayload>;
|
|
122535
|
+
convoAi_completeConversation?: Maybe<ConvoAiUpdateConversationStatePayload>;
|
|
122130
122536
|
copyDefaultSpacePermissions?: Maybe<CopySpacePermissionsPayload>;
|
|
122131
122537
|
copyPolarisInsights?: Maybe<CopyPolarisInsightsPayload>;
|
|
122132
122538
|
copySpacePermissions?: Maybe<CopySpacePermissionsPayload>;
|
|
@@ -122450,6 +122856,7 @@ export declare type Mutation = {
|
|
|
122450
122856
|
jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
|
|
122451
122857
|
jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
|
|
122452
122858
|
jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
|
|
122859
|
+
jira_setCapacityMostRecentSubRoute?: Maybe<JiraSetCapacityMostRecentSubRoutePayload>;
|
|
122453
122860
|
jira_setFieldSetsPreferences?: Maybe<JiraSetFieldSetsPreferencesPayload>;
|
|
122454
122861
|
jira_setGlobalPermissionUserGroups?: Maybe<JiraGlobalPermissionSetUserGroupsPayload>;
|
|
122455
122862
|
jira_setIsAgentAssignable?: Maybe<JiraSetIsAgentAssignableResponsePayload>;
|
|
@@ -122489,8 +122896,10 @@ export declare type Mutation = {
|
|
|
122489
122896
|
jsw?: Maybe<JswMutation>;
|
|
122490
122897
|
kitsune_createFeedback?: Maybe<KitsuneFeedback>;
|
|
122491
122898
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
122899
|
+
kitsune_importFeedbackFromCsv?: Maybe<Scalars['Boolean']['output']>;
|
|
122492
122900
|
kitsune_removeFeedback?: Maybe<Scalars['ID']['output']>;
|
|
122493
122901
|
kitsune_suggestSnippets?: Maybe<Scalars['Boolean']['output']>;
|
|
122902
|
+
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
122494
122903
|
kitsune_updateSpace?: Maybe<KitsuneSpace>;
|
|
122495
122904
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
122496
122905
|
knowledgeBaseSpacePermission_updateView: KnowledgeBaseSpacePermissionMutationResponse;
|
|
@@ -122676,6 +123085,7 @@ export declare type Mutation = {
|
|
|
122676
123085
|
shepherd?: Maybe<ShepherdMutation>;
|
|
122677
123086
|
signInvocationTokenForUI?: Maybe<SignInvocationTokenForUiResponse>;
|
|
122678
123087
|
softDeleteSpace?: Maybe<SoftDeleteSpacePayload>;
|
|
123088
|
+
spf_acceptProposedDate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
122679
123089
|
spf_addPlanOwner?: Maybe<SpfUpsertPlanOwnerPayload>;
|
|
122680
123090
|
spf_attachAskLink?: Maybe<SpfAttachAskLinkPayload>;
|
|
122681
123091
|
spf_createAsk?: Maybe<SpfUpsertAskPayload>;
|
|
@@ -122691,6 +123101,7 @@ export declare type Mutation = {
|
|
|
122691
123101
|
spf_deletePlan?: Maybe<SpfDeletePlanPayload>;
|
|
122692
123102
|
spf_deletePlanScenario?: Maybe<SpfDeletePlanScenarioPayload>;
|
|
122693
123103
|
spf_deletePlanScenarioInvestment?: Maybe<SpfDeletePlanScenarioInvestmentPayload>;
|
|
123104
|
+
spf_rejectProposedDate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
122694
123105
|
spf_removePlanOwner?: Maybe<SpfRemovePlanOwnerPayload>;
|
|
122695
123106
|
spf_updateAskComment?: Maybe<SpfUpsertAskCommentPayload>;
|
|
122696
123107
|
spf_updateAskDescription?: Maybe<SpfUpsertAskPayload>;
|
|
@@ -122734,6 +123145,7 @@ export declare type Mutation = {
|
|
|
122734
123145
|
stakeholderComms_issueSsl?: Maybe<StakeholderCommsIssueSslResponse>;
|
|
122735
123146
|
stakeholderComms_permanentlyDeletePage?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
122736
123147
|
stakeholderComms_publishPage?: Maybe<StakeholderCommsPageResponse>;
|
|
123148
|
+
stakeholderComms_recoverPage?: Maybe<StakeholderCommsPageResponse>;
|
|
122737
123149
|
stakeholderComms_removeCustomDomain?: Maybe<StakeholderCommsRemoveCustomDomainResponse>;
|
|
122738
123150
|
stakeholderComms_removeStakeholderAssignment?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
122739
123151
|
stakeholderComms_removeStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
@@ -123546,6 +123958,10 @@ export declare type MutationConfluence_CreateAnswerArgs = {
|
|
|
123546
123958
|
cloudId: Scalars['ID']['input'];
|
|
123547
123959
|
input: ConfluenceCreateAnswerInput;
|
|
123548
123960
|
};
|
|
123961
|
+
export declare type MutationConfluence_CreateAutoConvertedDateArgs = {
|
|
123962
|
+
cloudId: Scalars['ID']['input'];
|
|
123963
|
+
input: ConfluenceCreateAutoConvertedDateInput;
|
|
123964
|
+
};
|
|
123549
123965
|
export declare type MutationConfluence_CreateCalendarArgs = {
|
|
123550
123966
|
cloudId: Scalars['ID']['input'];
|
|
123551
123967
|
input: ConfluenceCreateCalendarInput;
|
|
@@ -123925,6 +124341,10 @@ export declare type MutationConvertPageToLiveEditActionArgs = {
|
|
|
123925
124341
|
export declare type MutationConvertToFolderArgs = {
|
|
123926
124342
|
id: Scalars['ID']['input'];
|
|
123927
124343
|
};
|
|
124344
|
+
export declare type MutationConvoAi_CompleteConversationArgs = {
|
|
124345
|
+
cloudId: Scalars['ID']['input'];
|
|
124346
|
+
conversationId: Scalars['ID']['input'];
|
|
124347
|
+
};
|
|
123928
124348
|
export declare type MutationCopyDefaultSpacePermissionsArgs = {
|
|
123929
124349
|
spaceKey: Scalars['String']['input'];
|
|
123930
124350
|
};
|
|
@@ -124976,6 +125396,9 @@ export declare type MutationJira_SetBoardViewStatusColumnMappingArgs = {
|
|
|
124976
125396
|
export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
|
|
124977
125397
|
input: JiraSetBoardViewWorkflowSelectedInput;
|
|
124978
125398
|
};
|
|
125399
|
+
export declare type MutationJira_SetCapacityMostRecentSubRouteArgs = {
|
|
125400
|
+
input: JiraSetCapacityMostRecentSubRouteInput;
|
|
125401
|
+
};
|
|
124979
125402
|
export declare type MutationJira_SetFieldSetsPreferencesArgs = {
|
|
124980
125403
|
input: JiraSetFieldSetsPreferencesInput;
|
|
124981
125404
|
};
|
|
@@ -125108,6 +125531,10 @@ export declare type MutationKitsune_CreateSpaceArgs = {
|
|
|
125108
125531
|
name: Scalars['String']['input'];
|
|
125109
125532
|
workspaceAri: Scalars['ID']['input'];
|
|
125110
125533
|
};
|
|
125534
|
+
export declare type MutationKitsune_ImportFeedbackFromCsvArgs = {
|
|
125535
|
+
csv: Scalars['Upload']['input'];
|
|
125536
|
+
spaceAri: Scalars['ID']['input'];
|
|
125537
|
+
};
|
|
125111
125538
|
export declare type MutationKitsune_RemoveFeedbackArgs = {
|
|
125112
125539
|
feedbackAri: Scalars['ID']['input'];
|
|
125113
125540
|
};
|
|
@@ -125115,6 +125542,11 @@ export declare type MutationKitsune_SuggestSnippetsArgs = {
|
|
|
125115
125542
|
title: Scalars['String']['input'];
|
|
125116
125543
|
workspaceAri: Scalars['ID']['input'];
|
|
125117
125544
|
};
|
|
125545
|
+
export declare type MutationKitsune_UpdateFeedbackArgs = {
|
|
125546
|
+
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
125547
|
+
id: Scalars['ID']['input'];
|
|
125548
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
125549
|
+
};
|
|
125118
125550
|
export declare type MutationKitsune_UpdateSpaceArgs = {
|
|
125119
125551
|
id: Scalars['ID']['input'];
|
|
125120
125552
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -125680,6 +126112,9 @@ export declare type MutationSignInvocationTokenForUiArgs = {
|
|
|
125680
126112
|
export declare type MutationSoftDeleteSpaceArgs = {
|
|
125681
126113
|
spaceKey: Scalars['String']['input'];
|
|
125682
126114
|
};
|
|
126115
|
+
export declare type MutationSpf_AcceptProposedDateArgs = {
|
|
126116
|
+
input: SpfResolveProposedDateInput;
|
|
126117
|
+
};
|
|
125683
126118
|
export declare type MutationSpf_AddPlanOwnerArgs = {
|
|
125684
126119
|
input: SpfAddPlanOwnerInput;
|
|
125685
126120
|
};
|
|
@@ -125725,6 +126160,9 @@ export declare type MutationSpf_DeletePlanScenarioArgs = {
|
|
|
125725
126160
|
export declare type MutationSpf_DeletePlanScenarioInvestmentArgs = {
|
|
125726
126161
|
input: SpfDeletePlanScenarioInvestmentInput;
|
|
125727
126162
|
};
|
|
126163
|
+
export declare type MutationSpf_RejectProposedDateArgs = {
|
|
126164
|
+
input: SpfResolveProposedDateInput;
|
|
126165
|
+
};
|
|
125728
126166
|
export declare type MutationSpf_RemovePlanOwnerArgs = {
|
|
125729
126167
|
input: SpfRemovePlanOwnerInput;
|
|
125730
126168
|
};
|
|
@@ -125859,6 +126297,9 @@ export declare type MutationStakeholderComms_PermanentlyDeletePageArgs = {
|
|
|
125859
126297
|
export declare type MutationStakeholderComms_PublishPageArgs = {
|
|
125860
126298
|
draftPageId: Scalars['String']['input'];
|
|
125861
126299
|
};
|
|
126300
|
+
export declare type MutationStakeholderComms_RecoverPageArgs = {
|
|
126301
|
+
pageId: Scalars['String']['input'];
|
|
126302
|
+
};
|
|
125862
126303
|
export declare type MutationStakeholderComms_RemoveCustomDomainArgs = {
|
|
125863
126304
|
input: StakeholderCommsRemoveCustomDomainInput;
|
|
125864
126305
|
};
|
|
@@ -129201,7 +129642,10 @@ export declare type Query = {
|
|
|
129201
129642
|
assetsDM_savedSearchDetails?: Maybe<AssetsDmSavedSearchDetails>;
|
|
129202
129643
|
assetsDM_savedSearchesList?: Maybe<AssetsDmSavedSearchesList>;
|
|
129203
129644
|
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
129645
|
+
assets_objectById?: Maybe<AssetsObjectNode>;
|
|
129646
|
+
assets_objectTypeAttributesBySchemaIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
129204
129647
|
assets_objectTypesByIds?: Maybe<Array<Maybe<AssetsObjectType>>>;
|
|
129648
|
+
assets_objectsByAQL?: Maybe<AssetsObjectAqlResult>;
|
|
129205
129649
|
assets_objectsByIds?: Maybe<Array<Maybe<AssetsObject>>>;
|
|
129206
129650
|
assets_schemasByIds?: Maybe<Array<Maybe<AssetsSchema>>>;
|
|
129207
129651
|
atlasGoalsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
@@ -129446,6 +129890,7 @@ export declare type Query = {
|
|
|
129446
129890
|
cpls_peopleView?: Maybe<CplsPeopleView>;
|
|
129447
129891
|
cpls_settings?: Maybe<CplsSettings>;
|
|
129448
129892
|
cpls_testFeatureGate?: Maybe<Scalars['Boolean']['output']>;
|
|
129893
|
+
cpls_timeCells?: Maybe<Array<CplsTimeCell>>;
|
|
129449
129894
|
cpls_workView?: Maybe<CplsWorkView>;
|
|
129450
129895
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
129451
129896
|
crossProjectIssueMentionsInComments?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
@@ -130968,9 +131413,21 @@ export declare type QueryAssetsDm_TransformedDataArgs = {
|
|
|
130968
131413
|
pagination?: InputMaybe<AssetsDmPaginationInput>;
|
|
130969
131414
|
workspaceId: Scalars['ID']['input'];
|
|
130970
131415
|
};
|
|
131416
|
+
export declare type QueryAssets_ObjectByIdArgs = {
|
|
131417
|
+
id: Scalars['ID']['input'];
|
|
131418
|
+
};
|
|
131419
|
+
export declare type QueryAssets_ObjectTypeAttributesBySchemaIdsArgs = {
|
|
131420
|
+
schemaIds: Array<Scalars['ID']['input']>;
|
|
131421
|
+
};
|
|
130971
131422
|
export declare type QueryAssets_ObjectTypesByIdsArgs = {
|
|
130972
131423
|
ids: Array<Scalars['ID']['input']>;
|
|
130973
131424
|
};
|
|
131425
|
+
export declare type QueryAssets_ObjectsByAqlArgs = {
|
|
131426
|
+
cloudId: Scalars['ID']['input'];
|
|
131427
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
131428
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
131429
|
+
query: Scalars['String']['input'];
|
|
131430
|
+
};
|
|
130974
131431
|
export declare type QueryAssets_ObjectsByIdsArgs = {
|
|
130975
131432
|
ids: Array<Scalars['ID']['input']>;
|
|
130976
131433
|
};
|
|
@@ -132108,6 +132565,9 @@ export declare type QueryCpls_SettingsArgs = {
|
|
|
132108
132565
|
export declare type QueryCpls_TestFeatureGateArgs = {
|
|
132109
132566
|
cloudId: Scalars['ID']['input'];
|
|
132110
132567
|
};
|
|
132568
|
+
export declare type QueryCpls_TimeCellsArgs = {
|
|
132569
|
+
scopeId: Scalars['ID']['input'];
|
|
132570
|
+
};
|
|
132111
132571
|
export declare type QueryCpls_WorkViewArgs = {
|
|
132112
132572
|
filters?: InputMaybe<CplsFiltersInput>;
|
|
132113
132573
|
id: Scalars['ID']['input'];
|
|
@@ -134651,6 +135111,7 @@ export declare enum RadarEntityType {
|
|
|
134651
135111
|
Proposal = "proposal",
|
|
134652
135112
|
ProposedMovement = "proposedMovement",
|
|
134653
135113
|
Team = "team",
|
|
135114
|
+
View = "view",
|
|
134654
135115
|
Worker = "worker"
|
|
134655
135116
|
}
|
|
134656
135117
|
export declare type RadarFieldDefinition = {
|
|
@@ -137499,7 +137960,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
137499
137960
|
type: SearchResultType;
|
|
137500
137961
|
url: Scalars['String']['output'];
|
|
137501
137962
|
};
|
|
137502
|
-
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
137963
|
+
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
137503
137964
|
export declare type SearchResultFederated = SearchResult & {
|
|
137504
137965
|
__typename?: 'SearchResultFederated';
|
|
137505
137966
|
connectorType?: Maybe<Scalars['String']['output']>;
|
|
@@ -158398,11 +158859,11 @@ export declare type SpfAskUpdate = {
|
|
|
158398
158859
|
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
158399
158860
|
description?: Maybe<Scalars['String']['output']>;
|
|
158400
158861
|
id: Scalars['ID']['output'];
|
|
158401
|
-
newProposedBy?: Maybe<
|
|
158862
|
+
newProposedBy?: Maybe<User>;
|
|
158402
158863
|
newProposedDate?: Maybe<SpfAskTargetDate>;
|
|
158403
158864
|
newStatus?: Maybe<SpfAskStatus>;
|
|
158404
158865
|
newTargetDate?: Maybe<SpfAskTargetDate>;
|
|
158405
|
-
oldProposedBy?: Maybe<
|
|
158866
|
+
oldProposedBy?: Maybe<User>;
|
|
158406
158867
|
oldProposedDate?: Maybe<SpfAskTargetDate>;
|
|
158407
158868
|
oldStatus?: Maybe<SpfAskStatus>;
|
|
158408
158869
|
oldTargetDate?: Maybe<SpfAskTargetDate>;
|
|
@@ -158491,7 +158952,6 @@ export declare type SpfCreatePlanScenarioInvestmentInput = {
|
|
|
158491
158952
|
committedOwnerId?: InputMaybe<Scalars['String']['input']>;
|
|
158492
158953
|
investmentId: Scalars['String']['input'];
|
|
158493
158954
|
planScenarioId: Scalars['ID']['input'];
|
|
158494
|
-
ranking: Scalars['Int']['input'];
|
|
158495
158955
|
};
|
|
158496
158956
|
export declare type SpfDeleteAskCommentInput = {
|
|
158497
158957
|
id: Scalars['ID']['input'];
|
|
@@ -158653,7 +159113,6 @@ export declare type SpfPlanScenarioInvestment = Node & {
|
|
|
158653
159113
|
id: Scalars['ID']['output'];
|
|
158654
159114
|
investment?: Maybe<SpfInvestment>;
|
|
158655
159115
|
planScenarioId: Scalars['String']['output'];
|
|
158656
|
-
ranking: Scalars['Int']['output'];
|
|
158657
159116
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
158658
159117
|
updatedBy?: Maybe<User>;
|
|
158659
159118
|
};
|
|
@@ -158715,6 +159174,9 @@ export declare type SpfResolveImpactedWorkUrlPayload = {
|
|
|
158715
159174
|
__typename?: 'SpfResolveImpactedWorkUrlPayload';
|
|
158716
159175
|
impactedWorkId?: Maybe<Scalars['String']['output']>;
|
|
158717
159176
|
};
|
|
159177
|
+
export declare type SpfResolveProposedDateInput = {
|
|
159178
|
+
askId: Scalars['String']['input'];
|
|
159179
|
+
};
|
|
158718
159180
|
export declare type SpfUpdateAskCommentDataInput = {
|
|
158719
159181
|
data: Scalars['String']['input'];
|
|
158720
159182
|
id: Scalars['ID']['input'];
|
|
@@ -159673,6 +160135,7 @@ export declare type StakeholderCommsPage = {
|
|
|
159673
160135
|
hiddenFromSearch?: Maybe<Scalars['Boolean']['output']>;
|
|
159674
160136
|
id: Scalars['String']['output'];
|
|
159675
160137
|
name: Scalars['String']['output'];
|
|
160138
|
+
pageStatus?: Maybe<StakeholderCommsPageStatus>;
|
|
159676
160139
|
pageTheme?: Maybe<StakeholderCommsPageTheme>;
|
|
159677
160140
|
pageThemeMode?: Maybe<StakeholderCommsPageThemeMode>;
|
|
159678
160141
|
pageType?: Maybe<StakeholderCommsPageType>;
|
|
@@ -159713,6 +160176,14 @@ export declare type StakeholderCommsPageResponse = {
|
|
|
159713
160176
|
error?: Maybe<Scalars['String']['output']>;
|
|
159714
160177
|
page?: Maybe<StakeholderCommsPage>;
|
|
159715
160178
|
};
|
|
160179
|
+
export declare enum StakeholderCommsPageStatus {
|
|
160180
|
+
Draft = "DRAFT",
|
|
160181
|
+
Published = "PUBLISHED",
|
|
160182
|
+
PublishedWithChanges = "PUBLISHED_WITH_CHANGES",
|
|
160183
|
+
SoftDeleted = "SOFT_DELETED",
|
|
160184
|
+
Unpublished = "UNPUBLISHED",
|
|
160185
|
+
UnpublishedWithChanges = "UNPUBLISHED_WITH_CHANGES"
|
|
160186
|
+
}
|
|
159716
160187
|
export declare enum StakeholderCommsPageStatusFilter {
|
|
159717
160188
|
All = "ALL",
|
|
159718
160189
|
Draft = "DRAFT",
|
|
@@ -161086,20 +161557,30 @@ export declare type TeamChildrenEdge = {
|
|
|
161086
161557
|
cursor: Scalars['String']['output'];
|
|
161087
161558
|
node?: Maybe<TeamV2>;
|
|
161088
161559
|
};
|
|
161560
|
+
export declare type TeamCreatePayload = Payload & {
|
|
161561
|
+
__typename?: 'TeamCreatePayload';
|
|
161562
|
+
errors?: Maybe<Array<MutationError>>;
|
|
161563
|
+
success: Scalars['Boolean']['output'];
|
|
161564
|
+
team?: Maybe<TeamV2>;
|
|
161565
|
+
};
|
|
161089
161566
|
export declare type TeamCreateTeamInput = {
|
|
161090
161567
|
description: Scalars['String']['input'];
|
|
161091
|
-
directoryId: Scalars['ID']['input'];
|
|
161092
161568
|
displayName: Scalars['String']['input'];
|
|
161093
161569
|
members?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
161094
161570
|
membershipSettings: TeamMembershipSettings;
|
|
161571
|
+
scopeId: Scalars['ID']['input'];
|
|
161095
161572
|
typeId?: InputMaybe<Scalars['ID']['input']>;
|
|
161096
161573
|
};
|
|
161097
|
-
export declare type
|
|
161098
|
-
__typename?: '
|
|
161574
|
+
export declare type TeamDeletePayload = Payload & {
|
|
161575
|
+
__typename?: 'TeamDeletePayload';
|
|
161099
161576
|
errors?: Maybe<Array<MutationError>>;
|
|
161100
161577
|
success: Scalars['Boolean']['output'];
|
|
161101
161578
|
team?: Maybe<TeamV2>;
|
|
161102
161579
|
};
|
|
161580
|
+
export declare type TeamDeleteTeamInput = {
|
|
161581
|
+
scopeId: Scalars['ID']['input'];
|
|
161582
|
+
teamId: Scalars['ID']['input'];
|
|
161583
|
+
};
|
|
161103
161584
|
export declare type TeamHierarchy = {
|
|
161104
161585
|
__typename?: 'TeamHierarchy';
|
|
161105
161586
|
ancestorErrors?: Maybe<Array<TeamHierarchyErrors>>;
|
|
@@ -161180,12 +161661,14 @@ export declare type TeamMutation = {
|
|
|
161180
161661
|
addParent?: Maybe<TeamV2>;
|
|
161181
161662
|
assignTeamToType?: Maybe<TeamV2>;
|
|
161182
161663
|
bulkAssignTeamsToType?: Maybe<Array<Maybe<TeamV2>>>;
|
|
161183
|
-
createTeam?: Maybe<
|
|
161664
|
+
createTeam?: Maybe<TeamCreatePayload>;
|
|
161184
161665
|
createTeamType?: Maybe<TeamType>;
|
|
161666
|
+
deleteTeam?: Maybe<TeamDeletePayload>;
|
|
161185
161667
|
deleteTeamType?: Maybe<TeamType>;
|
|
161186
161668
|
removeChild?: Maybe<TeamV2>;
|
|
161187
161669
|
removeParent?: Maybe<TeamV2>;
|
|
161188
161670
|
updateRoleAssignments?: Maybe<TeamUpdateRoleAssignmentsResponse>;
|
|
161671
|
+
updateTeam?: Maybe<TeamUpdatePayload>;
|
|
161189
161672
|
updateType?: Maybe<TeamType>;
|
|
161190
161673
|
};
|
|
161191
161674
|
export declare type TeamMutationAddChildArgs = {
|
|
@@ -161214,6 +161697,9 @@ export declare type TeamMutationCreateTeamTypeArgs = {
|
|
|
161214
161697
|
scopeId: Scalars['ID']['input'];
|
|
161215
161698
|
typeData: TeamTypeCreationPayload;
|
|
161216
161699
|
};
|
|
161700
|
+
export declare type TeamMutationDeleteTeamArgs = {
|
|
161701
|
+
input: TeamDeleteTeamInput;
|
|
161702
|
+
};
|
|
161217
161703
|
export declare type TeamMutationDeleteTeamTypeArgs = {
|
|
161218
161704
|
id: Scalars['ID']['input'];
|
|
161219
161705
|
};
|
|
@@ -161232,6 +161718,9 @@ export declare type TeamMutationUpdateRoleAssignmentsArgs = {
|
|
|
161232
161718
|
principalsToRemove: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
161233
161719
|
role: TeamRole;
|
|
161234
161720
|
};
|
|
161721
|
+
export declare type TeamMutationUpdateTeamArgs = {
|
|
161722
|
+
input: TeamUpdateTeamInput;
|
|
161723
|
+
};
|
|
161235
161724
|
export declare type TeamMutationUpdateTypeArgs = {
|
|
161236
161725
|
id: Scalars['ID']['input'];
|
|
161237
161726
|
typeData: TeamTypeUpdatePayload;
|
|
@@ -161427,11 +161916,23 @@ export declare type TeamTypeUpdatePayload = {
|
|
|
161427
161916
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
161428
161917
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
161429
161918
|
};
|
|
161919
|
+
export declare type TeamUpdatePayload = Payload & {
|
|
161920
|
+
__typename?: 'TeamUpdatePayload';
|
|
161921
|
+
errors?: Maybe<Array<MutationError>>;
|
|
161922
|
+
success: Scalars['Boolean']['output'];
|
|
161923
|
+
team?: Maybe<TeamV2>;
|
|
161924
|
+
};
|
|
161430
161925
|
export declare type TeamUpdateRoleAssignmentsResponse = {
|
|
161431
161926
|
__typename?: 'TeamUpdateRoleAssignmentsResponse';
|
|
161432
161927
|
successfullyAddedPrincipals?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
161433
161928
|
successfullyRemovedPrincipals?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
161434
161929
|
};
|
|
161930
|
+
export declare type TeamUpdateTeamInput = {
|
|
161931
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
161932
|
+
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
161933
|
+
scopeId: Scalars['ID']['input'];
|
|
161934
|
+
teamId: Scalars['ID']['input'];
|
|
161935
|
+
};
|
|
161435
161936
|
export declare type TeamV2 = Node & {
|
|
161436
161937
|
__typename?: 'TeamV2';
|
|
161437
161938
|
creator?: Maybe<User>;
|
|
@@ -162400,6 +162901,18 @@ export declare type TownsquareFocusAppCapabilities = {
|
|
|
162400
162901
|
__typename?: 'TownsquareFocusAppCapabilities';
|
|
162401
162902
|
canViewFocusAreas?: Maybe<Scalars['Boolean']['output']>;
|
|
162402
162903
|
};
|
|
162904
|
+
export declare type TownsquareFromGoalUpdate = {
|
|
162905
|
+
__typename?: 'TownsquareFromGoalUpdate';
|
|
162906
|
+
goalUpdate?: Maybe<TownsquareGoalUpdate>;
|
|
162907
|
+
};
|
|
162908
|
+
export declare type TownsquareFromMetricCreation = {
|
|
162909
|
+
__typename?: 'TownsquareFromMetricCreation';
|
|
162910
|
+
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
162911
|
+
};
|
|
162912
|
+
export declare type TownsquareFromMetricUpdate = {
|
|
162913
|
+
__typename?: 'TownsquareFromMetricUpdate';
|
|
162914
|
+
updateDate?: Maybe<Scalars['DateTime']['output']>;
|
|
162915
|
+
};
|
|
162403
162916
|
export declare type TownsquareFusionDetails = {
|
|
162404
162917
|
__typename?: 'TownsquareFusionDetails';
|
|
162405
162918
|
issue?: Maybe<JiraIssue>;
|
|
@@ -163560,6 +164073,7 @@ export declare type TownsquareMetricUpdateInput = {
|
|
|
163560
164073
|
export declare type TownsquareMetricValue = Node & {
|
|
163561
164074
|
__typename?: 'TownsquareMetricValue';
|
|
163562
164075
|
id: Scalars['ID']['output'];
|
|
164076
|
+
origin?: Maybe<TownsquareMetricValueOrigin>;
|
|
163563
164077
|
time?: Maybe<Scalars['DateTime']['output']>;
|
|
163564
164078
|
value?: Maybe<Scalars['Float']['output']>;
|
|
163565
164079
|
};
|
|
@@ -163573,6 +164087,7 @@ export declare type TownsquareMetricValueEdge = {
|
|
|
163573
164087
|
cursor: Scalars['String']['output'];
|
|
163574
164088
|
node?: Maybe<TownsquareMetricValue>;
|
|
163575
164089
|
};
|
|
164090
|
+
export declare type TownsquareMetricValueOrigin = TownsquareFromGoalUpdate | TownsquareFromMetricCreation | TownsquareFromMetricUpdate;
|
|
163576
164091
|
export declare enum TownsquareMetricValueSortEnum {
|
|
163577
164092
|
IdAsc = "ID_ASC",
|
|
163578
164093
|
IdDesc = "ID_DESC",
|
|
@@ -167931,6 +168446,8 @@ export declare type TrelloOAuth2Client = {
|
|
|
167931
168446
|
appContactLink?: Maybe<Scalars['String']['output']>;
|
|
167932
168447
|
appDescription?: Maybe<Scalars['String']['output']>;
|
|
167933
168448
|
appLogoUrl?: Maybe<Scalars['String']['output']>;
|
|
168449
|
+
appPrivacyPolicyLink?: Maybe<Scalars['String']['output']>;
|
|
168450
|
+
appStoresUserData?: Maybe<Scalars['Boolean']['output']>;
|
|
167934
168451
|
appVendorName?: Maybe<Scalars['String']['output']>;
|
|
167935
168452
|
callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
|
|
167936
168453
|
clientId: Scalars['String']['output'];
|