@forge/cli-shared 8.10.0 → 8.11.0-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 +6 -0
- package/out/graphql/graphql-types.d.ts +50 -0
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +38 -31
- package/out/ui/text.d.ts +5 -2
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2876,6 +2876,7 @@ export declare type AgentStudioBatchEvaluationJobRun = {
|
|
|
2876
2876
|
completedItems: Scalars['Int']['output'];
|
|
2877
2877
|
id: Scalars['ID']['output'];
|
|
2878
2878
|
jobId: Scalars['ID']['output'];
|
|
2879
|
+
runNumber?: Maybe<Scalars['Int']['output']>;
|
|
2879
2880
|
startedAt: Scalars['String']['output'];
|
|
2880
2881
|
status: AgentStudioJobRunStatus;
|
|
2881
2882
|
totalItems: Scalars['Int']['output'];
|
|
@@ -3788,6 +3789,7 @@ export declare enum ApiGroup {
|
|
|
3788
3789
|
}
|
|
3789
3790
|
export declare type App = {
|
|
3790
3791
|
__typename?: 'App';
|
|
3792
|
+
appFeatures?: Maybe<Array<AppFeature>>;
|
|
3791
3793
|
avatarFileId?: Maybe<Scalars['String']['output']>;
|
|
3792
3794
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
3793
3795
|
contactLink?: Maybe<Scalars['String']['output']>;
|
|
@@ -4148,6 +4150,17 @@ export declare type AppEnvironmentVersionEdge = {
|
|
|
4148
4150
|
cursor: Scalars['String']['output'];
|
|
4149
4151
|
node?: Maybe<AppEnvironmentVersion>;
|
|
4150
4152
|
};
|
|
4153
|
+
export declare type AppFeature = {
|
|
4154
|
+
__typename?: 'AppFeature';
|
|
4155
|
+
key: AppFeatureKey;
|
|
4156
|
+
value: Scalars['Boolean']['output'];
|
|
4157
|
+
};
|
|
4158
|
+
export declare enum AppFeatureKey {
|
|
4159
|
+
HasCustomLifecycle = "HAS_CUSTOM_LIFECYCLE",
|
|
4160
|
+
HasExposedCredentials = "HAS_EXPOSED_CREDENTIALS",
|
|
4161
|
+
HasResourceRestrictedToken = "HAS_RESOURCE_RESTRICTED_TOKEN",
|
|
4162
|
+
SupportsCompute = "SUPPORTS_COMPUTE"
|
|
4163
|
+
}
|
|
4151
4164
|
export declare type AppFeaturesExposedCredentialsInput = {
|
|
4152
4165
|
contactLink?: InputMaybe<Scalars['String']['input']>;
|
|
4153
4166
|
defaultAuthClientType?: InputMaybe<AuthClientType>;
|
|
@@ -25705,6 +25718,7 @@ export declare type CustomerServiceMutationApi = {
|
|
|
25705
25718
|
deleteTemplateForm?: Maybe<CustomerServiceTemplateFormDeletePayload>;
|
|
25706
25719
|
escalateWorkItem?: Maybe<CustomerServiceEscalateWorkItemPayload>;
|
|
25707
25720
|
removeEntitlement?: Maybe<CustomerServiceEntitlementRemovePayload>;
|
|
25721
|
+
returnEscalation?: Maybe<CustomerServiceReturnEscalationPayload>;
|
|
25708
25722
|
updateCustomDetail?: Maybe<CustomerServiceCustomDetailUpdatePayload>;
|
|
25709
25723
|
updateCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadataUpdatePayload>;
|
|
25710
25724
|
updateCustomDetailContextConfigs?: Maybe<CustomerServiceUpdateCustomDetailContextConfigsPayload>;
|
|
@@ -25784,6 +25798,11 @@ export declare type CustomerServiceMutationApiEscalateWorkItemArgs = {
|
|
|
25784
25798
|
export declare type CustomerServiceMutationApiRemoveEntitlementArgs = {
|
|
25785
25799
|
input: CustomerServiceEntitlementRemoveInput;
|
|
25786
25800
|
};
|
|
25801
|
+
export declare type CustomerServiceMutationApiReturnEscalationArgs = {
|
|
25802
|
+
input: CustomerServiceReturnEscalationInput;
|
|
25803
|
+
projectId: Scalars['ID']['input'];
|
|
25804
|
+
workItemId: Scalars['ID']['input'];
|
|
25805
|
+
};
|
|
25787
25806
|
export declare type CustomerServiceMutationApiUpdateCustomDetailArgs = {
|
|
25788
25807
|
input: CustomerServiceCustomDetailUpdateInput;
|
|
25789
25808
|
};
|
|
@@ -26199,6 +26218,15 @@ export declare type CustomerServiceRequestUpdateParticipantsPayload = Payload &
|
|
|
26199
26218
|
errors?: Maybe<Array<MutationError>>;
|
|
26200
26219
|
success: Scalars['Boolean']['output'];
|
|
26201
26220
|
};
|
|
26221
|
+
export declare type CustomerServiceReturnEscalationInput = {
|
|
26222
|
+
escalationType: CustomerServiceEscalationType;
|
|
26223
|
+
reason?: InputMaybe<Scalars['String']['input']>;
|
|
26224
|
+
};
|
|
26225
|
+
export declare type CustomerServiceReturnEscalationPayload = Payload & {
|
|
26226
|
+
__typename?: 'CustomerServiceReturnEscalationPayload';
|
|
26227
|
+
errors?: Maybe<Array<MutationError>>;
|
|
26228
|
+
success: Scalars['Boolean']['output'];
|
|
26229
|
+
};
|
|
26202
26230
|
export declare type CustomerServiceRoutingRule = {
|
|
26203
26231
|
__typename?: 'CustomerServiceRoutingRule';
|
|
26204
26232
|
id: Scalars['ID']['output'];
|
|
@@ -27276,6 +27304,7 @@ export declare type DevAiFlowRepository = {
|
|
|
27276
27304
|
domain?: Maybe<Scalars['String']['output']>;
|
|
27277
27305
|
id?: Maybe<Scalars['ID']['output']>;
|
|
27278
27306
|
name?: Maybe<Scalars['String']['output']>;
|
|
27307
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
27279
27308
|
url?: Maybe<Scalars['String']['output']>;
|
|
27280
27309
|
};
|
|
27281
27310
|
export declare type DevAiFlowRepositoryConnection = {
|
|
@@ -75279,6 +75308,14 @@ export declare enum JiraJourneyTriggerType {
|
|
|
75279
75308
|
ParentIssueCreated = "PARENT_ISSUE_CREATED",
|
|
75280
75309
|
WorkdayIntegrationTriggered = "WORKDAY_INTEGRATION_TRIGGERED"
|
|
75281
75310
|
}
|
|
75311
|
+
export declare type JiraJourneyTypeUpdatedEventPayload = {
|
|
75312
|
+
__typename?: 'JiraJourneyTypeUpdatedEventPayload';
|
|
75313
|
+
etag?: Maybe<Scalars['String']['output']>;
|
|
75314
|
+
journeyTypeId: Scalars['ID']['output'];
|
|
75315
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
75316
|
+
updatedBy?: Maybe<User>;
|
|
75317
|
+
version?: Maybe<Scalars['Long']['output']>;
|
|
75318
|
+
};
|
|
75282
75319
|
export declare type JiraJourneyValidationError = {
|
|
75283
75320
|
__typename?: 'JiraJourneyValidationError';
|
|
75284
75321
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -84885,6 +84922,7 @@ export declare type JiraSubscription = {
|
|
|
84885
84922
|
onIssueUpdatedByProjectNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
84886
84923
|
onIssueUpdatedByProjectsNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
84887
84924
|
onJirtIssueSubscription?: Maybe<JiraJirtEventPayload>;
|
|
84925
|
+
onJourneyTypeUpdated?: Maybe<JiraJourneyTypeUpdatedEventPayload>;
|
|
84888
84926
|
onJpdIssueSubscription?: Maybe<JiraProductDiscoveryIssueEventPayload>;
|
|
84889
84927
|
onJwmFieldMutation?: Maybe<JiraJwmField>;
|
|
84890
84928
|
onJwmIssueCreatedByProject?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
@@ -84997,6 +85035,11 @@ export declare type JiraSubscriptionOnJirtIssueSubscriptionArgs = {
|
|
|
84997
85035
|
events: Array<Scalars['String']['input']>;
|
|
84998
85036
|
projectIds: Array<Scalars['String']['input']>;
|
|
84999
85037
|
};
|
|
85038
|
+
export declare type JiraSubscriptionOnJourneyTypeUpdatedArgs = {
|
|
85039
|
+
cloudId: Scalars['ID']['input'];
|
|
85040
|
+
journeyTypeId: Scalars['ID']['input'];
|
|
85041
|
+
projectId: Scalars['String']['input'];
|
|
85042
|
+
};
|
|
85000
85043
|
export declare type JiraSubscriptionOnJpdIssueSubscriptionArgs = {
|
|
85001
85044
|
atlassianAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
85002
85045
|
cloudId: Scalars['ID']['input'];
|
|
@@ -104514,6 +104557,7 @@ export declare type Query = {
|
|
|
104514
104557
|
agentStudio_getWidgetsByAgentIdAndContainerType?: Maybe<AgentStudioWidgetsByAgentIdAndContainerTypeResult>;
|
|
104515
104558
|
agentStudio_insightsConfiguration?: Maybe<AgentStudioInsightsConfigurationResult>;
|
|
104516
104559
|
agentStudio_jobExecutionHistory: AgentStudioJobExecutionHistory;
|
|
104560
|
+
agentStudio_jobRun?: Maybe<AgentStudioBatchEvaluationJobRun>;
|
|
104517
104561
|
agentStudio_jobRuns: AgentStudioBatchEvaluationJobRunResult;
|
|
104518
104562
|
agentStudio_scenarioById?: Maybe<AgentStudioScenarioResult>;
|
|
104519
104563
|
agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
|
|
@@ -105714,6 +105758,12 @@ export declare type QueryAgentStudio_JobExecutionHistoryArgs = {
|
|
|
105714
105758
|
productType: AgentStudioProductType;
|
|
105715
105759
|
projectContainerAri: Scalars['ID']['input'];
|
|
105716
105760
|
};
|
|
105761
|
+
export declare type QueryAgentStudio_JobRunArgs = {
|
|
105762
|
+
cloudId: Scalars['String']['input'];
|
|
105763
|
+
productType: AgentStudioProductType;
|
|
105764
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
105765
|
+
runId: Scalars['ID']['input'];
|
|
105766
|
+
};
|
|
105717
105767
|
export declare type QueryAgentStudio_JobRunsArgs = {
|
|
105718
105768
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
105719
105769
|
cloudId: Scalars['String']['input'];
|