@forge/cli-shared 6.6.0-next.9 → 6.6.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 +43 -0
- package/LICENSE.txt +7 -0
- package/out/graphql/graphql-types.d.ts +889 -21
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +94 -30
- package/package.json +5 -5
|
@@ -1179,7 +1179,8 @@ export declare type AppEnvironmentVersion = {
|
|
|
1179
1179
|
isLatest: Scalars['Boolean']['output'];
|
|
1180
1180
|
migrationKeys?: Maybe<MigrationKeys>;
|
|
1181
1181
|
permissions: Array<AppPermission>;
|
|
1182
|
-
primaryProduct?: Maybe<
|
|
1182
|
+
primaryProduct?: Maybe<EcosystemRequiredProduct>;
|
|
1183
|
+
requiredProducts?: Maybe<Array<EcosystemRequiredProduct>>;
|
|
1183
1184
|
requiresLicense: Scalars['Boolean']['output'];
|
|
1184
1185
|
storage: Storage;
|
|
1185
1186
|
trustSignal: TrustSignal;
|
|
@@ -1233,11 +1234,11 @@ export declare type AppInstallation = {
|
|
|
1233
1234
|
app?: Maybe<App>;
|
|
1234
1235
|
appEnvironment?: Maybe<AppEnvironment>;
|
|
1235
1236
|
appEnvironmentVersion?: Maybe<AppEnvironmentVersion>;
|
|
1237
|
+
config?: Maybe<Array<Maybe<AppInstallationConfig>>>;
|
|
1236
1238
|
createdAt: Scalars['DateTime']['output'];
|
|
1237
1239
|
createdBy?: Maybe<User>;
|
|
1238
1240
|
dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
|
|
1239
1241
|
id: Scalars['ID']['output'];
|
|
1240
|
-
installationConfigurations?: Maybe<Array<Maybe<AppInstallationConfig>>>;
|
|
1241
1242
|
installationContext: Scalars['ID']['output'];
|
|
1242
1243
|
isRecoverable: Scalars['Boolean']['output'];
|
|
1243
1244
|
license?: Maybe<AppInstallationLicense>;
|
|
@@ -1258,8 +1259,6 @@ export declare type AppInstallationByIndexEdge = {
|
|
|
1258
1259
|
};
|
|
1259
1260
|
export declare type AppInstallationConfig = {
|
|
1260
1261
|
__typename?: 'AppInstallationConfig';
|
|
1261
|
-
id: Scalars['ID']['output'];
|
|
1262
|
-
idType: EcosystemAppInstallationConfigIdType;
|
|
1263
1262
|
key: EcosystemInstallationOverrideKeys;
|
|
1264
1263
|
value: Scalars['Boolean']['output'];
|
|
1265
1264
|
};
|
|
@@ -1487,6 +1486,9 @@ export declare type AppLogsWithMetaDataResponse = {
|
|
|
1487
1486
|
export declare enum AppNetworkEgressCategory {
|
|
1488
1487
|
Analytics = "ANALYTICS"
|
|
1489
1488
|
}
|
|
1489
|
+
export declare enum AppNetworkEgressCategoryExtension {
|
|
1490
|
+
Analytics = "ANALYTICS"
|
|
1491
|
+
}
|
|
1490
1492
|
export declare type AppNetworkEgressPermission = {
|
|
1491
1493
|
__typename?: 'AppNetworkEgressPermission';
|
|
1492
1494
|
addresses?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -1497,6 +1499,8 @@ export declare type AppNetworkEgressPermission = {
|
|
|
1497
1499
|
export declare type AppNetworkEgressPermissionExtension = {
|
|
1498
1500
|
__typename?: 'AppNetworkEgressPermissionExtension';
|
|
1499
1501
|
addresses?: Maybe<Array<Scalars['String']['output']>>;
|
|
1502
|
+
category?: Maybe<AppNetworkEgressCategoryExtension>;
|
|
1503
|
+
inScopeEUD?: Maybe<Scalars['Boolean']['output']>;
|
|
1500
1504
|
type?: Maybe<AppNetworkPermissionTypeExtension>;
|
|
1501
1505
|
};
|
|
1502
1506
|
export declare enum AppNetworkPermissionType {
|
|
@@ -5554,6 +5558,12 @@ export declare type CompassCreateDeploymentEventPropertiesInput = {
|
|
|
5554
5558
|
startedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
5555
5559
|
state: CompassDeploymentEventState;
|
|
5556
5560
|
};
|
|
5561
|
+
export declare type CompassCreateDynamicScorecardCriteriaInput = {
|
|
5562
|
+
expressions: Array<CompassCreateScorecardCriterionExpressionTreeInput>;
|
|
5563
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
5564
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
5565
|
+
weight: Scalars['Int']['input'];
|
|
5566
|
+
};
|
|
5557
5567
|
export declare type CompassCreateEventInput = {
|
|
5558
5568
|
cloudId: Scalars['ID']['input'];
|
|
5559
5569
|
componentId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -5618,6 +5628,8 @@ export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
|
5618
5628
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
5619
5629
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
5620
5630
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
5631
|
+
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
5632
|
+
textComparatorValue?: InputMaybe<Scalars['String']['input']>;
|
|
5621
5633
|
weight: Scalars['Int']['input'];
|
|
5622
5634
|
};
|
|
5623
5635
|
export declare type CompassCreateIncidentEventInput = {
|
|
@@ -5719,6 +5731,79 @@ export declare type CompassCreateScorecardCriteriaScoringStrategyRulesInput = {
|
|
|
5719
5731
|
onFalse?: InputMaybe<CompassScorecardCriteriaScoringStrategyRuleAction>;
|
|
5720
5732
|
onTrue?: InputMaybe<CompassScorecardCriteriaScoringStrategyRuleAction>;
|
|
5721
5733
|
};
|
|
5734
|
+
export declare type CompassCreateScorecardCriterionExpressionAndGroupInput = {
|
|
5735
|
+
expressions: Array<CompassCreateScorecardCriterionExpressionGroupInput>;
|
|
5736
|
+
};
|
|
5737
|
+
export declare type CompassCreateScorecardCriterionExpressionBooleanInput = {
|
|
5738
|
+
booleanComparator: CompassScorecardCriterionExpressionBooleanComparatorOptions;
|
|
5739
|
+
booleanComparatorValue: Scalars['Boolean']['input'];
|
|
5740
|
+
requirement: CompassCreateScorecardCriterionExpressionRequirementInput;
|
|
5741
|
+
};
|
|
5742
|
+
export declare type CompassCreateScorecardCriterionExpressionCollectionInput = {
|
|
5743
|
+
collectionComparator: CompassScorecardCriterionExpressionCollectionComparatorOptions;
|
|
5744
|
+
collectionComparatorValue: Array<Scalars['ID']['input']>;
|
|
5745
|
+
requirement: CompassCreateScorecardCriterionExpressionRequirementInput;
|
|
5746
|
+
};
|
|
5747
|
+
export declare type CompassCreateScorecardCriterionExpressionEvaluableInput = {
|
|
5748
|
+
expression: CompassCreateScorecardCriterionExpressionInput;
|
|
5749
|
+
};
|
|
5750
|
+
export declare type CompassCreateScorecardCriterionExpressionEvaluationRulesInput = {
|
|
5751
|
+
onFalse?: InputMaybe<CompassScorecardCriterionExpressionEvaluationRuleAction>;
|
|
5752
|
+
onTrue?: InputMaybe<CompassScorecardCriterionExpressionEvaluationRuleAction>;
|
|
5753
|
+
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
5754
|
+
};
|
|
5755
|
+
export declare type CompassCreateScorecardCriterionExpressionGroupInput = {
|
|
5756
|
+
and?: InputMaybe<CompassCreateScorecardCriterionExpressionAndGroupInput>;
|
|
5757
|
+
evaluable?: InputMaybe<CompassCreateScorecardCriterionExpressionEvaluableInput>;
|
|
5758
|
+
or?: InputMaybe<CompassCreateScorecardCriterionExpressionOrGroupInput>;
|
|
5759
|
+
};
|
|
5760
|
+
export declare type CompassCreateScorecardCriterionExpressionInput = {
|
|
5761
|
+
boolean?: InputMaybe<CompassCreateScorecardCriterionExpressionBooleanInput>;
|
|
5762
|
+
collection?: InputMaybe<CompassCreateScorecardCriterionExpressionCollectionInput>;
|
|
5763
|
+
membership?: InputMaybe<CompassCreateScorecardCriterionExpressionMembershipInput>;
|
|
5764
|
+
number?: InputMaybe<CompassCreateScorecardCriterionExpressionNumberInput>;
|
|
5765
|
+
text?: InputMaybe<CompassCreateScorecardCriterionExpressionTextInput>;
|
|
5766
|
+
};
|
|
5767
|
+
export declare type CompassCreateScorecardCriterionExpressionMembershipInput = {
|
|
5768
|
+
membershipComparator: CompassScorecardCriterionExpressionMembershipComparatorOptions;
|
|
5769
|
+
membershipComparatorValue: Array<Scalars['ID']['input']>;
|
|
5770
|
+
requirement: CompassCreateScorecardCriterionExpressionRequirementInput;
|
|
5771
|
+
};
|
|
5772
|
+
export declare type CompassCreateScorecardCriterionExpressionNumberInput = {
|
|
5773
|
+
numberComparator: CompassScorecardCriterionExpressionNumberComparatorOptions;
|
|
5774
|
+
numberComparatorValue: Scalars['Float']['input'];
|
|
5775
|
+
requirement: CompassCreateScorecardCriterionExpressionRequirementInput;
|
|
5776
|
+
};
|
|
5777
|
+
export declare type CompassCreateScorecardCriterionExpressionOrGroupInput = {
|
|
5778
|
+
expressions: Array<CompassCreateScorecardCriterionExpressionGroupInput>;
|
|
5779
|
+
};
|
|
5780
|
+
export declare type CompassCreateScorecardCriterionExpressionRequirementCustomFieldInput = {
|
|
5781
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
5782
|
+
};
|
|
5783
|
+
export declare type CompassCreateScorecardCriterionExpressionRequirementDefaultFieldInput = {
|
|
5784
|
+
fieldName: Scalars['String']['input'];
|
|
5785
|
+
};
|
|
5786
|
+
export declare type CompassCreateScorecardCriterionExpressionRequirementInput = {
|
|
5787
|
+
customField?: InputMaybe<CompassCreateScorecardCriterionExpressionRequirementCustomFieldInput>;
|
|
5788
|
+
defaultField?: InputMaybe<CompassCreateScorecardCriterionExpressionRequirementDefaultFieldInput>;
|
|
5789
|
+
metric?: InputMaybe<CompassCreateScorecardCriterionExpressionRequirementMetricInput>;
|
|
5790
|
+
};
|
|
5791
|
+
export declare type CompassCreateScorecardCriterionExpressionRequirementMetricInput = {
|
|
5792
|
+
metricDefinitionId: Scalars['ID']['input'];
|
|
5793
|
+
};
|
|
5794
|
+
export declare type CompassCreateScorecardCriterionExpressionRequirementScorecardInput = {
|
|
5795
|
+
fieldName: Scalars['String']['input'];
|
|
5796
|
+
scorecardId: Scalars['ID']['input'];
|
|
5797
|
+
};
|
|
5798
|
+
export declare type CompassCreateScorecardCriterionExpressionTextInput = {
|
|
5799
|
+
requirement: CompassCreateScorecardCriterionExpressionRequirementInput;
|
|
5800
|
+
textComparator: CompassScorecardCriterionExpressionTextComparatorOptions;
|
|
5801
|
+
textComparatorValue: Scalars['String']['input'];
|
|
5802
|
+
};
|
|
5803
|
+
export declare type CompassCreateScorecardCriterionExpressionTreeInput = {
|
|
5804
|
+
evaluationRules?: InputMaybe<CompassCreateScorecardCriterionExpressionEvaluationRulesInput>;
|
|
5805
|
+
root: CompassCreateScorecardCriterionExpressionGroupInput;
|
|
5806
|
+
};
|
|
5722
5807
|
export declare type CompassCreateTeamCheckinActionInput = {
|
|
5723
5808
|
actionText: Scalars['String']['input'];
|
|
5724
5809
|
completed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -6306,6 +6391,19 @@ export declare type CompassDocumentationCategoryEdge = {
|
|
|
6306
6391
|
cursor: Scalars['String']['output'];
|
|
6307
6392
|
node?: Maybe<CompassDocumentationCategory>;
|
|
6308
6393
|
};
|
|
6394
|
+
export declare type CompassDynamicScorecardCriteria = CompassScorecardCriteria & {
|
|
6395
|
+
__typename?: 'CompassDynamicScorecardCriteria';
|
|
6396
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
6397
|
+
expressions?: Maybe<Array<CompassScorecardCriterionExpressionTree>>;
|
|
6398
|
+
id: Scalars['ID']['output'];
|
|
6399
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
6400
|
+
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
6401
|
+
scoringStrategyRules: CompassScorecardCriteriaScoringStrategyRules;
|
|
6402
|
+
weight: Scalars['Int']['output'];
|
|
6403
|
+
};
|
|
6404
|
+
export declare type CompassDynamicScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
6405
|
+
query?: InputMaybe<CompassScorecardCriteriaScoreQuery>;
|
|
6406
|
+
};
|
|
6309
6407
|
export declare type CompassEntityProperty = {
|
|
6310
6408
|
__typename?: 'CompassEntityProperty';
|
|
6311
6409
|
changeMetadata?: Maybe<CompassChangeMetadata>;
|
|
@@ -6597,6 +6695,8 @@ export declare type CompassHasCustomTextFieldScorecardCriteria = CompassCustomFi
|
|
|
6597
6695
|
name?: Maybe<Scalars['String']['output']>;
|
|
6598
6696
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
6599
6697
|
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
6698
|
+
textComparator?: Maybe<CompassCriteriaTextComparatorOptions>;
|
|
6699
|
+
textComparatorValue?: Maybe<Scalars['String']['output']>;
|
|
6600
6700
|
weight: Scalars['Int']['output'];
|
|
6601
6701
|
};
|
|
6602
6702
|
export declare type CompassHasCustomTextFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -7507,6 +7607,129 @@ export declare type CompassScorecardCriteriaScoringStrategyRules = {
|
|
|
7507
7607
|
onFalse?: Maybe<Scalars['String']['output']>;
|
|
7508
7608
|
onTrue?: Maybe<Scalars['String']['output']>;
|
|
7509
7609
|
};
|
|
7610
|
+
export declare type CompassScorecardCriterionExpression = CompassScorecardCriterionExpressionBoolean | CompassScorecardCriterionExpressionCollection | CompassScorecardCriterionExpressionMembership | CompassScorecardCriterionExpressionNumber | CompassScorecardCriterionExpressionText;
|
|
7611
|
+
export declare type CompassScorecardCriterionExpressionAndGroup = {
|
|
7612
|
+
__typename?: 'CompassScorecardCriterionExpressionAndGroup';
|
|
7613
|
+
and?: Maybe<Array<CompassScorecardCriterionExpressionGroup>>;
|
|
7614
|
+
};
|
|
7615
|
+
export declare type CompassScorecardCriterionExpressionBoolean = {
|
|
7616
|
+
__typename?: 'CompassScorecardCriterionExpressionBoolean';
|
|
7617
|
+
booleanComparator?: Maybe<Scalars['String']['output']>;
|
|
7618
|
+
booleanComparatorValue?: Maybe<Scalars['Boolean']['output']>;
|
|
7619
|
+
requirement?: Maybe<CompassScorecardCriterionExpressionRequirement>;
|
|
7620
|
+
};
|
|
7621
|
+
export declare enum CompassScorecardCriterionExpressionBooleanComparatorOptions {
|
|
7622
|
+
EqualTo = "EQUAL_TO",
|
|
7623
|
+
NotEqualTo = "NOT_EQUAL_TO"
|
|
7624
|
+
}
|
|
7625
|
+
export declare type CompassScorecardCriterionExpressionCapability = {
|
|
7626
|
+
__typename?: 'CompassScorecardCriterionExpressionCapability';
|
|
7627
|
+
customFields?: Maybe<Array<CompassScorecardCriterionExpressionCapabilityCustomField>>;
|
|
7628
|
+
defaultFields?: Maybe<Array<CompassScorecardCriterionExpressionCapabilityDefaultField>>;
|
|
7629
|
+
metrics?: Maybe<Array<CompassScorecardCriterionExpressionCapabilityMetric>>;
|
|
7630
|
+
};
|
|
7631
|
+
export declare type CompassScorecardCriterionExpressionCapabilityCustomField = {
|
|
7632
|
+
__typename?: 'CompassScorecardCriterionExpressionCapabilityCustomField';
|
|
7633
|
+
customFieldDefinitionId?: Maybe<Scalars['ID']['output']>;
|
|
7634
|
+
};
|
|
7635
|
+
export declare type CompassScorecardCriterionExpressionCapabilityDefaultField = {
|
|
7636
|
+
__typename?: 'CompassScorecardCriterionExpressionCapabilityDefaultField';
|
|
7637
|
+
fieldName?: Maybe<Scalars['String']['output']>;
|
|
7638
|
+
};
|
|
7639
|
+
export declare type CompassScorecardCriterionExpressionCapabilityMetric = {
|
|
7640
|
+
__typename?: 'CompassScorecardCriterionExpressionCapabilityMetric';
|
|
7641
|
+
metricDefinitionId?: Maybe<Scalars['ID']['output']>;
|
|
7642
|
+
};
|
|
7643
|
+
export declare type CompassScorecardCriterionExpressionCollection = {
|
|
7644
|
+
__typename?: 'CompassScorecardCriterionExpressionCollection';
|
|
7645
|
+
collectionComparator?: Maybe<Scalars['String']['output']>;
|
|
7646
|
+
collectionComparatorValue?: Maybe<Array<Scalars['String']['output']>>;
|
|
7647
|
+
requirement?: Maybe<CompassScorecardCriterionExpressionRequirement>;
|
|
7648
|
+
};
|
|
7649
|
+
export declare enum CompassScorecardCriterionExpressionCollectionComparatorOptions {
|
|
7650
|
+
AllOf = "ALL_OF",
|
|
7651
|
+
AnyOf = "ANY_OF",
|
|
7652
|
+
NoneOf = "NONE_OF"
|
|
7653
|
+
}
|
|
7654
|
+
export declare type CompassScorecardCriterionExpressionEvaluable = {
|
|
7655
|
+
__typename?: 'CompassScorecardCriterionExpressionEvaluable';
|
|
7656
|
+
expression?: Maybe<CompassScorecardCriterionExpression>;
|
|
7657
|
+
};
|
|
7658
|
+
export declare enum CompassScorecardCriterionExpressionEvaluationRuleAction {
|
|
7659
|
+
Continue = "CONTINUE",
|
|
7660
|
+
ReturnFailed = "RETURN_FAILED",
|
|
7661
|
+
ReturnPassed = "RETURN_PASSED",
|
|
7662
|
+
ReturnSkipped = "RETURN_SKIPPED"
|
|
7663
|
+
}
|
|
7664
|
+
export declare type CompassScorecardCriterionExpressionEvaluationRules = {
|
|
7665
|
+
__typename?: 'CompassScorecardCriterionExpressionEvaluationRules';
|
|
7666
|
+
onFalse?: Maybe<Scalars['String']['output']>;
|
|
7667
|
+
onTrue?: Maybe<Scalars['String']['output']>;
|
|
7668
|
+
weight?: Maybe<Scalars['Int']['output']>;
|
|
7669
|
+
};
|
|
7670
|
+
export declare type CompassScorecardCriterionExpressionGroup = CompassScorecardCriterionExpressionAndGroup | CompassScorecardCriterionExpressionEvaluable | CompassScorecardCriterionExpressionOrGroup;
|
|
7671
|
+
export declare type CompassScorecardCriterionExpressionMembership = {
|
|
7672
|
+
__typename?: 'CompassScorecardCriterionExpressionMembership';
|
|
7673
|
+
membershipComparator?: Maybe<Scalars['String']['output']>;
|
|
7674
|
+
membershipComparatorValue?: Maybe<Array<Scalars['String']['output']>>;
|
|
7675
|
+
requirement?: Maybe<CompassScorecardCriterionExpressionRequirement>;
|
|
7676
|
+
};
|
|
7677
|
+
export declare enum CompassScorecardCriterionExpressionMembershipComparatorOptions {
|
|
7678
|
+
In = "IN",
|
|
7679
|
+
NotIn = "NOT_IN"
|
|
7680
|
+
}
|
|
7681
|
+
export declare type CompassScorecardCriterionExpressionNumber = {
|
|
7682
|
+
__typename?: 'CompassScorecardCriterionExpressionNumber';
|
|
7683
|
+
numberComparator?: Maybe<Scalars['String']['output']>;
|
|
7684
|
+
numberComparatorValue?: Maybe<Scalars['Float']['output']>;
|
|
7685
|
+
requirement?: Maybe<CompassScorecardCriterionExpressionRequirement>;
|
|
7686
|
+
};
|
|
7687
|
+
export declare enum CompassScorecardCriterionExpressionNumberComparatorOptions {
|
|
7688
|
+
EqualTo = "EQUAL_TO",
|
|
7689
|
+
GreaterThan = "GREATER_THAN",
|
|
7690
|
+
GreaterThanOrEqualTo = "GREATER_THAN_OR_EQUAL_TO",
|
|
7691
|
+
LessThan = "LESS_THAN",
|
|
7692
|
+
LessThanOrEqualTo = "LESS_THAN_OR_EQUAL_TO",
|
|
7693
|
+
NotEqualTo = "NOT_EQUAL_TO"
|
|
7694
|
+
}
|
|
7695
|
+
export declare type CompassScorecardCriterionExpressionOrGroup = {
|
|
7696
|
+
__typename?: 'CompassScorecardCriterionExpressionOrGroup';
|
|
7697
|
+
or?: Maybe<Array<CompassScorecardCriterionExpressionGroup>>;
|
|
7698
|
+
};
|
|
7699
|
+
export declare type CompassScorecardCriterionExpressionRequirement = CompassScorecardCriterionExpressionRequirementCustomField | CompassScorecardCriterionExpressionRequirementDefaultField | CompassScorecardCriterionExpressionRequirementMetric | CompassScorecardCriterionExpressionRequirementScorecard;
|
|
7700
|
+
export declare type CompassScorecardCriterionExpressionRequirementCustomField = {
|
|
7701
|
+
__typename?: 'CompassScorecardCriterionExpressionRequirementCustomField';
|
|
7702
|
+
customFieldDefinitionId?: Maybe<Scalars['ID']['output']>;
|
|
7703
|
+
};
|
|
7704
|
+
export declare type CompassScorecardCriterionExpressionRequirementDefaultField = {
|
|
7705
|
+
__typename?: 'CompassScorecardCriterionExpressionRequirementDefaultField';
|
|
7706
|
+
fieldName?: Maybe<Scalars['String']['output']>;
|
|
7707
|
+
};
|
|
7708
|
+
export declare type CompassScorecardCriterionExpressionRequirementMetric = {
|
|
7709
|
+
__typename?: 'CompassScorecardCriterionExpressionRequirementMetric';
|
|
7710
|
+
metricDefinitionId?: Maybe<Scalars['ID']['output']>;
|
|
7711
|
+
};
|
|
7712
|
+
export declare type CompassScorecardCriterionExpressionRequirementScorecard = {
|
|
7713
|
+
__typename?: 'CompassScorecardCriterionExpressionRequirementScorecard';
|
|
7714
|
+
fieldName?: Maybe<Scalars['String']['output']>;
|
|
7715
|
+
scorecardId?: Maybe<Scalars['ID']['output']>;
|
|
7716
|
+
};
|
|
7717
|
+
export declare type CompassScorecardCriterionExpressionText = {
|
|
7718
|
+
__typename?: 'CompassScorecardCriterionExpressionText';
|
|
7719
|
+
requirement?: Maybe<CompassScorecardCriterionExpressionRequirement>;
|
|
7720
|
+
textComparator?: Maybe<Scalars['String']['output']>;
|
|
7721
|
+
textComparatorValue?: Maybe<Scalars['String']['output']>;
|
|
7722
|
+
};
|
|
7723
|
+
export declare enum CompassScorecardCriterionExpressionTextComparatorOptions {
|
|
7724
|
+
EqualTo = "EQUAL_TO",
|
|
7725
|
+
NotEqualTo = "NOT_EQUAL_TO",
|
|
7726
|
+
Regex = "REGEX"
|
|
7727
|
+
}
|
|
7728
|
+
export declare type CompassScorecardCriterionExpressionTree = {
|
|
7729
|
+
__typename?: 'CompassScorecardCriterionExpressionTree';
|
|
7730
|
+
evaluationRules?: Maybe<CompassScorecardCriterionExpressionEvaluationRules>;
|
|
7731
|
+
root?: Maybe<CompassScorecardCriterionExpressionGroup>;
|
|
7732
|
+
};
|
|
7510
7733
|
export declare type CompassScorecardCriterionScore = {
|
|
7511
7734
|
criterionId: Scalars['ID']['output'];
|
|
7512
7735
|
explanation: Scalars['String']['output'];
|
|
@@ -8077,6 +8300,13 @@ export declare type CompassUpdateDocumentPayload = Payload & {
|
|
|
8077
8300
|
errors?: Maybe<Array<MutationError>>;
|
|
8078
8301
|
success: Scalars['Boolean']['output'];
|
|
8079
8302
|
};
|
|
8303
|
+
export declare type CompassUpdateDynamicScorecardCriteriaInput = {
|
|
8304
|
+
expressions?: InputMaybe<Array<CompassUpdateScorecardCriterionExpressionTreeInput>>;
|
|
8305
|
+
id: Scalars['ID']['input'];
|
|
8306
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
8307
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
8308
|
+
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
8309
|
+
};
|
|
8080
8310
|
export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
8081
8311
|
booleanComparator?: InputMaybe<CompassCriteriaBooleanComparatorOptions>;
|
|
8082
8312
|
booleanComparatorValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -8123,6 +8353,8 @@ export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
|
8123
8353
|
id: Scalars['ID']['input'];
|
|
8124
8354
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
8125
8355
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
8356
|
+
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
8357
|
+
textComparatorValue?: InputMaybe<Scalars['String']['input']>;
|
|
8126
8358
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
8127
8359
|
};
|
|
8128
8360
|
export declare type CompassUpdateJqlMetricSourceUserInput = {
|
|
@@ -8169,6 +8401,79 @@ export declare type CompassUpdateScorecardCriteriaScoringStrategyRulesInput = {
|
|
|
8169
8401
|
onFalse?: InputMaybe<CompassScorecardCriteriaScoringStrategyRuleAction>;
|
|
8170
8402
|
onTrue?: InputMaybe<CompassScorecardCriteriaScoringStrategyRuleAction>;
|
|
8171
8403
|
};
|
|
8404
|
+
export declare type CompassUpdateScorecardCriterionExpressionAndGroupInput = {
|
|
8405
|
+
expressions: Array<CompassUpdateScorecardCriterionExpressionGroupInput>;
|
|
8406
|
+
};
|
|
8407
|
+
export declare type CompassUpdateScorecardCriterionExpressionBooleanInput = {
|
|
8408
|
+
booleanComparator: CompassScorecardCriterionExpressionBooleanComparatorOptions;
|
|
8409
|
+
booleanComparatorValue: Scalars['Boolean']['input'];
|
|
8410
|
+
requirement: CompassUpdateScorecardCriterionExpressionRequirementInput;
|
|
8411
|
+
};
|
|
8412
|
+
export declare type CompassUpdateScorecardCriterionExpressionCollectionInput = {
|
|
8413
|
+
collectionComparator: CompassScorecardCriterionExpressionCollectionComparatorOptions;
|
|
8414
|
+
collectionComparatorValue: Array<Scalars['ID']['input']>;
|
|
8415
|
+
requirement: CompassUpdateScorecardCriterionExpressionRequirementInput;
|
|
8416
|
+
};
|
|
8417
|
+
export declare type CompassUpdateScorecardCriterionExpressionEvaluableInput = {
|
|
8418
|
+
expression: CompassUpdateScorecardCriterionExpressionInput;
|
|
8419
|
+
};
|
|
8420
|
+
export declare type CompassUpdateScorecardCriterionExpressionEvaluationRulesInput = {
|
|
8421
|
+
onFalse?: InputMaybe<CompassScorecardCriterionExpressionEvaluationRuleAction>;
|
|
8422
|
+
onTrue?: InputMaybe<CompassScorecardCriterionExpressionEvaluationRuleAction>;
|
|
8423
|
+
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
8424
|
+
};
|
|
8425
|
+
export declare type CompassUpdateScorecardCriterionExpressionGroupInput = {
|
|
8426
|
+
and?: InputMaybe<CompassUpdateScorecardCriterionExpressionAndGroupInput>;
|
|
8427
|
+
evaluable?: InputMaybe<CompassUpdateScorecardCriterionExpressionEvaluableInput>;
|
|
8428
|
+
or?: InputMaybe<CompassUpdateScorecardCriterionExpressionOrGroupInput>;
|
|
8429
|
+
};
|
|
8430
|
+
export declare type CompassUpdateScorecardCriterionExpressionInput = {
|
|
8431
|
+
boolean?: InputMaybe<CompassUpdateScorecardCriterionExpressionBooleanInput>;
|
|
8432
|
+
collection?: InputMaybe<CompassUpdateScorecardCriterionExpressionCollectionInput>;
|
|
8433
|
+
membership?: InputMaybe<CompassUpdateScorecardCriterionExpressionMembershipInput>;
|
|
8434
|
+
number?: InputMaybe<CompassUpdateScorecardCriterionExpressionNumberInput>;
|
|
8435
|
+
text?: InputMaybe<CompassUpdateScorecardCriterionExpressionTextInput>;
|
|
8436
|
+
};
|
|
8437
|
+
export declare type CompassUpdateScorecardCriterionExpressionMembershipInput = {
|
|
8438
|
+
membershipComparator: CompassScorecardCriterionExpressionMembershipComparatorOptions;
|
|
8439
|
+
membershipComparatorValue: Array<Scalars['ID']['input']>;
|
|
8440
|
+
requirement: CompassUpdateScorecardCriterionExpressionRequirementInput;
|
|
8441
|
+
};
|
|
8442
|
+
export declare type CompassUpdateScorecardCriterionExpressionNumberInput = {
|
|
8443
|
+
numberComparator: CompassScorecardCriterionExpressionNumberComparatorOptions;
|
|
8444
|
+
numberComparatorValue: Scalars['Float']['input'];
|
|
8445
|
+
requirement: CompassUpdateScorecardCriterionExpressionRequirementInput;
|
|
8446
|
+
};
|
|
8447
|
+
export declare type CompassUpdateScorecardCriterionExpressionOrGroupInput = {
|
|
8448
|
+
expressions: Array<CompassUpdateScorecardCriterionExpressionGroupInput>;
|
|
8449
|
+
};
|
|
8450
|
+
export declare type CompassUpdateScorecardCriterionExpressionRequirementCustomFieldInput = {
|
|
8451
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
8452
|
+
};
|
|
8453
|
+
export declare type CompassUpdateScorecardCriterionExpressionRequirementDefaultFieldInput = {
|
|
8454
|
+
fieldName: Scalars['String']['input'];
|
|
8455
|
+
};
|
|
8456
|
+
export declare type CompassUpdateScorecardCriterionExpressionRequirementInput = {
|
|
8457
|
+
customField?: InputMaybe<CompassUpdateScorecardCriterionExpressionRequirementCustomFieldInput>;
|
|
8458
|
+
defaultField?: InputMaybe<CompassUpdateScorecardCriterionExpressionRequirementDefaultFieldInput>;
|
|
8459
|
+
metric?: InputMaybe<CompassUpdateScorecardCriterionExpressionRequirementMetricInput>;
|
|
8460
|
+
};
|
|
8461
|
+
export declare type CompassUpdateScorecardCriterionExpressionRequirementMetricInput = {
|
|
8462
|
+
metricDefinitionId: Scalars['ID']['input'];
|
|
8463
|
+
};
|
|
8464
|
+
export declare type CompassUpdateScorecardCriterionExpressionRequirementScorecardInput = {
|
|
8465
|
+
fieldName: Scalars['String']['input'];
|
|
8466
|
+
scorecardId: Scalars['ID']['input'];
|
|
8467
|
+
};
|
|
8468
|
+
export declare type CompassUpdateScorecardCriterionExpressionTextInput = {
|
|
8469
|
+
requirement: CompassUpdateScorecardCriterionExpressionRequirementInput;
|
|
8470
|
+
textComparator: CompassScorecardCriterionExpressionTextComparatorOptions;
|
|
8471
|
+
textComparatorValue: Scalars['String']['input'];
|
|
8472
|
+
};
|
|
8473
|
+
export declare type CompassUpdateScorecardCriterionExpressionTreeInput = {
|
|
8474
|
+
evaluationRules?: InputMaybe<CompassUpdateScorecardCriterionExpressionEvaluationRulesInput>;
|
|
8475
|
+
root: CompassUpdateScorecardCriterionExpressionGroupInput;
|
|
8476
|
+
};
|
|
8172
8477
|
export declare type CompassUpdateTeamCheckinActionInput = {
|
|
8173
8478
|
actionText?: InputMaybe<Scalars['String']['input']>;
|
|
8174
8479
|
completed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -8564,11 +8869,19 @@ export declare type ConfluenceCommentCountSummary = {
|
|
|
8564
8869
|
__typename?: 'ConfluenceCommentCountSummary';
|
|
8565
8870
|
total?: Maybe<Scalars['Int']['output']>;
|
|
8566
8871
|
};
|
|
8872
|
+
export declare type ConfluenceCommentFilter = {
|
|
8873
|
+
commentState?: InputMaybe<Array<InputMaybe<ConfluenceCommentState>>>;
|
|
8874
|
+
commentType?: InputMaybe<Array<InputMaybe<CommentType>>>;
|
|
8875
|
+
};
|
|
8567
8876
|
export declare type ConfluenceCommentLinks = {
|
|
8568
8877
|
__typename?: 'ConfluenceCommentLinks';
|
|
8569
8878
|
base?: Maybe<Scalars['String']['output']>;
|
|
8570
8879
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
8571
8880
|
};
|
|
8881
|
+
export declare enum ConfluenceCommentState {
|
|
8882
|
+
Resolved = "RESOLVED",
|
|
8883
|
+
Unresolved = "UNRESOLVED"
|
|
8884
|
+
}
|
|
8572
8885
|
export declare enum ConfluenceCommentStatus {
|
|
8573
8886
|
Current = "CURRENT",
|
|
8574
8887
|
Draft = "DRAFT"
|
|
@@ -15199,17 +15512,6 @@ export declare type ConfluenceSubCalendarSubscribersCount = {
|
|
|
15199
15512
|
__typename?: 'ConfluenceSubCalendarSubscribersCount';
|
|
15200
15513
|
count?: Maybe<Scalars['Int']['output']>;
|
|
15201
15514
|
};
|
|
15202
|
-
export declare type ConfluenceSubscriptionApi = {
|
|
15203
|
-
__typename?: 'ConfluenceSubscriptionApi';
|
|
15204
|
-
subscriptionPayload?: Maybe<ConfluenceSubscriptionPayload>;
|
|
15205
|
-
};
|
|
15206
|
-
export declare type ConfluenceSubscriptionApiSubscriptionPayloadArgs = {
|
|
15207
|
-
id: Scalars['ID']['input'];
|
|
15208
|
-
};
|
|
15209
|
-
export declare type ConfluenceSubscriptionPayload = {
|
|
15210
|
-
__typename?: 'ConfluenceSubscriptionPayload';
|
|
15211
|
-
contentType: Scalars['String']['output'];
|
|
15212
|
-
};
|
|
15213
15515
|
export declare type ConfluenceTeamPresence = {
|
|
15214
15516
|
__typename?: 'ConfluenceTeamPresence';
|
|
15215
15517
|
isEnabledOnContentView: Scalars['Boolean']['output'];
|
|
@@ -15217,6 +15519,7 @@ export declare type ConfluenceTeamPresence = {
|
|
|
15217
15519
|
export declare type ConfluenceTeamPresenceSpaceSettings = {
|
|
15218
15520
|
__typename?: 'ConfluenceTeamPresenceSpaceSettings';
|
|
15219
15521
|
isEnabledOnContentView: Scalars['Boolean']['output'];
|
|
15522
|
+
isEnabledOnContentViewForSite: Scalars['Boolean']['output'];
|
|
15220
15523
|
};
|
|
15221
15524
|
export declare type ConfluenceTenantContext = {
|
|
15222
15525
|
__typename?: 'ConfluenceTenantContext';
|
|
@@ -15394,6 +15697,11 @@ export declare type ConfluenceUser = {
|
|
|
15394
15697
|
space?: Maybe<Space>;
|
|
15395
15698
|
userKey?: Maybe<Scalars['String']['output']>;
|
|
15396
15699
|
};
|
|
15700
|
+
export declare type ConfluenceUserContentAccessResult = {
|
|
15701
|
+
__typename?: 'ConfluenceUserContentAccessResult';
|
|
15702
|
+
canAccessList: Array<Maybe<Scalars['String']['output']>>;
|
|
15703
|
+
cannotAccessList: Array<Maybe<Scalars['String']['output']>>;
|
|
15704
|
+
};
|
|
15397
15705
|
export declare type ConfluenceUserInfo = {
|
|
15398
15706
|
__typename?: 'ConfluenceUserInfo';
|
|
15399
15707
|
type: ConfluenceUserType;
|
|
@@ -18480,6 +18788,7 @@ export declare type CreateCompassRelationshipPayload = Payload & {
|
|
|
18480
18788
|
success: Scalars['Boolean']['output'];
|
|
18481
18789
|
};
|
|
18482
18790
|
export declare type CreateCompassScorecardCriteriaInput = {
|
|
18791
|
+
dynamic?: InputMaybe<CompassCreateDynamicScorecardCriteriaInput>;
|
|
18483
18792
|
hasCustomBooleanValue?: InputMaybe<CompassCreateHasCustomBooleanFieldScorecardCriteriaInput>;
|
|
18484
18793
|
hasCustomMultiSelectValue?: InputMaybe<CompassCreateHasCustomMultiSelectFieldScorecardCriteriaInput>;
|
|
18485
18794
|
hasCustomNumberValue?: InputMaybe<CompassCreateHasCustomNumberFieldScorecardCriteriaInput>;
|
|
@@ -20789,6 +21098,12 @@ export declare type DevAiCancelRunningAutofixScanInput = {
|
|
|
20789
21098
|
repoUrl: Scalars['URL']['input'];
|
|
20790
21099
|
workspaceId: Scalars['ID']['input'];
|
|
20791
21100
|
};
|
|
21101
|
+
export declare type DevAiCreateTechnicalPlannerJobPayload = Payload & {
|
|
21102
|
+
__typename?: 'DevAiCreateTechnicalPlannerJobPayload';
|
|
21103
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21104
|
+
job?: Maybe<DevAiTechnicalPlannerJob>;
|
|
21105
|
+
success: Scalars['Boolean']['output'];
|
|
21106
|
+
};
|
|
20792
21107
|
export declare type DevAiGenericAutodevLog = DevAiAutodevLog & {
|
|
20793
21108
|
__typename?: 'DevAiGenericAutodevLog';
|
|
20794
21109
|
attributes?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -20955,6 +21270,25 @@ export declare enum DevAiSupportedRepoFilterOption {
|
|
|
20955
21270
|
DisabledOnly = "DISABLED_ONLY",
|
|
20956
21271
|
EnabledOnly = "ENABLED_ONLY"
|
|
20957
21272
|
}
|
|
21273
|
+
export declare type DevAiTechnicalPlannerJob = {
|
|
21274
|
+
__typename?: 'DevAiTechnicalPlannerJob';
|
|
21275
|
+
error?: Maybe<DevAiWorkflowRunError>;
|
|
21276
|
+
id: Scalars['ID']['output'];
|
|
21277
|
+
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
21278
|
+
planAdf?: Maybe<Scalars['JSON']['output']>;
|
|
21279
|
+
repoUrl?: Maybe<Scalars['URL']['output']>;
|
|
21280
|
+
status?: Maybe<DevAiWorkflowRunStatus>;
|
|
21281
|
+
};
|
|
21282
|
+
export declare type DevAiTechnicalPlannerJobConnection = {
|
|
21283
|
+
__typename?: 'DevAiTechnicalPlannerJobConnection';
|
|
21284
|
+
edges?: Maybe<Array<Maybe<DevAiTechnicalPlannerJobEdge>>>;
|
|
21285
|
+
pageInfo: PageInfo;
|
|
21286
|
+
};
|
|
21287
|
+
export declare type DevAiTechnicalPlannerJobEdge = {
|
|
21288
|
+
__typename?: 'DevAiTechnicalPlannerJobEdge';
|
|
21289
|
+
cursor: Scalars['String']['output'];
|
|
21290
|
+
node?: Maybe<DevAiTechnicalPlannerJob>;
|
|
21291
|
+
};
|
|
20958
21292
|
export declare type DevAiTriggerAutofixScanInput = {
|
|
20959
21293
|
codeCoverageCommand: Scalars['String']['input'];
|
|
20960
21294
|
codeCoverageReportPath: Scalars['String']['input'];
|
|
@@ -20970,6 +21304,19 @@ export declare type DevAiTriggerAutofixScanPayload = Payload & {
|
|
|
20970
21304
|
errors?: Maybe<Array<MutationError>>;
|
|
20971
21305
|
success: Scalars['Boolean']['output'];
|
|
20972
21306
|
};
|
|
21307
|
+
export declare type DevAiWorkflowRunError = {
|
|
21308
|
+
__typename?: 'DevAiWorkflowRunError';
|
|
21309
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
21310
|
+
httpStatus?: Maybe<Scalars['Int']['output']>;
|
|
21311
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
21312
|
+
};
|
|
21313
|
+
export declare enum DevAiWorkflowRunStatus {
|
|
21314
|
+
Cancelled = "CANCELLED",
|
|
21315
|
+
Completed = "COMPLETED",
|
|
21316
|
+
Failed = "FAILED",
|
|
21317
|
+
InProgress = "IN_PROGRESS",
|
|
21318
|
+
Pending = "PENDING"
|
|
21319
|
+
}
|
|
20973
21320
|
export declare type DevOps = {
|
|
20974
21321
|
__typename?: 'DevOps';
|
|
20975
21322
|
ariGraph?: Maybe<AriGraph>;
|
|
@@ -22907,11 +23254,6 @@ export declare type EcosystemOnEventBody = {
|
|
|
22907
23254
|
__typename?: 'EcosystemOnEventBody';
|
|
22908
23255
|
payload?: Maybe<Scalars['String']['output']>;
|
|
22909
23256
|
};
|
|
22910
|
-
export declare enum EcosystemPrimaryProduct {
|
|
22911
|
-
Compass = "COMPASS",
|
|
22912
|
-
Confluence = "CONFLUENCE",
|
|
22913
|
-
Jira = "JIRA"
|
|
22914
|
-
}
|
|
22915
23257
|
export declare type EcosystemPublishEventBody = {
|
|
22916
23258
|
__typename?: 'EcosystemPublishEventBody';
|
|
22917
23259
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
@@ -23017,6 +23359,11 @@ export declare type EcosystemQueryUserGrantsArgs = {
|
|
|
23017
23359
|
export declare type EcosystemQueryUserInstallationRulesArgs = {
|
|
23018
23360
|
cloudId: Scalars['ID']['input'];
|
|
23019
23361
|
};
|
|
23362
|
+
export declare enum EcosystemRequiredProduct {
|
|
23363
|
+
Compass = "COMPASS",
|
|
23364
|
+
Confluence = "CONFLUENCE",
|
|
23365
|
+
Jira = "JIRA"
|
|
23366
|
+
}
|
|
23020
23367
|
export declare type EcosystemSubscription = {
|
|
23021
23368
|
__typename?: 'EcosystemSubscription';
|
|
23022
23369
|
onAppClientEvent?: Maybe<EcosystemOnEventBody>;
|
|
@@ -29655,6 +30002,8 @@ export declare type GraphStore = {
|
|
|
29655
30002
|
userAuthoredCommitInverse?: Maybe<GraphStoreSimplifiedUserAuthoredCommitInverseConnection>;
|
|
29656
30003
|
userAuthoredPr?: Maybe<GraphStoreSimplifiedUserAuthoredPrConnection>;
|
|
29657
30004
|
userAuthoredPrInverse?: Maybe<GraphStoreSimplifiedUserAuthoredPrInverseConnection>;
|
|
30005
|
+
userAuthoritativelyLinkedThirdPartyUser?: Maybe<GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserConnection>;
|
|
30006
|
+
userAuthoritativelyLinkedThirdPartyUserInverse?: Maybe<GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserInverseConnection>;
|
|
29658
30007
|
userCanViewConfluenceSpace?: Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceConnection>;
|
|
29659
30008
|
userCanViewConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseConnection>;
|
|
29660
30009
|
userCollaboratedOnDocument?: Maybe<GraphStoreSimplifiedUserCollaboratedOnDocumentConnection>;
|
|
@@ -29717,6 +30066,8 @@ export declare type GraphStore = {
|
|
|
29717
30066
|
userLastUpdatedDesignInverse?: Maybe<GraphStoreSimplifiedUserLastUpdatedDesignInverseConnection>;
|
|
29718
30067
|
userLaunchedRelease?: Maybe<GraphStoreSimplifiedUserLaunchedReleaseConnection>;
|
|
29719
30068
|
userLaunchedReleaseInverse?: Maybe<GraphStoreSimplifiedUserLaunchedReleaseInverseConnection>;
|
|
30069
|
+
userLinkedThirdPartyUser?: Maybe<GraphStoreSimplifiedUserLinkedThirdPartyUserConnection>;
|
|
30070
|
+
userLinkedThirdPartyUserInverse?: Maybe<GraphStoreSimplifiedUserLinkedThirdPartyUserInverseConnection>;
|
|
29720
30071
|
userMemberOfConversation?: Maybe<GraphStoreSimplifiedUserMemberOfConversationConnection>;
|
|
29721
30072
|
userMemberOfConversationInverse?: Maybe<GraphStoreSimplifiedUserMemberOfConversationInverseConnection>;
|
|
29722
30073
|
userMentionedInConversation?: Maybe<GraphStoreSimplifiedUserMentionedInConversationConnection>;
|
|
@@ -29760,6 +30111,8 @@ export declare type GraphStore = {
|
|
|
29760
30111
|
userUpdatedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseConnection>;
|
|
29761
30112
|
userUpdatedGraphDocument?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentConnection>;
|
|
29762
30113
|
userUpdatedGraphDocumentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentInverseConnection>;
|
|
30114
|
+
userUpdatedIssue?: Maybe<GraphStoreSimplifiedUserUpdatedIssueConnection>;
|
|
30115
|
+
userUpdatedIssueInverse?: Maybe<GraphStoreSimplifiedUserUpdatedIssueInverseConnection>;
|
|
29763
30116
|
userViewedAtlasGoal?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalConnection>;
|
|
29764
30117
|
userViewedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection>;
|
|
29765
30118
|
userViewedAtlasProject?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectConnection>;
|
|
@@ -32537,6 +32890,22 @@ export declare type GraphStoreUserAuthoredPrInverseArgs = {
|
|
|
32537
32890
|
id: Scalars['ID']['input'];
|
|
32538
32891
|
sort?: InputMaybe<GraphStoreUserAuthoredPrSortInput>;
|
|
32539
32892
|
};
|
|
32893
|
+
export declare type GraphStoreUserAuthoritativelyLinkedThirdPartyUserArgs = {
|
|
32894
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32895
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32896
|
+
filter?: InputMaybe<GraphStoreUserAuthoritativelyLinkedThirdPartyUserFilterInput>;
|
|
32897
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32898
|
+
id: Scalars['ID']['input'];
|
|
32899
|
+
sort?: InputMaybe<GraphStoreUserAuthoritativelyLinkedThirdPartyUserSortInput>;
|
|
32900
|
+
};
|
|
32901
|
+
export declare type GraphStoreUserAuthoritativelyLinkedThirdPartyUserInverseArgs = {
|
|
32902
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32903
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32904
|
+
filter?: InputMaybe<GraphStoreUserAuthoritativelyLinkedThirdPartyUserFilterInput>;
|
|
32905
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32906
|
+
id: Scalars['ID']['input'];
|
|
32907
|
+
sort?: InputMaybe<GraphStoreUserAuthoritativelyLinkedThirdPartyUserSortInput>;
|
|
32908
|
+
};
|
|
32540
32909
|
export declare type GraphStoreUserCanViewConfluenceSpaceArgs = {
|
|
32541
32910
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32542
32911
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32971,6 +33340,22 @@ export declare type GraphStoreUserLaunchedReleaseInverseArgs = {
|
|
|
32971
33340
|
id: Scalars['ID']['input'];
|
|
32972
33341
|
sort?: InputMaybe<GraphStoreUserLaunchedReleaseSortInput>;
|
|
32973
33342
|
};
|
|
33343
|
+
export declare type GraphStoreUserLinkedThirdPartyUserArgs = {
|
|
33344
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33345
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33346
|
+
filter?: InputMaybe<GraphStoreUserLinkedThirdPartyUserFilterInput>;
|
|
33347
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33348
|
+
id: Scalars['ID']['input'];
|
|
33349
|
+
sort?: InputMaybe<GraphStoreUserLinkedThirdPartyUserSortInput>;
|
|
33350
|
+
};
|
|
33351
|
+
export declare type GraphStoreUserLinkedThirdPartyUserInverseArgs = {
|
|
33352
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33353
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33354
|
+
filter?: InputMaybe<GraphStoreUserLinkedThirdPartyUserFilterInput>;
|
|
33355
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33356
|
+
id: Scalars['ID']['input'];
|
|
33357
|
+
sort?: InputMaybe<GraphStoreUserLinkedThirdPartyUserSortInput>;
|
|
33358
|
+
};
|
|
32974
33359
|
export declare type GraphStoreUserMemberOfConversationArgs = {
|
|
32975
33360
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32976
33361
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33272,6 +33657,20 @@ export declare type GraphStoreUserUpdatedGraphDocumentInverseArgs = {
|
|
|
33272
33657
|
id: Scalars['ID']['input'];
|
|
33273
33658
|
sort?: InputMaybe<GraphStoreUserUpdatedGraphDocumentSortInput>;
|
|
33274
33659
|
};
|
|
33660
|
+
export declare type GraphStoreUserUpdatedIssueArgs = {
|
|
33661
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33662
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33663
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33664
|
+
id: Scalars['ID']['input'];
|
|
33665
|
+
sort?: InputMaybe<GraphStoreUserUpdatedIssueSortInput>;
|
|
33666
|
+
};
|
|
33667
|
+
export declare type GraphStoreUserUpdatedIssueInverseArgs = {
|
|
33668
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33669
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33670
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33671
|
+
id: Scalars['ID']['input'];
|
|
33672
|
+
sort?: InputMaybe<GraphStoreUserUpdatedIssueSortInput>;
|
|
33673
|
+
};
|
|
33275
33674
|
export declare type GraphStoreUserViewedAtlasGoalArgs = {
|
|
33276
33675
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33277
33676
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -43246,6 +43645,38 @@ export declare type GraphStoreSimplifiedUserAuthoredPrInverseEdge = {
|
|
|
43246
43645
|
};
|
|
43247
43646
|
export declare type GraphStoreSimplifiedUserAuthoredPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43248
43647
|
export declare type GraphStoreSimplifiedUserAuthoredPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
43648
|
+
export declare type GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserConnection = HasPageInfo & HasTotal & {
|
|
43649
|
+
__typename?: 'GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserConnection';
|
|
43650
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserEdge>>>;
|
|
43651
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
43652
|
+
pageInfo: PageInfo;
|
|
43653
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
43654
|
+
};
|
|
43655
|
+
export declare type GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserEdge = {
|
|
43656
|
+
__typename?: 'GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserEdge';
|
|
43657
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43658
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43659
|
+
id: Scalars['ID']['output'];
|
|
43660
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43661
|
+
node?: Maybe<GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserUnion>;
|
|
43662
|
+
};
|
|
43663
|
+
export declare type GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserInverseConnection = HasPageInfo & HasTotal & {
|
|
43664
|
+
__typename?: 'GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserInverseConnection';
|
|
43665
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserInverseEdge>>>;
|
|
43666
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
43667
|
+
pageInfo: PageInfo;
|
|
43668
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
43669
|
+
};
|
|
43670
|
+
export declare type GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserInverseEdge = {
|
|
43671
|
+
__typename?: 'GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserInverseEdge';
|
|
43672
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43673
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43674
|
+
id: Scalars['ID']['output'];
|
|
43675
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43676
|
+
node?: Maybe<GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserInverseUnion>;
|
|
43677
|
+
};
|
|
43678
|
+
export declare type GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43679
|
+
export declare type GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserUnion = ThirdPartyUser;
|
|
43249
43680
|
export declare type GraphStoreSimplifiedUserCanViewConfluenceSpaceConnection = HasPageInfo & {
|
|
43250
43681
|
__typename?: 'GraphStoreSimplifiedUserCanViewConfluenceSpaceConnection';
|
|
43251
43682
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceEdge>>>;
|
|
@@ -44118,6 +44549,38 @@ export declare type GraphStoreSimplifiedUserLaunchedReleaseInverseEdge = {
|
|
|
44118
44549
|
};
|
|
44119
44550
|
export declare type GraphStoreSimplifiedUserLaunchedReleaseInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
44120
44551
|
export declare type GraphStoreSimplifiedUserLaunchedReleaseUnion = JiraVersion;
|
|
44552
|
+
export declare type GraphStoreSimplifiedUserLinkedThirdPartyUserConnection = HasPageInfo & HasTotal & {
|
|
44553
|
+
__typename?: 'GraphStoreSimplifiedUserLinkedThirdPartyUserConnection';
|
|
44554
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserLinkedThirdPartyUserEdge>>>;
|
|
44555
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
44556
|
+
pageInfo: PageInfo;
|
|
44557
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
44558
|
+
};
|
|
44559
|
+
export declare type GraphStoreSimplifiedUserLinkedThirdPartyUserEdge = {
|
|
44560
|
+
__typename?: 'GraphStoreSimplifiedUserLinkedThirdPartyUserEdge';
|
|
44561
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44562
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44563
|
+
id: Scalars['ID']['output'];
|
|
44564
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44565
|
+
node?: Maybe<GraphStoreSimplifiedUserLinkedThirdPartyUserUnion>;
|
|
44566
|
+
};
|
|
44567
|
+
export declare type GraphStoreSimplifiedUserLinkedThirdPartyUserInverseConnection = HasPageInfo & HasTotal & {
|
|
44568
|
+
__typename?: 'GraphStoreSimplifiedUserLinkedThirdPartyUserInverseConnection';
|
|
44569
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserLinkedThirdPartyUserInverseEdge>>>;
|
|
44570
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
44571
|
+
pageInfo: PageInfo;
|
|
44572
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
44573
|
+
};
|
|
44574
|
+
export declare type GraphStoreSimplifiedUserLinkedThirdPartyUserInverseEdge = {
|
|
44575
|
+
__typename?: 'GraphStoreSimplifiedUserLinkedThirdPartyUserInverseEdge';
|
|
44576
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44577
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44578
|
+
id: Scalars['ID']['output'];
|
|
44579
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44580
|
+
node?: Maybe<GraphStoreSimplifiedUserLinkedThirdPartyUserInverseUnion>;
|
|
44581
|
+
};
|
|
44582
|
+
export declare type GraphStoreSimplifiedUserLinkedThirdPartyUserInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
44583
|
+
export declare type GraphStoreSimplifiedUserLinkedThirdPartyUserUnion = ThirdPartyUser;
|
|
44121
44584
|
export declare type GraphStoreSimplifiedUserMemberOfConversationConnection = HasPageInfo & {
|
|
44122
44585
|
__typename?: 'GraphStoreSimplifiedUserMemberOfConversationConnection';
|
|
44123
44586
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMemberOfConversationEdge>>>;
|
|
@@ -44724,6 +45187,34 @@ export declare type GraphStoreSimplifiedUserUpdatedGraphDocumentInverseEdge = {
|
|
|
44724
45187
|
};
|
|
44725
45188
|
export declare type GraphStoreSimplifiedUserUpdatedGraphDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
44726
45189
|
export declare type GraphStoreSimplifiedUserUpdatedGraphDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
45190
|
+
export declare type GraphStoreSimplifiedUserUpdatedIssueConnection = HasPageInfo & {
|
|
45191
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedIssueConnection';
|
|
45192
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedIssueEdge>>>;
|
|
45193
|
+
pageInfo: PageInfo;
|
|
45194
|
+
};
|
|
45195
|
+
export declare type GraphStoreSimplifiedUserUpdatedIssueEdge = {
|
|
45196
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedIssueEdge';
|
|
45197
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45198
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45199
|
+
id: Scalars['ID']['output'];
|
|
45200
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45201
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedIssueUnion>;
|
|
45202
|
+
};
|
|
45203
|
+
export declare type GraphStoreSimplifiedUserUpdatedIssueInverseConnection = HasPageInfo & {
|
|
45204
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedIssueInverseConnection';
|
|
45205
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedIssueInverseEdge>>>;
|
|
45206
|
+
pageInfo: PageInfo;
|
|
45207
|
+
};
|
|
45208
|
+
export declare type GraphStoreSimplifiedUserUpdatedIssueInverseEdge = {
|
|
45209
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedIssueInverseEdge';
|
|
45210
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45211
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45212
|
+
id: Scalars['ID']['output'];
|
|
45213
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45214
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedIssueInverseUnion>;
|
|
45215
|
+
};
|
|
45216
|
+
export declare type GraphStoreSimplifiedUserUpdatedIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45217
|
+
export declare type GraphStoreSimplifiedUserUpdatedIssueUnion = JiraIssue;
|
|
44727
45218
|
export declare type GraphStoreSimplifiedUserViewedAtlasGoalConnection = HasPageInfo & {
|
|
44728
45219
|
__typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalConnection';
|
|
44729
45220
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedAtlasGoalEdge>>>;
|
|
@@ -45674,6 +46165,30 @@ export declare type GraphStoreUserAuthoredCommitSortInput = {
|
|
|
45674
46165
|
export declare type GraphStoreUserAuthoredPrSortInput = {
|
|
45675
46166
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45676
46167
|
};
|
|
46168
|
+
export declare type GraphStoreUserAuthoritativelyLinkedThirdPartyUserConditionalFilterInput = {
|
|
46169
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
46170
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
46171
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
46172
|
+
relationship_graphworkspaceAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
46173
|
+
relationship_integrationAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
46174
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
46175
|
+
to_graphworkspaceAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
46176
|
+
to_integrationAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
46177
|
+
};
|
|
46178
|
+
export declare type GraphStoreUserAuthoritativelyLinkedThirdPartyUserFilterInput = {
|
|
46179
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreUserAuthoritativelyLinkedThirdPartyUserConditionalFilterInput>>>;
|
|
46180
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreUserAuthoritativelyLinkedThirdPartyUserConditionalFilterInput>>>;
|
|
46181
|
+
};
|
|
46182
|
+
export declare type GraphStoreUserAuthoritativelyLinkedThirdPartyUserSortInput = {
|
|
46183
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
46184
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
46185
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46186
|
+
relationship_graphworkspaceAri?: InputMaybe<GraphStoreSortInput>;
|
|
46187
|
+
relationship_integrationAri?: InputMaybe<GraphStoreSortInput>;
|
|
46188
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
46189
|
+
to_graphworkspaceAri?: InputMaybe<GraphStoreSortInput>;
|
|
46190
|
+
to_integrationAri?: InputMaybe<GraphStoreSortInput>;
|
|
46191
|
+
};
|
|
45677
46192
|
export declare type GraphStoreUserCanViewConfluenceSpaceSortInput = {
|
|
45678
46193
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45679
46194
|
};
|
|
@@ -45770,6 +46285,30 @@ export declare type GraphStoreUserLastUpdatedDesignSortInput = {
|
|
|
45770
46285
|
export declare type GraphStoreUserLaunchedReleaseSortInput = {
|
|
45771
46286
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45772
46287
|
};
|
|
46288
|
+
export declare type GraphStoreUserLinkedThirdPartyUserConditionalFilterInput = {
|
|
46289
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
46290
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
46291
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
46292
|
+
relationship_graphworkspaceAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
46293
|
+
relationship_integrationAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
46294
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
46295
|
+
to_graphworkspaceAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
46296
|
+
to_integrationAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
46297
|
+
};
|
|
46298
|
+
export declare type GraphStoreUserLinkedThirdPartyUserFilterInput = {
|
|
46299
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreUserLinkedThirdPartyUserConditionalFilterInput>>>;
|
|
46300
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreUserLinkedThirdPartyUserConditionalFilterInput>>>;
|
|
46301
|
+
};
|
|
46302
|
+
export declare type GraphStoreUserLinkedThirdPartyUserSortInput = {
|
|
46303
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
46304
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
46305
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46306
|
+
relationship_graphworkspaceAri?: InputMaybe<GraphStoreSortInput>;
|
|
46307
|
+
relationship_integrationAri?: InputMaybe<GraphStoreSortInput>;
|
|
46308
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
46309
|
+
to_graphworkspaceAri?: InputMaybe<GraphStoreSortInput>;
|
|
46310
|
+
to_integrationAri?: InputMaybe<GraphStoreSortInput>;
|
|
46311
|
+
};
|
|
45773
46312
|
export declare type GraphStoreUserMemberOfConversationSortInput = {
|
|
45774
46313
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45775
46314
|
};
|
|
@@ -45839,6 +46378,9 @@ export declare type GraphStoreUserUpdatedConfluenceWhiteboardSortInput = {
|
|
|
45839
46378
|
export declare type GraphStoreUserUpdatedGraphDocumentSortInput = {
|
|
45840
46379
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45841
46380
|
};
|
|
46381
|
+
export declare type GraphStoreUserUpdatedIssueSortInput = {
|
|
46382
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46383
|
+
};
|
|
45842
46384
|
export declare type GraphStoreUserViewedAtlasGoalSortInput = {
|
|
45843
46385
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45844
46386
|
};
|
|
@@ -69326,6 +69868,14 @@ export declare type MarketplaceStoreEditionsByAppKeyInput = {
|
|
|
69326
69868
|
export declare type MarketplaceStoreEditionsInput = {
|
|
69327
69869
|
appId?: InputMaybe<Scalars['String']['input']>;
|
|
69328
69870
|
};
|
|
69871
|
+
export declare type MarketplaceStoreEligibleAppOfferingsInput = {
|
|
69872
|
+
cloudId: Scalars['String']['input'];
|
|
69873
|
+
product: MarketplaceStoreProduct;
|
|
69874
|
+
};
|
|
69875
|
+
export declare type MarketplaceStoreEligibleAppOfferingsResponse = {
|
|
69876
|
+
__typename?: 'MarketplaceStoreEligibleAppOfferingsResponse';
|
|
69877
|
+
eligibleOfferings?: Maybe<Array<Maybe<MarketplaceStoreOfferingDetails>>>;
|
|
69878
|
+
};
|
|
69329
69879
|
export declare enum MarketplaceStoreEnterpriseProduct {
|
|
69330
69880
|
Confluence = "CONFLUENCE",
|
|
69331
69881
|
Jira = "JIRA"
|
|
@@ -69504,6 +70054,13 @@ export declare type MarketplaceStoreMutationApi = {
|
|
|
69504
70054
|
export declare type MarketplaceStoreMutationApiInstallAppArgs = {
|
|
69505
70055
|
input: MarketplaceStoreInstallAppInput;
|
|
69506
70056
|
};
|
|
70057
|
+
export declare type MarketplaceStoreOfferingDetails = {
|
|
70058
|
+
__typename?: 'MarketplaceStoreOfferingDetails';
|
|
70059
|
+
id: Scalars['ID']['output'];
|
|
70060
|
+
isInstance?: Maybe<Scalars['Boolean']['output']>;
|
|
70061
|
+
isSandbox?: Maybe<Scalars['Boolean']['output']>;
|
|
70062
|
+
name: Scalars['String']['output'];
|
|
70063
|
+
};
|
|
69507
70064
|
export declare type MarketplaceStoreOrgDetails = MarketplaceStoreMultiInstanceDetails & {
|
|
69508
70065
|
__typename?: 'MarketplaceStoreOrgDetails';
|
|
69509
70066
|
id: Scalars['ID']['output'];
|
|
@@ -69642,6 +70199,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
69642
70199
|
currentUser: MarketplaceStoreCurrentUserResponse;
|
|
69643
70200
|
editions: Array<MarketplaceStoreEdition>;
|
|
69644
70201
|
editionsByAppKey: Array<MarketplaceStoreEdition>;
|
|
70202
|
+
eligibleOfferingsForApp: MarketplaceStoreEligibleAppOfferingsResponse;
|
|
69645
70203
|
geoip: MarketplaceStoreGeoIpResponse;
|
|
69646
70204
|
homePage: MarketplaceStoreHomePageResponse;
|
|
69647
70205
|
hostStatus: MarketplaceStoreHostStatusResponse;
|
|
@@ -69682,6 +70240,9 @@ export declare type MarketplaceStoreQueryApiEditionsArgs = {
|
|
|
69682
70240
|
export declare type MarketplaceStoreQueryApiEditionsByAppKeyArgs = {
|
|
69683
70241
|
product: MarketplaceStoreEditionsByAppKeyInput;
|
|
69684
70242
|
};
|
|
70243
|
+
export declare type MarketplaceStoreQueryApiEligibleOfferingsForAppArgs = {
|
|
70244
|
+
input: MarketplaceStoreEligibleAppOfferingsInput;
|
|
70245
|
+
};
|
|
69685
70246
|
export declare type MarketplaceStoreQueryApiHomePageArgs = {
|
|
69686
70247
|
productId?: InputMaybe<Scalars['String']['input']>;
|
|
69687
70248
|
};
|
|
@@ -71644,6 +72205,7 @@ export declare type Mutation = {
|
|
|
71644
72205
|
devAi?: Maybe<DevAiMutations>;
|
|
71645
72206
|
devOps?: Maybe<DevOpsMutation>;
|
|
71646
72207
|
devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
|
|
72208
|
+
devai_createTechnicalPlannerJob?: Maybe<DevAiCreateTechnicalPlannerJobPayload>;
|
|
71647
72209
|
devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
|
|
71648
72210
|
disableExperiment?: Maybe<TapExperiment>;
|
|
71649
72211
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
@@ -72819,6 +73381,12 @@ export declare type MutationDevai_ContinueJobWithPromptArgs = {
|
|
|
72819
73381
|
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
72820
73382
|
repoUrl: Scalars['String']['input'];
|
|
72821
73383
|
};
|
|
73384
|
+
export declare type MutationDevai_CreateTechnicalPlannerJobArgs = {
|
|
73385
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
73386
|
+
issueAri: Scalars['ID']['input'];
|
|
73387
|
+
repoUrl: Scalars['URL']['input'];
|
|
73388
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
73389
|
+
};
|
|
72822
73390
|
export declare type MutationDevai_InvokeAutodevRovoAgentArgs = {
|
|
72823
73391
|
agentId: Scalars['ID']['input'];
|
|
72824
73392
|
issueId: Scalars['ID']['input'];
|
|
@@ -76372,6 +76940,7 @@ export declare type Query = {
|
|
|
76372
76940
|
confluence_teamPresenceSpaceSettings?: Maybe<ConfluenceTeamPresenceSpaceSettings>;
|
|
76373
76941
|
confluence_template?: Maybe<ContentTemplate>;
|
|
76374
76942
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
76943
|
+
confluence_userContentAccess?: Maybe<ConfluenceUserContentAccessResult>;
|
|
76375
76944
|
confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
|
|
76376
76945
|
confluence_workflow?: Maybe<ConfluenceWorkflow>;
|
|
76377
76946
|
confluence_workflowApplicationsByContentId?: Maybe<ConfluenceWorkflowApplicationConnection>;
|
|
@@ -76447,6 +77016,8 @@ export declare type Query = {
|
|
|
76447
77016
|
devai_autodevJobLogs?: Maybe<DevAiAutodevLogConnection>;
|
|
76448
77017
|
devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
|
|
76449
77018
|
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
77019
|
+
devai_technicalPlannerJobById?: Maybe<DevAiTechnicalPlannerJob>;
|
|
77020
|
+
devai_technicalPlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
|
|
76450
77021
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
76451
77022
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
76452
77023
|
diagnostics?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -76974,6 +77545,7 @@ export declare type QueryCommentsArgs = {
|
|
|
76974
77545
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
76975
77546
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
76976
77547
|
commentId?: InputMaybe<Scalars['ID']['input']>;
|
|
77548
|
+
confluenceCommentFilter?: InputMaybe<ConfluenceCommentFilter>;
|
|
76977
77549
|
contentStatus?: InputMaybe<Array<InputMaybe<GraphQlContentStatus>>>;
|
|
76978
77550
|
depth?: InputMaybe<Depth>;
|
|
76979
77551
|
first?: InputMaybe<Scalars['Long']['input']>;
|
|
@@ -76983,6 +77555,7 @@ export declare type QueryCommentsArgs = {
|
|
|
76983
77555
|
location?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
76984
77556
|
pageId?: InputMaybe<Scalars['ID']['input']>;
|
|
76985
77557
|
recentFirst?: InputMaybe<Scalars['Boolean']['input']>;
|
|
77558
|
+
singleThreaded?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76986
77559
|
type?: InputMaybe<Array<InputMaybe<CommentType>>>;
|
|
76987
77560
|
};
|
|
76988
77561
|
export declare type QueryCommentsDigestArgs = {
|
|
@@ -77989,6 +78562,12 @@ export declare type QueryConfluence_TemplateArgs = {
|
|
|
77989
78562
|
export declare type QueryConfluence_TenantContextArgs = {
|
|
77990
78563
|
cloudId: Scalars['ID']['input'];
|
|
77991
78564
|
};
|
|
78565
|
+
export declare type QueryConfluence_UserContentAccessArgs = {
|
|
78566
|
+
accessType: ResourceAccessType;
|
|
78567
|
+
accountIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
78568
|
+
cloudId: Scalars['ID']['input'];
|
|
78569
|
+
contentId: Scalars['Long']['input'];
|
|
78570
|
+
};
|
|
77992
78571
|
export declare type QueryConfluence_ValidateCalendarJqlArgs = {
|
|
77993
78572
|
applicationId: Scalars['ID']['input'];
|
|
77994
78573
|
cloudId: Scalars['ID']['input'];
|
|
@@ -78347,6 +78926,13 @@ export declare type QueryDevai_AutodevRovoAgentsArgs = {
|
|
|
78347
78926
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
78348
78927
|
templatesFilter?: InputMaybe<DevAiRovoAgentTemplateFilter>;
|
|
78349
78928
|
};
|
|
78929
|
+
export declare type QueryDevai_TechnicalPlannerJobByIdArgs = {
|
|
78930
|
+
cloudId: Scalars['ID']['input'];
|
|
78931
|
+
jobId: Scalars['ID']['input'];
|
|
78932
|
+
};
|
|
78933
|
+
export declare type QueryDevai_TechnicalPlannerJobsForIssueArgs = {
|
|
78934
|
+
issueAri: Scalars['ID']['input'];
|
|
78935
|
+
};
|
|
78350
78936
|
export declare type QueryDeveloperLogAccessArgs = {
|
|
78351
78937
|
appId: Scalars['ID']['input'];
|
|
78352
78938
|
contextIds: Array<Scalars['ID']['input']>;
|
|
@@ -83960,6 +84546,7 @@ export declare type SiteSettings = {
|
|
|
83960
84546
|
companyHubName?: Maybe<Scalars['String']['output']>;
|
|
83961
84547
|
frontCover?: Maybe<FrontCover>;
|
|
83962
84548
|
homepage?: Maybe<Homepage>;
|
|
84549
|
+
isNav4OptedIn: Scalars['Boolean']['output'];
|
|
83963
84550
|
showApplicationTitle: Scalars['Boolean']['output'];
|
|
83964
84551
|
siteTitle: Scalars['String']['output'];
|
|
83965
84552
|
};
|
|
@@ -85126,7 +85713,6 @@ export declare type SubjectsByTypeUserWithRestrictionsArgs = {
|
|
|
85126
85713
|
};
|
|
85127
85714
|
export declare type Subscription = {
|
|
85128
85715
|
__typename?: 'Subscription';
|
|
85129
|
-
confluence?: Maybe<ConfluenceSubscriptionApi>;
|
|
85130
85716
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
85131
85717
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
85132
85718
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
@@ -87139,16 +87725,178 @@ export declare type TransitionFilter = {
|
|
|
87139
87725
|
from: Scalars['String']['input'];
|
|
87140
87726
|
to: Scalars['String']['input'];
|
|
87141
87727
|
};
|
|
87728
|
+
export declare type TrelloAction = {
|
|
87729
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
87730
|
+
creator?: Maybe<TrelloMember>;
|
|
87731
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
87732
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
87733
|
+
id: Scalars['ID']['output'];
|
|
87734
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
87735
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
87736
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
87737
|
+
};
|
|
87738
|
+
export declare type TrelloActionAttachmentEntity = {
|
|
87739
|
+
__typename?: 'TrelloActionAttachmentEntity';
|
|
87740
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
87741
|
+
link?: Maybe<Scalars['Boolean']['output']>;
|
|
87742
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
87743
|
+
previewUrl?: Maybe<Scalars['String']['output']>;
|
|
87744
|
+
previewUrl2x?: Maybe<Scalars['String']['output']>;
|
|
87745
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
87746
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
87747
|
+
};
|
|
87748
|
+
export declare type TrelloActionAttachmentPreviewEntity = {
|
|
87749
|
+
__typename?: 'TrelloActionAttachmentPreviewEntity';
|
|
87750
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
87751
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
87752
|
+
originalUrl?: Maybe<Scalars['URL']['output']>;
|
|
87753
|
+
previewUrl?: Maybe<Scalars['URL']['output']>;
|
|
87754
|
+
previewUrl2x?: Maybe<Scalars['URL']['output']>;
|
|
87755
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
87756
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
87757
|
+
};
|
|
87758
|
+
export declare type TrelloActionCardEntity = {
|
|
87759
|
+
__typename?: 'TrelloActionCardEntity';
|
|
87760
|
+
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
87761
|
+
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
87762
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
87763
|
+
due?: Maybe<Scalars['DateTime']['output']>;
|
|
87764
|
+
dueComplete?: Maybe<Scalars['Boolean']['output']>;
|
|
87765
|
+
hideIfContext?: Maybe<Scalars['Boolean']['output']>;
|
|
87766
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
87767
|
+
listId?: Maybe<Scalars['String']['output']>;
|
|
87768
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
87769
|
+
position?: Maybe<Scalars['Float']['output']>;
|
|
87770
|
+
shortId?: Maybe<Scalars['Int']['output']>;
|
|
87771
|
+
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
87772
|
+
start?: Maybe<Scalars['DateTime']['output']>;
|
|
87773
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
87774
|
+
};
|
|
87775
|
+
export declare type TrelloActionChecklistEntity = {
|
|
87776
|
+
__typename?: 'TrelloActionChecklistEntity';
|
|
87777
|
+
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
87778
|
+
id: Scalars['ID']['output'];
|
|
87779
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
87780
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
87781
|
+
};
|
|
87782
|
+
export declare type TrelloActionCommentEntity = {
|
|
87783
|
+
__typename?: 'TrelloActionCommentEntity';
|
|
87784
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
87785
|
+
textHtml?: Maybe<Scalars['String']['output']>;
|
|
87786
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
87787
|
+
};
|
|
87788
|
+
export declare type TrelloActionLimits = {
|
|
87789
|
+
__typename?: 'TrelloActionLimits';
|
|
87790
|
+
reactions?: Maybe<TrelloReactionLimits>;
|
|
87791
|
+
};
|
|
87792
|
+
export declare type TrelloActionListEntity = {
|
|
87793
|
+
__typename?: 'TrelloActionListEntity';
|
|
87794
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
87795
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
87796
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
87797
|
+
};
|
|
87798
|
+
export declare type TrelloActionMemberEntity = {
|
|
87799
|
+
__typename?: 'TrelloActionMemberEntity';
|
|
87800
|
+
avatarHash?: Maybe<Scalars['String']['output']>;
|
|
87801
|
+
avatarUrl?: Maybe<Scalars['URL']['output']>;
|
|
87802
|
+
fullName?: Maybe<Scalars['String']['output']>;
|
|
87803
|
+
id: Scalars['ID']['output'];
|
|
87804
|
+
initials?: Maybe<Scalars['String']['output']>;
|
|
87805
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
87806
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
87807
|
+
username?: Maybe<Scalars['String']['output']>;
|
|
87808
|
+
};
|
|
87809
|
+
export declare type TrelloActionTranslatableEntity = {
|
|
87810
|
+
__typename?: 'TrelloActionTranslatableEntity';
|
|
87811
|
+
contextId?: Maybe<Scalars['String']['output']>;
|
|
87812
|
+
hideIfContext?: Maybe<Scalars['Boolean']['output']>;
|
|
87813
|
+
translationKey?: Maybe<Scalars['String']['output']>;
|
|
87814
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
87815
|
+
};
|
|
87816
|
+
export declare type TrelloAddAttachmentToCardAction = TrelloAction & TrelloCardActionData & {
|
|
87817
|
+
__typename?: 'TrelloAddAttachmentToCardAction';
|
|
87818
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
87819
|
+
attachment?: Maybe<TrelloAttachment>;
|
|
87820
|
+
board?: Maybe<TrelloBoard>;
|
|
87821
|
+
card?: Maybe<TrelloCard>;
|
|
87822
|
+
creator?: Maybe<TrelloMember>;
|
|
87823
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
87824
|
+
displayEntities?: Maybe<TrelloAddAttachmentToCardActionDisplayEntities>;
|
|
87825
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
87826
|
+
id: Scalars['ID']['output'];
|
|
87827
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
87828
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
87829
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
87830
|
+
};
|
|
87831
|
+
export declare type TrelloAddAttachmentToCardActionDisplayEntities = {
|
|
87832
|
+
__typename?: 'TrelloAddAttachmentToCardActionDisplayEntities';
|
|
87833
|
+
attachment?: Maybe<TrelloActionAttachmentEntity>;
|
|
87834
|
+
attachmentPreview?: Maybe<TrelloActionAttachmentPreviewEntity>;
|
|
87835
|
+
card?: Maybe<TrelloActionCardEntity>;
|
|
87836
|
+
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
87837
|
+
};
|
|
87838
|
+
export declare type TrelloAddChecklistToCardAction = TrelloAction & TrelloCardActionData & {
|
|
87839
|
+
__typename?: 'TrelloAddChecklistToCardAction';
|
|
87840
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
87841
|
+
board?: Maybe<TrelloBoard>;
|
|
87842
|
+
card?: Maybe<TrelloCard>;
|
|
87843
|
+
checklist?: Maybe<TrelloChecklist>;
|
|
87844
|
+
creator?: Maybe<TrelloMember>;
|
|
87845
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
87846
|
+
displayEntities?: Maybe<TrelloAddChecklistToCardDisplayEntities>;
|
|
87847
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
87848
|
+
id: Scalars['ID']['output'];
|
|
87849
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
87850
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
87851
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
87852
|
+
};
|
|
87853
|
+
export declare type TrelloAddChecklistToCardDisplayEntities = {
|
|
87854
|
+
__typename?: 'TrelloAddChecklistToCardDisplayEntities';
|
|
87855
|
+
card?: Maybe<TrelloActionCardEntity>;
|
|
87856
|
+
checklist?: Maybe<TrelloActionChecklistEntity>;
|
|
87857
|
+
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
87858
|
+
};
|
|
87142
87859
|
export declare type TrelloAddMemberInput = {
|
|
87143
87860
|
cardId: Scalars['ID']['input'];
|
|
87144
87861
|
userId: Scalars['ID']['input'];
|
|
87145
87862
|
};
|
|
87863
|
+
export declare type TrelloAddMemberToCardAction = TrelloAction & TrelloCardActionData & {
|
|
87864
|
+
__typename?: 'TrelloAddMemberToCardAction';
|
|
87865
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
87866
|
+
board?: Maybe<TrelloBoard>;
|
|
87867
|
+
card?: Maybe<TrelloCard>;
|
|
87868
|
+
creator?: Maybe<TrelloMember>;
|
|
87869
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
87870
|
+
displayEntities?: Maybe<TrelloAddRemoveMemberActionDisplayEntities>;
|
|
87871
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
87872
|
+
id: Scalars['ID']['output'];
|
|
87873
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
87874
|
+
member?: Maybe<TrelloMember>;
|
|
87875
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
87876
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
87877
|
+
};
|
|
87146
87878
|
export declare type TrelloAddMemberToCardPayload = Payload & {
|
|
87147
87879
|
__typename?: 'TrelloAddMemberToCardPayload';
|
|
87148
87880
|
card?: Maybe<TrelloCard>;
|
|
87149
87881
|
errors?: Maybe<Array<MutationError>>;
|
|
87150
87882
|
success: Scalars['Boolean']['output'];
|
|
87151
87883
|
};
|
|
87884
|
+
export declare type TrelloAddRemoveMemberActionDisplayEntities = {
|
|
87885
|
+
__typename?: 'TrelloAddRemoveMemberActionDisplayEntities';
|
|
87886
|
+
card?: Maybe<TrelloActionCardEntity>;
|
|
87887
|
+
member?: Maybe<TrelloActionMemberEntity>;
|
|
87888
|
+
membercreator?: Maybe<TrelloActionMemberEntity>;
|
|
87889
|
+
};
|
|
87890
|
+
export declare type TrelloAppCreator = {
|
|
87891
|
+
__typename?: 'TrelloAppCreator';
|
|
87892
|
+
icon?: Maybe<TrelloApplicationIcon>;
|
|
87893
|
+
id: Scalars['ID']['output'];
|
|
87894
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
87895
|
+
};
|
|
87896
|
+
export declare type TrelloApplicationIcon = {
|
|
87897
|
+
__typename?: 'TrelloApplicationIcon';
|
|
87898
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
87899
|
+
};
|
|
87152
87900
|
export declare type TrelloArchiveCardInput = {
|
|
87153
87901
|
cardId: Scalars['ID']['input'];
|
|
87154
87902
|
};
|
|
@@ -87489,6 +88237,7 @@ export declare type TrelloBoardWorkspaceUpdated = {
|
|
|
87489
88237
|
};
|
|
87490
88238
|
export declare type TrelloCard = Node & {
|
|
87491
88239
|
__typename?: 'TrelloCard';
|
|
88240
|
+
actions?: Maybe<TrelloCardActionConnection>;
|
|
87492
88241
|
attachments?: Maybe<TrelloAttachmentConnection>;
|
|
87493
88242
|
badges?: Maybe<TrelloCardBadges>;
|
|
87494
88243
|
checklists?: Maybe<TrelloChecklistConnection>;
|
|
@@ -87521,6 +88270,11 @@ export declare type TrelloCard = Node & {
|
|
|
87521
88270
|
stickers?: Maybe<TrelloStickerConnection>;
|
|
87522
88271
|
url?: Maybe<Scalars['URL']['output']>;
|
|
87523
88272
|
};
|
|
88273
|
+
export declare type TrelloCardActionsArgs = {
|
|
88274
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88275
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88276
|
+
type?: InputMaybe<Array<TrelloCardActionType>>;
|
|
88277
|
+
};
|
|
87524
88278
|
export declare type TrelloCardAttachmentsArgs = {
|
|
87525
88279
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87526
88280
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -87550,6 +88304,30 @@ export declare type TrelloCardStickersArgs = {
|
|
|
87550
88304
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87551
88305
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87552
88306
|
};
|
|
88307
|
+
export declare type TrelloCardActionConnection = {
|
|
88308
|
+
__typename?: 'TrelloCardActionConnection';
|
|
88309
|
+
edges?: Maybe<Array<TrelloCardActionEdge>>;
|
|
88310
|
+
nodes?: Maybe<Array<TrelloCardActions>>;
|
|
88311
|
+
pageInfo: PageInfo;
|
|
88312
|
+
};
|
|
88313
|
+
export declare type TrelloCardActionData = {
|
|
88314
|
+
board?: Maybe<TrelloBoard>;
|
|
88315
|
+
card?: Maybe<TrelloCard>;
|
|
88316
|
+
};
|
|
88317
|
+
export declare type TrelloCardActionEdge = {
|
|
88318
|
+
__typename?: 'TrelloCardActionEdge';
|
|
88319
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88320
|
+
node?: Maybe<TrelloCardActions>;
|
|
88321
|
+
};
|
|
88322
|
+
export declare enum TrelloCardActionType {
|
|
88323
|
+
AddAttachment = "ADD_ATTACHMENT",
|
|
88324
|
+
AddChecklist = "ADD_CHECKLIST",
|
|
88325
|
+
AddMember = "ADD_MEMBER",
|
|
88326
|
+
Comment = "COMMENT",
|
|
88327
|
+
MoveCard = "MOVE_CARD",
|
|
88328
|
+
RemoveMember = "REMOVE_MEMBER"
|
|
88329
|
+
}
|
|
88330
|
+
export declare type TrelloCardActions = TrelloAddAttachmentToCardAction | TrelloAddChecklistToCardAction | TrelloAddMemberToCardAction | TrelloCommentCardAction | TrelloMoveCardAction | TrelloRemoveMemberFromCardAction;
|
|
87553
88331
|
export declare type TrelloCardAttachmentsByType = {
|
|
87554
88332
|
__typename?: 'TrelloCardAttachmentsByType';
|
|
87555
88333
|
trello?: Maybe<TrelloCardAttachmentsCount>;
|
|
@@ -87793,6 +88571,27 @@ export declare type TrelloChecklistUpdated = {
|
|
|
87793
88571
|
objectId: Scalars['ID']['output'];
|
|
87794
88572
|
position?: Maybe<Scalars['Float']['output']>;
|
|
87795
88573
|
};
|
|
88574
|
+
export declare type TrelloCommentCardAction = TrelloAction & TrelloCardActionData & {
|
|
88575
|
+
__typename?: 'TrelloCommentCardAction';
|
|
88576
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
88577
|
+
board?: Maybe<TrelloBoard>;
|
|
88578
|
+
card?: Maybe<TrelloCard>;
|
|
88579
|
+
creator?: Maybe<TrelloMember>;
|
|
88580
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
88581
|
+
displayEntities?: Maybe<TrelloCommentCardActionDisplayEntities>;
|
|
88582
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
88583
|
+
id: Scalars['ID']['output'];
|
|
88584
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
88585
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
88586
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
88587
|
+
};
|
|
88588
|
+
export declare type TrelloCommentCardActionDisplayEntities = {
|
|
88589
|
+
__typename?: 'TrelloCommentCardActionDisplayEntities';
|
|
88590
|
+
card?: Maybe<TrelloActionCardEntity>;
|
|
88591
|
+
comment?: Maybe<TrelloActionCommentEntity>;
|
|
88592
|
+
contextOn?: Maybe<TrelloActionTranslatableEntity>;
|
|
88593
|
+
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
88594
|
+
};
|
|
87796
88595
|
export declare type TrelloCreateCardInput = {
|
|
87797
88596
|
listId: Scalars['ID']['input'];
|
|
87798
88597
|
name: Scalars['String']['input'];
|
|
@@ -87947,6 +88746,14 @@ export declare type TrelloEditPlannerCalendarEventPayload = Payload & {
|
|
|
87947
88746
|
plannerCalendarUpdated?: Maybe<TrelloPlannerCalendar>;
|
|
87948
88747
|
success: Scalars['Boolean']['output'];
|
|
87949
88748
|
};
|
|
88749
|
+
export declare type TrelloEmoji = {
|
|
88750
|
+
__typename?: 'TrelloEmoji';
|
|
88751
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
88752
|
+
native?: Maybe<Scalars['String']['output']>;
|
|
88753
|
+
shortName?: Maybe<Scalars['String']['output']>;
|
|
88754
|
+
skinVariation?: Maybe<Scalars['String']['output']>;
|
|
88755
|
+
unified?: Maybe<Scalars['String']['output']>;
|
|
88756
|
+
};
|
|
87950
88757
|
export declare type TrelloEnterprise = {
|
|
87951
88758
|
__typename?: 'TrelloEnterprise';
|
|
87952
88759
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -88189,6 +88996,29 @@ export declare type TrelloMemberWorkspaceFilter = {
|
|
|
88189
88996
|
membershipType: TrelloWorkspaceMembershipType;
|
|
88190
88997
|
tier: TrelloWorkspaceTier;
|
|
88191
88998
|
};
|
|
88999
|
+
export declare type TrelloMoveCardAction = TrelloAction & TrelloCardActionData & {
|
|
89000
|
+
__typename?: 'TrelloMoveCardAction';
|
|
89001
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
89002
|
+
board?: Maybe<TrelloBoard>;
|
|
89003
|
+
card?: Maybe<TrelloCard>;
|
|
89004
|
+
creator?: Maybe<TrelloMember>;
|
|
89005
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
89006
|
+
displayEntities?: Maybe<TrelloMoveCardActionDisplayEntities>;
|
|
89007
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
89008
|
+
id: Scalars['ID']['output'];
|
|
89009
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
89010
|
+
listAfter?: Maybe<TrelloList>;
|
|
89011
|
+
listBefore?: Maybe<TrelloList>;
|
|
89012
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
89013
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
89014
|
+
};
|
|
89015
|
+
export declare type TrelloMoveCardActionDisplayEntities = {
|
|
89016
|
+
__typename?: 'TrelloMoveCardActionDisplayEntities';
|
|
89017
|
+
card?: Maybe<TrelloActionCardEntity>;
|
|
89018
|
+
listAfter?: Maybe<TrelloActionListEntity>;
|
|
89019
|
+
listBefore?: Maybe<TrelloActionListEntity>;
|
|
89020
|
+
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
89021
|
+
};
|
|
88192
89022
|
export declare type TrelloMutationApi = {
|
|
88193
89023
|
__typename?: 'TrelloMutationApi';
|
|
88194
89024
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
@@ -88331,6 +89161,7 @@ export declare type TrelloPlannerCalendarAccountEnabledCalendarsArgs = {
|
|
|
88331
89161
|
export declare type TrelloPlannerCalendarAccountProviderCalendarsArgs = {
|
|
88332
89162
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
88333
89163
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89164
|
+
syncToken?: InputMaybe<Scalars['String']['input']>;
|
|
88334
89165
|
};
|
|
88335
89166
|
export declare type TrelloPlannerCalendarAccountConnection = {
|
|
88336
89167
|
__typename?: 'TrelloPlannerCalendarAccountConnection';
|
|
@@ -88536,6 +89367,7 @@ export declare type TrelloPlannerProviderCalendarConnection = {
|
|
|
88536
89367
|
export declare type TrelloPlannerProviderCalendarEdge = {
|
|
88537
89368
|
__typename?: 'TrelloPlannerProviderCalendarEdge';
|
|
88538
89369
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
89370
|
+
deletedCalendar?: Maybe<TrelloProviderCalendarDeleted>;
|
|
88539
89371
|
node?: Maybe<TrelloPlannerProviderCalendar>;
|
|
88540
89372
|
};
|
|
88541
89373
|
export declare type TrelloPlannerUpdated = {
|
|
@@ -88599,6 +89431,10 @@ export declare type TrelloPowerUpUpdated = {
|
|
|
88599
89431
|
__typename?: 'TrelloPowerUpUpdated';
|
|
88600
89432
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
88601
89433
|
};
|
|
89434
|
+
export declare type TrelloProviderCalendarDeleted = {
|
|
89435
|
+
__typename?: 'TrelloProviderCalendarDeleted';
|
|
89436
|
+
id: Scalars['ID']['output'];
|
|
89437
|
+
};
|
|
88602
89438
|
export declare type TrelloProviderCalendarInterface = {
|
|
88603
89439
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
88604
89440
|
id: Scalars['ID']['output'];
|
|
@@ -88722,6 +89558,16 @@ export declare type TrelloQueryApiUsersByIdArgs = {
|
|
|
88722
89558
|
export declare type TrelloQueryApiWorkspaceArgs = {
|
|
88723
89559
|
id: Scalars['ID']['input'];
|
|
88724
89560
|
};
|
|
89561
|
+
export declare type TrelloReaction = {
|
|
89562
|
+
__typename?: 'TrelloReaction';
|
|
89563
|
+
emoji?: Maybe<TrelloEmoji>;
|
|
89564
|
+
member?: Maybe<TrelloMember>;
|
|
89565
|
+
};
|
|
89566
|
+
export declare type TrelloReactionLimits = {
|
|
89567
|
+
__typename?: 'TrelloReactionLimits';
|
|
89568
|
+
perAction?: Maybe<TrelloLimitProps>;
|
|
89569
|
+
uniquePerAction?: Maybe<TrelloLimitProps>;
|
|
89570
|
+
};
|
|
88725
89571
|
export declare type TrelloRemoveCardFromPlannerCalendarEventInput = {
|
|
88726
89572
|
plannerCalendarEventCardId: Scalars['ID']['input'];
|
|
88727
89573
|
plannerCalendarId: Scalars['ID']['input'];
|
|
@@ -88733,6 +89579,21 @@ export declare type TrelloRemoveCardFromPlannerCalendarEventPayload = Payload &
|
|
|
88733
89579
|
eventCard?: Maybe<TrelloPlannerCalendarEventCardDeleted>;
|
|
88734
89580
|
success: Scalars['Boolean']['output'];
|
|
88735
89581
|
};
|
|
89582
|
+
export declare type TrelloRemoveMemberFromCardAction = TrelloAction & TrelloCardActionData & {
|
|
89583
|
+
__typename?: 'TrelloRemoveMemberFromCardAction';
|
|
89584
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
89585
|
+
board?: Maybe<TrelloBoard>;
|
|
89586
|
+
card?: Maybe<TrelloCard>;
|
|
89587
|
+
creator?: Maybe<TrelloMember>;
|
|
89588
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
89589
|
+
displayEntities?: Maybe<TrelloAddRemoveMemberActionDisplayEntities>;
|
|
89590
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
89591
|
+
id: Scalars['ID']['output'];
|
|
89592
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
89593
|
+
member?: Maybe<TrelloMember>;
|
|
89594
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
89595
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
89596
|
+
};
|
|
88736
89597
|
export declare type TrelloRemoveMemberFromCardPayload = Payload & {
|
|
88737
89598
|
__typename?: 'TrelloRemoveMemberFromCardPayload';
|
|
88738
89599
|
card?: Maybe<TrelloCard>;
|
|
@@ -89088,6 +89949,8 @@ export declare type UnifiedAccount = UnifiedINode & {
|
|
|
89088
89949
|
isManaged: Scalars['Boolean']['output'];
|
|
89089
89950
|
isPrimary: Scalars['Boolean']['output'];
|
|
89090
89951
|
linkedAccounts?: Maybe<UnifiedULinkedAccountResult>;
|
|
89952
|
+
nickname: Scalars['String']['output'];
|
|
89953
|
+
picture: Scalars['String']['output'];
|
|
89091
89954
|
};
|
|
89092
89955
|
export declare type UnifiedAccountBasics = UnifiedINode & {
|
|
89093
89956
|
__typename?: 'UnifiedAccountBasics';
|
|
@@ -89097,6 +89960,8 @@ export declare type UnifiedAccountBasics = UnifiedINode & {
|
|
|
89097
89960
|
isManaged: Scalars['Boolean']['output'];
|
|
89098
89961
|
isPrimary: Scalars['Boolean']['output'];
|
|
89099
89962
|
linkedAccountsBasics?: Maybe<UnifiedULinkedAccountBasicsResult>;
|
|
89963
|
+
nickname: Scalars['String']['output'];
|
|
89964
|
+
picture: Scalars['String']['output'];
|
|
89100
89965
|
};
|
|
89101
89966
|
export declare type UnifiedAccountDetails = UnifiedINode & {
|
|
89102
89967
|
__typename?: 'UnifiedAccountDetails';
|
|
@@ -89611,6 +90476,7 @@ export declare type UnifiedMutationUpdateUnifiedProfileArgs = {
|
|
|
89611
90476
|
};
|
|
89612
90477
|
export declare type UnifiedMutationError = {
|
|
89613
90478
|
__typename?: 'UnifiedMutationError';
|
|
90479
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
89614
90480
|
extensions?: Maybe<UnifiedMutationErrorExtension>;
|
|
89615
90481
|
message?: Maybe<Scalars['String']['output']>;
|
|
89616
90482
|
};
|
|
@@ -89739,6 +90605,7 @@ export declare type UnifiedQueryUnifiedProfileArgs = {
|
|
|
89739
90605
|
};
|
|
89740
90606
|
export declare type UnifiedQueryError = UnifiedIQueryError & {
|
|
89741
90607
|
__typename?: 'UnifiedQueryError';
|
|
90608
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
89742
90609
|
extensions?: Maybe<Array<UnifiedQueryErrorExtension>>;
|
|
89743
90610
|
identifier?: Maybe<Scalars['ID']['output']>;
|
|
89744
90611
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -90032,6 +90899,7 @@ export declare type UpdateCompassLinkInput = {
|
|
|
90032
90899
|
url?: InputMaybe<Scalars['URL']['input']>;
|
|
90033
90900
|
};
|
|
90034
90901
|
export declare type UpdateCompassScorecardCriteriaInput = {
|
|
90902
|
+
dynamic?: InputMaybe<CompassUpdateDynamicScorecardCriteriaInput>;
|
|
90035
90903
|
hasCustomBooleanValue?: InputMaybe<CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput>;
|
|
90036
90904
|
hasCustomMultiSelectValue?: InputMaybe<CompassUpdateHasCustomMultiSelectFieldScorecardCriteriaInput>;
|
|
90037
90905
|
hasCustomNumberValue?: InputMaybe<CompassUpdateHasCustomNumberFieldScorecardCriteriaInput>;
|