@forge/cli-shared 6.4.0-next.8 → 6.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +60 -0
- package/out/graphql/graphql-types.d.ts +817 -71
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +89 -48
- package/out/service/statsig-service.d.ts +1 -1
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +9 -5
- package/out/ui/text.d.ts +38 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +51 -0
- package/package.json +2 -2
|
@@ -1307,6 +1307,35 @@ export declare type AppStorageMutationDeleteAppStoredEntityArgs = {
|
|
|
1307
1307
|
export declare type AppStorageMutationSetAppStoredEntityArgs = {
|
|
1308
1308
|
input: SetAppStoredEntityMutationInput;
|
|
1309
1309
|
};
|
|
1310
|
+
export declare type AppStorageSqlDatabaseColumn = {
|
|
1311
|
+
__typename?: 'AppStorageSqlDatabaseColumn';
|
|
1312
|
+
default: Scalars['String']['output'];
|
|
1313
|
+
extra: Scalars['String']['output'];
|
|
1314
|
+
field: Scalars['String']['output'];
|
|
1315
|
+
key: Scalars['String']['output'];
|
|
1316
|
+
null: Scalars['String']['output'];
|
|
1317
|
+
type: Scalars['String']['output'];
|
|
1318
|
+
};
|
|
1319
|
+
export declare type AppStorageSqlDatabaseInput = {
|
|
1320
|
+
installationId: Scalars['ID']['input'];
|
|
1321
|
+
};
|
|
1322
|
+
export declare type AppStorageSqlDatabaseMigration = {
|
|
1323
|
+
__typename?: 'AppStorageSqlDatabaseMigration';
|
|
1324
|
+
id: Scalars['Int']['output'];
|
|
1325
|
+
migratedAt: Scalars['String']['output'];
|
|
1326
|
+
name: Scalars['String']['output'];
|
|
1327
|
+
};
|
|
1328
|
+
export declare type AppStorageSqlDatabasePayload = {
|
|
1329
|
+
__typename?: 'AppStorageSqlDatabasePayload';
|
|
1330
|
+
databaseSize: Scalars['Int']['output'];
|
|
1331
|
+
migrations: Array<Maybe<AppStorageSqlDatabaseMigration>>;
|
|
1332
|
+
tables: Array<Maybe<AppStorageSqlDatabaseTable>>;
|
|
1333
|
+
};
|
|
1334
|
+
export declare type AppStorageSqlDatabaseTable = {
|
|
1335
|
+
__typename?: 'AppStorageSqlDatabaseTable';
|
|
1336
|
+
columns: Array<AppStorageSqlDatabaseColumn>;
|
|
1337
|
+
name: Scalars['String']['output'];
|
|
1338
|
+
};
|
|
1310
1339
|
export declare type AppStoredCustomEntity = {
|
|
1311
1340
|
__typename?: 'AppStoredCustomEntity';
|
|
1312
1341
|
entityName: Scalars['String']['output'];
|
|
@@ -1954,9 +1983,21 @@ export declare type BasicBoardFeatureView = Node & {
|
|
|
1954
1983
|
status?: Maybe<Scalars['String']['output']>;
|
|
1955
1984
|
title?: Maybe<Scalars['String']['output']>;
|
|
1956
1985
|
};
|
|
1986
|
+
export declare type BitbucketPrAuthor = {
|
|
1987
|
+
__typename?: 'BitbucketPRAuthor';
|
|
1988
|
+
authorAccountId?: Maybe<Scalars['String']['output']>;
|
|
1989
|
+
};
|
|
1957
1990
|
export declare enum BitbucketPermission {
|
|
1958
1991
|
Admin = "ADMIN"
|
|
1959
1992
|
}
|
|
1993
|
+
export declare type BitbucketPullRequest = Node & {
|
|
1994
|
+
__typename?: 'BitbucketPullRequest';
|
|
1995
|
+
author?: Maybe<BitbucketPrAuthor>;
|
|
1996
|
+
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
1997
|
+
id: Scalars['ID']['output'];
|
|
1998
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
1999
|
+
title: Scalars['String']['output'];
|
|
2000
|
+
};
|
|
1960
2001
|
export declare type BitbucketQuery = {
|
|
1961
2002
|
__typename?: 'BitbucketQuery';
|
|
1962
2003
|
bitbucketRepositories?: Maybe<Array<Maybe<BitbucketRepository>>>;
|
|
@@ -2688,6 +2729,8 @@ export declare type CcpOffering = CommerceOffering & Node & {
|
|
|
2688
2729
|
pricingType?: Maybe<CcpPricingType>;
|
|
2689
2730
|
product?: Maybe<CcpProduct>;
|
|
2690
2731
|
productKey?: Maybe<Scalars['ID']['output']>;
|
|
2732
|
+
productListing?: Maybe<ProductListingResult>;
|
|
2733
|
+
requiredRelationships?: Maybe<Array<Maybe<CcpOfferingRelationship>>>;
|
|
2691
2734
|
sku?: Maybe<Scalars['String']['output']>;
|
|
2692
2735
|
slugs?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
2693
2736
|
status?: Maybe<CcpOfferingStatus>;
|
|
@@ -2734,6 +2777,19 @@ export declare type CcpOfferingGroup = {
|
|
|
2734
2777
|
export declare enum CcpOfferingHostingType {
|
|
2735
2778
|
Cloud = "CLOUD"
|
|
2736
2779
|
}
|
|
2780
|
+
export declare type CcpOfferingRelationship = {
|
|
2781
|
+
__typename?: 'CcpOfferingRelationship';
|
|
2782
|
+
catalogAccountId?: Maybe<Scalars['String']['output']>;
|
|
2783
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
2784
|
+
from?: Maybe<CcpRelationshipNode>;
|
|
2785
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
2786
|
+
relationshipTemplateId?: Maybe<Scalars['String']['output']>;
|
|
2787
|
+
relationshipType?: Maybe<CcpRelationshipType>;
|
|
2788
|
+
status?: Maybe<CcpRelationshipStatus>;
|
|
2789
|
+
to?: Maybe<CcpRelationshipNode>;
|
|
2790
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
2791
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
2792
|
+
};
|
|
2737
2793
|
export declare enum CcpOfferingStatus {
|
|
2738
2794
|
Active = "ACTIVE",
|
|
2739
2795
|
AtNotice = "AT_NOTICE",
|
|
@@ -2882,12 +2938,49 @@ export declare type CcpQueryApiProductArgs = {
|
|
|
2882
2938
|
export declare type CcpQueryApiTransactionAccountArgs = {
|
|
2883
2939
|
id: Scalars['ID']['input'];
|
|
2884
2940
|
};
|
|
2941
|
+
export declare type CcpRelationshipCardinality = {
|
|
2942
|
+
__typename?: 'CcpRelationshipCardinality';
|
|
2943
|
+
max?: Maybe<Scalars['Int']['output']>;
|
|
2944
|
+
min?: Maybe<Scalars['Int']['output']>;
|
|
2945
|
+
};
|
|
2946
|
+
export declare type CcpRelationshipGroup = {
|
|
2947
|
+
__typename?: 'CcpRelationshipGroup';
|
|
2948
|
+
groupCardinality?: Maybe<CcpRelationshipGroupCardinality>;
|
|
2949
|
+
groupName?: Maybe<Scalars['String']['output']>;
|
|
2950
|
+
offerings?: Maybe<Array<Maybe<CcpOffering>>>;
|
|
2951
|
+
};
|
|
2952
|
+
export declare type CcpRelationshipGroupCardinality = {
|
|
2953
|
+
__typename?: 'CcpRelationshipGroupCardinality';
|
|
2954
|
+
max?: Maybe<Scalars['Int']['output']>;
|
|
2955
|
+
};
|
|
2956
|
+
export declare type CcpRelationshipNode = {
|
|
2957
|
+
__typename?: 'CcpRelationshipNode';
|
|
2958
|
+
cardinality?: Maybe<CcpRelationshipCardinality>;
|
|
2959
|
+
groups?: Maybe<Array<Maybe<CcpRelationshipGroup>>>;
|
|
2960
|
+
selector?: Maybe<Scalars['String']['output']>;
|
|
2961
|
+
};
|
|
2885
2962
|
export declare enum CcpRelationshipPricingType {
|
|
2886
2963
|
AdvantagePricing = "ADVANTAGE_PRICING",
|
|
2887
2964
|
CurrencyGenerated = "CURRENCY_GENERATED",
|
|
2888
2965
|
NextPricing = "NEXT_PRICING",
|
|
2889
2966
|
SyntheticGenerated = "SYNTHETIC_GENERATED"
|
|
2890
2967
|
}
|
|
2968
|
+
export declare enum CcpRelationshipStatus {
|
|
2969
|
+
Active = "ACTIVE",
|
|
2970
|
+
Deprecated = "DEPRECATED"
|
|
2971
|
+
}
|
|
2972
|
+
export declare enum CcpRelationshipType {
|
|
2973
|
+
AddonDependence = "ADDON_DEPENDENCE",
|
|
2974
|
+
AppCompatibility = "APP_COMPATIBILITY",
|
|
2975
|
+
Collection = "COLLECTION",
|
|
2976
|
+
CollectionTrial = "COLLECTION_TRIAL",
|
|
2977
|
+
Enterprise = "ENTERPRISE",
|
|
2978
|
+
EnterpriseSandboxGrant = "ENTERPRISE_SANDBOX_GRANT",
|
|
2979
|
+
FamilyContainer = "FAMILY_CONTAINER",
|
|
2980
|
+
MultiInstance = "MULTI_INSTANCE",
|
|
2981
|
+
SandboxDependence = "SANDBOX_DEPENDENCE",
|
|
2982
|
+
SandboxGrant = "SANDBOX_GRANT"
|
|
2983
|
+
}
|
|
2891
2984
|
export declare type CcpSubscription = CommerceSubscription & {
|
|
2892
2985
|
__typename?: 'CcpSubscription';
|
|
2893
2986
|
accountDetails?: Maybe<CcpAccountDetails>;
|
|
@@ -3471,6 +3564,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3471
3564
|
removeComponentLabels?: Maybe<RemoveCompassComponentLabelsPayload>;
|
|
3472
3565
|
removeScorecardFromComponent?: Maybe<RemoveCompassScorecardFromComponentPayload>;
|
|
3473
3566
|
removeTeamLabels?: Maybe<CompassRemoveTeamLabelsPayload>;
|
|
3567
|
+
revokeJqlMetricSourceUser?: Maybe<CompassRevokeJqlMetricSourceUserPayload>;
|
|
3474
3568
|
synchronizeLinkAssociations?: Maybe<CompassSynchronizeLinkAssociationsPayload>;
|
|
3475
3569
|
unlinkExternalSource?: Maybe<UnlinkExternalSourcePayload>;
|
|
3476
3570
|
updateAnnouncement?: Maybe<CompassUpdateAnnouncementPayload>;
|
|
@@ -3676,6 +3770,9 @@ export declare type CompassCatalogMutationApiRemoveScorecardFromComponentArgs =
|
|
|
3676
3770
|
export declare type CompassCatalogMutationApiRemoveTeamLabelsArgs = {
|
|
3677
3771
|
input: CompassRemoveTeamLabelsInput;
|
|
3678
3772
|
};
|
|
3773
|
+
export declare type CompassCatalogMutationApiRevokeJqlMetricSourceUserArgs = {
|
|
3774
|
+
input: CompassRevokeJqlMetricSourceUserInput;
|
|
3775
|
+
};
|
|
3679
3776
|
export declare type CompassCatalogMutationApiSynchronizeLinkAssociationsArgs = {
|
|
3680
3777
|
input?: InputMaybe<CompassSynchronizeLinkAssociationsInput>;
|
|
3681
3778
|
};
|
|
@@ -4824,6 +4921,8 @@ export declare type CompassCustomFieldFilter = {
|
|
|
4824
4921
|
export declare type CompassCustomFieldFilterInput = {
|
|
4825
4922
|
boolean?: InputMaybe<CompassComponentCustomBooleanFieldFilterInput>;
|
|
4826
4923
|
multiselect?: InputMaybe<CompassCustomMultiselectFieldFilterInput>;
|
|
4924
|
+
singleSelect?: InputMaybe<CompassCustomSingleSelectFieldFilterInput>;
|
|
4925
|
+
user?: InputMaybe<CompassCustomUserFieldFilterInput>;
|
|
4827
4926
|
};
|
|
4828
4927
|
export declare type CompassCustomFieldInput = {
|
|
4829
4928
|
booleanField?: InputMaybe<CompassCustomBooleanFieldInput>;
|
|
@@ -4909,7 +5008,6 @@ export declare type CompassCustomPermissionConfigs = {
|
|
|
4909
5008
|
editCustomFieldDefinitions?: Maybe<CompassCustomPermissionConfig>;
|
|
4910
5009
|
modifyScorecard?: Maybe<CompassCustomPermissionConfig>;
|
|
4911
5010
|
preset?: Maybe<Scalars['String']['output']>;
|
|
4912
|
-
viewCustomFieldDefinitions?: Maybe<CompassCustomPermissionConfig>;
|
|
4913
5011
|
};
|
|
4914
5012
|
export declare type CompassCustomPermissionConfigsResult = CompassCustomPermissionConfigs | QueryError;
|
|
4915
5013
|
export declare enum CompassCustomPermissionPreset {
|
|
@@ -4936,6 +5034,17 @@ export declare type CompassCustomSingleSelectFieldDefinition = CompassCustomFiel
|
|
|
4936
5034
|
name?: Maybe<Scalars['String']['output']>;
|
|
4937
5035
|
options?: Maybe<Array<CompassCustomSelectFieldOption>>;
|
|
4938
5036
|
};
|
|
5037
|
+
export declare type CompassCustomSingleSelectFieldFilter = CompassCustomFieldFilter & {
|
|
5038
|
+
__typename?: 'CompassCustomSingleSelectFieldFilter';
|
|
5039
|
+
comparator: Scalars['String']['output'];
|
|
5040
|
+
customFieldId: Scalars['String']['output'];
|
|
5041
|
+
values: Array<Scalars['String']['output']>;
|
|
5042
|
+
};
|
|
5043
|
+
export declare type CompassCustomSingleSelectFieldFilterInput = {
|
|
5044
|
+
comparator?: InputMaybe<CustomSingleSelectFieldInputComparators>;
|
|
5045
|
+
customFieldId: Scalars['String']['input'];
|
|
5046
|
+
value: Array<Scalars['ID']['input']>;
|
|
5047
|
+
};
|
|
4939
5048
|
export declare type CompassCustomSingleSelectFieldInput = {
|
|
4940
5049
|
annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
|
|
4941
5050
|
definitionId: Scalars['ID']['input'];
|
|
@@ -4975,6 +5084,17 @@ export declare type CompassCustomUserFieldDefinition = CompassCustomFieldDefinit
|
|
|
4975
5084
|
id: Scalars['ID']['output'];
|
|
4976
5085
|
name?: Maybe<Scalars['String']['output']>;
|
|
4977
5086
|
};
|
|
5087
|
+
export declare type CompassCustomUserFieldFilter = CompassCustomFieldFilter & {
|
|
5088
|
+
__typename?: 'CompassCustomUserFieldFilter';
|
|
5089
|
+
comparator: Scalars['String']['output'];
|
|
5090
|
+
customFieldId: Scalars['String']['output'];
|
|
5091
|
+
values: Array<Scalars['String']['output']>;
|
|
5092
|
+
};
|
|
5093
|
+
export declare type CompassCustomUserFieldFilterInput = {
|
|
5094
|
+
comparator?: InputMaybe<CustomUserFieldInputComparators>;
|
|
5095
|
+
customFieldId: Scalars['String']['input'];
|
|
5096
|
+
values: Array<Scalars['ID']['input']>;
|
|
5097
|
+
};
|
|
4978
5098
|
export declare type CompassCustomUserFieldInput = {
|
|
4979
5099
|
annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
|
|
4980
5100
|
definitionId: Scalars['ID']['input'];
|
|
@@ -5359,7 +5479,6 @@ export declare type CompassGlobalPermissions = {
|
|
|
5359
5479
|
createScorecards?: Maybe<CompassPermissionResult>;
|
|
5360
5480
|
deleteIncomingWebhooks?: Maybe<CompassPermissionResult>;
|
|
5361
5481
|
editCustomFieldDefinitions?: Maybe<CompassPermissionResult>;
|
|
5362
|
-
viewCustomFieldDefinitions?: Maybe<CompassPermissionResult>;
|
|
5363
5482
|
viewMetricDefinitions?: Maybe<CompassPermissionResult>;
|
|
5364
5483
|
};
|
|
5365
5484
|
export declare type CompassGlobalPermissionsResult = CompassGlobalPermissions | QueryError;
|
|
@@ -6097,6 +6216,15 @@ export declare type CompassRepositoryValue = {
|
|
|
6097
6216
|
export declare type CompassRepositoryValueInput = {
|
|
6098
6217
|
exists: Scalars['Boolean']['input'];
|
|
6099
6218
|
};
|
|
6219
|
+
export declare type CompassRevokeJqlMetricSourceUserInput = {
|
|
6220
|
+
metricSourceId: Scalars['ID']['input'];
|
|
6221
|
+
};
|
|
6222
|
+
export declare type CompassRevokeJqlMetricSourceUserPayload = Payload & {
|
|
6223
|
+
__typename?: 'CompassRevokeJQLMetricSourceUserPayload';
|
|
6224
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6225
|
+
success: Scalars['Boolean']['output'];
|
|
6226
|
+
updatedMetricSource?: Maybe<CompassMetricSource>;
|
|
6227
|
+
};
|
|
6100
6228
|
export declare type CompassRichTextObject = {
|
|
6101
6229
|
__typename?: 'CompassRichTextObject';
|
|
6102
6230
|
adf?: Maybe<Scalars['String']['output']>;
|
|
@@ -16401,6 +16529,12 @@ export declare enum CustomMultiselectFieldInputComparators {
|
|
|
16401
16529
|
ContainNone = "CONTAIN_NONE",
|
|
16402
16530
|
NotSet = "NOT_SET"
|
|
16403
16531
|
}
|
|
16532
|
+
export declare enum CustomSingleSelectFieldInputComparators {
|
|
16533
|
+
ContainAny = "CONTAIN_ANY",
|
|
16534
|
+
ContainNone = "CONTAIN_NONE",
|
|
16535
|
+
IsSet = "IS_SET",
|
|
16536
|
+
NotSet = "NOT_SET"
|
|
16537
|
+
}
|
|
16404
16538
|
export declare type CustomUiTunnelDefinition = {
|
|
16405
16539
|
__typename?: 'CustomUITunnelDefinition';
|
|
16406
16540
|
resourceKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -16410,6 +16544,11 @@ export declare type CustomUiTunnelDefinitionInput = {
|
|
|
16410
16544
|
resourceKey?: InputMaybe<Scalars['String']['input']>;
|
|
16411
16545
|
tunnelUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
16412
16546
|
};
|
|
16547
|
+
export declare enum CustomUserFieldInputComparators {
|
|
16548
|
+
ContainAny = "CONTAIN_ANY",
|
|
16549
|
+
IsSet = "IS_SET",
|
|
16550
|
+
NotSet = "NOT_SET"
|
|
16551
|
+
}
|
|
16413
16552
|
export declare type CustomerServiceAttribute = Node & {
|
|
16414
16553
|
__typename?: 'CustomerServiceAttribute';
|
|
16415
16554
|
config?: Maybe<CustomerServiceAttributeConfigMetadata>;
|
|
@@ -16687,6 +16826,10 @@ export declare enum CustomerServiceCustomDetailsEntityType {
|
|
|
16687
16826
|
Organization = "ORGANIZATION"
|
|
16688
16827
|
}
|
|
16689
16828
|
export declare type CustomerServiceCustomDetailsQueryResult = CustomerServiceCustomDetails | QueryError;
|
|
16829
|
+
export declare type CustomerServiceDefaultRoutingRuleInput = {
|
|
16830
|
+
issueTypeId: Scalars['String']['input'];
|
|
16831
|
+
projectId: Scalars['ID']['input'];
|
|
16832
|
+
};
|
|
16690
16833
|
export declare type CustomerServiceEntitledEntity = CustomerServiceIndividual | CustomerServiceOrganization;
|
|
16691
16834
|
export declare type CustomerServiceEntitlement = Node & {
|
|
16692
16835
|
__typename?: 'CustomerServiceEntitlement';
|
|
@@ -16794,12 +16937,14 @@ export declare type CustomerServiceMutationApi = {
|
|
|
16794
16937
|
createOrganization?: Maybe<CustomerServiceOrganizationCreatePayload>;
|
|
16795
16938
|
createOrganizationAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
|
|
16796
16939
|
createProduct?: Maybe<CustomerServiceProductCreatePayload>;
|
|
16940
|
+
createTemplateForm?: Maybe<CustomerServiceTemplateFormCreatePayload>;
|
|
16797
16941
|
deleteCustomDetail?: Maybe<CustomerServiceCustomDetailDeletePayload>;
|
|
16798
16942
|
deleteIndividualAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
|
|
16799
16943
|
deleteNote?: Maybe<CustomerServiceNoteDeletePayload>;
|
|
16800
16944
|
deleteOrganization?: Maybe<CustomerServiceOrganizationDeletePayload>;
|
|
16801
16945
|
deleteOrganizationAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
|
|
16802
16946
|
deleteProduct?: Maybe<CustomerServiceProductDeletePayload>;
|
|
16947
|
+
deleteTemplateForm?: Maybe<CustomerServiceTemplateFormDeletePayload>;
|
|
16803
16948
|
removeEntitlement?: Maybe<CustomerServiceEntitlementRemovePayload>;
|
|
16804
16949
|
updateCustomDetail?: Maybe<CustomerServiceCustomDetailUpdatePayload>;
|
|
16805
16950
|
updateCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadataUpdatePayload>;
|
|
@@ -16818,6 +16963,7 @@ export declare type CustomerServiceMutationApi = {
|
|
|
16818
16963
|
updateOrganizationAttributeValue?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
|
|
16819
16964
|
updateOrganizationAttributeValueByName?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
|
|
16820
16965
|
updateProduct?: Maybe<CustomerServiceProductUpdatePayload>;
|
|
16966
|
+
updateTemplateForm?: Maybe<CustomerServiceTemplateFormUpdatePayload>;
|
|
16821
16967
|
};
|
|
16822
16968
|
export declare type CustomerServiceMutationApiAddEntitlementArgs = {
|
|
16823
16969
|
input: CustomerServiceEntitlementAddInput;
|
|
@@ -16840,6 +16986,9 @@ export declare type CustomerServiceMutationApiCreateOrganizationAttributeArgs =
|
|
|
16840
16986
|
export declare type CustomerServiceMutationApiCreateProductArgs = {
|
|
16841
16987
|
input: CustomerServiceProductCreateInput;
|
|
16842
16988
|
};
|
|
16989
|
+
export declare type CustomerServiceMutationApiCreateTemplateFormArgs = {
|
|
16990
|
+
input: CustomerServiceTemplateFormCreateInput;
|
|
16991
|
+
};
|
|
16843
16992
|
export declare type CustomerServiceMutationApiDeleteCustomDetailArgs = {
|
|
16844
16993
|
input: CustomerServiceCustomDetailDeleteInput;
|
|
16845
16994
|
};
|
|
@@ -16858,6 +17007,9 @@ export declare type CustomerServiceMutationApiDeleteOrganizationAttributeArgs =
|
|
|
16858
17007
|
export declare type CustomerServiceMutationApiDeleteProductArgs = {
|
|
16859
17008
|
input: CustomerServiceProductDeleteInput;
|
|
16860
17009
|
};
|
|
17010
|
+
export declare type CustomerServiceMutationApiDeleteTemplateFormArgs = {
|
|
17011
|
+
input: CustomerServiceTemplateFormDeleteInput;
|
|
17012
|
+
};
|
|
16861
17013
|
export declare type CustomerServiceMutationApiRemoveEntitlementArgs = {
|
|
16862
17014
|
input: CustomerServiceEntitlementRemoveInput;
|
|
16863
17015
|
};
|
|
@@ -16912,6 +17064,11 @@ export declare type CustomerServiceMutationApiUpdateOrganizationAttributeValueBy
|
|
|
16912
17064
|
export declare type CustomerServiceMutationApiUpdateProductArgs = {
|
|
16913
17065
|
input: CustomerServiceProductUpdateInput;
|
|
16914
17066
|
};
|
|
17067
|
+
export declare type CustomerServiceMutationApiUpdateTemplateFormArgs = {
|
|
17068
|
+
helpCenterId: Scalars['ID']['input'];
|
|
17069
|
+
input: CustomerServiceTemplateFormUpdateInput;
|
|
17070
|
+
templateFormId: Scalars['ID']['input'];
|
|
17071
|
+
};
|
|
16915
17072
|
export declare type CustomerServiceNote = {
|
|
16916
17073
|
__typename?: 'CustomerServiceNote';
|
|
16917
17074
|
author: CustomerServiceNoteAuthor;
|
|
@@ -17124,6 +17281,7 @@ export declare type CustomerServiceQueryApi = {
|
|
|
17124
17281
|
productConnections?: Maybe<CustomerServiceProductConnection>;
|
|
17125
17282
|
products?: Maybe<CustomerServiceProductQueryResult>;
|
|
17126
17283
|
templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
|
|
17284
|
+
templateForms?: Maybe<CustomerServiceTemplateFormConnection>;
|
|
17127
17285
|
};
|
|
17128
17286
|
export declare type CustomerServiceQueryApiCustomDetailsByEntityTypeArgs = {
|
|
17129
17287
|
customDetailsEntityType: CustomerServiceCustomDetailsEntityType;
|
|
@@ -17154,6 +17312,11 @@ export declare type CustomerServiceQueryApiTemplateFormByIdArgs = {
|
|
|
17154
17312
|
helpCenterId: Scalars['ID']['input'];
|
|
17155
17313
|
templateFormId: Scalars['ID']['input'];
|
|
17156
17314
|
};
|
|
17315
|
+
export declare type CustomerServiceQueryApiTemplateFormsArgs = {
|
|
17316
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
17317
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17318
|
+
helpCenterId: Scalars['ID']['input'];
|
|
17319
|
+
};
|
|
17157
17320
|
export declare type CustomerServiceRoutingRule = {
|
|
17158
17321
|
__typename?: 'CustomerServiceRoutingRule';
|
|
17159
17322
|
id: Scalars['ID']['output'];
|
|
@@ -17176,7 +17339,47 @@ export declare type CustomerServiceTemplateForm = Node & {
|
|
|
17176
17339
|
id: Scalars['ID']['output'];
|
|
17177
17340
|
name?: Maybe<Scalars['String']['output']>;
|
|
17178
17341
|
};
|
|
17342
|
+
export declare type CustomerServiceTemplateFormConnection = {
|
|
17343
|
+
__typename?: 'CustomerServiceTemplateFormConnection';
|
|
17344
|
+
edges: Array<CustomerServiceTemplateFormEdge>;
|
|
17345
|
+
pageInfo: PageInfo;
|
|
17346
|
+
};
|
|
17347
|
+
export declare type CustomerServiceTemplateFormCreateInput = {
|
|
17348
|
+
defaultRoutingRule?: InputMaybe<CustomerServiceDefaultRoutingRuleInput>;
|
|
17349
|
+
helpCenterId: Scalars['ID']['input'];
|
|
17350
|
+
name: Scalars['String']['input'];
|
|
17351
|
+
};
|
|
17352
|
+
export declare type CustomerServiceTemplateFormCreatePayload = Payload & {
|
|
17353
|
+
__typename?: 'CustomerServiceTemplateFormCreatePayload';
|
|
17354
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17355
|
+
success: Scalars['Boolean']['output'];
|
|
17356
|
+
successfullyCreatedTemplateForm?: Maybe<CustomerServiceTemplateFormEdge>;
|
|
17357
|
+
};
|
|
17358
|
+
export declare type CustomerServiceTemplateFormDeleteInput = {
|
|
17359
|
+
helpCenterId: Scalars['ID']['input'];
|
|
17360
|
+
templateFormId: Scalars['ID']['input'];
|
|
17361
|
+
};
|
|
17362
|
+
export declare type CustomerServiceTemplateFormDeletePayload = Payload & {
|
|
17363
|
+
__typename?: 'CustomerServiceTemplateFormDeletePayload';
|
|
17364
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17365
|
+
success: Scalars['Boolean']['output'];
|
|
17366
|
+
};
|
|
17367
|
+
export declare type CustomerServiceTemplateFormEdge = {
|
|
17368
|
+
__typename?: 'CustomerServiceTemplateFormEdge';
|
|
17369
|
+
cursor: Scalars['String']['output'];
|
|
17370
|
+
node?: Maybe<CustomerServiceTemplateForm>;
|
|
17371
|
+
};
|
|
17179
17372
|
export declare type CustomerServiceTemplateFormQueryResult = CustomerServiceTemplateForm | QueryError;
|
|
17373
|
+
export declare type CustomerServiceTemplateFormUpdateInput = {
|
|
17374
|
+
defaultRoutingRule?: InputMaybe<CustomerServiceDefaultRoutingRuleInput>;
|
|
17375
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
17376
|
+
};
|
|
17377
|
+
export declare type CustomerServiceTemplateFormUpdatePayload = Payload & {
|
|
17378
|
+
__typename?: 'CustomerServiceTemplateFormUpdatePayload';
|
|
17379
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17380
|
+
success: Scalars['Boolean']['output'];
|
|
17381
|
+
successfullyCreatedTemplateForm?: Maybe<CustomerServiceTemplateFormEdge>;
|
|
17382
|
+
};
|
|
17180
17383
|
export declare type CustomerServiceUpdateCustomDetailContextConfigsPayload = Payload & {
|
|
17181
17384
|
__typename?: 'CustomerServiceUpdateCustomDetailContextConfigsPayload';
|
|
17182
17385
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -17843,6 +18046,7 @@ export declare type DevAiGenericMutationErrorExtension = MutationErrorExtension
|
|
|
17843
18046
|
export declare enum DevAiIssueScopingLabel {
|
|
17844
18047
|
Complex = "COMPLEX",
|
|
17845
18048
|
InScope = "IN_SCOPE",
|
|
18049
|
+
Optimal = "OPTIMAL",
|
|
17846
18050
|
Recoverable = "RECOVERABLE",
|
|
17847
18051
|
Unsolvable = "UNSOLVABLE"
|
|
17848
18052
|
}
|
|
@@ -19696,6 +19900,7 @@ export declare type EcosystemConnectInstallation = {
|
|
|
19696
19900
|
export declare type EcosystemConnectInstallationLicense = {
|
|
19697
19901
|
__typename?: 'EcosystemConnectInstallationLicense';
|
|
19698
19902
|
active?: Maybe<Scalars['Boolean']['output']>;
|
|
19903
|
+
capabilitySet?: Maybe<CapabilitySet>;
|
|
19699
19904
|
ccpEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
19700
19905
|
ccpEntitlementSlug?: Maybe<Scalars['String']['output']>;
|
|
19701
19906
|
isEvaluation?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -20065,7 +20270,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
20065
20270
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
20066
20271
|
node?: Maybe<ExternalAssociation>;
|
|
20067
20272
|
};
|
|
20068
|
-
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
20273
|
+
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
20069
20274
|
export declare type ExternalAttachment = {
|
|
20070
20275
|
__typename?: 'ExternalAttachment';
|
|
20071
20276
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -20236,6 +20441,7 @@ export declare type ExternalConversation = Node & {
|
|
|
20236
20441
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
20237
20442
|
id: Scalars['ID']['output'];
|
|
20238
20443
|
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
20444
|
+
lastActive?: Maybe<Scalars['String']['output']>;
|
|
20239
20445
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
20240
20446
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
20241
20447
|
memberCount?: Maybe<Scalars['Long']['output']>;
|
|
@@ -20325,6 +20531,8 @@ export declare type ExternalDocument = Node & {
|
|
|
20325
20531
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
20326
20532
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
20327
20533
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
20534
|
+
container?: Maybe<ExternalEntity>;
|
|
20535
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
20328
20536
|
content?: Maybe<ExternalLargeContent>;
|
|
20329
20537
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
20330
20538
|
createdBy?: Maybe<ExternalUser>;
|
|
@@ -20389,8 +20597,9 @@ export declare type ExternalEntities = {
|
|
|
20389
20597
|
space?: Maybe<Array<Maybe<ExternalSpace>>>;
|
|
20390
20598
|
video?: Maybe<Array<Maybe<ExternalVideo>>>;
|
|
20391
20599
|
vulnerability?: Maybe<Array<Maybe<ExternalVulnerability>>>;
|
|
20600
|
+
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
20392
20601
|
};
|
|
20393
|
-
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability;
|
|
20602
|
+
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem;
|
|
20394
20603
|
export declare type ExternalEnvironment = {
|
|
20395
20604
|
__typename?: 'ExternalEnvironment';
|
|
20396
20605
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -20512,6 +20721,7 @@ export declare type ExternalMessage = Node & {
|
|
|
20512
20721
|
id: Scalars['ID']['output'];
|
|
20513
20722
|
isPinned?: Maybe<Scalars['Boolean']['output']>;
|
|
20514
20723
|
largeContentDescription?: Maybe<ExternalLargeContent>;
|
|
20724
|
+
lastActive?: Maybe<Scalars['String']['output']>;
|
|
20515
20725
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
20516
20726
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
20517
20727
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
@@ -20527,6 +20737,11 @@ export declare type ExternalPipeline = {
|
|
|
20527
20737
|
id?: Maybe<Scalars['String']['output']>;
|
|
20528
20738
|
url?: Maybe<Scalars['String']['output']>;
|
|
20529
20739
|
};
|
|
20740
|
+
export declare type ExternalProject = {
|
|
20741
|
+
__typename?: 'ExternalProject';
|
|
20742
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
20743
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
20744
|
+
};
|
|
20530
20745
|
export declare type ExternalPullRequest = Node & {
|
|
20531
20746
|
__typename?: 'ExternalPullRequest';
|
|
20532
20747
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
@@ -20568,13 +20783,19 @@ export declare type ExternalRemoteLink = Node & {
|
|
|
20568
20783
|
attributeMap?: Maybe<Array<Maybe<ExternalRemoteLinkAttributeTuple>>>;
|
|
20569
20784
|
author?: Maybe<ExternalUser>;
|
|
20570
20785
|
category?: Maybe<Scalars['String']['output']>;
|
|
20786
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
20787
|
+
createdBy?: Maybe<ExternalUser>;
|
|
20571
20788
|
description?: Maybe<Scalars['String']['output']>;
|
|
20572
20789
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
20573
20790
|
id: Scalars['ID']['output'];
|
|
20574
20791
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
20792
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
20793
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
20575
20794
|
remoteLinkId?: Maybe<Scalars['String']['output']>;
|
|
20576
20795
|
status?: Maybe<ExternalRemoteLinkStatus>;
|
|
20796
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
20577
20797
|
type?: Maybe<Scalars['String']['output']>;
|
|
20798
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
20578
20799
|
url?: Maybe<Scalars['String']['output']>;
|
|
20579
20800
|
};
|
|
20580
20801
|
export declare type ExternalRemoteLinkAttributeTuple = {
|
|
@@ -20721,6 +20942,53 @@ export declare enum ExternalVulnerabilityType {
|
|
|
20721
20942
|
Sca = "SCA",
|
|
20722
20943
|
Unknown = "UNKNOWN"
|
|
20723
20944
|
}
|
|
20945
|
+
export declare type ExternalWorkItem = Node & {
|
|
20946
|
+
__typename?: 'ExternalWorkItem';
|
|
20947
|
+
assignee?: Maybe<ExternalUser>;
|
|
20948
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
20949
|
+
attachments?: Maybe<Array<Maybe<ExternalWorkItemAttachment>>>;
|
|
20950
|
+
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
20951
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
20952
|
+
createdBy?: Maybe<ExternalUser>;
|
|
20953
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
20954
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
20955
|
+
dueDate?: Maybe<Scalars['String']['output']>;
|
|
20956
|
+
exceedsMaxCollaborators?: Maybe<Scalars['Boolean']['output']>;
|
|
20957
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
20958
|
+
id: Scalars['ID']['output'];
|
|
20959
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
20960
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
20961
|
+
parent?: Maybe<ExternalEntity>;
|
|
20962
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
20963
|
+
project?: Maybe<ExternalProject>;
|
|
20964
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
20965
|
+
subtype?: Maybe<ExternalWorkItemSubtype>;
|
|
20966
|
+
team?: Maybe<Scalars['String']['output']>;
|
|
20967
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
20968
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
20969
|
+
};
|
|
20970
|
+
export declare type ExternalWorkItemAttachment = {
|
|
20971
|
+
__typename?: 'ExternalWorkItemAttachment';
|
|
20972
|
+
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
20973
|
+
mimeType?: Maybe<Scalars['String']['output']>;
|
|
20974
|
+
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
20975
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
20976
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
20977
|
+
};
|
|
20978
|
+
export declare enum ExternalWorkItemSubtype {
|
|
20979
|
+
Approval = "APPROVAL",
|
|
20980
|
+
Bug = "BUG",
|
|
20981
|
+
DefaultTask = "DEFAULT_TASK",
|
|
20982
|
+
Epic = "EPIC",
|
|
20983
|
+
Milestone = "MILESTONE",
|
|
20984
|
+
Other = "OTHER",
|
|
20985
|
+
Problem = "PROBLEM",
|
|
20986
|
+
Question = "QUESTION",
|
|
20987
|
+
Section = "SECTION",
|
|
20988
|
+
Story = "STORY",
|
|
20989
|
+
Task = "TASK",
|
|
20990
|
+
WorkItem = "WORK_ITEM"
|
|
20991
|
+
}
|
|
20724
20992
|
export declare type FailedRoles = {
|
|
20725
20993
|
__typename?: 'FailedRoles';
|
|
20726
20994
|
reason: Scalars['String']['output'];
|
|
@@ -25366,6 +25634,7 @@ export declare type GraphStore = {
|
|
|
25366
25634
|
atlasGoalHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection>;
|
|
25367
25635
|
atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
|
|
25368
25636
|
atlasGoalHasSubAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection>;
|
|
25637
|
+
atlasHomeFeed: GraphStoreAtlasHomeQueryConnection;
|
|
25369
25638
|
atlasProjectContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection>;
|
|
25370
25639
|
atlasProjectContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseConnection>;
|
|
25371
25640
|
atlasProjectContributesToAtlasGoalInverseRelationship?: Maybe<GraphStoreFullAtlasProjectContributesToAtlasGoalConnection>;
|
|
@@ -25715,11 +25984,19 @@ export declare type GraphStore = {
|
|
|
25715
25984
|
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
25716
25985
|
userAuthoredPr?: Maybe<GraphStoreSimplifiedUserAuthoredPrConnection>;
|
|
25717
25986
|
userAuthoredPrInverse?: Maybe<GraphStoreSimplifiedUserAuthoredPrInverseConnection>;
|
|
25987
|
+
userCreatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection>;
|
|
25988
|
+
userCreatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseConnection>;
|
|
25989
|
+
userCreatedConfluencePage?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageConnection>;
|
|
25990
|
+
userCreatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection>;
|
|
25991
|
+
userHasRelevantProject?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectConnection>;
|
|
25992
|
+
userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
|
|
25718
25993
|
userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
|
|
25719
25994
|
userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
|
|
25720
25995
|
userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
|
|
25721
25996
|
userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
|
|
25722
25997
|
userOwnsComponentInverse?: Maybe<GraphStoreSimplifiedUserOwnsComponentInverseConnection>;
|
|
25998
|
+
userReportsIssue?: Maybe<GraphStoreSimplifiedUserReportsIssueConnection>;
|
|
25999
|
+
userReportsIssueInverse?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseConnection>;
|
|
25723
26000
|
userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
|
|
25724
26001
|
userReviewsPrInverse?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseConnection>;
|
|
25725
26002
|
versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
|
|
@@ -25833,6 +26110,10 @@ export declare type GraphStoreAtlasGoalHasSubAtlasGoalInverseArgs = {
|
|
|
25833
26110
|
id: Scalars['ID']['input'];
|
|
25834
26111
|
sort?: InputMaybe<GraphStoreAtlasGoalHasSubAtlasGoalSortInput>;
|
|
25835
26112
|
};
|
|
26113
|
+
export declare type GraphStoreAtlasHomeFeedArgs = {
|
|
26114
|
+
organizationId: Scalars['ID']['input'];
|
|
26115
|
+
userId: Scalars['ID']['input'];
|
|
26116
|
+
};
|
|
25836
26117
|
export declare type GraphStoreAtlasProjectContributesToAtlasGoalArgs = {
|
|
25837
26118
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25838
26119
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28032,6 +28313,48 @@ export declare type GraphStoreUserAuthoredPrInverseArgs = {
|
|
|
28032
28313
|
id: Scalars['ID']['input'];
|
|
28033
28314
|
sort?: InputMaybe<GraphStoreUserAuthoredPrSortInput>;
|
|
28034
28315
|
};
|
|
28316
|
+
export declare type GraphStoreUserCreatedConfluenceBlogpostArgs = {
|
|
28317
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28318
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28319
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28320
|
+
id: Scalars['ID']['input'];
|
|
28321
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceBlogpostSortInput>;
|
|
28322
|
+
};
|
|
28323
|
+
export declare type GraphStoreUserCreatedConfluenceBlogpostInverseArgs = {
|
|
28324
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28325
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28326
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28327
|
+
id: Scalars['ID']['input'];
|
|
28328
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceBlogpostSortInput>;
|
|
28329
|
+
};
|
|
28330
|
+
export declare type GraphStoreUserCreatedConfluencePageArgs = {
|
|
28331
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28332
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28333
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28334
|
+
id: Scalars['ID']['input'];
|
|
28335
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluencePageSortInput>;
|
|
28336
|
+
};
|
|
28337
|
+
export declare type GraphStoreUserCreatedConfluencePageInverseArgs = {
|
|
28338
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28339
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28340
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28341
|
+
id: Scalars['ID']['input'];
|
|
28342
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluencePageSortInput>;
|
|
28343
|
+
};
|
|
28344
|
+
export declare type GraphStoreUserHasRelevantProjectArgs = {
|
|
28345
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28346
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28347
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28348
|
+
id: Scalars['ID']['input'];
|
|
28349
|
+
sort?: InputMaybe<GraphStoreUserHasRelevantProjectSortInput>;
|
|
28350
|
+
};
|
|
28351
|
+
export declare type GraphStoreUserHasRelevantProjectInverseArgs = {
|
|
28352
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28353
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28354
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28355
|
+
id: Scalars['ID']['input'];
|
|
28356
|
+
sort?: InputMaybe<GraphStoreUserHasRelevantProjectSortInput>;
|
|
28357
|
+
};
|
|
28035
28358
|
export declare type GraphStoreUserHasTopProjectArgs = {
|
|
28036
28359
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28037
28360
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28067,6 +28390,20 @@ export declare type GraphStoreUserOwnsComponentInverseArgs = {
|
|
|
28067
28390
|
id: Scalars['ID']['input'];
|
|
28068
28391
|
sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
|
|
28069
28392
|
};
|
|
28393
|
+
export declare type GraphStoreUserReportsIssueArgs = {
|
|
28394
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28395
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28396
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28397
|
+
id: Scalars['ID']['input'];
|
|
28398
|
+
sort?: InputMaybe<GraphStoreUserReportsIssueSortInput>;
|
|
28399
|
+
};
|
|
28400
|
+
export declare type GraphStoreUserReportsIssueInverseArgs = {
|
|
28401
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28402
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28403
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28404
|
+
id: Scalars['ID']['input'];
|
|
28405
|
+
sort?: InputMaybe<GraphStoreUserReportsIssueSortInput>;
|
|
28406
|
+
};
|
|
28070
28407
|
export declare type GraphStoreUserReviewsPrArgs = {
|
|
28071
28408
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28072
28409
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28372,6 +28709,17 @@ export declare type GraphStoreAtlasGoalHasOwnerSortInput = {
|
|
|
28372
28709
|
export declare type GraphStoreAtlasGoalHasSubAtlasGoalSortInput = {
|
|
28373
28710
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28374
28711
|
};
|
|
28712
|
+
export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = JiraIssue | TownsquareGoal | TownsquareProject;
|
|
28713
|
+
export declare type GraphStoreAtlasHomeQueryConnection = {
|
|
28714
|
+
__typename?: 'GraphStoreAtlasHomeQueryConnection';
|
|
28715
|
+
nodes: Array<GraphStoreAtlasHomeQueryNode>;
|
|
28716
|
+
pageInfo: PageInfo;
|
|
28717
|
+
};
|
|
28718
|
+
export declare type GraphStoreAtlasHomeQueryNode = {
|
|
28719
|
+
__typename?: 'GraphStoreAtlasHomeQueryNode';
|
|
28720
|
+
data?: Maybe<GraphStoreAtlasHomeFeedQueryToNodeUnion>;
|
|
28721
|
+
id: Scalars['ID']['output'];
|
|
28722
|
+
};
|
|
28375
28723
|
export declare type GraphStoreAtlasProjectContributesToAtlasGoalSortInput = {
|
|
28376
28724
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28377
28725
|
};
|
|
@@ -29362,6 +29710,20 @@ export declare type GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagRelations
|
|
|
29362
29710
|
to: Scalars['ID']['input'];
|
|
29363
29711
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
29364
29712
|
};
|
|
29713
|
+
export declare type GraphStoreCreateUserHasRelevantProjectInput = {
|
|
29714
|
+
relationships: Array<GraphStoreCreateUserHasRelevantProjectRelationshipInput>;
|
|
29715
|
+
};
|
|
29716
|
+
export declare type GraphStoreCreateUserHasRelevantProjectPayload = Payload & {
|
|
29717
|
+
__typename?: 'GraphStoreCreateUserHasRelevantProjectPayload';
|
|
29718
|
+
errors?: Maybe<Array<MutationError>>;
|
|
29719
|
+
success: Scalars['Boolean']['output'];
|
|
29720
|
+
};
|
|
29721
|
+
export declare type GraphStoreCreateUserHasRelevantProjectRelationshipInput = {
|
|
29722
|
+
from: Scalars['ID']['input'];
|
|
29723
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
29724
|
+
to: Scalars['ID']['input'];
|
|
29725
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
29726
|
+
};
|
|
29365
29727
|
export declare type GraphStoreCreateVersionUserAssociatedFeatureFlagInput = {
|
|
29366
29728
|
relationships: Array<GraphStoreCreateVersionUserAssociatedFeatureFlagRelationshipInput>;
|
|
29367
29729
|
};
|
|
@@ -29446,7 +29808,7 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
29446
29808
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
29447
29809
|
id: Scalars['ID']['output'];
|
|
29448
29810
|
};
|
|
29449
|
-
export declare type GraphStoreCypherQueryToNodeUnion = JiraIssue;
|
|
29811
|
+
export declare type GraphStoreCypherQueryToNodeUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
29450
29812
|
export declare type GraphStoreDateFilterInput = {
|
|
29451
29813
|
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
29452
29814
|
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -29698,6 +30060,19 @@ export declare type GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagRelations
|
|
|
29698
30060
|
from: Scalars['ID']['input'];
|
|
29699
30061
|
to: Scalars['ID']['input'];
|
|
29700
30062
|
};
|
|
30063
|
+
export declare type GraphStoreDeleteUserHasRelevantProjectInput = {
|
|
30064
|
+
relationships: Array<GraphStoreDeleteUserHasRelevantProjectRelationshipInput>;
|
|
30065
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30066
|
+
};
|
|
30067
|
+
export declare type GraphStoreDeleteUserHasRelevantProjectPayload = Payload & {
|
|
30068
|
+
__typename?: 'GraphStoreDeleteUserHasRelevantProjectPayload';
|
|
30069
|
+
errors?: Maybe<Array<MutationError>>;
|
|
30070
|
+
success: Scalars['Boolean']['output'];
|
|
30071
|
+
};
|
|
30072
|
+
export declare type GraphStoreDeleteUserHasRelevantProjectRelationshipInput = {
|
|
30073
|
+
from: Scalars['ID']['input'];
|
|
30074
|
+
to: Scalars['ID']['input'];
|
|
30075
|
+
};
|
|
29701
30076
|
export declare type GraphStoreDeleteVersionUserAssociatedFeatureFlagInput = {
|
|
29702
30077
|
relationships: Array<GraphStoreDeleteVersionUserAssociatedFeatureFlagRelationshipInput>;
|
|
29703
30078
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33411,6 +33786,7 @@ export declare type GraphStoreMutation = {
|
|
|
33411
33786
|
createSprintRetrospectiveWhiteboard?: Maybe<GraphStoreCreateSprintRetrospectiveWhiteboardPayload>;
|
|
33412
33787
|
createTestPerfhammerRelationship?: Maybe<GraphStoreCreateTestPerfhammerRelationshipPayload>;
|
|
33413
33788
|
createTownsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagPayload>;
|
|
33789
|
+
createUserHasRelevantProject?: Maybe<GraphStoreCreateUserHasRelevantProjectPayload>;
|
|
33414
33790
|
createVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreCreateVersionUserAssociatedFeatureFlagPayload>;
|
|
33415
33791
|
createVulnerabilityAssociatedIssue?: Maybe<GraphStoreCreateVulnerabilityAssociatedIssuePayload>;
|
|
33416
33792
|
deleteComponentImpactedByIncident?: Maybe<GraphStoreDeleteComponentImpactedByIncidentPayload>;
|
|
@@ -33432,6 +33808,7 @@ export declare type GraphStoreMutation = {
|
|
|
33432
33808
|
deleteSprintRetrospectiveWhiteboard?: Maybe<GraphStoreDeleteSprintRetrospectiveWhiteboardPayload>;
|
|
33433
33809
|
deleteTestPerfhammerRelationship?: Maybe<GraphStoreDeleteTestPerfhammerRelationshipPayload>;
|
|
33434
33810
|
deleteTownsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagPayload>;
|
|
33811
|
+
deleteUserHasRelevantProject?: Maybe<GraphStoreDeleteUserHasRelevantProjectPayload>;
|
|
33435
33812
|
deleteVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload>;
|
|
33436
33813
|
deleteVulnerabilityAssociatedIssue?: Maybe<GraphStoreDeleteVulnerabilityAssociatedIssuePayload>;
|
|
33437
33814
|
};
|
|
@@ -33492,6 +33869,9 @@ export declare type GraphStoreMutationCreateTestPerfhammerRelationshipArgs = {
|
|
|
33492
33869
|
export declare type GraphStoreMutationCreateTownsquareTagIsAliasOfTownsquareTagArgs = {
|
|
33493
33870
|
input?: InputMaybe<GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagInput>;
|
|
33494
33871
|
};
|
|
33872
|
+
export declare type GraphStoreMutationCreateUserHasRelevantProjectArgs = {
|
|
33873
|
+
input?: InputMaybe<GraphStoreCreateUserHasRelevantProjectInput>;
|
|
33874
|
+
};
|
|
33495
33875
|
export declare type GraphStoreMutationCreateVersionUserAssociatedFeatureFlagArgs = {
|
|
33496
33876
|
input?: InputMaybe<GraphStoreCreateVersionUserAssociatedFeatureFlagInput>;
|
|
33497
33877
|
};
|
|
@@ -33555,6 +33935,9 @@ export declare type GraphStoreMutationDeleteTestPerfhammerRelationshipArgs = {
|
|
|
33555
33935
|
export declare type GraphStoreMutationDeleteTownsquareTagIsAliasOfTownsquareTagArgs = {
|
|
33556
33936
|
input?: InputMaybe<GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagInput>;
|
|
33557
33937
|
};
|
|
33938
|
+
export declare type GraphStoreMutationDeleteUserHasRelevantProjectArgs = {
|
|
33939
|
+
input?: InputMaybe<GraphStoreDeleteUserHasRelevantProjectInput>;
|
|
33940
|
+
};
|
|
33558
33941
|
export declare type GraphStoreMutationDeleteVersionUserAssociatedFeatureFlagArgs = {
|
|
33559
33942
|
input?: InputMaybe<GraphStoreDeleteVersionUserAssociatedFeatureFlagInput>;
|
|
33560
33943
|
};
|
|
@@ -36765,6 +37148,94 @@ export declare type GraphStoreSimplifiedUserAuthoredPrInverseEdge = {
|
|
|
36765
37148
|
};
|
|
36766
37149
|
export declare type GraphStoreSimplifiedUserAuthoredPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
36767
37150
|
export declare type GraphStoreSimplifiedUserAuthoredPrUnion = DevOpsPullRequestDetails;
|
|
37151
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection = HasPageInfo & {
|
|
37152
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection';
|
|
37153
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostEdge>>>;
|
|
37154
|
+
pageInfo: PageInfo;
|
|
37155
|
+
};
|
|
37156
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostEdge = {
|
|
37157
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostEdge';
|
|
37158
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37159
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37160
|
+
id: Scalars['ID']['output'];
|
|
37161
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37162
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostUnion>;
|
|
37163
|
+
};
|
|
37164
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseConnection = HasPageInfo & {
|
|
37165
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseConnection';
|
|
37166
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseEdge>>>;
|
|
37167
|
+
pageInfo: PageInfo;
|
|
37168
|
+
};
|
|
37169
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseEdge = {
|
|
37170
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseEdge';
|
|
37171
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37172
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37173
|
+
id: Scalars['ID']['output'];
|
|
37174
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37175
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseUnion>;
|
|
37176
|
+
};
|
|
37177
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
37178
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
37179
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageConnection = HasPageInfo & {
|
|
37180
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageConnection';
|
|
37181
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluencePageEdge>>>;
|
|
37182
|
+
pageInfo: PageInfo;
|
|
37183
|
+
};
|
|
37184
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageEdge = {
|
|
37185
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageEdge';
|
|
37186
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37187
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37188
|
+
id: Scalars['ID']['output'];
|
|
37189
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37190
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageUnion>;
|
|
37191
|
+
};
|
|
37192
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection = HasPageInfo & {
|
|
37193
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection';
|
|
37194
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseEdge>>>;
|
|
37195
|
+
pageInfo: PageInfo;
|
|
37196
|
+
};
|
|
37197
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseEdge = {
|
|
37198
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageInverseEdge';
|
|
37199
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37200
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37201
|
+
id: Scalars['ID']['output'];
|
|
37202
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37203
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseUnion>;
|
|
37204
|
+
};
|
|
37205
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
37206
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageUnion = ConfluencePage;
|
|
37207
|
+
export declare type GraphStoreSimplifiedUserHasRelevantProjectConnection = HasPageInfo & HasTotal & {
|
|
37208
|
+
__typename?: 'GraphStoreSimplifiedUserHasRelevantProjectConnection';
|
|
37209
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasRelevantProjectEdge>>>;
|
|
37210
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
37211
|
+
pageInfo: PageInfo;
|
|
37212
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
37213
|
+
};
|
|
37214
|
+
export declare type GraphStoreSimplifiedUserHasRelevantProjectEdge = {
|
|
37215
|
+
__typename?: 'GraphStoreSimplifiedUserHasRelevantProjectEdge';
|
|
37216
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37217
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37218
|
+
id: Scalars['ID']['output'];
|
|
37219
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37220
|
+
node?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectUnion>;
|
|
37221
|
+
};
|
|
37222
|
+
export declare type GraphStoreSimplifiedUserHasRelevantProjectInverseConnection = HasPageInfo & HasTotal & {
|
|
37223
|
+
__typename?: 'GraphStoreSimplifiedUserHasRelevantProjectInverseConnection';
|
|
37224
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseEdge>>>;
|
|
37225
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
37226
|
+
pageInfo: PageInfo;
|
|
37227
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
37228
|
+
};
|
|
37229
|
+
export declare type GraphStoreSimplifiedUserHasRelevantProjectInverseEdge = {
|
|
37230
|
+
__typename?: 'GraphStoreSimplifiedUserHasRelevantProjectInverseEdge';
|
|
37231
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37232
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37233
|
+
id: Scalars['ID']['output'];
|
|
37234
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37235
|
+
node?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseUnion>;
|
|
37236
|
+
};
|
|
37237
|
+
export declare type GraphStoreSimplifiedUserHasRelevantProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
37238
|
+
export declare type GraphStoreSimplifiedUserHasRelevantProjectUnion = JiraProject;
|
|
36768
37239
|
export declare type GraphStoreSimplifiedUserHasTopProjectConnection = HasPageInfo & {
|
|
36769
37240
|
__typename?: 'GraphStoreSimplifiedUserHasTopProjectConnection';
|
|
36770
37241
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasTopProjectEdge>>>;
|
|
@@ -36839,6 +37310,34 @@ export declare type GraphStoreSimplifiedUserOwnsComponentInverseEdge = {
|
|
|
36839
37310
|
};
|
|
36840
37311
|
export declare type GraphStoreSimplifiedUserOwnsComponentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
36841
37312
|
export declare type GraphStoreSimplifiedUserOwnsComponentUnion = CompassComponent;
|
|
37313
|
+
export declare type GraphStoreSimplifiedUserReportsIssueConnection = HasPageInfo & {
|
|
37314
|
+
__typename?: 'GraphStoreSimplifiedUserReportsIssueConnection';
|
|
37315
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReportsIssueEdge>>>;
|
|
37316
|
+
pageInfo: PageInfo;
|
|
37317
|
+
};
|
|
37318
|
+
export declare type GraphStoreSimplifiedUserReportsIssueEdge = {
|
|
37319
|
+
__typename?: 'GraphStoreSimplifiedUserReportsIssueEdge';
|
|
37320
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37321
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37322
|
+
id: Scalars['ID']['output'];
|
|
37323
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37324
|
+
node?: Maybe<GraphStoreSimplifiedUserReportsIssueUnion>;
|
|
37325
|
+
};
|
|
37326
|
+
export declare type GraphStoreSimplifiedUserReportsIssueInverseConnection = HasPageInfo & {
|
|
37327
|
+
__typename?: 'GraphStoreSimplifiedUserReportsIssueInverseConnection';
|
|
37328
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReportsIssueInverseEdge>>>;
|
|
37329
|
+
pageInfo: PageInfo;
|
|
37330
|
+
};
|
|
37331
|
+
export declare type GraphStoreSimplifiedUserReportsIssueInverseEdge = {
|
|
37332
|
+
__typename?: 'GraphStoreSimplifiedUserReportsIssueInverseEdge';
|
|
37333
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37334
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37335
|
+
id: Scalars['ID']['output'];
|
|
37336
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37337
|
+
node?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseUnion>;
|
|
37338
|
+
};
|
|
37339
|
+
export declare type GraphStoreSimplifiedUserReportsIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
37340
|
+
export declare type GraphStoreSimplifiedUserReportsIssueUnion = JiraIssue;
|
|
36842
37341
|
export declare type GraphStoreSimplifiedUserReviewsPrConnection = HasPageInfo & {
|
|
36843
37342
|
__typename?: 'GraphStoreSimplifiedUserReviewsPrConnection';
|
|
36844
37343
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReviewsPrEdge>>>;
|
|
@@ -37526,6 +38025,18 @@ export declare type GraphStoreTestPerfhammerRelationshipSortInput = {
|
|
|
37526
38025
|
export declare type GraphStoreUserAuthoredPrSortInput = {
|
|
37527
38026
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37528
38027
|
};
|
|
38028
|
+
export declare type GraphStoreUserCreatedConfluenceBlogpostSortInput = {
|
|
38029
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38030
|
+
};
|
|
38031
|
+
export declare type GraphStoreUserCreatedConfluencePageSortInput = {
|
|
38032
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38033
|
+
};
|
|
38034
|
+
export declare type GraphStoreUserHasRelevantProjectSortInput = {
|
|
38035
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
38036
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
38037
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38038
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
38039
|
+
};
|
|
37529
38040
|
export declare type GraphStoreUserHasTopProjectSortInput = {
|
|
37530
38041
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37531
38042
|
};
|
|
@@ -37538,6 +38049,9 @@ export declare type GraphStoreUserOwnsComponentSortInput = {
|
|
|
37538
38049
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37539
38050
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
37540
38051
|
};
|
|
38052
|
+
export declare type GraphStoreUserReportsIssueSortInput = {
|
|
38053
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38054
|
+
};
|
|
37541
38055
|
export declare type GraphStoreUserReviewsPrSortInput = {
|
|
37542
38056
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37543
38057
|
};
|
|
@@ -37707,27 +38221,12 @@ export declare enum GrowthUnifiedProfileAnchorType {
|
|
|
37707
38221
|
Pfm = "PFM",
|
|
37708
38222
|
Seo = "SEO"
|
|
37709
38223
|
}
|
|
37710
|
-
export declare enum
|
|
37711
|
-
|
|
37712
|
-
Direct = "DIRECT",
|
|
37713
|
-
Email = "EMAIL",
|
|
37714
|
-
EngagementEngine = "ENGAGEMENT_ENGINE",
|
|
37715
|
-
InProductReferral = "IN_PRODUCT_REFERRAL",
|
|
37716
|
-
Organic = "ORGANIC",
|
|
37717
|
-
Other = "OTHER",
|
|
37718
|
-
PaidAffiliate = "PAID_AFFILIATE",
|
|
38224
|
+
export declare enum GrowthUnifiedProfileChannel {
|
|
38225
|
+
PaidContent = "PAID_CONTENT",
|
|
37719
38226
|
PaidDisplay = "PAID_DISPLAY",
|
|
37720
38227
|
PaidReviewSites = "PAID_REVIEW_SITES",
|
|
37721
|
-
|
|
37722
|
-
|
|
37723
|
-
PaidSocial = "PAID_SOCIAL",
|
|
37724
|
-
ReferralExternal = "REFERRAL_EXTERNAL",
|
|
37725
|
-
ReferralInternal = "REFERRAL_INTERNAL",
|
|
37726
|
-
SelfReferral = "SELF_REFERRAL",
|
|
37727
|
-
SlackAppDirectory = "SLACK_APP_DIRECTORY",
|
|
37728
|
-
Suppress = "SUPPRESS",
|
|
37729
|
-
UnpaidSocial = "UNPAID_SOCIAL",
|
|
37730
|
-
UnpaidVideo = "UNPAID_VIDEO"
|
|
38228
|
+
PaidSearch = "PAID_SEARCH",
|
|
38229
|
+
PaidSocial = "PAID_SOCIAL"
|
|
37731
38230
|
}
|
|
37732
38231
|
export declare type GrowthUnifiedProfileCompany = {
|
|
37733
38232
|
__typename?: 'GrowthUnifiedProfileCompany';
|
|
@@ -37860,7 +38359,6 @@ export declare type GrowthUnifiedProfileOnboardingContextInput = {
|
|
|
37860
38359
|
export declare type GrowthUnifiedProfilePaidChannelContext = {
|
|
37861
38360
|
__typename?: 'GrowthUnifiedProfilePaidChannelContext';
|
|
37862
38361
|
anchor?: Maybe<GrowthUnifiedProfileAnchor>;
|
|
37863
|
-
name?: Maybe<GrowthUnifiedProfileChannelName>;
|
|
37864
38362
|
persona?: Maybe<Scalars['String']['output']>;
|
|
37865
38363
|
subAnchor?: Maybe<Scalars['String']['output']>;
|
|
37866
38364
|
teamType?: Maybe<GrowthUnifiedProfileTeamType>;
|
|
@@ -37875,6 +38373,13 @@ export declare type GrowthUnifiedProfilePaidChannelContextByProduct = {
|
|
|
37875
38373
|
jwm?: Maybe<GrowthUnifiedProfilePaidChannelContext>;
|
|
37876
38374
|
trello?: Maybe<GrowthUnifiedProfilePaidChannelContext>;
|
|
37877
38375
|
};
|
|
38376
|
+
export declare enum GrowthUnifiedProfileProduct {
|
|
38377
|
+
Confluence = "confluence",
|
|
38378
|
+
Jira = "jira",
|
|
38379
|
+
Jsm = "jsm",
|
|
38380
|
+
Jwm = "jwm",
|
|
38381
|
+
Trello = "trello"
|
|
38382
|
+
}
|
|
37878
38383
|
export declare type GrowthUnifiedProfileProductDetails = {
|
|
37879
38384
|
__typename?: 'GrowthUnifiedProfileProductDetails';
|
|
37880
38385
|
d0Active?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -37895,6 +38400,7 @@ export declare type GrowthUnifiedProfileResult = {
|
|
|
37895
38400
|
paidChannelContext?: Maybe<GrowthUnifiedProfilePaidChannelContextByProduct>;
|
|
37896
38401
|
seoContext?: Maybe<GrowthUnifiedProfileSeoContext>;
|
|
37897
38402
|
sites?: Maybe<Array<Maybe<GrowthUnifiedProfileSiteDetails>>>;
|
|
38403
|
+
userFootprints?: Maybe<GrowthUnifiedProfileUserFootprints>;
|
|
37898
38404
|
};
|
|
37899
38405
|
export declare type GrowthUnifiedProfileSeoContext = {
|
|
37900
38406
|
__typename?: 'GrowthUnifiedProfileSeoContext';
|
|
@@ -37923,12 +38429,18 @@ export declare enum GrowthUnifiedProfileTeamType {
|
|
|
37923
38429
|
ProductManagement = "PRODUCT_MANAGEMENT",
|
|
37924
38430
|
ProjectManagement = "PROJECT_MANAGEMENT",
|
|
37925
38431
|
Sales = "SALES",
|
|
37926
|
-
SoftwareDevelopment = "SOFTWARE_DEVELOPMENT"
|
|
38432
|
+
SoftwareDevelopment = "SOFTWARE_DEVELOPMENT",
|
|
38433
|
+
SoftwareEngineering = "SOFTWARE_ENGINEERING"
|
|
37927
38434
|
}
|
|
38435
|
+
export declare type GrowthUnifiedProfileUserFootprints = {
|
|
38436
|
+
__typename?: 'GrowthUnifiedProfileUserFootprints';
|
|
38437
|
+
hasAtlassianAccount?: Maybe<Scalars['Boolean']['output']>;
|
|
38438
|
+
products?: Maybe<Array<Maybe<GrowthUnifiedProfileProduct>>>;
|
|
38439
|
+
};
|
|
37928
38440
|
export declare type GrowthUnifiedProfileUtm = {
|
|
37929
38441
|
__typename?: 'GrowthUnifiedProfileUtm';
|
|
38442
|
+
channel?: Maybe<GrowthUnifiedProfileChannel>;
|
|
37930
38443
|
keyword?: Maybe<Scalars['String']['output']>;
|
|
37931
|
-
medium?: Maybe<Scalars['String']['output']>;
|
|
37932
38444
|
source?: Maybe<Scalars['String']['output']>;
|
|
37933
38445
|
};
|
|
37934
38446
|
export declare type HamsAccountDetails = CommerceAccountDetails & {
|
|
@@ -40646,6 +41158,7 @@ export declare type JiraAffectedServicesField = JiraHasMultipleSelectedValues &
|
|
|
40646
41158
|
description?: Maybe<Scalars['String']['output']>;
|
|
40647
41159
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
40648
41160
|
fieldId: Scalars['String']['output'];
|
|
41161
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
40649
41162
|
id: Scalars['ID']['output'];
|
|
40650
41163
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
40651
41164
|
issue?: Maybe<JiraIssue>;
|
|
@@ -40929,6 +41442,7 @@ export declare type JiraAssetField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
40929
41442
|
description?: Maybe<Scalars['String']['output']>;
|
|
40930
41443
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
40931
41444
|
fieldId: Scalars['String']['output'];
|
|
41445
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
40932
41446
|
id: Scalars['ID']['output'];
|
|
40933
41447
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
40934
41448
|
issue?: Maybe<JiraIssue>;
|
|
@@ -41010,6 +41524,7 @@ export declare type JiraAtlassianTeamField = JiraIssueField & JiraIssueFieldConf
|
|
|
41010
41524
|
description?: Maybe<Scalars['String']['output']>;
|
|
41011
41525
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
41012
41526
|
fieldId: Scalars['String']['output'];
|
|
41527
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
41013
41528
|
id: Scalars['ID']['output'];
|
|
41014
41529
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
41015
41530
|
issue?: Maybe<JiraIssue>;
|
|
@@ -41133,6 +41648,7 @@ export declare type JiraAttachmentsField = JiraIssueField & JiraIssueFieldConfig
|
|
|
41133
41648
|
description?: Maybe<Scalars['String']['output']>;
|
|
41134
41649
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
41135
41650
|
fieldId: Scalars['String']['output'];
|
|
41651
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
41136
41652
|
id: Scalars['ID']['output'];
|
|
41137
41653
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
41138
41654
|
issue?: Maybe<JiraIssue>;
|
|
@@ -41519,6 +42035,7 @@ export declare type JiraBooleanField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
41519
42035
|
description?: Maybe<Scalars['String']['output']>;
|
|
41520
42036
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
41521
42037
|
fieldId: Scalars['String']['output'];
|
|
42038
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
41522
42039
|
id: Scalars['ID']['output'];
|
|
41523
42040
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
41524
42041
|
issue?: Maybe<JiraIssue>;
|
|
@@ -41653,6 +42170,7 @@ export declare type JiraCmdbField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
41653
42170
|
description?: Maybe<Scalars['String']['output']>;
|
|
41654
42171
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
41655
42172
|
fieldId: Scalars['String']['output'];
|
|
42173
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
41656
42174
|
id: Scalars['ID']['output'];
|
|
41657
42175
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
41658
42176
|
isInsightAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -41939,6 +42457,7 @@ export declare type JiraCascadingSelectField = JiraHasSelectableValueOptions & J
|
|
|
41939
42457
|
description?: Maybe<Scalars['String']['output']>;
|
|
41940
42458
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
41941
42459
|
fieldId: Scalars['String']['output'];
|
|
42460
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
41942
42461
|
id: Scalars['ID']['output'];
|
|
41943
42462
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
41944
42463
|
issue?: Maybe<JiraIssue>;
|
|
@@ -42002,6 +42521,7 @@ export declare type JiraCheckboxesField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
42002
42521
|
description?: Maybe<Scalars['String']['output']>;
|
|
42003
42522
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
42004
42523
|
fieldId: Scalars['String']['output'];
|
|
42524
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
42005
42525
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
42006
42526
|
id: Scalars['ID']['output'];
|
|
42007
42527
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -42322,6 +42842,7 @@ export declare type JiraColorField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
42322
42842
|
description?: Maybe<Scalars['String']['output']>;
|
|
42323
42843
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
42324
42844
|
fieldId: Scalars['String']['output'];
|
|
42845
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
42325
42846
|
id: Scalars['ID']['output'];
|
|
42326
42847
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42327
42848
|
issue?: Maybe<JiraIssue>;
|
|
@@ -42416,6 +42937,7 @@ export declare type JiraComponentsField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
42416
42937
|
description?: Maybe<Scalars['String']['output']>;
|
|
42417
42938
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
42418
42939
|
fieldId: Scalars['String']['output'];
|
|
42940
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
42419
42941
|
id: Scalars['ID']['output'];
|
|
42420
42942
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42421
42943
|
issue?: Maybe<JiraIssue>;
|
|
@@ -42603,6 +43125,7 @@ export declare type JiraConfluenceRemoteIssueLinksField = JiraIssueField & JiraI
|
|
|
42603
43125
|
description?: Maybe<Scalars['String']['output']>;
|
|
42604
43126
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
42605
43127
|
fieldId: Scalars['String']['output'];
|
|
43128
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
42606
43129
|
id: Scalars['ID']['output'];
|
|
42607
43130
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42608
43131
|
issue?: Maybe<JiraIssue>;
|
|
@@ -42620,6 +43143,7 @@ export declare type JiraConnectDateTimeField = JiraIssueField & JiraIssueFieldCo
|
|
|
42620
43143
|
description?: Maybe<Scalars['String']['output']>;
|
|
42621
43144
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
42622
43145
|
fieldId: Scalars['String']['output'];
|
|
43146
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
42623
43147
|
id: Scalars['ID']['output'];
|
|
42624
43148
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42625
43149
|
issue?: Maybe<JiraIssue>;
|
|
@@ -42633,6 +43157,7 @@ export declare type JiraConnectMultipleSelectField = JiraHasMultipleSelectedValu
|
|
|
42633
43157
|
description?: Maybe<Scalars['String']['output']>;
|
|
42634
43158
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
42635
43159
|
fieldId: Scalars['String']['output'];
|
|
43160
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
42636
43161
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
42637
43162
|
id: Scalars['ID']['output'];
|
|
42638
43163
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -42680,6 +43205,7 @@ export declare type JiraConnectNumberField = JiraIssueField & JiraIssueFieldConf
|
|
|
42680
43205
|
description?: Maybe<Scalars['String']['output']>;
|
|
42681
43206
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
42682
43207
|
fieldId: Scalars['String']['output'];
|
|
43208
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
42683
43209
|
id: Scalars['ID']['output'];
|
|
42684
43210
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42685
43211
|
issue?: Maybe<JiraIssue>;
|
|
@@ -42694,6 +43220,7 @@ export declare type JiraConnectReadOnlyField = JiraIssueField & JiraIssueFieldCo
|
|
|
42694
43220
|
description?: Maybe<Scalars['String']['output']>;
|
|
42695
43221
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
42696
43222
|
fieldId: Scalars['String']['output'];
|
|
43223
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
42697
43224
|
id: Scalars['ID']['output'];
|
|
42698
43225
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42699
43226
|
issue?: Maybe<JiraIssue>;
|
|
@@ -42708,6 +43235,7 @@ export declare type JiraConnectRichTextField = JiraIssueField & JiraIssueFieldCo
|
|
|
42708
43235
|
description?: Maybe<Scalars['String']['output']>;
|
|
42709
43236
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
42710
43237
|
fieldId: Scalars['String']['output'];
|
|
43238
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
42711
43239
|
id: Scalars['ID']['output'];
|
|
42712
43240
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42713
43241
|
issue?: Maybe<JiraIssue>;
|
|
@@ -42724,6 +43252,7 @@ export declare type JiraConnectSingleSelectField = JiraHasSelectableValueOptions
|
|
|
42724
43252
|
description?: Maybe<Scalars['String']['output']>;
|
|
42725
43253
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
42726
43254
|
fieldId: Scalars['String']['output'];
|
|
43255
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
42727
43256
|
fieldOption?: Maybe<JiraOption>;
|
|
42728
43257
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
42729
43258
|
id: Scalars['ID']['output'];
|
|
@@ -42757,6 +43286,7 @@ export declare type JiraConnectTextField = JiraIssueField & JiraIssueFieldConfig
|
|
|
42757
43286
|
description?: Maybe<Scalars['String']['output']>;
|
|
42758
43287
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
42759
43288
|
fieldId: Scalars['String']['output'];
|
|
43289
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
42760
43290
|
id: Scalars['ID']['output'];
|
|
42761
43291
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42762
43292
|
issue?: Maybe<JiraIssue>;
|
|
@@ -43077,6 +43607,7 @@ export declare type JiraCustomerServiceOrganizationField = JiraIssueField & Jira
|
|
|
43077
43607
|
description?: Maybe<Scalars['String']['output']>;
|
|
43078
43608
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
43079
43609
|
fieldId: Scalars['String']['output'];
|
|
43610
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
43080
43611
|
id: Scalars['ID']['output'];
|
|
43081
43612
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
43082
43613
|
issue?: Maybe<JiraIssue>;
|
|
@@ -43113,6 +43644,7 @@ export declare type JiraDataClassificationField = JiraIssueField & JiraIssueFiel
|
|
|
43113
43644
|
description?: Maybe<Scalars['String']['output']>;
|
|
43114
43645
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
43115
43646
|
fieldId: Scalars['String']['output'];
|
|
43647
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
43116
43648
|
id: Scalars['ID']['output'];
|
|
43117
43649
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
43118
43650
|
issue?: Maybe<JiraIssue>;
|
|
@@ -43139,6 +43671,11 @@ export declare type JiraDataClassificationFieldPayload = Payload & {
|
|
|
43139
43671
|
field?: Maybe<JiraDataClassificationField>;
|
|
43140
43672
|
success: Scalars['Boolean']['output'];
|
|
43141
43673
|
};
|
|
43674
|
+
export declare type JiraDateFieldAssociationMessageMutationPayload = Payload & {
|
|
43675
|
+
__typename?: 'JiraDateFieldAssociationMessageMutationPayload';
|
|
43676
|
+
errors?: Maybe<Array<MutationError>>;
|
|
43677
|
+
success: Scalars['Boolean']['output'];
|
|
43678
|
+
};
|
|
43142
43679
|
export declare type JiraDateFieldInput = {
|
|
43143
43680
|
date: JiraDateInput;
|
|
43144
43681
|
fieldId: Scalars['ID']['input'];
|
|
@@ -43163,6 +43700,7 @@ export declare type JiraDatePickerField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
43163
43700
|
description?: Maybe<Scalars['String']['output']>;
|
|
43164
43701
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
43165
43702
|
fieldId: Scalars['String']['output'];
|
|
43703
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
43166
43704
|
id: Scalars['ID']['output'];
|
|
43167
43705
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
43168
43706
|
issue?: Maybe<JiraIssue>;
|
|
@@ -43198,6 +43736,7 @@ export declare type JiraDateTimePickerField = JiraIssueField & JiraIssueFieldCon
|
|
|
43198
43736
|
description?: Maybe<Scalars['String']['output']>;
|
|
43199
43737
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
43200
43738
|
fieldId: Scalars['String']['output'];
|
|
43739
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
43201
43740
|
id: Scalars['ID']['output'];
|
|
43202
43741
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
43203
43742
|
issue?: Maybe<JiraIssue>;
|
|
@@ -43304,15 +43843,29 @@ export declare enum JiraDeploymentsFeaturePrecondition {
|
|
|
43304
43843
|
DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE",
|
|
43305
43844
|
NotAvailable = "NOT_AVAILABLE"
|
|
43306
43845
|
}
|
|
43307
|
-
export declare type JiraDetailedView = JiraIssueSearchViewType & JiraView & Node & {
|
|
43846
|
+
export declare type JiraDetailedView = JiraIssueSearchViewMetadata & JiraIssueSearchViewType & JiraView & Node & {
|
|
43308
43847
|
__typename?: 'JiraDetailedView';
|
|
43309
43848
|
error?: Maybe<QueryError>;
|
|
43849
|
+
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
43850
|
+
filterId?: Maybe<Scalars['String']['output']>;
|
|
43851
|
+
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
43310
43852
|
id: Scalars['ID']['output'];
|
|
43853
|
+
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
43311
43854
|
issues?: Maybe<JiraIssueConnection>;
|
|
43855
|
+
namespace?: Maybe<Scalars['String']['output']>;
|
|
43856
|
+
viewId?: Maybe<Scalars['String']['output']>;
|
|
43857
|
+
};
|
|
43858
|
+
export declare type JiraDetailedViewFieldSetsArgs = {
|
|
43859
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
43860
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
43861
|
+
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
43862
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43863
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
43312
43864
|
};
|
|
43313
43865
|
export declare type JiraDetailedViewIssuesArgs = {
|
|
43314
43866
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
43315
43867
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
43868
|
+
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
|
|
43316
43869
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43317
43870
|
issueSearchInput: JiraIssueSearchInput;
|
|
43318
43871
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -43625,6 +44178,7 @@ export declare type JiraDevSummaryField = JiraIssueField & Node & {
|
|
|
43625
44178
|
description?: Maybe<Scalars['String']['output']>;
|
|
43626
44179
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
43627
44180
|
fieldId: Scalars['String']['output'];
|
|
44181
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
43628
44182
|
id: Scalars['ID']['output'];
|
|
43629
44183
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
43630
44184
|
issue?: Maybe<JiraIssue>;
|
|
@@ -43671,6 +44225,7 @@ export declare type JiraDurationField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
43671
44225
|
durationInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
43672
44226
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
43673
44227
|
fieldId: Scalars['String']['output'];
|
|
44228
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
43674
44229
|
id: Scalars['ID']['output'];
|
|
43675
44230
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
43676
44231
|
issue?: Maybe<JiraIssue>;
|
|
@@ -43761,6 +44316,7 @@ export declare type JiraEpicLinkField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
43761
44316
|
epics?: Maybe<JiraEpicConnection>;
|
|
43762
44317
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
43763
44318
|
fieldId: Scalars['String']['output'];
|
|
44319
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
43764
44320
|
id: Scalars['ID']['output'];
|
|
43765
44321
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
43766
44322
|
issue?: Maybe<JiraIssue>;
|
|
@@ -43802,6 +44358,7 @@ export declare type JiraFallbackField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
43802
44358
|
description?: Maybe<Scalars['String']['output']>;
|
|
43803
44359
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
43804
44360
|
fieldId: Scalars['String']['output'];
|
|
44361
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
43805
44362
|
id: Scalars['ID']['output'];
|
|
43806
44363
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
43807
44364
|
issue?: Maybe<JiraIssue>;
|
|
@@ -44085,6 +44642,7 @@ export declare type JiraFlagField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
44085
44642
|
description?: Maybe<Scalars['String']['output']>;
|
|
44086
44643
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
44087
44644
|
fieldId: Scalars['String']['output'];
|
|
44645
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
44088
44646
|
flag?: Maybe<JiraFlag>;
|
|
44089
44647
|
id: Scalars['ID']['output'];
|
|
44090
44648
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -44105,6 +44663,7 @@ export declare type JiraForgeDateField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
44105
44663
|
description?: Maybe<Scalars['String']['output']>;
|
|
44106
44664
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
44107
44665
|
fieldId: Scalars['String']['output'];
|
|
44666
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
44108
44667
|
id: Scalars['ID']['output'];
|
|
44109
44668
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44110
44669
|
issue?: Maybe<JiraIssue>;
|
|
@@ -44120,6 +44679,7 @@ export declare type JiraForgeDatetimeField = JiraIssueField & JiraIssueFieldConf
|
|
|
44120
44679
|
description?: Maybe<Scalars['String']['output']>;
|
|
44121
44680
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
44122
44681
|
fieldId: Scalars['String']['output'];
|
|
44682
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
44123
44683
|
id: Scalars['ID']['output'];
|
|
44124
44684
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44125
44685
|
issue?: Maybe<JiraIssue>;
|
|
@@ -44169,6 +44729,7 @@ export declare type JiraForgeGroupField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
44169
44729
|
description?: Maybe<Scalars['String']['output']>;
|
|
44170
44730
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
44171
44731
|
fieldId: Scalars['String']['output'];
|
|
44732
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
44172
44733
|
groups?: Maybe<JiraGroupConnection>;
|
|
44173
44734
|
id: Scalars['ID']['output'];
|
|
44174
44735
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -44193,6 +44754,7 @@ export declare type JiraForgeGroupsField = JiraIssueField & JiraIssueFieldConfig
|
|
|
44193
44754
|
description?: Maybe<Scalars['String']['output']>;
|
|
44194
44755
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
44195
44756
|
fieldId: Scalars['String']['output'];
|
|
44757
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
44196
44758
|
groups?: Maybe<JiraGroupConnection>;
|
|
44197
44759
|
id: Scalars['ID']['output'];
|
|
44198
44760
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -44229,6 +44791,7 @@ export declare type JiraForgeNumberField = JiraIssueField & JiraIssueFieldConfig
|
|
|
44229
44791
|
description?: Maybe<Scalars['String']['output']>;
|
|
44230
44792
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
44231
44793
|
fieldId: Scalars['String']['output'];
|
|
44794
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
44232
44795
|
id: Scalars['ID']['output'];
|
|
44233
44796
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44234
44797
|
issue?: Maybe<JiraIssue>;
|
|
@@ -44244,6 +44807,7 @@ export declare type JiraForgeObjectField = JiraIssueField & JiraIssueFieldConfig
|
|
|
44244
44807
|
description?: Maybe<Scalars['String']['output']>;
|
|
44245
44808
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
44246
44809
|
fieldId: Scalars['String']['output'];
|
|
44810
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
44247
44811
|
id: Scalars['ID']['output'];
|
|
44248
44812
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44249
44813
|
issue?: Maybe<JiraIssue>;
|
|
@@ -44284,6 +44848,7 @@ export declare type JiraForgeStringField = JiraIssueField & JiraIssueFieldConfig
|
|
|
44284
44848
|
description?: Maybe<Scalars['String']['output']>;
|
|
44285
44849
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
44286
44850
|
fieldId: Scalars['String']['output'];
|
|
44851
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
44287
44852
|
id: Scalars['ID']['output'];
|
|
44288
44853
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44289
44854
|
issue?: Maybe<JiraIssue>;
|
|
@@ -44299,6 +44864,7 @@ export declare type JiraForgeStringsField = JiraIssueField & JiraIssueFieldConfi
|
|
|
44299
44864
|
description?: Maybe<Scalars['String']['output']>;
|
|
44300
44865
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
44301
44866
|
fieldId: Scalars['String']['output'];
|
|
44867
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
44302
44868
|
id: Scalars['ID']['output'];
|
|
44303
44869
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44304
44870
|
issue?: Maybe<JiraIssue>;
|
|
@@ -44331,6 +44897,7 @@ export declare type JiraForgeUserField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
44331
44897
|
description?: Maybe<Scalars['String']['output']>;
|
|
44332
44898
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
44333
44899
|
fieldId: Scalars['String']['output'];
|
|
44900
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
44334
44901
|
id: Scalars['ID']['output'];
|
|
44335
44902
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44336
44903
|
issue?: Maybe<JiraIssue>;
|
|
@@ -44356,6 +44923,7 @@ export declare type JiraForgeUsersField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
44356
44923
|
description?: Maybe<Scalars['String']['output']>;
|
|
44357
44924
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
44358
44925
|
fieldId: Scalars['String']['output'];
|
|
44926
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
44359
44927
|
id: Scalars['ID']['output'];
|
|
44360
44928
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44361
44929
|
issue?: Maybe<JiraIssue>;
|
|
@@ -44500,6 +45068,7 @@ export declare type JiraGenericIssueField = JiraIssueField & JiraIssueFieldConfi
|
|
|
44500
45068
|
description?: Maybe<Scalars['String']['output']>;
|
|
44501
45069
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
44502
45070
|
fieldId: Scalars['String']['output'];
|
|
45071
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
44503
45072
|
id: Scalars['ID']['output'];
|
|
44504
45073
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44505
45074
|
issue?: Maybe<JiraIssue>;
|
|
@@ -44595,6 +45164,7 @@ export declare type JiraGoalsField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
44595
45164
|
description?: Maybe<Scalars['String']['output']>;
|
|
44596
45165
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
44597
45166
|
fieldId: Scalars['String']['output'];
|
|
45167
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
44598
45168
|
id: Scalars['ID']['output'];
|
|
44599
45169
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44600
45170
|
issue?: Maybe<JiraIssue>;
|
|
@@ -44815,6 +45385,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
44815
45385
|
fields?: Maybe<JiraIssueFieldConnection>;
|
|
44816
45386
|
fieldsById?: Maybe<JiraIssueFieldConnection>;
|
|
44817
45387
|
fieldsByIdOrAlias?: Maybe<Array<Maybe<JiraIssueField>>>;
|
|
45388
|
+
groupsByFieldId?: Maybe<JiraSpreadsheetGroupConnection>;
|
|
44818
45389
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
44819
45390
|
hasCustomisedContentPanels?: Maybe<Scalars['Boolean']['output']>;
|
|
44820
45391
|
hasProjectPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -44968,8 +45539,20 @@ export declare type JiraIssueFieldsByIdOrAliasArgs = {
|
|
|
44968
45539
|
idsOrAliases: Array<InputMaybe<Scalars['String']['input']>>;
|
|
44969
45540
|
ignoreMissingFields?: InputMaybe<Scalars['Boolean']['input']>;
|
|
44970
45541
|
};
|
|
45542
|
+
export declare type JiraIssueGroupsByFieldIdArgs = {
|
|
45543
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
45544
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
45545
|
+
fieldId: Scalars['String']['input'];
|
|
45546
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45547
|
+
firstNGroupsToSearch?: InputMaybe<Scalars['Int']['input']>;
|
|
45548
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
45549
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
45550
|
+
};
|
|
44971
45551
|
export declare type JiraIssueHasChildrenArgs = {
|
|
44972
45552
|
filterByProjectKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
45553
|
+
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
45554
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
45555
|
+
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
44973
45556
|
};
|
|
44974
45557
|
export declare type JiraIssueHasProjectPermissionArgs = {
|
|
44975
45558
|
permission: JiraProjectPermissionType;
|
|
@@ -45361,6 +45944,7 @@ export declare type JiraIssueField = {
|
|
|
45361
45944
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
45362
45945
|
description?: Maybe<Scalars['String']['output']>;
|
|
45363
45946
|
fieldId: Scalars['String']['output'];
|
|
45947
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
45364
45948
|
id: Scalars['ID']['output'];
|
|
45365
45949
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
45366
45950
|
issue?: Maybe<JiraIssue>;
|
|
@@ -45657,6 +46241,7 @@ export declare type JiraIssueLinkField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
45657
46241
|
description?: Maybe<Scalars['String']['output']>;
|
|
45658
46242
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
45659
46243
|
fieldId: Scalars['String']['output'];
|
|
46244
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
45660
46245
|
id: Scalars['ID']['output'];
|
|
45661
46246
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
45662
46247
|
issue?: Maybe<JiraIssue>;
|
|
@@ -45796,6 +46381,7 @@ export declare type JiraIssueRestrictionField = JiraIssueField & JiraIssueFieldC
|
|
|
45796
46381
|
description?: Maybe<Scalars['String']['output']>;
|
|
45797
46382
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
45798
46383
|
fieldId: Scalars['String']['output'];
|
|
46384
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
45799
46385
|
id: Scalars['ID']['output'];
|
|
45800
46386
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
45801
46387
|
issue?: Maybe<JiraIssue>;
|
|
@@ -46224,6 +46810,7 @@ export declare type JiraIssueTypeField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
46224
46810
|
description?: Maybe<Scalars['String']['output']>;
|
|
46225
46811
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
46226
46812
|
fieldId: Scalars['String']['output'];
|
|
46813
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
46227
46814
|
id: Scalars['ID']['output'];
|
|
46228
46815
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
46229
46816
|
issue?: Maybe<JiraIssue>;
|
|
@@ -46986,6 +47573,7 @@ export declare type JiraLabelsField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
46986
47573
|
description?: Maybe<Scalars['String']['output']>;
|
|
46987
47574
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
46988
47575
|
fieldId: Scalars['String']['output'];
|
|
47576
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
46989
47577
|
id: Scalars['ID']['output'];
|
|
46990
47578
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
46991
47579
|
issue?: Maybe<JiraIssue>;
|
|
@@ -47251,6 +47839,7 @@ export declare type JiraMultipleGroupPickerField = JiraIssueField & JiraIssueFie
|
|
|
47251
47839
|
description?: Maybe<Scalars['String']['output']>;
|
|
47252
47840
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
47253
47841
|
fieldId: Scalars['String']['output'];
|
|
47842
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
47254
47843
|
groups?: Maybe<JiraGroupConnection>;
|
|
47255
47844
|
id: Scalars['ID']['output'];
|
|
47256
47845
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -47300,6 +47889,7 @@ export declare type JiraMultipleSelectField = JiraHasMultipleSelectedValues & Ji
|
|
|
47300
47889
|
description?: Maybe<Scalars['String']['output']>;
|
|
47301
47890
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
47302
47891
|
fieldId: Scalars['String']['output'];
|
|
47892
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
47303
47893
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
47304
47894
|
id: Scalars['ID']['output'];
|
|
47305
47895
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -47362,6 +47952,7 @@ export declare type JiraMultipleSelectUserPickerField = JiraIssueField & JiraIss
|
|
|
47362
47952
|
description?: Maybe<Scalars['String']['output']>;
|
|
47363
47953
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
47364
47954
|
fieldId: Scalars['String']['output'];
|
|
47955
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
47365
47956
|
id: Scalars['ID']['output'];
|
|
47366
47957
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
47367
47958
|
issue?: Maybe<JiraIssue>;
|
|
@@ -47408,6 +47999,7 @@ export declare type JiraMultipleVersionPickerField = JiraHasMultipleSelectedValu
|
|
|
47408
47999
|
description?: Maybe<Scalars['String']['output']>;
|
|
47409
48000
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
47410
48001
|
fieldId: Scalars['String']['output'];
|
|
48002
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
47411
48003
|
id: Scalars['ID']['output'];
|
|
47412
48004
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
47413
48005
|
issue?: Maybe<JiraIssue>;
|
|
@@ -48391,6 +48983,7 @@ export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
48391
48983
|
description?: Maybe<Scalars['String']['output']>;
|
|
48392
48984
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
48393
48985
|
fieldId: Scalars['String']['output'];
|
|
48986
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
48394
48987
|
id: Scalars['ID']['output'];
|
|
48395
48988
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
48396
48989
|
isStoryPointField?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -48672,6 +49265,7 @@ export declare type JiraOriginalTimeEstimateField = JiraIssueField & JiraIssueFi
|
|
|
48672
49265
|
description?: Maybe<Scalars['String']['output']>;
|
|
48673
49266
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
48674
49267
|
fieldId: Scalars['String']['output'];
|
|
49268
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
48675
49269
|
id: Scalars['ID']['output'];
|
|
48676
49270
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
48677
49271
|
issue?: Maybe<JiraIssue>;
|
|
@@ -48738,6 +49332,7 @@ export declare type JiraParentIssueField = JiraIssueField & JiraIssueFieldConfig
|
|
|
48738
49332
|
description?: Maybe<Scalars['String']['output']>;
|
|
48739
49333
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
48740
49334
|
fieldId: Scalars['String']['output'];
|
|
49335
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
48741
49336
|
id: Scalars['ID']['output'];
|
|
48742
49337
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
48743
49338
|
issue?: Maybe<JiraIssue>;
|
|
@@ -48810,6 +49405,7 @@ export declare type JiraPeopleField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
48810
49405
|
description?: Maybe<Scalars['String']['output']>;
|
|
48811
49406
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
48812
49407
|
fieldId: Scalars['String']['output'];
|
|
49408
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
48813
49409
|
id: Scalars['ID']['output'];
|
|
48814
49410
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
48815
49411
|
isMulti?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -49073,6 +49669,7 @@ export declare type JiraPriorityField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
49073
49669
|
description?: Maybe<Scalars['String']['output']>;
|
|
49074
49670
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
49075
49671
|
fieldId: Scalars['String']['output'];
|
|
49672
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
49076
49673
|
id: Scalars['ID']['output'];
|
|
49077
49674
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49078
49675
|
issue?: Maybe<JiraIssue>;
|
|
@@ -49122,6 +49719,7 @@ export declare type JiraProformaFormsField = JiraIssueField & JiraIssueFieldConf
|
|
|
49122
49719
|
description?: Maybe<Scalars['String']['output']>;
|
|
49123
49720
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
49124
49721
|
fieldId: Scalars['String']['output'];
|
|
49722
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
49125
49723
|
id: Scalars['ID']['output'];
|
|
49126
49724
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49127
49725
|
issue?: Maybe<JiraIssue>;
|
|
@@ -49197,6 +49795,7 @@ export declare type JiraProject = Node & {
|
|
|
49197
49795
|
status?: Maybe<JiraProjectStatus>;
|
|
49198
49796
|
suggestedApproversForJiraVersion?: Maybe<JiraVersionSuggestedApproverConnection>;
|
|
49199
49797
|
suggestedDriversForJiraVersion?: Maybe<JiraVersionDriverConnection>;
|
|
49798
|
+
tmpBoardId?: Maybe<Scalars['Long']['output']>;
|
|
49200
49799
|
totalLinkedSecurityContainerCount?: Maybe<Scalars['Int']['output']>;
|
|
49201
49800
|
totalLinkedSecurityVulnerabilityCount?: Maybe<Scalars['Int']['output']>;
|
|
49202
49801
|
uuid?: Maybe<Scalars['ID']['output']>;
|
|
@@ -49476,6 +50075,7 @@ export declare type JiraProjectField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
49476
50075
|
description?: Maybe<Scalars['String']['output']>;
|
|
49477
50076
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
49478
50077
|
fieldId: Scalars['String']['output'];
|
|
50078
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
49479
50079
|
id: Scalars['ID']['output'];
|
|
49480
50080
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49481
50081
|
issue?: Maybe<JiraIssue>;
|
|
@@ -50861,6 +51461,7 @@ export declare type JiraRadioSelectField = JiraIssueField & JiraIssueFieldConfig
|
|
|
50861
51461
|
description?: Maybe<Scalars['String']['output']>;
|
|
50862
51462
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
50863
51463
|
fieldId: Scalars['String']['output'];
|
|
51464
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
50864
51465
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
50865
51466
|
id: Scalars['ID']['output'];
|
|
50866
51467
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -51078,6 +51679,7 @@ export declare type JiraRemainingTimeEstimateField = JiraIssueField & JiraIssueF
|
|
|
51078
51679
|
description?: Maybe<Scalars['String']['output']>;
|
|
51079
51680
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
51080
51681
|
fieldId: Scalars['String']['output'];
|
|
51682
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
51081
51683
|
id: Scalars['ID']['output'];
|
|
51082
51684
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
51083
51685
|
issue?: Maybe<JiraIssue>;
|
|
@@ -51196,6 +51798,7 @@ export declare type JiraResolutionField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
51196
51798
|
description?: Maybe<Scalars['String']['output']>;
|
|
51197
51799
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
51198
51800
|
fieldId: Scalars['String']['output'];
|
|
51801
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
51199
51802
|
id: Scalars['ID']['output'];
|
|
51200
51803
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
51201
51804
|
issue?: Maybe<JiraIssue>;
|
|
@@ -51351,6 +51954,7 @@ export declare type JiraRichTextField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
51351
51954
|
description?: Maybe<Scalars['String']['output']>;
|
|
51352
51955
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
51353
51956
|
fieldId: Scalars['String']['output'];
|
|
51957
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
51354
51958
|
id: Scalars['ID']['output'];
|
|
51355
51959
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
51356
51960
|
issue?: Maybe<JiraIssue>;
|
|
@@ -51633,6 +52237,7 @@ export declare type JiraSecurityLevelField = JiraIssueField & JiraIssueFieldConf
|
|
|
51633
52237
|
description?: Maybe<Scalars['String']['output']>;
|
|
51634
52238
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
51635
52239
|
fieldId: Scalars['String']['output'];
|
|
52240
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
51636
52241
|
id: Scalars['ID']['output'];
|
|
51637
52242
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
51638
52243
|
issue?: Maybe<JiraIssue>;
|
|
@@ -51754,6 +52359,7 @@ export declare type JiraServiceManagementApprovalField = JiraIssueField & JiraIs
|
|
|
51754
52359
|
description?: Maybe<Scalars['String']['output']>;
|
|
51755
52360
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
51756
52361
|
fieldId: Scalars['String']['output'];
|
|
52362
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
51757
52363
|
id: Scalars['ID']['output'];
|
|
51758
52364
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
51759
52365
|
issue?: Maybe<JiraIssue>;
|
|
@@ -51983,6 +52589,7 @@ export declare type JiraServiceManagementDateTimeField = JiraIssueField & JiraIs
|
|
|
51983
52589
|
description?: Maybe<Scalars['String']['output']>;
|
|
51984
52590
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
51985
52591
|
fieldId: Scalars['String']['output'];
|
|
52592
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
51986
52593
|
id: Scalars['ID']['output'];
|
|
51987
52594
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
51988
52595
|
issue?: Maybe<JiraIssue>;
|
|
@@ -52039,6 +52646,7 @@ export declare type JiraServiceManagementEntitlementField = JiraIssueField & Jir
|
|
|
52039
52646
|
description?: Maybe<Scalars['String']['output']>;
|
|
52040
52647
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52041
52648
|
fieldId: Scalars['String']['output'];
|
|
52649
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52042
52650
|
id: Scalars['ID']['output'];
|
|
52043
52651
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52044
52652
|
issue?: Maybe<JiraIssue>;
|
|
@@ -52078,6 +52686,7 @@ export declare type JiraServiceManagementIncidentLinkingField = JiraIssueField &
|
|
|
52078
52686
|
description?: Maybe<Scalars['String']['output']>;
|
|
52079
52687
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52080
52688
|
fieldId: Scalars['String']['output'];
|
|
52689
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52081
52690
|
id: Scalars['ID']['output'];
|
|
52082
52691
|
incident?: Maybe<JiraServiceManagementIncident>;
|
|
52083
52692
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -52099,6 +52708,7 @@ export declare type JiraServiceManagementMajorIncidentField = JiraIssueField & J
|
|
|
52099
52708
|
description?: Maybe<Scalars['String']['output']>;
|
|
52100
52709
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52101
52710
|
fieldId: Scalars['String']['output'];
|
|
52711
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52102
52712
|
id: Scalars['ID']['output'];
|
|
52103
52713
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52104
52714
|
issue?: Maybe<JiraIssue>;
|
|
@@ -52147,6 +52757,7 @@ export declare type JiraServiceManagementMultipleSelectUserPickerField = JiraIss
|
|
|
52147
52757
|
description?: Maybe<Scalars['String']['output']>;
|
|
52148
52758
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52149
52759
|
fieldId: Scalars['String']['output'];
|
|
52760
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52150
52761
|
id: Scalars['ID']['output'];
|
|
52151
52762
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52152
52763
|
issue?: Maybe<JiraIssue>;
|
|
@@ -52201,6 +52812,7 @@ export declare type JiraServiceManagementOrganizationField = JiraHasMultipleSele
|
|
|
52201
52812
|
description?: Maybe<Scalars['String']['output']>;
|
|
52202
52813
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52203
52814
|
fieldId: Scalars['String']['output'];
|
|
52815
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52204
52816
|
id: Scalars['ID']['output'];
|
|
52205
52817
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52206
52818
|
issue?: Maybe<JiraIssue>;
|
|
@@ -52259,6 +52871,7 @@ export declare type JiraServiceManagementPeopleField = JiraIssueField & JiraIssu
|
|
|
52259
52871
|
description?: Maybe<Scalars['String']['output']>;
|
|
52260
52872
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52261
52873
|
fieldId: Scalars['String']['output'];
|
|
52874
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52262
52875
|
id: Scalars['ID']['output'];
|
|
52263
52876
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52264
52877
|
isMulti?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -52339,6 +52952,7 @@ export declare type JiraServiceManagementRequestFeedbackField = JiraIssueField &
|
|
|
52339
52952
|
feedback?: Maybe<JiraServiceManagementFeedback>;
|
|
52340
52953
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52341
52954
|
fieldId: Scalars['String']['output'];
|
|
52955
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52342
52956
|
id: Scalars['ID']['output'];
|
|
52343
52957
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52344
52958
|
issue?: Maybe<JiraIssue>;
|
|
@@ -52352,6 +52966,7 @@ export declare type JiraServiceManagementRequestLanguageField = JiraIssueField &
|
|
|
52352
52966
|
description?: Maybe<Scalars['String']['output']>;
|
|
52353
52967
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52354
52968
|
fieldId: Scalars['String']['output'];
|
|
52969
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52355
52970
|
id: Scalars['ID']['output'];
|
|
52356
52971
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52357
52972
|
issue?: Maybe<JiraIssue>;
|
|
@@ -52440,6 +53055,7 @@ export declare type JiraServiceManagementRequestTypeField = JiraIssueField & Jir
|
|
|
52440
53055
|
description?: Maybe<Scalars['String']['output']>;
|
|
52441
53056
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52442
53057
|
fieldId: Scalars['String']['output'];
|
|
53058
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52443
53059
|
id: Scalars['ID']['output'];
|
|
52444
53060
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52445
53061
|
issue?: Maybe<JiraIssue>;
|
|
@@ -52539,6 +53155,7 @@ export declare type JiraServiceManagementRespondersField = JiraIssueField & Jira
|
|
|
52539
53155
|
description?: Maybe<Scalars['String']['output']>;
|
|
52540
53156
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52541
53157
|
fieldId: Scalars['String']['output'];
|
|
53158
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52542
53159
|
id: Scalars['ID']['output'];
|
|
52543
53160
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52544
53161
|
issue?: Maybe<JiraIssue>;
|
|
@@ -52574,6 +53191,7 @@ export declare type JiraServiceManagementSentimentField = JiraIssueField & JiraI
|
|
|
52574
53191
|
description?: Maybe<Scalars['String']['output']>;
|
|
52575
53192
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52576
53193
|
fieldId: Scalars['String']['output'];
|
|
53194
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52577
53195
|
id: Scalars['ID']['output'];
|
|
52578
53196
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52579
53197
|
issue?: Maybe<JiraIssue>;
|
|
@@ -52880,6 +53498,7 @@ export declare type JiraSingleGroupPickerField = JiraIssueField & JiraIssueField
|
|
|
52880
53498
|
description?: Maybe<Scalars['String']['output']>;
|
|
52881
53499
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52882
53500
|
fieldId: Scalars['String']['output'];
|
|
53501
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52883
53502
|
groups?: Maybe<JiraGroupConnection>;
|
|
52884
53503
|
id: Scalars['ID']['output'];
|
|
52885
53504
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -52918,6 +53537,7 @@ export declare type JiraSingleLineTextField = JiraIssueField & JiraIssueFieldCon
|
|
|
52918
53537
|
description?: Maybe<Scalars['String']['output']>;
|
|
52919
53538
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52920
53539
|
fieldId: Scalars['String']['output'];
|
|
53540
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52921
53541
|
id: Scalars['ID']['output'];
|
|
52922
53542
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52923
53543
|
issue?: Maybe<JiraIssue>;
|
|
@@ -52950,6 +53570,7 @@ export declare type JiraSingleSelectField = JiraHasSelectableValueOptions & Jira
|
|
|
52950
53570
|
description?: Maybe<Scalars['String']['output']>;
|
|
52951
53571
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52952
53572
|
fieldId: Scalars['String']['output'];
|
|
53573
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52953
53574
|
fieldOption?: Maybe<JiraOption>;
|
|
52954
53575
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
52955
53576
|
id: Scalars['ID']['output'];
|
|
@@ -52998,6 +53619,7 @@ export declare type JiraSingleSelectUserPickerField = JiraIssueField & JiraIssue
|
|
|
52998
53619
|
description?: Maybe<Scalars['String']['output']>;
|
|
52999
53620
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
53000
53621
|
fieldId: Scalars['String']['output'];
|
|
53622
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
53001
53623
|
id: Scalars['ID']['output'];
|
|
53002
53624
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
53003
53625
|
issue?: Maybe<JiraIssue>;
|
|
@@ -53041,6 +53663,7 @@ export declare type JiraSingleVersionPickerField = JiraHasSelectableValueOptions
|
|
|
53041
53663
|
description?: Maybe<Scalars['String']['output']>;
|
|
53042
53664
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
53043
53665
|
fieldId: Scalars['String']['output'];
|
|
53666
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
53044
53667
|
id: Scalars['ID']['output'];
|
|
53045
53668
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
53046
53669
|
issue?: Maybe<JiraIssue>;
|
|
@@ -53111,6 +53734,8 @@ export declare type JiraSoftwareProjectNavigationMetadata = {
|
|
|
53111
53734
|
};
|
|
53112
53735
|
export declare type JiraSpreadsheetGroup = {
|
|
53113
53736
|
__typename?: 'JiraSpreadsheetGroup';
|
|
53737
|
+
afterGroupId?: Maybe<Scalars['String']['output']>;
|
|
53738
|
+
beforeGroupId?: Maybe<Scalars['String']['output']>;
|
|
53114
53739
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
53115
53740
|
fieldType?: Maybe<Scalars['String']['output']>;
|
|
53116
53741
|
fieldValue?: Maybe<JiraJqlFieldValue>;
|
|
@@ -53152,6 +53777,7 @@ export declare type JiraSpreadsheetGroupConnection = {
|
|
|
53152
53777
|
edges?: Maybe<Array<Maybe<JiraSpreadsheetGroupEdge>>>;
|
|
53153
53778
|
errors?: Maybe<Array<QueryError>>;
|
|
53154
53779
|
firstGroup?: Maybe<JiraSpreadsheetGroup>;
|
|
53780
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
53155
53781
|
pageInfo: PageInfo;
|
|
53156
53782
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
53157
53783
|
};
|
|
@@ -53226,6 +53852,7 @@ export declare type JiraSprintField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
53226
53852
|
description?: Maybe<Scalars['String']['output']>;
|
|
53227
53853
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
53228
53854
|
fieldId: Scalars['String']['output'];
|
|
53855
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
53229
53856
|
id: Scalars['ID']['output'];
|
|
53230
53857
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
53231
53858
|
issue?: Maybe<JiraIssue>;
|
|
@@ -53337,6 +53964,7 @@ export declare type JiraStatusCategoryField = JiraIssueField & JiraIssueFieldCon
|
|
|
53337
53964
|
description?: Maybe<Scalars['String']['output']>;
|
|
53338
53965
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
53339
53966
|
fieldId: Scalars['String']['output'];
|
|
53967
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
53340
53968
|
id: Scalars['ID']['output'];
|
|
53341
53969
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
53342
53970
|
issue?: Maybe<JiraIssue>;
|
|
@@ -53368,6 +53996,7 @@ export declare type JiraStatusField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
53368
53996
|
description?: Maybe<Scalars['String']['output']>;
|
|
53369
53997
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
53370
53998
|
fieldId: Scalars['String']['output'];
|
|
53999
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
53371
54000
|
id: Scalars['ID']['output'];
|
|
53372
54001
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
53373
54002
|
issue?: Maybe<JiraIssue>;
|
|
@@ -53534,6 +54163,7 @@ export declare type JiraSubtasksField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
53534
54163
|
description?: Maybe<Scalars['String']['output']>;
|
|
53535
54164
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
53536
54165
|
fieldId: Scalars['String']['output'];
|
|
54166
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
53537
54167
|
id: Scalars['ID']['output'];
|
|
53538
54168
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
53539
54169
|
issue?: Maybe<JiraIssue>;
|
|
@@ -53653,6 +54283,7 @@ export declare type JiraTeamField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
53653
54283
|
description?: Maybe<Scalars['String']['output']>;
|
|
53654
54284
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
53655
54285
|
fieldId: Scalars['String']['output'];
|
|
54286
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
53656
54287
|
id: Scalars['ID']['output'];
|
|
53657
54288
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
53658
54289
|
issue?: Maybe<JiraIssue>;
|
|
@@ -53720,6 +54351,7 @@ export declare type JiraTeamViewField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
53720
54351
|
description?: Maybe<Scalars['String']['output']>;
|
|
53721
54352
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
53722
54353
|
fieldId: Scalars['String']['output'];
|
|
54354
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
53723
54355
|
id: Scalars['ID']['output'];
|
|
53724
54356
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
53725
54357
|
issue?: Maybe<JiraIssue>;
|
|
@@ -53767,6 +54399,7 @@ export declare type JiraTimeTrackingField = JiraIssueField & JiraIssueFieldConfi
|
|
|
53767
54399
|
description?: Maybe<Scalars['String']['output']>;
|
|
53768
54400
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
53769
54401
|
fieldId: Scalars['String']['output'];
|
|
54402
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
53770
54403
|
id: Scalars['ID']['output'];
|
|
53771
54404
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
53772
54405
|
issue?: Maybe<JiraIssue>;
|
|
@@ -54328,6 +54961,7 @@ export declare type JiraUrlField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
54328
54961
|
description?: Maybe<Scalars['String']['output']>;
|
|
54329
54962
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
54330
54963
|
fieldId: Scalars['String']['output'];
|
|
54964
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
54331
54965
|
id: Scalars['ID']['output'];
|
|
54332
54966
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
54333
54967
|
issue?: Maybe<JiraIssue>;
|
|
@@ -54466,6 +55100,7 @@ export declare type JiraUserPreferences = {
|
|
|
54466
55100
|
issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
54467
55101
|
jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
54468
55102
|
projectListRightPanelState?: Maybe<JiraProjectListRightPanelState>;
|
|
55103
|
+
showDateFieldAssociationMessageByIssueKey?: Maybe<Scalars['Boolean']['output']>;
|
|
54469
55104
|
};
|
|
54470
55105
|
export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProjectArgs = {
|
|
54471
55106
|
projectKey: Scalars['String']['input'];
|
|
@@ -54473,13 +55108,20 @@ export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProject
|
|
|
54473
55108
|
export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
|
|
54474
55109
|
projectKey: Scalars['String']['input'];
|
|
54475
55110
|
};
|
|
55111
|
+
export declare type JiraUserPreferencesShowDateFieldAssociationMessageByIssueKeyArgs = {
|
|
55112
|
+
issueKey: Scalars['String']['input'];
|
|
55113
|
+
};
|
|
54476
55114
|
export declare type JiraUserPreferencesMutation = {
|
|
54477
55115
|
__typename?: 'JiraUserPreferencesMutation';
|
|
55116
|
+
dismissDateFieldAssociationMessageByIssueKey?: Maybe<JiraDateFieldAssociationMessageMutationPayload>;
|
|
54478
55117
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
54479
55118
|
setJQLBuilderSearchMode?: Maybe<JiraJqlBuilderSearchModeMutationPayload>;
|
|
54480
55119
|
setNaturalLanguageSpotlightTourEnabled?: Maybe<JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload>;
|
|
54481
55120
|
setProjectListRightPanelState?: Maybe<JiraProjectListRightPanelStateMutationPayload>;
|
|
54482
55121
|
};
|
|
55122
|
+
export declare type JiraUserPreferencesMutationDismissDateFieldAssociationMessageByIssueKeyArgs = {
|
|
55123
|
+
issueKey: Scalars['String']['input'];
|
|
55124
|
+
};
|
|
54483
55125
|
export declare type JiraUserPreferencesMutationSetIssueNavigatorSearchLayoutArgs = {
|
|
54484
55126
|
searchLayout?: InputMaybe<JiraIssueNavigatorSearchLayout>;
|
|
54485
55127
|
};
|
|
@@ -55059,6 +55701,7 @@ export declare type JiraVotesField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
55059
55701
|
description?: Maybe<Scalars['String']['output']>;
|
|
55060
55702
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
55061
55703
|
fieldId: Scalars['String']['output'];
|
|
55704
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
55062
55705
|
id: Scalars['ID']['output'];
|
|
55063
55706
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
55064
55707
|
issue?: Maybe<JiraIssue>;
|
|
@@ -55098,6 +55741,7 @@ export declare type JiraWatchesField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
55098
55741
|
description?: Maybe<Scalars['String']['output']>;
|
|
55099
55742
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
55100
55743
|
fieldId: Scalars['String']['output'];
|
|
55744
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
55101
55745
|
id: Scalars['ID']['output'];
|
|
55102
55746
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
55103
55747
|
issue?: Maybe<JiraIssue>;
|
|
@@ -55153,6 +55797,7 @@ export declare type JiraWorkCategoryField = JiraIssueField & JiraIssueFieldConfi
|
|
|
55153
55797
|
description?: Maybe<Scalars['String']['output']>;
|
|
55154
55798
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
55155
55799
|
fieldId: Scalars['String']['output'];
|
|
55800
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
55156
55801
|
id: Scalars['ID']['output'];
|
|
55157
55802
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
55158
55803
|
issue?: Maybe<JiraIssue>;
|
|
@@ -55178,6 +55823,7 @@ export declare type JiraWorkLogField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
55178
55823
|
description?: Maybe<Scalars['String']['output']>;
|
|
55179
55824
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
55180
55825
|
fieldId: Scalars['String']['output'];
|
|
55826
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
55181
55827
|
id: Scalars['ID']['output'];
|
|
55182
55828
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
55183
55829
|
issue?: Maybe<JiraIssue>;
|
|
@@ -55672,6 +56318,7 @@ export declare enum JsmChatConversationAnalyticsEvent {
|
|
|
55672
56318
|
export declare type JsmChatConversationAnalyticsMetadataInput = {
|
|
55673
56319
|
channelType?: InputMaybe<JsmChatConversationChannelType>;
|
|
55674
56320
|
csatScore?: InputMaybe<Scalars['Int']['input']>;
|
|
56321
|
+
helpCenterId?: InputMaybe<Scalars['String']['input']>;
|
|
55675
56322
|
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
55676
56323
|
};
|
|
55677
56324
|
export declare type JsmChatConversationAppendixAction = JsmChatDropdownAppendix | JsmChatJiraFieldAppendix | JsmChatOptionAppendix;
|
|
@@ -57211,6 +57858,7 @@ export declare type MarketplaceApp = {
|
|
|
57211
57858
|
summary?: Maybe<Scalars['String']['output']>;
|
|
57212
57859
|
supportTicketSystemUrl?: Maybe<Scalars['URL']['output']>;
|
|
57213
57860
|
tagline?: Maybe<Scalars['String']['output']>;
|
|
57861
|
+
tags?: Maybe<MarketplaceAppTags>;
|
|
57214
57862
|
versions: MarketplaceAppVersionConnection;
|
|
57215
57863
|
watchersInfo?: Maybe<MarketplaceAppWatchersInfo>;
|
|
57216
57864
|
wikiUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -57269,6 +57917,17 @@ export declare type MarketplaceAppReviewSummary = {
|
|
|
57269
57917
|
rating?: Maybe<Scalars['Float']['output']>;
|
|
57270
57918
|
score?: Maybe<Scalars['Float']['output']>;
|
|
57271
57919
|
};
|
|
57920
|
+
export declare type MarketplaceAppTag = {
|
|
57921
|
+
__typename?: 'MarketplaceAppTag';
|
|
57922
|
+
id: Scalars['ID']['output'];
|
|
57923
|
+
name: Scalars['String']['output'];
|
|
57924
|
+
};
|
|
57925
|
+
export declare type MarketplaceAppTags = {
|
|
57926
|
+
__typename?: 'MarketplaceAppTags';
|
|
57927
|
+
categoryTags?: Maybe<Array<MarketplaceAppTag>>;
|
|
57928
|
+
keywordTags?: Maybe<Array<MarketplaceAppTag>>;
|
|
57929
|
+
marketingTags?: Maybe<Array<MarketplaceAppTag>>;
|
|
57930
|
+
};
|
|
57272
57931
|
export declare type MarketplaceAppTrustInformation = {
|
|
57273
57932
|
__typename?: 'MarketplaceAppTrustInformation';
|
|
57274
57933
|
dataAccessAndStorage?: Maybe<DataAccessAndStorage>;
|
|
@@ -57286,6 +57945,7 @@ export declare type MarketplaceAppVersion = {
|
|
|
57286
57945
|
buildNumber: Scalars['ID']['output'];
|
|
57287
57946
|
deployment: MarketplaceAppDeployment;
|
|
57288
57947
|
documentationUrl?: Maybe<Scalars['URL']['output']>;
|
|
57948
|
+
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
57289
57949
|
endUserLicenseAgreementUrl?: Maybe<Scalars['URL']['output']>;
|
|
57290
57950
|
heroImage?: Maybe<MarketplaceListingImage>;
|
|
57291
57951
|
highlights?: Maybe<Array<MarketplaceListingHighlight>>;
|
|
@@ -58965,7 +59625,7 @@ export declare enum MembershipState {
|
|
|
58965
59625
|
Invited = "INVITED",
|
|
58966
59626
|
RequestingToJoin = "REQUESTING_TO_JOIN"
|
|
58967
59627
|
}
|
|
58968
|
-
export declare type MercuryActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | TownsquareGoal;
|
|
59628
|
+
export declare type MercuryActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraIssue | TownsquareGoal | TownsquareProject;
|
|
58969
59629
|
export declare type MercuryAddWatcherToFocusAreaInput = {
|
|
58970
59630
|
cloudId: Scalars['ID']['input'];
|
|
58971
59631
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -59221,6 +59881,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
59221
59881
|
headcountAggregation?: Maybe<MercuryHeadcountAggregation>;
|
|
59222
59882
|
health?: Maybe<MercuryFocusAreaHealth>;
|
|
59223
59883
|
id: Scalars['ID']['output'];
|
|
59884
|
+
linkedGoalSummary?: Maybe<MercuryFocusAreaLinkedGoalSummary>;
|
|
59224
59885
|
linkedWorkSummary?: Maybe<MercuryFocusAreaLinkedWorkSummary>;
|
|
59225
59886
|
name: Scalars['String']['output'];
|
|
59226
59887
|
owner?: Maybe<User>;
|
|
@@ -59343,9 +60004,15 @@ export declare type MercuryFocusAreaLink = Node & {
|
|
|
59343
60004
|
id: Scalars['ID']['output'];
|
|
59344
60005
|
parentFocusAreaId: Scalars['String']['output'];
|
|
59345
60006
|
};
|
|
60007
|
+
export declare type MercuryFocusAreaLinkedGoalSummary = {
|
|
60008
|
+
__typename?: 'MercuryFocusAreaLinkedGoalSummary';
|
|
60009
|
+
count: Scalars['Int']['output'];
|
|
60010
|
+
countIncludingSubFocusAreas?: Maybe<Scalars['Int']['output']>;
|
|
60011
|
+
};
|
|
59346
60012
|
export declare type MercuryFocusAreaLinkedWorkSummary = {
|
|
59347
60013
|
__typename?: 'MercuryFocusAreaLinkedWorkSummary';
|
|
59348
60014
|
count: Scalars['Int']['output'];
|
|
60015
|
+
countIncludingSubFocusAreas?: Maybe<Scalars['Int']['output']>;
|
|
59349
60016
|
};
|
|
59350
60017
|
export declare type MercuryFocusAreaLinks = {
|
|
59351
60018
|
__typename?: 'MercuryFocusAreaLinks';
|
|
@@ -59727,6 +60394,7 @@ export declare type MercuryPortfolio = Node & {
|
|
|
59727
60394
|
ari: Scalars['String']['output'];
|
|
59728
60395
|
funding?: Maybe<MercuryPortfolioFunding>;
|
|
59729
60396
|
id: Scalars['ID']['output'];
|
|
60397
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
59730
60398
|
linkedFocusAreaGoalCount: Scalars['Int']['output'];
|
|
59731
60399
|
linkedFocusAreaSummary?: Maybe<MercuryPortfolioFocusAreaSummary>;
|
|
59732
60400
|
name: Scalars['String']['output'];
|
|
@@ -62113,6 +62781,7 @@ export declare type PeapProgram = {
|
|
|
62113
62781
|
__typename?: 'PEAPProgram';
|
|
62114
62782
|
activatedAt?: Maybe<Scalars['Date']['output']>;
|
|
62115
62783
|
cdacCategory?: Maybe<Scalars['Int']['output']>;
|
|
62784
|
+
cdacCategoryURL?: Maybe<Scalars['String']['output']>;
|
|
62116
62785
|
changeTicket?: Maybe<Scalars['String']['output']>;
|
|
62117
62786
|
completedAt?: Maybe<Scalars['Date']['output']>;
|
|
62118
62787
|
createdAt: Scalars['Date']['output'];
|
|
@@ -62157,6 +62826,8 @@ export declare type PeapProgramEnrollmentQueryJiraArgs = {
|
|
|
62157
62826
|
export declare type PeapProgramInternalData = {
|
|
62158
62827
|
__typename?: 'PEAPProgramInternalData';
|
|
62159
62828
|
cdacGroup?: Maybe<Scalars['String']['output']>;
|
|
62829
|
+
cdacGroupURL?: Maybe<Scalars['String']['output']>;
|
|
62830
|
+
changeTicketURL?: Maybe<Scalars['String']['output']>;
|
|
62160
62831
|
owner?: Maybe<User>;
|
|
62161
62832
|
};
|
|
62162
62833
|
export declare type PeapProgramMutationResponse = Payload & {
|
|
@@ -63290,6 +63961,7 @@ export declare type Query = {
|
|
|
63290
63961
|
appLogs?: Maybe<AppLogConnection>;
|
|
63291
63962
|
appLogsWithMetaData?: Maybe<AppLogsWithMetaDataResponse>;
|
|
63292
63963
|
appRecommendations?: Maybe<AppRecQuery>;
|
|
63964
|
+
appStorage_sqlDatabase?: Maybe<AppStorageSqlDatabasePayload>;
|
|
63293
63965
|
appStoredCustomEntities?: Maybe<AppStoredCustomEntityConnection>;
|
|
63294
63966
|
appStoredCustomEntity?: Maybe<AppStoredCustomEntity>;
|
|
63295
63967
|
appStoredEntities?: Maybe<AppStoredEntityConnection>;
|
|
@@ -63643,6 +64315,7 @@ export declare type Query = {
|
|
|
63643
64315
|
productListing?: Maybe<ProductListingResult>;
|
|
63644
64316
|
productListings: Array<ProductListingResult>;
|
|
63645
64317
|
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
64318
|
+
radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
|
|
63646
64319
|
radar_positions?: Maybe<RadarPositionConnection>;
|
|
63647
64320
|
radar_workspace: RadarWorkspace;
|
|
63648
64321
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
@@ -63738,6 +64411,9 @@ export declare type QueryAppLogsWithMetaDataArgs = {
|
|
|
63738
64411
|
query?: InputMaybe<LogQueryInput>;
|
|
63739
64412
|
queryStartTime: Scalars['String']['input'];
|
|
63740
64413
|
};
|
|
64414
|
+
export declare type QueryAppStorage_SqlDatabaseArgs = {
|
|
64415
|
+
input?: InputMaybe<AppStorageSqlDatabaseInput>;
|
|
64416
|
+
};
|
|
63741
64417
|
export declare type QueryAppStoredCustomEntitiesArgs = {
|
|
63742
64418
|
contextAri: Scalars['ID']['input'];
|
|
63743
64419
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -65057,6 +65733,15 @@ export declare type QueryRadar_FieldValuesArgs = {
|
|
|
65057
65733
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
65058
65734
|
uniqueFieldId: Scalars['ID']['input'];
|
|
65059
65735
|
};
|
|
65736
|
+
export declare type QueryRadar_GroupMetricsArgs = {
|
|
65737
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
65738
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
65739
|
+
cloudId: Scalars['ID']['input'];
|
|
65740
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65741
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
65742
|
+
rql?: InputMaybe<Scalars['String']['input']>;
|
|
65743
|
+
uniqueFieldIdIsIn: Array<Scalars['ID']['input']>;
|
|
65744
|
+
};
|
|
65060
65745
|
export declare type QueryRadar_PositionsArgs = {
|
|
65061
65746
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
65062
65747
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -65291,7 +65976,26 @@ export declare enum RadarFilterPlurality {
|
|
|
65291
65976
|
}
|
|
65292
65977
|
export declare type RadarFocusAreaMappingsInput = {
|
|
65293
65978
|
focusAreaAri: Scalars['ID']['input'];
|
|
65294
|
-
|
|
65979
|
+
positionAri: Scalars['ID']['input'];
|
|
65980
|
+
};
|
|
65981
|
+
export declare type RadarGroupMetrics = {
|
|
65982
|
+
__typename?: 'RadarGroupMetrics';
|
|
65983
|
+
count: Scalars['Int']['output'];
|
|
65984
|
+
field: RadarFieldValueIdPair;
|
|
65985
|
+
subGroups: Array<RadarGroupMetrics>;
|
|
65986
|
+
};
|
|
65987
|
+
export declare type RadarGroupMetricsConnection = RadarConnection & {
|
|
65988
|
+
__typename?: 'RadarGroupMetricsConnection';
|
|
65989
|
+
edges?: Maybe<Array<RadarGroupMetricsEdge>>;
|
|
65990
|
+
nodes?: Maybe<Array<RadarGroupMetrics>>;
|
|
65991
|
+
pageInfo: PageInfo;
|
|
65992
|
+
rowCount: Scalars['Int']['output'];
|
|
65993
|
+
totalCount: Scalars['Int']['output'];
|
|
65994
|
+
};
|
|
65995
|
+
export declare type RadarGroupMetricsEdge = RadarEdge & {
|
|
65996
|
+
__typename?: 'RadarGroupMetricsEdge';
|
|
65997
|
+
cursor: Scalars['String']['output'];
|
|
65998
|
+
node: RadarGroupMetrics;
|
|
65295
65999
|
};
|
|
65296
66000
|
export declare type RadarMutationResponse = {
|
|
65297
66001
|
__typename?: 'RadarMutationResponse';
|
|
@@ -66851,6 +67555,7 @@ export declare type SearchJiraFilter = {
|
|
|
66851
67555
|
};
|
|
66852
67556
|
export declare type SearchJiraIssueFilter = {
|
|
66853
67557
|
assigneeARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
67558
|
+
issueTypeIDs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
66854
67559
|
projectARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
66855
67560
|
reporterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
66856
67561
|
statusCategories?: InputMaybe<Array<SearchIssueStatusCategory>>;
|
|
@@ -66977,7 +67682,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
66977
67682
|
type: SearchResultType;
|
|
66978
67683
|
url: Scalars['URL']['output'];
|
|
66979
67684
|
};
|
|
66980
|
-
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
67685
|
+
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
66981
67686
|
export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & SearchResult & {
|
|
66982
67687
|
__typename?: 'SearchResultGoogleDocument';
|
|
66983
67688
|
bodyText: Scalars['String']['output'];
|
|
@@ -67120,6 +67825,7 @@ export declare type SearchResultJiraIssue = SearchResult & {
|
|
|
67120
67825
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
67121
67826
|
id: Scalars['ID']['output'];
|
|
67122
67827
|
issue?: Maybe<JiraIssue>;
|
|
67828
|
+
issueTypeId: Scalars['String']['output'];
|
|
67123
67829
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
67124
67830
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
67125
67831
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
@@ -67168,6 +67874,28 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
67168
67874
|
export declare type SearchResultJiraProjectSocialSignalArgs = {
|
|
67169
67875
|
tenantId: Scalars['ID']['input'];
|
|
67170
67876
|
};
|
|
67877
|
+
export declare type SearchResultMercuryFocusArea = SearchResult & {
|
|
67878
|
+
__typename?: 'SearchResultMercuryFocusArea';
|
|
67879
|
+
description: Scalars['String']['output'];
|
|
67880
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
67881
|
+
id: Scalars['ID']['output'];
|
|
67882
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
67883
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
67884
|
+
title: Scalars['String']['output'];
|
|
67885
|
+
type: SearchResultType;
|
|
67886
|
+
url: Scalars['URL']['output'];
|
|
67887
|
+
};
|
|
67888
|
+
export declare type SearchResultMercuryFocusAreaStatusUpdate = SearchResult & {
|
|
67889
|
+
__typename?: 'SearchResultMercuryFocusAreaStatusUpdate';
|
|
67890
|
+
description: Scalars['String']['output'];
|
|
67891
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
67892
|
+
id: Scalars['ID']['output'];
|
|
67893
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
67894
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
67895
|
+
title: Scalars['String']['output'];
|
|
67896
|
+
type: SearchResultType;
|
|
67897
|
+
url: Scalars['URL']['output'];
|
|
67898
|
+
};
|
|
67171
67899
|
export declare type SearchResultMicrosoftDocument = SearchL2FeatureProvider & SearchResult & {
|
|
67172
67900
|
__typename?: 'SearchResultMicrosoftDocument';
|
|
67173
67901
|
bodyText: Scalars['String']['output'];
|
|
@@ -67235,6 +67963,8 @@ export declare enum SearchResultType {
|
|
|
67235
67963
|
Document = "document",
|
|
67236
67964
|
Embed = "embed",
|
|
67237
67965
|
Filter = "filter",
|
|
67966
|
+
FocusArea = "focus_area",
|
|
67967
|
+
FocusAreaStatusUpdate = "focus_area_status_update",
|
|
67238
67968
|
Folder = "folder",
|
|
67239
67969
|
Goal = "goal",
|
|
67240
67970
|
Issue = "issue",
|
|
@@ -68121,11 +68851,6 @@ export declare type ShepherdDetection = {
|
|
|
68121
68851
|
settings?: Maybe<Array<ShepherdDetectionSetting>>;
|
|
68122
68852
|
title: Scalars['String']['output'];
|
|
68123
68853
|
};
|
|
68124
|
-
export declare type ShepherdDetectionBooleanSetting = {
|
|
68125
|
-
__typename?: 'ShepherdDetectionBooleanSetting';
|
|
68126
|
-
booleanDefault: Scalars['Boolean']['output'];
|
|
68127
|
-
booleanValue?: Maybe<Scalars['Boolean']['output']>;
|
|
68128
|
-
};
|
|
68129
68854
|
export declare type ShepherdDetectionConfluenceEnabledSetting = {
|
|
68130
68855
|
__typename?: 'ShepherdDetectionConfluenceEnabledSetting';
|
|
68131
68856
|
booleanDefault: Scalars['Boolean']['output'];
|
|
@@ -68201,7 +68926,7 @@ export declare type ShepherdDetectionSettingSetValueInput = {
|
|
|
68201
68926
|
stringValues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
68202
68927
|
thresholdValue?: InputMaybe<ShepherdRateThresholdValue>;
|
|
68203
68928
|
};
|
|
68204
|
-
export declare type ShepherdDetectionSettingValueType =
|
|
68929
|
+
export declare type ShepherdDetectionSettingValueType = ShepherdDetectionConfluenceEnabledSetting | ShepherdDetectionExclusionsSetting | ShepherdDetectionJiraEnabledSetting | ShepherdRateThresholdSetting;
|
|
68205
68930
|
export declare type ShepherdDetectionUpdateSettingValuePayload = Payload & {
|
|
68206
68931
|
__typename?: 'ShepherdDetectionUpdateSettingValuePayload';
|
|
68207
68932
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -70068,14 +70793,29 @@ export declare type ThirdPartyUser = LocalizationContext & {
|
|
|
70068
70793
|
canonicalAccountId: Scalars['ID']['output'];
|
|
70069
70794
|
createdAt: Scalars['DateTime']['output'];
|
|
70070
70795
|
email?: Maybe<Scalars['String']['output']>;
|
|
70796
|
+
extendedProfile?: Maybe<ThirdPartyUserExtendedProfile>;
|
|
70071
70797
|
externalId: Scalars['String']['output'];
|
|
70072
70798
|
id: Scalars['ID']['output'];
|
|
70073
70799
|
locale?: Maybe<Scalars['String']['output']>;
|
|
70074
70800
|
name?: Maybe<Scalars['String']['output']>;
|
|
70801
|
+
nickname?: Maybe<Scalars['String']['output']>;
|
|
70075
70802
|
picture?: Maybe<Scalars['URL']['output']>;
|
|
70076
70803
|
updatedAt: Scalars['DateTime']['output'];
|
|
70077
70804
|
zoneinfo?: Maybe<Scalars['String']['output']>;
|
|
70078
70805
|
};
|
|
70806
|
+
export declare type ThirdPartyUserExtendedProfile = {
|
|
70807
|
+
__typename?: 'ThirdPartyUserExtendedProfile';
|
|
70808
|
+
department?: Maybe<Scalars['String']['output']>;
|
|
70809
|
+
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
70810
|
+
location?: Maybe<Scalars['String']['output']>;
|
|
70811
|
+
organization?: Maybe<Scalars['String']['output']>;
|
|
70812
|
+
phoneNumbers?: Maybe<Array<Maybe<ThirdPartyUserPhoneNumber>>>;
|
|
70813
|
+
};
|
|
70814
|
+
export declare type ThirdPartyUserPhoneNumber = {
|
|
70815
|
+
__typename?: 'ThirdPartyUserPhoneNumber';
|
|
70816
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
70817
|
+
value: Scalars['String']['output'];
|
|
70818
|
+
};
|
|
70079
70819
|
export declare type TimeSeriesPoint = {
|
|
70080
70820
|
__typename?: 'TimeSeriesPoint';
|
|
70081
70821
|
id: Scalars['ID']['output'];
|
|
@@ -70099,7 +70839,6 @@ export declare type Toolchain = {
|
|
|
70099
70839
|
checkAuth?: Maybe<ToolchainCheckAuth>;
|
|
70100
70840
|
checkAuthV2?: Maybe<ToolchainCheckAuthResult>;
|
|
70101
70841
|
containers?: Maybe<ToolchainContainerConnection>;
|
|
70102
|
-
syncStatus?: Maybe<ToolchainSyncStatus>;
|
|
70103
70842
|
workspaces?: Maybe<ToolchainWorkspaceConnection>;
|
|
70104
70843
|
};
|
|
70105
70844
|
export declare type ToolchainCheckAuthArgs = {
|
|
@@ -70121,13 +70860,6 @@ export declare type ToolchainContainersArgs = {
|
|
|
70121
70860
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
70122
70861
|
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
70123
70862
|
};
|
|
70124
|
-
export declare type ToolchainSyncStatusArgs = {
|
|
70125
|
-
cloudId: Scalars['ID']['input'];
|
|
70126
|
-
containerId: Scalars['ID']['input'];
|
|
70127
|
-
jiraProjectId: Scalars['ID']['input'];
|
|
70128
|
-
providerId: Scalars['String']['input'];
|
|
70129
|
-
providerType?: InputMaybe<ToolchainProviderType>;
|
|
70130
|
-
};
|
|
70131
70863
|
export declare type ToolchainWorkspacesArgs = {
|
|
70132
70864
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
70133
70865
|
cloudId: Scalars['ID']['input'];
|
|
@@ -70220,9 +70952,24 @@ export declare type ToolchainContainer = Node & {
|
|
|
70220
70952
|
export declare type ToolchainContainerConnection = {
|
|
70221
70953
|
__typename?: 'ToolchainContainerConnection';
|
|
70222
70954
|
edges?: Maybe<Array<Maybe<ToolchainContainerEdge>>>;
|
|
70955
|
+
error?: Maybe<ToolchainContainerConnectionError>;
|
|
70223
70956
|
nodes?: Maybe<Array<Maybe<ToolchainContainer>>>;
|
|
70224
70957
|
pageInfo: PageInfo;
|
|
70225
70958
|
};
|
|
70959
|
+
export declare type ToolchainContainerConnectionError = {
|
|
70960
|
+
__typename?: 'ToolchainContainerConnectionError';
|
|
70961
|
+
extensions?: Maybe<Array<ToolchainContainerConnectionErrorExtension>>;
|
|
70962
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
70963
|
+
};
|
|
70964
|
+
export declare enum ToolchainContainerConnectionErrorCode {
|
|
70965
|
+
ProviderActionForbidden = "PROVIDER_ACTION_FORBIDDEN"
|
|
70966
|
+
}
|
|
70967
|
+
export declare type ToolchainContainerConnectionErrorExtension = QueryErrorExtension & {
|
|
70968
|
+
__typename?: 'ToolchainContainerConnectionErrorExtension';
|
|
70969
|
+
errorCode?: Maybe<ToolchainContainerConnectionErrorCode>;
|
|
70970
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
70971
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
70972
|
+
};
|
|
70226
70973
|
export declare type ToolchainContainerEdge = {
|
|
70227
70974
|
__typename?: 'ToolchainContainerEdge';
|
|
70228
70975
|
cursor: Scalars['String']['output'];
|
|
@@ -70337,16 +71084,6 @@ export declare enum ToolchainProviderType {
|
|
|
70337
71084
|
RemoteLinks = "REMOTE_LINKS",
|
|
70338
71085
|
Security = "SECURITY"
|
|
70339
71086
|
}
|
|
70340
|
-
export declare enum ToolchainSyncState {
|
|
70341
|
-
Complete = "COMPLETE",
|
|
70342
|
-
Error = "ERROR",
|
|
70343
|
-
InProgress = "IN_PROGRESS"
|
|
70344
|
-
}
|
|
70345
|
-
export declare type ToolchainSyncStatus = {
|
|
70346
|
-
__typename?: 'ToolchainSyncStatus';
|
|
70347
|
-
errorKey?: Maybe<Scalars['String']['output']>;
|
|
70348
|
-
state: ToolchainSyncState;
|
|
70349
|
-
};
|
|
70350
71087
|
export declare type ToolchainWorkspace = Node & {
|
|
70351
71088
|
__typename?: 'ToolchainWorkspace';
|
|
70352
71089
|
canCreateContainer: Scalars['Boolean']['output'];
|
|
@@ -71009,7 +71746,6 @@ export declare type TrelloAssignCardToPlannerCalendarEventPayload = Payload & {
|
|
|
71009
71746
|
__typename?: 'TrelloAssignCardToPlannerCalendarEventPayload';
|
|
71010
71747
|
errors?: Maybe<Array<MutationError>>;
|
|
71011
71748
|
event?: Maybe<TrelloPlannerCalendarEvent>;
|
|
71012
|
-
eventCard?: Maybe<TrelloPlannerCalendarEventCardConnectionUpdated>;
|
|
71013
71749
|
success: Scalars['Boolean']['output'];
|
|
71014
71750
|
};
|
|
71015
71751
|
export declare type TrelloAtlassianIntelligence = {
|
|
@@ -71296,6 +72032,8 @@ export declare type TrelloBoardViewer = {
|
|
|
71296
72032
|
};
|
|
71297
72033
|
export declare type TrelloBoardViewerEmail = {
|
|
71298
72034
|
__typename?: 'TrelloBoardViewerEmail';
|
|
72035
|
+
address?: Maybe<Scalars['String']['output']>;
|
|
72036
|
+
aiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
71299
72037
|
key?: Maybe<Scalars['String']['output']>;
|
|
71300
72038
|
list?: Maybe<TrelloList>;
|
|
71301
72039
|
position?: Maybe<Scalars['String']['output']>;
|
|
@@ -71561,7 +72299,7 @@ export declare type TrelloCreateOrUpdatePlannerCalendarPayload = Payload & {
|
|
|
71561
72299
|
__typename?: 'TrelloCreateOrUpdatePlannerCalendarPayload';
|
|
71562
72300
|
errors?: Maybe<Array<MutationError>>;
|
|
71563
72301
|
plannerCalendar?: Maybe<TrelloPlannerCalendarConnection>;
|
|
71564
|
-
plannerCalendarUpdated?: Maybe<
|
|
72302
|
+
plannerCalendarUpdated?: Maybe<TrelloPlannerCalendarUpdated>;
|
|
71565
72303
|
success: Scalars['Boolean']['output'];
|
|
71566
72304
|
};
|
|
71567
72305
|
export declare type TrelloCreateOrUpdatePlannerCalendarPayloadPlannerCalendarArgs = {
|
|
@@ -72046,9 +72784,9 @@ export declare type TrelloPlannerCalendarConnection = {
|
|
|
72046
72784
|
pageInfo: PageInfo;
|
|
72047
72785
|
updateCursor?: Maybe<Scalars['String']['output']>;
|
|
72048
72786
|
};
|
|
72049
|
-
export declare type
|
|
72050
|
-
__typename?: '
|
|
72051
|
-
|
|
72787
|
+
export declare type TrelloPlannerCalendarDeleted = {
|
|
72788
|
+
__typename?: 'TrelloPlannerCalendarDeleted';
|
|
72789
|
+
id: Scalars['ID']['output'];
|
|
72052
72790
|
};
|
|
72053
72791
|
export declare type TrelloPlannerCalendarEdge = {
|
|
72054
72792
|
__typename?: 'TrelloPlannerCalendarEdge';
|
|
@@ -72089,11 +72827,6 @@ export declare type TrelloPlannerCalendarEventCardConnection = {
|
|
|
72089
72827
|
nodes?: Maybe<Array<TrelloPlannerCalendarEventCard>>;
|
|
72090
72828
|
pageInfo: PageInfo;
|
|
72091
72829
|
};
|
|
72092
|
-
export declare type TrelloPlannerCalendarEventCardConnectionUpdated = {
|
|
72093
|
-
__typename?: 'TrelloPlannerCalendarEventCardConnectionUpdated';
|
|
72094
|
-
edges?: Maybe<Array<TrelloPlannerCalendarEventCardEdge>>;
|
|
72095
|
-
nodes?: Maybe<Array<TrelloPlannerCalendarEventCard>>;
|
|
72096
|
-
};
|
|
72097
72830
|
export declare type TrelloPlannerCalendarEventCardEdge = {
|
|
72098
72831
|
__typename?: 'TrelloPlannerCalendarEventCardEdge';
|
|
72099
72832
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -72130,6 +72863,7 @@ export declare type TrelloPlannerCalendarEventsFilter = {
|
|
|
72130
72863
|
end?: InputMaybe<Scalars['DateTime']['input']>;
|
|
72131
72864
|
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
72132
72865
|
};
|
|
72866
|
+
export declare type TrelloPlannerCalendarUpdated = TrelloPlannerCalendarAccount | TrelloPlannerCalendarDeleted;
|
|
72133
72867
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
72134
72868
|
__typename?: 'TrelloPlannerProviderCalendar';
|
|
72135
72869
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
@@ -72355,9 +73089,13 @@ export declare type TrelloStickerEdge = {
|
|
|
72355
73089
|
};
|
|
72356
73090
|
export declare type TrelloSubscriptionApi = {
|
|
72357
73091
|
__typename?: 'TrelloSubscriptionApi';
|
|
73092
|
+
cardsById?: Maybe<TrelloBoardUpdated>;
|
|
72358
73093
|
onBoardUpdated?: Maybe<TrelloBoardUpdated>;
|
|
72359
73094
|
onMemberUpdated?: Maybe<TrelloMemberUpdated>;
|
|
72360
73095
|
};
|
|
73096
|
+
export declare type TrelloSubscriptionApiCardsByIdArgs = {
|
|
73097
|
+
ids: Array<Scalars['ID']['input']>;
|
|
73098
|
+
};
|
|
72361
73099
|
export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
|
|
72362
73100
|
id: Scalars['ID']['input'];
|
|
72363
73101
|
};
|
|
@@ -72630,12 +73368,13 @@ export declare type UnifiedAccount = UnifiedINode & {
|
|
|
72630
73368
|
};
|
|
72631
73369
|
export declare type UnifiedAccount2 = UnifiedINode & {
|
|
72632
73370
|
__typename?: 'UnifiedAccount2';
|
|
72633
|
-
aaid
|
|
73371
|
+
aaid: Scalars['String']['output'];
|
|
73372
|
+
emailId: Scalars['String']['output'];
|
|
72634
73373
|
id: Scalars['ID']['output'];
|
|
72635
|
-
internalId
|
|
72636
|
-
isLinked
|
|
72637
|
-
isManaged
|
|
72638
|
-
isPrimary
|
|
73374
|
+
internalId: Scalars['String']['output'];
|
|
73375
|
+
isLinked: Scalars['Boolean']['output'];
|
|
73376
|
+
isManaged: Scalars['Boolean']['output'];
|
|
73377
|
+
isPrimary: Scalars['Boolean']['output'];
|
|
72639
73378
|
linkedAccounts?: Maybe<UnifiedULinkedAccount2Result>;
|
|
72640
73379
|
};
|
|
72641
73380
|
export declare type UnifiedAccountDetails = UnifiedINode & {
|
|
@@ -72952,9 +73691,10 @@ export declare type UnifiedLinkedAccountPayload = UnifiedPayload & {
|
|
|
72952
73691
|
};
|
|
72953
73692
|
export declare type UnifiedLinkingMutation = {
|
|
72954
73693
|
__typename?: 'UnifiedLinkingMutation';
|
|
72955
|
-
authenticateTransaction?: Maybe<
|
|
73694
|
+
authenticateTransaction?: Maybe<UnifiedULinkTransactionPayload>;
|
|
72956
73695
|
completeTransaction?: Maybe<UnifiedLinkingPayload>;
|
|
72957
73696
|
initializeTransaction?: Maybe<UnifiedULinkTransactionPayload>;
|
|
73697
|
+
unlinkAccount?: Maybe<UnifiedLinkingPayload>;
|
|
72958
73698
|
};
|
|
72959
73699
|
export declare type UnifiedLinkingMutationAuthenticateTransactionArgs = {
|
|
72960
73700
|
isLoggedInPrimary?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -72967,6 +73707,9 @@ export declare type UnifiedLinkingMutationInitializeTransactionArgs = {
|
|
|
72967
73707
|
account2Aaid?: InputMaybe<Scalars['String']['input']>;
|
|
72968
73708
|
primaryAccountType?: InputMaybe<UnifiedPrimaryAccountType>;
|
|
72969
73709
|
};
|
|
73710
|
+
export declare type UnifiedLinkingMutationUnlinkAccountArgs = {
|
|
73711
|
+
aaid: Scalars['String']['input'];
|
|
73712
|
+
};
|
|
72970
73713
|
export declare type UnifiedLinkingPayload = UnifiedPayload & {
|
|
72971
73714
|
__typename?: 'UnifiedLinkingPayload';
|
|
72972
73715
|
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
@@ -73045,6 +73788,8 @@ export declare type UnifiedProfile = UnifiedINode & {
|
|
|
73045
73788
|
gamification?: Maybe<UnifiedUGamificationResult>;
|
|
73046
73789
|
gamificationId?: Maybe<Scalars['String']['output']>;
|
|
73047
73790
|
id: Scalars['ID']['output'];
|
|
73791
|
+
isPersonalView?: Maybe<Scalars['Boolean']['output']>;
|
|
73792
|
+
isPrivate: Scalars['Boolean']['output'];
|
|
73048
73793
|
learnId?: Maybe<Scalars['String']['output']>;
|
|
73049
73794
|
learning?: Maybe<UnifiedULearningResult>;
|
|
73050
73795
|
linkedinUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -73088,6 +73833,7 @@ export declare type UnifiedProfileInput = {
|
|
|
73088
73833
|
company?: InputMaybe<Scalars['String']['input']>;
|
|
73089
73834
|
forumsId?: InputMaybe<Scalars['String']['input']>;
|
|
73090
73835
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
73836
|
+
isPrivate: Scalars['Boolean']['input'];
|
|
73091
73837
|
learnId?: InputMaybe<Scalars['String']['input']>;
|
|
73092
73838
|
linkedinUrl?: InputMaybe<Scalars['String']['input']>;
|
|
73093
73839
|
location?: InputMaybe<Scalars['String']['input']>;
|