@forge/cli-shared 3.23.3-next.0 → 3.23.3-next.1
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
|
@@ -26065,7 +26065,33 @@ export declare type JiraClassificationLevel = {
|
|
|
26065
26065
|
guidelines?: Maybe<Scalars['String']['output']>;
|
|
26066
26066
|
id: Scalars['ID']['output'];
|
|
26067
26067
|
name?: Maybe<Scalars['String']['output']>;
|
|
26068
|
+
status?: Maybe<JiraClassificationLevelStatus>;
|
|
26068
26069
|
};
|
|
26070
|
+
export declare type JiraClassificationLevelConnection = {
|
|
26071
|
+
__typename?: 'JiraClassificationLevelConnection';
|
|
26072
|
+
edges?: Maybe<Array<Maybe<JiraClassificationLevelEdge>>>;
|
|
26073
|
+
errors?: Maybe<Array<QueryError>>;
|
|
26074
|
+
pageInfo?: Maybe<PageInfo>;
|
|
26075
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
26076
|
+
};
|
|
26077
|
+
export declare type JiraClassificationLevelEdge = {
|
|
26078
|
+
__typename?: 'JiraClassificationLevelEdge';
|
|
26079
|
+
cursor: Scalars['String']['output'];
|
|
26080
|
+
node?: Maybe<JiraClassificationLevel>;
|
|
26081
|
+
};
|
|
26082
|
+
export declare type JiraClassificationLevelFilterInput = {
|
|
26083
|
+
filterByStatus: Array<JiraClassificationLevelStatus>;
|
|
26084
|
+
filterByType: Array<JiraClassificationLevelType>;
|
|
26085
|
+
};
|
|
26086
|
+
export declare enum JiraClassificationLevelStatus {
|
|
26087
|
+
Archived = "ARCHIVED",
|
|
26088
|
+
Draft = "DRAFT",
|
|
26089
|
+
Published = "PUBLISHED"
|
|
26090
|
+
}
|
|
26091
|
+
export declare enum JiraClassificationLevelType {
|
|
26092
|
+
System = "SYSTEM",
|
|
26093
|
+
User = "USER"
|
|
26094
|
+
}
|
|
26069
26095
|
export declare type JiraClearableNumberFieldInput = {
|
|
26070
26096
|
fieldId: Scalars['ID']['input'];
|
|
26071
26097
|
value?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -26653,12 +26679,23 @@ export declare type JiraDataClassificationField = JiraIssueField & Node & {
|
|
|
26653
26679
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
26654
26680
|
classification?: Maybe<JiraDataClassification>;
|
|
26655
26681
|
classificationLevel?: Maybe<JiraClassificationLevel>;
|
|
26682
|
+
classificationLevels?: Maybe<JiraClassificationLevelConnection>;
|
|
26683
|
+
defaultClassificationLevel?: Maybe<JiraClassificationLevel>;
|
|
26656
26684
|
description?: Maybe<Scalars['String']['output']>;
|
|
26657
26685
|
fieldId: Scalars['String']['output'];
|
|
26658
26686
|
id: Scalars['ID']['output'];
|
|
26659
26687
|
name: Scalars['String']['output'];
|
|
26660
26688
|
type: Scalars['String']['output'];
|
|
26661
26689
|
};
|
|
26690
|
+
export declare type JiraDataClassificationFieldClassificationLevelsArgs = {
|
|
26691
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
26692
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
26693
|
+
filterByCriteria?: InputMaybe<JiraClassificationLevelFilterInput>;
|
|
26694
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26695
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
26696
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
26697
|
+
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26698
|
+
};
|
|
26662
26699
|
export declare type JiraDataClassificationFieldOperationInput = {
|
|
26663
26700
|
classificationLevel: Scalars['ID']['input'];
|
|
26664
26701
|
operation: JiraSingleValueFieldOperations;
|
|
@@ -28500,6 +28537,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
28500
28537
|
JiraSingleLineTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
28501
28538
|
JiraSingleSelectField?: InputMaybe<Array<JiraUpdateSingleSelectFieldInput>>;
|
|
28502
28539
|
JiraSingleSelectUserPickerField?: InputMaybe<Array<JiraUpdateSingleSelectUserPickerFieldInput>>;
|
|
28540
|
+
JiraSprintField?: InputMaybe<Array<JiraUpdateSprintFieldInput>>;
|
|
28503
28541
|
JiraTeamField?: InputMaybe<Array<JiraUpdateTeamFieldInput>>;
|
|
28504
28542
|
JiraUrlField?: InputMaybe<Array<JiraUpdateUrlFieldInput>>;
|
|
28505
28543
|
};
|
|
@@ -40950,6 +40988,7 @@ export declare type ShepherdActivityHighlightInput = {
|
|
|
40950
40988
|
actorSessionInfo?: InputMaybe<ShepherdActorSessionInfoInput>;
|
|
40951
40989
|
eventIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
40952
40990
|
histogram?: InputMaybe<Array<InputMaybe<ShepherdHistogramBucketInput>>>;
|
|
40991
|
+
resourceEvents?: InputMaybe<Array<ShepherdResourceEventInput>>;
|
|
40953
40992
|
subject?: InputMaybe<ShepherdSubjectInput>;
|
|
40954
40993
|
time: ShepherdTimeInput;
|
|
40955
40994
|
};
|
|
@@ -40975,6 +41014,7 @@ export declare type ShepherdActorOrgInfoArgs = {
|
|
|
40975
41014
|
export declare type ShepherdActorActivity = {
|
|
40976
41015
|
__typename?: 'ShepherdActorActivity';
|
|
40977
41016
|
actor: ShepherdActor;
|
|
41017
|
+
context: Array<ShepherdAuditLogContext>;
|
|
40978
41018
|
eventType: Scalars['String']['output'];
|
|
40979
41019
|
id: Scalars['String']['output'];
|
|
40980
41020
|
message?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -41177,6 +41217,16 @@ export declare enum ShepherdAtlassianProduct {
|
|
|
41177
41217
|
JiraSoftware = "JIRA_SOFTWARE",
|
|
41178
41218
|
Marketplace = "MARKETPLACE"
|
|
41179
41219
|
}
|
|
41220
|
+
export declare type ShepherdAuditLogAttribute = {
|
|
41221
|
+
__typename?: 'ShepherdAuditLogAttribute';
|
|
41222
|
+
name: Scalars['String']['output'];
|
|
41223
|
+
value: Scalars['String']['output'];
|
|
41224
|
+
};
|
|
41225
|
+
export declare type ShepherdAuditLogContext = {
|
|
41226
|
+
__typename?: 'ShepherdAuditLogContext';
|
|
41227
|
+
attributes: Array<ShepherdAuditLogAttribute>;
|
|
41228
|
+
id: Scalars['String']['output'];
|
|
41229
|
+
};
|
|
41180
41230
|
export declare type ShepherdCategorizedAlertMetadata = {
|
|
41181
41231
|
__typename?: 'ShepherdCategorizedAlertMetadata';
|
|
41182
41232
|
category: Scalars['String']['output'];
|
|
@@ -41490,6 +41540,7 @@ export declare type ShepherdResourceActivity = {
|
|
|
41490
41540
|
__typename?: 'ShepherdResourceActivity';
|
|
41491
41541
|
action: ShepherdActionType;
|
|
41492
41542
|
actor: ShepherdActor;
|
|
41543
|
+
context: Array<ShepherdAuditLogContext>;
|
|
41493
41544
|
id: Scalars['String']['output'];
|
|
41494
41545
|
resourceAri: Scalars['String']['output'];
|
|
41495
41546
|
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -41500,6 +41551,10 @@ export declare type ShepherdResourceEvent = {
|
|
|
41500
41551
|
ari: Scalars['String']['output'];
|
|
41501
41552
|
time: Scalars['DateTime']['output'];
|
|
41502
41553
|
};
|
|
41554
|
+
export declare type ShepherdResourceEventInput = {
|
|
41555
|
+
ari: Scalars['String']['input'];
|
|
41556
|
+
time: Scalars['DateTime']['input'];
|
|
41557
|
+
};
|
|
41503
41558
|
export declare type ShepherdSite = {
|
|
41504
41559
|
__typename?: 'ShepherdSite';
|
|
41505
41560
|
cloudId: Scalars['ID']['output'];
|
|
@@ -44025,6 +44080,7 @@ export declare type TrelloJwmWorkspaceLink = {
|
|
|
44025
44080
|
__typename?: 'TrelloJwmWorkspaceLink';
|
|
44026
44081
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
44027
44082
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
44083
|
+
inaccessible?: Maybe<Scalars['Boolean']['output']>;
|
|
44028
44084
|
};
|
|
44029
44085
|
export declare type TrelloLabel = {
|
|
44030
44086
|
__typename?: 'TrelloLabel';
|
|
@@ -44282,10 +44338,6 @@ export declare type TrelloPowerUpUpdated = {
|
|
|
44282
44338
|
__typename?: 'TrelloPowerUpUpdated';
|
|
44283
44339
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
44284
44340
|
};
|
|
44285
|
-
export declare type TrelloProduct = {
|
|
44286
|
-
__typename?: 'TrelloProduct';
|
|
44287
|
-
sku: Scalars['Int']['output'];
|
|
44288
|
-
};
|
|
44289
44341
|
export declare type TrelloQueryApi = {
|
|
44290
44342
|
__typename?: 'TrelloQueryApi';
|
|
44291
44343
|
board?: Maybe<TrelloBoard>;
|
|
@@ -44518,7 +44570,6 @@ export declare type TrelloWorkspace = Node & {
|
|
|
44518
44570
|
offering?: Maybe<Scalars['String']['output']>;
|
|
44519
44571
|
prefs: TrelloWorkspacePrefs;
|
|
44520
44572
|
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
44521
|
-
products?: Maybe<Array<Maybe<TrelloProduct>>>;
|
|
44522
44573
|
tags?: Maybe<TrelloTagConnection>;
|
|
44523
44574
|
url: Scalars['String']['output'];
|
|
44524
44575
|
website?: Maybe<Scalars['String']['output']>;
|
|
@@ -45457,6 +45508,7 @@ export declare type VirtualAgentIntentStatisticsProjection = {
|
|
|
45457
45508
|
};
|
|
45458
45509
|
export declare type VirtualAgentIntentTemplate = Node & {
|
|
45459
45510
|
__typename?: 'VirtualAgentIntentTemplate';
|
|
45511
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
45460
45512
|
description?: Maybe<Scalars['String']['output']>;
|
|
45461
45513
|
id: Scalars['ID']['output'];
|
|
45462
45514
|
name: Scalars['String']['output'];
|