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