@forge/cli-shared 6.4.0-next.11 → 6.4.0-next.13
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 +13 -0
- package/out/graphql/graphql-types.d.ts +319 -26
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +37 -25
- package/out/service/statsig-service.d.ts +1 -1
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +9 -5
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.4.0-next.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [d93dd92]
|
|
8
|
+
- @forge/manifest@8.1.0-next.8
|
|
9
|
+
|
|
10
|
+
## 6.4.0-next.12
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- cc6571c: Update feature gate implementation to allow pass in custom attribute
|
|
15
|
+
|
|
3
16
|
## 6.4.0-next.11
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
|
@@ -2729,6 +2729,7 @@ export declare type CcpOffering = CommerceOffering & Node & {
|
|
|
2729
2729
|
pricingType?: Maybe<CcpPricingType>;
|
|
2730
2730
|
product?: Maybe<CcpProduct>;
|
|
2731
2731
|
productKey?: Maybe<Scalars['ID']['output']>;
|
|
2732
|
+
requiredRelationships?: Maybe<Array<Maybe<CcpOfferingRelationship>>>;
|
|
2732
2733
|
sku?: Maybe<Scalars['String']['output']>;
|
|
2733
2734
|
slugs?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
2734
2735
|
status?: Maybe<CcpOfferingStatus>;
|
|
@@ -2775,6 +2776,19 @@ export declare type CcpOfferingGroup = {
|
|
|
2775
2776
|
export declare enum CcpOfferingHostingType {
|
|
2776
2777
|
Cloud = "CLOUD"
|
|
2777
2778
|
}
|
|
2779
|
+
export declare type CcpOfferingRelationship = {
|
|
2780
|
+
__typename?: 'CcpOfferingRelationship';
|
|
2781
|
+
catalogAccountId?: Maybe<Scalars['String']['output']>;
|
|
2782
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
2783
|
+
from?: Maybe<CcpRelationshipNode>;
|
|
2784
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
2785
|
+
relationshipTemplateId?: Maybe<Scalars['String']['output']>;
|
|
2786
|
+
relationshipType?: Maybe<CcpRelationshipType>;
|
|
2787
|
+
status?: Maybe<CcpRelationshipStatus>;
|
|
2788
|
+
to?: Maybe<CcpRelationshipNode>;
|
|
2789
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
2790
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
2791
|
+
};
|
|
2778
2792
|
export declare enum CcpOfferingStatus {
|
|
2779
2793
|
Active = "ACTIVE",
|
|
2780
2794
|
AtNotice = "AT_NOTICE",
|
|
@@ -2923,12 +2937,49 @@ export declare type CcpQueryApiProductArgs = {
|
|
|
2923
2937
|
export declare type CcpQueryApiTransactionAccountArgs = {
|
|
2924
2938
|
id: Scalars['ID']['input'];
|
|
2925
2939
|
};
|
|
2940
|
+
export declare type CcpRelationshipCardinality = {
|
|
2941
|
+
__typename?: 'CcpRelationshipCardinality';
|
|
2942
|
+
max?: Maybe<Scalars['Int']['output']>;
|
|
2943
|
+
min?: Maybe<Scalars['Int']['output']>;
|
|
2944
|
+
};
|
|
2945
|
+
export declare type CcpRelationshipGroup = {
|
|
2946
|
+
__typename?: 'CcpRelationshipGroup';
|
|
2947
|
+
groupCardinality?: Maybe<CcpRelationshipGroupCardinality>;
|
|
2948
|
+
groupName?: Maybe<Scalars['String']['output']>;
|
|
2949
|
+
offerings?: Maybe<Array<Maybe<CcpOffering>>>;
|
|
2950
|
+
};
|
|
2951
|
+
export declare type CcpRelationshipGroupCardinality = {
|
|
2952
|
+
__typename?: 'CcpRelationshipGroupCardinality';
|
|
2953
|
+
max?: Maybe<Scalars['Int']['output']>;
|
|
2954
|
+
};
|
|
2955
|
+
export declare type CcpRelationshipNode = {
|
|
2956
|
+
__typename?: 'CcpRelationshipNode';
|
|
2957
|
+
cardinality?: Maybe<CcpRelationshipCardinality>;
|
|
2958
|
+
groups?: Maybe<Array<Maybe<CcpRelationshipGroup>>>;
|
|
2959
|
+
selector?: Maybe<Scalars['String']['output']>;
|
|
2960
|
+
};
|
|
2926
2961
|
export declare enum CcpRelationshipPricingType {
|
|
2927
2962
|
AdvantagePricing = "ADVANTAGE_PRICING",
|
|
2928
2963
|
CurrencyGenerated = "CURRENCY_GENERATED",
|
|
2929
2964
|
NextPricing = "NEXT_PRICING",
|
|
2930
2965
|
SyntheticGenerated = "SYNTHETIC_GENERATED"
|
|
2931
2966
|
}
|
|
2967
|
+
export declare enum CcpRelationshipStatus {
|
|
2968
|
+
Active = "ACTIVE",
|
|
2969
|
+
Deprecated = "DEPRECATED"
|
|
2970
|
+
}
|
|
2971
|
+
export declare enum CcpRelationshipType {
|
|
2972
|
+
AddonDependence = "ADDON_DEPENDENCE",
|
|
2973
|
+
AppCompatibility = "APP_COMPATIBILITY",
|
|
2974
|
+
Collection = "COLLECTION",
|
|
2975
|
+
CollectionTrial = "COLLECTION_TRIAL",
|
|
2976
|
+
Enterprise = "ENTERPRISE",
|
|
2977
|
+
EnterpriseSandboxGrant = "ENTERPRISE_SANDBOX_GRANT",
|
|
2978
|
+
FamilyContainer = "FAMILY_CONTAINER",
|
|
2979
|
+
MultiInstance = "MULTI_INSTANCE",
|
|
2980
|
+
SandboxDependence = "SANDBOX_DEPENDENCE",
|
|
2981
|
+
SandboxGrant = "SANDBOX_GRANT"
|
|
2982
|
+
}
|
|
2932
2983
|
export declare type CcpSubscription = CommerceSubscription & {
|
|
2933
2984
|
__typename?: 'CcpSubscription';
|
|
2934
2985
|
accountDetails?: Maybe<CcpAccountDetails>;
|
|
@@ -19802,6 +19853,7 @@ export declare type EcosystemConnectInstallation = {
|
|
|
19802
19853
|
export declare type EcosystemConnectInstallationLicense = {
|
|
19803
19854
|
__typename?: 'EcosystemConnectInstallationLicense';
|
|
19804
19855
|
active?: Maybe<Scalars['Boolean']['output']>;
|
|
19856
|
+
capabilitySet?: Maybe<CapabilitySet>;
|
|
19805
19857
|
ccpEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
19806
19858
|
ccpEntitlementSlug?: Maybe<Scalars['String']['output']>;
|
|
19807
19859
|
isEvaluation?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -25472,6 +25524,7 @@ export declare type GraphStore = {
|
|
|
25472
25524
|
atlasGoalHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection>;
|
|
25473
25525
|
atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
|
|
25474
25526
|
atlasGoalHasSubAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection>;
|
|
25527
|
+
atlasHomeFeed: GraphStoreAtlasHomeQueryConnection;
|
|
25475
25528
|
atlasProjectContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection>;
|
|
25476
25529
|
atlasProjectContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseConnection>;
|
|
25477
25530
|
atlasProjectContributesToAtlasGoalInverseRelationship?: Maybe<GraphStoreFullAtlasProjectContributesToAtlasGoalConnection>;
|
|
@@ -25821,11 +25874,19 @@ export declare type GraphStore = {
|
|
|
25821
25874
|
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
25822
25875
|
userAuthoredPr?: Maybe<GraphStoreSimplifiedUserAuthoredPrConnection>;
|
|
25823
25876
|
userAuthoredPrInverse?: Maybe<GraphStoreSimplifiedUserAuthoredPrInverseConnection>;
|
|
25877
|
+
userCreatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection>;
|
|
25878
|
+
userCreatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseConnection>;
|
|
25879
|
+
userCreatedConfluencePage?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageConnection>;
|
|
25880
|
+
userCreatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection>;
|
|
25881
|
+
userHasRelevantProject?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectConnection>;
|
|
25882
|
+
userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
|
|
25824
25883
|
userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
|
|
25825
25884
|
userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
|
|
25826
25885
|
userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
|
|
25827
25886
|
userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
|
|
25828
25887
|
userOwnsComponentInverse?: Maybe<GraphStoreSimplifiedUserOwnsComponentInverseConnection>;
|
|
25888
|
+
userReportsIssue?: Maybe<GraphStoreSimplifiedUserReportsIssueConnection>;
|
|
25889
|
+
userReportsIssueInverse?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseConnection>;
|
|
25829
25890
|
userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
|
|
25830
25891
|
userReviewsPrInverse?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseConnection>;
|
|
25831
25892
|
versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
|
|
@@ -25939,6 +26000,10 @@ export declare type GraphStoreAtlasGoalHasSubAtlasGoalInverseArgs = {
|
|
|
25939
26000
|
id: Scalars['ID']['input'];
|
|
25940
26001
|
sort?: InputMaybe<GraphStoreAtlasGoalHasSubAtlasGoalSortInput>;
|
|
25941
26002
|
};
|
|
26003
|
+
export declare type GraphStoreAtlasHomeFeedArgs = {
|
|
26004
|
+
organizationId: Scalars['ID']['input'];
|
|
26005
|
+
userId: Scalars['ID']['input'];
|
|
26006
|
+
};
|
|
25942
26007
|
export declare type GraphStoreAtlasProjectContributesToAtlasGoalArgs = {
|
|
25943
26008
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25944
26009
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28138,6 +28203,48 @@ export declare type GraphStoreUserAuthoredPrInverseArgs = {
|
|
|
28138
28203
|
id: Scalars['ID']['input'];
|
|
28139
28204
|
sort?: InputMaybe<GraphStoreUserAuthoredPrSortInput>;
|
|
28140
28205
|
};
|
|
28206
|
+
export declare type GraphStoreUserCreatedConfluenceBlogpostArgs = {
|
|
28207
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28208
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28209
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28210
|
+
id: Scalars['ID']['input'];
|
|
28211
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceBlogpostSortInput>;
|
|
28212
|
+
};
|
|
28213
|
+
export declare type GraphStoreUserCreatedConfluenceBlogpostInverseArgs = {
|
|
28214
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28215
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28216
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28217
|
+
id: Scalars['ID']['input'];
|
|
28218
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceBlogpostSortInput>;
|
|
28219
|
+
};
|
|
28220
|
+
export declare type GraphStoreUserCreatedConfluencePageArgs = {
|
|
28221
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28222
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28223
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28224
|
+
id: Scalars['ID']['input'];
|
|
28225
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluencePageSortInput>;
|
|
28226
|
+
};
|
|
28227
|
+
export declare type GraphStoreUserCreatedConfluencePageInverseArgs = {
|
|
28228
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28229
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28230
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28231
|
+
id: Scalars['ID']['input'];
|
|
28232
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluencePageSortInput>;
|
|
28233
|
+
};
|
|
28234
|
+
export declare type GraphStoreUserHasRelevantProjectArgs = {
|
|
28235
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28236
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28237
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28238
|
+
id: Scalars['ID']['input'];
|
|
28239
|
+
sort?: InputMaybe<GraphStoreUserHasRelevantProjectSortInput>;
|
|
28240
|
+
};
|
|
28241
|
+
export declare type GraphStoreUserHasRelevantProjectInverseArgs = {
|
|
28242
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28243
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28244
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28245
|
+
id: Scalars['ID']['input'];
|
|
28246
|
+
sort?: InputMaybe<GraphStoreUserHasRelevantProjectSortInput>;
|
|
28247
|
+
};
|
|
28141
28248
|
export declare type GraphStoreUserHasTopProjectArgs = {
|
|
28142
28249
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28143
28250
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28173,6 +28280,20 @@ export declare type GraphStoreUserOwnsComponentInverseArgs = {
|
|
|
28173
28280
|
id: Scalars['ID']['input'];
|
|
28174
28281
|
sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
|
|
28175
28282
|
};
|
|
28283
|
+
export declare type GraphStoreUserReportsIssueArgs = {
|
|
28284
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28285
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28286
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28287
|
+
id: Scalars['ID']['input'];
|
|
28288
|
+
sort?: InputMaybe<GraphStoreUserReportsIssueSortInput>;
|
|
28289
|
+
};
|
|
28290
|
+
export declare type GraphStoreUserReportsIssueInverseArgs = {
|
|
28291
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28292
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28293
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28294
|
+
id: Scalars['ID']['input'];
|
|
28295
|
+
sort?: InputMaybe<GraphStoreUserReportsIssueSortInput>;
|
|
28296
|
+
};
|
|
28176
28297
|
export declare type GraphStoreUserReviewsPrArgs = {
|
|
28177
28298
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28178
28299
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28478,6 +28599,11 @@ export declare type GraphStoreAtlasGoalHasOwnerSortInput = {
|
|
|
28478
28599
|
export declare type GraphStoreAtlasGoalHasSubAtlasGoalSortInput = {
|
|
28479
28600
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28480
28601
|
};
|
|
28602
|
+
export declare type GraphStoreAtlasHomeQueryConnection = {
|
|
28603
|
+
__typename?: 'GraphStoreAtlasHomeQueryConnection';
|
|
28604
|
+
edges?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
28605
|
+
pageInfo: PageInfo;
|
|
28606
|
+
};
|
|
28481
28607
|
export declare type GraphStoreAtlasProjectContributesToAtlasGoalSortInput = {
|
|
28482
28608
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28483
28609
|
};
|
|
@@ -29468,6 +29594,20 @@ export declare type GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagRelations
|
|
|
29468
29594
|
to: Scalars['ID']['input'];
|
|
29469
29595
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
29470
29596
|
};
|
|
29597
|
+
export declare type GraphStoreCreateUserHasRelevantProjectInput = {
|
|
29598
|
+
relationships: Array<GraphStoreCreateUserHasRelevantProjectRelationshipInput>;
|
|
29599
|
+
};
|
|
29600
|
+
export declare type GraphStoreCreateUserHasRelevantProjectPayload = Payload & {
|
|
29601
|
+
__typename?: 'GraphStoreCreateUserHasRelevantProjectPayload';
|
|
29602
|
+
errors?: Maybe<Array<MutationError>>;
|
|
29603
|
+
success: Scalars['Boolean']['output'];
|
|
29604
|
+
};
|
|
29605
|
+
export declare type GraphStoreCreateUserHasRelevantProjectRelationshipInput = {
|
|
29606
|
+
from: Scalars['ID']['input'];
|
|
29607
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
29608
|
+
to: Scalars['ID']['input'];
|
|
29609
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
29610
|
+
};
|
|
29471
29611
|
export declare type GraphStoreCreateVersionUserAssociatedFeatureFlagInput = {
|
|
29472
29612
|
relationships: Array<GraphStoreCreateVersionUserAssociatedFeatureFlagRelationshipInput>;
|
|
29473
29613
|
};
|
|
@@ -29552,7 +29692,7 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
29552
29692
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
29553
29693
|
id: Scalars['ID']['output'];
|
|
29554
29694
|
};
|
|
29555
|
-
export declare type GraphStoreCypherQueryToNodeUnion = JiraIssue;
|
|
29695
|
+
export declare type GraphStoreCypherQueryToNodeUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
29556
29696
|
export declare type GraphStoreDateFilterInput = {
|
|
29557
29697
|
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
29558
29698
|
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -29804,6 +29944,19 @@ export declare type GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagRelations
|
|
|
29804
29944
|
from: Scalars['ID']['input'];
|
|
29805
29945
|
to: Scalars['ID']['input'];
|
|
29806
29946
|
};
|
|
29947
|
+
export declare type GraphStoreDeleteUserHasRelevantProjectInput = {
|
|
29948
|
+
relationships: Array<GraphStoreDeleteUserHasRelevantProjectRelationshipInput>;
|
|
29949
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29950
|
+
};
|
|
29951
|
+
export declare type GraphStoreDeleteUserHasRelevantProjectPayload = Payload & {
|
|
29952
|
+
__typename?: 'GraphStoreDeleteUserHasRelevantProjectPayload';
|
|
29953
|
+
errors?: Maybe<Array<MutationError>>;
|
|
29954
|
+
success: Scalars['Boolean']['output'];
|
|
29955
|
+
};
|
|
29956
|
+
export declare type GraphStoreDeleteUserHasRelevantProjectRelationshipInput = {
|
|
29957
|
+
from: Scalars['ID']['input'];
|
|
29958
|
+
to: Scalars['ID']['input'];
|
|
29959
|
+
};
|
|
29807
29960
|
export declare type GraphStoreDeleteVersionUserAssociatedFeatureFlagInput = {
|
|
29808
29961
|
relationships: Array<GraphStoreDeleteVersionUserAssociatedFeatureFlagRelationshipInput>;
|
|
29809
29962
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33517,6 +33670,7 @@ export declare type GraphStoreMutation = {
|
|
|
33517
33670
|
createSprintRetrospectiveWhiteboard?: Maybe<GraphStoreCreateSprintRetrospectiveWhiteboardPayload>;
|
|
33518
33671
|
createTestPerfhammerRelationship?: Maybe<GraphStoreCreateTestPerfhammerRelationshipPayload>;
|
|
33519
33672
|
createTownsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagPayload>;
|
|
33673
|
+
createUserHasRelevantProject?: Maybe<GraphStoreCreateUserHasRelevantProjectPayload>;
|
|
33520
33674
|
createVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreCreateVersionUserAssociatedFeatureFlagPayload>;
|
|
33521
33675
|
createVulnerabilityAssociatedIssue?: Maybe<GraphStoreCreateVulnerabilityAssociatedIssuePayload>;
|
|
33522
33676
|
deleteComponentImpactedByIncident?: Maybe<GraphStoreDeleteComponentImpactedByIncidentPayload>;
|
|
@@ -33538,6 +33692,7 @@ export declare type GraphStoreMutation = {
|
|
|
33538
33692
|
deleteSprintRetrospectiveWhiteboard?: Maybe<GraphStoreDeleteSprintRetrospectiveWhiteboardPayload>;
|
|
33539
33693
|
deleteTestPerfhammerRelationship?: Maybe<GraphStoreDeleteTestPerfhammerRelationshipPayload>;
|
|
33540
33694
|
deleteTownsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagPayload>;
|
|
33695
|
+
deleteUserHasRelevantProject?: Maybe<GraphStoreDeleteUserHasRelevantProjectPayload>;
|
|
33541
33696
|
deleteVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload>;
|
|
33542
33697
|
deleteVulnerabilityAssociatedIssue?: Maybe<GraphStoreDeleteVulnerabilityAssociatedIssuePayload>;
|
|
33543
33698
|
};
|
|
@@ -33598,6 +33753,9 @@ export declare type GraphStoreMutationCreateTestPerfhammerRelationshipArgs = {
|
|
|
33598
33753
|
export declare type GraphStoreMutationCreateTownsquareTagIsAliasOfTownsquareTagArgs = {
|
|
33599
33754
|
input?: InputMaybe<GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagInput>;
|
|
33600
33755
|
};
|
|
33756
|
+
export declare type GraphStoreMutationCreateUserHasRelevantProjectArgs = {
|
|
33757
|
+
input?: InputMaybe<GraphStoreCreateUserHasRelevantProjectInput>;
|
|
33758
|
+
};
|
|
33601
33759
|
export declare type GraphStoreMutationCreateVersionUserAssociatedFeatureFlagArgs = {
|
|
33602
33760
|
input?: InputMaybe<GraphStoreCreateVersionUserAssociatedFeatureFlagInput>;
|
|
33603
33761
|
};
|
|
@@ -33661,6 +33819,9 @@ export declare type GraphStoreMutationDeleteTestPerfhammerRelationshipArgs = {
|
|
|
33661
33819
|
export declare type GraphStoreMutationDeleteTownsquareTagIsAliasOfTownsquareTagArgs = {
|
|
33662
33820
|
input?: InputMaybe<GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagInput>;
|
|
33663
33821
|
};
|
|
33822
|
+
export declare type GraphStoreMutationDeleteUserHasRelevantProjectArgs = {
|
|
33823
|
+
input?: InputMaybe<GraphStoreDeleteUserHasRelevantProjectInput>;
|
|
33824
|
+
};
|
|
33664
33825
|
export declare type GraphStoreMutationDeleteVersionUserAssociatedFeatureFlagArgs = {
|
|
33665
33826
|
input?: InputMaybe<GraphStoreDeleteVersionUserAssociatedFeatureFlagInput>;
|
|
33666
33827
|
};
|
|
@@ -36871,6 +37032,94 @@ export declare type GraphStoreSimplifiedUserAuthoredPrInverseEdge = {
|
|
|
36871
37032
|
};
|
|
36872
37033
|
export declare type GraphStoreSimplifiedUserAuthoredPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
36873
37034
|
export declare type GraphStoreSimplifiedUserAuthoredPrUnion = DevOpsPullRequestDetails;
|
|
37035
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection = HasPageInfo & {
|
|
37036
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection';
|
|
37037
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostEdge>>>;
|
|
37038
|
+
pageInfo: PageInfo;
|
|
37039
|
+
};
|
|
37040
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostEdge = {
|
|
37041
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostEdge';
|
|
37042
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37043
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37044
|
+
id: Scalars['ID']['output'];
|
|
37045
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37046
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostUnion>;
|
|
37047
|
+
};
|
|
37048
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseConnection = HasPageInfo & {
|
|
37049
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseConnection';
|
|
37050
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseEdge>>>;
|
|
37051
|
+
pageInfo: PageInfo;
|
|
37052
|
+
};
|
|
37053
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseEdge = {
|
|
37054
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseEdge';
|
|
37055
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37056
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37057
|
+
id: Scalars['ID']['output'];
|
|
37058
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37059
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseUnion>;
|
|
37060
|
+
};
|
|
37061
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
37062
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
37063
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageConnection = HasPageInfo & {
|
|
37064
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageConnection';
|
|
37065
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluencePageEdge>>>;
|
|
37066
|
+
pageInfo: PageInfo;
|
|
37067
|
+
};
|
|
37068
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageEdge = {
|
|
37069
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageEdge';
|
|
37070
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37071
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37072
|
+
id: Scalars['ID']['output'];
|
|
37073
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37074
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageUnion>;
|
|
37075
|
+
};
|
|
37076
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection = HasPageInfo & {
|
|
37077
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection';
|
|
37078
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseEdge>>>;
|
|
37079
|
+
pageInfo: PageInfo;
|
|
37080
|
+
};
|
|
37081
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseEdge = {
|
|
37082
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageInverseEdge';
|
|
37083
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37084
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37085
|
+
id: Scalars['ID']['output'];
|
|
37086
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37087
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseUnion>;
|
|
37088
|
+
};
|
|
37089
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
37090
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageUnion = ConfluencePage;
|
|
37091
|
+
export declare type GraphStoreSimplifiedUserHasRelevantProjectConnection = HasPageInfo & HasTotal & {
|
|
37092
|
+
__typename?: 'GraphStoreSimplifiedUserHasRelevantProjectConnection';
|
|
37093
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasRelevantProjectEdge>>>;
|
|
37094
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
37095
|
+
pageInfo: PageInfo;
|
|
37096
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
37097
|
+
};
|
|
37098
|
+
export declare type GraphStoreSimplifiedUserHasRelevantProjectEdge = {
|
|
37099
|
+
__typename?: 'GraphStoreSimplifiedUserHasRelevantProjectEdge';
|
|
37100
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37101
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37102
|
+
id: Scalars['ID']['output'];
|
|
37103
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37104
|
+
node?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectUnion>;
|
|
37105
|
+
};
|
|
37106
|
+
export declare type GraphStoreSimplifiedUserHasRelevantProjectInverseConnection = HasPageInfo & HasTotal & {
|
|
37107
|
+
__typename?: 'GraphStoreSimplifiedUserHasRelevantProjectInverseConnection';
|
|
37108
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseEdge>>>;
|
|
37109
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
37110
|
+
pageInfo: PageInfo;
|
|
37111
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
37112
|
+
};
|
|
37113
|
+
export declare type GraphStoreSimplifiedUserHasRelevantProjectInverseEdge = {
|
|
37114
|
+
__typename?: 'GraphStoreSimplifiedUserHasRelevantProjectInverseEdge';
|
|
37115
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37116
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37117
|
+
id: Scalars['ID']['output'];
|
|
37118
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37119
|
+
node?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseUnion>;
|
|
37120
|
+
};
|
|
37121
|
+
export declare type GraphStoreSimplifiedUserHasRelevantProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
37122
|
+
export declare type GraphStoreSimplifiedUserHasRelevantProjectUnion = JiraProject;
|
|
36874
37123
|
export declare type GraphStoreSimplifiedUserHasTopProjectConnection = HasPageInfo & {
|
|
36875
37124
|
__typename?: 'GraphStoreSimplifiedUserHasTopProjectConnection';
|
|
36876
37125
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasTopProjectEdge>>>;
|
|
@@ -36945,6 +37194,34 @@ export declare type GraphStoreSimplifiedUserOwnsComponentInverseEdge = {
|
|
|
36945
37194
|
};
|
|
36946
37195
|
export declare type GraphStoreSimplifiedUserOwnsComponentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
36947
37196
|
export declare type GraphStoreSimplifiedUserOwnsComponentUnion = CompassComponent;
|
|
37197
|
+
export declare type GraphStoreSimplifiedUserReportsIssueConnection = HasPageInfo & {
|
|
37198
|
+
__typename?: 'GraphStoreSimplifiedUserReportsIssueConnection';
|
|
37199
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReportsIssueEdge>>>;
|
|
37200
|
+
pageInfo: PageInfo;
|
|
37201
|
+
};
|
|
37202
|
+
export declare type GraphStoreSimplifiedUserReportsIssueEdge = {
|
|
37203
|
+
__typename?: 'GraphStoreSimplifiedUserReportsIssueEdge';
|
|
37204
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37205
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37206
|
+
id: Scalars['ID']['output'];
|
|
37207
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37208
|
+
node?: Maybe<GraphStoreSimplifiedUserReportsIssueUnion>;
|
|
37209
|
+
};
|
|
37210
|
+
export declare type GraphStoreSimplifiedUserReportsIssueInverseConnection = HasPageInfo & {
|
|
37211
|
+
__typename?: 'GraphStoreSimplifiedUserReportsIssueInverseConnection';
|
|
37212
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReportsIssueInverseEdge>>>;
|
|
37213
|
+
pageInfo: PageInfo;
|
|
37214
|
+
};
|
|
37215
|
+
export declare type GraphStoreSimplifiedUserReportsIssueInverseEdge = {
|
|
37216
|
+
__typename?: 'GraphStoreSimplifiedUserReportsIssueInverseEdge';
|
|
37217
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37218
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37219
|
+
id: Scalars['ID']['output'];
|
|
37220
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37221
|
+
node?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseUnion>;
|
|
37222
|
+
};
|
|
37223
|
+
export declare type GraphStoreSimplifiedUserReportsIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
37224
|
+
export declare type GraphStoreSimplifiedUserReportsIssueUnion = JiraIssue;
|
|
36948
37225
|
export declare type GraphStoreSimplifiedUserReviewsPrConnection = HasPageInfo & {
|
|
36949
37226
|
__typename?: 'GraphStoreSimplifiedUserReviewsPrConnection';
|
|
36950
37227
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReviewsPrEdge>>>;
|
|
@@ -37632,6 +37909,18 @@ export declare type GraphStoreTestPerfhammerRelationshipSortInput = {
|
|
|
37632
37909
|
export declare type GraphStoreUserAuthoredPrSortInput = {
|
|
37633
37910
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37634
37911
|
};
|
|
37912
|
+
export declare type GraphStoreUserCreatedConfluenceBlogpostSortInput = {
|
|
37913
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37914
|
+
};
|
|
37915
|
+
export declare type GraphStoreUserCreatedConfluencePageSortInput = {
|
|
37916
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37917
|
+
};
|
|
37918
|
+
export declare type GraphStoreUserHasRelevantProjectSortInput = {
|
|
37919
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
37920
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
37921
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37922
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
37923
|
+
};
|
|
37635
37924
|
export declare type GraphStoreUserHasTopProjectSortInput = {
|
|
37636
37925
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37637
37926
|
};
|
|
@@ -37644,6 +37933,9 @@ export declare type GraphStoreUserOwnsComponentSortInput = {
|
|
|
37644
37933
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37645
37934
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
37646
37935
|
};
|
|
37936
|
+
export declare type GraphStoreUserReportsIssueSortInput = {
|
|
37937
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37938
|
+
};
|
|
37647
37939
|
export declare type GraphStoreUserReviewsPrSortInput = {
|
|
37648
37940
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37649
37941
|
};
|
|
@@ -57419,6 +57711,7 @@ export declare type MarketplaceAppVersion = {
|
|
|
57419
57711
|
buildNumber: Scalars['ID']['output'];
|
|
57420
57712
|
deployment: MarketplaceAppDeployment;
|
|
57421
57713
|
documentationUrl?: Maybe<Scalars['URL']['output']>;
|
|
57714
|
+
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
57422
57715
|
endUserLicenseAgreementUrl?: Maybe<Scalars['URL']['output']>;
|
|
57423
57716
|
heroImage?: Maybe<MarketplaceListingImage>;
|
|
57424
57717
|
highlights?: Maybe<Array<MarketplaceListingHighlight>>;
|
|
@@ -70247,14 +70540,29 @@ export declare type ThirdPartyUser = LocalizationContext & {
|
|
|
70247
70540
|
canonicalAccountId: Scalars['ID']['output'];
|
|
70248
70541
|
createdAt: Scalars['DateTime']['output'];
|
|
70249
70542
|
email?: Maybe<Scalars['String']['output']>;
|
|
70543
|
+
extendedProfile?: Maybe<ThirdPartyUserExtendedProfile>;
|
|
70250
70544
|
externalId: Scalars['String']['output'];
|
|
70251
70545
|
id: Scalars['ID']['output'];
|
|
70252
70546
|
locale?: Maybe<Scalars['String']['output']>;
|
|
70253
70547
|
name?: Maybe<Scalars['String']['output']>;
|
|
70548
|
+
nickname?: Maybe<Scalars['String']['output']>;
|
|
70254
70549
|
picture?: Maybe<Scalars['URL']['output']>;
|
|
70255
70550
|
updatedAt: Scalars['DateTime']['output'];
|
|
70256
70551
|
zoneinfo?: Maybe<Scalars['String']['output']>;
|
|
70257
70552
|
};
|
|
70553
|
+
export declare type ThirdPartyUserExtendedProfile = {
|
|
70554
|
+
__typename?: 'ThirdPartyUserExtendedProfile';
|
|
70555
|
+
department?: Maybe<Scalars['String']['output']>;
|
|
70556
|
+
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
70557
|
+
location?: Maybe<Scalars['String']['output']>;
|
|
70558
|
+
organization?: Maybe<Scalars['String']['output']>;
|
|
70559
|
+
phoneNumbers?: Maybe<Array<Maybe<ThirdPartyUserPhoneNumber>>>;
|
|
70560
|
+
};
|
|
70561
|
+
export declare type ThirdPartyUserPhoneNumber = {
|
|
70562
|
+
__typename?: 'ThirdPartyUserPhoneNumber';
|
|
70563
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
70564
|
+
value: Scalars['String']['output'];
|
|
70565
|
+
};
|
|
70258
70566
|
export declare type TimeSeriesPoint = {
|
|
70259
70567
|
__typename?: 'TimeSeriesPoint';
|
|
70260
70568
|
id: Scalars['ID']['output'];
|
|
@@ -70278,7 +70586,6 @@ export declare type Toolchain = {
|
|
|
70278
70586
|
checkAuth?: Maybe<ToolchainCheckAuth>;
|
|
70279
70587
|
checkAuthV2?: Maybe<ToolchainCheckAuthResult>;
|
|
70280
70588
|
containers?: Maybe<ToolchainContainerConnection>;
|
|
70281
|
-
syncStatus?: Maybe<ToolchainSyncStatus>;
|
|
70282
70589
|
workspaces?: Maybe<ToolchainWorkspaceConnection>;
|
|
70283
70590
|
};
|
|
70284
70591
|
export declare type ToolchainCheckAuthArgs = {
|
|
@@ -70300,13 +70607,6 @@ export declare type ToolchainContainersArgs = {
|
|
|
70300
70607
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
70301
70608
|
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
70302
70609
|
};
|
|
70303
|
-
export declare type ToolchainSyncStatusArgs = {
|
|
70304
|
-
cloudId: Scalars['ID']['input'];
|
|
70305
|
-
containerId: Scalars['ID']['input'];
|
|
70306
|
-
jiraProjectId: Scalars['ID']['input'];
|
|
70307
|
-
providerId: Scalars['String']['input'];
|
|
70308
|
-
providerType?: InputMaybe<ToolchainProviderType>;
|
|
70309
|
-
};
|
|
70310
70610
|
export declare type ToolchainWorkspacesArgs = {
|
|
70311
70611
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
70312
70612
|
cloudId: Scalars['ID']['input'];
|
|
@@ -70516,16 +70816,6 @@ export declare enum ToolchainProviderType {
|
|
|
70516
70816
|
RemoteLinks = "REMOTE_LINKS",
|
|
70517
70817
|
Security = "SECURITY"
|
|
70518
70818
|
}
|
|
70519
|
-
export declare enum ToolchainSyncState {
|
|
70520
|
-
Complete = "COMPLETE",
|
|
70521
|
-
Error = "ERROR",
|
|
70522
|
-
InProgress = "IN_PROGRESS"
|
|
70523
|
-
}
|
|
70524
|
-
export declare type ToolchainSyncStatus = {
|
|
70525
|
-
__typename?: 'ToolchainSyncStatus';
|
|
70526
|
-
errorKey?: Maybe<Scalars['String']['output']>;
|
|
70527
|
-
state: ToolchainSyncState;
|
|
70528
|
-
};
|
|
70529
70819
|
export declare type ToolchainWorkspace = Node & {
|
|
70530
70820
|
__typename?: 'ToolchainWorkspace';
|
|
70531
70821
|
canCreateContainer: Scalars['Boolean']['output'];
|
|
@@ -72804,13 +73094,13 @@ export declare type UnifiedAccount = UnifiedINode & {
|
|
|
72804
73094
|
};
|
|
72805
73095
|
export declare type UnifiedAccount2 = UnifiedINode & {
|
|
72806
73096
|
__typename?: 'UnifiedAccount2';
|
|
72807
|
-
aaid
|
|
72808
|
-
emailId
|
|
73097
|
+
aaid: Scalars['String']['output'];
|
|
73098
|
+
emailId: Scalars['String']['output'];
|
|
72809
73099
|
id: Scalars['ID']['output'];
|
|
72810
|
-
internalId
|
|
72811
|
-
isLinked
|
|
72812
|
-
isManaged
|
|
72813
|
-
isPrimary
|
|
73100
|
+
internalId: Scalars['String']['output'];
|
|
73101
|
+
isLinked: Scalars['Boolean']['output'];
|
|
73102
|
+
isManaged: Scalars['Boolean']['output'];
|
|
73103
|
+
isPrimary: Scalars['Boolean']['output'];
|
|
72814
73104
|
linkedAccounts?: Maybe<UnifiedULinkedAccount2Result>;
|
|
72815
73105
|
};
|
|
72816
73106
|
export declare type UnifiedAccountDetails = UnifiedINode & {
|
|
@@ -73127,7 +73417,7 @@ export declare type UnifiedLinkedAccountPayload = UnifiedPayload & {
|
|
|
73127
73417
|
};
|
|
73128
73418
|
export declare type UnifiedLinkingMutation = {
|
|
73129
73419
|
__typename?: 'UnifiedLinkingMutation';
|
|
73130
|
-
authenticateTransaction?: Maybe<
|
|
73420
|
+
authenticateTransaction?: Maybe<UnifiedULinkTransactionPayload>;
|
|
73131
73421
|
completeTransaction?: Maybe<UnifiedLinkingPayload>;
|
|
73132
73422
|
initializeTransaction?: Maybe<UnifiedULinkTransactionPayload>;
|
|
73133
73423
|
};
|
|
@@ -73220,6 +73510,8 @@ export declare type UnifiedProfile = UnifiedINode & {
|
|
|
73220
73510
|
gamification?: Maybe<UnifiedUGamificationResult>;
|
|
73221
73511
|
gamificationId?: Maybe<Scalars['String']['output']>;
|
|
73222
73512
|
id: Scalars['ID']['output'];
|
|
73513
|
+
isPersonalView?: Maybe<Scalars['Boolean']['output']>;
|
|
73514
|
+
isPrivate: Scalars['Boolean']['output'];
|
|
73223
73515
|
learnId?: Maybe<Scalars['String']['output']>;
|
|
73224
73516
|
learning?: Maybe<UnifiedULearningResult>;
|
|
73225
73517
|
linkedinUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -73263,6 +73555,7 @@ export declare type UnifiedProfileInput = {
|
|
|
73263
73555
|
company?: InputMaybe<Scalars['String']['input']>;
|
|
73264
73556
|
forumsId?: InputMaybe<Scalars['String']['input']>;
|
|
73265
73557
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
73558
|
+
isPrivate: Scalars['Boolean']['input'];
|
|
73266
73559
|
learnId?: InputMaybe<Scalars['String']['input']>;
|
|
73267
73560
|
linkedinUrl?: InputMaybe<Scalars['String']['input']>;
|
|
73268
73561
|
location?: InputMaybe<Scalars['String']['input']>;
|