@forge/cli-shared 6.6.0-next.9 → 6.6.1-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +50 -0
- package/LICENSE.txt +7 -0
- package/out/graphql/graphql-types.d.ts +938 -21
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +101 -30
- package/out/service/supported-products-service.d.ts +2 -1
- package/out/service/supported-products-service.d.ts.map +1 -1
- package/out/service/supported-products-service.js +5 -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>;
|
|
@@ -22907,11 +23254,6 @@ export declare type EcosystemOnEventBody = {
|
|
|
22907
23254
|
__typename?: 'EcosystemOnEventBody';
|
|
22908
23255
|
payload?: Maybe<Scalars['String']['output']>;
|
|
22909
23256
|
};
|
|
22910
|
-
export declare enum EcosystemPrimaryProduct {
|
|
22911
|
-
Compass = "COMPASS",
|
|
22912
|
-
Confluence = "CONFLUENCE",
|
|
22913
|
-
Jira = "JIRA"
|
|
22914
|
-
}
|
|
22915
23257
|
export declare type EcosystemPublishEventBody = {
|
|
22916
23258
|
__typename?: 'EcosystemPublishEventBody';
|
|
22917
23259
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
@@ -23017,6 +23359,11 @@ export declare type EcosystemQueryUserGrantsArgs = {
|
|
|
23017
23359
|
export declare type EcosystemQueryUserInstallationRulesArgs = {
|
|
23018
23360
|
cloudId: Scalars['ID']['input'];
|
|
23019
23361
|
};
|
|
23362
|
+
export declare enum EcosystemRequiredProduct {
|
|
23363
|
+
Compass = "COMPASS",
|
|
23364
|
+
Confluence = "CONFLUENCE",
|
|
23365
|
+
Jira = "JIRA"
|
|
23366
|
+
}
|
|
23020
23367
|
export declare type EcosystemSubscription = {
|
|
23021
23368
|
__typename?: 'EcosystemSubscription';
|
|
23022
23369
|
onAppClientEvent?: Maybe<EcosystemOnEventBody>;
|
|
@@ -29655,6 +30002,8 @@ export declare type GraphStore = {
|
|
|
29655
30002
|
userAuthoredCommitInverse?: Maybe<GraphStoreSimplifiedUserAuthoredCommitInverseConnection>;
|
|
29656
30003
|
userAuthoredPr?: Maybe<GraphStoreSimplifiedUserAuthoredPrConnection>;
|
|
29657
30004
|
userAuthoredPrInverse?: Maybe<GraphStoreSimplifiedUserAuthoredPrInverseConnection>;
|
|
30005
|
+
userAuthoritativelyLinkedThirdPartyUser?: Maybe<GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserConnection>;
|
|
30006
|
+
userAuthoritativelyLinkedThirdPartyUserInverse?: Maybe<GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserInverseConnection>;
|
|
29658
30007
|
userCanViewConfluenceSpace?: Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceConnection>;
|
|
29659
30008
|
userCanViewConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseConnection>;
|
|
29660
30009
|
userCollaboratedOnDocument?: Maybe<GraphStoreSimplifiedUserCollaboratedOnDocumentConnection>;
|
|
@@ -29717,6 +30066,8 @@ export declare type GraphStore = {
|
|
|
29717
30066
|
userLastUpdatedDesignInverse?: Maybe<GraphStoreSimplifiedUserLastUpdatedDesignInverseConnection>;
|
|
29718
30067
|
userLaunchedRelease?: Maybe<GraphStoreSimplifiedUserLaunchedReleaseConnection>;
|
|
29719
30068
|
userLaunchedReleaseInverse?: Maybe<GraphStoreSimplifiedUserLaunchedReleaseInverseConnection>;
|
|
30069
|
+
userLinkedThirdPartyUser?: Maybe<GraphStoreSimplifiedUserLinkedThirdPartyUserConnection>;
|
|
30070
|
+
userLinkedThirdPartyUserInverse?: Maybe<GraphStoreSimplifiedUserLinkedThirdPartyUserInverseConnection>;
|
|
29720
30071
|
userMemberOfConversation?: Maybe<GraphStoreSimplifiedUserMemberOfConversationConnection>;
|
|
29721
30072
|
userMemberOfConversationInverse?: Maybe<GraphStoreSimplifiedUserMemberOfConversationInverseConnection>;
|
|
29722
30073
|
userMentionedInConversation?: Maybe<GraphStoreSimplifiedUserMentionedInConversationConnection>;
|
|
@@ -29760,6 +30111,8 @@ export declare type GraphStore = {
|
|
|
29760
30111
|
userUpdatedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseConnection>;
|
|
29761
30112
|
userUpdatedGraphDocument?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentConnection>;
|
|
29762
30113
|
userUpdatedGraphDocumentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentInverseConnection>;
|
|
30114
|
+
userUpdatedIssue?: Maybe<GraphStoreSimplifiedUserUpdatedIssueConnection>;
|
|
30115
|
+
userUpdatedIssueInverse?: Maybe<GraphStoreSimplifiedUserUpdatedIssueInverseConnection>;
|
|
29763
30116
|
userViewedAtlasGoal?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalConnection>;
|
|
29764
30117
|
userViewedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection>;
|
|
29765
30118
|
userViewedAtlasProject?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectConnection>;
|
|
@@ -32537,6 +32890,22 @@ export declare type GraphStoreUserAuthoredPrInverseArgs = {
|
|
|
32537
32890
|
id: Scalars['ID']['input'];
|
|
32538
32891
|
sort?: InputMaybe<GraphStoreUserAuthoredPrSortInput>;
|
|
32539
32892
|
};
|
|
32893
|
+
export declare type GraphStoreUserAuthoritativelyLinkedThirdPartyUserArgs = {
|
|
32894
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32895
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32896
|
+
filter?: InputMaybe<GraphStoreUserAuthoritativelyLinkedThirdPartyUserFilterInput>;
|
|
32897
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32898
|
+
id: Scalars['ID']['input'];
|
|
32899
|
+
sort?: InputMaybe<GraphStoreUserAuthoritativelyLinkedThirdPartyUserSortInput>;
|
|
32900
|
+
};
|
|
32901
|
+
export declare type GraphStoreUserAuthoritativelyLinkedThirdPartyUserInverseArgs = {
|
|
32902
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32903
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32904
|
+
filter?: InputMaybe<GraphStoreUserAuthoritativelyLinkedThirdPartyUserFilterInput>;
|
|
32905
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32906
|
+
id: Scalars['ID']['input'];
|
|
32907
|
+
sort?: InputMaybe<GraphStoreUserAuthoritativelyLinkedThirdPartyUserSortInput>;
|
|
32908
|
+
};
|
|
32540
32909
|
export declare type GraphStoreUserCanViewConfluenceSpaceArgs = {
|
|
32541
32910
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32542
32911
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32971,6 +33340,22 @@ export declare type GraphStoreUserLaunchedReleaseInverseArgs = {
|
|
|
32971
33340
|
id: Scalars['ID']['input'];
|
|
32972
33341
|
sort?: InputMaybe<GraphStoreUserLaunchedReleaseSortInput>;
|
|
32973
33342
|
};
|
|
33343
|
+
export declare type GraphStoreUserLinkedThirdPartyUserArgs = {
|
|
33344
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33345
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33346
|
+
filter?: InputMaybe<GraphStoreUserLinkedThirdPartyUserFilterInput>;
|
|
33347
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33348
|
+
id: Scalars['ID']['input'];
|
|
33349
|
+
sort?: InputMaybe<GraphStoreUserLinkedThirdPartyUserSortInput>;
|
|
33350
|
+
};
|
|
33351
|
+
export declare type GraphStoreUserLinkedThirdPartyUserInverseArgs = {
|
|
33352
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33353
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33354
|
+
filter?: InputMaybe<GraphStoreUserLinkedThirdPartyUserFilterInput>;
|
|
33355
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33356
|
+
id: Scalars['ID']['input'];
|
|
33357
|
+
sort?: InputMaybe<GraphStoreUserLinkedThirdPartyUserSortInput>;
|
|
33358
|
+
};
|
|
32974
33359
|
export declare type GraphStoreUserMemberOfConversationArgs = {
|
|
32975
33360
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32976
33361
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33272,6 +33657,20 @@ export declare type GraphStoreUserUpdatedGraphDocumentInverseArgs = {
|
|
|
33272
33657
|
id: Scalars['ID']['input'];
|
|
33273
33658
|
sort?: InputMaybe<GraphStoreUserUpdatedGraphDocumentSortInput>;
|
|
33274
33659
|
};
|
|
33660
|
+
export declare type GraphStoreUserUpdatedIssueArgs = {
|
|
33661
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33662
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33663
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33664
|
+
id: Scalars['ID']['input'];
|
|
33665
|
+
sort?: InputMaybe<GraphStoreUserUpdatedIssueSortInput>;
|
|
33666
|
+
};
|
|
33667
|
+
export declare type GraphStoreUserUpdatedIssueInverseArgs = {
|
|
33668
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33669
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33670
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33671
|
+
id: Scalars['ID']['input'];
|
|
33672
|
+
sort?: InputMaybe<GraphStoreUserUpdatedIssueSortInput>;
|
|
33673
|
+
};
|
|
33275
33674
|
export declare type GraphStoreUserViewedAtlasGoalArgs = {
|
|
33276
33675
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33277
33676
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -43246,6 +43645,38 @@ export declare type GraphStoreSimplifiedUserAuthoredPrInverseEdge = {
|
|
|
43246
43645
|
};
|
|
43247
43646
|
export declare type GraphStoreSimplifiedUserAuthoredPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43248
43647
|
export declare type GraphStoreSimplifiedUserAuthoredPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
43648
|
+
export declare type GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserConnection = HasPageInfo & HasTotal & {
|
|
43649
|
+
__typename?: 'GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserConnection';
|
|
43650
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserEdge>>>;
|
|
43651
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
43652
|
+
pageInfo: PageInfo;
|
|
43653
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
43654
|
+
};
|
|
43655
|
+
export declare type GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserEdge = {
|
|
43656
|
+
__typename?: 'GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserEdge';
|
|
43657
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43658
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43659
|
+
id: Scalars['ID']['output'];
|
|
43660
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43661
|
+
node?: Maybe<GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserUnion>;
|
|
43662
|
+
};
|
|
43663
|
+
export declare type GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserInverseConnection = HasPageInfo & HasTotal & {
|
|
43664
|
+
__typename?: 'GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserInverseConnection';
|
|
43665
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserInverseEdge>>>;
|
|
43666
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
43667
|
+
pageInfo: PageInfo;
|
|
43668
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
43669
|
+
};
|
|
43670
|
+
export declare type GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserInverseEdge = {
|
|
43671
|
+
__typename?: 'GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserInverseEdge';
|
|
43672
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43673
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43674
|
+
id: Scalars['ID']['output'];
|
|
43675
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43676
|
+
node?: Maybe<GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserInverseUnion>;
|
|
43677
|
+
};
|
|
43678
|
+
export declare type GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43679
|
+
export declare type GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserUnion = ThirdPartyUser;
|
|
43249
43680
|
export declare type GraphStoreSimplifiedUserCanViewConfluenceSpaceConnection = HasPageInfo & {
|
|
43250
43681
|
__typename?: 'GraphStoreSimplifiedUserCanViewConfluenceSpaceConnection';
|
|
43251
43682
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceEdge>>>;
|
|
@@ -44118,6 +44549,38 @@ export declare type GraphStoreSimplifiedUserLaunchedReleaseInverseEdge = {
|
|
|
44118
44549
|
};
|
|
44119
44550
|
export declare type GraphStoreSimplifiedUserLaunchedReleaseInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
44120
44551
|
export declare type GraphStoreSimplifiedUserLaunchedReleaseUnion = JiraVersion;
|
|
44552
|
+
export declare type GraphStoreSimplifiedUserLinkedThirdPartyUserConnection = HasPageInfo & HasTotal & {
|
|
44553
|
+
__typename?: 'GraphStoreSimplifiedUserLinkedThirdPartyUserConnection';
|
|
44554
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserLinkedThirdPartyUserEdge>>>;
|
|
44555
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
44556
|
+
pageInfo: PageInfo;
|
|
44557
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
44558
|
+
};
|
|
44559
|
+
export declare type GraphStoreSimplifiedUserLinkedThirdPartyUserEdge = {
|
|
44560
|
+
__typename?: 'GraphStoreSimplifiedUserLinkedThirdPartyUserEdge';
|
|
44561
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44562
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44563
|
+
id: Scalars['ID']['output'];
|
|
44564
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44565
|
+
node?: Maybe<GraphStoreSimplifiedUserLinkedThirdPartyUserUnion>;
|
|
44566
|
+
};
|
|
44567
|
+
export declare type GraphStoreSimplifiedUserLinkedThirdPartyUserInverseConnection = HasPageInfo & HasTotal & {
|
|
44568
|
+
__typename?: 'GraphStoreSimplifiedUserLinkedThirdPartyUserInverseConnection';
|
|
44569
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserLinkedThirdPartyUserInverseEdge>>>;
|
|
44570
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
44571
|
+
pageInfo: PageInfo;
|
|
44572
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
44573
|
+
};
|
|
44574
|
+
export declare type GraphStoreSimplifiedUserLinkedThirdPartyUserInverseEdge = {
|
|
44575
|
+
__typename?: 'GraphStoreSimplifiedUserLinkedThirdPartyUserInverseEdge';
|
|
44576
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44577
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44578
|
+
id: Scalars['ID']['output'];
|
|
44579
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44580
|
+
node?: Maybe<GraphStoreSimplifiedUserLinkedThirdPartyUserInverseUnion>;
|
|
44581
|
+
};
|
|
44582
|
+
export declare type GraphStoreSimplifiedUserLinkedThirdPartyUserInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
44583
|
+
export declare type GraphStoreSimplifiedUserLinkedThirdPartyUserUnion = ThirdPartyUser;
|
|
44121
44584
|
export declare type GraphStoreSimplifiedUserMemberOfConversationConnection = HasPageInfo & {
|
|
44122
44585
|
__typename?: 'GraphStoreSimplifiedUserMemberOfConversationConnection';
|
|
44123
44586
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMemberOfConversationEdge>>>;
|
|
@@ -44724,6 +45187,34 @@ export declare type GraphStoreSimplifiedUserUpdatedGraphDocumentInverseEdge = {
|
|
|
44724
45187
|
};
|
|
44725
45188
|
export declare type GraphStoreSimplifiedUserUpdatedGraphDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
44726
45189
|
export declare type GraphStoreSimplifiedUserUpdatedGraphDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
45190
|
+
export declare type GraphStoreSimplifiedUserUpdatedIssueConnection = HasPageInfo & {
|
|
45191
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedIssueConnection';
|
|
45192
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedIssueEdge>>>;
|
|
45193
|
+
pageInfo: PageInfo;
|
|
45194
|
+
};
|
|
45195
|
+
export declare type GraphStoreSimplifiedUserUpdatedIssueEdge = {
|
|
45196
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedIssueEdge';
|
|
45197
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45198
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45199
|
+
id: Scalars['ID']['output'];
|
|
45200
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45201
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedIssueUnion>;
|
|
45202
|
+
};
|
|
45203
|
+
export declare type GraphStoreSimplifiedUserUpdatedIssueInverseConnection = HasPageInfo & {
|
|
45204
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedIssueInverseConnection';
|
|
45205
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedIssueInverseEdge>>>;
|
|
45206
|
+
pageInfo: PageInfo;
|
|
45207
|
+
};
|
|
45208
|
+
export declare type GraphStoreSimplifiedUserUpdatedIssueInverseEdge = {
|
|
45209
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedIssueInverseEdge';
|
|
45210
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45211
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45212
|
+
id: Scalars['ID']['output'];
|
|
45213
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45214
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedIssueInverseUnion>;
|
|
45215
|
+
};
|
|
45216
|
+
export declare type GraphStoreSimplifiedUserUpdatedIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45217
|
+
export declare type GraphStoreSimplifiedUserUpdatedIssueUnion = JiraIssue;
|
|
44727
45218
|
export declare type GraphStoreSimplifiedUserViewedAtlasGoalConnection = HasPageInfo & {
|
|
44728
45219
|
__typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalConnection';
|
|
44729
45220
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedAtlasGoalEdge>>>;
|
|
@@ -45674,6 +46165,30 @@ export declare type GraphStoreUserAuthoredCommitSortInput = {
|
|
|
45674
46165
|
export declare type GraphStoreUserAuthoredPrSortInput = {
|
|
45675
46166
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45676
46167
|
};
|
|
46168
|
+
export declare type GraphStoreUserAuthoritativelyLinkedThirdPartyUserConditionalFilterInput = {
|
|
46169
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
46170
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
46171
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
46172
|
+
relationship_graphworkspaceAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
46173
|
+
relationship_integrationAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
46174
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
46175
|
+
to_graphworkspaceAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
46176
|
+
to_integrationAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
46177
|
+
};
|
|
46178
|
+
export declare type GraphStoreUserAuthoritativelyLinkedThirdPartyUserFilterInput = {
|
|
46179
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreUserAuthoritativelyLinkedThirdPartyUserConditionalFilterInput>>>;
|
|
46180
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreUserAuthoritativelyLinkedThirdPartyUserConditionalFilterInput>>>;
|
|
46181
|
+
};
|
|
46182
|
+
export declare type GraphStoreUserAuthoritativelyLinkedThirdPartyUserSortInput = {
|
|
46183
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
46184
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
46185
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46186
|
+
relationship_graphworkspaceAri?: InputMaybe<GraphStoreSortInput>;
|
|
46187
|
+
relationship_integrationAri?: InputMaybe<GraphStoreSortInput>;
|
|
46188
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
46189
|
+
to_graphworkspaceAri?: InputMaybe<GraphStoreSortInput>;
|
|
46190
|
+
to_integrationAri?: InputMaybe<GraphStoreSortInput>;
|
|
46191
|
+
};
|
|
45677
46192
|
export declare type GraphStoreUserCanViewConfluenceSpaceSortInput = {
|
|
45678
46193
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45679
46194
|
};
|
|
@@ -45770,6 +46285,30 @@ export declare type GraphStoreUserLastUpdatedDesignSortInput = {
|
|
|
45770
46285
|
export declare type GraphStoreUserLaunchedReleaseSortInput = {
|
|
45771
46286
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45772
46287
|
};
|
|
46288
|
+
export declare type GraphStoreUserLinkedThirdPartyUserConditionalFilterInput = {
|
|
46289
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
46290
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
46291
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
46292
|
+
relationship_graphworkspaceAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
46293
|
+
relationship_integrationAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
46294
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
46295
|
+
to_graphworkspaceAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
46296
|
+
to_integrationAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
46297
|
+
};
|
|
46298
|
+
export declare type GraphStoreUserLinkedThirdPartyUserFilterInput = {
|
|
46299
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreUserLinkedThirdPartyUserConditionalFilterInput>>>;
|
|
46300
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreUserLinkedThirdPartyUserConditionalFilterInput>>>;
|
|
46301
|
+
};
|
|
46302
|
+
export declare type GraphStoreUserLinkedThirdPartyUserSortInput = {
|
|
46303
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
46304
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
46305
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46306
|
+
relationship_graphworkspaceAri?: InputMaybe<GraphStoreSortInput>;
|
|
46307
|
+
relationship_integrationAri?: InputMaybe<GraphStoreSortInput>;
|
|
46308
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
46309
|
+
to_graphworkspaceAri?: InputMaybe<GraphStoreSortInput>;
|
|
46310
|
+
to_integrationAri?: InputMaybe<GraphStoreSortInput>;
|
|
46311
|
+
};
|
|
45773
46312
|
export declare type GraphStoreUserMemberOfConversationSortInput = {
|
|
45774
46313
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45775
46314
|
};
|
|
@@ -45839,6 +46378,9 @@ export declare type GraphStoreUserUpdatedConfluenceWhiteboardSortInput = {
|
|
|
45839
46378
|
export declare type GraphStoreUserUpdatedGraphDocumentSortInput = {
|
|
45840
46379
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45841
46380
|
};
|
|
46381
|
+
export declare type GraphStoreUserUpdatedIssueSortInput = {
|
|
46382
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46383
|
+
};
|
|
45842
46384
|
export declare type GraphStoreUserViewedAtlasGoalSortInput = {
|
|
45843
46385
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45844
46386
|
};
|
|
@@ -53284,6 +53826,7 @@ export declare type JiraForgeExtension = {
|
|
|
53284
53826
|
id: Scalars['ID']['output'];
|
|
53285
53827
|
installationId: Scalars['String']['output'];
|
|
53286
53828
|
license?: Maybe<JiraForgeExtensionLicense>;
|
|
53829
|
+
overrides?: Maybe<Scalars['JSON']['output']>;
|
|
53287
53830
|
properties: Scalars['JSON']['output'];
|
|
53288
53831
|
scopes: Array<Scalars['String']['output']>;
|
|
53289
53832
|
type: Scalars['String']['output'];
|
|
@@ -69326,6 +69869,14 @@ export declare type MarketplaceStoreEditionsByAppKeyInput = {
|
|
|
69326
69869
|
export declare type MarketplaceStoreEditionsInput = {
|
|
69327
69870
|
appId?: InputMaybe<Scalars['String']['input']>;
|
|
69328
69871
|
};
|
|
69872
|
+
export declare type MarketplaceStoreEligibleAppOfferingsInput = {
|
|
69873
|
+
cloudId: Scalars['String']['input'];
|
|
69874
|
+
product: MarketplaceStoreProduct;
|
|
69875
|
+
};
|
|
69876
|
+
export declare type MarketplaceStoreEligibleAppOfferingsResponse = {
|
|
69877
|
+
__typename?: 'MarketplaceStoreEligibleAppOfferingsResponse';
|
|
69878
|
+
eligibleOfferings?: Maybe<Array<Maybe<MarketplaceStoreOfferingDetails>>>;
|
|
69879
|
+
};
|
|
69329
69880
|
export declare enum MarketplaceStoreEnterpriseProduct {
|
|
69330
69881
|
Confluence = "CONFLUENCE",
|
|
69331
69882
|
Jira = "JIRA"
|
|
@@ -69504,6 +70055,13 @@ export declare type MarketplaceStoreMutationApi = {
|
|
|
69504
70055
|
export declare type MarketplaceStoreMutationApiInstallAppArgs = {
|
|
69505
70056
|
input: MarketplaceStoreInstallAppInput;
|
|
69506
70057
|
};
|
|
70058
|
+
export declare type MarketplaceStoreOfferingDetails = {
|
|
70059
|
+
__typename?: 'MarketplaceStoreOfferingDetails';
|
|
70060
|
+
id: Scalars['ID']['output'];
|
|
70061
|
+
isInstance?: Maybe<Scalars['Boolean']['output']>;
|
|
70062
|
+
isSandbox?: Maybe<Scalars['Boolean']['output']>;
|
|
70063
|
+
name: Scalars['String']['output'];
|
|
70064
|
+
};
|
|
69507
70065
|
export declare type MarketplaceStoreOrgDetails = MarketplaceStoreMultiInstanceDetails & {
|
|
69508
70066
|
__typename?: 'MarketplaceStoreOrgDetails';
|
|
69509
70067
|
id: Scalars['ID']['output'];
|
|
@@ -69642,6 +70200,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
69642
70200
|
currentUser: MarketplaceStoreCurrentUserResponse;
|
|
69643
70201
|
editions: Array<MarketplaceStoreEdition>;
|
|
69644
70202
|
editionsByAppKey: Array<MarketplaceStoreEdition>;
|
|
70203
|
+
eligibleOfferingsForApp: MarketplaceStoreEligibleAppOfferingsResponse;
|
|
69645
70204
|
geoip: MarketplaceStoreGeoIpResponse;
|
|
69646
70205
|
homePage: MarketplaceStoreHomePageResponse;
|
|
69647
70206
|
hostStatus: MarketplaceStoreHostStatusResponse;
|
|
@@ -69682,6 +70241,9 @@ export declare type MarketplaceStoreQueryApiEditionsArgs = {
|
|
|
69682
70241
|
export declare type MarketplaceStoreQueryApiEditionsByAppKeyArgs = {
|
|
69683
70242
|
product: MarketplaceStoreEditionsByAppKeyInput;
|
|
69684
70243
|
};
|
|
70244
|
+
export declare type MarketplaceStoreQueryApiEligibleOfferingsForAppArgs = {
|
|
70245
|
+
input: MarketplaceStoreEligibleAppOfferingsInput;
|
|
70246
|
+
};
|
|
69685
70247
|
export declare type MarketplaceStoreQueryApiHomePageArgs = {
|
|
69686
70248
|
productId?: InputMaybe<Scalars['String']['input']>;
|
|
69687
70249
|
};
|
|
@@ -71644,6 +72206,7 @@ export declare type Mutation = {
|
|
|
71644
72206
|
devAi?: Maybe<DevAiMutations>;
|
|
71645
72207
|
devOps?: Maybe<DevOpsMutation>;
|
|
71646
72208
|
devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
|
|
72209
|
+
devai_createTechnicalPlannerJob?: Maybe<DevAiCreateTechnicalPlannerJobPayload>;
|
|
71647
72210
|
devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
|
|
71648
72211
|
disableExperiment?: Maybe<TapExperiment>;
|
|
71649
72212
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
@@ -72819,6 +73382,12 @@ export declare type MutationDevai_ContinueJobWithPromptArgs = {
|
|
|
72819
73382
|
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
72820
73383
|
repoUrl: Scalars['String']['input'];
|
|
72821
73384
|
};
|
|
73385
|
+
export declare type MutationDevai_CreateTechnicalPlannerJobArgs = {
|
|
73386
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
73387
|
+
issueAri: Scalars['ID']['input'];
|
|
73388
|
+
repoUrl: Scalars['URL']['input'];
|
|
73389
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
73390
|
+
};
|
|
72822
73391
|
export declare type MutationDevai_InvokeAutodevRovoAgentArgs = {
|
|
72823
73392
|
agentId: Scalars['ID']['input'];
|
|
72824
73393
|
issueId: Scalars['ID']['input'];
|
|
@@ -76372,6 +76941,7 @@ export declare type Query = {
|
|
|
76372
76941
|
confluence_teamPresenceSpaceSettings?: Maybe<ConfluenceTeamPresenceSpaceSettings>;
|
|
76373
76942
|
confluence_template?: Maybe<ContentTemplate>;
|
|
76374
76943
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
76944
|
+
confluence_userContentAccess?: Maybe<ConfluenceUserContentAccessResult>;
|
|
76375
76945
|
confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
|
|
76376
76946
|
confluence_workflow?: Maybe<ConfluenceWorkflow>;
|
|
76377
76947
|
confluence_workflowApplicationsByContentId?: Maybe<ConfluenceWorkflowApplicationConnection>;
|
|
@@ -76447,6 +77017,8 @@ export declare type Query = {
|
|
|
76447
77017
|
devai_autodevJobLogs?: Maybe<DevAiAutodevLogConnection>;
|
|
76448
77018
|
devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
|
|
76449
77019
|
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
77020
|
+
devai_technicalPlannerJobById?: Maybe<DevAiTechnicalPlannerJob>;
|
|
77021
|
+
devai_technicalPlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
|
|
76450
77022
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
76451
77023
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
76452
77024
|
diagnostics?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -76974,6 +77546,7 @@ export declare type QueryCommentsArgs = {
|
|
|
76974
77546
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
76975
77547
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
76976
77548
|
commentId?: InputMaybe<Scalars['ID']['input']>;
|
|
77549
|
+
confluenceCommentFilter?: InputMaybe<ConfluenceCommentFilter>;
|
|
76977
77550
|
contentStatus?: InputMaybe<Array<InputMaybe<GraphQlContentStatus>>>;
|
|
76978
77551
|
depth?: InputMaybe<Depth>;
|
|
76979
77552
|
first?: InputMaybe<Scalars['Long']['input']>;
|
|
@@ -76983,6 +77556,7 @@ export declare type QueryCommentsArgs = {
|
|
|
76983
77556
|
location?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
76984
77557
|
pageId?: InputMaybe<Scalars['ID']['input']>;
|
|
76985
77558
|
recentFirst?: InputMaybe<Scalars['Boolean']['input']>;
|
|
77559
|
+
singleThreaded?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76986
77560
|
type?: InputMaybe<Array<InputMaybe<CommentType>>>;
|
|
76987
77561
|
};
|
|
76988
77562
|
export declare type QueryCommentsDigestArgs = {
|
|
@@ -77989,6 +78563,12 @@ export declare type QueryConfluence_TemplateArgs = {
|
|
|
77989
78563
|
export declare type QueryConfluence_TenantContextArgs = {
|
|
77990
78564
|
cloudId: Scalars['ID']['input'];
|
|
77991
78565
|
};
|
|
78566
|
+
export declare type QueryConfluence_UserContentAccessArgs = {
|
|
78567
|
+
accessType: ResourceAccessType;
|
|
78568
|
+
accountIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
78569
|
+
cloudId: Scalars['ID']['input'];
|
|
78570
|
+
contentId: Scalars['Long']['input'];
|
|
78571
|
+
};
|
|
77992
78572
|
export declare type QueryConfluence_ValidateCalendarJqlArgs = {
|
|
77993
78573
|
applicationId: Scalars['ID']['input'];
|
|
77994
78574
|
cloudId: Scalars['ID']['input'];
|
|
@@ -78347,6 +78927,13 @@ export declare type QueryDevai_AutodevRovoAgentsArgs = {
|
|
|
78347
78927
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
78348
78928
|
templatesFilter?: InputMaybe<DevAiRovoAgentTemplateFilter>;
|
|
78349
78929
|
};
|
|
78930
|
+
export declare type QueryDevai_TechnicalPlannerJobByIdArgs = {
|
|
78931
|
+
cloudId: Scalars['ID']['input'];
|
|
78932
|
+
jobId: Scalars['ID']['input'];
|
|
78933
|
+
};
|
|
78934
|
+
export declare type QueryDevai_TechnicalPlannerJobsForIssueArgs = {
|
|
78935
|
+
issueAri: Scalars['ID']['input'];
|
|
78936
|
+
};
|
|
78350
78937
|
export declare type QueryDeveloperLogAccessArgs = {
|
|
78351
78938
|
appId: Scalars['ID']['input'];
|
|
78352
78939
|
contextIds: Array<Scalars['ID']['input']>;
|
|
@@ -83960,6 +84547,7 @@ export declare type SiteSettings = {
|
|
|
83960
84547
|
companyHubName?: Maybe<Scalars['String']['output']>;
|
|
83961
84548
|
frontCover?: Maybe<FrontCover>;
|
|
83962
84549
|
homepage?: Maybe<Homepage>;
|
|
84550
|
+
isNav4OptedIn: Scalars['Boolean']['output'];
|
|
83963
84551
|
showApplicationTitle: Scalars['Boolean']['output'];
|
|
83964
84552
|
siteTitle: Scalars['String']['output'];
|
|
83965
84553
|
};
|
|
@@ -85126,7 +85714,6 @@ export declare type SubjectsByTypeUserWithRestrictionsArgs = {
|
|
|
85126
85714
|
};
|
|
85127
85715
|
export declare type Subscription = {
|
|
85128
85716
|
__typename?: 'Subscription';
|
|
85129
|
-
confluence?: Maybe<ConfluenceSubscriptionApi>;
|
|
85130
85717
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
85131
85718
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
85132
85719
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
@@ -86844,6 +87431,18 @@ export declare type TownsquareProjectEdge = {
|
|
|
86844
87431
|
cursor: Scalars['String']['output'];
|
|
86845
87432
|
node?: Maybe<TownsquareProject>;
|
|
86846
87433
|
};
|
|
87434
|
+
export declare enum TownsquareProjectPhase {
|
|
87435
|
+
Done = "done",
|
|
87436
|
+
InProgress = "in_progress",
|
|
87437
|
+
Paused = "paused",
|
|
87438
|
+
Pending = "pending"
|
|
87439
|
+
}
|
|
87440
|
+
export declare type TownsquareProjectPhaseDetails = {
|
|
87441
|
+
__typename?: 'TownsquareProjectPhaseDetails';
|
|
87442
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
87443
|
+
id: Scalars['Int']['output'];
|
|
87444
|
+
name?: Maybe<TownsquareProjectPhase>;
|
|
87445
|
+
};
|
|
86847
87446
|
export declare enum TownsquareProjectSortEnum {
|
|
86848
87447
|
CreationDateAsc = "CREATION_DATE_ASC",
|
|
86849
87448
|
CreationDateDesc = "CREATION_DATE_DESC",
|
|
@@ -86877,6 +87476,38 @@ export declare enum TownsquareProjectStateValue {
|
|
|
86877
87476
|
Paused = "paused",
|
|
86878
87477
|
Pending = "pending"
|
|
86879
87478
|
}
|
|
87479
|
+
export declare type TownsquareProjectUpdate = Node & {
|
|
87480
|
+
__typename?: 'TownsquareProjectUpdate';
|
|
87481
|
+
ari: Scalars['String']['output'];
|
|
87482
|
+
comments?: Maybe<TownsquareCommentConnection>;
|
|
87483
|
+
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
87484
|
+
creator?: Maybe<User>;
|
|
87485
|
+
editDate?: Maybe<Scalars['DateTime']['output']>;
|
|
87486
|
+
id: Scalars['ID']['output'];
|
|
87487
|
+
lastEditedBy?: Maybe<User>;
|
|
87488
|
+
missedUpdate: Scalars['Boolean']['output'];
|
|
87489
|
+
newDueDate?: Maybe<TownsquareTargetDate>;
|
|
87490
|
+
newPhase?: Maybe<TownsquareProjectPhaseDetails>;
|
|
87491
|
+
newPhaseNew?: Maybe<TownsquareProjectPhaseDetails>;
|
|
87492
|
+
newState?: Maybe<TownsquareProjectState>;
|
|
87493
|
+
newTargetDate?: Maybe<Scalars['Date']['output']>;
|
|
87494
|
+
newTargetDateConfidence: Scalars['Int']['output'];
|
|
87495
|
+
oldDueDate?: Maybe<TownsquareTargetDate>;
|
|
87496
|
+
oldPhase?: Maybe<TownsquareProjectPhaseDetails>;
|
|
87497
|
+
oldPhaseNew?: Maybe<TownsquareProjectPhaseDetails>;
|
|
87498
|
+
oldState?: Maybe<TownsquareProjectState>;
|
|
87499
|
+
oldTargetDate?: Maybe<Scalars['Date']['output']>;
|
|
87500
|
+
oldTargetDateConfidence?: Maybe<Scalars['Int']['output']>;
|
|
87501
|
+
project?: Maybe<TownsquareProject>;
|
|
87502
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
87503
|
+
updateType?: Maybe<TownsquareUpdateType>;
|
|
87504
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
87505
|
+
uuid?: Maybe<Scalars['UUID']['output']>;
|
|
87506
|
+
};
|
|
87507
|
+
export declare type TownsquareProjectUpdateCommentsArgs = {
|
|
87508
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
87509
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87510
|
+
};
|
|
86880
87511
|
export declare type TownsquareQueryApi = {
|
|
86881
87512
|
__typename?: 'TownsquareQueryApi';
|
|
86882
87513
|
allWorkspaceSummariesForOrg?: Maybe<TownsquareWorkspaceSummaryConnection>;
|
|
@@ -86893,6 +87524,7 @@ export declare type TownsquareQueryApi = {
|
|
|
86893
87524
|
project?: Maybe<TownsquareProject>;
|
|
86894
87525
|
projectSearch?: Maybe<TownsquareProjectConnection>;
|
|
86895
87526
|
projectTql?: Maybe<TownsquareProjectConnection>;
|
|
87527
|
+
projectUpdatesByAris?: Maybe<Array<Maybe<TownsquareProjectUpdate>>>;
|
|
86896
87528
|
projectsByAri?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
86897
87529
|
tagsByAri?: Maybe<Array<Maybe<TownsquareTag>>>;
|
|
86898
87530
|
};
|
|
@@ -86968,6 +87600,9 @@ export declare type TownsquareQueryApiProjectTqlArgs = {
|
|
|
86968
87600
|
q: Scalars['String']['input'];
|
|
86969
87601
|
sort?: InputMaybe<Array<InputMaybe<TownsquareProjectSortEnum>>>;
|
|
86970
87602
|
};
|
|
87603
|
+
export declare type TownsquareQueryApiProjectUpdatesByArisArgs = {
|
|
87604
|
+
aris: Array<Scalars['ID']['input']>;
|
|
87605
|
+
};
|
|
86971
87606
|
export declare type TownsquareQueryApiProjectsByAriArgs = {
|
|
86972
87607
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
86973
87608
|
};
|
|
@@ -87139,16 +87774,178 @@ export declare type TransitionFilter = {
|
|
|
87139
87774
|
from: Scalars['String']['input'];
|
|
87140
87775
|
to: Scalars['String']['input'];
|
|
87141
87776
|
};
|
|
87777
|
+
export declare type TrelloAction = {
|
|
87778
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
87779
|
+
creator?: Maybe<TrelloMember>;
|
|
87780
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
87781
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
87782
|
+
id: Scalars['ID']['output'];
|
|
87783
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
87784
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
87785
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
87786
|
+
};
|
|
87787
|
+
export declare type TrelloActionAttachmentEntity = {
|
|
87788
|
+
__typename?: 'TrelloActionAttachmentEntity';
|
|
87789
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
87790
|
+
link?: Maybe<Scalars['Boolean']['output']>;
|
|
87791
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
87792
|
+
previewUrl?: Maybe<Scalars['String']['output']>;
|
|
87793
|
+
previewUrl2x?: Maybe<Scalars['String']['output']>;
|
|
87794
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
87795
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
87796
|
+
};
|
|
87797
|
+
export declare type TrelloActionAttachmentPreviewEntity = {
|
|
87798
|
+
__typename?: 'TrelloActionAttachmentPreviewEntity';
|
|
87799
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
87800
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
87801
|
+
originalUrl?: Maybe<Scalars['URL']['output']>;
|
|
87802
|
+
previewUrl?: Maybe<Scalars['URL']['output']>;
|
|
87803
|
+
previewUrl2x?: Maybe<Scalars['URL']['output']>;
|
|
87804
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
87805
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
87806
|
+
};
|
|
87807
|
+
export declare type TrelloActionCardEntity = {
|
|
87808
|
+
__typename?: 'TrelloActionCardEntity';
|
|
87809
|
+
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
87810
|
+
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
87811
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
87812
|
+
due?: Maybe<Scalars['DateTime']['output']>;
|
|
87813
|
+
dueComplete?: Maybe<Scalars['Boolean']['output']>;
|
|
87814
|
+
hideIfContext?: Maybe<Scalars['Boolean']['output']>;
|
|
87815
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
87816
|
+
listId?: Maybe<Scalars['String']['output']>;
|
|
87817
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
87818
|
+
position?: Maybe<Scalars['Float']['output']>;
|
|
87819
|
+
shortId?: Maybe<Scalars['Int']['output']>;
|
|
87820
|
+
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
87821
|
+
start?: Maybe<Scalars['DateTime']['output']>;
|
|
87822
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
87823
|
+
};
|
|
87824
|
+
export declare type TrelloActionChecklistEntity = {
|
|
87825
|
+
__typename?: 'TrelloActionChecklistEntity';
|
|
87826
|
+
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
87827
|
+
id: Scalars['ID']['output'];
|
|
87828
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
87829
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
87830
|
+
};
|
|
87831
|
+
export declare type TrelloActionCommentEntity = {
|
|
87832
|
+
__typename?: 'TrelloActionCommentEntity';
|
|
87833
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
87834
|
+
textHtml?: Maybe<Scalars['String']['output']>;
|
|
87835
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
87836
|
+
};
|
|
87837
|
+
export declare type TrelloActionLimits = {
|
|
87838
|
+
__typename?: 'TrelloActionLimits';
|
|
87839
|
+
reactions?: Maybe<TrelloReactionLimits>;
|
|
87840
|
+
};
|
|
87841
|
+
export declare type TrelloActionListEntity = {
|
|
87842
|
+
__typename?: 'TrelloActionListEntity';
|
|
87843
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
87844
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
87845
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
87846
|
+
};
|
|
87847
|
+
export declare type TrelloActionMemberEntity = {
|
|
87848
|
+
__typename?: 'TrelloActionMemberEntity';
|
|
87849
|
+
avatarHash?: Maybe<Scalars['String']['output']>;
|
|
87850
|
+
avatarUrl?: Maybe<Scalars['URL']['output']>;
|
|
87851
|
+
fullName?: Maybe<Scalars['String']['output']>;
|
|
87852
|
+
id: Scalars['ID']['output'];
|
|
87853
|
+
initials?: Maybe<Scalars['String']['output']>;
|
|
87854
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
87855
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
87856
|
+
username?: Maybe<Scalars['String']['output']>;
|
|
87857
|
+
};
|
|
87858
|
+
export declare type TrelloActionTranslatableEntity = {
|
|
87859
|
+
__typename?: 'TrelloActionTranslatableEntity';
|
|
87860
|
+
contextId?: Maybe<Scalars['String']['output']>;
|
|
87861
|
+
hideIfContext?: Maybe<Scalars['Boolean']['output']>;
|
|
87862
|
+
translationKey?: Maybe<Scalars['String']['output']>;
|
|
87863
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
87864
|
+
};
|
|
87865
|
+
export declare type TrelloAddAttachmentToCardAction = TrelloAction & TrelloCardActionData & {
|
|
87866
|
+
__typename?: 'TrelloAddAttachmentToCardAction';
|
|
87867
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
87868
|
+
attachment?: Maybe<TrelloAttachment>;
|
|
87869
|
+
board?: Maybe<TrelloBoard>;
|
|
87870
|
+
card?: Maybe<TrelloCard>;
|
|
87871
|
+
creator?: Maybe<TrelloMember>;
|
|
87872
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
87873
|
+
displayEntities?: Maybe<TrelloAddAttachmentToCardActionDisplayEntities>;
|
|
87874
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
87875
|
+
id: Scalars['ID']['output'];
|
|
87876
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
87877
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
87878
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
87879
|
+
};
|
|
87880
|
+
export declare type TrelloAddAttachmentToCardActionDisplayEntities = {
|
|
87881
|
+
__typename?: 'TrelloAddAttachmentToCardActionDisplayEntities';
|
|
87882
|
+
attachment?: Maybe<TrelloActionAttachmentEntity>;
|
|
87883
|
+
attachmentPreview?: Maybe<TrelloActionAttachmentPreviewEntity>;
|
|
87884
|
+
card?: Maybe<TrelloActionCardEntity>;
|
|
87885
|
+
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
87886
|
+
};
|
|
87887
|
+
export declare type TrelloAddChecklistToCardAction = TrelloAction & TrelloCardActionData & {
|
|
87888
|
+
__typename?: 'TrelloAddChecklistToCardAction';
|
|
87889
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
87890
|
+
board?: Maybe<TrelloBoard>;
|
|
87891
|
+
card?: Maybe<TrelloCard>;
|
|
87892
|
+
checklist?: Maybe<TrelloChecklist>;
|
|
87893
|
+
creator?: Maybe<TrelloMember>;
|
|
87894
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
87895
|
+
displayEntities?: Maybe<TrelloAddChecklistToCardDisplayEntities>;
|
|
87896
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
87897
|
+
id: Scalars['ID']['output'];
|
|
87898
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
87899
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
87900
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
87901
|
+
};
|
|
87902
|
+
export declare type TrelloAddChecklistToCardDisplayEntities = {
|
|
87903
|
+
__typename?: 'TrelloAddChecklistToCardDisplayEntities';
|
|
87904
|
+
card?: Maybe<TrelloActionCardEntity>;
|
|
87905
|
+
checklist?: Maybe<TrelloActionChecklistEntity>;
|
|
87906
|
+
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
87907
|
+
};
|
|
87142
87908
|
export declare type TrelloAddMemberInput = {
|
|
87143
87909
|
cardId: Scalars['ID']['input'];
|
|
87144
87910
|
userId: Scalars['ID']['input'];
|
|
87145
87911
|
};
|
|
87912
|
+
export declare type TrelloAddMemberToCardAction = TrelloAction & TrelloCardActionData & {
|
|
87913
|
+
__typename?: 'TrelloAddMemberToCardAction';
|
|
87914
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
87915
|
+
board?: Maybe<TrelloBoard>;
|
|
87916
|
+
card?: Maybe<TrelloCard>;
|
|
87917
|
+
creator?: Maybe<TrelloMember>;
|
|
87918
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
87919
|
+
displayEntities?: Maybe<TrelloAddRemoveMemberActionDisplayEntities>;
|
|
87920
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
87921
|
+
id: Scalars['ID']['output'];
|
|
87922
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
87923
|
+
member?: Maybe<TrelloMember>;
|
|
87924
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
87925
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
87926
|
+
};
|
|
87146
87927
|
export declare type TrelloAddMemberToCardPayload = Payload & {
|
|
87147
87928
|
__typename?: 'TrelloAddMemberToCardPayload';
|
|
87148
87929
|
card?: Maybe<TrelloCard>;
|
|
87149
87930
|
errors?: Maybe<Array<MutationError>>;
|
|
87150
87931
|
success: Scalars['Boolean']['output'];
|
|
87151
87932
|
};
|
|
87933
|
+
export declare type TrelloAddRemoveMemberActionDisplayEntities = {
|
|
87934
|
+
__typename?: 'TrelloAddRemoveMemberActionDisplayEntities';
|
|
87935
|
+
card?: Maybe<TrelloActionCardEntity>;
|
|
87936
|
+
member?: Maybe<TrelloActionMemberEntity>;
|
|
87937
|
+
membercreator?: Maybe<TrelloActionMemberEntity>;
|
|
87938
|
+
};
|
|
87939
|
+
export declare type TrelloAppCreator = {
|
|
87940
|
+
__typename?: 'TrelloAppCreator';
|
|
87941
|
+
icon?: Maybe<TrelloApplicationIcon>;
|
|
87942
|
+
id: Scalars['ID']['output'];
|
|
87943
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
87944
|
+
};
|
|
87945
|
+
export declare type TrelloApplicationIcon = {
|
|
87946
|
+
__typename?: 'TrelloApplicationIcon';
|
|
87947
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
87948
|
+
};
|
|
87152
87949
|
export declare type TrelloArchiveCardInput = {
|
|
87153
87950
|
cardId: Scalars['ID']['input'];
|
|
87154
87951
|
};
|
|
@@ -87489,6 +88286,7 @@ export declare type TrelloBoardWorkspaceUpdated = {
|
|
|
87489
88286
|
};
|
|
87490
88287
|
export declare type TrelloCard = Node & {
|
|
87491
88288
|
__typename?: 'TrelloCard';
|
|
88289
|
+
actions?: Maybe<TrelloCardActionConnection>;
|
|
87492
88290
|
attachments?: Maybe<TrelloAttachmentConnection>;
|
|
87493
88291
|
badges?: Maybe<TrelloCardBadges>;
|
|
87494
88292
|
checklists?: Maybe<TrelloChecklistConnection>;
|
|
@@ -87521,6 +88319,11 @@ export declare type TrelloCard = Node & {
|
|
|
87521
88319
|
stickers?: Maybe<TrelloStickerConnection>;
|
|
87522
88320
|
url?: Maybe<Scalars['URL']['output']>;
|
|
87523
88321
|
};
|
|
88322
|
+
export declare type TrelloCardActionsArgs = {
|
|
88323
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88324
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88325
|
+
type?: InputMaybe<Array<TrelloCardActionType>>;
|
|
88326
|
+
};
|
|
87524
88327
|
export declare type TrelloCardAttachmentsArgs = {
|
|
87525
88328
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87526
88329
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -87550,6 +88353,30 @@ export declare type TrelloCardStickersArgs = {
|
|
|
87550
88353
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87551
88354
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87552
88355
|
};
|
|
88356
|
+
export declare type TrelloCardActionConnection = {
|
|
88357
|
+
__typename?: 'TrelloCardActionConnection';
|
|
88358
|
+
edges?: Maybe<Array<TrelloCardActionEdge>>;
|
|
88359
|
+
nodes?: Maybe<Array<TrelloCardActions>>;
|
|
88360
|
+
pageInfo: PageInfo;
|
|
88361
|
+
};
|
|
88362
|
+
export declare type TrelloCardActionData = {
|
|
88363
|
+
board?: Maybe<TrelloBoard>;
|
|
88364
|
+
card?: Maybe<TrelloCard>;
|
|
88365
|
+
};
|
|
88366
|
+
export declare type TrelloCardActionEdge = {
|
|
88367
|
+
__typename?: 'TrelloCardActionEdge';
|
|
88368
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88369
|
+
node?: Maybe<TrelloCardActions>;
|
|
88370
|
+
};
|
|
88371
|
+
export declare enum TrelloCardActionType {
|
|
88372
|
+
AddAttachment = "ADD_ATTACHMENT",
|
|
88373
|
+
AddChecklist = "ADD_CHECKLIST",
|
|
88374
|
+
AddMember = "ADD_MEMBER",
|
|
88375
|
+
Comment = "COMMENT",
|
|
88376
|
+
MoveCard = "MOVE_CARD",
|
|
88377
|
+
RemoveMember = "REMOVE_MEMBER"
|
|
88378
|
+
}
|
|
88379
|
+
export declare type TrelloCardActions = TrelloAddAttachmentToCardAction | TrelloAddChecklistToCardAction | TrelloAddMemberToCardAction | TrelloCommentCardAction | TrelloMoveCardAction | TrelloRemoveMemberFromCardAction;
|
|
87553
88380
|
export declare type TrelloCardAttachmentsByType = {
|
|
87554
88381
|
__typename?: 'TrelloCardAttachmentsByType';
|
|
87555
88382
|
trello?: Maybe<TrelloCardAttachmentsCount>;
|
|
@@ -87793,6 +88620,27 @@ export declare type TrelloChecklistUpdated = {
|
|
|
87793
88620
|
objectId: Scalars['ID']['output'];
|
|
87794
88621
|
position?: Maybe<Scalars['Float']['output']>;
|
|
87795
88622
|
};
|
|
88623
|
+
export declare type TrelloCommentCardAction = TrelloAction & TrelloCardActionData & {
|
|
88624
|
+
__typename?: 'TrelloCommentCardAction';
|
|
88625
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
88626
|
+
board?: Maybe<TrelloBoard>;
|
|
88627
|
+
card?: Maybe<TrelloCard>;
|
|
88628
|
+
creator?: Maybe<TrelloMember>;
|
|
88629
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
88630
|
+
displayEntities?: Maybe<TrelloCommentCardActionDisplayEntities>;
|
|
88631
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
88632
|
+
id: Scalars['ID']['output'];
|
|
88633
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
88634
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
88635
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
88636
|
+
};
|
|
88637
|
+
export declare type TrelloCommentCardActionDisplayEntities = {
|
|
88638
|
+
__typename?: 'TrelloCommentCardActionDisplayEntities';
|
|
88639
|
+
card?: Maybe<TrelloActionCardEntity>;
|
|
88640
|
+
comment?: Maybe<TrelloActionCommentEntity>;
|
|
88641
|
+
contextOn?: Maybe<TrelloActionTranslatableEntity>;
|
|
88642
|
+
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
88643
|
+
};
|
|
87796
88644
|
export declare type TrelloCreateCardInput = {
|
|
87797
88645
|
listId: Scalars['ID']['input'];
|
|
87798
88646
|
name: Scalars['String']['input'];
|
|
@@ -87947,6 +88795,14 @@ export declare type TrelloEditPlannerCalendarEventPayload = Payload & {
|
|
|
87947
88795
|
plannerCalendarUpdated?: Maybe<TrelloPlannerCalendar>;
|
|
87948
88796
|
success: Scalars['Boolean']['output'];
|
|
87949
88797
|
};
|
|
88798
|
+
export declare type TrelloEmoji = {
|
|
88799
|
+
__typename?: 'TrelloEmoji';
|
|
88800
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
88801
|
+
native?: Maybe<Scalars['String']['output']>;
|
|
88802
|
+
shortName?: Maybe<Scalars['String']['output']>;
|
|
88803
|
+
skinVariation?: Maybe<Scalars['String']['output']>;
|
|
88804
|
+
unified?: Maybe<Scalars['String']['output']>;
|
|
88805
|
+
};
|
|
87950
88806
|
export declare type TrelloEnterprise = {
|
|
87951
88807
|
__typename?: 'TrelloEnterprise';
|
|
87952
88808
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -88189,6 +89045,29 @@ export declare type TrelloMemberWorkspaceFilter = {
|
|
|
88189
89045
|
membershipType: TrelloWorkspaceMembershipType;
|
|
88190
89046
|
tier: TrelloWorkspaceTier;
|
|
88191
89047
|
};
|
|
89048
|
+
export declare type TrelloMoveCardAction = TrelloAction & TrelloCardActionData & {
|
|
89049
|
+
__typename?: 'TrelloMoveCardAction';
|
|
89050
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
89051
|
+
board?: Maybe<TrelloBoard>;
|
|
89052
|
+
card?: Maybe<TrelloCard>;
|
|
89053
|
+
creator?: Maybe<TrelloMember>;
|
|
89054
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
89055
|
+
displayEntities?: Maybe<TrelloMoveCardActionDisplayEntities>;
|
|
89056
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
89057
|
+
id: Scalars['ID']['output'];
|
|
89058
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
89059
|
+
listAfter?: Maybe<TrelloList>;
|
|
89060
|
+
listBefore?: Maybe<TrelloList>;
|
|
89061
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
89062
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
89063
|
+
};
|
|
89064
|
+
export declare type TrelloMoveCardActionDisplayEntities = {
|
|
89065
|
+
__typename?: 'TrelloMoveCardActionDisplayEntities';
|
|
89066
|
+
card?: Maybe<TrelloActionCardEntity>;
|
|
89067
|
+
listAfter?: Maybe<TrelloActionListEntity>;
|
|
89068
|
+
listBefore?: Maybe<TrelloActionListEntity>;
|
|
89069
|
+
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
89070
|
+
};
|
|
88192
89071
|
export declare type TrelloMutationApi = {
|
|
88193
89072
|
__typename?: 'TrelloMutationApi';
|
|
88194
89073
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
@@ -88331,6 +89210,7 @@ export declare type TrelloPlannerCalendarAccountEnabledCalendarsArgs = {
|
|
|
88331
89210
|
export declare type TrelloPlannerCalendarAccountProviderCalendarsArgs = {
|
|
88332
89211
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
88333
89212
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89213
|
+
syncToken?: InputMaybe<Scalars['String']['input']>;
|
|
88334
89214
|
};
|
|
88335
89215
|
export declare type TrelloPlannerCalendarAccountConnection = {
|
|
88336
89216
|
__typename?: 'TrelloPlannerCalendarAccountConnection';
|
|
@@ -88536,6 +89416,7 @@ export declare type TrelloPlannerProviderCalendarConnection = {
|
|
|
88536
89416
|
export declare type TrelloPlannerProviderCalendarEdge = {
|
|
88537
89417
|
__typename?: 'TrelloPlannerProviderCalendarEdge';
|
|
88538
89418
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
89419
|
+
deletedCalendar?: Maybe<TrelloProviderCalendarDeleted>;
|
|
88539
89420
|
node?: Maybe<TrelloPlannerProviderCalendar>;
|
|
88540
89421
|
};
|
|
88541
89422
|
export declare type TrelloPlannerUpdated = {
|
|
@@ -88599,6 +89480,10 @@ export declare type TrelloPowerUpUpdated = {
|
|
|
88599
89480
|
__typename?: 'TrelloPowerUpUpdated';
|
|
88600
89481
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
88601
89482
|
};
|
|
89483
|
+
export declare type TrelloProviderCalendarDeleted = {
|
|
89484
|
+
__typename?: 'TrelloProviderCalendarDeleted';
|
|
89485
|
+
id: Scalars['ID']['output'];
|
|
89486
|
+
};
|
|
88602
89487
|
export declare type TrelloProviderCalendarInterface = {
|
|
88603
89488
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
88604
89489
|
id: Scalars['ID']['output'];
|
|
@@ -88722,6 +89607,16 @@ export declare type TrelloQueryApiUsersByIdArgs = {
|
|
|
88722
89607
|
export declare type TrelloQueryApiWorkspaceArgs = {
|
|
88723
89608
|
id: Scalars['ID']['input'];
|
|
88724
89609
|
};
|
|
89610
|
+
export declare type TrelloReaction = {
|
|
89611
|
+
__typename?: 'TrelloReaction';
|
|
89612
|
+
emoji?: Maybe<TrelloEmoji>;
|
|
89613
|
+
member?: Maybe<TrelloMember>;
|
|
89614
|
+
};
|
|
89615
|
+
export declare type TrelloReactionLimits = {
|
|
89616
|
+
__typename?: 'TrelloReactionLimits';
|
|
89617
|
+
perAction?: Maybe<TrelloLimitProps>;
|
|
89618
|
+
uniquePerAction?: Maybe<TrelloLimitProps>;
|
|
89619
|
+
};
|
|
88725
89620
|
export declare type TrelloRemoveCardFromPlannerCalendarEventInput = {
|
|
88726
89621
|
plannerCalendarEventCardId: Scalars['ID']['input'];
|
|
88727
89622
|
plannerCalendarId: Scalars['ID']['input'];
|
|
@@ -88733,6 +89628,21 @@ export declare type TrelloRemoveCardFromPlannerCalendarEventPayload = Payload &
|
|
|
88733
89628
|
eventCard?: Maybe<TrelloPlannerCalendarEventCardDeleted>;
|
|
88734
89629
|
success: Scalars['Boolean']['output'];
|
|
88735
89630
|
};
|
|
89631
|
+
export declare type TrelloRemoveMemberFromCardAction = TrelloAction & TrelloCardActionData & {
|
|
89632
|
+
__typename?: 'TrelloRemoveMemberFromCardAction';
|
|
89633
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
89634
|
+
board?: Maybe<TrelloBoard>;
|
|
89635
|
+
card?: Maybe<TrelloCard>;
|
|
89636
|
+
creator?: Maybe<TrelloMember>;
|
|
89637
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
89638
|
+
displayEntities?: Maybe<TrelloAddRemoveMemberActionDisplayEntities>;
|
|
89639
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
89640
|
+
id: Scalars['ID']['output'];
|
|
89641
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
89642
|
+
member?: Maybe<TrelloMember>;
|
|
89643
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
89644
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
89645
|
+
};
|
|
88736
89646
|
export declare type TrelloRemoveMemberFromCardPayload = Payload & {
|
|
88737
89647
|
__typename?: 'TrelloRemoveMemberFromCardPayload';
|
|
88738
89648
|
card?: Maybe<TrelloCard>;
|
|
@@ -89088,6 +89998,8 @@ export declare type UnifiedAccount = UnifiedINode & {
|
|
|
89088
89998
|
isManaged: Scalars['Boolean']['output'];
|
|
89089
89999
|
isPrimary: Scalars['Boolean']['output'];
|
|
89090
90000
|
linkedAccounts?: Maybe<UnifiedULinkedAccountResult>;
|
|
90001
|
+
nickname: Scalars['String']['output'];
|
|
90002
|
+
picture: Scalars['String']['output'];
|
|
89091
90003
|
};
|
|
89092
90004
|
export declare type UnifiedAccountBasics = UnifiedINode & {
|
|
89093
90005
|
__typename?: 'UnifiedAccountBasics';
|
|
@@ -89097,6 +90009,8 @@ export declare type UnifiedAccountBasics = UnifiedINode & {
|
|
|
89097
90009
|
isManaged: Scalars['Boolean']['output'];
|
|
89098
90010
|
isPrimary: Scalars['Boolean']['output'];
|
|
89099
90011
|
linkedAccountsBasics?: Maybe<UnifiedULinkedAccountBasicsResult>;
|
|
90012
|
+
nickname: Scalars['String']['output'];
|
|
90013
|
+
picture: Scalars['String']['output'];
|
|
89100
90014
|
};
|
|
89101
90015
|
export declare type UnifiedAccountDetails = UnifiedINode & {
|
|
89102
90016
|
__typename?: 'UnifiedAccountDetails';
|
|
@@ -89611,6 +90525,7 @@ export declare type UnifiedMutationUpdateUnifiedProfileArgs = {
|
|
|
89611
90525
|
};
|
|
89612
90526
|
export declare type UnifiedMutationError = {
|
|
89613
90527
|
__typename?: 'UnifiedMutationError';
|
|
90528
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
89614
90529
|
extensions?: Maybe<UnifiedMutationErrorExtension>;
|
|
89615
90530
|
message?: Maybe<Scalars['String']['output']>;
|
|
89616
90531
|
};
|
|
@@ -89739,6 +90654,7 @@ export declare type UnifiedQueryUnifiedProfileArgs = {
|
|
|
89739
90654
|
};
|
|
89740
90655
|
export declare type UnifiedQueryError = UnifiedIQueryError & {
|
|
89741
90656
|
__typename?: 'UnifiedQueryError';
|
|
90657
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
89742
90658
|
extensions?: Maybe<Array<UnifiedQueryErrorExtension>>;
|
|
89743
90659
|
identifier?: Maybe<Scalars['ID']['output']>;
|
|
89744
90660
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -90032,6 +90948,7 @@ export declare type UpdateCompassLinkInput = {
|
|
|
90032
90948
|
url?: InputMaybe<Scalars['URL']['input']>;
|
|
90033
90949
|
};
|
|
90034
90950
|
export declare type UpdateCompassScorecardCriteriaInput = {
|
|
90951
|
+
dynamic?: InputMaybe<CompassUpdateDynamicScorecardCriteriaInput>;
|
|
90035
90952
|
hasCustomBooleanValue?: InputMaybe<CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput>;
|
|
90036
90953
|
hasCustomMultiSelectValue?: InputMaybe<CompassUpdateHasCustomMultiSelectFieldScorecardCriteriaInput>;
|
|
90037
90954
|
hasCustomNumberValue?: InputMaybe<CompassUpdateHasCustomNumberFieldScorecardCriteriaInput>;
|