@forge/cli-shared 6.6.0-next.8 → 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 +51 -0
- package/LICENSE.txt +7 -0
- package/out/graphql/graphql-types.d.ts +937 -22
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +102 -30
- package/out/shared/product.d.ts +1 -0
- package/out/shared/product.d.ts.map +1 -1
- package/out/shared/product.js +9 -1
- 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>;
|
|
@@ -22792,6 +23139,36 @@ export declare enum EcosystemLicenseMode {
|
|
|
22792
23139
|
Agent = "AGENT",
|
|
22793
23140
|
UserAccess = "USER_ACCESS"
|
|
22794
23141
|
}
|
|
23142
|
+
export declare type EcosystemMarketplaceAppVersion = {
|
|
23143
|
+
__typename?: 'EcosystemMarketplaceAppVersion';
|
|
23144
|
+
buildNumber: Scalars['Float']['output'];
|
|
23145
|
+
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
23146
|
+
isSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
23147
|
+
version: Scalars['String']['output'];
|
|
23148
|
+
};
|
|
23149
|
+
export declare type EcosystemMarketplaceData = {
|
|
23150
|
+
__typename?: 'EcosystemMarketplaceData';
|
|
23151
|
+
appId?: Maybe<Scalars['ID']['output']>;
|
|
23152
|
+
appKey?: Maybe<Scalars['String']['output']>;
|
|
23153
|
+
cloudAppId: Scalars['ID']['output'];
|
|
23154
|
+
forumsUrl?: Maybe<Scalars['String']['output']>;
|
|
23155
|
+
issueTrackerUrl?: Maybe<Scalars['String']['output']>;
|
|
23156
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
23157
|
+
slug?: Maybe<Scalars['String']['output']>;
|
|
23158
|
+
supportTicketSystemUrl?: Maybe<Scalars['String']['output']>;
|
|
23159
|
+
versions?: Maybe<EcosystemMarketplaceVersionConnection>;
|
|
23160
|
+
wikiUrl?: Maybe<Scalars['String']['output']>;
|
|
23161
|
+
};
|
|
23162
|
+
export declare type EcosystemMarketplaceVersionConnection = {
|
|
23163
|
+
__typename?: 'EcosystemMarketplaceVersionConnection';
|
|
23164
|
+
edges?: Maybe<Array<EcosystemMarketplaceVersionEdge>>;
|
|
23165
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
23166
|
+
};
|
|
23167
|
+
export declare type EcosystemMarketplaceVersionEdge = {
|
|
23168
|
+
__typename?: 'EcosystemMarketplaceVersionEdge';
|
|
23169
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
23170
|
+
node: EcosystemMarketplaceAppVersion;
|
|
23171
|
+
};
|
|
22795
23172
|
export declare type EcosystemMutation = {
|
|
22796
23173
|
__typename?: 'EcosystemMutation';
|
|
22797
23174
|
addAppContributor?: Maybe<AddAppContributorResponsePayload>;
|
|
@@ -22877,11 +23254,6 @@ export declare type EcosystemOnEventBody = {
|
|
|
22877
23254
|
__typename?: 'EcosystemOnEventBody';
|
|
22878
23255
|
payload?: Maybe<Scalars['String']['output']>;
|
|
22879
23256
|
};
|
|
22880
|
-
export declare enum EcosystemPrimaryProduct {
|
|
22881
|
-
Compass = "COMPASS",
|
|
22882
|
-
Confluence = "CONFLUENCE",
|
|
22883
|
-
Jira = "JIRA"
|
|
22884
|
-
}
|
|
22885
23257
|
export declare type EcosystemPublishEventBody = {
|
|
22886
23258
|
__typename?: 'EcosystemPublishEventBody';
|
|
22887
23259
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
@@ -22903,6 +23275,7 @@ export declare type EcosystemQuery = {
|
|
|
22903
23275
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
22904
23276
|
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
22905
23277
|
globalInstallationConfig?: Maybe<Array<Maybe<EcosystemGlobalInstallationOverride>>>;
|
|
23278
|
+
marketplaceData: EcosystemMarketplaceData;
|
|
22906
23279
|
userAccess?: Maybe<UserAccess>;
|
|
22907
23280
|
userGrants?: Maybe<UserGrantConnection>;
|
|
22908
23281
|
userInstallationRules?: Maybe<UserInstallationRules>;
|
|
@@ -22969,6 +23342,9 @@ export declare type EcosystemQueryGlobalInstallationConfigArgs = {
|
|
|
22969
23342
|
cloudId: Scalars['ID']['input'];
|
|
22970
23343
|
filter?: InputMaybe<GlobalInstallationConfigFilter>;
|
|
22971
23344
|
};
|
|
23345
|
+
export declare type EcosystemQueryMarketplaceDataArgs = {
|
|
23346
|
+
cloudAppId: Scalars['ID']['input'];
|
|
23347
|
+
};
|
|
22972
23348
|
export declare type EcosystemQueryUserAccessArgs = {
|
|
22973
23349
|
contextId: Scalars['ID']['input'];
|
|
22974
23350
|
definitionId: Scalars['ID']['input'];
|
|
@@ -22983,6 +23359,11 @@ export declare type EcosystemQueryUserGrantsArgs = {
|
|
|
22983
23359
|
export declare type EcosystemQueryUserInstallationRulesArgs = {
|
|
22984
23360
|
cloudId: Scalars['ID']['input'];
|
|
22985
23361
|
};
|
|
23362
|
+
export declare enum EcosystemRequiredProduct {
|
|
23363
|
+
Compass = "COMPASS",
|
|
23364
|
+
Confluence = "CONFLUENCE",
|
|
23365
|
+
Jira = "JIRA"
|
|
23366
|
+
}
|
|
22986
23367
|
export declare type EcosystemSubscription = {
|
|
22987
23368
|
__typename?: 'EcosystemSubscription';
|
|
22988
23369
|
onAppClientEvent?: Maybe<EcosystemOnEventBody>;
|
|
@@ -29621,6 +30002,8 @@ export declare type GraphStore = {
|
|
|
29621
30002
|
userAuthoredCommitInverse?: Maybe<GraphStoreSimplifiedUserAuthoredCommitInverseConnection>;
|
|
29622
30003
|
userAuthoredPr?: Maybe<GraphStoreSimplifiedUserAuthoredPrConnection>;
|
|
29623
30004
|
userAuthoredPrInverse?: Maybe<GraphStoreSimplifiedUserAuthoredPrInverseConnection>;
|
|
30005
|
+
userAuthoritativelyLinkedThirdPartyUser?: Maybe<GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserConnection>;
|
|
30006
|
+
userAuthoritativelyLinkedThirdPartyUserInverse?: Maybe<GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserInverseConnection>;
|
|
29624
30007
|
userCanViewConfluenceSpace?: Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceConnection>;
|
|
29625
30008
|
userCanViewConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseConnection>;
|
|
29626
30009
|
userCollaboratedOnDocument?: Maybe<GraphStoreSimplifiedUserCollaboratedOnDocumentConnection>;
|
|
@@ -29683,6 +30066,8 @@ export declare type GraphStore = {
|
|
|
29683
30066
|
userLastUpdatedDesignInverse?: Maybe<GraphStoreSimplifiedUserLastUpdatedDesignInverseConnection>;
|
|
29684
30067
|
userLaunchedRelease?: Maybe<GraphStoreSimplifiedUserLaunchedReleaseConnection>;
|
|
29685
30068
|
userLaunchedReleaseInverse?: Maybe<GraphStoreSimplifiedUserLaunchedReleaseInverseConnection>;
|
|
30069
|
+
userLinkedThirdPartyUser?: Maybe<GraphStoreSimplifiedUserLinkedThirdPartyUserConnection>;
|
|
30070
|
+
userLinkedThirdPartyUserInverse?: Maybe<GraphStoreSimplifiedUserLinkedThirdPartyUserInverseConnection>;
|
|
29686
30071
|
userMemberOfConversation?: Maybe<GraphStoreSimplifiedUserMemberOfConversationConnection>;
|
|
29687
30072
|
userMemberOfConversationInverse?: Maybe<GraphStoreSimplifiedUserMemberOfConversationInverseConnection>;
|
|
29688
30073
|
userMentionedInConversation?: Maybe<GraphStoreSimplifiedUserMentionedInConversationConnection>;
|
|
@@ -29726,6 +30111,8 @@ export declare type GraphStore = {
|
|
|
29726
30111
|
userUpdatedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseConnection>;
|
|
29727
30112
|
userUpdatedGraphDocument?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentConnection>;
|
|
29728
30113
|
userUpdatedGraphDocumentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentInverseConnection>;
|
|
30114
|
+
userUpdatedIssue?: Maybe<GraphStoreSimplifiedUserUpdatedIssueConnection>;
|
|
30115
|
+
userUpdatedIssueInverse?: Maybe<GraphStoreSimplifiedUserUpdatedIssueInverseConnection>;
|
|
29729
30116
|
userViewedAtlasGoal?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalConnection>;
|
|
29730
30117
|
userViewedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection>;
|
|
29731
30118
|
userViewedAtlasProject?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectConnection>;
|
|
@@ -32503,6 +32890,22 @@ export declare type GraphStoreUserAuthoredPrInverseArgs = {
|
|
|
32503
32890
|
id: Scalars['ID']['input'];
|
|
32504
32891
|
sort?: InputMaybe<GraphStoreUserAuthoredPrSortInput>;
|
|
32505
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
|
+
};
|
|
32506
32909
|
export declare type GraphStoreUserCanViewConfluenceSpaceArgs = {
|
|
32507
32910
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32508
32911
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32937,6 +33340,22 @@ export declare type GraphStoreUserLaunchedReleaseInverseArgs = {
|
|
|
32937
33340
|
id: Scalars['ID']['input'];
|
|
32938
33341
|
sort?: InputMaybe<GraphStoreUserLaunchedReleaseSortInput>;
|
|
32939
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
|
+
};
|
|
32940
33359
|
export declare type GraphStoreUserMemberOfConversationArgs = {
|
|
32941
33360
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32942
33361
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33238,6 +33657,20 @@ export declare type GraphStoreUserUpdatedGraphDocumentInverseArgs = {
|
|
|
33238
33657
|
id: Scalars['ID']['input'];
|
|
33239
33658
|
sort?: InputMaybe<GraphStoreUserUpdatedGraphDocumentSortInput>;
|
|
33240
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
|
+
};
|
|
33241
33674
|
export declare type GraphStoreUserViewedAtlasGoalArgs = {
|
|
33242
33675
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33243
33676
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -43212,6 +43645,38 @@ export declare type GraphStoreSimplifiedUserAuthoredPrInverseEdge = {
|
|
|
43212
43645
|
};
|
|
43213
43646
|
export declare type GraphStoreSimplifiedUserAuthoredPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43214
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;
|
|
43215
43680
|
export declare type GraphStoreSimplifiedUserCanViewConfluenceSpaceConnection = HasPageInfo & {
|
|
43216
43681
|
__typename?: 'GraphStoreSimplifiedUserCanViewConfluenceSpaceConnection';
|
|
43217
43682
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceEdge>>>;
|
|
@@ -44084,6 +44549,38 @@ export declare type GraphStoreSimplifiedUserLaunchedReleaseInverseEdge = {
|
|
|
44084
44549
|
};
|
|
44085
44550
|
export declare type GraphStoreSimplifiedUserLaunchedReleaseInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
44086
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;
|
|
44087
44584
|
export declare type GraphStoreSimplifiedUserMemberOfConversationConnection = HasPageInfo & {
|
|
44088
44585
|
__typename?: 'GraphStoreSimplifiedUserMemberOfConversationConnection';
|
|
44089
44586
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMemberOfConversationEdge>>>;
|
|
@@ -44690,6 +45187,34 @@ export declare type GraphStoreSimplifiedUserUpdatedGraphDocumentInverseEdge = {
|
|
|
44690
45187
|
};
|
|
44691
45188
|
export declare type GraphStoreSimplifiedUserUpdatedGraphDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
44692
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;
|
|
44693
45218
|
export declare type GraphStoreSimplifiedUserViewedAtlasGoalConnection = HasPageInfo & {
|
|
44694
45219
|
__typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalConnection';
|
|
44695
45220
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedAtlasGoalEdge>>>;
|
|
@@ -45640,6 +46165,30 @@ export declare type GraphStoreUserAuthoredCommitSortInput = {
|
|
|
45640
46165
|
export declare type GraphStoreUserAuthoredPrSortInput = {
|
|
45641
46166
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45642
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
|
+
};
|
|
45643
46192
|
export declare type GraphStoreUserCanViewConfluenceSpaceSortInput = {
|
|
45644
46193
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45645
46194
|
};
|
|
@@ -45736,6 +46285,30 @@ export declare type GraphStoreUserLastUpdatedDesignSortInput = {
|
|
|
45736
46285
|
export declare type GraphStoreUserLaunchedReleaseSortInput = {
|
|
45737
46286
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45738
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
|
+
};
|
|
45739
46312
|
export declare type GraphStoreUserMemberOfConversationSortInput = {
|
|
45740
46313
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45741
46314
|
};
|
|
@@ -45805,6 +46378,9 @@ export declare type GraphStoreUserUpdatedConfluenceWhiteboardSortInput = {
|
|
|
45805
46378
|
export declare type GraphStoreUserUpdatedGraphDocumentSortInput = {
|
|
45806
46379
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45807
46380
|
};
|
|
46381
|
+
export declare type GraphStoreUserUpdatedIssueSortInput = {
|
|
46382
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46383
|
+
};
|
|
45808
46384
|
export declare type GraphStoreUserViewedAtlasGoalSortInput = {
|
|
45809
46385
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45810
46386
|
};
|
|
@@ -50420,12 +50996,15 @@ export declare type JiraBulkOperationInput = {
|
|
|
50420
50996
|
bulkDeleteInput?: InputMaybe<JiraBulkDeleteInput>;
|
|
50421
50997
|
bulkEditInput?: InputMaybe<JiraBulkEditInput>;
|
|
50422
50998
|
bulkTransitionsInput?: InputMaybe<Array<JiraBulkTransitionsInput>>;
|
|
50999
|
+
bulkWatchOrUnwatchInput?: InputMaybe<JiraBulkWatchOrUnwatchInput>;
|
|
50423
51000
|
sendBulkNotification?: InputMaybe<Scalars['Boolean']['input']>;
|
|
50424
51001
|
};
|
|
50425
51002
|
export declare enum JiraBulkOperationType {
|
|
50426
51003
|
BulkDelete = "BULK_DELETE",
|
|
50427
51004
|
BulkEdit = "BULK_EDIT",
|
|
50428
|
-
BulkTransition = "BULK_TRANSITION"
|
|
51005
|
+
BulkTransition = "BULK_TRANSITION",
|
|
51006
|
+
BulkUnwatch = "BULK_UNWATCH",
|
|
51007
|
+
BulkWatch = "BULK_WATCH"
|
|
50429
51008
|
}
|
|
50430
51009
|
export declare type JiraBulkTransition = Node & {
|
|
50431
51010
|
__typename?: 'JiraBulkTransition';
|
|
@@ -50478,6 +51057,9 @@ export declare type JiraBulkTransitionsInput = {
|
|
|
50478
51057
|
transitionId: Scalars['String']['input'];
|
|
50479
51058
|
transitionScreenInput?: InputMaybe<JiraTransitionScreenInput>;
|
|
50480
51059
|
};
|
|
51060
|
+
export declare type JiraBulkWatchOrUnwatchInput = {
|
|
51061
|
+
selectedIssueIds: Array<Scalars['ID']['input']>;
|
|
51062
|
+
};
|
|
50481
51063
|
export declare type JiraCmdbField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
50482
51064
|
__typename?: 'JiraCMDBField';
|
|
50483
51065
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -66697,6 +67279,7 @@ export declare type KnowledgeDiscoveryAdminhubBookmarkFailureMetadata = {
|
|
|
66697
67279
|
};
|
|
66698
67280
|
export declare type KnowledgeDiscoveryAdminhubBookmarkProperties = {
|
|
66699
67281
|
__typename?: 'KnowledgeDiscoveryAdminhubBookmarkProperties';
|
|
67282
|
+
bookmarkState?: Maybe<KnowledgeDiscoveryBookmarkState>;
|
|
66700
67283
|
cloudId: Scalars['String']['output'];
|
|
66701
67284
|
createdTimestamp: Scalars['String']['output'];
|
|
66702
67285
|
creator?: Maybe<User>;
|
|
@@ -66738,6 +67321,7 @@ export declare type KnowledgeDiscoveryBookmarkMutationErrorExtension = MutationE
|
|
|
66738
67321
|
};
|
|
66739
67322
|
export declare type KnowledgeDiscoveryBookmarkProperties = {
|
|
66740
67323
|
__typename?: 'KnowledgeDiscoveryBookmarkProperties';
|
|
67324
|
+
bookmarkState?: Maybe<KnowledgeDiscoveryBookmarkState>;
|
|
66741
67325
|
description?: Maybe<Scalars['String']['output']>;
|
|
66742
67326
|
keyPhrase: Scalars['String']['output'];
|
|
66743
67327
|
lastModifiedTimestamp: Scalars['String']['output'];
|
|
@@ -66746,6 +67330,10 @@ export declare type KnowledgeDiscoveryBookmarkProperties = {
|
|
|
66746
67330
|
url: Scalars['String']['output'];
|
|
66747
67331
|
};
|
|
66748
67332
|
export declare type KnowledgeDiscoveryBookmarkResult = KnowledgeDiscoveryBookmark | QueryError;
|
|
67333
|
+
export declare enum KnowledgeDiscoveryBookmarkState {
|
|
67334
|
+
Active = "ACTIVE",
|
|
67335
|
+
Suggested = "SUGGESTED"
|
|
67336
|
+
}
|
|
66749
67337
|
export declare type KnowledgeDiscoveryBookmarkValidationFailureMetadata = KnowledgeDiscoveryAdminhubBookmarkFailureMetadata & {
|
|
66750
67338
|
__typename?: 'KnowledgeDiscoveryBookmarkValidationFailureMetadata';
|
|
66751
67339
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
@@ -67065,6 +67653,7 @@ export declare type KnowledgeDiscoveryRelatedEntityRequests = {
|
|
|
67065
67653
|
export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
67066
67654
|
KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
|
|
67067
67655
|
NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
|
|
67656
|
+
Navigational = "NAVIGATIONAL",
|
|
67068
67657
|
None = "NONE",
|
|
67069
67658
|
Person = "PERSON",
|
|
67070
67659
|
Team = "TEAM"
|
|
@@ -69279,6 +69868,14 @@ export declare type MarketplaceStoreEditionsByAppKeyInput = {
|
|
|
69279
69868
|
export declare type MarketplaceStoreEditionsInput = {
|
|
69280
69869
|
appId?: InputMaybe<Scalars['String']['input']>;
|
|
69281
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
|
+
};
|
|
69282
69879
|
export declare enum MarketplaceStoreEnterpriseProduct {
|
|
69283
69880
|
Confluence = "CONFLUENCE",
|
|
69284
69881
|
Jira = "JIRA"
|
|
@@ -69457,6 +70054,13 @@ export declare type MarketplaceStoreMutationApi = {
|
|
|
69457
70054
|
export declare type MarketplaceStoreMutationApiInstallAppArgs = {
|
|
69458
70055
|
input: MarketplaceStoreInstallAppInput;
|
|
69459
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
|
+
};
|
|
69460
70064
|
export declare type MarketplaceStoreOrgDetails = MarketplaceStoreMultiInstanceDetails & {
|
|
69461
70065
|
__typename?: 'MarketplaceStoreOrgDetails';
|
|
69462
70066
|
id: Scalars['ID']['output'];
|
|
@@ -69595,6 +70199,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
69595
70199
|
currentUser: MarketplaceStoreCurrentUserResponse;
|
|
69596
70200
|
editions: Array<MarketplaceStoreEdition>;
|
|
69597
70201
|
editionsByAppKey: Array<MarketplaceStoreEdition>;
|
|
70202
|
+
eligibleOfferingsForApp: MarketplaceStoreEligibleAppOfferingsResponse;
|
|
69598
70203
|
geoip: MarketplaceStoreGeoIpResponse;
|
|
69599
70204
|
homePage: MarketplaceStoreHomePageResponse;
|
|
69600
70205
|
hostStatus: MarketplaceStoreHostStatusResponse;
|
|
@@ -69635,6 +70240,9 @@ export declare type MarketplaceStoreQueryApiEditionsArgs = {
|
|
|
69635
70240
|
export declare type MarketplaceStoreQueryApiEditionsByAppKeyArgs = {
|
|
69636
70241
|
product: MarketplaceStoreEditionsByAppKeyInput;
|
|
69637
70242
|
};
|
|
70243
|
+
export declare type MarketplaceStoreQueryApiEligibleOfferingsForAppArgs = {
|
|
70244
|
+
input: MarketplaceStoreEligibleAppOfferingsInput;
|
|
70245
|
+
};
|
|
69638
70246
|
export declare type MarketplaceStoreQueryApiHomePageArgs = {
|
|
69639
70247
|
productId?: InputMaybe<Scalars['String']['input']>;
|
|
69640
70248
|
};
|
|
@@ -71597,6 +72205,7 @@ export declare type Mutation = {
|
|
|
71597
72205
|
devAi?: Maybe<DevAiMutations>;
|
|
71598
72206
|
devOps?: Maybe<DevOpsMutation>;
|
|
71599
72207
|
devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
|
|
72208
|
+
devai_createTechnicalPlannerJob?: Maybe<DevAiCreateTechnicalPlannerJobPayload>;
|
|
71600
72209
|
devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
|
|
71601
72210
|
disableExperiment?: Maybe<TapExperiment>;
|
|
71602
72211
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
@@ -72772,6 +73381,12 @@ export declare type MutationDevai_ContinueJobWithPromptArgs = {
|
|
|
72772
73381
|
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
72773
73382
|
repoUrl: Scalars['String']['input'];
|
|
72774
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
|
+
};
|
|
72775
73390
|
export declare type MutationDevai_InvokeAutodevRovoAgentArgs = {
|
|
72776
73391
|
agentId: Scalars['ID']['input'];
|
|
72777
73392
|
issueId: Scalars['ID']['input'];
|
|
@@ -76325,6 +76940,7 @@ export declare type Query = {
|
|
|
76325
76940
|
confluence_teamPresenceSpaceSettings?: Maybe<ConfluenceTeamPresenceSpaceSettings>;
|
|
76326
76941
|
confluence_template?: Maybe<ContentTemplate>;
|
|
76327
76942
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
76943
|
+
confluence_userContentAccess?: Maybe<ConfluenceUserContentAccessResult>;
|
|
76328
76944
|
confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
|
|
76329
76945
|
confluence_workflow?: Maybe<ConfluenceWorkflow>;
|
|
76330
76946
|
confluence_workflowApplicationsByContentId?: Maybe<ConfluenceWorkflowApplicationConnection>;
|
|
@@ -76400,6 +77016,8 @@ export declare type Query = {
|
|
|
76400
77016
|
devai_autodevJobLogs?: Maybe<DevAiAutodevLogConnection>;
|
|
76401
77017
|
devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
|
|
76402
77018
|
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
77019
|
+
devai_technicalPlannerJobById?: Maybe<DevAiTechnicalPlannerJob>;
|
|
77020
|
+
devai_technicalPlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
|
|
76403
77021
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
76404
77022
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
76405
77023
|
diagnostics?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -76927,6 +77545,7 @@ export declare type QueryCommentsArgs = {
|
|
|
76927
77545
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
76928
77546
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
76929
77547
|
commentId?: InputMaybe<Scalars['ID']['input']>;
|
|
77548
|
+
confluenceCommentFilter?: InputMaybe<ConfluenceCommentFilter>;
|
|
76930
77549
|
contentStatus?: InputMaybe<Array<InputMaybe<GraphQlContentStatus>>>;
|
|
76931
77550
|
depth?: InputMaybe<Depth>;
|
|
76932
77551
|
first?: InputMaybe<Scalars['Long']['input']>;
|
|
@@ -76936,6 +77555,7 @@ export declare type QueryCommentsArgs = {
|
|
|
76936
77555
|
location?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
76937
77556
|
pageId?: InputMaybe<Scalars['ID']['input']>;
|
|
76938
77557
|
recentFirst?: InputMaybe<Scalars['Boolean']['input']>;
|
|
77558
|
+
singleThreaded?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76939
77559
|
type?: InputMaybe<Array<InputMaybe<CommentType>>>;
|
|
76940
77560
|
};
|
|
76941
77561
|
export declare type QueryCommentsDigestArgs = {
|
|
@@ -77942,6 +78562,12 @@ export declare type QueryConfluence_TemplateArgs = {
|
|
|
77942
78562
|
export declare type QueryConfluence_TenantContextArgs = {
|
|
77943
78563
|
cloudId: Scalars['ID']['input'];
|
|
77944
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
|
+
};
|
|
77945
78571
|
export declare type QueryConfluence_ValidateCalendarJqlArgs = {
|
|
77946
78572
|
applicationId: Scalars['ID']['input'];
|
|
77947
78573
|
cloudId: Scalars['ID']['input'];
|
|
@@ -78300,6 +78926,13 @@ export declare type QueryDevai_AutodevRovoAgentsArgs = {
|
|
|
78300
78926
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
78301
78927
|
templatesFilter?: InputMaybe<DevAiRovoAgentTemplateFilter>;
|
|
78302
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
|
+
};
|
|
78303
78936
|
export declare type QueryDeveloperLogAccessArgs = {
|
|
78304
78937
|
appId: Scalars['ID']['input'];
|
|
78305
78938
|
contextIds: Array<Scalars['ID']['input']>;
|
|
@@ -83913,6 +84546,7 @@ export declare type SiteSettings = {
|
|
|
83913
84546
|
companyHubName?: Maybe<Scalars['String']['output']>;
|
|
83914
84547
|
frontCover?: Maybe<FrontCover>;
|
|
83915
84548
|
homepage?: Maybe<Homepage>;
|
|
84549
|
+
isNav4OptedIn: Scalars['Boolean']['output'];
|
|
83916
84550
|
showApplicationTitle: Scalars['Boolean']['output'];
|
|
83917
84551
|
siteTitle: Scalars['String']['output'];
|
|
83918
84552
|
};
|
|
@@ -85079,7 +85713,6 @@ export declare type SubjectsByTypeUserWithRestrictionsArgs = {
|
|
|
85079
85713
|
};
|
|
85080
85714
|
export declare type Subscription = {
|
|
85081
85715
|
__typename?: 'Subscription';
|
|
85082
|
-
confluence?: Maybe<ConfluenceSubscriptionApi>;
|
|
85083
85716
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
85084
85717
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
85085
85718
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
@@ -87092,16 +87725,178 @@ export declare type TransitionFilter = {
|
|
|
87092
87725
|
from: Scalars['String']['input'];
|
|
87093
87726
|
to: Scalars['String']['input'];
|
|
87094
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
|
+
};
|
|
87095
87859
|
export declare type TrelloAddMemberInput = {
|
|
87096
87860
|
cardId: Scalars['ID']['input'];
|
|
87097
87861
|
userId: Scalars['ID']['input'];
|
|
87098
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
|
+
};
|
|
87099
87878
|
export declare type TrelloAddMemberToCardPayload = Payload & {
|
|
87100
87879
|
__typename?: 'TrelloAddMemberToCardPayload';
|
|
87101
87880
|
card?: Maybe<TrelloCard>;
|
|
87102
87881
|
errors?: Maybe<Array<MutationError>>;
|
|
87103
87882
|
success: Scalars['Boolean']['output'];
|
|
87104
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
|
+
};
|
|
87105
87900
|
export declare type TrelloArchiveCardInput = {
|
|
87106
87901
|
cardId: Scalars['ID']['input'];
|
|
87107
87902
|
};
|
|
@@ -87442,6 +88237,7 @@ export declare type TrelloBoardWorkspaceUpdated = {
|
|
|
87442
88237
|
};
|
|
87443
88238
|
export declare type TrelloCard = Node & {
|
|
87444
88239
|
__typename?: 'TrelloCard';
|
|
88240
|
+
actions?: Maybe<TrelloCardActionConnection>;
|
|
87445
88241
|
attachments?: Maybe<TrelloAttachmentConnection>;
|
|
87446
88242
|
badges?: Maybe<TrelloCardBadges>;
|
|
87447
88243
|
checklists?: Maybe<TrelloChecklistConnection>;
|
|
@@ -87474,6 +88270,11 @@ export declare type TrelloCard = Node & {
|
|
|
87474
88270
|
stickers?: Maybe<TrelloStickerConnection>;
|
|
87475
88271
|
url?: Maybe<Scalars['URL']['output']>;
|
|
87476
88272
|
};
|
|
88273
|
+
export declare type TrelloCardActionsArgs = {
|
|
88274
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88275
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88276
|
+
type?: InputMaybe<Array<TrelloCardActionType>>;
|
|
88277
|
+
};
|
|
87477
88278
|
export declare type TrelloCardAttachmentsArgs = {
|
|
87478
88279
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87479
88280
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -87503,6 +88304,30 @@ export declare type TrelloCardStickersArgs = {
|
|
|
87503
88304
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87504
88305
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87505
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;
|
|
87506
88331
|
export declare type TrelloCardAttachmentsByType = {
|
|
87507
88332
|
__typename?: 'TrelloCardAttachmentsByType';
|
|
87508
88333
|
trello?: Maybe<TrelloCardAttachmentsCount>;
|
|
@@ -87746,6 +88571,27 @@ export declare type TrelloChecklistUpdated = {
|
|
|
87746
88571
|
objectId: Scalars['ID']['output'];
|
|
87747
88572
|
position?: Maybe<Scalars['Float']['output']>;
|
|
87748
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
|
+
};
|
|
87749
88595
|
export declare type TrelloCreateCardInput = {
|
|
87750
88596
|
listId: Scalars['ID']['input'];
|
|
87751
88597
|
name: Scalars['String']['input'];
|
|
@@ -87900,6 +88746,14 @@ export declare type TrelloEditPlannerCalendarEventPayload = Payload & {
|
|
|
87900
88746
|
plannerCalendarUpdated?: Maybe<TrelloPlannerCalendar>;
|
|
87901
88747
|
success: Scalars['Boolean']['output'];
|
|
87902
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
|
+
};
|
|
87903
88757
|
export declare type TrelloEnterprise = {
|
|
87904
88758
|
__typename?: 'TrelloEnterprise';
|
|
87905
88759
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -88142,6 +88996,29 @@ export declare type TrelloMemberWorkspaceFilter = {
|
|
|
88142
88996
|
membershipType: TrelloWorkspaceMembershipType;
|
|
88143
88997
|
tier: TrelloWorkspaceTier;
|
|
88144
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
|
+
};
|
|
88145
89022
|
export declare type TrelloMutationApi = {
|
|
88146
89023
|
__typename?: 'TrelloMutationApi';
|
|
88147
89024
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
@@ -88284,6 +89161,7 @@ export declare type TrelloPlannerCalendarAccountEnabledCalendarsArgs = {
|
|
|
88284
89161
|
export declare type TrelloPlannerCalendarAccountProviderCalendarsArgs = {
|
|
88285
89162
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
88286
89163
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89164
|
+
syncToken?: InputMaybe<Scalars['String']['input']>;
|
|
88287
89165
|
};
|
|
88288
89166
|
export declare type TrelloPlannerCalendarAccountConnection = {
|
|
88289
89167
|
__typename?: 'TrelloPlannerCalendarAccountConnection';
|
|
@@ -88489,6 +89367,7 @@ export declare type TrelloPlannerProviderCalendarConnection = {
|
|
|
88489
89367
|
export declare type TrelloPlannerProviderCalendarEdge = {
|
|
88490
89368
|
__typename?: 'TrelloPlannerProviderCalendarEdge';
|
|
88491
89369
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
89370
|
+
deletedCalendar?: Maybe<TrelloProviderCalendarDeleted>;
|
|
88492
89371
|
node?: Maybe<TrelloPlannerProviderCalendar>;
|
|
88493
89372
|
};
|
|
88494
89373
|
export declare type TrelloPlannerUpdated = {
|
|
@@ -88552,6 +89431,10 @@ export declare type TrelloPowerUpUpdated = {
|
|
|
88552
89431
|
__typename?: 'TrelloPowerUpUpdated';
|
|
88553
89432
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
88554
89433
|
};
|
|
89434
|
+
export declare type TrelloProviderCalendarDeleted = {
|
|
89435
|
+
__typename?: 'TrelloProviderCalendarDeleted';
|
|
89436
|
+
id: Scalars['ID']['output'];
|
|
89437
|
+
};
|
|
88555
89438
|
export declare type TrelloProviderCalendarInterface = {
|
|
88556
89439
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
88557
89440
|
id: Scalars['ID']['output'];
|
|
@@ -88675,6 +89558,16 @@ export declare type TrelloQueryApiUsersByIdArgs = {
|
|
|
88675
89558
|
export declare type TrelloQueryApiWorkspaceArgs = {
|
|
88676
89559
|
id: Scalars['ID']['input'];
|
|
88677
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
|
+
};
|
|
88678
89571
|
export declare type TrelloRemoveCardFromPlannerCalendarEventInput = {
|
|
88679
89572
|
plannerCalendarEventCardId: Scalars['ID']['input'];
|
|
88680
89573
|
plannerCalendarId: Scalars['ID']['input'];
|
|
@@ -88686,6 +89579,21 @@ export declare type TrelloRemoveCardFromPlannerCalendarEventPayload = Payload &
|
|
|
88686
89579
|
eventCard?: Maybe<TrelloPlannerCalendarEventCardDeleted>;
|
|
88687
89580
|
success: Scalars['Boolean']['output'];
|
|
88688
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
|
+
};
|
|
88689
89597
|
export declare type TrelloRemoveMemberFromCardPayload = Payload & {
|
|
88690
89598
|
__typename?: 'TrelloRemoveMemberFromCardPayload';
|
|
88691
89599
|
card?: Maybe<TrelloCard>;
|
|
@@ -89041,6 +89949,8 @@ export declare type UnifiedAccount = UnifiedINode & {
|
|
|
89041
89949
|
isManaged: Scalars['Boolean']['output'];
|
|
89042
89950
|
isPrimary: Scalars['Boolean']['output'];
|
|
89043
89951
|
linkedAccounts?: Maybe<UnifiedULinkedAccountResult>;
|
|
89952
|
+
nickname: Scalars['String']['output'];
|
|
89953
|
+
picture: Scalars['String']['output'];
|
|
89044
89954
|
};
|
|
89045
89955
|
export declare type UnifiedAccountBasics = UnifiedINode & {
|
|
89046
89956
|
__typename?: 'UnifiedAccountBasics';
|
|
@@ -89050,6 +89960,8 @@ export declare type UnifiedAccountBasics = UnifiedINode & {
|
|
|
89050
89960
|
isManaged: Scalars['Boolean']['output'];
|
|
89051
89961
|
isPrimary: Scalars['Boolean']['output'];
|
|
89052
89962
|
linkedAccountsBasics?: Maybe<UnifiedULinkedAccountBasicsResult>;
|
|
89963
|
+
nickname: Scalars['String']['output'];
|
|
89964
|
+
picture: Scalars['String']['output'];
|
|
89053
89965
|
};
|
|
89054
89966
|
export declare type UnifiedAccountDetails = UnifiedINode & {
|
|
89055
89967
|
__typename?: 'UnifiedAccountDetails';
|
|
@@ -89564,6 +90476,7 @@ export declare type UnifiedMutationUpdateUnifiedProfileArgs = {
|
|
|
89564
90476
|
};
|
|
89565
90477
|
export declare type UnifiedMutationError = {
|
|
89566
90478
|
__typename?: 'UnifiedMutationError';
|
|
90479
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
89567
90480
|
extensions?: Maybe<UnifiedMutationErrorExtension>;
|
|
89568
90481
|
message?: Maybe<Scalars['String']['output']>;
|
|
89569
90482
|
};
|
|
@@ -89692,6 +90605,7 @@ export declare type UnifiedQueryUnifiedProfileArgs = {
|
|
|
89692
90605
|
};
|
|
89693
90606
|
export declare type UnifiedQueryError = UnifiedIQueryError & {
|
|
89694
90607
|
__typename?: 'UnifiedQueryError';
|
|
90608
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
89695
90609
|
extensions?: Maybe<Array<UnifiedQueryErrorExtension>>;
|
|
89696
90610
|
identifier?: Maybe<Scalars['ID']['output']>;
|
|
89697
90611
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -89985,6 +90899,7 @@ export declare type UpdateCompassLinkInput = {
|
|
|
89985
90899
|
url?: InputMaybe<Scalars['URL']['input']>;
|
|
89986
90900
|
};
|
|
89987
90901
|
export declare type UpdateCompassScorecardCriteriaInput = {
|
|
90902
|
+
dynamic?: InputMaybe<CompassUpdateDynamicScorecardCriteriaInput>;
|
|
89988
90903
|
hasCustomBooleanValue?: InputMaybe<CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput>;
|
|
89989
90904
|
hasCustomMultiSelectValue?: InputMaybe<CompassUpdateHasCustomMultiSelectFieldScorecardCriteriaInput>;
|
|
89990
90905
|
hasCustomNumberValue?: InputMaybe<CompassUpdateHasCustomNumberFieldScorecardCriteriaInput>;
|