@forge/cli-shared 3.10.2 → 3.10.3-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
CHANGED
|
@@ -5846,8 +5846,13 @@ export declare type CustomerServiceIndividualDeletePayload = Payload & {
|
|
|
5846
5846
|
errors?: Maybe<Array<MutationError>>;
|
|
5847
5847
|
};
|
|
5848
5848
|
export declare type CustomerServiceIndividualQueryResult = CustomerServiceIndividual | QueryError;
|
|
5849
|
+
export declare type CustomerServiceIndividualUpdateAttributeByNameInput = {
|
|
5850
|
+
accountId: Scalars['String'];
|
|
5851
|
+
attributeName: Scalars['String'];
|
|
5852
|
+
attributeValue: Scalars['String'];
|
|
5853
|
+
};
|
|
5849
5854
|
export declare type CustomerServiceIndividualUpdateAttributeInput = {
|
|
5850
|
-
|
|
5855
|
+
accountId: Scalars['String'];
|
|
5851
5856
|
attributeId: Scalars['String'];
|
|
5852
5857
|
attributeValue: Scalars['String'];
|
|
5853
5858
|
};
|
|
@@ -5869,6 +5874,7 @@ export declare type CustomerServiceMutationApi = {
|
|
|
5869
5874
|
createIndividualAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
|
|
5870
5875
|
updateIndividualAttribute?: Maybe<CustomerServiceAttributeUpdatePayload>;
|
|
5871
5876
|
deleteIndividualAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
|
|
5877
|
+
updateIndividualAttributeValueByName?: Maybe<CustomerServiceIndividualUpdateAttributeValuePayload>;
|
|
5872
5878
|
};
|
|
5873
5879
|
export declare type CustomerServiceMutationApiCreateOrganizationArgs = {
|
|
5874
5880
|
input: CustomerServiceOrganizationCreateInput;
|
|
@@ -5903,6 +5909,9 @@ export declare type CustomerServiceMutationApiUpdateIndividualAttributeArgs = {
|
|
|
5903
5909
|
export declare type CustomerServiceMutationApiDeleteIndividualAttributeArgs = {
|
|
5904
5910
|
input: CustomerServiceAttributeDeleteInput;
|
|
5905
5911
|
};
|
|
5912
|
+
export declare type CustomerServiceMutationApiUpdateIndividualAttributeValueByNameArgs = {
|
|
5913
|
+
input: CustomerServiceIndividualUpdateAttributeByNameInput;
|
|
5914
|
+
};
|
|
5906
5915
|
export declare type CustomerServiceOrganization = Node & {
|
|
5907
5916
|
__typename?: 'CustomerServiceOrganization';
|
|
5908
5917
|
id: Scalars['ID'];
|
|
@@ -7500,6 +7509,14 @@ export declare type DvcsQueryBitbucketWorkspacesLinkedToSiteArgs = {
|
|
|
7500
7509
|
first?: Maybe<Scalars['Int']>;
|
|
7501
7510
|
after?: Maybe<Scalars['String']>;
|
|
7502
7511
|
};
|
|
7512
|
+
export declare type EarliestOnboardedProjectForCloudId = {
|
|
7513
|
+
__typename?: 'EarliestOnboardedProjectForCloudId';
|
|
7514
|
+
datetime?: Maybe<Scalars['String']>;
|
|
7515
|
+
};
|
|
7516
|
+
export declare type EarliestViewViewedForUser = {
|
|
7517
|
+
__typename?: 'EarliestViewViewedForUser';
|
|
7518
|
+
datetime?: Maybe<Scalars['String']>;
|
|
7519
|
+
};
|
|
7503
7520
|
export declare type EcosystemMutation = {
|
|
7504
7521
|
__typename?: 'EcosystemMutation';
|
|
7505
7522
|
updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
|
|
@@ -19075,6 +19092,8 @@ export declare type Query = {
|
|
|
19075
19092
|
ersLifecycle?: Maybe<ErsLifecycleQuery>;
|
|
19076
19093
|
appAdmin?: Maybe<AppAdminQuery>;
|
|
19077
19094
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
19095
|
+
polarisGetEarliestOnboardedProjectForCloudId?: Maybe<EarliestOnboardedProjectForCloudId>;
|
|
19096
|
+
polarisGetEarliestViewViewedForUser?: Maybe<EarliestViewViewedForUser>;
|
|
19078
19097
|
polarisProject?: Maybe<PolarisProject>;
|
|
19079
19098
|
polarisView?: Maybe<PolarisView>;
|
|
19080
19099
|
polarisInsights?: Maybe<Array<PolarisInsight>>;
|
|
@@ -19301,6 +19320,12 @@ export declare type QueryAppStoredCustomEntitiesArgs = {
|
|
|
19301
19320
|
export declare type QueryAppAdminArgs = {
|
|
19302
19321
|
appId: Scalars['ID'];
|
|
19303
19322
|
};
|
|
19323
|
+
export declare type QueryPolarisGetEarliestOnboardedProjectForCloudIdArgs = {
|
|
19324
|
+
id: Scalars['ID'];
|
|
19325
|
+
};
|
|
19326
|
+
export declare type QueryPolarisGetEarliestViewViewedForUserArgs = {
|
|
19327
|
+
id: Scalars['ID'];
|
|
19328
|
+
};
|
|
19304
19329
|
export declare type QueryPolarisProjectArgs = {
|
|
19305
19330
|
id: Scalars['ID'];
|
|
19306
19331
|
skipRefresh?: Maybe<Scalars['Boolean']>;
|
|
@@ -21093,6 +21118,7 @@ export declare type ShepherdAlert = Node & {
|
|
|
21093
21118
|
supportingData?: Maybe<ShepherdAlertSupportingData>;
|
|
21094
21119
|
template?: Maybe<ShepherdAlertTemplateType>;
|
|
21095
21120
|
title: Scalars['String'];
|
|
21121
|
+
updatedBy?: Maybe<ShepherdUser>;
|
|
21096
21122
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
21097
21123
|
workspaceId?: Maybe<Scalars['ID']>;
|
|
21098
21124
|
};
|
|
@@ -21128,6 +21154,7 @@ export declare type ShepherdAlertSupportingData = {
|
|
|
21128
21154
|
export declare enum ShepherdAlertTemplateType {
|
|
21129
21155
|
AddedConfluenceGlobalPermission = "ADDED_CONFLUENCE_GLOBAL_PERMISSION",
|
|
21130
21156
|
AddedConfluenceSpacePermission = "ADDED_CONFLUENCE_SPACE_PERMISSION",
|
|
21157
|
+
AddedJiraGlobalPermission = "ADDED_JIRA_GLOBAL_PERMISSION",
|
|
21131
21158
|
AddedOrgadmin = "ADDED_ORGADMIN",
|
|
21132
21159
|
ConfluencePageCrawling = "CONFLUENCE_PAGE_CRAWLING",
|
|
21133
21160
|
ConfluencePageExports = "CONFLUENCE_PAGE_EXPORTS",
|
|
@@ -21148,6 +21175,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
21148
21175
|
EcosystemAuditLogUserGrantCreated = "ECOSYSTEM_AUDIT_LOG_USER_GRANT_CREATED",
|
|
21149
21176
|
EnableScimSync = "ENABLE_SCIM_SYNC",
|
|
21150
21177
|
ExportedOrgeventscsv = "EXPORTED_ORGEVENTSCSV",
|
|
21178
|
+
GrantAssignedJiraPermissionScheme = "GRANT_ASSIGNED_JIRA_PERMISSION_SCHEME",
|
|
21151
21179
|
IdentityPasswordResetCompletedUser = "IDENTITY_PASSWORD_RESET_COMPLETED_USER",
|
|
21152
21180
|
InitiatedGsyncConnection = "INITIATED_GSYNC_CONNECTION",
|
|
21153
21181
|
JiraIssueCrawling = "JIRA_ISSUE_CRAWLING",
|