@forge/cli-shared 5.0.2-next.0 → 5.0.2-next.0-experimental-a92f9f3
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
CHANGED
|
@@ -38065,6 +38065,7 @@ export declare type JiraQueryRecentItemsArgs = {
|
|
|
38065
38065
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
38066
38066
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
38067
38067
|
cloudId: Scalars['ID']['input'];
|
|
38068
|
+
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
38068
38069
|
filter?: InputMaybe<JiraRecentItemsFilter>;
|
|
38069
38070
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38070
38071
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -43764,6 +43765,7 @@ export declare type MarketplaceConsolePartnerContactPermissions = {
|
|
|
43764
43765
|
atlassianAccountId: Scalars['ID']['output'];
|
|
43765
43766
|
canManageAppDetails: Scalars['Boolean']['output'];
|
|
43766
43767
|
canManageAppPricing: Scalars['Boolean']['output'];
|
|
43768
|
+
canManageMarketing: Scalars['Boolean']['output'];
|
|
43767
43769
|
canManagePartnerDetails: Scalars['Boolean']['output'];
|
|
43768
43770
|
canManagePartnerPaymentDetails: Scalars['Boolean']['output'];
|
|
43769
43771
|
canManagePartnerSecurity: Scalars['Boolean']['output'];
|
|
@@ -52129,6 +52131,7 @@ export declare type ShepherdWorkspaceUpdateInput = {
|
|
|
52129
52131
|
};
|
|
52130
52132
|
export declare type SignupProvisioningStatus = {
|
|
52131
52133
|
__typename?: 'SignupProvisioningStatus';
|
|
52134
|
+
cloudId?: Maybe<Scalars['String']['output']>;
|
|
52132
52135
|
orchestrationId: Scalars['String']['output'];
|
|
52133
52136
|
provisionComplete: Scalars['Boolean']['output'];
|
|
52134
52137
|
};
|
|
@@ -53525,6 +53528,19 @@ export declare type ToolchainContainerWorkspaceDetails = {
|
|
|
53525
53528
|
id: Scalars['ID']['output'];
|
|
53526
53529
|
name: Scalars['String']['output'];
|
|
53527
53530
|
};
|
|
53531
|
+
export declare enum ToolchainCreateContainerErrorCode {
|
|
53532
|
+
ProviderContainerAlreadyExists = "PROVIDER_CONTAINER_ALREADY_EXISTS",
|
|
53533
|
+
ProviderContainerCreateForbidden = "PROVIDER_CONTAINER_CREATE_FORBIDDEN",
|
|
53534
|
+
ProviderError = "PROVIDER_ERROR",
|
|
53535
|
+
ProviderInputInvalid = "PROVIDER_INPUT_INVALID",
|
|
53536
|
+
ProviderWorkspaceNotFound = "PROVIDER_WORKSPACE_NOT_FOUND"
|
|
53537
|
+
}
|
|
53538
|
+
export declare type ToolchainCreateContainerErrorExtension = MutationErrorExtension & {
|
|
53539
|
+
__typename?: 'ToolchainCreateContainerErrorExtension';
|
|
53540
|
+
errorCode?: Maybe<ToolchainCreateContainerErrorCode>;
|
|
53541
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
53542
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
53543
|
+
};
|
|
53528
53544
|
export declare type ToolchainCreateContainerInput = {
|
|
53529
53545
|
cloudId: Scalars['ID']['input'];
|
|
53530
53546
|
name: Scalars['String']['input'];
|
|
@@ -53821,6 +53837,7 @@ export declare type TownsquareMutationApiUnarchiveGoalArgs = {
|
|
|
53821
53837
|
export declare type TownsquareProject = Node & {
|
|
53822
53838
|
__typename?: 'TownsquareProject';
|
|
53823
53839
|
archived: Scalars['Boolean']['output'];
|
|
53840
|
+
description?: Maybe<TownsquareProjectDescription>;
|
|
53824
53841
|
dueDate?: Maybe<TownsquareTargetDate>;
|
|
53825
53842
|
iconData?: Maybe<Scalars['String']['output']>;
|
|
53826
53843
|
id: Scalars['ID']['output'];
|
|
@@ -53838,6 +53855,12 @@ export declare type TownsquareProjectConnection = {
|
|
|
53838
53855
|
edges?: Maybe<Array<Maybe<TownsquareProjectEdge>>>;
|
|
53839
53856
|
pageInfo: PageInfo;
|
|
53840
53857
|
};
|
|
53858
|
+
export declare type TownsquareProjectDescription = {
|
|
53859
|
+
__typename?: 'TownsquareProjectDescription';
|
|
53860
|
+
measurement?: Maybe<Scalars['String']['output']>;
|
|
53861
|
+
what?: Maybe<Scalars['String']['output']>;
|
|
53862
|
+
why?: Maybe<Scalars['String']['output']>;
|
|
53863
|
+
};
|
|
53841
53864
|
export declare type TownsquareProjectEdge = {
|
|
53842
53865
|
__typename?: 'TownsquareProjectEdge';
|
|
53843
53866
|
cursor: Scalars['String']['output'];
|