@forge/cli-shared 5.4.0-next.8 → 5.4.0-next.9
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 +11 -0
- package/out/graphql/graphql-types.d.ts +38 -1
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +19 -13
- package/out/service/bridge-script-service.js +3 -2
- package/out/service/iframe-resizer-script-service.js +3 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -206,6 +206,7 @@ export declare type ActionsActionableAppsFilter = {
|
|
|
206
206
|
byContextEntityType?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
207
207
|
byEntityProperty?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
208
208
|
byEntityType?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
209
|
+
byEnvironmentId?: InputMaybe<Scalars['String']['input']>;
|
|
209
210
|
byExtensionAri?: InputMaybe<Scalars['String']['input']>;
|
|
210
211
|
byIntegrationKey?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
211
212
|
byProviderID?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -15780,6 +15781,17 @@ export declare type CustomerServiceCustomDetailEntityTypeId = {
|
|
|
15780
15781
|
entitlementId?: InputMaybe<Scalars['ID']['input']>;
|
|
15781
15782
|
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
15782
15783
|
};
|
|
15784
|
+
export declare type CustomerServiceCustomDetailPermissionsUpdateInput = {
|
|
15785
|
+
editPermissions?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
15786
|
+
id: Scalars['ID']['input'];
|
|
15787
|
+
readPermissions?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
15788
|
+
};
|
|
15789
|
+
export declare type CustomerServiceCustomDetailPermissionsUpdatePayload = Payload & {
|
|
15790
|
+
__typename?: 'CustomerServiceCustomDetailPermissionsUpdatePayload';
|
|
15791
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15792
|
+
success: Scalars['Boolean']['output'];
|
|
15793
|
+
successfullyUpdatedCustomDetail?: Maybe<CustomerServiceCustomDetail>;
|
|
15794
|
+
};
|
|
15783
15795
|
export declare type CustomerServiceCustomDetailType = {
|
|
15784
15796
|
__typename?: 'CustomerServiceCustomDetailType';
|
|
15785
15797
|
name: CustomerServiceCustomDetailTypeName;
|
|
@@ -15816,9 +15828,11 @@ export declare type CustomerServiceCustomDetailValue = Node & {
|
|
|
15816
15828
|
__typename?: 'CustomerServiceCustomDetailValue';
|
|
15817
15829
|
canEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
15818
15830
|
config?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
15831
|
+
editPermissions?: Maybe<CustomerServicePermissionGroupConnection>;
|
|
15819
15832
|
id: Scalars['ID']['output'];
|
|
15820
15833
|
name: Scalars['String']['output'];
|
|
15821
15834
|
platformValue?: Maybe<CustomerServicePlatformDetailValue>;
|
|
15835
|
+
readPermissions?: Maybe<CustomerServicePermissionGroupConnection>;
|
|
15822
15836
|
type: CustomerServiceCustomDetailType;
|
|
15823
15837
|
value?: Maybe<Scalars['String']['output']>;
|
|
15824
15838
|
values?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -15995,6 +16009,7 @@ export declare type CustomerServiceMutationApi = {
|
|
|
15995
16009
|
removeEntitlement?: Maybe<CustomerServiceEntitlementRemovePayload>;
|
|
15996
16010
|
updateCustomDetail?: Maybe<CustomerServiceCustomDetailUpdatePayload>;
|
|
15997
16011
|
updateCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadataUpdatePayload>;
|
|
16012
|
+
updateCustomDetailPermissions?: Maybe<CustomerServiceCustomDetailPermissionsUpdatePayload>;
|
|
15998
16013
|
updateCustomDetailValue?: Maybe<CustomerServiceUpdateCustomDetailValuePayload>;
|
|
15999
16014
|
updateIndividualAttribute?: Maybe<CustomerServiceAttributeUpdatePayload>;
|
|
16000
16015
|
updateIndividualAttributeConfig?: Maybe<CustomerServiceAttributeConfigMetadataUpdatePayload>;
|
|
@@ -16063,6 +16078,9 @@ export declare type CustomerServiceMutationApiUpdateCustomDetailArgs = {
|
|
|
16063
16078
|
export declare type CustomerServiceMutationApiUpdateCustomDetailConfigArgs = {
|
|
16064
16079
|
input: CustomerServiceCustomDetailConfigMetadataUpdateInput;
|
|
16065
16080
|
};
|
|
16081
|
+
export declare type CustomerServiceMutationApiUpdateCustomDetailPermissionsArgs = {
|
|
16082
|
+
input: CustomerServiceCustomDetailPermissionsUpdateInput;
|
|
16083
|
+
};
|
|
16066
16084
|
export declare type CustomerServiceMutationApiUpdateCustomDetailValueArgs = {
|
|
16067
16085
|
input: CustomerServiceUpdateCustomDetailValueInput;
|
|
16068
16086
|
};
|
|
@@ -16241,6 +16259,24 @@ export declare type CustomerServiceOrganizationUpdatePayload = Payload & {
|
|
|
16241
16259
|
success: Scalars['Boolean']['output'];
|
|
16242
16260
|
successfullyUpdatedOrganizationId?: Maybe<Scalars['ID']['output']>;
|
|
16243
16261
|
};
|
|
16262
|
+
export declare type CustomerServicePermissionGroup = {
|
|
16263
|
+
__typename?: 'CustomerServicePermissionGroup';
|
|
16264
|
+
id: Scalars['ID']['output'];
|
|
16265
|
+
type?: Maybe<CustomerServicePermissionGroupType>;
|
|
16266
|
+
};
|
|
16267
|
+
export declare type CustomerServicePermissionGroupConnection = {
|
|
16268
|
+
__typename?: 'CustomerServicePermissionGroupConnection';
|
|
16269
|
+
edges?: Maybe<Array<CustomerServicePermissionGroupEdge>>;
|
|
16270
|
+
};
|
|
16271
|
+
export declare type CustomerServicePermissionGroupEdge = {
|
|
16272
|
+
__typename?: 'CustomerServicePermissionGroupEdge';
|
|
16273
|
+
node?: Maybe<CustomerServicePermissionGroup>;
|
|
16274
|
+
};
|
|
16275
|
+
export declare enum CustomerServicePermissionGroupType {
|
|
16276
|
+
Admins = "ADMINS",
|
|
16277
|
+
AdminsAgents = "ADMINS_AGENTS",
|
|
16278
|
+
AdminsAgentsCollaborators = "ADMINS_AGENTS_COLLABORATORS"
|
|
16279
|
+
}
|
|
16244
16280
|
export declare type CustomerServicePlatformDetailValue = CustomerServiceUserDetailValue;
|
|
16245
16281
|
export declare type CustomerServiceProduct = Node & {
|
|
16246
16282
|
__typename?: 'CustomerServiceProduct';
|
|
@@ -40360,6 +40396,7 @@ export declare type JiraCrossProjectVersionEdge = {
|
|
|
40360
40396
|
export declare type JiraCrossProjectVersionPlanScenarioValues = {
|
|
40361
40397
|
__typename?: 'JiraCrossProjectVersionPlanScenarioValues';
|
|
40362
40398
|
name?: Maybe<Scalars['String']['output']>;
|
|
40399
|
+
scenarioType?: Maybe<JiraScenarioType>;
|
|
40363
40400
|
};
|
|
40364
40401
|
export declare type JiraCustomBackground = {
|
|
40365
40402
|
__typename?: 'JiraCustomBackground';
|
|
@@ -62859,7 +62896,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
62859
62896
|
type: SearchResultType;
|
|
62860
62897
|
url: Scalars['URL']['output'];
|
|
62861
62898
|
};
|
|
62862
|
-
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DeploymentSummary |
|
|
62899
|
+
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalCommit | ExternalConversation | ExternalDesign | ExternalDocument | ExternalMessage | ExternalPullRequest | ExternalRepository | ExternalVideo | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
62863
62900
|
export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & SearchResult & {
|
|
62864
62901
|
__typename?: 'SearchResultGoogleDocument';
|
|
62865
62902
|
bodyText: Scalars['String']['output'];
|