@forge/cli-shared 6.4.0-next.9 → 6.4.1-next.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 +64 -0
- package/out/graphql/graphql-types.d.ts +829 -71
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +88 -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 +23 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +36 -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>;
|
|
@@ -3487,6 +3581,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3487
3581
|
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
3488
3582
|
updateCustomPermissionConfigs?: Maybe<CompassUpdatePermissionConfigsPayload>;
|
|
3489
3583
|
updateDocument?: Maybe<CompassUpdateDocumentPayload>;
|
|
3584
|
+
updateJqlMetricSourceUser?: Maybe<CompassUpdateJqlMetricSourceUserPayload>;
|
|
3490
3585
|
updateMetricDefinition?: Maybe<CompassUpdateMetricDefinitionPayload>;
|
|
3491
3586
|
updateScorecard?: Maybe<UpdateCompassScorecardPayload>;
|
|
3492
3587
|
updateTeamCheckin?: Maybe<CompassUpdateTeamCheckinPayload>;
|
|
@@ -3676,6 +3771,9 @@ export declare type CompassCatalogMutationApiRemoveScorecardFromComponentArgs =
|
|
|
3676
3771
|
export declare type CompassCatalogMutationApiRemoveTeamLabelsArgs = {
|
|
3677
3772
|
input: CompassRemoveTeamLabelsInput;
|
|
3678
3773
|
};
|
|
3774
|
+
export declare type CompassCatalogMutationApiRevokeJqlMetricSourceUserArgs = {
|
|
3775
|
+
input: CompassRevokeJqlMetricSourceUserInput;
|
|
3776
|
+
};
|
|
3679
3777
|
export declare type CompassCatalogMutationApiSynchronizeLinkAssociationsArgs = {
|
|
3680
3778
|
input?: InputMaybe<CompassSynchronizeLinkAssociationsInput>;
|
|
3681
3779
|
};
|
|
@@ -3727,6 +3825,9 @@ export declare type CompassCatalogMutationApiUpdateCustomPermissionConfigsArgs =
|
|
|
3727
3825
|
export declare type CompassCatalogMutationApiUpdateDocumentArgs = {
|
|
3728
3826
|
input: CompassUpdateDocumentInput;
|
|
3729
3827
|
};
|
|
3828
|
+
export declare type CompassCatalogMutationApiUpdateJqlMetricSourceUserArgs = {
|
|
3829
|
+
input: CompassUpdateJqlMetricSourceUserInput;
|
|
3830
|
+
};
|
|
3730
3831
|
export declare type CompassCatalogMutationApiUpdateMetricDefinitionArgs = {
|
|
3731
3832
|
input: CompassUpdateMetricDefinitionInput;
|
|
3732
3833
|
};
|
|
@@ -4824,6 +4925,8 @@ export declare type CompassCustomFieldFilter = {
|
|
|
4824
4925
|
export declare type CompassCustomFieldFilterInput = {
|
|
4825
4926
|
boolean?: InputMaybe<CompassComponentCustomBooleanFieldFilterInput>;
|
|
4826
4927
|
multiselect?: InputMaybe<CompassCustomMultiselectFieldFilterInput>;
|
|
4928
|
+
singleSelect?: InputMaybe<CompassCustomSingleSelectFieldFilterInput>;
|
|
4929
|
+
user?: InputMaybe<CompassCustomUserFieldFilterInput>;
|
|
4827
4930
|
};
|
|
4828
4931
|
export declare type CompassCustomFieldInput = {
|
|
4829
4932
|
booleanField?: InputMaybe<CompassCustomBooleanFieldInput>;
|
|
@@ -4909,7 +5012,6 @@ export declare type CompassCustomPermissionConfigs = {
|
|
|
4909
5012
|
editCustomFieldDefinitions?: Maybe<CompassCustomPermissionConfig>;
|
|
4910
5013
|
modifyScorecard?: Maybe<CompassCustomPermissionConfig>;
|
|
4911
5014
|
preset?: Maybe<Scalars['String']['output']>;
|
|
4912
|
-
viewCustomFieldDefinitions?: Maybe<CompassCustomPermissionConfig>;
|
|
4913
5015
|
};
|
|
4914
5016
|
export declare type CompassCustomPermissionConfigsResult = CompassCustomPermissionConfigs | QueryError;
|
|
4915
5017
|
export declare enum CompassCustomPermissionPreset {
|
|
@@ -4936,6 +5038,17 @@ export declare type CompassCustomSingleSelectFieldDefinition = CompassCustomFiel
|
|
|
4936
5038
|
name?: Maybe<Scalars['String']['output']>;
|
|
4937
5039
|
options?: Maybe<Array<CompassCustomSelectFieldOption>>;
|
|
4938
5040
|
};
|
|
5041
|
+
export declare type CompassCustomSingleSelectFieldFilter = CompassCustomFieldFilter & {
|
|
5042
|
+
__typename?: 'CompassCustomSingleSelectFieldFilter';
|
|
5043
|
+
comparator: Scalars['String']['output'];
|
|
5044
|
+
customFieldId: Scalars['String']['output'];
|
|
5045
|
+
values: Array<Scalars['String']['output']>;
|
|
5046
|
+
};
|
|
5047
|
+
export declare type CompassCustomSingleSelectFieldFilterInput = {
|
|
5048
|
+
comparator?: InputMaybe<CustomSingleSelectFieldInputComparators>;
|
|
5049
|
+
customFieldId: Scalars['String']['input'];
|
|
5050
|
+
value: Array<Scalars['ID']['input']>;
|
|
5051
|
+
};
|
|
4939
5052
|
export declare type CompassCustomSingleSelectFieldInput = {
|
|
4940
5053
|
annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
|
|
4941
5054
|
definitionId: Scalars['ID']['input'];
|
|
@@ -4975,6 +5088,17 @@ export declare type CompassCustomUserFieldDefinition = CompassCustomFieldDefinit
|
|
|
4975
5088
|
id: Scalars['ID']['output'];
|
|
4976
5089
|
name?: Maybe<Scalars['String']['output']>;
|
|
4977
5090
|
};
|
|
5091
|
+
export declare type CompassCustomUserFieldFilter = CompassCustomFieldFilter & {
|
|
5092
|
+
__typename?: 'CompassCustomUserFieldFilter';
|
|
5093
|
+
comparator: Scalars['String']['output'];
|
|
5094
|
+
customFieldId: Scalars['String']['output'];
|
|
5095
|
+
values: Array<Scalars['String']['output']>;
|
|
5096
|
+
};
|
|
5097
|
+
export declare type CompassCustomUserFieldFilterInput = {
|
|
5098
|
+
comparator?: InputMaybe<CustomUserFieldInputComparators>;
|
|
5099
|
+
customFieldId: Scalars['String']['input'];
|
|
5100
|
+
values: Array<Scalars['ID']['input']>;
|
|
5101
|
+
};
|
|
4978
5102
|
export declare type CompassCustomUserFieldInput = {
|
|
4979
5103
|
annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
|
|
4980
5104
|
definitionId: Scalars['ID']['input'];
|
|
@@ -5359,7 +5483,6 @@ export declare type CompassGlobalPermissions = {
|
|
|
5359
5483
|
createScorecards?: Maybe<CompassPermissionResult>;
|
|
5360
5484
|
deleteIncomingWebhooks?: Maybe<CompassPermissionResult>;
|
|
5361
5485
|
editCustomFieldDefinitions?: Maybe<CompassPermissionResult>;
|
|
5362
|
-
viewCustomFieldDefinitions?: Maybe<CompassPermissionResult>;
|
|
5363
5486
|
viewMetricDefinitions?: Maybe<CompassPermissionResult>;
|
|
5364
5487
|
};
|
|
5365
5488
|
export declare type CompassGlobalPermissionsResult = CompassGlobalPermissions | QueryError;
|
|
@@ -6097,6 +6220,15 @@ export declare type CompassRepositoryValue = {
|
|
|
6097
6220
|
export declare type CompassRepositoryValueInput = {
|
|
6098
6221
|
exists: Scalars['Boolean']['input'];
|
|
6099
6222
|
};
|
|
6223
|
+
export declare type CompassRevokeJqlMetricSourceUserInput = {
|
|
6224
|
+
metricSourceId: Scalars['ID']['input'];
|
|
6225
|
+
};
|
|
6226
|
+
export declare type CompassRevokeJqlMetricSourceUserPayload = Payload & {
|
|
6227
|
+
__typename?: 'CompassRevokeJQLMetricSourceUserPayload';
|
|
6228
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6229
|
+
success: Scalars['Boolean']['output'];
|
|
6230
|
+
updatedMetricSource?: Maybe<CompassMetricSource>;
|
|
6231
|
+
};
|
|
6100
6232
|
export declare type CompassRichTextObject = {
|
|
6101
6233
|
__typename?: 'CompassRichTextObject';
|
|
6102
6234
|
adf?: Maybe<Scalars['String']['output']>;
|
|
@@ -6926,6 +7058,15 @@ export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
|
6926
7058
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
6927
7059
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
6928
7060
|
};
|
|
7061
|
+
export declare type CompassUpdateJqlMetricSourceUserInput = {
|
|
7062
|
+
metricSourceId: Scalars['ID']['input'];
|
|
7063
|
+
};
|
|
7064
|
+
export declare type CompassUpdateJqlMetricSourceUserPayload = Payload & {
|
|
7065
|
+
__typename?: 'CompassUpdateJQLMetricSourceUserPayload';
|
|
7066
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7067
|
+
success: Scalars['Boolean']['output'];
|
|
7068
|
+
updatedMetricSource?: Maybe<CompassMetricSource>;
|
|
7069
|
+
};
|
|
6929
7070
|
export declare type CompassUpdateMetricDefinitionInput = {
|
|
6930
7071
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
6931
7072
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -16401,6 +16542,12 @@ export declare enum CustomMultiselectFieldInputComparators {
|
|
|
16401
16542
|
ContainNone = "CONTAIN_NONE",
|
|
16402
16543
|
NotSet = "NOT_SET"
|
|
16403
16544
|
}
|
|
16545
|
+
export declare enum CustomSingleSelectFieldInputComparators {
|
|
16546
|
+
ContainAny = "CONTAIN_ANY",
|
|
16547
|
+
ContainNone = "CONTAIN_NONE",
|
|
16548
|
+
IsSet = "IS_SET",
|
|
16549
|
+
NotSet = "NOT_SET"
|
|
16550
|
+
}
|
|
16404
16551
|
export declare type CustomUiTunnelDefinition = {
|
|
16405
16552
|
__typename?: 'CustomUITunnelDefinition';
|
|
16406
16553
|
resourceKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -16410,6 +16557,11 @@ export declare type CustomUiTunnelDefinitionInput = {
|
|
|
16410
16557
|
resourceKey?: InputMaybe<Scalars['String']['input']>;
|
|
16411
16558
|
tunnelUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
16412
16559
|
};
|
|
16560
|
+
export declare enum CustomUserFieldInputComparators {
|
|
16561
|
+
ContainAny = "CONTAIN_ANY",
|
|
16562
|
+
IsSet = "IS_SET",
|
|
16563
|
+
NotSet = "NOT_SET"
|
|
16564
|
+
}
|
|
16413
16565
|
export declare type CustomerServiceAttribute = Node & {
|
|
16414
16566
|
__typename?: 'CustomerServiceAttribute';
|
|
16415
16567
|
config?: Maybe<CustomerServiceAttributeConfigMetadata>;
|
|
@@ -16687,6 +16839,10 @@ export declare enum CustomerServiceCustomDetailsEntityType {
|
|
|
16687
16839
|
Organization = "ORGANIZATION"
|
|
16688
16840
|
}
|
|
16689
16841
|
export declare type CustomerServiceCustomDetailsQueryResult = CustomerServiceCustomDetails | QueryError;
|
|
16842
|
+
export declare type CustomerServiceDefaultRoutingRuleInput = {
|
|
16843
|
+
issueTypeId: Scalars['String']['input'];
|
|
16844
|
+
projectId: Scalars['ID']['input'];
|
|
16845
|
+
};
|
|
16690
16846
|
export declare type CustomerServiceEntitledEntity = CustomerServiceIndividual | CustomerServiceOrganization;
|
|
16691
16847
|
export declare type CustomerServiceEntitlement = Node & {
|
|
16692
16848
|
__typename?: 'CustomerServiceEntitlement';
|
|
@@ -16794,12 +16950,14 @@ export declare type CustomerServiceMutationApi = {
|
|
|
16794
16950
|
createOrganization?: Maybe<CustomerServiceOrganizationCreatePayload>;
|
|
16795
16951
|
createOrganizationAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
|
|
16796
16952
|
createProduct?: Maybe<CustomerServiceProductCreatePayload>;
|
|
16953
|
+
createTemplateForm?: Maybe<CustomerServiceTemplateFormCreatePayload>;
|
|
16797
16954
|
deleteCustomDetail?: Maybe<CustomerServiceCustomDetailDeletePayload>;
|
|
16798
16955
|
deleteIndividualAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
|
|
16799
16956
|
deleteNote?: Maybe<CustomerServiceNoteDeletePayload>;
|
|
16800
16957
|
deleteOrganization?: Maybe<CustomerServiceOrganizationDeletePayload>;
|
|
16801
16958
|
deleteOrganizationAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
|
|
16802
16959
|
deleteProduct?: Maybe<CustomerServiceProductDeletePayload>;
|
|
16960
|
+
deleteTemplateForm?: Maybe<CustomerServiceTemplateFormDeletePayload>;
|
|
16803
16961
|
removeEntitlement?: Maybe<CustomerServiceEntitlementRemovePayload>;
|
|
16804
16962
|
updateCustomDetail?: Maybe<CustomerServiceCustomDetailUpdatePayload>;
|
|
16805
16963
|
updateCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadataUpdatePayload>;
|
|
@@ -16818,6 +16976,7 @@ export declare type CustomerServiceMutationApi = {
|
|
|
16818
16976
|
updateOrganizationAttributeValue?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
|
|
16819
16977
|
updateOrganizationAttributeValueByName?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
|
|
16820
16978
|
updateProduct?: Maybe<CustomerServiceProductUpdatePayload>;
|
|
16979
|
+
updateTemplateForm?: Maybe<CustomerServiceTemplateFormUpdatePayload>;
|
|
16821
16980
|
};
|
|
16822
16981
|
export declare type CustomerServiceMutationApiAddEntitlementArgs = {
|
|
16823
16982
|
input: CustomerServiceEntitlementAddInput;
|
|
@@ -16840,6 +16999,9 @@ export declare type CustomerServiceMutationApiCreateOrganizationAttributeArgs =
|
|
|
16840
16999
|
export declare type CustomerServiceMutationApiCreateProductArgs = {
|
|
16841
17000
|
input: CustomerServiceProductCreateInput;
|
|
16842
17001
|
};
|
|
17002
|
+
export declare type CustomerServiceMutationApiCreateTemplateFormArgs = {
|
|
17003
|
+
input: CustomerServiceTemplateFormCreateInput;
|
|
17004
|
+
};
|
|
16843
17005
|
export declare type CustomerServiceMutationApiDeleteCustomDetailArgs = {
|
|
16844
17006
|
input: CustomerServiceCustomDetailDeleteInput;
|
|
16845
17007
|
};
|
|
@@ -16858,6 +17020,9 @@ export declare type CustomerServiceMutationApiDeleteOrganizationAttributeArgs =
|
|
|
16858
17020
|
export declare type CustomerServiceMutationApiDeleteProductArgs = {
|
|
16859
17021
|
input: CustomerServiceProductDeleteInput;
|
|
16860
17022
|
};
|
|
17023
|
+
export declare type CustomerServiceMutationApiDeleteTemplateFormArgs = {
|
|
17024
|
+
input: CustomerServiceTemplateFormDeleteInput;
|
|
17025
|
+
};
|
|
16861
17026
|
export declare type CustomerServiceMutationApiRemoveEntitlementArgs = {
|
|
16862
17027
|
input: CustomerServiceEntitlementRemoveInput;
|
|
16863
17028
|
};
|
|
@@ -16912,6 +17077,11 @@ export declare type CustomerServiceMutationApiUpdateOrganizationAttributeValueBy
|
|
|
16912
17077
|
export declare type CustomerServiceMutationApiUpdateProductArgs = {
|
|
16913
17078
|
input: CustomerServiceProductUpdateInput;
|
|
16914
17079
|
};
|
|
17080
|
+
export declare type CustomerServiceMutationApiUpdateTemplateFormArgs = {
|
|
17081
|
+
helpCenterId: Scalars['ID']['input'];
|
|
17082
|
+
input: CustomerServiceTemplateFormUpdateInput;
|
|
17083
|
+
templateFormId: Scalars['ID']['input'];
|
|
17084
|
+
};
|
|
16915
17085
|
export declare type CustomerServiceNote = {
|
|
16916
17086
|
__typename?: 'CustomerServiceNote';
|
|
16917
17087
|
author: CustomerServiceNoteAuthor;
|
|
@@ -17124,6 +17294,7 @@ export declare type CustomerServiceQueryApi = {
|
|
|
17124
17294
|
productConnections?: Maybe<CustomerServiceProductConnection>;
|
|
17125
17295
|
products?: Maybe<CustomerServiceProductQueryResult>;
|
|
17126
17296
|
templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
|
|
17297
|
+
templateForms?: Maybe<CustomerServiceTemplateFormConnection>;
|
|
17127
17298
|
};
|
|
17128
17299
|
export declare type CustomerServiceQueryApiCustomDetailsByEntityTypeArgs = {
|
|
17129
17300
|
customDetailsEntityType: CustomerServiceCustomDetailsEntityType;
|
|
@@ -17154,6 +17325,11 @@ export declare type CustomerServiceQueryApiTemplateFormByIdArgs = {
|
|
|
17154
17325
|
helpCenterId: Scalars['ID']['input'];
|
|
17155
17326
|
templateFormId: Scalars['ID']['input'];
|
|
17156
17327
|
};
|
|
17328
|
+
export declare type CustomerServiceQueryApiTemplateFormsArgs = {
|
|
17329
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
17330
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17331
|
+
helpCenterId: Scalars['ID']['input'];
|
|
17332
|
+
};
|
|
17157
17333
|
export declare type CustomerServiceRoutingRule = {
|
|
17158
17334
|
__typename?: 'CustomerServiceRoutingRule';
|
|
17159
17335
|
id: Scalars['ID']['output'];
|
|
@@ -17176,7 +17352,47 @@ export declare type CustomerServiceTemplateForm = Node & {
|
|
|
17176
17352
|
id: Scalars['ID']['output'];
|
|
17177
17353
|
name?: Maybe<Scalars['String']['output']>;
|
|
17178
17354
|
};
|
|
17355
|
+
export declare type CustomerServiceTemplateFormConnection = {
|
|
17356
|
+
__typename?: 'CustomerServiceTemplateFormConnection';
|
|
17357
|
+
edges: Array<CustomerServiceTemplateFormEdge>;
|
|
17358
|
+
pageInfo: PageInfo;
|
|
17359
|
+
};
|
|
17360
|
+
export declare type CustomerServiceTemplateFormCreateInput = {
|
|
17361
|
+
defaultRoutingRule?: InputMaybe<CustomerServiceDefaultRoutingRuleInput>;
|
|
17362
|
+
helpCenterId: Scalars['ID']['input'];
|
|
17363
|
+
name: Scalars['String']['input'];
|
|
17364
|
+
};
|
|
17365
|
+
export declare type CustomerServiceTemplateFormCreatePayload = Payload & {
|
|
17366
|
+
__typename?: 'CustomerServiceTemplateFormCreatePayload';
|
|
17367
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17368
|
+
success: Scalars['Boolean']['output'];
|
|
17369
|
+
successfullyCreatedTemplateForm?: Maybe<CustomerServiceTemplateFormEdge>;
|
|
17370
|
+
};
|
|
17371
|
+
export declare type CustomerServiceTemplateFormDeleteInput = {
|
|
17372
|
+
helpCenterId: Scalars['ID']['input'];
|
|
17373
|
+
templateFormId: Scalars['ID']['input'];
|
|
17374
|
+
};
|
|
17375
|
+
export declare type CustomerServiceTemplateFormDeletePayload = Payload & {
|
|
17376
|
+
__typename?: 'CustomerServiceTemplateFormDeletePayload';
|
|
17377
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17378
|
+
success: Scalars['Boolean']['output'];
|
|
17379
|
+
};
|
|
17380
|
+
export declare type CustomerServiceTemplateFormEdge = {
|
|
17381
|
+
__typename?: 'CustomerServiceTemplateFormEdge';
|
|
17382
|
+
cursor: Scalars['String']['output'];
|
|
17383
|
+
node?: Maybe<CustomerServiceTemplateForm>;
|
|
17384
|
+
};
|
|
17179
17385
|
export declare type CustomerServiceTemplateFormQueryResult = CustomerServiceTemplateForm | QueryError;
|
|
17386
|
+
export declare type CustomerServiceTemplateFormUpdateInput = {
|
|
17387
|
+
defaultRoutingRule?: InputMaybe<CustomerServiceDefaultRoutingRuleInput>;
|
|
17388
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
17389
|
+
};
|
|
17390
|
+
export declare type CustomerServiceTemplateFormUpdatePayload = Payload & {
|
|
17391
|
+
__typename?: 'CustomerServiceTemplateFormUpdatePayload';
|
|
17392
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17393
|
+
success: Scalars['Boolean']['output'];
|
|
17394
|
+
successfullyCreatedTemplateForm?: Maybe<CustomerServiceTemplateFormEdge>;
|
|
17395
|
+
};
|
|
17180
17396
|
export declare type CustomerServiceUpdateCustomDetailContextConfigsPayload = Payload & {
|
|
17181
17397
|
__typename?: 'CustomerServiceUpdateCustomDetailContextConfigsPayload';
|
|
17182
17398
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -19697,6 +19913,7 @@ export declare type EcosystemConnectInstallation = {
|
|
|
19697
19913
|
export declare type EcosystemConnectInstallationLicense = {
|
|
19698
19914
|
__typename?: 'EcosystemConnectInstallationLicense';
|
|
19699
19915
|
active?: Maybe<Scalars['Boolean']['output']>;
|
|
19916
|
+
capabilitySet?: Maybe<CapabilitySet>;
|
|
19700
19917
|
ccpEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
19701
19918
|
ccpEntitlementSlug?: Maybe<Scalars['String']['output']>;
|
|
19702
19919
|
isEvaluation?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -20066,7 +20283,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
20066
20283
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
20067
20284
|
node?: Maybe<ExternalAssociation>;
|
|
20068
20285
|
};
|
|
20069
|
-
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;
|
|
20286
|
+
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;
|
|
20070
20287
|
export declare type ExternalAttachment = {
|
|
20071
20288
|
__typename?: 'ExternalAttachment';
|
|
20072
20289
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -20237,6 +20454,7 @@ export declare type ExternalConversation = Node & {
|
|
|
20237
20454
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
20238
20455
|
id: Scalars['ID']['output'];
|
|
20239
20456
|
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
20457
|
+
lastActive?: Maybe<Scalars['String']['output']>;
|
|
20240
20458
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
20241
20459
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
20242
20460
|
memberCount?: Maybe<Scalars['Long']['output']>;
|
|
@@ -20326,6 +20544,8 @@ export declare type ExternalDocument = Node & {
|
|
|
20326
20544
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
20327
20545
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
20328
20546
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
20547
|
+
container?: Maybe<ExternalEntity>;
|
|
20548
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
20329
20549
|
content?: Maybe<ExternalLargeContent>;
|
|
20330
20550
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
20331
20551
|
createdBy?: Maybe<ExternalUser>;
|
|
@@ -20390,8 +20610,9 @@ export declare type ExternalEntities = {
|
|
|
20390
20610
|
space?: Maybe<Array<Maybe<ExternalSpace>>>;
|
|
20391
20611
|
video?: Maybe<Array<Maybe<ExternalVideo>>>;
|
|
20392
20612
|
vulnerability?: Maybe<Array<Maybe<ExternalVulnerability>>>;
|
|
20613
|
+
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
20393
20614
|
};
|
|
20394
|
-
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability;
|
|
20615
|
+
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem;
|
|
20395
20616
|
export declare type ExternalEnvironment = {
|
|
20396
20617
|
__typename?: 'ExternalEnvironment';
|
|
20397
20618
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -20513,6 +20734,7 @@ export declare type ExternalMessage = Node & {
|
|
|
20513
20734
|
id: Scalars['ID']['output'];
|
|
20514
20735
|
isPinned?: Maybe<Scalars['Boolean']['output']>;
|
|
20515
20736
|
largeContentDescription?: Maybe<ExternalLargeContent>;
|
|
20737
|
+
lastActive?: Maybe<Scalars['String']['output']>;
|
|
20516
20738
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
20517
20739
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
20518
20740
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
@@ -20528,6 +20750,11 @@ export declare type ExternalPipeline = {
|
|
|
20528
20750
|
id?: Maybe<Scalars['String']['output']>;
|
|
20529
20751
|
url?: Maybe<Scalars['String']['output']>;
|
|
20530
20752
|
};
|
|
20753
|
+
export declare type ExternalProject = {
|
|
20754
|
+
__typename?: 'ExternalProject';
|
|
20755
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
20756
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
20757
|
+
};
|
|
20531
20758
|
export declare type ExternalPullRequest = Node & {
|
|
20532
20759
|
__typename?: 'ExternalPullRequest';
|
|
20533
20760
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
@@ -20569,13 +20796,19 @@ export declare type ExternalRemoteLink = Node & {
|
|
|
20569
20796
|
attributeMap?: Maybe<Array<Maybe<ExternalRemoteLinkAttributeTuple>>>;
|
|
20570
20797
|
author?: Maybe<ExternalUser>;
|
|
20571
20798
|
category?: Maybe<Scalars['String']['output']>;
|
|
20799
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
20800
|
+
createdBy?: Maybe<ExternalUser>;
|
|
20572
20801
|
description?: Maybe<Scalars['String']['output']>;
|
|
20573
20802
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
20574
20803
|
id: Scalars['ID']['output'];
|
|
20575
20804
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
20805
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
20806
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
20576
20807
|
remoteLinkId?: Maybe<Scalars['String']['output']>;
|
|
20577
20808
|
status?: Maybe<ExternalRemoteLinkStatus>;
|
|
20809
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
20578
20810
|
type?: Maybe<Scalars['String']['output']>;
|
|
20811
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
20579
20812
|
url?: Maybe<Scalars['String']['output']>;
|
|
20580
20813
|
};
|
|
20581
20814
|
export declare type ExternalRemoteLinkAttributeTuple = {
|
|
@@ -20722,6 +20955,53 @@ export declare enum ExternalVulnerabilityType {
|
|
|
20722
20955
|
Sca = "SCA",
|
|
20723
20956
|
Unknown = "UNKNOWN"
|
|
20724
20957
|
}
|
|
20958
|
+
export declare type ExternalWorkItem = Node & {
|
|
20959
|
+
__typename?: 'ExternalWorkItem';
|
|
20960
|
+
assignee?: Maybe<ExternalUser>;
|
|
20961
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
20962
|
+
attachments?: Maybe<Array<Maybe<ExternalWorkItemAttachment>>>;
|
|
20963
|
+
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
20964
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
20965
|
+
createdBy?: Maybe<ExternalUser>;
|
|
20966
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
20967
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
20968
|
+
dueDate?: Maybe<Scalars['String']['output']>;
|
|
20969
|
+
exceedsMaxCollaborators?: Maybe<Scalars['Boolean']['output']>;
|
|
20970
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
20971
|
+
id: Scalars['ID']['output'];
|
|
20972
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
20973
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
20974
|
+
parent?: Maybe<ExternalEntity>;
|
|
20975
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
20976
|
+
project?: Maybe<ExternalProject>;
|
|
20977
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
20978
|
+
subtype?: Maybe<ExternalWorkItemSubtype>;
|
|
20979
|
+
team?: Maybe<Scalars['String']['output']>;
|
|
20980
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
20981
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
20982
|
+
};
|
|
20983
|
+
export declare type ExternalWorkItemAttachment = {
|
|
20984
|
+
__typename?: 'ExternalWorkItemAttachment';
|
|
20985
|
+
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
20986
|
+
mimeType?: Maybe<Scalars['String']['output']>;
|
|
20987
|
+
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
20988
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
20989
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
20990
|
+
};
|
|
20991
|
+
export declare enum ExternalWorkItemSubtype {
|
|
20992
|
+
Approval = "APPROVAL",
|
|
20993
|
+
Bug = "BUG",
|
|
20994
|
+
DefaultTask = "DEFAULT_TASK",
|
|
20995
|
+
Epic = "EPIC",
|
|
20996
|
+
Milestone = "MILESTONE",
|
|
20997
|
+
Other = "OTHER",
|
|
20998
|
+
Problem = "PROBLEM",
|
|
20999
|
+
Question = "QUESTION",
|
|
21000
|
+
Section = "SECTION",
|
|
21001
|
+
Story = "STORY",
|
|
21002
|
+
Task = "TASK",
|
|
21003
|
+
WorkItem = "WORK_ITEM"
|
|
21004
|
+
}
|
|
20725
21005
|
export declare type FailedRoles = {
|
|
20726
21006
|
__typename?: 'FailedRoles';
|
|
20727
21007
|
reason: Scalars['String']['output'];
|
|
@@ -25367,6 +25647,7 @@ export declare type GraphStore = {
|
|
|
25367
25647
|
atlasGoalHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection>;
|
|
25368
25648
|
atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
|
|
25369
25649
|
atlasGoalHasSubAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection>;
|
|
25650
|
+
atlasHomeFeed: GraphStoreAtlasHomeQueryConnection;
|
|
25370
25651
|
atlasProjectContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection>;
|
|
25371
25652
|
atlasProjectContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseConnection>;
|
|
25372
25653
|
atlasProjectContributesToAtlasGoalInverseRelationship?: Maybe<GraphStoreFullAtlasProjectContributesToAtlasGoalConnection>;
|
|
@@ -25716,11 +25997,19 @@ export declare type GraphStore = {
|
|
|
25716
25997
|
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
25717
25998
|
userAuthoredPr?: Maybe<GraphStoreSimplifiedUserAuthoredPrConnection>;
|
|
25718
25999
|
userAuthoredPrInverse?: Maybe<GraphStoreSimplifiedUserAuthoredPrInverseConnection>;
|
|
26000
|
+
userCreatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection>;
|
|
26001
|
+
userCreatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseConnection>;
|
|
26002
|
+
userCreatedConfluencePage?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageConnection>;
|
|
26003
|
+
userCreatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection>;
|
|
26004
|
+
userHasRelevantProject?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectConnection>;
|
|
26005
|
+
userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
|
|
25719
26006
|
userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
|
|
25720
26007
|
userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
|
|
25721
26008
|
userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
|
|
25722
26009
|
userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
|
|
25723
26010
|
userOwnsComponentInverse?: Maybe<GraphStoreSimplifiedUserOwnsComponentInverseConnection>;
|
|
26011
|
+
userReportsIssue?: Maybe<GraphStoreSimplifiedUserReportsIssueConnection>;
|
|
26012
|
+
userReportsIssueInverse?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseConnection>;
|
|
25724
26013
|
userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
|
|
25725
26014
|
userReviewsPrInverse?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseConnection>;
|
|
25726
26015
|
versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
|
|
@@ -25834,6 +26123,10 @@ export declare type GraphStoreAtlasGoalHasSubAtlasGoalInverseArgs = {
|
|
|
25834
26123
|
id: Scalars['ID']['input'];
|
|
25835
26124
|
sort?: InputMaybe<GraphStoreAtlasGoalHasSubAtlasGoalSortInput>;
|
|
25836
26125
|
};
|
|
26126
|
+
export declare type GraphStoreAtlasHomeFeedArgs = {
|
|
26127
|
+
organizationId: Scalars['ID']['input'];
|
|
26128
|
+
userId: Scalars['ID']['input'];
|
|
26129
|
+
};
|
|
25837
26130
|
export declare type GraphStoreAtlasProjectContributesToAtlasGoalArgs = {
|
|
25838
26131
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25839
26132
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28033,6 +28326,48 @@ export declare type GraphStoreUserAuthoredPrInverseArgs = {
|
|
|
28033
28326
|
id: Scalars['ID']['input'];
|
|
28034
28327
|
sort?: InputMaybe<GraphStoreUserAuthoredPrSortInput>;
|
|
28035
28328
|
};
|
|
28329
|
+
export declare type GraphStoreUserCreatedConfluenceBlogpostArgs = {
|
|
28330
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28331
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28332
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28333
|
+
id: Scalars['ID']['input'];
|
|
28334
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceBlogpostSortInput>;
|
|
28335
|
+
};
|
|
28336
|
+
export declare type GraphStoreUserCreatedConfluenceBlogpostInverseArgs = {
|
|
28337
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28338
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28339
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28340
|
+
id: Scalars['ID']['input'];
|
|
28341
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceBlogpostSortInput>;
|
|
28342
|
+
};
|
|
28343
|
+
export declare type GraphStoreUserCreatedConfluencePageArgs = {
|
|
28344
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28345
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28346
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28347
|
+
id: Scalars['ID']['input'];
|
|
28348
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluencePageSortInput>;
|
|
28349
|
+
};
|
|
28350
|
+
export declare type GraphStoreUserCreatedConfluencePageInverseArgs = {
|
|
28351
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28352
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28353
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28354
|
+
id: Scalars['ID']['input'];
|
|
28355
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluencePageSortInput>;
|
|
28356
|
+
};
|
|
28357
|
+
export declare type GraphStoreUserHasRelevantProjectArgs = {
|
|
28358
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28359
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28360
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28361
|
+
id: Scalars['ID']['input'];
|
|
28362
|
+
sort?: InputMaybe<GraphStoreUserHasRelevantProjectSortInput>;
|
|
28363
|
+
};
|
|
28364
|
+
export declare type GraphStoreUserHasRelevantProjectInverseArgs = {
|
|
28365
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28366
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28367
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28368
|
+
id: Scalars['ID']['input'];
|
|
28369
|
+
sort?: InputMaybe<GraphStoreUserHasRelevantProjectSortInput>;
|
|
28370
|
+
};
|
|
28036
28371
|
export declare type GraphStoreUserHasTopProjectArgs = {
|
|
28037
28372
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28038
28373
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28068,6 +28403,20 @@ export declare type GraphStoreUserOwnsComponentInverseArgs = {
|
|
|
28068
28403
|
id: Scalars['ID']['input'];
|
|
28069
28404
|
sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
|
|
28070
28405
|
};
|
|
28406
|
+
export declare type GraphStoreUserReportsIssueArgs = {
|
|
28407
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28408
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28409
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28410
|
+
id: Scalars['ID']['input'];
|
|
28411
|
+
sort?: InputMaybe<GraphStoreUserReportsIssueSortInput>;
|
|
28412
|
+
};
|
|
28413
|
+
export declare type GraphStoreUserReportsIssueInverseArgs = {
|
|
28414
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28415
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28416
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28417
|
+
id: Scalars['ID']['input'];
|
|
28418
|
+
sort?: InputMaybe<GraphStoreUserReportsIssueSortInput>;
|
|
28419
|
+
};
|
|
28071
28420
|
export declare type GraphStoreUserReviewsPrArgs = {
|
|
28072
28421
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28073
28422
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28373,6 +28722,17 @@ export declare type GraphStoreAtlasGoalHasOwnerSortInput = {
|
|
|
28373
28722
|
export declare type GraphStoreAtlasGoalHasSubAtlasGoalSortInput = {
|
|
28374
28723
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28375
28724
|
};
|
|
28725
|
+
export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = JiraIssue | TownsquareGoal | TownsquareProject;
|
|
28726
|
+
export declare type GraphStoreAtlasHomeQueryConnection = {
|
|
28727
|
+
__typename?: 'GraphStoreAtlasHomeQueryConnection';
|
|
28728
|
+
nodes: Array<GraphStoreAtlasHomeQueryNode>;
|
|
28729
|
+
pageInfo: PageInfo;
|
|
28730
|
+
};
|
|
28731
|
+
export declare type GraphStoreAtlasHomeQueryNode = {
|
|
28732
|
+
__typename?: 'GraphStoreAtlasHomeQueryNode';
|
|
28733
|
+
data?: Maybe<GraphStoreAtlasHomeFeedQueryToNodeUnion>;
|
|
28734
|
+
id: Scalars['ID']['output'];
|
|
28735
|
+
};
|
|
28376
28736
|
export declare type GraphStoreAtlasProjectContributesToAtlasGoalSortInput = {
|
|
28377
28737
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28378
28738
|
};
|
|
@@ -29363,6 +29723,20 @@ export declare type GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagRelations
|
|
|
29363
29723
|
to: Scalars['ID']['input'];
|
|
29364
29724
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
29365
29725
|
};
|
|
29726
|
+
export declare type GraphStoreCreateUserHasRelevantProjectInput = {
|
|
29727
|
+
relationships: Array<GraphStoreCreateUserHasRelevantProjectRelationshipInput>;
|
|
29728
|
+
};
|
|
29729
|
+
export declare type GraphStoreCreateUserHasRelevantProjectPayload = Payload & {
|
|
29730
|
+
__typename?: 'GraphStoreCreateUserHasRelevantProjectPayload';
|
|
29731
|
+
errors?: Maybe<Array<MutationError>>;
|
|
29732
|
+
success: Scalars['Boolean']['output'];
|
|
29733
|
+
};
|
|
29734
|
+
export declare type GraphStoreCreateUserHasRelevantProjectRelationshipInput = {
|
|
29735
|
+
from: Scalars['ID']['input'];
|
|
29736
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
29737
|
+
to: Scalars['ID']['input'];
|
|
29738
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
29739
|
+
};
|
|
29366
29740
|
export declare type GraphStoreCreateVersionUserAssociatedFeatureFlagInput = {
|
|
29367
29741
|
relationships: Array<GraphStoreCreateVersionUserAssociatedFeatureFlagRelationshipInput>;
|
|
29368
29742
|
};
|
|
@@ -29447,7 +29821,7 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
29447
29821
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
29448
29822
|
id: Scalars['ID']['output'];
|
|
29449
29823
|
};
|
|
29450
|
-
export declare type GraphStoreCypherQueryToNodeUnion = JiraIssue;
|
|
29824
|
+
export declare type GraphStoreCypherQueryToNodeUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
29451
29825
|
export declare type GraphStoreDateFilterInput = {
|
|
29452
29826
|
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
29453
29827
|
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -29699,6 +30073,19 @@ export declare type GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagRelations
|
|
|
29699
30073
|
from: Scalars['ID']['input'];
|
|
29700
30074
|
to: Scalars['ID']['input'];
|
|
29701
30075
|
};
|
|
30076
|
+
export declare type GraphStoreDeleteUserHasRelevantProjectInput = {
|
|
30077
|
+
relationships: Array<GraphStoreDeleteUserHasRelevantProjectRelationshipInput>;
|
|
30078
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30079
|
+
};
|
|
30080
|
+
export declare type GraphStoreDeleteUserHasRelevantProjectPayload = Payload & {
|
|
30081
|
+
__typename?: 'GraphStoreDeleteUserHasRelevantProjectPayload';
|
|
30082
|
+
errors?: Maybe<Array<MutationError>>;
|
|
30083
|
+
success: Scalars['Boolean']['output'];
|
|
30084
|
+
};
|
|
30085
|
+
export declare type GraphStoreDeleteUserHasRelevantProjectRelationshipInput = {
|
|
30086
|
+
from: Scalars['ID']['input'];
|
|
30087
|
+
to: Scalars['ID']['input'];
|
|
30088
|
+
};
|
|
29702
30089
|
export declare type GraphStoreDeleteVersionUserAssociatedFeatureFlagInput = {
|
|
29703
30090
|
relationships: Array<GraphStoreDeleteVersionUserAssociatedFeatureFlagRelationshipInput>;
|
|
29704
30091
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33412,6 +33799,7 @@ export declare type GraphStoreMutation = {
|
|
|
33412
33799
|
createSprintRetrospectiveWhiteboard?: Maybe<GraphStoreCreateSprintRetrospectiveWhiteboardPayload>;
|
|
33413
33800
|
createTestPerfhammerRelationship?: Maybe<GraphStoreCreateTestPerfhammerRelationshipPayload>;
|
|
33414
33801
|
createTownsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagPayload>;
|
|
33802
|
+
createUserHasRelevantProject?: Maybe<GraphStoreCreateUserHasRelevantProjectPayload>;
|
|
33415
33803
|
createVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreCreateVersionUserAssociatedFeatureFlagPayload>;
|
|
33416
33804
|
createVulnerabilityAssociatedIssue?: Maybe<GraphStoreCreateVulnerabilityAssociatedIssuePayload>;
|
|
33417
33805
|
deleteComponentImpactedByIncident?: Maybe<GraphStoreDeleteComponentImpactedByIncidentPayload>;
|
|
@@ -33433,6 +33821,7 @@ export declare type GraphStoreMutation = {
|
|
|
33433
33821
|
deleteSprintRetrospectiveWhiteboard?: Maybe<GraphStoreDeleteSprintRetrospectiveWhiteboardPayload>;
|
|
33434
33822
|
deleteTestPerfhammerRelationship?: Maybe<GraphStoreDeleteTestPerfhammerRelationshipPayload>;
|
|
33435
33823
|
deleteTownsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagPayload>;
|
|
33824
|
+
deleteUserHasRelevantProject?: Maybe<GraphStoreDeleteUserHasRelevantProjectPayload>;
|
|
33436
33825
|
deleteVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload>;
|
|
33437
33826
|
deleteVulnerabilityAssociatedIssue?: Maybe<GraphStoreDeleteVulnerabilityAssociatedIssuePayload>;
|
|
33438
33827
|
};
|
|
@@ -33493,6 +33882,9 @@ export declare type GraphStoreMutationCreateTestPerfhammerRelationshipArgs = {
|
|
|
33493
33882
|
export declare type GraphStoreMutationCreateTownsquareTagIsAliasOfTownsquareTagArgs = {
|
|
33494
33883
|
input?: InputMaybe<GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagInput>;
|
|
33495
33884
|
};
|
|
33885
|
+
export declare type GraphStoreMutationCreateUserHasRelevantProjectArgs = {
|
|
33886
|
+
input?: InputMaybe<GraphStoreCreateUserHasRelevantProjectInput>;
|
|
33887
|
+
};
|
|
33496
33888
|
export declare type GraphStoreMutationCreateVersionUserAssociatedFeatureFlagArgs = {
|
|
33497
33889
|
input?: InputMaybe<GraphStoreCreateVersionUserAssociatedFeatureFlagInput>;
|
|
33498
33890
|
};
|
|
@@ -33556,6 +33948,9 @@ export declare type GraphStoreMutationDeleteTestPerfhammerRelationshipArgs = {
|
|
|
33556
33948
|
export declare type GraphStoreMutationDeleteTownsquareTagIsAliasOfTownsquareTagArgs = {
|
|
33557
33949
|
input?: InputMaybe<GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagInput>;
|
|
33558
33950
|
};
|
|
33951
|
+
export declare type GraphStoreMutationDeleteUserHasRelevantProjectArgs = {
|
|
33952
|
+
input?: InputMaybe<GraphStoreDeleteUserHasRelevantProjectInput>;
|
|
33953
|
+
};
|
|
33559
33954
|
export declare type GraphStoreMutationDeleteVersionUserAssociatedFeatureFlagArgs = {
|
|
33560
33955
|
input?: InputMaybe<GraphStoreDeleteVersionUserAssociatedFeatureFlagInput>;
|
|
33561
33956
|
};
|
|
@@ -36766,6 +37161,94 @@ export declare type GraphStoreSimplifiedUserAuthoredPrInverseEdge = {
|
|
|
36766
37161
|
};
|
|
36767
37162
|
export declare type GraphStoreSimplifiedUserAuthoredPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
36768
37163
|
export declare type GraphStoreSimplifiedUserAuthoredPrUnion = DevOpsPullRequestDetails;
|
|
37164
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection = HasPageInfo & {
|
|
37165
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection';
|
|
37166
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostEdge>>>;
|
|
37167
|
+
pageInfo: PageInfo;
|
|
37168
|
+
};
|
|
37169
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostEdge = {
|
|
37170
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostEdge';
|
|
37171
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37172
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37173
|
+
id: Scalars['ID']['output'];
|
|
37174
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37175
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostUnion>;
|
|
37176
|
+
};
|
|
37177
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseConnection = HasPageInfo & {
|
|
37178
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseConnection';
|
|
37179
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseEdge>>>;
|
|
37180
|
+
pageInfo: PageInfo;
|
|
37181
|
+
};
|
|
37182
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseEdge = {
|
|
37183
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseEdge';
|
|
37184
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37185
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37186
|
+
id: Scalars['ID']['output'];
|
|
37187
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37188
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseUnion>;
|
|
37189
|
+
};
|
|
37190
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
37191
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
37192
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageConnection = HasPageInfo & {
|
|
37193
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageConnection';
|
|
37194
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluencePageEdge>>>;
|
|
37195
|
+
pageInfo: PageInfo;
|
|
37196
|
+
};
|
|
37197
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageEdge = {
|
|
37198
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageEdge';
|
|
37199
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37200
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37201
|
+
id: Scalars['ID']['output'];
|
|
37202
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37203
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageUnion>;
|
|
37204
|
+
};
|
|
37205
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection = HasPageInfo & {
|
|
37206
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection';
|
|
37207
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseEdge>>>;
|
|
37208
|
+
pageInfo: PageInfo;
|
|
37209
|
+
};
|
|
37210
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseEdge = {
|
|
37211
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageInverseEdge';
|
|
37212
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37213
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37214
|
+
id: Scalars['ID']['output'];
|
|
37215
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37216
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseUnion>;
|
|
37217
|
+
};
|
|
37218
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
37219
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageUnion = ConfluencePage;
|
|
37220
|
+
export declare type GraphStoreSimplifiedUserHasRelevantProjectConnection = HasPageInfo & HasTotal & {
|
|
37221
|
+
__typename?: 'GraphStoreSimplifiedUserHasRelevantProjectConnection';
|
|
37222
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasRelevantProjectEdge>>>;
|
|
37223
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
37224
|
+
pageInfo: PageInfo;
|
|
37225
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
37226
|
+
};
|
|
37227
|
+
export declare type GraphStoreSimplifiedUserHasRelevantProjectEdge = {
|
|
37228
|
+
__typename?: 'GraphStoreSimplifiedUserHasRelevantProjectEdge';
|
|
37229
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37230
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37231
|
+
id: Scalars['ID']['output'];
|
|
37232
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37233
|
+
node?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectUnion>;
|
|
37234
|
+
};
|
|
37235
|
+
export declare type GraphStoreSimplifiedUserHasRelevantProjectInverseConnection = HasPageInfo & HasTotal & {
|
|
37236
|
+
__typename?: 'GraphStoreSimplifiedUserHasRelevantProjectInverseConnection';
|
|
37237
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseEdge>>>;
|
|
37238
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
37239
|
+
pageInfo: PageInfo;
|
|
37240
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
37241
|
+
};
|
|
37242
|
+
export declare type GraphStoreSimplifiedUserHasRelevantProjectInverseEdge = {
|
|
37243
|
+
__typename?: 'GraphStoreSimplifiedUserHasRelevantProjectInverseEdge';
|
|
37244
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37245
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37246
|
+
id: Scalars['ID']['output'];
|
|
37247
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37248
|
+
node?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseUnion>;
|
|
37249
|
+
};
|
|
37250
|
+
export declare type GraphStoreSimplifiedUserHasRelevantProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
37251
|
+
export declare type GraphStoreSimplifiedUserHasRelevantProjectUnion = JiraProject;
|
|
36769
37252
|
export declare type GraphStoreSimplifiedUserHasTopProjectConnection = HasPageInfo & {
|
|
36770
37253
|
__typename?: 'GraphStoreSimplifiedUserHasTopProjectConnection';
|
|
36771
37254
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasTopProjectEdge>>>;
|
|
@@ -36840,6 +37323,34 @@ export declare type GraphStoreSimplifiedUserOwnsComponentInverseEdge = {
|
|
|
36840
37323
|
};
|
|
36841
37324
|
export declare type GraphStoreSimplifiedUserOwnsComponentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
36842
37325
|
export declare type GraphStoreSimplifiedUserOwnsComponentUnion = CompassComponent;
|
|
37326
|
+
export declare type GraphStoreSimplifiedUserReportsIssueConnection = HasPageInfo & {
|
|
37327
|
+
__typename?: 'GraphStoreSimplifiedUserReportsIssueConnection';
|
|
37328
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReportsIssueEdge>>>;
|
|
37329
|
+
pageInfo: PageInfo;
|
|
37330
|
+
};
|
|
37331
|
+
export declare type GraphStoreSimplifiedUserReportsIssueEdge = {
|
|
37332
|
+
__typename?: 'GraphStoreSimplifiedUserReportsIssueEdge';
|
|
37333
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37334
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37335
|
+
id: Scalars['ID']['output'];
|
|
37336
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37337
|
+
node?: Maybe<GraphStoreSimplifiedUserReportsIssueUnion>;
|
|
37338
|
+
};
|
|
37339
|
+
export declare type GraphStoreSimplifiedUserReportsIssueInverseConnection = HasPageInfo & {
|
|
37340
|
+
__typename?: 'GraphStoreSimplifiedUserReportsIssueInverseConnection';
|
|
37341
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReportsIssueInverseEdge>>>;
|
|
37342
|
+
pageInfo: PageInfo;
|
|
37343
|
+
};
|
|
37344
|
+
export declare type GraphStoreSimplifiedUserReportsIssueInverseEdge = {
|
|
37345
|
+
__typename?: 'GraphStoreSimplifiedUserReportsIssueInverseEdge';
|
|
37346
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37347
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37348
|
+
id: Scalars['ID']['output'];
|
|
37349
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37350
|
+
node?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseUnion>;
|
|
37351
|
+
};
|
|
37352
|
+
export declare type GraphStoreSimplifiedUserReportsIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
37353
|
+
export declare type GraphStoreSimplifiedUserReportsIssueUnion = JiraIssue;
|
|
36843
37354
|
export declare type GraphStoreSimplifiedUserReviewsPrConnection = HasPageInfo & {
|
|
36844
37355
|
__typename?: 'GraphStoreSimplifiedUserReviewsPrConnection';
|
|
36845
37356
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReviewsPrEdge>>>;
|
|
@@ -37527,6 +38038,18 @@ export declare type GraphStoreTestPerfhammerRelationshipSortInput = {
|
|
|
37527
38038
|
export declare type GraphStoreUserAuthoredPrSortInput = {
|
|
37528
38039
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37529
38040
|
};
|
|
38041
|
+
export declare type GraphStoreUserCreatedConfluenceBlogpostSortInput = {
|
|
38042
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38043
|
+
};
|
|
38044
|
+
export declare type GraphStoreUserCreatedConfluencePageSortInput = {
|
|
38045
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38046
|
+
};
|
|
38047
|
+
export declare type GraphStoreUserHasRelevantProjectSortInput = {
|
|
38048
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
38049
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
38050
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38051
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
38052
|
+
};
|
|
37530
38053
|
export declare type GraphStoreUserHasTopProjectSortInput = {
|
|
37531
38054
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37532
38055
|
};
|
|
@@ -37539,6 +38062,9 @@ export declare type GraphStoreUserOwnsComponentSortInput = {
|
|
|
37539
38062
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37540
38063
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
37541
38064
|
};
|
|
38065
|
+
export declare type GraphStoreUserReportsIssueSortInput = {
|
|
38066
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38067
|
+
};
|
|
37542
38068
|
export declare type GraphStoreUserReviewsPrSortInput = {
|
|
37543
38069
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37544
38070
|
};
|
|
@@ -37708,27 +38234,12 @@ export declare enum GrowthUnifiedProfileAnchorType {
|
|
|
37708
38234
|
Pfm = "PFM",
|
|
37709
38235
|
Seo = "SEO"
|
|
37710
38236
|
}
|
|
37711
|
-
export declare enum
|
|
37712
|
-
|
|
37713
|
-
Direct = "DIRECT",
|
|
37714
|
-
Email = "EMAIL",
|
|
37715
|
-
EngagementEngine = "ENGAGEMENT_ENGINE",
|
|
37716
|
-
InProductReferral = "IN_PRODUCT_REFERRAL",
|
|
37717
|
-
Organic = "ORGANIC",
|
|
37718
|
-
Other = "OTHER",
|
|
37719
|
-
PaidAffiliate = "PAID_AFFILIATE",
|
|
38237
|
+
export declare enum GrowthUnifiedProfileChannel {
|
|
38238
|
+
PaidContent = "PAID_CONTENT",
|
|
37720
38239
|
PaidDisplay = "PAID_DISPLAY",
|
|
37721
38240
|
PaidReviewSites = "PAID_REVIEW_SITES",
|
|
37722
|
-
|
|
37723
|
-
|
|
37724
|
-
PaidSocial = "PAID_SOCIAL",
|
|
37725
|
-
ReferralExternal = "REFERRAL_EXTERNAL",
|
|
37726
|
-
ReferralInternal = "REFERRAL_INTERNAL",
|
|
37727
|
-
SelfReferral = "SELF_REFERRAL",
|
|
37728
|
-
SlackAppDirectory = "SLACK_APP_DIRECTORY",
|
|
37729
|
-
Suppress = "SUPPRESS",
|
|
37730
|
-
UnpaidSocial = "UNPAID_SOCIAL",
|
|
37731
|
-
UnpaidVideo = "UNPAID_VIDEO"
|
|
38241
|
+
PaidSearch = "PAID_SEARCH",
|
|
38242
|
+
PaidSocial = "PAID_SOCIAL"
|
|
37732
38243
|
}
|
|
37733
38244
|
export declare type GrowthUnifiedProfileCompany = {
|
|
37734
38245
|
__typename?: 'GrowthUnifiedProfileCompany';
|
|
@@ -37861,7 +38372,6 @@ export declare type GrowthUnifiedProfileOnboardingContextInput = {
|
|
|
37861
38372
|
export declare type GrowthUnifiedProfilePaidChannelContext = {
|
|
37862
38373
|
__typename?: 'GrowthUnifiedProfilePaidChannelContext';
|
|
37863
38374
|
anchor?: Maybe<GrowthUnifiedProfileAnchor>;
|
|
37864
|
-
name?: Maybe<GrowthUnifiedProfileChannelName>;
|
|
37865
38375
|
persona?: Maybe<Scalars['String']['output']>;
|
|
37866
38376
|
subAnchor?: Maybe<Scalars['String']['output']>;
|
|
37867
38377
|
teamType?: Maybe<GrowthUnifiedProfileTeamType>;
|
|
@@ -37876,6 +38386,13 @@ export declare type GrowthUnifiedProfilePaidChannelContextByProduct = {
|
|
|
37876
38386
|
jwm?: Maybe<GrowthUnifiedProfilePaidChannelContext>;
|
|
37877
38387
|
trello?: Maybe<GrowthUnifiedProfilePaidChannelContext>;
|
|
37878
38388
|
};
|
|
38389
|
+
export declare enum GrowthUnifiedProfileProduct {
|
|
38390
|
+
Confluence = "confluence",
|
|
38391
|
+
Jira = "jira",
|
|
38392
|
+
Jsm = "jsm",
|
|
38393
|
+
Jwm = "jwm",
|
|
38394
|
+
Trello = "trello"
|
|
38395
|
+
}
|
|
37879
38396
|
export declare type GrowthUnifiedProfileProductDetails = {
|
|
37880
38397
|
__typename?: 'GrowthUnifiedProfileProductDetails';
|
|
37881
38398
|
d0Active?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -37896,6 +38413,7 @@ export declare type GrowthUnifiedProfileResult = {
|
|
|
37896
38413
|
paidChannelContext?: Maybe<GrowthUnifiedProfilePaidChannelContextByProduct>;
|
|
37897
38414
|
seoContext?: Maybe<GrowthUnifiedProfileSeoContext>;
|
|
37898
38415
|
sites?: Maybe<Array<Maybe<GrowthUnifiedProfileSiteDetails>>>;
|
|
38416
|
+
userFootprints?: Maybe<GrowthUnifiedProfileUserFootprints>;
|
|
37899
38417
|
};
|
|
37900
38418
|
export declare type GrowthUnifiedProfileSeoContext = {
|
|
37901
38419
|
__typename?: 'GrowthUnifiedProfileSeoContext';
|
|
@@ -37924,12 +38442,18 @@ export declare enum GrowthUnifiedProfileTeamType {
|
|
|
37924
38442
|
ProductManagement = "PRODUCT_MANAGEMENT",
|
|
37925
38443
|
ProjectManagement = "PROJECT_MANAGEMENT",
|
|
37926
38444
|
Sales = "SALES",
|
|
37927
|
-
SoftwareDevelopment = "SOFTWARE_DEVELOPMENT"
|
|
38445
|
+
SoftwareDevelopment = "SOFTWARE_DEVELOPMENT",
|
|
38446
|
+
SoftwareEngineering = "SOFTWARE_ENGINEERING"
|
|
37928
38447
|
}
|
|
38448
|
+
export declare type GrowthUnifiedProfileUserFootprints = {
|
|
38449
|
+
__typename?: 'GrowthUnifiedProfileUserFootprints';
|
|
38450
|
+
hasAtlassianAccount?: Maybe<Scalars['Boolean']['output']>;
|
|
38451
|
+
products?: Maybe<Array<Maybe<GrowthUnifiedProfileProduct>>>;
|
|
38452
|
+
};
|
|
37929
38453
|
export declare type GrowthUnifiedProfileUtm = {
|
|
37930
38454
|
__typename?: 'GrowthUnifiedProfileUtm';
|
|
38455
|
+
channel?: Maybe<GrowthUnifiedProfileChannel>;
|
|
37931
38456
|
keyword?: Maybe<Scalars['String']['output']>;
|
|
37932
|
-
medium?: Maybe<Scalars['String']['output']>;
|
|
37933
38457
|
source?: Maybe<Scalars['String']['output']>;
|
|
37934
38458
|
};
|
|
37935
38459
|
export declare type HamsAccountDetails = CommerceAccountDetails & {
|
|
@@ -40647,6 +41171,7 @@ export declare type JiraAffectedServicesField = JiraHasMultipleSelectedValues &
|
|
|
40647
41171
|
description?: Maybe<Scalars['String']['output']>;
|
|
40648
41172
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
40649
41173
|
fieldId: Scalars['String']['output'];
|
|
41174
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
40650
41175
|
id: Scalars['ID']['output'];
|
|
40651
41176
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
40652
41177
|
issue?: Maybe<JiraIssue>;
|
|
@@ -40930,6 +41455,7 @@ export declare type JiraAssetField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
40930
41455
|
description?: Maybe<Scalars['String']['output']>;
|
|
40931
41456
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
40932
41457
|
fieldId: Scalars['String']['output'];
|
|
41458
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
40933
41459
|
id: Scalars['ID']['output'];
|
|
40934
41460
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
40935
41461
|
issue?: Maybe<JiraIssue>;
|
|
@@ -41011,6 +41537,7 @@ export declare type JiraAtlassianTeamField = JiraIssueField & JiraIssueFieldConf
|
|
|
41011
41537
|
description?: Maybe<Scalars['String']['output']>;
|
|
41012
41538
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
41013
41539
|
fieldId: Scalars['String']['output'];
|
|
41540
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
41014
41541
|
id: Scalars['ID']['output'];
|
|
41015
41542
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
41016
41543
|
issue?: Maybe<JiraIssue>;
|
|
@@ -41134,6 +41661,7 @@ export declare type JiraAttachmentsField = JiraIssueField & JiraIssueFieldConfig
|
|
|
41134
41661
|
description?: Maybe<Scalars['String']['output']>;
|
|
41135
41662
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
41136
41663
|
fieldId: Scalars['String']['output'];
|
|
41664
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
41137
41665
|
id: Scalars['ID']['output'];
|
|
41138
41666
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
41139
41667
|
issue?: Maybe<JiraIssue>;
|
|
@@ -41520,6 +42048,7 @@ export declare type JiraBooleanField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
41520
42048
|
description?: Maybe<Scalars['String']['output']>;
|
|
41521
42049
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
41522
42050
|
fieldId: Scalars['String']['output'];
|
|
42051
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
41523
42052
|
id: Scalars['ID']['output'];
|
|
41524
42053
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
41525
42054
|
issue?: Maybe<JiraIssue>;
|
|
@@ -41654,6 +42183,7 @@ export declare type JiraCmdbField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
41654
42183
|
description?: Maybe<Scalars['String']['output']>;
|
|
41655
42184
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
41656
42185
|
fieldId: Scalars['String']['output'];
|
|
42186
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
41657
42187
|
id: Scalars['ID']['output'];
|
|
41658
42188
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
41659
42189
|
isInsightAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -41940,6 +42470,7 @@ export declare type JiraCascadingSelectField = JiraHasSelectableValueOptions & J
|
|
|
41940
42470
|
description?: Maybe<Scalars['String']['output']>;
|
|
41941
42471
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
41942
42472
|
fieldId: Scalars['String']['output'];
|
|
42473
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
41943
42474
|
id: Scalars['ID']['output'];
|
|
41944
42475
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
41945
42476
|
issue?: Maybe<JiraIssue>;
|
|
@@ -42003,6 +42534,7 @@ export declare type JiraCheckboxesField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
42003
42534
|
description?: Maybe<Scalars['String']['output']>;
|
|
42004
42535
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
42005
42536
|
fieldId: Scalars['String']['output'];
|
|
42537
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
42006
42538
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
42007
42539
|
id: Scalars['ID']['output'];
|
|
42008
42540
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -42323,6 +42855,7 @@ export declare type JiraColorField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
42323
42855
|
description?: Maybe<Scalars['String']['output']>;
|
|
42324
42856
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
42325
42857
|
fieldId: Scalars['String']['output'];
|
|
42858
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
42326
42859
|
id: Scalars['ID']['output'];
|
|
42327
42860
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42328
42861
|
issue?: Maybe<JiraIssue>;
|
|
@@ -42417,6 +42950,7 @@ export declare type JiraComponentsField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
42417
42950
|
description?: Maybe<Scalars['String']['output']>;
|
|
42418
42951
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
42419
42952
|
fieldId: Scalars['String']['output'];
|
|
42953
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
42420
42954
|
id: Scalars['ID']['output'];
|
|
42421
42955
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42422
42956
|
issue?: Maybe<JiraIssue>;
|
|
@@ -42604,6 +43138,7 @@ export declare type JiraConfluenceRemoteIssueLinksField = JiraIssueField & JiraI
|
|
|
42604
43138
|
description?: Maybe<Scalars['String']['output']>;
|
|
42605
43139
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
42606
43140
|
fieldId: Scalars['String']['output'];
|
|
43141
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
42607
43142
|
id: Scalars['ID']['output'];
|
|
42608
43143
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42609
43144
|
issue?: Maybe<JiraIssue>;
|
|
@@ -42621,6 +43156,7 @@ export declare type JiraConnectDateTimeField = JiraIssueField & JiraIssueFieldCo
|
|
|
42621
43156
|
description?: Maybe<Scalars['String']['output']>;
|
|
42622
43157
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
42623
43158
|
fieldId: Scalars['String']['output'];
|
|
43159
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
42624
43160
|
id: Scalars['ID']['output'];
|
|
42625
43161
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42626
43162
|
issue?: Maybe<JiraIssue>;
|
|
@@ -42634,6 +43170,7 @@ export declare type JiraConnectMultipleSelectField = JiraHasMultipleSelectedValu
|
|
|
42634
43170
|
description?: Maybe<Scalars['String']['output']>;
|
|
42635
43171
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
42636
43172
|
fieldId: Scalars['String']['output'];
|
|
43173
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
42637
43174
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
42638
43175
|
id: Scalars['ID']['output'];
|
|
42639
43176
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -42681,6 +43218,7 @@ export declare type JiraConnectNumberField = JiraIssueField & JiraIssueFieldConf
|
|
|
42681
43218
|
description?: Maybe<Scalars['String']['output']>;
|
|
42682
43219
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
42683
43220
|
fieldId: Scalars['String']['output'];
|
|
43221
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
42684
43222
|
id: Scalars['ID']['output'];
|
|
42685
43223
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42686
43224
|
issue?: Maybe<JiraIssue>;
|
|
@@ -42695,6 +43233,7 @@ export declare type JiraConnectReadOnlyField = JiraIssueField & JiraIssueFieldCo
|
|
|
42695
43233
|
description?: Maybe<Scalars['String']['output']>;
|
|
42696
43234
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
42697
43235
|
fieldId: Scalars['String']['output'];
|
|
43236
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
42698
43237
|
id: Scalars['ID']['output'];
|
|
42699
43238
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42700
43239
|
issue?: Maybe<JiraIssue>;
|
|
@@ -42709,6 +43248,7 @@ export declare type JiraConnectRichTextField = JiraIssueField & JiraIssueFieldCo
|
|
|
42709
43248
|
description?: Maybe<Scalars['String']['output']>;
|
|
42710
43249
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
42711
43250
|
fieldId: Scalars['String']['output'];
|
|
43251
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
42712
43252
|
id: Scalars['ID']['output'];
|
|
42713
43253
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42714
43254
|
issue?: Maybe<JiraIssue>;
|
|
@@ -42725,6 +43265,7 @@ export declare type JiraConnectSingleSelectField = JiraHasSelectableValueOptions
|
|
|
42725
43265
|
description?: Maybe<Scalars['String']['output']>;
|
|
42726
43266
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
42727
43267
|
fieldId: Scalars['String']['output'];
|
|
43268
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
42728
43269
|
fieldOption?: Maybe<JiraOption>;
|
|
42729
43270
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
42730
43271
|
id: Scalars['ID']['output'];
|
|
@@ -42758,6 +43299,7 @@ export declare type JiraConnectTextField = JiraIssueField & JiraIssueFieldConfig
|
|
|
42758
43299
|
description?: Maybe<Scalars['String']['output']>;
|
|
42759
43300
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
42760
43301
|
fieldId: Scalars['String']['output'];
|
|
43302
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
42761
43303
|
id: Scalars['ID']['output'];
|
|
42762
43304
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42763
43305
|
issue?: Maybe<JiraIssue>;
|
|
@@ -43078,6 +43620,7 @@ export declare type JiraCustomerServiceOrganizationField = JiraIssueField & Jira
|
|
|
43078
43620
|
description?: Maybe<Scalars['String']['output']>;
|
|
43079
43621
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
43080
43622
|
fieldId: Scalars['String']['output'];
|
|
43623
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
43081
43624
|
id: Scalars['ID']['output'];
|
|
43082
43625
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
43083
43626
|
issue?: Maybe<JiraIssue>;
|
|
@@ -43114,6 +43657,7 @@ export declare type JiraDataClassificationField = JiraIssueField & JiraIssueFiel
|
|
|
43114
43657
|
description?: Maybe<Scalars['String']['output']>;
|
|
43115
43658
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
43116
43659
|
fieldId: Scalars['String']['output'];
|
|
43660
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
43117
43661
|
id: Scalars['ID']['output'];
|
|
43118
43662
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
43119
43663
|
issue?: Maybe<JiraIssue>;
|
|
@@ -43140,6 +43684,11 @@ export declare type JiraDataClassificationFieldPayload = Payload & {
|
|
|
43140
43684
|
field?: Maybe<JiraDataClassificationField>;
|
|
43141
43685
|
success: Scalars['Boolean']['output'];
|
|
43142
43686
|
};
|
|
43687
|
+
export declare type JiraDateFieldAssociationMessageMutationPayload = Payload & {
|
|
43688
|
+
__typename?: 'JiraDateFieldAssociationMessageMutationPayload';
|
|
43689
|
+
errors?: Maybe<Array<MutationError>>;
|
|
43690
|
+
success: Scalars['Boolean']['output'];
|
|
43691
|
+
};
|
|
43143
43692
|
export declare type JiraDateFieldInput = {
|
|
43144
43693
|
date: JiraDateInput;
|
|
43145
43694
|
fieldId: Scalars['ID']['input'];
|
|
@@ -43164,6 +43713,7 @@ export declare type JiraDatePickerField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
43164
43713
|
description?: Maybe<Scalars['String']['output']>;
|
|
43165
43714
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
43166
43715
|
fieldId: Scalars['String']['output'];
|
|
43716
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
43167
43717
|
id: Scalars['ID']['output'];
|
|
43168
43718
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
43169
43719
|
issue?: Maybe<JiraIssue>;
|
|
@@ -43199,6 +43749,7 @@ export declare type JiraDateTimePickerField = JiraIssueField & JiraIssueFieldCon
|
|
|
43199
43749
|
description?: Maybe<Scalars['String']['output']>;
|
|
43200
43750
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
43201
43751
|
fieldId: Scalars['String']['output'];
|
|
43752
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
43202
43753
|
id: Scalars['ID']['output'];
|
|
43203
43754
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
43204
43755
|
issue?: Maybe<JiraIssue>;
|
|
@@ -43305,15 +43856,29 @@ export declare enum JiraDeploymentsFeaturePrecondition {
|
|
|
43305
43856
|
DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE",
|
|
43306
43857
|
NotAvailable = "NOT_AVAILABLE"
|
|
43307
43858
|
}
|
|
43308
|
-
export declare type JiraDetailedView = JiraIssueSearchViewType & JiraView & Node & {
|
|
43859
|
+
export declare type JiraDetailedView = JiraIssueSearchViewMetadata & JiraIssueSearchViewType & JiraView & Node & {
|
|
43309
43860
|
__typename?: 'JiraDetailedView';
|
|
43310
43861
|
error?: Maybe<QueryError>;
|
|
43862
|
+
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
43863
|
+
filterId?: Maybe<Scalars['String']['output']>;
|
|
43864
|
+
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
43311
43865
|
id: Scalars['ID']['output'];
|
|
43866
|
+
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
43312
43867
|
issues?: Maybe<JiraIssueConnection>;
|
|
43868
|
+
namespace?: Maybe<Scalars['String']['output']>;
|
|
43869
|
+
viewId?: Maybe<Scalars['String']['output']>;
|
|
43870
|
+
};
|
|
43871
|
+
export declare type JiraDetailedViewFieldSetsArgs = {
|
|
43872
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
43873
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
43874
|
+
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
43875
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43876
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
43313
43877
|
};
|
|
43314
43878
|
export declare type JiraDetailedViewIssuesArgs = {
|
|
43315
43879
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
43316
43880
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
43881
|
+
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
|
|
43317
43882
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43318
43883
|
issueSearchInput: JiraIssueSearchInput;
|
|
43319
43884
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -43626,6 +44191,7 @@ export declare type JiraDevSummaryField = JiraIssueField & Node & {
|
|
|
43626
44191
|
description?: Maybe<Scalars['String']['output']>;
|
|
43627
44192
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
43628
44193
|
fieldId: Scalars['String']['output'];
|
|
44194
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
43629
44195
|
id: Scalars['ID']['output'];
|
|
43630
44196
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
43631
44197
|
issue?: Maybe<JiraIssue>;
|
|
@@ -43672,6 +44238,7 @@ export declare type JiraDurationField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
43672
44238
|
durationInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
43673
44239
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
43674
44240
|
fieldId: Scalars['String']['output'];
|
|
44241
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
43675
44242
|
id: Scalars['ID']['output'];
|
|
43676
44243
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
43677
44244
|
issue?: Maybe<JiraIssue>;
|
|
@@ -43762,6 +44329,7 @@ export declare type JiraEpicLinkField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
43762
44329
|
epics?: Maybe<JiraEpicConnection>;
|
|
43763
44330
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
43764
44331
|
fieldId: Scalars['String']['output'];
|
|
44332
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
43765
44333
|
id: Scalars['ID']['output'];
|
|
43766
44334
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
43767
44335
|
issue?: Maybe<JiraIssue>;
|
|
@@ -43803,6 +44371,7 @@ export declare type JiraFallbackField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
43803
44371
|
description?: Maybe<Scalars['String']['output']>;
|
|
43804
44372
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
43805
44373
|
fieldId: Scalars['String']['output'];
|
|
44374
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
43806
44375
|
id: Scalars['ID']['output'];
|
|
43807
44376
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
43808
44377
|
issue?: Maybe<JiraIssue>;
|
|
@@ -44086,6 +44655,7 @@ export declare type JiraFlagField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
44086
44655
|
description?: Maybe<Scalars['String']['output']>;
|
|
44087
44656
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
44088
44657
|
fieldId: Scalars['String']['output'];
|
|
44658
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
44089
44659
|
flag?: Maybe<JiraFlag>;
|
|
44090
44660
|
id: Scalars['ID']['output'];
|
|
44091
44661
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -44106,6 +44676,7 @@ export declare type JiraForgeDateField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
44106
44676
|
description?: Maybe<Scalars['String']['output']>;
|
|
44107
44677
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
44108
44678
|
fieldId: Scalars['String']['output'];
|
|
44679
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
44109
44680
|
id: Scalars['ID']['output'];
|
|
44110
44681
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44111
44682
|
issue?: Maybe<JiraIssue>;
|
|
@@ -44121,6 +44692,7 @@ export declare type JiraForgeDatetimeField = JiraIssueField & JiraIssueFieldConf
|
|
|
44121
44692
|
description?: Maybe<Scalars['String']['output']>;
|
|
44122
44693
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
44123
44694
|
fieldId: Scalars['String']['output'];
|
|
44695
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
44124
44696
|
id: Scalars['ID']['output'];
|
|
44125
44697
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44126
44698
|
issue?: Maybe<JiraIssue>;
|
|
@@ -44170,6 +44742,7 @@ export declare type JiraForgeGroupField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
44170
44742
|
description?: Maybe<Scalars['String']['output']>;
|
|
44171
44743
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
44172
44744
|
fieldId: Scalars['String']['output'];
|
|
44745
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
44173
44746
|
groups?: Maybe<JiraGroupConnection>;
|
|
44174
44747
|
id: Scalars['ID']['output'];
|
|
44175
44748
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -44194,6 +44767,7 @@ export declare type JiraForgeGroupsField = JiraIssueField & JiraIssueFieldConfig
|
|
|
44194
44767
|
description?: Maybe<Scalars['String']['output']>;
|
|
44195
44768
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
44196
44769
|
fieldId: Scalars['String']['output'];
|
|
44770
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
44197
44771
|
groups?: Maybe<JiraGroupConnection>;
|
|
44198
44772
|
id: Scalars['ID']['output'];
|
|
44199
44773
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -44230,6 +44804,7 @@ export declare type JiraForgeNumberField = JiraIssueField & JiraIssueFieldConfig
|
|
|
44230
44804
|
description?: Maybe<Scalars['String']['output']>;
|
|
44231
44805
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
44232
44806
|
fieldId: Scalars['String']['output'];
|
|
44807
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
44233
44808
|
id: Scalars['ID']['output'];
|
|
44234
44809
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44235
44810
|
issue?: Maybe<JiraIssue>;
|
|
@@ -44245,6 +44820,7 @@ export declare type JiraForgeObjectField = JiraIssueField & JiraIssueFieldConfig
|
|
|
44245
44820
|
description?: Maybe<Scalars['String']['output']>;
|
|
44246
44821
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
44247
44822
|
fieldId: Scalars['String']['output'];
|
|
44823
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
44248
44824
|
id: Scalars['ID']['output'];
|
|
44249
44825
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44250
44826
|
issue?: Maybe<JiraIssue>;
|
|
@@ -44285,6 +44861,7 @@ export declare type JiraForgeStringField = JiraIssueField & JiraIssueFieldConfig
|
|
|
44285
44861
|
description?: Maybe<Scalars['String']['output']>;
|
|
44286
44862
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
44287
44863
|
fieldId: Scalars['String']['output'];
|
|
44864
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
44288
44865
|
id: Scalars['ID']['output'];
|
|
44289
44866
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44290
44867
|
issue?: Maybe<JiraIssue>;
|
|
@@ -44300,6 +44877,7 @@ export declare type JiraForgeStringsField = JiraIssueField & JiraIssueFieldConfi
|
|
|
44300
44877
|
description?: Maybe<Scalars['String']['output']>;
|
|
44301
44878
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
44302
44879
|
fieldId: Scalars['String']['output'];
|
|
44880
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
44303
44881
|
id: Scalars['ID']['output'];
|
|
44304
44882
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44305
44883
|
issue?: Maybe<JiraIssue>;
|
|
@@ -44332,6 +44910,7 @@ export declare type JiraForgeUserField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
44332
44910
|
description?: Maybe<Scalars['String']['output']>;
|
|
44333
44911
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
44334
44912
|
fieldId: Scalars['String']['output'];
|
|
44913
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
44335
44914
|
id: Scalars['ID']['output'];
|
|
44336
44915
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44337
44916
|
issue?: Maybe<JiraIssue>;
|
|
@@ -44357,6 +44936,7 @@ export declare type JiraForgeUsersField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
44357
44936
|
description?: Maybe<Scalars['String']['output']>;
|
|
44358
44937
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
44359
44938
|
fieldId: Scalars['String']['output'];
|
|
44939
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
44360
44940
|
id: Scalars['ID']['output'];
|
|
44361
44941
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44362
44942
|
issue?: Maybe<JiraIssue>;
|
|
@@ -44501,6 +45081,7 @@ export declare type JiraGenericIssueField = JiraIssueField & JiraIssueFieldConfi
|
|
|
44501
45081
|
description?: Maybe<Scalars['String']['output']>;
|
|
44502
45082
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
44503
45083
|
fieldId: Scalars['String']['output'];
|
|
45084
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
44504
45085
|
id: Scalars['ID']['output'];
|
|
44505
45086
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44506
45087
|
issue?: Maybe<JiraIssue>;
|
|
@@ -44596,6 +45177,7 @@ export declare type JiraGoalsField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
44596
45177
|
description?: Maybe<Scalars['String']['output']>;
|
|
44597
45178
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
44598
45179
|
fieldId: Scalars['String']['output'];
|
|
45180
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
44599
45181
|
id: Scalars['ID']['output'];
|
|
44600
45182
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44601
45183
|
issue?: Maybe<JiraIssue>;
|
|
@@ -44816,6 +45398,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
44816
45398
|
fields?: Maybe<JiraIssueFieldConnection>;
|
|
44817
45399
|
fieldsById?: Maybe<JiraIssueFieldConnection>;
|
|
44818
45400
|
fieldsByIdOrAlias?: Maybe<Array<Maybe<JiraIssueField>>>;
|
|
45401
|
+
groupsByFieldId?: Maybe<JiraSpreadsheetGroupConnection>;
|
|
44819
45402
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
44820
45403
|
hasCustomisedContentPanels?: Maybe<Scalars['Boolean']['output']>;
|
|
44821
45404
|
hasProjectPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -44969,8 +45552,20 @@ export declare type JiraIssueFieldsByIdOrAliasArgs = {
|
|
|
44969
45552
|
idsOrAliases: Array<InputMaybe<Scalars['String']['input']>>;
|
|
44970
45553
|
ignoreMissingFields?: InputMaybe<Scalars['Boolean']['input']>;
|
|
44971
45554
|
};
|
|
45555
|
+
export declare type JiraIssueGroupsByFieldIdArgs = {
|
|
45556
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
45557
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
45558
|
+
fieldId: Scalars['String']['input'];
|
|
45559
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45560
|
+
firstNGroupsToSearch?: InputMaybe<Scalars['Int']['input']>;
|
|
45561
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
45562
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
45563
|
+
};
|
|
44972
45564
|
export declare type JiraIssueHasChildrenArgs = {
|
|
44973
45565
|
filterByProjectKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
45566
|
+
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
45567
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
45568
|
+
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
44974
45569
|
};
|
|
44975
45570
|
export declare type JiraIssueHasProjectPermissionArgs = {
|
|
44976
45571
|
permission: JiraProjectPermissionType;
|
|
@@ -45362,6 +45957,7 @@ export declare type JiraIssueField = {
|
|
|
45362
45957
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
45363
45958
|
description?: Maybe<Scalars['String']['output']>;
|
|
45364
45959
|
fieldId: Scalars['String']['output'];
|
|
45960
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
45365
45961
|
id: Scalars['ID']['output'];
|
|
45366
45962
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
45367
45963
|
issue?: Maybe<JiraIssue>;
|
|
@@ -45658,6 +46254,7 @@ export declare type JiraIssueLinkField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
45658
46254
|
description?: Maybe<Scalars['String']['output']>;
|
|
45659
46255
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
45660
46256
|
fieldId: Scalars['String']['output'];
|
|
46257
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
45661
46258
|
id: Scalars['ID']['output'];
|
|
45662
46259
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
45663
46260
|
issue?: Maybe<JiraIssue>;
|
|
@@ -45797,6 +46394,7 @@ export declare type JiraIssueRestrictionField = JiraIssueField & JiraIssueFieldC
|
|
|
45797
46394
|
description?: Maybe<Scalars['String']['output']>;
|
|
45798
46395
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
45799
46396
|
fieldId: Scalars['String']['output'];
|
|
46397
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
45800
46398
|
id: Scalars['ID']['output'];
|
|
45801
46399
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
45802
46400
|
issue?: Maybe<JiraIssue>;
|
|
@@ -46225,6 +46823,7 @@ export declare type JiraIssueTypeField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
46225
46823
|
description?: Maybe<Scalars['String']['output']>;
|
|
46226
46824
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
46227
46825
|
fieldId: Scalars['String']['output'];
|
|
46826
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
46228
46827
|
id: Scalars['ID']['output'];
|
|
46229
46828
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
46230
46829
|
issue?: Maybe<JiraIssue>;
|
|
@@ -46987,6 +47586,7 @@ export declare type JiraLabelsField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
46987
47586
|
description?: Maybe<Scalars['String']['output']>;
|
|
46988
47587
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
46989
47588
|
fieldId: Scalars['String']['output'];
|
|
47589
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
46990
47590
|
id: Scalars['ID']['output'];
|
|
46991
47591
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
46992
47592
|
issue?: Maybe<JiraIssue>;
|
|
@@ -47252,6 +47852,7 @@ export declare type JiraMultipleGroupPickerField = JiraIssueField & JiraIssueFie
|
|
|
47252
47852
|
description?: Maybe<Scalars['String']['output']>;
|
|
47253
47853
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
47254
47854
|
fieldId: Scalars['String']['output'];
|
|
47855
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
47255
47856
|
groups?: Maybe<JiraGroupConnection>;
|
|
47256
47857
|
id: Scalars['ID']['output'];
|
|
47257
47858
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -47301,6 +47902,7 @@ export declare type JiraMultipleSelectField = JiraHasMultipleSelectedValues & Ji
|
|
|
47301
47902
|
description?: Maybe<Scalars['String']['output']>;
|
|
47302
47903
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
47303
47904
|
fieldId: Scalars['String']['output'];
|
|
47905
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
47304
47906
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
47305
47907
|
id: Scalars['ID']['output'];
|
|
47306
47908
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -47363,6 +47965,7 @@ export declare type JiraMultipleSelectUserPickerField = JiraIssueField & JiraIss
|
|
|
47363
47965
|
description?: Maybe<Scalars['String']['output']>;
|
|
47364
47966
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
47365
47967
|
fieldId: Scalars['String']['output'];
|
|
47968
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
47366
47969
|
id: Scalars['ID']['output'];
|
|
47367
47970
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
47368
47971
|
issue?: Maybe<JiraIssue>;
|
|
@@ -47409,6 +48012,7 @@ export declare type JiraMultipleVersionPickerField = JiraHasMultipleSelectedValu
|
|
|
47409
48012
|
description?: Maybe<Scalars['String']['output']>;
|
|
47410
48013
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
47411
48014
|
fieldId: Scalars['String']['output'];
|
|
48015
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
47412
48016
|
id: Scalars['ID']['output'];
|
|
47413
48017
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
47414
48018
|
issue?: Maybe<JiraIssue>;
|
|
@@ -48392,6 +48996,7 @@ export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
48392
48996
|
description?: Maybe<Scalars['String']['output']>;
|
|
48393
48997
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
48394
48998
|
fieldId: Scalars['String']['output'];
|
|
48999
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
48395
49000
|
id: Scalars['ID']['output'];
|
|
48396
49001
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
48397
49002
|
isStoryPointField?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -48673,6 +49278,7 @@ export declare type JiraOriginalTimeEstimateField = JiraIssueField & JiraIssueFi
|
|
|
48673
49278
|
description?: Maybe<Scalars['String']['output']>;
|
|
48674
49279
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
48675
49280
|
fieldId: Scalars['String']['output'];
|
|
49281
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
48676
49282
|
id: Scalars['ID']['output'];
|
|
48677
49283
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
48678
49284
|
issue?: Maybe<JiraIssue>;
|
|
@@ -48739,6 +49345,7 @@ export declare type JiraParentIssueField = JiraIssueField & JiraIssueFieldConfig
|
|
|
48739
49345
|
description?: Maybe<Scalars['String']['output']>;
|
|
48740
49346
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
48741
49347
|
fieldId: Scalars['String']['output'];
|
|
49348
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
48742
49349
|
id: Scalars['ID']['output'];
|
|
48743
49350
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
48744
49351
|
issue?: Maybe<JiraIssue>;
|
|
@@ -48811,6 +49418,7 @@ export declare type JiraPeopleField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
48811
49418
|
description?: Maybe<Scalars['String']['output']>;
|
|
48812
49419
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
48813
49420
|
fieldId: Scalars['String']['output'];
|
|
49421
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
48814
49422
|
id: Scalars['ID']['output'];
|
|
48815
49423
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
48816
49424
|
isMulti?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -49074,6 +49682,7 @@ export declare type JiraPriorityField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
49074
49682
|
description?: Maybe<Scalars['String']['output']>;
|
|
49075
49683
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
49076
49684
|
fieldId: Scalars['String']['output'];
|
|
49685
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
49077
49686
|
id: Scalars['ID']['output'];
|
|
49078
49687
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49079
49688
|
issue?: Maybe<JiraIssue>;
|
|
@@ -49123,6 +49732,7 @@ export declare type JiraProformaFormsField = JiraIssueField & JiraIssueFieldConf
|
|
|
49123
49732
|
description?: Maybe<Scalars['String']['output']>;
|
|
49124
49733
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
49125
49734
|
fieldId: Scalars['String']['output'];
|
|
49735
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
49126
49736
|
id: Scalars['ID']['output'];
|
|
49127
49737
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49128
49738
|
issue?: Maybe<JiraIssue>;
|
|
@@ -49141,6 +49751,7 @@ export declare type JiraProject = Node & {
|
|
|
49141
49751
|
associatedJsmProjectsByComponent?: Maybe<GraphJiraProjectConnection>;
|
|
49142
49752
|
associatedServices?: Maybe<GraphProjectServiceConnection>;
|
|
49143
49753
|
avatar?: Maybe<JiraAvatar>;
|
|
49754
|
+
background?: Maybe<JiraActiveBackgroundDetailsResult>;
|
|
49144
49755
|
boards?: Maybe<JiraBoardConnection>;
|
|
49145
49756
|
canSetIssueRestriction?: Maybe<Scalars['Boolean']['output']>;
|
|
49146
49757
|
category?: Maybe<JiraProjectCategory>;
|
|
@@ -49198,6 +49809,7 @@ export declare type JiraProject = Node & {
|
|
|
49198
49809
|
status?: Maybe<JiraProjectStatus>;
|
|
49199
49810
|
suggestedApproversForJiraVersion?: Maybe<JiraVersionSuggestedApproverConnection>;
|
|
49200
49811
|
suggestedDriversForJiraVersion?: Maybe<JiraVersionDriverConnection>;
|
|
49812
|
+
tmpBoardId?: Maybe<Scalars['Long']['output']>;
|
|
49201
49813
|
totalLinkedSecurityContainerCount?: Maybe<Scalars['Int']['output']>;
|
|
49202
49814
|
totalLinkedSecurityVulnerabilityCount?: Maybe<Scalars['Int']['output']>;
|
|
49203
49815
|
uuid?: Maybe<Scalars['ID']['output']>;
|
|
@@ -49477,6 +50089,7 @@ export declare type JiraProjectField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
49477
50089
|
description?: Maybe<Scalars['String']['output']>;
|
|
49478
50090
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
49479
50091
|
fieldId: Scalars['String']['output'];
|
|
50092
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
49480
50093
|
id: Scalars['ID']['output'];
|
|
49481
50094
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49482
50095
|
issue?: Maybe<JiraIssue>;
|
|
@@ -50862,6 +51475,7 @@ export declare type JiraRadioSelectField = JiraIssueField & JiraIssueFieldConfig
|
|
|
50862
51475
|
description?: Maybe<Scalars['String']['output']>;
|
|
50863
51476
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
50864
51477
|
fieldId: Scalars['String']['output'];
|
|
51478
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
50865
51479
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
50866
51480
|
id: Scalars['ID']['output'];
|
|
50867
51481
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -51079,6 +51693,7 @@ export declare type JiraRemainingTimeEstimateField = JiraIssueField & JiraIssueF
|
|
|
51079
51693
|
description?: Maybe<Scalars['String']['output']>;
|
|
51080
51694
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
51081
51695
|
fieldId: Scalars['String']['output'];
|
|
51696
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
51082
51697
|
id: Scalars['ID']['output'];
|
|
51083
51698
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
51084
51699
|
issue?: Maybe<JiraIssue>;
|
|
@@ -51197,6 +51812,7 @@ export declare type JiraResolutionField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
51197
51812
|
description?: Maybe<Scalars['String']['output']>;
|
|
51198
51813
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
51199
51814
|
fieldId: Scalars['String']['output'];
|
|
51815
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
51200
51816
|
id: Scalars['ID']['output'];
|
|
51201
51817
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
51202
51818
|
issue?: Maybe<JiraIssue>;
|
|
@@ -51352,6 +51968,7 @@ export declare type JiraRichTextField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
51352
51968
|
description?: Maybe<Scalars['String']['output']>;
|
|
51353
51969
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
51354
51970
|
fieldId: Scalars['String']['output'];
|
|
51971
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
51355
51972
|
id: Scalars['ID']['output'];
|
|
51356
51973
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
51357
51974
|
issue?: Maybe<JiraIssue>;
|
|
@@ -51634,6 +52251,7 @@ export declare type JiraSecurityLevelField = JiraIssueField & JiraIssueFieldConf
|
|
|
51634
52251
|
description?: Maybe<Scalars['String']['output']>;
|
|
51635
52252
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
51636
52253
|
fieldId: Scalars['String']['output'];
|
|
52254
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
51637
52255
|
id: Scalars['ID']['output'];
|
|
51638
52256
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
51639
52257
|
issue?: Maybe<JiraIssue>;
|
|
@@ -51755,6 +52373,7 @@ export declare type JiraServiceManagementApprovalField = JiraIssueField & JiraIs
|
|
|
51755
52373
|
description?: Maybe<Scalars['String']['output']>;
|
|
51756
52374
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
51757
52375
|
fieldId: Scalars['String']['output'];
|
|
52376
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
51758
52377
|
id: Scalars['ID']['output'];
|
|
51759
52378
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
51760
52379
|
issue?: Maybe<JiraIssue>;
|
|
@@ -51984,6 +52603,7 @@ export declare type JiraServiceManagementDateTimeField = JiraIssueField & JiraIs
|
|
|
51984
52603
|
description?: Maybe<Scalars['String']['output']>;
|
|
51985
52604
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
51986
52605
|
fieldId: Scalars['String']['output'];
|
|
52606
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
51987
52607
|
id: Scalars['ID']['output'];
|
|
51988
52608
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
51989
52609
|
issue?: Maybe<JiraIssue>;
|
|
@@ -52040,6 +52660,7 @@ export declare type JiraServiceManagementEntitlementField = JiraIssueField & Jir
|
|
|
52040
52660
|
description?: Maybe<Scalars['String']['output']>;
|
|
52041
52661
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52042
52662
|
fieldId: Scalars['String']['output'];
|
|
52663
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52043
52664
|
id: Scalars['ID']['output'];
|
|
52044
52665
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52045
52666
|
issue?: Maybe<JiraIssue>;
|
|
@@ -52079,6 +52700,7 @@ export declare type JiraServiceManagementIncidentLinkingField = JiraIssueField &
|
|
|
52079
52700
|
description?: Maybe<Scalars['String']['output']>;
|
|
52080
52701
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52081
52702
|
fieldId: Scalars['String']['output'];
|
|
52703
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52082
52704
|
id: Scalars['ID']['output'];
|
|
52083
52705
|
incident?: Maybe<JiraServiceManagementIncident>;
|
|
52084
52706
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -52100,6 +52722,7 @@ export declare type JiraServiceManagementMajorIncidentField = JiraIssueField & J
|
|
|
52100
52722
|
description?: Maybe<Scalars['String']['output']>;
|
|
52101
52723
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52102
52724
|
fieldId: Scalars['String']['output'];
|
|
52725
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52103
52726
|
id: Scalars['ID']['output'];
|
|
52104
52727
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52105
52728
|
issue?: Maybe<JiraIssue>;
|
|
@@ -52148,6 +52771,7 @@ export declare type JiraServiceManagementMultipleSelectUserPickerField = JiraIss
|
|
|
52148
52771
|
description?: Maybe<Scalars['String']['output']>;
|
|
52149
52772
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52150
52773
|
fieldId: Scalars['String']['output'];
|
|
52774
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52151
52775
|
id: Scalars['ID']['output'];
|
|
52152
52776
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52153
52777
|
issue?: Maybe<JiraIssue>;
|
|
@@ -52202,6 +52826,7 @@ export declare type JiraServiceManagementOrganizationField = JiraHasMultipleSele
|
|
|
52202
52826
|
description?: Maybe<Scalars['String']['output']>;
|
|
52203
52827
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52204
52828
|
fieldId: Scalars['String']['output'];
|
|
52829
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52205
52830
|
id: Scalars['ID']['output'];
|
|
52206
52831
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52207
52832
|
issue?: Maybe<JiraIssue>;
|
|
@@ -52260,6 +52885,7 @@ export declare type JiraServiceManagementPeopleField = JiraIssueField & JiraIssu
|
|
|
52260
52885
|
description?: Maybe<Scalars['String']['output']>;
|
|
52261
52886
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52262
52887
|
fieldId: Scalars['String']['output'];
|
|
52888
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52263
52889
|
id: Scalars['ID']['output'];
|
|
52264
52890
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52265
52891
|
isMulti?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -52340,6 +52966,7 @@ export declare type JiraServiceManagementRequestFeedbackField = JiraIssueField &
|
|
|
52340
52966
|
feedback?: Maybe<JiraServiceManagementFeedback>;
|
|
52341
52967
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52342
52968
|
fieldId: Scalars['String']['output'];
|
|
52969
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52343
52970
|
id: Scalars['ID']['output'];
|
|
52344
52971
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52345
52972
|
issue?: Maybe<JiraIssue>;
|
|
@@ -52353,6 +52980,7 @@ export declare type JiraServiceManagementRequestLanguageField = JiraIssueField &
|
|
|
52353
52980
|
description?: Maybe<Scalars['String']['output']>;
|
|
52354
52981
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52355
52982
|
fieldId: Scalars['String']['output'];
|
|
52983
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52356
52984
|
id: Scalars['ID']['output'];
|
|
52357
52985
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52358
52986
|
issue?: Maybe<JiraIssue>;
|
|
@@ -52441,6 +53069,7 @@ export declare type JiraServiceManagementRequestTypeField = JiraIssueField & Jir
|
|
|
52441
53069
|
description?: Maybe<Scalars['String']['output']>;
|
|
52442
53070
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52443
53071
|
fieldId: Scalars['String']['output'];
|
|
53072
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52444
53073
|
id: Scalars['ID']['output'];
|
|
52445
53074
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52446
53075
|
issue?: Maybe<JiraIssue>;
|
|
@@ -52540,6 +53169,7 @@ export declare type JiraServiceManagementRespondersField = JiraIssueField & Jira
|
|
|
52540
53169
|
description?: Maybe<Scalars['String']['output']>;
|
|
52541
53170
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52542
53171
|
fieldId: Scalars['String']['output'];
|
|
53172
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52543
53173
|
id: Scalars['ID']['output'];
|
|
52544
53174
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52545
53175
|
issue?: Maybe<JiraIssue>;
|
|
@@ -52575,6 +53205,7 @@ export declare type JiraServiceManagementSentimentField = JiraIssueField & JiraI
|
|
|
52575
53205
|
description?: Maybe<Scalars['String']['output']>;
|
|
52576
53206
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52577
53207
|
fieldId: Scalars['String']['output'];
|
|
53208
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52578
53209
|
id: Scalars['ID']['output'];
|
|
52579
53210
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52580
53211
|
issue?: Maybe<JiraIssue>;
|
|
@@ -52881,6 +53512,7 @@ export declare type JiraSingleGroupPickerField = JiraIssueField & JiraIssueField
|
|
|
52881
53512
|
description?: Maybe<Scalars['String']['output']>;
|
|
52882
53513
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52883
53514
|
fieldId: Scalars['String']['output'];
|
|
53515
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52884
53516
|
groups?: Maybe<JiraGroupConnection>;
|
|
52885
53517
|
id: Scalars['ID']['output'];
|
|
52886
53518
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -52919,6 +53551,7 @@ export declare type JiraSingleLineTextField = JiraIssueField & JiraIssueFieldCon
|
|
|
52919
53551
|
description?: Maybe<Scalars['String']['output']>;
|
|
52920
53552
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52921
53553
|
fieldId: Scalars['String']['output'];
|
|
53554
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52922
53555
|
id: Scalars['ID']['output'];
|
|
52923
53556
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52924
53557
|
issue?: Maybe<JiraIssue>;
|
|
@@ -52951,6 +53584,7 @@ export declare type JiraSingleSelectField = JiraHasSelectableValueOptions & Jira
|
|
|
52951
53584
|
description?: Maybe<Scalars['String']['output']>;
|
|
52952
53585
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
52953
53586
|
fieldId: Scalars['String']['output'];
|
|
53587
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
52954
53588
|
fieldOption?: Maybe<JiraOption>;
|
|
52955
53589
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
52956
53590
|
id: Scalars['ID']['output'];
|
|
@@ -52999,6 +53633,7 @@ export declare type JiraSingleSelectUserPickerField = JiraIssueField & JiraIssue
|
|
|
52999
53633
|
description?: Maybe<Scalars['String']['output']>;
|
|
53000
53634
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
53001
53635
|
fieldId: Scalars['String']['output'];
|
|
53636
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
53002
53637
|
id: Scalars['ID']['output'];
|
|
53003
53638
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
53004
53639
|
issue?: Maybe<JiraIssue>;
|
|
@@ -53042,6 +53677,7 @@ export declare type JiraSingleVersionPickerField = JiraHasSelectableValueOptions
|
|
|
53042
53677
|
description?: Maybe<Scalars['String']['output']>;
|
|
53043
53678
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
53044
53679
|
fieldId: Scalars['String']['output'];
|
|
53680
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
53045
53681
|
id: Scalars['ID']['output'];
|
|
53046
53682
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
53047
53683
|
issue?: Maybe<JiraIssue>;
|
|
@@ -53112,6 +53748,8 @@ export declare type JiraSoftwareProjectNavigationMetadata = {
|
|
|
53112
53748
|
};
|
|
53113
53749
|
export declare type JiraSpreadsheetGroup = {
|
|
53114
53750
|
__typename?: 'JiraSpreadsheetGroup';
|
|
53751
|
+
afterGroupId?: Maybe<Scalars['String']['output']>;
|
|
53752
|
+
beforeGroupId?: Maybe<Scalars['String']['output']>;
|
|
53115
53753
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
53116
53754
|
fieldType?: Maybe<Scalars['String']['output']>;
|
|
53117
53755
|
fieldValue?: Maybe<JiraJqlFieldValue>;
|
|
@@ -53153,6 +53791,7 @@ export declare type JiraSpreadsheetGroupConnection = {
|
|
|
53153
53791
|
edges?: Maybe<Array<Maybe<JiraSpreadsheetGroupEdge>>>;
|
|
53154
53792
|
errors?: Maybe<Array<QueryError>>;
|
|
53155
53793
|
firstGroup?: Maybe<JiraSpreadsheetGroup>;
|
|
53794
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
53156
53795
|
pageInfo: PageInfo;
|
|
53157
53796
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
53158
53797
|
};
|
|
@@ -53227,6 +53866,7 @@ export declare type JiraSprintField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
53227
53866
|
description?: Maybe<Scalars['String']['output']>;
|
|
53228
53867
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
53229
53868
|
fieldId: Scalars['String']['output'];
|
|
53869
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
53230
53870
|
id: Scalars['ID']['output'];
|
|
53231
53871
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
53232
53872
|
issue?: Maybe<JiraIssue>;
|
|
@@ -53338,6 +53978,7 @@ export declare type JiraStatusCategoryField = JiraIssueField & JiraIssueFieldCon
|
|
|
53338
53978
|
description?: Maybe<Scalars['String']['output']>;
|
|
53339
53979
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
53340
53980
|
fieldId: Scalars['String']['output'];
|
|
53981
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
53341
53982
|
id: Scalars['ID']['output'];
|
|
53342
53983
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
53343
53984
|
issue?: Maybe<JiraIssue>;
|
|
@@ -53369,6 +54010,7 @@ export declare type JiraStatusField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
53369
54010
|
description?: Maybe<Scalars['String']['output']>;
|
|
53370
54011
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
53371
54012
|
fieldId: Scalars['String']['output'];
|
|
54013
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
53372
54014
|
id: Scalars['ID']['output'];
|
|
53373
54015
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
53374
54016
|
issue?: Maybe<JiraIssue>;
|
|
@@ -53535,6 +54177,7 @@ export declare type JiraSubtasksField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
53535
54177
|
description?: Maybe<Scalars['String']['output']>;
|
|
53536
54178
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
53537
54179
|
fieldId: Scalars['String']['output'];
|
|
54180
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
53538
54181
|
id: Scalars['ID']['output'];
|
|
53539
54182
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
53540
54183
|
issue?: Maybe<JiraIssue>;
|
|
@@ -53654,6 +54297,7 @@ export declare type JiraTeamField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
53654
54297
|
description?: Maybe<Scalars['String']['output']>;
|
|
53655
54298
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
53656
54299
|
fieldId: Scalars['String']['output'];
|
|
54300
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
53657
54301
|
id: Scalars['ID']['output'];
|
|
53658
54302
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
53659
54303
|
issue?: Maybe<JiraIssue>;
|
|
@@ -53721,6 +54365,7 @@ export declare type JiraTeamViewField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
53721
54365
|
description?: Maybe<Scalars['String']['output']>;
|
|
53722
54366
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
53723
54367
|
fieldId: Scalars['String']['output'];
|
|
54368
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
53724
54369
|
id: Scalars['ID']['output'];
|
|
53725
54370
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
53726
54371
|
issue?: Maybe<JiraIssue>;
|
|
@@ -53768,6 +54413,7 @@ export declare type JiraTimeTrackingField = JiraIssueField & JiraIssueFieldConfi
|
|
|
53768
54413
|
description?: Maybe<Scalars['String']['output']>;
|
|
53769
54414
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
53770
54415
|
fieldId: Scalars['String']['output'];
|
|
54416
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
53771
54417
|
id: Scalars['ID']['output'];
|
|
53772
54418
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
53773
54419
|
issue?: Maybe<JiraIssue>;
|
|
@@ -54329,6 +54975,7 @@ export declare type JiraUrlField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
54329
54975
|
description?: Maybe<Scalars['String']['output']>;
|
|
54330
54976
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
54331
54977
|
fieldId: Scalars['String']['output'];
|
|
54978
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
54332
54979
|
id: Scalars['ID']['output'];
|
|
54333
54980
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
54334
54981
|
issue?: Maybe<JiraIssue>;
|
|
@@ -54467,6 +55114,7 @@ export declare type JiraUserPreferences = {
|
|
|
54467
55114
|
issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
54468
55115
|
jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
54469
55116
|
projectListRightPanelState?: Maybe<JiraProjectListRightPanelState>;
|
|
55117
|
+
showDateFieldAssociationMessageByIssueKey?: Maybe<Scalars['Boolean']['output']>;
|
|
54470
55118
|
};
|
|
54471
55119
|
export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProjectArgs = {
|
|
54472
55120
|
projectKey: Scalars['String']['input'];
|
|
@@ -54474,13 +55122,20 @@ export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProject
|
|
|
54474
55122
|
export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
|
|
54475
55123
|
projectKey: Scalars['String']['input'];
|
|
54476
55124
|
};
|
|
55125
|
+
export declare type JiraUserPreferencesShowDateFieldAssociationMessageByIssueKeyArgs = {
|
|
55126
|
+
issueKey: Scalars['String']['input'];
|
|
55127
|
+
};
|
|
54477
55128
|
export declare type JiraUserPreferencesMutation = {
|
|
54478
55129
|
__typename?: 'JiraUserPreferencesMutation';
|
|
55130
|
+
dismissDateFieldAssociationMessageByIssueKey?: Maybe<JiraDateFieldAssociationMessageMutationPayload>;
|
|
54479
55131
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
54480
55132
|
setJQLBuilderSearchMode?: Maybe<JiraJqlBuilderSearchModeMutationPayload>;
|
|
54481
55133
|
setNaturalLanguageSpotlightTourEnabled?: Maybe<JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload>;
|
|
54482
55134
|
setProjectListRightPanelState?: Maybe<JiraProjectListRightPanelStateMutationPayload>;
|
|
54483
55135
|
};
|
|
55136
|
+
export declare type JiraUserPreferencesMutationDismissDateFieldAssociationMessageByIssueKeyArgs = {
|
|
55137
|
+
issueKey: Scalars['String']['input'];
|
|
55138
|
+
};
|
|
54484
55139
|
export declare type JiraUserPreferencesMutationSetIssueNavigatorSearchLayoutArgs = {
|
|
54485
55140
|
searchLayout?: InputMaybe<JiraIssueNavigatorSearchLayout>;
|
|
54486
55141
|
};
|
|
@@ -55060,6 +55715,7 @@ export declare type JiraVotesField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
55060
55715
|
description?: Maybe<Scalars['String']['output']>;
|
|
55061
55716
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
55062
55717
|
fieldId: Scalars['String']['output'];
|
|
55718
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
55063
55719
|
id: Scalars['ID']['output'];
|
|
55064
55720
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
55065
55721
|
issue?: Maybe<JiraIssue>;
|
|
@@ -55099,6 +55755,7 @@ export declare type JiraWatchesField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
55099
55755
|
description?: Maybe<Scalars['String']['output']>;
|
|
55100
55756
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
55101
55757
|
fieldId: Scalars['String']['output'];
|
|
55758
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
55102
55759
|
id: Scalars['ID']['output'];
|
|
55103
55760
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
55104
55761
|
issue?: Maybe<JiraIssue>;
|
|
@@ -55154,6 +55811,7 @@ export declare type JiraWorkCategoryField = JiraIssueField & JiraIssueFieldConfi
|
|
|
55154
55811
|
description?: Maybe<Scalars['String']['output']>;
|
|
55155
55812
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
55156
55813
|
fieldId: Scalars['String']['output'];
|
|
55814
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
55157
55815
|
id: Scalars['ID']['output'];
|
|
55158
55816
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
55159
55817
|
issue?: Maybe<JiraIssue>;
|
|
@@ -55179,6 +55837,7 @@ export declare type JiraWorkLogField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
55179
55837
|
description?: Maybe<Scalars['String']['output']>;
|
|
55180
55838
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
55181
55839
|
fieldId: Scalars['String']['output'];
|
|
55840
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
55182
55841
|
id: Scalars['ID']['output'];
|
|
55183
55842
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
55184
55843
|
issue?: Maybe<JiraIssue>;
|
|
@@ -57213,6 +57872,7 @@ export declare type MarketplaceApp = {
|
|
|
57213
57872
|
summary?: Maybe<Scalars['String']['output']>;
|
|
57214
57873
|
supportTicketSystemUrl?: Maybe<Scalars['URL']['output']>;
|
|
57215
57874
|
tagline?: Maybe<Scalars['String']['output']>;
|
|
57875
|
+
tags?: Maybe<MarketplaceAppTags>;
|
|
57216
57876
|
versions: MarketplaceAppVersionConnection;
|
|
57217
57877
|
watchersInfo?: Maybe<MarketplaceAppWatchersInfo>;
|
|
57218
57878
|
wikiUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -57271,6 +57931,17 @@ export declare type MarketplaceAppReviewSummary = {
|
|
|
57271
57931
|
rating?: Maybe<Scalars['Float']['output']>;
|
|
57272
57932
|
score?: Maybe<Scalars['Float']['output']>;
|
|
57273
57933
|
};
|
|
57934
|
+
export declare type MarketplaceAppTag = {
|
|
57935
|
+
__typename?: 'MarketplaceAppTag';
|
|
57936
|
+
id: Scalars['ID']['output'];
|
|
57937
|
+
name: Scalars['String']['output'];
|
|
57938
|
+
};
|
|
57939
|
+
export declare type MarketplaceAppTags = {
|
|
57940
|
+
__typename?: 'MarketplaceAppTags';
|
|
57941
|
+
categoryTags?: Maybe<Array<MarketplaceAppTag>>;
|
|
57942
|
+
keywordTags?: Maybe<Array<MarketplaceAppTag>>;
|
|
57943
|
+
marketingTags?: Maybe<Array<MarketplaceAppTag>>;
|
|
57944
|
+
};
|
|
57274
57945
|
export declare type MarketplaceAppTrustInformation = {
|
|
57275
57946
|
__typename?: 'MarketplaceAppTrustInformation';
|
|
57276
57947
|
dataAccessAndStorage?: Maybe<DataAccessAndStorage>;
|
|
@@ -57288,6 +57959,7 @@ export declare type MarketplaceAppVersion = {
|
|
|
57288
57959
|
buildNumber: Scalars['ID']['output'];
|
|
57289
57960
|
deployment: MarketplaceAppDeployment;
|
|
57290
57961
|
documentationUrl?: Maybe<Scalars['URL']['output']>;
|
|
57962
|
+
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
57291
57963
|
endUserLicenseAgreementUrl?: Maybe<Scalars['URL']['output']>;
|
|
57292
57964
|
heroImage?: Maybe<MarketplaceListingImage>;
|
|
57293
57965
|
highlights?: Maybe<Array<MarketplaceListingHighlight>>;
|
|
@@ -58967,7 +59639,7 @@ export declare enum MembershipState {
|
|
|
58967
59639
|
Invited = "INVITED",
|
|
58968
59640
|
RequestingToJoin = "REQUESTING_TO_JOIN"
|
|
58969
59641
|
}
|
|
58970
|
-
export declare type MercuryActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | TownsquareGoal;
|
|
59642
|
+
export declare type MercuryActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraIssue | TownsquareGoal | TownsquareProject;
|
|
58971
59643
|
export declare type MercuryAddWatcherToFocusAreaInput = {
|
|
58972
59644
|
cloudId: Scalars['ID']['input'];
|
|
58973
59645
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -59223,6 +59895,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
59223
59895
|
headcountAggregation?: Maybe<MercuryHeadcountAggregation>;
|
|
59224
59896
|
health?: Maybe<MercuryFocusAreaHealth>;
|
|
59225
59897
|
id: Scalars['ID']['output'];
|
|
59898
|
+
linkedGoalSummary?: Maybe<MercuryFocusAreaLinkedGoalSummary>;
|
|
59226
59899
|
linkedWorkSummary?: Maybe<MercuryFocusAreaLinkedWorkSummary>;
|
|
59227
59900
|
name: Scalars['String']['output'];
|
|
59228
59901
|
owner?: Maybe<User>;
|
|
@@ -59345,9 +60018,15 @@ export declare type MercuryFocusAreaLink = Node & {
|
|
|
59345
60018
|
id: Scalars['ID']['output'];
|
|
59346
60019
|
parentFocusAreaId: Scalars['String']['output'];
|
|
59347
60020
|
};
|
|
60021
|
+
export declare type MercuryFocusAreaLinkedGoalSummary = {
|
|
60022
|
+
__typename?: 'MercuryFocusAreaLinkedGoalSummary';
|
|
60023
|
+
count: Scalars['Int']['output'];
|
|
60024
|
+
countIncludingSubFocusAreas?: Maybe<Scalars['Int']['output']>;
|
|
60025
|
+
};
|
|
59348
60026
|
export declare type MercuryFocusAreaLinkedWorkSummary = {
|
|
59349
60027
|
__typename?: 'MercuryFocusAreaLinkedWorkSummary';
|
|
59350
60028
|
count: Scalars['Int']['output'];
|
|
60029
|
+
countIncludingSubFocusAreas?: Maybe<Scalars['Int']['output']>;
|
|
59351
60030
|
};
|
|
59352
60031
|
export declare type MercuryFocusAreaLinks = {
|
|
59353
60032
|
__typename?: 'MercuryFocusAreaLinks';
|
|
@@ -59729,6 +60408,7 @@ export declare type MercuryPortfolio = Node & {
|
|
|
59729
60408
|
ari: Scalars['String']['output'];
|
|
59730
60409
|
funding?: Maybe<MercuryPortfolioFunding>;
|
|
59731
60410
|
id: Scalars['ID']['output'];
|
|
60411
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
59732
60412
|
linkedFocusAreaGoalCount: Scalars['Int']['output'];
|
|
59733
60413
|
linkedFocusAreaSummary?: Maybe<MercuryPortfolioFocusAreaSummary>;
|
|
59734
60414
|
name: Scalars['String']['output'];
|
|
@@ -62115,6 +62795,7 @@ export declare type PeapProgram = {
|
|
|
62115
62795
|
__typename?: 'PEAPProgram';
|
|
62116
62796
|
activatedAt?: Maybe<Scalars['Date']['output']>;
|
|
62117
62797
|
cdacCategory?: Maybe<Scalars['Int']['output']>;
|
|
62798
|
+
cdacCategoryURL?: Maybe<Scalars['String']['output']>;
|
|
62118
62799
|
changeTicket?: Maybe<Scalars['String']['output']>;
|
|
62119
62800
|
completedAt?: Maybe<Scalars['Date']['output']>;
|
|
62120
62801
|
createdAt: Scalars['Date']['output'];
|
|
@@ -62159,6 +62840,8 @@ export declare type PeapProgramEnrollmentQueryJiraArgs = {
|
|
|
62159
62840
|
export declare type PeapProgramInternalData = {
|
|
62160
62841
|
__typename?: 'PEAPProgramInternalData';
|
|
62161
62842
|
cdacGroup?: Maybe<Scalars['String']['output']>;
|
|
62843
|
+
cdacGroupURL?: Maybe<Scalars['String']['output']>;
|
|
62844
|
+
changeTicketURL?: Maybe<Scalars['String']['output']>;
|
|
62162
62845
|
owner?: Maybe<User>;
|
|
62163
62846
|
};
|
|
62164
62847
|
export declare type PeapProgramMutationResponse = Payload & {
|
|
@@ -63292,6 +63975,7 @@ export declare type Query = {
|
|
|
63292
63975
|
appLogs?: Maybe<AppLogConnection>;
|
|
63293
63976
|
appLogsWithMetaData?: Maybe<AppLogsWithMetaDataResponse>;
|
|
63294
63977
|
appRecommendations?: Maybe<AppRecQuery>;
|
|
63978
|
+
appStorage_sqlDatabase?: Maybe<AppStorageSqlDatabasePayload>;
|
|
63295
63979
|
appStoredCustomEntities?: Maybe<AppStoredCustomEntityConnection>;
|
|
63296
63980
|
appStoredCustomEntity?: Maybe<AppStoredCustomEntity>;
|
|
63297
63981
|
appStoredEntities?: Maybe<AppStoredEntityConnection>;
|
|
@@ -63645,6 +64329,7 @@ export declare type Query = {
|
|
|
63645
64329
|
productListing?: Maybe<ProductListingResult>;
|
|
63646
64330
|
productListings: Array<ProductListingResult>;
|
|
63647
64331
|
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
64332
|
+
radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
|
|
63648
64333
|
radar_positions?: Maybe<RadarPositionConnection>;
|
|
63649
64334
|
radar_workspace: RadarWorkspace;
|
|
63650
64335
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
@@ -63740,6 +64425,9 @@ export declare type QueryAppLogsWithMetaDataArgs = {
|
|
|
63740
64425
|
query?: InputMaybe<LogQueryInput>;
|
|
63741
64426
|
queryStartTime: Scalars['String']['input'];
|
|
63742
64427
|
};
|
|
64428
|
+
export declare type QueryAppStorage_SqlDatabaseArgs = {
|
|
64429
|
+
input?: InputMaybe<AppStorageSqlDatabaseInput>;
|
|
64430
|
+
};
|
|
63743
64431
|
export declare type QueryAppStoredCustomEntitiesArgs = {
|
|
63744
64432
|
contextAri: Scalars['ID']['input'];
|
|
63745
64433
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -65059,6 +65747,15 @@ export declare type QueryRadar_FieldValuesArgs = {
|
|
|
65059
65747
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
65060
65748
|
uniqueFieldId: Scalars['ID']['input'];
|
|
65061
65749
|
};
|
|
65750
|
+
export declare type QueryRadar_GroupMetricsArgs = {
|
|
65751
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
65752
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
65753
|
+
cloudId: Scalars['ID']['input'];
|
|
65754
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65755
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
65756
|
+
rql?: InputMaybe<Scalars['String']['input']>;
|
|
65757
|
+
uniqueFieldIdIsIn: Array<Scalars['ID']['input']>;
|
|
65758
|
+
};
|
|
65062
65759
|
export declare type QueryRadar_PositionsArgs = {
|
|
65063
65760
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
65064
65761
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -65293,7 +65990,26 @@ export declare enum RadarFilterPlurality {
|
|
|
65293
65990
|
}
|
|
65294
65991
|
export declare type RadarFocusAreaMappingsInput = {
|
|
65295
65992
|
focusAreaAri: Scalars['ID']['input'];
|
|
65296
|
-
|
|
65993
|
+
positionAri: Scalars['ID']['input'];
|
|
65994
|
+
};
|
|
65995
|
+
export declare type RadarGroupMetrics = {
|
|
65996
|
+
__typename?: 'RadarGroupMetrics';
|
|
65997
|
+
count: Scalars['Int']['output'];
|
|
65998
|
+
field: RadarFieldValueIdPair;
|
|
65999
|
+
subGroups: Array<RadarGroupMetrics>;
|
|
66000
|
+
};
|
|
66001
|
+
export declare type RadarGroupMetricsConnection = RadarConnection & {
|
|
66002
|
+
__typename?: 'RadarGroupMetricsConnection';
|
|
66003
|
+
edges?: Maybe<Array<RadarGroupMetricsEdge>>;
|
|
66004
|
+
nodes?: Maybe<Array<RadarGroupMetrics>>;
|
|
66005
|
+
pageInfo: PageInfo;
|
|
66006
|
+
rowCount: Scalars['Int']['output'];
|
|
66007
|
+
totalCount: Scalars['Int']['output'];
|
|
66008
|
+
};
|
|
66009
|
+
export declare type RadarGroupMetricsEdge = RadarEdge & {
|
|
66010
|
+
__typename?: 'RadarGroupMetricsEdge';
|
|
66011
|
+
cursor: Scalars['String']['output'];
|
|
66012
|
+
node: RadarGroupMetrics;
|
|
65297
66013
|
};
|
|
65298
66014
|
export declare type RadarMutationResponse = {
|
|
65299
66015
|
__typename?: 'RadarMutationResponse';
|
|
@@ -66853,6 +67569,7 @@ export declare type SearchJiraFilter = {
|
|
|
66853
67569
|
};
|
|
66854
67570
|
export declare type SearchJiraIssueFilter = {
|
|
66855
67571
|
assigneeARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
67572
|
+
issueTypeIDs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
66856
67573
|
projectARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
66857
67574
|
reporterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
66858
67575
|
statusCategories?: InputMaybe<Array<SearchIssueStatusCategory>>;
|
|
@@ -66979,7 +67696,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
66979
67696
|
type: SearchResultType;
|
|
66980
67697
|
url: Scalars['URL']['output'];
|
|
66981
67698
|
};
|
|
66982
|
-
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;
|
|
67699
|
+
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;
|
|
66983
67700
|
export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & SearchResult & {
|
|
66984
67701
|
__typename?: 'SearchResultGoogleDocument';
|
|
66985
67702
|
bodyText: Scalars['String']['output'];
|
|
@@ -67122,6 +67839,7 @@ export declare type SearchResultJiraIssue = SearchResult & {
|
|
|
67122
67839
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
67123
67840
|
id: Scalars['ID']['output'];
|
|
67124
67841
|
issue?: Maybe<JiraIssue>;
|
|
67842
|
+
issueTypeId: Scalars['String']['output'];
|
|
67125
67843
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
67126
67844
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
67127
67845
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
@@ -67170,6 +67888,28 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
67170
67888
|
export declare type SearchResultJiraProjectSocialSignalArgs = {
|
|
67171
67889
|
tenantId: Scalars['ID']['input'];
|
|
67172
67890
|
};
|
|
67891
|
+
export declare type SearchResultMercuryFocusArea = SearchResult & {
|
|
67892
|
+
__typename?: 'SearchResultMercuryFocusArea';
|
|
67893
|
+
description: Scalars['String']['output'];
|
|
67894
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
67895
|
+
id: Scalars['ID']['output'];
|
|
67896
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
67897
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
67898
|
+
title: Scalars['String']['output'];
|
|
67899
|
+
type: SearchResultType;
|
|
67900
|
+
url: Scalars['URL']['output'];
|
|
67901
|
+
};
|
|
67902
|
+
export declare type SearchResultMercuryFocusAreaStatusUpdate = SearchResult & {
|
|
67903
|
+
__typename?: 'SearchResultMercuryFocusAreaStatusUpdate';
|
|
67904
|
+
description: Scalars['String']['output'];
|
|
67905
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
67906
|
+
id: Scalars['ID']['output'];
|
|
67907
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
67908
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
67909
|
+
title: Scalars['String']['output'];
|
|
67910
|
+
type: SearchResultType;
|
|
67911
|
+
url: Scalars['URL']['output'];
|
|
67912
|
+
};
|
|
67173
67913
|
export declare type SearchResultMicrosoftDocument = SearchL2FeatureProvider & SearchResult & {
|
|
67174
67914
|
__typename?: 'SearchResultMicrosoftDocument';
|
|
67175
67915
|
bodyText: Scalars['String']['output'];
|
|
@@ -67237,6 +67977,8 @@ export declare enum SearchResultType {
|
|
|
67237
67977
|
Document = "document",
|
|
67238
67978
|
Embed = "embed",
|
|
67239
67979
|
Filter = "filter",
|
|
67980
|
+
FocusArea = "focus_area",
|
|
67981
|
+
FocusAreaStatusUpdate = "focus_area_status_update",
|
|
67240
67982
|
Folder = "folder",
|
|
67241
67983
|
Goal = "goal",
|
|
67242
67984
|
Issue = "issue",
|
|
@@ -68123,11 +68865,6 @@ export declare type ShepherdDetection = {
|
|
|
68123
68865
|
settings?: Maybe<Array<ShepherdDetectionSetting>>;
|
|
68124
68866
|
title: Scalars['String']['output'];
|
|
68125
68867
|
};
|
|
68126
|
-
export declare type ShepherdDetectionBooleanSetting = {
|
|
68127
|
-
__typename?: 'ShepherdDetectionBooleanSetting';
|
|
68128
|
-
booleanDefault: Scalars['Boolean']['output'];
|
|
68129
|
-
booleanValue?: Maybe<Scalars['Boolean']['output']>;
|
|
68130
|
-
};
|
|
68131
68868
|
export declare type ShepherdDetectionConfluenceEnabledSetting = {
|
|
68132
68869
|
__typename?: 'ShepherdDetectionConfluenceEnabledSetting';
|
|
68133
68870
|
booleanDefault: Scalars['Boolean']['output'];
|
|
@@ -68203,7 +68940,7 @@ export declare type ShepherdDetectionSettingSetValueInput = {
|
|
|
68203
68940
|
stringValues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
68204
68941
|
thresholdValue?: InputMaybe<ShepherdRateThresholdValue>;
|
|
68205
68942
|
};
|
|
68206
|
-
export declare type ShepherdDetectionSettingValueType =
|
|
68943
|
+
export declare type ShepherdDetectionSettingValueType = ShepherdDetectionConfluenceEnabledSetting | ShepherdDetectionExclusionsSetting | ShepherdDetectionJiraEnabledSetting | ShepherdRateThresholdSetting;
|
|
68207
68944
|
export declare type ShepherdDetectionUpdateSettingValuePayload = Payload & {
|
|
68208
68945
|
__typename?: 'ShepherdDetectionUpdateSettingValuePayload';
|
|
68209
68946
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -70070,14 +70807,29 @@ export declare type ThirdPartyUser = LocalizationContext & {
|
|
|
70070
70807
|
canonicalAccountId: Scalars['ID']['output'];
|
|
70071
70808
|
createdAt: Scalars['DateTime']['output'];
|
|
70072
70809
|
email?: Maybe<Scalars['String']['output']>;
|
|
70810
|
+
extendedProfile?: Maybe<ThirdPartyUserExtendedProfile>;
|
|
70073
70811
|
externalId: Scalars['String']['output'];
|
|
70074
70812
|
id: Scalars['ID']['output'];
|
|
70075
70813
|
locale?: Maybe<Scalars['String']['output']>;
|
|
70076
70814
|
name?: Maybe<Scalars['String']['output']>;
|
|
70815
|
+
nickname?: Maybe<Scalars['String']['output']>;
|
|
70077
70816
|
picture?: Maybe<Scalars['URL']['output']>;
|
|
70078
70817
|
updatedAt: Scalars['DateTime']['output'];
|
|
70079
70818
|
zoneinfo?: Maybe<Scalars['String']['output']>;
|
|
70080
70819
|
};
|
|
70820
|
+
export declare type ThirdPartyUserExtendedProfile = {
|
|
70821
|
+
__typename?: 'ThirdPartyUserExtendedProfile';
|
|
70822
|
+
department?: Maybe<Scalars['String']['output']>;
|
|
70823
|
+
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
70824
|
+
location?: Maybe<Scalars['String']['output']>;
|
|
70825
|
+
organization?: Maybe<Scalars['String']['output']>;
|
|
70826
|
+
phoneNumbers?: Maybe<Array<Maybe<ThirdPartyUserPhoneNumber>>>;
|
|
70827
|
+
};
|
|
70828
|
+
export declare type ThirdPartyUserPhoneNumber = {
|
|
70829
|
+
__typename?: 'ThirdPartyUserPhoneNumber';
|
|
70830
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
70831
|
+
value: Scalars['String']['output'];
|
|
70832
|
+
};
|
|
70081
70833
|
export declare type TimeSeriesPoint = {
|
|
70082
70834
|
__typename?: 'TimeSeriesPoint';
|
|
70083
70835
|
id: Scalars['ID']['output'];
|
|
@@ -70101,7 +70853,6 @@ export declare type Toolchain = {
|
|
|
70101
70853
|
checkAuth?: Maybe<ToolchainCheckAuth>;
|
|
70102
70854
|
checkAuthV2?: Maybe<ToolchainCheckAuthResult>;
|
|
70103
70855
|
containers?: Maybe<ToolchainContainerConnection>;
|
|
70104
|
-
syncStatus?: Maybe<ToolchainSyncStatus>;
|
|
70105
70856
|
workspaces?: Maybe<ToolchainWorkspaceConnection>;
|
|
70106
70857
|
};
|
|
70107
70858
|
export declare type ToolchainCheckAuthArgs = {
|
|
@@ -70123,13 +70874,6 @@ export declare type ToolchainContainersArgs = {
|
|
|
70123
70874
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
70124
70875
|
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
70125
70876
|
};
|
|
70126
|
-
export declare type ToolchainSyncStatusArgs = {
|
|
70127
|
-
cloudId: Scalars['ID']['input'];
|
|
70128
|
-
containerId: Scalars['ID']['input'];
|
|
70129
|
-
jiraProjectId: Scalars['ID']['input'];
|
|
70130
|
-
providerId: Scalars['String']['input'];
|
|
70131
|
-
providerType?: InputMaybe<ToolchainProviderType>;
|
|
70132
|
-
};
|
|
70133
70877
|
export declare type ToolchainWorkspacesArgs = {
|
|
70134
70878
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
70135
70879
|
cloudId: Scalars['ID']['input'];
|
|
@@ -70222,9 +70966,24 @@ export declare type ToolchainContainer = Node & {
|
|
|
70222
70966
|
export declare type ToolchainContainerConnection = {
|
|
70223
70967
|
__typename?: 'ToolchainContainerConnection';
|
|
70224
70968
|
edges?: Maybe<Array<Maybe<ToolchainContainerEdge>>>;
|
|
70969
|
+
error?: Maybe<ToolchainContainerConnectionError>;
|
|
70225
70970
|
nodes?: Maybe<Array<Maybe<ToolchainContainer>>>;
|
|
70226
70971
|
pageInfo: PageInfo;
|
|
70227
70972
|
};
|
|
70973
|
+
export declare type ToolchainContainerConnectionError = {
|
|
70974
|
+
__typename?: 'ToolchainContainerConnectionError';
|
|
70975
|
+
extensions?: Maybe<Array<ToolchainContainerConnectionErrorExtension>>;
|
|
70976
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
70977
|
+
};
|
|
70978
|
+
export declare enum ToolchainContainerConnectionErrorCode {
|
|
70979
|
+
ProviderActionForbidden = "PROVIDER_ACTION_FORBIDDEN"
|
|
70980
|
+
}
|
|
70981
|
+
export declare type ToolchainContainerConnectionErrorExtension = QueryErrorExtension & {
|
|
70982
|
+
__typename?: 'ToolchainContainerConnectionErrorExtension';
|
|
70983
|
+
errorCode?: Maybe<ToolchainContainerConnectionErrorCode>;
|
|
70984
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
70985
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
70986
|
+
};
|
|
70228
70987
|
export declare type ToolchainContainerEdge = {
|
|
70229
70988
|
__typename?: 'ToolchainContainerEdge';
|
|
70230
70989
|
cursor: Scalars['String']['output'];
|
|
@@ -70339,16 +71098,6 @@ export declare enum ToolchainProviderType {
|
|
|
70339
71098
|
RemoteLinks = "REMOTE_LINKS",
|
|
70340
71099
|
Security = "SECURITY"
|
|
70341
71100
|
}
|
|
70342
|
-
export declare enum ToolchainSyncState {
|
|
70343
|
-
Complete = "COMPLETE",
|
|
70344
|
-
Error = "ERROR",
|
|
70345
|
-
InProgress = "IN_PROGRESS"
|
|
70346
|
-
}
|
|
70347
|
-
export declare type ToolchainSyncStatus = {
|
|
70348
|
-
__typename?: 'ToolchainSyncStatus';
|
|
70349
|
-
errorKey?: Maybe<Scalars['String']['output']>;
|
|
70350
|
-
state: ToolchainSyncState;
|
|
70351
|
-
};
|
|
70352
71101
|
export declare type ToolchainWorkspace = Node & {
|
|
70353
71102
|
__typename?: 'ToolchainWorkspace';
|
|
70354
71103
|
canCreateContainer: Scalars['Boolean']['output'];
|
|
@@ -71011,7 +71760,6 @@ export declare type TrelloAssignCardToPlannerCalendarEventPayload = Payload & {
|
|
|
71011
71760
|
__typename?: 'TrelloAssignCardToPlannerCalendarEventPayload';
|
|
71012
71761
|
errors?: Maybe<Array<MutationError>>;
|
|
71013
71762
|
event?: Maybe<TrelloPlannerCalendarEvent>;
|
|
71014
|
-
eventCard?: Maybe<TrelloPlannerCalendarEventCardConnectionUpdated>;
|
|
71015
71763
|
success: Scalars['Boolean']['output'];
|
|
71016
71764
|
};
|
|
71017
71765
|
export declare type TrelloAtlassianIntelligence = {
|
|
@@ -71298,6 +72046,8 @@ export declare type TrelloBoardViewer = {
|
|
|
71298
72046
|
};
|
|
71299
72047
|
export declare type TrelloBoardViewerEmail = {
|
|
71300
72048
|
__typename?: 'TrelloBoardViewerEmail';
|
|
72049
|
+
address?: Maybe<Scalars['String']['output']>;
|
|
72050
|
+
aiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
71301
72051
|
key?: Maybe<Scalars['String']['output']>;
|
|
71302
72052
|
list?: Maybe<TrelloList>;
|
|
71303
72053
|
position?: Maybe<Scalars['String']['output']>;
|
|
@@ -71563,7 +72313,7 @@ export declare type TrelloCreateOrUpdatePlannerCalendarPayload = Payload & {
|
|
|
71563
72313
|
__typename?: 'TrelloCreateOrUpdatePlannerCalendarPayload';
|
|
71564
72314
|
errors?: Maybe<Array<MutationError>>;
|
|
71565
72315
|
plannerCalendar?: Maybe<TrelloPlannerCalendarConnection>;
|
|
71566
|
-
plannerCalendarUpdated?: Maybe<
|
|
72316
|
+
plannerCalendarUpdated?: Maybe<TrelloPlannerCalendarUpdated>;
|
|
71567
72317
|
success: Scalars['Boolean']['output'];
|
|
71568
72318
|
};
|
|
71569
72319
|
export declare type TrelloCreateOrUpdatePlannerCalendarPayloadPlannerCalendarArgs = {
|
|
@@ -72048,9 +72798,9 @@ export declare type TrelloPlannerCalendarConnection = {
|
|
|
72048
72798
|
pageInfo: PageInfo;
|
|
72049
72799
|
updateCursor?: Maybe<Scalars['String']['output']>;
|
|
72050
72800
|
};
|
|
72051
|
-
export declare type
|
|
72052
|
-
__typename?: '
|
|
72053
|
-
|
|
72801
|
+
export declare type TrelloPlannerCalendarDeleted = {
|
|
72802
|
+
__typename?: 'TrelloPlannerCalendarDeleted';
|
|
72803
|
+
id: Scalars['ID']['output'];
|
|
72054
72804
|
};
|
|
72055
72805
|
export declare type TrelloPlannerCalendarEdge = {
|
|
72056
72806
|
__typename?: 'TrelloPlannerCalendarEdge';
|
|
@@ -72091,11 +72841,6 @@ export declare type TrelloPlannerCalendarEventCardConnection = {
|
|
|
72091
72841
|
nodes?: Maybe<Array<TrelloPlannerCalendarEventCard>>;
|
|
72092
72842
|
pageInfo: PageInfo;
|
|
72093
72843
|
};
|
|
72094
|
-
export declare type TrelloPlannerCalendarEventCardConnectionUpdated = {
|
|
72095
|
-
__typename?: 'TrelloPlannerCalendarEventCardConnectionUpdated';
|
|
72096
|
-
edges?: Maybe<Array<TrelloPlannerCalendarEventCardEdge>>;
|
|
72097
|
-
nodes?: Maybe<Array<TrelloPlannerCalendarEventCard>>;
|
|
72098
|
-
};
|
|
72099
72844
|
export declare type TrelloPlannerCalendarEventCardEdge = {
|
|
72100
72845
|
__typename?: 'TrelloPlannerCalendarEventCardEdge';
|
|
72101
72846
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -72132,6 +72877,7 @@ export declare type TrelloPlannerCalendarEventsFilter = {
|
|
|
72132
72877
|
end?: InputMaybe<Scalars['DateTime']['input']>;
|
|
72133
72878
|
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
72134
72879
|
};
|
|
72880
|
+
export declare type TrelloPlannerCalendarUpdated = TrelloPlannerCalendarAccount | TrelloPlannerCalendarDeleted;
|
|
72135
72881
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
72136
72882
|
__typename?: 'TrelloPlannerProviderCalendar';
|
|
72137
72883
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
@@ -72357,9 +73103,13 @@ export declare type TrelloStickerEdge = {
|
|
|
72357
73103
|
};
|
|
72358
73104
|
export declare type TrelloSubscriptionApi = {
|
|
72359
73105
|
__typename?: 'TrelloSubscriptionApi';
|
|
73106
|
+
cardsById?: Maybe<TrelloBoardUpdated>;
|
|
72360
73107
|
onBoardUpdated?: Maybe<TrelloBoardUpdated>;
|
|
72361
73108
|
onMemberUpdated?: Maybe<TrelloMemberUpdated>;
|
|
72362
73109
|
};
|
|
73110
|
+
export declare type TrelloSubscriptionApiCardsByIdArgs = {
|
|
73111
|
+
ids: Array<Scalars['ID']['input']>;
|
|
73112
|
+
};
|
|
72363
73113
|
export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
|
|
72364
73114
|
id: Scalars['ID']['input'];
|
|
72365
73115
|
};
|
|
@@ -72632,12 +73382,13 @@ export declare type UnifiedAccount = UnifiedINode & {
|
|
|
72632
73382
|
};
|
|
72633
73383
|
export declare type UnifiedAccount2 = UnifiedINode & {
|
|
72634
73384
|
__typename?: 'UnifiedAccount2';
|
|
72635
|
-
aaid
|
|
73385
|
+
aaid: Scalars['String']['output'];
|
|
73386
|
+
emailId: Scalars['String']['output'];
|
|
72636
73387
|
id: Scalars['ID']['output'];
|
|
72637
|
-
internalId
|
|
72638
|
-
isLinked
|
|
72639
|
-
isManaged
|
|
72640
|
-
isPrimary
|
|
73388
|
+
internalId: Scalars['String']['output'];
|
|
73389
|
+
isLinked: Scalars['Boolean']['output'];
|
|
73390
|
+
isManaged: Scalars['Boolean']['output'];
|
|
73391
|
+
isPrimary: Scalars['Boolean']['output'];
|
|
72641
73392
|
linkedAccounts?: Maybe<UnifiedULinkedAccount2Result>;
|
|
72642
73393
|
};
|
|
72643
73394
|
export declare type UnifiedAccountDetails = UnifiedINode & {
|
|
@@ -72954,9 +73705,10 @@ export declare type UnifiedLinkedAccountPayload = UnifiedPayload & {
|
|
|
72954
73705
|
};
|
|
72955
73706
|
export declare type UnifiedLinkingMutation = {
|
|
72956
73707
|
__typename?: 'UnifiedLinkingMutation';
|
|
72957
|
-
authenticateTransaction?: Maybe<
|
|
73708
|
+
authenticateTransaction?: Maybe<UnifiedULinkTransactionPayload>;
|
|
72958
73709
|
completeTransaction?: Maybe<UnifiedLinkingPayload>;
|
|
72959
73710
|
initializeTransaction?: Maybe<UnifiedULinkTransactionPayload>;
|
|
73711
|
+
unlinkAccount?: Maybe<UnifiedLinkingPayload>;
|
|
72960
73712
|
};
|
|
72961
73713
|
export declare type UnifiedLinkingMutationAuthenticateTransactionArgs = {
|
|
72962
73714
|
isLoggedInPrimary?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -72969,6 +73721,9 @@ export declare type UnifiedLinkingMutationInitializeTransactionArgs = {
|
|
|
72969
73721
|
account2Aaid?: InputMaybe<Scalars['String']['input']>;
|
|
72970
73722
|
primaryAccountType?: InputMaybe<UnifiedPrimaryAccountType>;
|
|
72971
73723
|
};
|
|
73724
|
+
export declare type UnifiedLinkingMutationUnlinkAccountArgs = {
|
|
73725
|
+
aaid: Scalars['String']['input'];
|
|
73726
|
+
};
|
|
72972
73727
|
export declare type UnifiedLinkingPayload = UnifiedPayload & {
|
|
72973
73728
|
__typename?: 'UnifiedLinkingPayload';
|
|
72974
73729
|
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
@@ -73047,6 +73802,8 @@ export declare type UnifiedProfile = UnifiedINode & {
|
|
|
73047
73802
|
gamification?: Maybe<UnifiedUGamificationResult>;
|
|
73048
73803
|
gamificationId?: Maybe<Scalars['String']['output']>;
|
|
73049
73804
|
id: Scalars['ID']['output'];
|
|
73805
|
+
isPersonalView?: Maybe<Scalars['Boolean']['output']>;
|
|
73806
|
+
isPrivate: Scalars['Boolean']['output'];
|
|
73050
73807
|
learnId?: Maybe<Scalars['String']['output']>;
|
|
73051
73808
|
learning?: Maybe<UnifiedULearningResult>;
|
|
73052
73809
|
linkedinUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -73090,6 +73847,7 @@ export declare type UnifiedProfileInput = {
|
|
|
73090
73847
|
company?: InputMaybe<Scalars['String']['input']>;
|
|
73091
73848
|
forumsId?: InputMaybe<Scalars['String']['input']>;
|
|
73092
73849
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
73850
|
+
isPrivate: Scalars['Boolean']['input'];
|
|
73093
73851
|
learnId?: InputMaybe<Scalars['String']['input']>;
|
|
73094
73852
|
linkedinUrl?: InputMaybe<Scalars['String']['input']>;
|
|
73095
73853
|
location?: InputMaybe<Scalars['String']['input']>;
|