@forge/cli-shared 3.17.0-next.9 → 3.17.1-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +90 -0
- package/out/graphql/graphql-types.d.ts +442 -20
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +65 -5
- package/out/ui/text.d.ts +8 -3
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +10 -5
- package/package.json +3 -3
|
@@ -323,6 +323,17 @@ export type AddCompassComponentLabelsPayload = Payload & {
|
|
|
323
323
|
errors?: Maybe<Array<MutationError>>;
|
|
324
324
|
componentDetails?: Maybe<CompassComponent>;
|
|
325
325
|
};
|
|
326
|
+
export type AddMultipleAppContributorInput = {
|
|
327
|
+
appId: Scalars['ID'];
|
|
328
|
+
newContributorEmails: Array<Scalars['String']>;
|
|
329
|
+
role: AppContributorRole;
|
|
330
|
+
};
|
|
331
|
+
export type AddMultipleAppContributorResponsePayload = Payload & {
|
|
332
|
+
__typename?: 'AddMultipleAppContributorResponsePayload';
|
|
333
|
+
success: Scalars['Boolean'];
|
|
334
|
+
contributorsFailed: Array<Maybe<ContributorFailed>>;
|
|
335
|
+
errors?: Maybe<Array<MutationError>>;
|
|
336
|
+
};
|
|
326
337
|
export type AddPolarisColumnInput = {
|
|
327
338
|
before?: Maybe<Scalars['ID']>;
|
|
328
339
|
field: Scalars['ID'];
|
|
@@ -609,7 +620,8 @@ export declare enum ApiGroup {
|
|
|
609
620
|
CloudAdmin = "CLOUD_ADMIN",
|
|
610
621
|
CustomerService = "CUSTOMER_SERVICE",
|
|
611
622
|
SurfacePlatform = "SURFACE_PLATFORM",
|
|
612
|
-
AppRecommendations = "APP_RECOMMENDATIONS"
|
|
623
|
+
AppRecommendations = "APP_RECOMMENDATIONS",
|
|
624
|
+
FeatureReleaseQuery = "FEATURE_RELEASE_QUERY"
|
|
613
625
|
}
|
|
614
626
|
export type App = {
|
|
615
627
|
__typename?: 'App';
|
|
@@ -1568,11 +1580,21 @@ export type AriGraphReplaceRelationshipsPayload = Payload & {
|
|
|
1568
1580
|
export type AriGraphSubscriptions = {
|
|
1569
1581
|
__typename?: 'AriGraphSubscriptions';
|
|
1570
1582
|
onPullRequestCreatedOrUpdatedForProject?: Maybe<AriGraphRelationshipConnection>;
|
|
1583
|
+
onDeploymentCreatedOrUpdatedForProject?: Maybe<AriGraphRelationship>;
|
|
1584
|
+
onVulnerabilityCreatedOrUpdatedForProject?: Maybe<AriGraphRelationship>;
|
|
1571
1585
|
};
|
|
1572
1586
|
export type AriGraphSubscriptionsOnPullRequestCreatedOrUpdatedForProjectArgs = {
|
|
1573
1587
|
projectId: Scalars['ID'];
|
|
1574
1588
|
type?: Scalars['String'];
|
|
1575
1589
|
};
|
|
1590
|
+
export type AriGraphSubscriptionsOnDeploymentCreatedOrUpdatedForProjectArgs = {
|
|
1591
|
+
projectId: Scalars['ID'];
|
|
1592
|
+
type?: Scalars['String'];
|
|
1593
|
+
};
|
|
1594
|
+
export type AriGraphSubscriptionsOnVulnerabilityCreatedOrUpdatedForProjectArgs = {
|
|
1595
|
+
projectId: Scalars['ID'];
|
|
1596
|
+
type?: Scalars['String'];
|
|
1597
|
+
};
|
|
1576
1598
|
export type ArjConfiguration = {
|
|
1577
1599
|
__typename?: 'ArjConfiguration';
|
|
1578
1600
|
parentCustomFieldId?: Maybe<Scalars['String']>;
|
|
@@ -2781,6 +2803,7 @@ export type CompassCatalogMutationApi = {
|
|
|
2781
2803
|
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
2782
2804
|
deleteCustomFieldDefinition?: Maybe<CompassDeleteCustomFieldDefinitionPayload>;
|
|
2783
2805
|
createComponentFromTemplate?: Maybe<CreateCompassComponentFromTemplatePayload>;
|
|
2806
|
+
updateUserDefinedParameters?: Maybe<UpdateCompassUserDefinedParametersPayload>;
|
|
2784
2807
|
createStarredComponent?: Maybe<CreateCompassStarredComponentPayload>;
|
|
2785
2808
|
deleteStarredComponent?: Maybe<DeleteCompassStarredComponentPayload>;
|
|
2786
2809
|
createWebhook?: Maybe<CompassCreateWebhookPayload>;
|
|
@@ -2952,6 +2975,9 @@ export type CompassCatalogMutationApiDeleteCustomFieldDefinitionArgs = {
|
|
|
2952
2975
|
export type CompassCatalogMutationApiCreateComponentFromTemplateArgs = {
|
|
2953
2976
|
input: CreateCompassComponentFromTemplateInput;
|
|
2954
2977
|
};
|
|
2978
|
+
export type CompassCatalogMutationApiUpdateUserDefinedParametersArgs = {
|
|
2979
|
+
input: UpdateCompassUserDefinedParametersInput;
|
|
2980
|
+
};
|
|
2955
2981
|
export type CompassCatalogMutationApiCreateStarredComponentArgs = {
|
|
2956
2982
|
input: CreateCompassStarredComponentInput;
|
|
2957
2983
|
};
|
|
@@ -2979,6 +3005,7 @@ export type CompassCatalogQueryApi = {
|
|
|
2979
3005
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
2980
3006
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
2981
3007
|
eventSource?: Maybe<CompassEventSourceResult>;
|
|
3008
|
+
customFieldDefinition?: Maybe<CompassCustomFieldDefinitionResult>;
|
|
2982
3009
|
customFieldDefinitions?: Maybe<CompassCustomFieldDefinitionsResult>;
|
|
2983
3010
|
metricValuesTimeSeries?: Maybe<CompassMetricValuesTimeseriesResult>;
|
|
2984
3011
|
starredComponents?: Maybe<CompassStarredComponentsResult>;
|
|
@@ -3043,6 +3070,9 @@ export type CompassCatalogQueryApiEventSourceArgs = {
|
|
|
3043
3070
|
eventType: CompassEventType;
|
|
3044
3071
|
externalEventSourceId: Scalars['ID'];
|
|
3045
3072
|
};
|
|
3073
|
+
export type CompassCatalogQueryApiCustomFieldDefinitionArgs = {
|
|
3074
|
+
query: CompassCustomFieldDefinitionQuery;
|
|
3075
|
+
};
|
|
3046
3076
|
export type CompassCatalogQueryApiCustomFieldDefinitionsArgs = {
|
|
3047
3077
|
query: CompassCustomFieldDefinitionsQuery;
|
|
3048
3078
|
};
|
|
@@ -3491,6 +3521,11 @@ export type CompassCustomFieldDefinitionEdge = {
|
|
|
3491
3521
|
cursor: Scalars['String'];
|
|
3492
3522
|
node?: Maybe<CompassCustomFieldDefinition>;
|
|
3493
3523
|
};
|
|
3524
|
+
export type CompassCustomFieldDefinitionQuery = {
|
|
3525
|
+
cloudId: Scalars['ID'];
|
|
3526
|
+
id: Scalars['ID'];
|
|
3527
|
+
};
|
|
3528
|
+
export type CompassCustomFieldDefinitionResult = CompassCustomTextFieldDefinition | CompassCustomBooleanFieldDefinition | CompassCustomNumberFieldDefinition | CompassCustomUserFieldDefinition | CompassCustomSingleSelectFieldDefinition | CompassCustomMultiSelectFieldDefinition | QueryError;
|
|
3494
3529
|
export type CompassCustomFieldDefinitionsConnection = {
|
|
3495
3530
|
__typename?: 'CompassCustomFieldDefinitionsConnection';
|
|
3496
3531
|
edges?: Maybe<Array<CompassCustomFieldDefinitionEdge>>;
|
|
@@ -3868,6 +3903,14 @@ export type CompassFlagEventProperties = {
|
|
|
3868
3903
|
id: Scalars['ID'];
|
|
3869
3904
|
status?: Maybe<Scalars['String']>;
|
|
3870
3905
|
};
|
|
3906
|
+
export type CompassFreeformUserDefinedParameter = CompassUserDefinedParameter & {
|
|
3907
|
+
__typename?: 'CompassFreeformUserDefinedParameter';
|
|
3908
|
+
id: Scalars['ID'];
|
|
3909
|
+
name: Scalars['String'];
|
|
3910
|
+
type: Scalars['String'];
|
|
3911
|
+
description?: Maybe<Scalars['String']>;
|
|
3912
|
+
defaultValue?: Maybe<Scalars['String']>;
|
|
3913
|
+
};
|
|
3871
3914
|
export type CompassHasCustomBooleanFieldScorecardCriteria = CompassScorecardCriteria & CompassCustomFieldScorecardCriteria & {
|
|
3872
3915
|
__typename?: 'CompassHasCustomBooleanFieldScorecardCriteria';
|
|
3873
3916
|
id: Scalars['ID'];
|
|
@@ -4693,6 +4736,17 @@ export type CompassUpdateTeamCheckinPayload = Payload & {
|
|
|
4693
4736
|
export type CompassUpdateTeamCheckinResponseRichText = {
|
|
4694
4737
|
adf?: Maybe<Scalars['String']>;
|
|
4695
4738
|
};
|
|
4739
|
+
export type CompassUserDefinedParameter = {
|
|
4740
|
+
id: Scalars['ID'];
|
|
4741
|
+
name: Scalars['String'];
|
|
4742
|
+
type: Scalars['String'];
|
|
4743
|
+
description?: Maybe<Scalars['String']>;
|
|
4744
|
+
};
|
|
4745
|
+
export type CompassUserDefinedParameters = {
|
|
4746
|
+
__typename?: 'CompassUserDefinedParameters';
|
|
4747
|
+
componentId: Scalars['ID'];
|
|
4748
|
+
parameters?: Maybe<Array<CompassUserDefinedParameter>>;
|
|
4749
|
+
};
|
|
4696
4750
|
export type CompassViewerSubscription = {
|
|
4697
4751
|
__typename?: 'CompassViewerSubscription';
|
|
4698
4752
|
subscribed: Scalars['Boolean'];
|
|
@@ -6093,6 +6147,11 @@ export type ContextEventObject = {
|
|
|
6093
6147
|
type: Scalars['String'];
|
|
6094
6148
|
attributes: Scalars['JSON'];
|
|
6095
6149
|
};
|
|
6150
|
+
export type ContributorFailed = {
|
|
6151
|
+
__typename?: 'ContributorFailed';
|
|
6152
|
+
email: Scalars['String'];
|
|
6153
|
+
reason: Scalars['String'];
|
|
6154
|
+
};
|
|
6096
6155
|
export type CopyPolarisInsightsContainerInput = {
|
|
6097
6156
|
project: Scalars['ID'];
|
|
6098
6157
|
container?: Maybe<Scalars['ID']>;
|
|
@@ -6242,6 +6301,11 @@ export type CreateCompassFieldInput = {
|
|
|
6242
6301
|
definition: Scalars['ID'];
|
|
6243
6302
|
value: CompassFieldValueInput;
|
|
6244
6303
|
};
|
|
6304
|
+
export type CreateCompassFreeformUserDefinedParameterInput = {
|
|
6305
|
+
name: Scalars['String'];
|
|
6306
|
+
description?: Maybe<Scalars['String']>;
|
|
6307
|
+
defaultValue?: Maybe<Scalars['String']>;
|
|
6308
|
+
};
|
|
6245
6309
|
export type CreateCompassHasDescriptionScorecardCriteriaInput = {
|
|
6246
6310
|
weight: Scalars['Int'];
|
|
6247
6311
|
};
|
|
@@ -6323,6 +6387,9 @@ export type CreateCompassStarredComponentPayload = Payload & {
|
|
|
6323
6387
|
success: Scalars['Boolean'];
|
|
6324
6388
|
errors?: Maybe<Array<MutationError>>;
|
|
6325
6389
|
};
|
|
6390
|
+
export type CreateCompassUserDefinedParameterInput = {
|
|
6391
|
+
freeformField?: Maybe<CreateCompassFreeformUserDefinedParameterInput>;
|
|
6392
|
+
};
|
|
6326
6393
|
export type CreateCustomFilterInput = {
|
|
6327
6394
|
boardId: Scalars['ID'];
|
|
6328
6395
|
name: Scalars['String'];
|
|
@@ -6730,7 +6797,7 @@ export type CustomUiTunnelDefinitionInput = {
|
|
|
6730
6797
|
resourceKey?: Maybe<Scalars['String']>;
|
|
6731
6798
|
tunnelUrl?: Maybe<Scalars['URL']>;
|
|
6732
6799
|
};
|
|
6733
|
-
export type CustomerServiceAttribute = {
|
|
6800
|
+
export type CustomerServiceAttribute = Node & {
|
|
6734
6801
|
__typename?: 'CustomerServiceAttribute';
|
|
6735
6802
|
id: Scalars['ID'];
|
|
6736
6803
|
name: Scalars['String'];
|
|
@@ -6781,7 +6848,9 @@ export declare enum CustomerServiceAttributeTypeName {
|
|
|
6781
6848
|
Text = "TEXT",
|
|
6782
6849
|
Email = "EMAIL",
|
|
6783
6850
|
Url = "URL",
|
|
6851
|
+
Date = "DATE",
|
|
6784
6852
|
Number = "NUMBER",
|
|
6853
|
+
Phone = "PHONE",
|
|
6785
6854
|
Select = "SELECT",
|
|
6786
6855
|
Multiselect = "MULTISELECT"
|
|
6787
6856
|
}
|
|
@@ -6800,7 +6869,7 @@ export type CustomerServiceAttributeUpdateTypeInput = {
|
|
|
6800
6869
|
name?: Maybe<CustomerServiceAttributeTypeName>;
|
|
6801
6870
|
options?: Maybe<Array<Scalars['String']>>;
|
|
6802
6871
|
};
|
|
6803
|
-
export type CustomerServiceAttributeValue = {
|
|
6872
|
+
export type CustomerServiceAttributeValue = Node & {
|
|
6804
6873
|
__typename?: 'CustomerServiceAttributeValue';
|
|
6805
6874
|
id: Scalars['ID'];
|
|
6806
6875
|
name: Scalars['String'];
|
|
@@ -7496,7 +7565,7 @@ export type DevOpsDevInfoProvider = DevOpsDataProvider & {
|
|
|
7496
7565
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
7497
7566
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
7498
7567
|
};
|
|
7499
|
-
export type DevOpsDocument = {
|
|
7568
|
+
export type DevOpsDocument = Node & {
|
|
7500
7569
|
__typename?: 'DevOpsDocument';
|
|
7501
7570
|
id: Scalars['ID'];
|
|
7502
7571
|
parentId?: Maybe<Scalars['ID']>;
|
|
@@ -8640,6 +8709,7 @@ export type EcosystemMutation = {
|
|
|
8640
8709
|
__typename?: 'EcosystemMutation';
|
|
8641
8710
|
updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
|
|
8642
8711
|
addAppContributor?: Maybe<AddAppContributorResponsePayload>;
|
|
8712
|
+
addMultipleAppContributor?: Maybe<AddMultipleAppContributorResponsePayload>;
|
|
8643
8713
|
removeAppContributors?: Maybe<RemoveAppContributorsResponsePayload>;
|
|
8644
8714
|
updateAppOwnership?: Maybe<UpdateAppOwnershipResponsePayload>;
|
|
8645
8715
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
@@ -8654,6 +8724,9 @@ export type EcosystemMutationUpdateAppHostServiceScopesArgs = {
|
|
|
8654
8724
|
export type EcosystemMutationAddAppContributorArgs = {
|
|
8655
8725
|
input: AddAppContributorInput;
|
|
8656
8726
|
};
|
|
8727
|
+
export type EcosystemMutationAddMultipleAppContributorArgs = {
|
|
8728
|
+
input: AddMultipleAppContributorInput;
|
|
8729
|
+
};
|
|
8657
8730
|
export type EcosystemMutationRemoveAppContributorsArgs = {
|
|
8658
8731
|
input: RemoveAppContributorsInput;
|
|
8659
8732
|
};
|
|
@@ -8908,6 +8981,69 @@ export type ExternalAuthProvider = {
|
|
|
8908
8981
|
displayName: Scalars['String'];
|
|
8909
8982
|
url: Scalars['URL'];
|
|
8910
8983
|
};
|
|
8984
|
+
export type FeatureRelease = {
|
|
8985
|
+
__typename?: 'FeatureRelease';
|
|
8986
|
+
latestTransition: FeatureReleaseFeatureFlagTransition;
|
|
8987
|
+
transitionsByCloudId: FeatureReleaseFeatureFlagTransitionConnection;
|
|
8988
|
+
transitionsByFeatureFlagId: FeatureReleaseFeatureFlagTransitionConnection;
|
|
8989
|
+
transitionsByMonth: FeatureReleaseFeatureFlagTransitionConnection;
|
|
8990
|
+
};
|
|
8991
|
+
export type FeatureReleaseLatestTransitionArgs = {
|
|
8992
|
+
cloudId: Scalars['ID'];
|
|
8993
|
+
featureFlagId: Scalars['ID'];
|
|
8994
|
+
};
|
|
8995
|
+
export type FeatureReleaseTransitionsByCloudIdArgs = {
|
|
8996
|
+
after?: Maybe<Scalars['String']>;
|
|
8997
|
+
cloudId: Scalars['ID'];
|
|
8998
|
+
filter?: Maybe<FeatureReleaseFeatureFlagFilter>;
|
|
8999
|
+
first?: Maybe<Scalars['Int']>;
|
|
9000
|
+
timeRange?: Maybe<FeatureReleaseTimeRangeInput>;
|
|
9001
|
+
};
|
|
9002
|
+
export type FeatureReleaseTransitionsByFeatureFlagIdArgs = {
|
|
9003
|
+
after?: Maybe<Scalars['String']>;
|
|
9004
|
+
featureFlagId: Scalars['ID'];
|
|
9005
|
+
filter?: Maybe<FeatureReleaseCloudIdFilter>;
|
|
9006
|
+
first?: Maybe<Scalars['Int']>;
|
|
9007
|
+
timeRange?: Maybe<FeatureReleaseTimeRangeInput>;
|
|
9008
|
+
};
|
|
9009
|
+
export type FeatureReleaseTransitionsByMonthArgs = {
|
|
9010
|
+
after?: Maybe<Scalars['String']>;
|
|
9011
|
+
cloudIdFilter?: Maybe<FeatureReleaseCloudIdFilter>;
|
|
9012
|
+
featureFlagFilter?: Maybe<FeatureReleaseFeatureFlagFilter>;
|
|
9013
|
+
first?: Maybe<Scalars['Int']>;
|
|
9014
|
+
month: Scalars['String'];
|
|
9015
|
+
timeRange?: Maybe<FeatureReleaseTimeRangeInput>;
|
|
9016
|
+
};
|
|
9017
|
+
export type FeatureReleaseCloudIdFilter = {
|
|
9018
|
+
cloudIds: Array<Maybe<Scalars['String']>>;
|
|
9019
|
+
};
|
|
9020
|
+
export type FeatureReleaseFeatureFlagFilter = {
|
|
9021
|
+
featureFlagIds: Array<Maybe<Scalars['String']>>;
|
|
9022
|
+
};
|
|
9023
|
+
export type FeatureReleaseFeatureFlagTransition = {
|
|
9024
|
+
__typename?: 'FeatureReleaseFeatureFlagTransition';
|
|
9025
|
+
evaluationResult: Scalars['String'];
|
|
9026
|
+
featureFlagKey: Scalars['String'];
|
|
9027
|
+
month: Scalars['String'];
|
|
9028
|
+
reason: Scalars['String'];
|
|
9029
|
+
tenantId: Scalars['String'];
|
|
9030
|
+
tenantType: Scalars['String'];
|
|
9031
|
+
timestamp: Scalars['Int'];
|
|
9032
|
+
};
|
|
9033
|
+
export type FeatureReleaseFeatureFlagTransitionConnection = {
|
|
9034
|
+
__typename?: 'FeatureReleaseFeatureFlagTransitionConnection';
|
|
9035
|
+
edges: Array<Maybe<FeatureReleaseFeatureFlagTransitionEdge>>;
|
|
9036
|
+
pageInfo: PageInfo;
|
|
9037
|
+
};
|
|
9038
|
+
export type FeatureReleaseFeatureFlagTransitionEdge = {
|
|
9039
|
+
__typename?: 'FeatureReleaseFeatureFlagTransitionEdge';
|
|
9040
|
+
cursor: Scalars['String'];
|
|
9041
|
+
node?: Maybe<FeatureReleaseFeatureFlagTransition>;
|
|
9042
|
+
};
|
|
9043
|
+
export type FeatureReleaseTimeRangeInput = {
|
|
9044
|
+
endEpoch?: Maybe<Scalars['Int']>;
|
|
9045
|
+
startEpoch?: Maybe<Scalars['Int']>;
|
|
9046
|
+
};
|
|
8911
9047
|
export type FilterQuery = {
|
|
8912
9048
|
__typename?: 'FilterQuery';
|
|
8913
9049
|
sanitisedJql: Scalars['String'];
|
|
@@ -10595,6 +10731,179 @@ export type InCompleteCardsDestination = {
|
|
|
10595
10731
|
sprintName?: Maybe<Scalars['String']>;
|
|
10596
10732
|
destination?: Maybe<SoftwareCardsDestinationEnum>;
|
|
10597
10733
|
};
|
|
10734
|
+
export type InfluentsNotificationAction = {
|
|
10735
|
+
__typename?: 'InfluentsNotificationAction';
|
|
10736
|
+
title: Scalars['String'];
|
|
10737
|
+
url?: Maybe<Scalars['String']>;
|
|
10738
|
+
appearance: InfluentsNotificationAppearance;
|
|
10739
|
+
};
|
|
10740
|
+
export type InfluentsNotificationActor = {
|
|
10741
|
+
__typename?: 'InfluentsNotificationActor';
|
|
10742
|
+
displayName?: Maybe<Scalars['String']>;
|
|
10743
|
+
ari?: Maybe<Scalars['String']>;
|
|
10744
|
+
avatarURL?: Maybe<Scalars['String']>;
|
|
10745
|
+
};
|
|
10746
|
+
export type InfluentsNotificationAnalyticsAttribute = {
|
|
10747
|
+
__typename?: 'InfluentsNotificationAnalyticsAttribute';
|
|
10748
|
+
key?: Maybe<Scalars['String']>;
|
|
10749
|
+
value?: Maybe<Scalars['String']>;
|
|
10750
|
+
};
|
|
10751
|
+
export declare enum InfluentsNotificationAppearance {
|
|
10752
|
+
Default = "DEFAULT",
|
|
10753
|
+
Primary = "PRIMARY",
|
|
10754
|
+
Link = "LINK",
|
|
10755
|
+
Subtle = "SUBTLE",
|
|
10756
|
+
Warning = "WARNING",
|
|
10757
|
+
Danger = "DANGER"
|
|
10758
|
+
}
|
|
10759
|
+
export type InfluentsNotificationBodyItem = {
|
|
10760
|
+
__typename?: 'InfluentsNotificationBodyItem';
|
|
10761
|
+
type?: Maybe<Scalars['String']>;
|
|
10762
|
+
appearance?: Maybe<Scalars['String']>;
|
|
10763
|
+
document?: Maybe<InfluentsNotificationDocument>;
|
|
10764
|
+
author?: Maybe<InfluentsNotificationActor>;
|
|
10765
|
+
};
|
|
10766
|
+
export declare enum InfluentsNotificationCategory {
|
|
10767
|
+
Direct = "direct",
|
|
10768
|
+
Watching = "watching"
|
|
10769
|
+
}
|
|
10770
|
+
export type InfluentsNotificationContent = {
|
|
10771
|
+
__typename?: 'InfluentsNotificationContent';
|
|
10772
|
+
type: Scalars['String'];
|
|
10773
|
+
message: Scalars['String'];
|
|
10774
|
+
url?: Maybe<Scalars['String']>;
|
|
10775
|
+
actor: InfluentsNotificationActor;
|
|
10776
|
+
entity?: Maybe<InfluentsNotificationEntity>;
|
|
10777
|
+
path?: Maybe<Array<InfluentsNotificationPath>>;
|
|
10778
|
+
actions?: Maybe<Array<InfluentsNotificationAction>>;
|
|
10779
|
+
bodyItems?: Maybe<Array<InfluentsNotificationBodyItem>>;
|
|
10780
|
+
templateVariables?: Maybe<Array<InfluentsNotificationTemplateVariable>>;
|
|
10781
|
+
};
|
|
10782
|
+
export type InfluentsNotificationDocument = {
|
|
10783
|
+
__typename?: 'InfluentsNotificationDocument';
|
|
10784
|
+
format?: Maybe<Scalars['String']>;
|
|
10785
|
+
data?: Maybe<Scalars['String']>;
|
|
10786
|
+
};
|
|
10787
|
+
export type InfluentsNotificationEntity = {
|
|
10788
|
+
__typename?: 'InfluentsNotificationEntity';
|
|
10789
|
+
title?: Maybe<Scalars['String']>;
|
|
10790
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
10791
|
+
url?: Maybe<Scalars['String']>;
|
|
10792
|
+
};
|
|
10793
|
+
export type InfluentsNotificationFeedFilter = {
|
|
10794
|
+
workspaceId?: Maybe<Scalars['String']>;
|
|
10795
|
+
categoryFilter?: Maybe<InfluentsNotificationCategory>;
|
|
10796
|
+
readStateFilter?: Maybe<InfluentsNotificationReadState>;
|
|
10797
|
+
productFilter?: Maybe<Scalars['String']>;
|
|
10798
|
+
groupId?: Maybe<Scalars['String']>;
|
|
10799
|
+
};
|
|
10800
|
+
export type InfluentsNotificationGroupedConnection = {
|
|
10801
|
+
__typename?: 'InfluentsNotificationGroupedConnection';
|
|
10802
|
+
nodes: Array<InfluentsNotificationGroupedItem>;
|
|
10803
|
+
pageInfo: InfluentsNotificationPageInfo;
|
|
10804
|
+
};
|
|
10805
|
+
export type InfluentsNotificationGroupedItem = {
|
|
10806
|
+
__typename?: 'InfluentsNotificationGroupedItem';
|
|
10807
|
+
groupId: Scalars['ID'];
|
|
10808
|
+
groupSize: Scalars['Int'];
|
|
10809
|
+
headNotification: InfluentsNotificationItem;
|
|
10810
|
+
childItems?: Maybe<Array<InfluentsNotificationItem>>;
|
|
10811
|
+
};
|
|
10812
|
+
export type InfluentsNotificationGroupedItemChildItemsArgs = {
|
|
10813
|
+
first?: Maybe<Scalars['Int']>;
|
|
10814
|
+
after?: Maybe<Scalars['String']>;
|
|
10815
|
+
};
|
|
10816
|
+
export type InfluentsNotificationItem = {
|
|
10817
|
+
__typename?: 'InfluentsNotificationItem';
|
|
10818
|
+
notificationId: Scalars['ID'];
|
|
10819
|
+
timestamp: Scalars['DateTime'];
|
|
10820
|
+
content: InfluentsNotificationContent;
|
|
10821
|
+
readState: InfluentsNotificationReadState;
|
|
10822
|
+
category: InfluentsNotificationCategory;
|
|
10823
|
+
workspaceId?: Maybe<Scalars['String']>;
|
|
10824
|
+
analyticsAttributes?: Maybe<Array<InfluentsNotificationAnalyticsAttribute>>;
|
|
10825
|
+
};
|
|
10826
|
+
export type InfluentsNotificationMutation = {
|
|
10827
|
+
__typename?: 'InfluentsNotificationMutation';
|
|
10828
|
+
markNotificationsAsRead?: Maybe<Scalars['String']>;
|
|
10829
|
+
markNotificationsAsUnread?: Maybe<Scalars['String']>;
|
|
10830
|
+
markNotificationsByGroupIdAsRead?: Maybe<Scalars['String']>;
|
|
10831
|
+
markNotificationsByGroupIdAsUnread?: Maybe<Scalars['String']>;
|
|
10832
|
+
markNotificationsByIdsAsRead?: Maybe<Scalars['String']>;
|
|
10833
|
+
markNotificationsByIdsAsUnread?: Maybe<Scalars['String']>;
|
|
10834
|
+
archiveNotifications?: Maybe<Scalars['String']>;
|
|
10835
|
+
};
|
|
10836
|
+
export type InfluentsNotificationMutationMarkNotificationsAsReadArgs = {
|
|
10837
|
+
category?: Maybe<InfluentsNotificationCategory>;
|
|
10838
|
+
product?: Maybe<Scalars['String']>;
|
|
10839
|
+
workspaceId?: Maybe<Scalars['String']>;
|
|
10840
|
+
beforeInclusive?: Maybe<Scalars['String']>;
|
|
10841
|
+
beforeInclusiveTimestamp?: Maybe<Scalars['String']>;
|
|
10842
|
+
};
|
|
10843
|
+
export type InfluentsNotificationMutationMarkNotificationsAsUnreadArgs = {
|
|
10844
|
+
category?: Maybe<InfluentsNotificationCategory>;
|
|
10845
|
+
product?: Maybe<Scalars['String']>;
|
|
10846
|
+
workspaceId?: Maybe<Scalars['String']>;
|
|
10847
|
+
beforeInclusive?: Maybe<Scalars['String']>;
|
|
10848
|
+
beforeInclusiveTimestamp?: Maybe<Scalars['String']>;
|
|
10849
|
+
};
|
|
10850
|
+
export type InfluentsNotificationMutationMarkNotificationsByGroupIdAsReadArgs = {
|
|
10851
|
+
category?: Maybe<InfluentsNotificationCategory>;
|
|
10852
|
+
groupId?: Maybe<Scalars['String']>;
|
|
10853
|
+
beforeInclusive?: Maybe<Scalars['String']>;
|
|
10854
|
+
};
|
|
10855
|
+
export type InfluentsNotificationMutationMarkNotificationsByGroupIdAsUnreadArgs = {
|
|
10856
|
+
category?: Maybe<InfluentsNotificationCategory>;
|
|
10857
|
+
groupId?: Maybe<Scalars['String']>;
|
|
10858
|
+
beforeInclusive?: Maybe<Scalars['String']>;
|
|
10859
|
+
};
|
|
10860
|
+
export type InfluentsNotificationMutationMarkNotificationsByIdsAsReadArgs = {
|
|
10861
|
+
ids: Array<Scalars['String']>;
|
|
10862
|
+
};
|
|
10863
|
+
export type InfluentsNotificationMutationMarkNotificationsByIdsAsUnreadArgs = {
|
|
10864
|
+
ids: Array<Scalars['String']>;
|
|
10865
|
+
};
|
|
10866
|
+
export type InfluentsNotificationMutationArchiveNotificationsArgs = {
|
|
10867
|
+
ids: Array<Scalars['String']>;
|
|
10868
|
+
};
|
|
10869
|
+
export type InfluentsNotificationPageInfo = {
|
|
10870
|
+
__typename?: 'InfluentsNotificationPageInfo';
|
|
10871
|
+
hasNextPage: Scalars['Boolean'];
|
|
10872
|
+
hasPreviousPage: Scalars['Boolean'];
|
|
10873
|
+
startCursor?: Maybe<Scalars['String']>;
|
|
10874
|
+
endCursor?: Maybe<Scalars['String']>;
|
|
10875
|
+
};
|
|
10876
|
+
export type InfluentsNotificationPath = {
|
|
10877
|
+
__typename?: 'InfluentsNotificationPath';
|
|
10878
|
+
title?: Maybe<Scalars['String']>;
|
|
10879
|
+
url?: Maybe<Scalars['String']>;
|
|
10880
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
10881
|
+
};
|
|
10882
|
+
export type InfluentsNotificationQuery = {
|
|
10883
|
+
__typename?: 'InfluentsNotificationQuery';
|
|
10884
|
+
notificationFeed: InfluentsNotificationGroupedConnection;
|
|
10885
|
+
unseenNotificationCount: Scalars['Int'];
|
|
10886
|
+
};
|
|
10887
|
+
export type InfluentsNotificationQueryNotificationFeedArgs = {
|
|
10888
|
+
feedFilter?: Maybe<InfluentsNotificationFeedFilter>;
|
|
10889
|
+
first?: Maybe<Scalars['Int']>;
|
|
10890
|
+
after?: Maybe<Scalars['String']>;
|
|
10891
|
+
};
|
|
10892
|
+
export type InfluentsNotificationQueryUnseenNotificationCountArgs = {
|
|
10893
|
+
workspaceId?: Maybe<Scalars['String']>;
|
|
10894
|
+
product?: Maybe<Scalars['String']>;
|
|
10895
|
+
};
|
|
10896
|
+
export declare enum InfluentsNotificationReadState {
|
|
10897
|
+
Unread = "unread",
|
|
10898
|
+
Read = "read"
|
|
10899
|
+
}
|
|
10900
|
+
export type InfluentsNotificationTemplateVariable = {
|
|
10901
|
+
__typename?: 'InfluentsNotificationTemplateVariable';
|
|
10902
|
+
name: Scalars['String'];
|
|
10903
|
+
type: Scalars['String'];
|
|
10904
|
+
id: Scalars['ID'];
|
|
10905
|
+
fallback: Scalars['String'];
|
|
10906
|
+
};
|
|
10598
10907
|
export type InlineCardCreateConfig = {
|
|
10599
10908
|
__typename?: 'InlineCardCreateConfig';
|
|
10600
10909
|
enabled: Scalars['Boolean'];
|
|
@@ -10951,6 +11260,7 @@ export declare enum IssueDevOpsPullRequestStatus {
|
|
|
10951
11260
|
Open = "OPEN",
|
|
10952
11261
|
Merged = "MERGED",
|
|
10953
11262
|
Declined = "DECLINED",
|
|
11263
|
+
Draft = "DRAFT",
|
|
10954
11264
|
Unknown = "UNKNOWN"
|
|
10955
11265
|
}
|
|
10956
11266
|
export type IssueDevOpsRemoteLink = {
|
|
@@ -13696,6 +14006,11 @@ export type JiraIssueSearchViewFieldSetsArgs = {
|
|
|
13696
14006
|
after?: Maybe<Scalars['String']>;
|
|
13697
14007
|
filter?: Maybe<JiraIssueSearchFieldSetsFilter>;
|
|
13698
14008
|
};
|
|
14009
|
+
export declare enum JiraIssueSearchViewContext {
|
|
14010
|
+
Nin = "NIN",
|
|
14011
|
+
NinWithFallback = "NIN_WITH_FALLBACK",
|
|
14012
|
+
ShadowRequest = "SHADOW_REQUEST"
|
|
14013
|
+
}
|
|
13699
14014
|
export type JiraIssueSearchViewPayload = Payload & {
|
|
13700
14015
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
13701
14016
|
success: Scalars['Boolean'];
|
|
@@ -14620,6 +14935,7 @@ export type JiraMutation = {
|
|
|
14620
14935
|
updateResolutionField?: Maybe<JiraResolutionFieldPayload>;
|
|
14621
14936
|
updateCheckboxesField?: Maybe<JiraCheckboxesFieldPayload>;
|
|
14622
14937
|
updateLegacyTeamField?: Maybe<JiraLegacyTeamFieldPayload>;
|
|
14938
|
+
updateParentField?: Maybe<JiraParentFieldPayload>;
|
|
14623
14939
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
14624
14940
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
14625
14941
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
@@ -14818,6 +15134,9 @@ export type JiraMutationUpdateCheckboxesFieldArgs = {
|
|
|
14818
15134
|
export type JiraMutationUpdateLegacyTeamFieldArgs = {
|
|
14819
15135
|
input: JiraUpdateLegacyTeamFieldInput;
|
|
14820
15136
|
};
|
|
15137
|
+
export type JiraMutationUpdateParentFieldArgs = {
|
|
15138
|
+
input: JiraUpdateParentFieldInput;
|
|
15139
|
+
};
|
|
14821
15140
|
export type JiraMutationAddPermissionSchemeGrantsArgs = {
|
|
14822
15141
|
input: JiraPermissionSchemeAddGrantInput;
|
|
14823
15142
|
};
|
|
@@ -15143,6 +15462,16 @@ export type JiraPageCursors = {
|
|
|
15143
15462
|
export type JiraParentFieldInput = {
|
|
15144
15463
|
issueId: Scalars['ID'];
|
|
15145
15464
|
};
|
|
15465
|
+
export type JiraParentFieldOperationInput = {
|
|
15466
|
+
operation: JiraSingleValueFieldOperations;
|
|
15467
|
+
id?: Maybe<Scalars['ID']>;
|
|
15468
|
+
};
|
|
15469
|
+
export type JiraParentFieldPayload = Payload & {
|
|
15470
|
+
__typename?: 'JiraParentFieldPayload';
|
|
15471
|
+
success: Scalars['Boolean'];
|
|
15472
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15473
|
+
field?: Maybe<JiraParentIssueField>;
|
|
15474
|
+
};
|
|
15146
15475
|
export type JiraParentIssueField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
15147
15476
|
__typename?: 'JiraParentIssueField';
|
|
15148
15477
|
id: Scalars['ID'];
|
|
@@ -15477,6 +15806,7 @@ export type JiraProject = Node & {
|
|
|
15477
15806
|
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
15478
15807
|
devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
15479
15808
|
linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
15809
|
+
totalLinkedSecurityContainerCount?: Maybe<Scalars['Int']>;
|
|
15480
15810
|
linkedSecurityVulnerabilities?: Maybe<AriGraphRelationshipConnection>;
|
|
15481
15811
|
linkedDocumentationContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
15482
15812
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
@@ -18284,6 +18614,10 @@ export type JiraUpdateNumberFieldInput = {
|
|
|
18284
18614
|
id: Scalars['ID'];
|
|
18285
18615
|
operation: JiraNumberFieldOperationInput;
|
|
18286
18616
|
};
|
|
18617
|
+
export type JiraUpdateParentFieldInput = {
|
|
18618
|
+
id: Scalars['ID'];
|
|
18619
|
+
operation: JiraParentFieldOperationInput;
|
|
18620
|
+
};
|
|
18287
18621
|
export type JiraUpdatePriorityFieldInput = {
|
|
18288
18622
|
id: Scalars['ID'];
|
|
18289
18623
|
operation: JiraPriorityFieldOperationInput;
|
|
@@ -19833,6 +20167,7 @@ export type Mutation = {
|
|
|
19833
20167
|
createPolarisCalculatedField?: Maybe<CreatePolarisCalculatedFieldPayload>;
|
|
19834
20168
|
updatePolarisCalculatedField?: Maybe<UpdatePolarisCalculatedFieldPayload>;
|
|
19835
20169
|
updatePolarisFieldDescription?: Maybe<UpdatePolarisFieldDescriptionPayload>;
|
|
20170
|
+
updatePolarisField?: Maybe<UpdatePolarisFieldPayload>;
|
|
19836
20171
|
updatePolarisFieldEmoji?: Maybe<UpdatePolarisFieldEmojiPayload>;
|
|
19837
20172
|
deletePolarisField?: Maybe<DeletePolarisFieldPayload>;
|
|
19838
20173
|
updatePolarisFieldOptionWeight?: Maybe<UpdatePolarisFieldOptionWeightPayload>;
|
|
@@ -19884,6 +20219,7 @@ export type Mutation = {
|
|
|
19884
20219
|
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
19885
20220
|
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
19886
20221
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
20222
|
+
notifications?: Maybe<InfluentsNotificationMutation>;
|
|
19887
20223
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
19888
20224
|
shepherd?: Maybe<ShepherdMutation>;
|
|
19889
20225
|
helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
|
|
@@ -20083,6 +20419,9 @@ export type MutationUpdatePolarisCalculatedFieldArgs = {
|
|
|
20083
20419
|
export type MutationUpdatePolarisFieldDescriptionArgs = {
|
|
20084
20420
|
input: UpdatePolarisFieldDescriptionInput;
|
|
20085
20421
|
};
|
|
20422
|
+
export type MutationUpdatePolarisFieldArgs = {
|
|
20423
|
+
input: UpdatePolarisFieldInput;
|
|
20424
|
+
};
|
|
20086
20425
|
export type MutationUpdatePolarisFieldEmojiArgs = {
|
|
20087
20426
|
input: UpdatePolarisFieldEmojiInput;
|
|
20088
20427
|
};
|
|
@@ -20549,12 +20888,18 @@ export type NlpFollowUpResponse = {
|
|
|
20549
20888
|
__typename?: 'NlpFollowUpResponse';
|
|
20550
20889
|
followUps?: Maybe<Array<Scalars['String']>>;
|
|
20551
20890
|
};
|
|
20891
|
+
export type NlpFollowUpResult = {
|
|
20892
|
+
__typename?: 'NlpFollowUpResult';
|
|
20893
|
+
followUp?: Maybe<Scalars['String']>;
|
|
20894
|
+
followUpAnswers?: Maybe<Array<NlpSearchResult>>;
|
|
20895
|
+
};
|
|
20552
20896
|
export type NlpSearchResponse = {
|
|
20553
20897
|
__typename?: 'NlpSearchResponse';
|
|
20554
20898
|
nlpResults?: Maybe<Array<NlpSearchResult>>;
|
|
20555
20899
|
uniqueSources?: Maybe<Array<NlpSource>>;
|
|
20556
20900
|
errorState?: Maybe<NlpErrorState>;
|
|
20557
20901
|
disclaimer?: Maybe<NlpDisclaimer>;
|
|
20902
|
+
nlpFollowResults?: Maybe<Array<NlpFollowUpResult>>;
|
|
20558
20903
|
};
|
|
20559
20904
|
export type NlpSearchResult = {
|
|
20560
20905
|
__typename?: 'NlpSearchResult';
|
|
@@ -20572,6 +20917,8 @@ export type NlpSource = {
|
|
|
20572
20917
|
url: Scalars['URL'];
|
|
20573
20918
|
iconUrl?: Maybe<Scalars['URL']>;
|
|
20574
20919
|
type: NlpSearchResultType;
|
|
20920
|
+
lastModified?: Maybe<Scalars['String']>;
|
|
20921
|
+
spaceName?: Maybe<Scalars['String']>;
|
|
20575
20922
|
};
|
|
20576
20923
|
export type Node = {
|
|
20577
20924
|
id: Scalars['ID'];
|
|
@@ -20845,7 +21192,7 @@ export type PartnerCatalogApiPartnerOfferingDetailsArgs = {
|
|
|
20845
21192
|
};
|
|
20846
21193
|
export type PartnerCloudApp = PartnerOfferingNode & {
|
|
20847
21194
|
__typename?: 'PartnerCloudApp';
|
|
20848
|
-
|
|
21195
|
+
id: Scalars['ID'];
|
|
20849
21196
|
name?: Maybe<Scalars['String']>;
|
|
20850
21197
|
sku?: Maybe<Scalars['String']>;
|
|
20851
21198
|
level?: Maybe<Scalars['Int']>;
|
|
@@ -20869,18 +21216,18 @@ export declare enum PartnerCloudLicenseType {
|
|
|
20869
21216
|
export type PartnerCloudProduct = PartnerCloudProductNode & {
|
|
20870
21217
|
__typename?: 'PartnerCloudProduct';
|
|
20871
21218
|
chargeElements?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
20872
|
-
|
|
21219
|
+
id: Scalars['ID'];
|
|
20873
21220
|
name?: Maybe<Scalars['String']>;
|
|
20874
21221
|
offerings?: Maybe<Array<Maybe<PartnerOfferingItem>>>;
|
|
20875
21222
|
uncollectibleAction?: Maybe<PartnerUncollectibleAction>;
|
|
20876
21223
|
};
|
|
20877
21224
|
export type PartnerCloudProductItem = PartnerCloudProductNode & {
|
|
20878
21225
|
__typename?: 'PartnerCloudProductItem';
|
|
20879
|
-
|
|
21226
|
+
id: Scalars['ID'];
|
|
20880
21227
|
name?: Maybe<Scalars['String']>;
|
|
20881
21228
|
};
|
|
20882
21229
|
export type PartnerCloudProductNode = {
|
|
20883
|
-
|
|
21230
|
+
id: Scalars['ID'];
|
|
20884
21231
|
name?: Maybe<Scalars['String']>;
|
|
20885
21232
|
};
|
|
20886
21233
|
export declare enum PartnerCurrency {
|
|
@@ -20894,7 +21241,7 @@ export type PartnerOfferingBtfInput = {
|
|
|
20894
21241
|
};
|
|
20895
21242
|
export type PartnerOfferingCloudInput = {
|
|
20896
21243
|
currency?: Maybe<Array<Maybe<PartnerCurrency>>>;
|
|
20897
|
-
|
|
21244
|
+
id: Scalars['ID'];
|
|
20898
21245
|
pricingPlanType?: Maybe<Array<Maybe<PartnerCloudLicenseType>>>;
|
|
20899
21246
|
};
|
|
20900
21247
|
export type PartnerOfferingDetailsResponse = {
|
|
@@ -20912,7 +21259,7 @@ export type PartnerOfferingItem = PartnerOfferingNode & {
|
|
|
20912
21259
|
__typename?: 'PartnerOfferingItem';
|
|
20913
21260
|
billingType?: Maybe<Scalars['String']>;
|
|
20914
21261
|
hostingType?: Maybe<Scalars['String']>;
|
|
20915
|
-
|
|
21262
|
+
id: Scalars['ID'];
|
|
20916
21263
|
level?: Maybe<Scalars['Int']>;
|
|
20917
21264
|
name?: Maybe<Scalars['String']>;
|
|
20918
21265
|
parent?: Maybe<Scalars['String']>;
|
|
@@ -20927,7 +21274,7 @@ export type PartnerOfferingListResponse = {
|
|
|
20927
21274
|
cloudProducts?: Maybe<Array<Maybe<PartnerCloudProductItem>>>;
|
|
20928
21275
|
};
|
|
20929
21276
|
export type PartnerOfferingNode = {
|
|
20930
|
-
|
|
21277
|
+
id: Scalars['ID'];
|
|
20931
21278
|
name?: Maybe<Scalars['String']>;
|
|
20932
21279
|
};
|
|
20933
21280
|
export type PartnerOrderableItem = PartnerOrderableItemNode & {
|
|
@@ -20965,7 +21312,7 @@ export type PartnerPricingPlan = PartnerPricingPlanNode & {
|
|
|
20965
21312
|
currency?: Maybe<Scalars['String']>;
|
|
20966
21313
|
description?: Maybe<Scalars['String']>;
|
|
20967
21314
|
items?: Maybe<Array<Maybe<PartnerPricingPlanItem>>>;
|
|
20968
|
-
|
|
21315
|
+
id: Scalars['ID'];
|
|
20969
21316
|
primaryCycle?: Maybe<PartnerBillingCycle>;
|
|
20970
21317
|
sku?: Maybe<Scalars['String']>;
|
|
20971
21318
|
type?: Maybe<Scalars['String']>;
|
|
@@ -20981,7 +21328,7 @@ export type PartnerPricingPlanItem = {
|
|
|
20981
21328
|
export type PartnerPricingPlanNode = {
|
|
20982
21329
|
currency?: Maybe<Scalars['String']>;
|
|
20983
21330
|
description?: Maybe<Scalars['String']>;
|
|
20984
|
-
|
|
21331
|
+
id: Scalars['ID'];
|
|
20985
21332
|
type?: Maybe<Scalars['String']>;
|
|
20986
21333
|
};
|
|
20987
21334
|
export type PartnerPricingTier = {
|
|
@@ -22330,6 +22677,7 @@ export type Query = {
|
|
|
22330
22677
|
productListings: Array<ProductListingResult>;
|
|
22331
22678
|
marketplaceAppTrustInformation?: Maybe<MarketplaceAppTrustInformationResult>;
|
|
22332
22679
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
22680
|
+
notifications?: Maybe<InfluentsNotificationQuery>;
|
|
22333
22681
|
extensionsEcho?: Maybe<Scalars['String']>;
|
|
22334
22682
|
extensionContexts?: Maybe<Array<ExtensionContext>>;
|
|
22335
22683
|
extensionContext?: Maybe<ExtensionContext>;
|
|
@@ -22337,6 +22685,7 @@ export type Query = {
|
|
|
22337
22685
|
echo?: Maybe<Scalars['String']>;
|
|
22338
22686
|
diagnostics?: Maybe<Scalars['JSON']>;
|
|
22339
22687
|
node?: Maybe<Node>;
|
|
22688
|
+
featureRelease?: Maybe<FeatureRelease>;
|
|
22340
22689
|
customerService?: Maybe<CustomerServiceQueryApi>;
|
|
22341
22690
|
activities?: Maybe<Activities>;
|
|
22342
22691
|
activity?: Maybe<Activity>;
|
|
@@ -22377,7 +22726,7 @@ export type Query = {
|
|
|
22377
22726
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
22378
22727
|
surfacePlatform: SurfacePlatformQueryApi;
|
|
22379
22728
|
helpLayout?: Maybe<HelpLayoutQueryApi>;
|
|
22380
|
-
sandbox
|
|
22729
|
+
sandbox: SandboxQuery;
|
|
22381
22730
|
xflow?: Maybe<Scalars['String']>;
|
|
22382
22731
|
virtualAgent?: Maybe<VirtualAgentQueryApi>;
|
|
22383
22732
|
jiraReleases?: Maybe<JiraReleases>;
|
|
@@ -22772,6 +23121,7 @@ export type QueryNlpSearchArgs = {
|
|
|
22772
23121
|
query?: Maybe<Scalars['String']>;
|
|
22773
23122
|
locations: Array<Scalars['String']>;
|
|
22774
23123
|
locale?: Maybe<Scalars['String']>;
|
|
23124
|
+
followups_enabled?: Maybe<Scalars['Boolean']>;
|
|
22775
23125
|
};
|
|
22776
23126
|
export type QueryNlpFollowUpArgs = {
|
|
22777
23127
|
query?: Maybe<Scalars['String']>;
|
|
@@ -23612,17 +23962,64 @@ export type RoadmapsQueryRoadmapDeriveFieldsArgs = {
|
|
|
23612
23962
|
};
|
|
23613
23963
|
export type Sandbox = {
|
|
23614
23964
|
__typename?: 'Sandbox';
|
|
23615
|
-
|
|
23965
|
+
orgId: Scalars['ID'];
|
|
23966
|
+
parentCloudId: Scalars['ID'];
|
|
23967
|
+
sandboxCloudId: Scalars['ID'];
|
|
23968
|
+
productKey: Scalars['String'];
|
|
23969
|
+
ifOffline: Scalars['Boolean'];
|
|
23970
|
+
events: Array<SandboxEvent>;
|
|
23616
23971
|
};
|
|
23617
23972
|
export type SandboxEvent = {
|
|
23618
23973
|
__typename?: 'SandboxEvent';
|
|
23619
|
-
orgId
|
|
23974
|
+
orgId: Scalars['ID'];
|
|
23975
|
+
sandboxCloudId: Scalars['ID'];
|
|
23976
|
+
productKey: Scalars['String'];
|
|
23977
|
+
event: SandboxEventType;
|
|
23978
|
+
status: SandboxEventStatus;
|
|
23979
|
+
result: SandboxEventResult;
|
|
23980
|
+
source: SandboxEventSource;
|
|
23981
|
+
groupId: Scalars['String'];
|
|
23982
|
+
timestamp: Scalars['Int'];
|
|
23983
|
+
};
|
|
23984
|
+
export declare enum SandboxEventResult {
|
|
23985
|
+
Successful = "successful",
|
|
23986
|
+
Failed = "failed",
|
|
23987
|
+
Incomplete = "incomplete",
|
|
23988
|
+
Unknown = "unknown"
|
|
23989
|
+
}
|
|
23990
|
+
export declare enum SandboxEventSource {
|
|
23991
|
+
User = "user",
|
|
23992
|
+
Admin = "admin",
|
|
23993
|
+
System = "system"
|
|
23994
|
+
}
|
|
23995
|
+
export declare enum SandboxEventStatus {
|
|
23996
|
+
Started = "started",
|
|
23997
|
+
AwaitingReplay = "awaiting_replay",
|
|
23998
|
+
Completed = "completed",
|
|
23999
|
+
Cancelled = "cancelled"
|
|
24000
|
+
}
|
|
24001
|
+
export declare enum SandboxEventType {
|
|
24002
|
+
Create = "create",
|
|
24003
|
+
Reshard = "reshard",
|
|
24004
|
+
SoftDelete = "soft_delete",
|
|
24005
|
+
HardDelete = "hard_delete",
|
|
24006
|
+
Rollback = "rollback",
|
|
24007
|
+
Reset = "reset",
|
|
24008
|
+
DataClone = "data_clone",
|
|
24009
|
+
DataCloneSelective = "data_clone_selective"
|
|
24010
|
+
}
|
|
24011
|
+
export type SandboxQuery = {
|
|
24012
|
+
__typename?: 'SandboxQuery';
|
|
24013
|
+
sandboxes: Array<Sandbox>;
|
|
24014
|
+
};
|
|
24015
|
+
export type SandboxQuerySandboxesArgs = {
|
|
24016
|
+
orgId: Scalars['ID'];
|
|
23620
24017
|
};
|
|
23621
24018
|
export type SandboxSubscription = {
|
|
23622
24019
|
__typename?: 'SandboxSubscription';
|
|
23623
|
-
|
|
24020
|
+
onSandboxEventCreated: SandboxEvent;
|
|
23624
24021
|
};
|
|
23625
|
-
export type
|
|
24022
|
+
export type SandboxSubscriptionOnSandboxEventCreatedArgs = {
|
|
23626
24023
|
orgId: Scalars['ID'];
|
|
23627
24024
|
};
|
|
23628
24025
|
export type ScanPolarisProjectInput = {
|
|
@@ -25336,7 +25733,7 @@ export type Subscription = {
|
|
|
25336
25733
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
25337
25734
|
onJiraIssueCreatedForUser?: Maybe<JiraOnIssueCreatedForUserResponseType>;
|
|
25338
25735
|
testing?: Maybe<TestingSubscription>;
|
|
25339
|
-
sandbox
|
|
25736
|
+
sandbox: SandboxSubscription;
|
|
25340
25737
|
};
|
|
25341
25738
|
export type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
25342
25739
|
cloudId: Scalars['ID'];
|
|
@@ -26485,6 +26882,7 @@ export type TrelloAttachmentEdge = {
|
|
|
26485
26882
|
export type TrelloBoard = Node & {
|
|
26486
26883
|
__typename?: 'TrelloBoard';
|
|
26487
26884
|
closed: Scalars['Boolean'];
|
|
26885
|
+
description?: Maybe<TrelloDescription>;
|
|
26488
26886
|
enterpriseOwned: Scalars['Boolean'];
|
|
26489
26887
|
galleryInfo?: Maybe<TrelloTemplateGalleryItemInfo>;
|
|
26490
26888
|
id: Scalars['ID'];
|
|
@@ -26633,6 +27031,7 @@ export type TrelloBoardViewer = {
|
|
|
26633
27031
|
__typename?: 'TrelloBoardViewer';
|
|
26634
27032
|
lastSeenAt?: Maybe<Scalars['DateTime']>;
|
|
26635
27033
|
starred: Scalars['Boolean'];
|
|
27034
|
+
subscribed?: Maybe<Scalars['Boolean']>;
|
|
26636
27035
|
};
|
|
26637
27036
|
export type TrelloCard = Node & {
|
|
26638
27037
|
__typename?: 'TrelloCard';
|
|
@@ -26859,7 +27258,7 @@ export type TrelloChecklistEdge = {
|
|
|
26859
27258
|
node: TrelloChecklist;
|
|
26860
27259
|
};
|
|
26861
27260
|
export type TrelloCreateCardInput = {
|
|
26862
|
-
idList
|
|
27261
|
+
idList: Scalars['ID'];
|
|
26863
27262
|
name: Scalars['String'];
|
|
26864
27263
|
};
|
|
26865
27264
|
export type TrelloCreateCardPayload = Payload & {
|
|
@@ -27062,6 +27461,7 @@ export type TrelloMember = Node & {
|
|
|
27062
27461
|
__typename?: 'TrelloMember';
|
|
27063
27462
|
id: Scalars['ID'];
|
|
27064
27463
|
objectId: Scalars['ID'];
|
|
27464
|
+
user?: Maybe<User>;
|
|
27065
27465
|
username?: Maybe<Scalars['String']>;
|
|
27066
27466
|
};
|
|
27067
27467
|
export type TrelloMutationApi = {
|
|
@@ -27481,6 +27881,16 @@ export type UpdateCompassScorecardPayload = Payload & {
|
|
|
27481
27881
|
errors?: Maybe<Array<MutationError>>;
|
|
27482
27882
|
scorecardDetails?: Maybe<CompassScorecard>;
|
|
27483
27883
|
};
|
|
27884
|
+
export type UpdateCompassUserDefinedParametersInput = {
|
|
27885
|
+
componentId: Scalars['ID'];
|
|
27886
|
+
createParameters?: Maybe<Array<CreateCompassUserDefinedParameterInput>>;
|
|
27887
|
+
};
|
|
27888
|
+
export type UpdateCompassUserDefinedParametersPayload = Payload & {
|
|
27889
|
+
__typename?: 'UpdateCompassUserDefinedParametersPayload';
|
|
27890
|
+
success: Scalars['Boolean'];
|
|
27891
|
+
errors?: Maybe<Array<MutationError>>;
|
|
27892
|
+
userParameterDetails?: Maybe<CompassUserDefinedParameters>;
|
|
27893
|
+
};
|
|
27484
27894
|
export type UpdateCustomFilterInput = {
|
|
27485
27895
|
boardId: Scalars['ID'];
|
|
27486
27896
|
id: Scalars['ID'];
|
|
@@ -27662,6 +28072,12 @@ export type UpdatePolarisFieldEmojiPayload = Payload & {
|
|
|
27662
28072
|
errors?: Maybe<Array<MutationError>>;
|
|
27663
28073
|
node?: Maybe<PolarisIdeaField>;
|
|
27664
28074
|
};
|
|
28075
|
+
export type UpdatePolarisFieldInput = {
|
|
28076
|
+
field: Scalars['ID'];
|
|
28077
|
+
ideaType: Scalars['ID'];
|
|
28078
|
+
name: Scalars['String'];
|
|
28079
|
+
description: Scalars['String'];
|
|
28080
|
+
};
|
|
27665
28081
|
export type UpdatePolarisFieldOptionWeightInput = {
|
|
27666
28082
|
project: Scalars['ID'];
|
|
27667
28083
|
field: Scalars['ID'];
|
|
@@ -27673,6 +28089,12 @@ export type UpdatePolarisFieldOptionWeightPayload = Payload & {
|
|
|
27673
28089
|
success: Scalars['Boolean'];
|
|
27674
28090
|
errors?: Maybe<Array<MutationError>>;
|
|
27675
28091
|
};
|
|
28092
|
+
export type UpdatePolarisFieldPayload = Payload & {
|
|
28093
|
+
__typename?: 'UpdatePolarisFieldPayload';
|
|
28094
|
+
success: Scalars['Boolean'];
|
|
28095
|
+
errors?: Maybe<Array<MutationError>>;
|
|
28096
|
+
node?: Maybe<PolarisIdeaField>;
|
|
28097
|
+
};
|
|
27676
28098
|
export type UpdatePolarisIdeaInput = {
|
|
27677
28099
|
archived?: Maybe<Scalars['Boolean']>;
|
|
27678
28100
|
lastCommentsViewedTimestamp?: Maybe<Scalars['String']>;
|