@forge/cli-shared 8.2.0-next.7 → 8.2.0-next.8
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 +9 -0
- package/out/graphql/graphql-types.d.ts +47 -8
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +15 -7
- package/out/service/statsig-service.d.ts +1 -2
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +0 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -19947,6 +19947,17 @@ export declare type DevConsoleDeveloperSpaceDetailsResult = {
|
|
|
19947
19947
|
error?: Maybe<DevConsoleDeveloperSpaceDetailsError>;
|
|
19948
19948
|
success: Scalars['Boolean']['output'];
|
|
19949
19949
|
};
|
|
19950
|
+
export declare type DevConsoleDeveloperSpaceMember = {
|
|
19951
|
+
__typename?: 'DevConsoleDeveloperSpaceMember';
|
|
19952
|
+
accountId: Scalars['String']['output'];
|
|
19953
|
+
email: Scalars['String']['output'];
|
|
19954
|
+
name: Scalars['String']['output'];
|
|
19955
|
+
picture?: Maybe<Scalars['String']['output']>;
|
|
19956
|
+
};
|
|
19957
|
+
export declare type DevConsoleDeveloperSpaceMembersResponse = {
|
|
19958
|
+
__typename?: 'DevConsoleDeveloperSpaceMembersResponse';
|
|
19959
|
+
members: Array<DevConsoleDeveloperSpaceMember>;
|
|
19960
|
+
};
|
|
19950
19961
|
export declare enum DevConsoleDeveloperSpaceType {
|
|
19951
19962
|
AtlassianExternal = "ATLASSIAN_EXTERNAL",
|
|
19952
19963
|
AtlassianInternal = "ATLASSIAN_INTERNAL"
|
|
@@ -19961,11 +19972,15 @@ export declare type DevConsoleMutationCreateDeveloperSpaceArgs = {
|
|
|
19961
19972
|
export declare type DevConsoleQuery = {
|
|
19962
19973
|
__typename?: 'DevConsoleQuery';
|
|
19963
19974
|
getDeveloperSpaceDetails: DevConsoleBulkDeveloperSpaceDetailsResponse;
|
|
19975
|
+
getDeveloperSpaceMembers: DevConsoleDeveloperSpaceMembersResponse;
|
|
19964
19976
|
getDeveloperSpaceWithLinkingAccess: Array<Maybe<Scalars['String']['output']>>;
|
|
19965
19977
|
};
|
|
19966
19978
|
export declare type DevConsoleQueryGetDeveloperSpaceDetailsArgs = {
|
|
19967
19979
|
developerSpaceIds: Array<Scalars['String']['input']>;
|
|
19968
19980
|
};
|
|
19981
|
+
export declare type DevConsoleQueryGetDeveloperSpaceMembersArgs = {
|
|
19982
|
+
developerSpaceId: Scalars['String']['input'];
|
|
19983
|
+
};
|
|
19969
19984
|
export declare type DevOps = {
|
|
19970
19985
|
__typename?: 'DevOps';
|
|
19971
19986
|
ariGraph?: Maybe<AriGraph>;
|
|
@@ -65070,16 +65085,10 @@ export declare type JiraProjectUpdateNameMutationPayload = Payload & {
|
|
|
65070
65085
|
};
|
|
65071
65086
|
export declare type JiraProjectWithIssueTypeIds = {
|
|
65072
65087
|
__typename?: 'JiraProjectWithIssueTypeIds';
|
|
65073
|
-
aiSuggestedAvailableFields?: Maybe<JiraAvailableFieldsConnection>;
|
|
65074
65088
|
allowedCustomFieldTypes?: Maybe<JiraFieldTypeConnection>;
|
|
65075
65089
|
availableFields?: Maybe<JiraAvailableFieldsConnection>;
|
|
65076
65090
|
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypesConnection>;
|
|
65077
65091
|
};
|
|
65078
|
-
export declare type JiraProjectWithIssueTypeIdsAiSuggestedAvailableFieldsArgs = {
|
|
65079
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
65080
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65081
|
-
input?: InputMaybe<JiraProjectAvailableFieldsInput>;
|
|
65082
|
-
};
|
|
65083
65092
|
export declare type JiraProjectWithIssueTypeIdsAllowedCustomFieldTypesArgs = {
|
|
65084
65093
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
65085
65094
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -73772,7 +73781,8 @@ export declare type KnowledgeGraphObjectResponseV2 = {
|
|
|
73772
73781
|
};
|
|
73773
73782
|
export declare enum KnowledgeGraphObjectType {
|
|
73774
73783
|
SnippetV1 = "snippet_v1",
|
|
73775
|
-
SnippetV2 = "snippet_v2"
|
|
73784
|
+
SnippetV2 = "snippet_v2",
|
|
73785
|
+
SnippetV2_180 = "snippet_v2_180"
|
|
73776
73786
|
}
|
|
73777
73787
|
export declare type KnownUser = Person & {
|
|
73778
73788
|
__typename?: 'KnownUser';
|
|
@@ -74754,6 +74764,7 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
|
74754
74764
|
hasActiveCoupledVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
74755
74765
|
hasConnectVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
74756
74766
|
hasDecoupledVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
74767
|
+
hasPublicApprovedVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
74757
74768
|
hasPublicVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
74758
74769
|
hosting: MarketplaceConsoleHosting;
|
|
74759
74770
|
isLatestActiveVersionPaidViaAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -75401,7 +75412,7 @@ export declare type MarketplaceConsoleMutationApiCreateEcoHelpTicketArgs = {
|
|
|
75401
75412
|
};
|
|
75402
75413
|
export declare type MarketplaceConsoleMutationApiCreatePrivateAppSoftwareVersionArgs = {
|
|
75403
75414
|
appKey: Scalars['ID']['input'];
|
|
75404
|
-
|
|
75415
|
+
cloudComplianceBoundaries?: InputMaybe<Array<InputMaybe<MarketplaceConsoleCloudComplianceBoundary>>>;
|
|
75405
75416
|
version: MarketplaceConsoleAppVersionCreateRequestInput;
|
|
75406
75417
|
};
|
|
75407
75418
|
export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
|
|
@@ -75431,6 +75442,24 @@ export declare type MarketplaceConsoleMutationVoidResponse = {
|
|
|
75431
75442
|
__typename?: 'MarketplaceConsoleMutationVoidResponse';
|
|
75432
75443
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
75433
75444
|
};
|
|
75445
|
+
export declare type MarketplaceConsoleOffering = {
|
|
75446
|
+
__typename?: 'MarketplaceConsoleOffering';
|
|
75447
|
+
id: Scalars['ID']['output'];
|
|
75448
|
+
isDecoupled: Scalars['Boolean']['output'];
|
|
75449
|
+
name: Scalars['String']['output'];
|
|
75450
|
+
parentProduct: Scalars['String']['output'];
|
|
75451
|
+
status: MarketplaceConsoleOfferingStatus;
|
|
75452
|
+
};
|
|
75453
|
+
export declare type MarketplaceConsoleOfferingInput = {
|
|
75454
|
+
appKey: Scalars['String']['input'];
|
|
75455
|
+
productId: Scalars['String']['input'];
|
|
75456
|
+
};
|
|
75457
|
+
export declare enum MarketplaceConsoleOfferingStatus {
|
|
75458
|
+
Active = "ACTIVE",
|
|
75459
|
+
AtNotice = "AT_NOTICE",
|
|
75460
|
+
Draft = "DRAFT",
|
|
75461
|
+
Expired = "EXPIRED"
|
|
75462
|
+
}
|
|
75434
75463
|
export declare type MarketplaceConsoleParentSoftware = {
|
|
75435
75464
|
__typename?: 'MarketplaceConsoleParentSoftware';
|
|
75436
75465
|
extensibilityFrameworks: Array<MarketplaceConsoleExtensibilityFramework>;
|
|
@@ -75668,6 +75697,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
75668
75697
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
75669
75698
|
editionsActivationStatus?: Maybe<MarketplaceConsoleEditionsActivationResponse>;
|
|
75670
75699
|
makeAppVersionPublicChecks?: Maybe<MarketplaceConsoleMakeAppVersionPublicChecks>;
|
|
75700
|
+
offerings?: Maybe<Array<Maybe<MarketplaceConsoleOffering>>>;
|
|
75671
75701
|
parentProductPricing?: Maybe<MarketplaceConsoleParentSoftwarePricing>;
|
|
75672
75702
|
parentSoftwares: Array<MarketplaceConsoleParentSoftware>;
|
|
75673
75703
|
product?: Maybe<MarketplaceConsoleProduct>;
|
|
@@ -75724,6 +75754,9 @@ export declare type MarketplaceConsoleQueryApiMakeAppVersionPublicChecksArgs = {
|
|
|
75724
75754
|
appId: Scalars['ID']['input'];
|
|
75725
75755
|
buildNumber: Scalars['ID']['input'];
|
|
75726
75756
|
};
|
|
75757
|
+
export declare type MarketplaceConsoleQueryApiOfferingsArgs = {
|
|
75758
|
+
product: MarketplaceConsoleOfferingInput;
|
|
75759
|
+
};
|
|
75727
75760
|
export declare type MarketplaceConsoleQueryApiParentProductPricingArgs = {
|
|
75728
75761
|
product: MarketplaceConsoleParentSoftwarePricingQueryInput;
|
|
75729
75762
|
};
|
|
@@ -84807,6 +84840,7 @@ export declare type Query = {
|
|
|
84807
84840
|
devai_flowSessionsByCreatorAndCloudId?: Maybe<Array<Maybe<DevAiFlowSession>>>;
|
|
84808
84841
|
devai_flowSessionsByIssueKeyAndCloudId?: Maybe<DevAiFlowSessionConnection>;
|
|
84809
84842
|
devai_getPrefillRepoUrlForFlow?: Maybe<DevAiFlowRepository>;
|
|
84843
|
+
devai_getUserPermissionsForRepo?: Maybe<Scalars['Boolean']['output']>;
|
|
84810
84844
|
devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
|
|
84811
84845
|
devai_rovoDevAgentsWorkspace?: Maybe<DevAiWorkspace>;
|
|
84812
84846
|
devai_technicalPlannerJobById?: Maybe<DevAiTechnicalPlannerJob>;
|
|
@@ -86230,6 +86264,10 @@ export declare type QueryDevai_GetPrefillRepoUrlForFlowArgs = {
|
|
|
86230
86264
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
86231
86265
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
86232
86266
|
};
|
|
86267
|
+
export declare type QueryDevai_GetUserPermissionsForRepoArgs = {
|
|
86268
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
86269
|
+
repoUrl?: InputMaybe<Scalars['String']['input']>;
|
|
86270
|
+
};
|
|
86233
86271
|
export declare type QueryDevai_RovoDevAgentsUserArgs = {
|
|
86234
86272
|
atlassianAccountId?: InputMaybe<Scalars['ID']['input']>;
|
|
86235
86273
|
cloudId: Scalars['ID']['input'];
|
|
@@ -94555,6 +94593,7 @@ export declare type SupportRequestParticipants = {
|
|
|
94555
94593
|
};
|
|
94556
94594
|
export declare type SupportRequestParticipantsInput = {
|
|
94557
94595
|
aaids?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
94596
|
+
emails?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
94558
94597
|
gsacUsernames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
94559
94598
|
requestKey: Scalars['String']['input'];
|
|
94560
94599
|
};
|