@forge/cli-shared 3.1.1-next.2 → 3.1.1-next.3
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
|
@@ -895,6 +895,8 @@ export declare type AriGraphCreateRelationshipsInputRelationship = {
|
|
|
895
895
|
from: Scalars['ID'];
|
|
896
896
|
to: Scalars['ID'];
|
|
897
897
|
type: Scalars['ID'];
|
|
898
|
+
sequenceNumber?: Maybe<Scalars['Long']>;
|
|
899
|
+
updatedAt?: Maybe<Scalars['DateTime']>;
|
|
898
900
|
};
|
|
899
901
|
export declare type AriGraphCreateRelationshipsPayload = Payload & {
|
|
900
902
|
__typename?: 'AriGraphCreateRelationshipsPayload';
|
|
@@ -914,11 +916,15 @@ export declare type AriGraphDeleteRelationshipsPayload = Payload & {
|
|
|
914
916
|
export declare type AriGraphMutation = {
|
|
915
917
|
__typename?: 'AriGraphMutation';
|
|
916
918
|
createRelationships?: Maybe<AriGraphCreateRelationshipsPayload>;
|
|
919
|
+
replaceRelationships?: Maybe<AriGraphReplaceRelationshipsPayload>;
|
|
917
920
|
deleteRelationships?: Maybe<AriGraphDeleteRelationshipsPayload>;
|
|
918
921
|
};
|
|
919
922
|
export declare type AriGraphMutationCreateRelationshipsArgs = {
|
|
920
923
|
input: AriGraphCreateRelationshipsInput;
|
|
921
924
|
};
|
|
925
|
+
export declare type AriGraphMutationReplaceRelationshipsArgs = {
|
|
926
|
+
input: AriGraphReplaceRelationshipsInput;
|
|
927
|
+
};
|
|
922
928
|
export declare type AriGraphMutationDeleteRelationshipsArgs = {
|
|
923
929
|
input: AriGraphDeleteRelationshipsInput;
|
|
924
930
|
};
|
|
@@ -972,6 +978,21 @@ export declare enum AriGraphRelationshipsSortDirection {
|
|
|
972
978
|
Asc = "ASC",
|
|
973
979
|
Desc = "DESC"
|
|
974
980
|
}
|
|
981
|
+
export declare type AriGraphReplaceRelationshipsInput = {
|
|
982
|
+
type: Scalars['ID'];
|
|
983
|
+
sequenceNumber?: Maybe<Scalars['Long']>;
|
|
984
|
+
updatedAt?: Maybe<Scalars['DateTime']>;
|
|
985
|
+
relationships: Array<AriGraphReplaceRelationshipsInputRelationship>;
|
|
986
|
+
};
|
|
987
|
+
export declare type AriGraphReplaceRelationshipsInputRelationship = {
|
|
988
|
+
from: Scalars['ID'];
|
|
989
|
+
to: Scalars['ID'];
|
|
990
|
+
};
|
|
991
|
+
export declare type AriGraphReplaceRelationshipsPayload = Payload & {
|
|
992
|
+
__typename?: 'AriGraphReplaceRelationshipsPayload';
|
|
993
|
+
success: Scalars['Boolean'];
|
|
994
|
+
errors?: Maybe<Array<MutationError>>;
|
|
995
|
+
};
|
|
975
996
|
export declare type ArjConfiguration = {
|
|
976
997
|
__typename?: 'ArjConfiguration';
|
|
977
998
|
parentCustomFieldId?: Maybe<Scalars['String']>;
|
|
@@ -6444,6 +6465,7 @@ export declare type DevOpsToolsToolsArgs = {
|
|
|
6444
6465
|
first?: Maybe<Scalars['Int']>;
|
|
6445
6466
|
after?: Maybe<Scalars['String']>;
|
|
6446
6467
|
recommended?: Maybe<Scalars['Boolean']>;
|
|
6468
|
+
search?: Maybe<Scalars['String']>;
|
|
6447
6469
|
groupId?: Maybe<Scalars['String']>;
|
|
6448
6470
|
categoryId?: Maybe<Scalars['String']>;
|
|
6449
6471
|
supportsContainers?: Maybe<Scalars['Boolean']>;
|
|
@@ -14573,6 +14595,7 @@ export declare type OpsgenieQuery = {
|
|
|
14573
14595
|
__typename?: 'OpsgenieQuery';
|
|
14574
14596
|
opsgenieTeam?: Maybe<OpsgenieTeam>;
|
|
14575
14597
|
opsgenieTeams?: Maybe<Array<Maybe<OpsgenieTeam>>>;
|
|
14598
|
+
opsgenieSchedule?: Maybe<OpsgenieSchedule>;
|
|
14576
14599
|
allOpsgenieTeams?: Maybe<OpsgenieTeamConnection>;
|
|
14577
14600
|
myOpsgenieSchedules?: Maybe<Array<Maybe<OpsgenieSchedule>>>;
|
|
14578
14601
|
opsgenieTeamsWithServiceModificationPermissions?: Maybe<OpsgenieTeamConnection>;
|
|
@@ -14583,6 +14606,9 @@ export declare type OpsgenieQueryOpsgenieTeamArgs = {
|
|
|
14583
14606
|
export declare type OpsgenieQueryOpsgenieTeamsArgs = {
|
|
14584
14607
|
ids: Array<Scalars['ID']>;
|
|
14585
14608
|
};
|
|
14609
|
+
export declare type OpsgenieQueryOpsgenieScheduleArgs = {
|
|
14610
|
+
id: Scalars['ID'];
|
|
14611
|
+
};
|
|
14586
14612
|
export declare type OpsgenieQueryAllOpsgenieTeamsArgs = {
|
|
14587
14613
|
cloudId: Scalars['ID'];
|
|
14588
14614
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -14607,11 +14633,19 @@ export declare type OpsgenieSchedule = {
|
|
|
14607
14633
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
14608
14634
|
timezone?: Maybe<Scalars['String']>;
|
|
14609
14635
|
finalTimeline?: Maybe<OpsgenieScheduleTimeline>;
|
|
14636
|
+
onCallRecipients?: Maybe<Array<Maybe<OpsgenieScheduleOnCallRecipient>>>;
|
|
14610
14637
|
};
|
|
14611
14638
|
export declare type OpsgenieScheduleFinalTimelineArgs = {
|
|
14612
14639
|
startTime: Scalars['DateTime'];
|
|
14613
14640
|
endTime: Scalars['DateTime'];
|
|
14614
14641
|
};
|
|
14642
|
+
export declare type OpsgenieScheduleOnCallRecipient = {
|
|
14643
|
+
__typename?: 'OpsgenieScheduleOnCallRecipient';
|
|
14644
|
+
id?: Maybe<Scalars['ID']>;
|
|
14645
|
+
type?: Maybe<Scalars['String']>;
|
|
14646
|
+
name?: Maybe<Scalars['String']>;
|
|
14647
|
+
accountId?: Maybe<Scalars['ID']>;
|
|
14648
|
+
};
|
|
14615
14649
|
export declare type OpsgenieSchedulePeriod = {
|
|
14616
14650
|
__typename?: 'OpsgenieSchedulePeriod';
|
|
14617
14651
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
@@ -17509,17 +17543,18 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
17509
17543
|
AdminPasswordReset = "ADMIN_PASSWORD_RESET",
|
|
17510
17544
|
ConfluencePageCrawling = "CONFLUENCE_PAGE_CRAWLING",
|
|
17511
17545
|
CreatedAuthPolicy = "CREATED_AUTH_POLICY",
|
|
17546
|
+
CreatedPolicy = "CREATED_POLICY",
|
|
17512
17547
|
CreatedSamlConfig = "CREATED_SAML_CONFIG",
|
|
17548
|
+
CreatedTunnel = "CREATED_TUNNEL",
|
|
17513
17549
|
Default = "DEFAULT",
|
|
17514
17550
|
DeletedAuthPolicy = "DELETED_AUTH_POLICY",
|
|
17551
|
+
DeletedPolicy = "DELETED_POLICY",
|
|
17552
|
+
DeletedTunnel = "DELETED_TUNNEL",
|
|
17515
17553
|
EnableScimSync = "ENABLE_SCIM_SYNC",
|
|
17516
17554
|
InitiatedGsyncConnection = "INITIATED_GSYNC_CONNECTION",
|
|
17517
|
-
IpAllowlistPolicyCreated = "IP_ALLOWLIST_POLICY_CREATED",
|
|
17518
|
-
IpAllowlistPolicyDeleted = "IP_ALLOWLIST_POLICY_DELETED",
|
|
17519
|
-
IpAllowlistPolicyDisabled = "IP_ALLOWLIST_POLICY_DISABLED",
|
|
17520
|
-
IpAllowlistPolicyUpdated = "IP_ALLOWLIST_POLICY_UPDATED",
|
|
17521
17555
|
TokenCreated = "TOKEN_CREATED",
|
|
17522
17556
|
UpdatedAuthPolicy = "UPDATED_AUTH_POLICY",
|
|
17557
|
+
UpdatedPolicy = "UPDATED_POLICY",
|
|
17523
17558
|
UpdatedSamlConfig = "UPDATED_SAML_CONFIG",
|
|
17524
17559
|
UserGrantedRole = "USER_GRANTED_ROLE",
|
|
17525
17560
|
UserRevokedRole = "USER_REVOKED_ROLE"
|
|
@@ -19523,11 +19558,15 @@ export declare type VirtualAgentConfiguration = Node & {
|
|
|
19523
19558
|
id: Scalars['ID'];
|
|
19524
19559
|
respondToQueries: Scalars['Boolean'];
|
|
19525
19560
|
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
19561
|
+
intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjectionResult>;
|
|
19526
19562
|
};
|
|
19527
19563
|
export declare type VirtualAgentConfigurationIntentRuleProjectionsArgs = {
|
|
19528
19564
|
first?: Maybe<Scalars['Int']>;
|
|
19529
19565
|
after?: Maybe<Scalars['String']>;
|
|
19530
19566
|
};
|
|
19567
|
+
export declare type VirtualAgentConfigurationIntentRuleProjectionArgs = {
|
|
19568
|
+
intentId: Scalars['String'];
|
|
19569
|
+
};
|
|
19531
19570
|
export declare type VirtualAgentConfigurationResult = VirtualAgentConfiguration | VirtualAgentQueryError;
|
|
19532
19571
|
export declare type VirtualAgentIntentProjection = Node & {
|
|
19533
19572
|
__typename?: 'VirtualAgentIntentProjection';
|
|
@@ -19567,6 +19606,7 @@ export declare type VirtualAgentIntentRuleProjectionEdge = {
|
|
|
19567
19606
|
cursor: Scalars['String'];
|
|
19568
19607
|
node?: Maybe<VirtualAgentIntentRuleProjection>;
|
|
19569
19608
|
};
|
|
19609
|
+
export declare type VirtualAgentIntentRuleProjectionResult = VirtualAgentIntentRuleProjection | VirtualAgentQueryError;
|
|
19570
19610
|
export declare type VirtualAgentIntentRuleProjectionsConnection = {
|
|
19571
19611
|
__typename?: 'VirtualAgentIntentRuleProjectionsConnection';
|
|
19572
19612
|
edges?: Maybe<Array<VirtualAgentIntentRuleProjectionEdge>>;
|