@forge/cli-shared 3.1.1-next.1 → 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
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.1.1-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [47a47a4]
|
|
8
|
+
- @forge/manifest@4.3.0-next.3
|
|
9
|
+
|
|
10
|
+
## 3.1.1-next.2
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [0871a3b]
|
|
15
|
+
- @forge/manifest@4.3.0-next.2
|
|
16
|
+
|
|
3
17
|
## 3.1.1-next.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -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']>;
|
|
@@ -6183,12 +6204,26 @@ export declare type DevOpsTool = Node & {
|
|
|
6183
6204
|
integration?: Maybe<DevOpsToolIntegration>;
|
|
6184
6205
|
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
6185
6206
|
auth?: Maybe<DevOpsToolAuth>;
|
|
6207
|
+
jiraProjectRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
6186
6208
|
};
|
|
6187
6209
|
export declare type DevOpsToolNamespacesArgs = {
|
|
6188
6210
|
query?: Maybe<Scalars['String']>;
|
|
6189
6211
|
first?: Maybe<Scalars['Int']>;
|
|
6190
6212
|
after?: Maybe<Scalars['String']>;
|
|
6191
6213
|
};
|
|
6214
|
+
export declare type DevOpsToolJiraProjectRelationshipsArgs = {
|
|
6215
|
+
jiraProjectId?: Maybe<Scalars['ID']>;
|
|
6216
|
+
first?: Maybe<Scalars['Int']>;
|
|
6217
|
+
after?: Maybe<Scalars['String']>;
|
|
6218
|
+
filter?: Maybe<JiraProjectAndDevOpsToolRelationshipFilter>;
|
|
6219
|
+
};
|
|
6220
|
+
export declare type DevOpsToolAppLinks = {
|
|
6221
|
+
__typename?: 'DevOpsToolAppLinks';
|
|
6222
|
+
self?: Maybe<Scalars['String']>;
|
|
6223
|
+
manage?: Maybe<Scalars['String']>;
|
|
6224
|
+
configure?: Maybe<Scalars['String']>;
|
|
6225
|
+
getStarted?: Maybe<Scalars['String']>;
|
|
6226
|
+
};
|
|
6192
6227
|
export declare type DevOpsToolAuth = DevOpsToolDefaultAuth | DevOpsToolOAuth;
|
|
6193
6228
|
export declare type DevOpsToolAvatar = {
|
|
6194
6229
|
__typename?: 'DevOpsToolAvatar';
|
|
@@ -6327,6 +6362,7 @@ export declare type DevOpsToolIntegrationApp = {
|
|
|
6327
6362
|
marketplaceType: Scalars['String'];
|
|
6328
6363
|
installed: Scalars['Boolean'];
|
|
6329
6364
|
iconUrl?: Maybe<Scalars['String']>;
|
|
6365
|
+
links?: Maybe<DevOpsToolAppLinks>;
|
|
6330
6366
|
};
|
|
6331
6367
|
export declare type DevOpsToolIntegrationProduct = {
|
|
6332
6368
|
__typename?: 'DevOpsToolIntegrationProduct';
|
|
@@ -6429,6 +6465,7 @@ export declare type DevOpsToolsToolsArgs = {
|
|
|
6429
6465
|
first?: Maybe<Scalars['Int']>;
|
|
6430
6466
|
after?: Maybe<Scalars['String']>;
|
|
6431
6467
|
recommended?: Maybe<Scalars['Boolean']>;
|
|
6468
|
+
search?: Maybe<Scalars['String']>;
|
|
6432
6469
|
groupId?: Maybe<Scalars['String']>;
|
|
6433
6470
|
categoryId?: Maybe<Scalars['String']>;
|
|
6434
6471
|
supportsContainers?: Maybe<Scalars['Boolean']>;
|
|
@@ -13367,6 +13404,7 @@ export declare type MarketplaceApp = {
|
|
|
13367
13404
|
programs?: Maybe<MarketplaceAppPrograms>;
|
|
13368
13405
|
marketingLabels: Array<Scalars['String']>;
|
|
13369
13406
|
googleAnalyticsId?: Maybe<Scalars['String']>;
|
|
13407
|
+
googleAnalytics4Id?: Maybe<Scalars['String']>;
|
|
13370
13408
|
segmentWriteKey?: Maybe<Scalars['String']>;
|
|
13371
13409
|
categories: Array<MarketplaceAppCategory>;
|
|
13372
13410
|
jsdWidgetKey?: Maybe<Scalars['String']>;
|
|
@@ -14557,6 +14595,7 @@ export declare type OpsgenieQuery = {
|
|
|
14557
14595
|
__typename?: 'OpsgenieQuery';
|
|
14558
14596
|
opsgenieTeam?: Maybe<OpsgenieTeam>;
|
|
14559
14597
|
opsgenieTeams?: Maybe<Array<Maybe<OpsgenieTeam>>>;
|
|
14598
|
+
opsgenieSchedule?: Maybe<OpsgenieSchedule>;
|
|
14560
14599
|
allOpsgenieTeams?: Maybe<OpsgenieTeamConnection>;
|
|
14561
14600
|
myOpsgenieSchedules?: Maybe<Array<Maybe<OpsgenieSchedule>>>;
|
|
14562
14601
|
opsgenieTeamsWithServiceModificationPermissions?: Maybe<OpsgenieTeamConnection>;
|
|
@@ -14567,6 +14606,9 @@ export declare type OpsgenieQueryOpsgenieTeamArgs = {
|
|
|
14567
14606
|
export declare type OpsgenieQueryOpsgenieTeamsArgs = {
|
|
14568
14607
|
ids: Array<Scalars['ID']>;
|
|
14569
14608
|
};
|
|
14609
|
+
export declare type OpsgenieQueryOpsgenieScheduleArgs = {
|
|
14610
|
+
id: Scalars['ID'];
|
|
14611
|
+
};
|
|
14570
14612
|
export declare type OpsgenieQueryAllOpsgenieTeamsArgs = {
|
|
14571
14613
|
cloudId: Scalars['ID'];
|
|
14572
14614
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -14591,11 +14633,19 @@ export declare type OpsgenieSchedule = {
|
|
|
14591
14633
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
14592
14634
|
timezone?: Maybe<Scalars['String']>;
|
|
14593
14635
|
finalTimeline?: Maybe<OpsgenieScheduleTimeline>;
|
|
14636
|
+
onCallRecipients?: Maybe<Array<Maybe<OpsgenieScheduleOnCallRecipient>>>;
|
|
14594
14637
|
};
|
|
14595
14638
|
export declare type OpsgenieScheduleFinalTimelineArgs = {
|
|
14596
14639
|
startTime: Scalars['DateTime'];
|
|
14597
14640
|
endTime: Scalars['DateTime'];
|
|
14598
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
|
+
};
|
|
14599
14649
|
export declare type OpsgenieSchedulePeriod = {
|
|
14600
14650
|
__typename?: 'OpsgenieSchedulePeriod';
|
|
14601
14651
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
@@ -15867,6 +15917,7 @@ export declare type QueryReleaseNotesArgs = {
|
|
|
15867
15917
|
after?: Maybe<Scalars['String']>;
|
|
15868
15918
|
first?: Maybe<Scalars['Int']>;
|
|
15869
15919
|
filter?: Maybe<ContentPlatformReleaseNoteFilterOptions>;
|
|
15920
|
+
filterByAnnouncementPlan?: Maybe<Scalars['Boolean']>;
|
|
15870
15921
|
productFeatureFlags?: Maybe<Scalars['JSON']>;
|
|
15871
15922
|
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
15872
15923
|
orderBy?: Maybe<Scalars['String']>;
|
|
@@ -17492,17 +17543,18 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
17492
17543
|
AdminPasswordReset = "ADMIN_PASSWORD_RESET",
|
|
17493
17544
|
ConfluencePageCrawling = "CONFLUENCE_PAGE_CRAWLING",
|
|
17494
17545
|
CreatedAuthPolicy = "CREATED_AUTH_POLICY",
|
|
17546
|
+
CreatedPolicy = "CREATED_POLICY",
|
|
17495
17547
|
CreatedSamlConfig = "CREATED_SAML_CONFIG",
|
|
17548
|
+
CreatedTunnel = "CREATED_TUNNEL",
|
|
17496
17549
|
Default = "DEFAULT",
|
|
17497
17550
|
DeletedAuthPolicy = "DELETED_AUTH_POLICY",
|
|
17551
|
+
DeletedPolicy = "DELETED_POLICY",
|
|
17552
|
+
DeletedTunnel = "DELETED_TUNNEL",
|
|
17498
17553
|
EnableScimSync = "ENABLE_SCIM_SYNC",
|
|
17499
17554
|
InitiatedGsyncConnection = "INITIATED_GSYNC_CONNECTION",
|
|
17500
|
-
IpAllowlistPolicyCreated = "IP_ALLOWLIST_POLICY_CREATED",
|
|
17501
|
-
IpAllowlistPolicyDeleted = "IP_ALLOWLIST_POLICY_DELETED",
|
|
17502
|
-
IpAllowlistPolicyDisabled = "IP_ALLOWLIST_POLICY_DISABLED",
|
|
17503
|
-
IpAllowlistPolicyUpdated = "IP_ALLOWLIST_POLICY_UPDATED",
|
|
17504
17555
|
TokenCreated = "TOKEN_CREATED",
|
|
17505
17556
|
UpdatedAuthPolicy = "UPDATED_AUTH_POLICY",
|
|
17557
|
+
UpdatedPolicy = "UPDATED_POLICY",
|
|
17506
17558
|
UpdatedSamlConfig = "UPDATED_SAML_CONFIG",
|
|
17507
17559
|
UserGrantedRole = "USER_GRANTED_ROLE",
|
|
17508
17560
|
UserRevokedRole = "USER_REVOKED_ROLE"
|
|
@@ -18645,6 +18697,8 @@ export declare type TownsquareGoal = Node & {
|
|
|
18645
18697
|
uuid: Scalars['String'];
|
|
18646
18698
|
owner?: Maybe<User>;
|
|
18647
18699
|
url?: Maybe<Scalars['String']>;
|
|
18700
|
+
dueDate?: Maybe<TownsquareTargetDate>;
|
|
18701
|
+
state?: Maybe<TownsquareGoalState>;
|
|
18648
18702
|
};
|
|
18649
18703
|
export declare type TownsquareGoalConnection = {
|
|
18650
18704
|
__typename?: 'TownsquareGoalConnection';
|
|
@@ -18680,6 +18734,21 @@ export declare enum TownsquareGoalSortEnum {
|
|
|
18680
18734
|
WatchingAsc = "WATCHING_ASC",
|
|
18681
18735
|
WatchingDesc = "WATCHING_DESC"
|
|
18682
18736
|
}
|
|
18737
|
+
export declare type TownsquareGoalState = {
|
|
18738
|
+
__typename?: 'TownsquareGoalState';
|
|
18739
|
+
label?: Maybe<Scalars['String']>;
|
|
18740
|
+
score?: Maybe<Scalars['Float']>;
|
|
18741
|
+
value?: Maybe<TownsquareGoalStateValue>;
|
|
18742
|
+
};
|
|
18743
|
+
export declare enum TownsquareGoalStateValue {
|
|
18744
|
+
Archived = "archived",
|
|
18745
|
+
AtRisk = "at_risk",
|
|
18746
|
+
Done = "done",
|
|
18747
|
+
OffTrack = "off_track",
|
|
18748
|
+
OnTrack = "on_track",
|
|
18749
|
+
Paused = "paused",
|
|
18750
|
+
Pending = "pending"
|
|
18751
|
+
}
|
|
18683
18752
|
export declare type TownsquareHelpPointer = Node & {
|
|
18684
18753
|
__typename?: 'TownsquareHelpPointer';
|
|
18685
18754
|
cloudId?: Maybe<Scalars['String']>;
|
|
@@ -18737,6 +18806,7 @@ export declare type TownsquareProject = Node & {
|
|
|
18737
18806
|
uuid: Scalars['String'];
|
|
18738
18807
|
owner?: Maybe<User>;
|
|
18739
18808
|
url?: Maybe<Scalars['String']>;
|
|
18809
|
+
dueDate?: Maybe<TownsquareTargetDate>;
|
|
18740
18810
|
state?: Maybe<TownsquareProjectState>;
|
|
18741
18811
|
};
|
|
18742
18812
|
export declare type TownsquareProjectConnection = {
|
|
@@ -18784,7 +18854,9 @@ export declare enum TownsquareProjectStateValue {
|
|
|
18784
18854
|
export declare type TownsquareQueryApi = {
|
|
18785
18855
|
__typename?: 'TownsquareQueryApi';
|
|
18786
18856
|
projectsByAri?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
18857
|
+
projectByKey?: Maybe<TownsquareProject>;
|
|
18787
18858
|
goalsByAri?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
18859
|
+
goalByKey?: Maybe<TownsquareGoal>;
|
|
18788
18860
|
commentsByAri?: Maybe<Array<Maybe<TownsquareComment>>>;
|
|
18789
18861
|
projectSearch?: Maybe<TownsquareProjectConnection>;
|
|
18790
18862
|
goalSearch?: Maybe<TownsquareGoalConnection>;
|
|
@@ -18795,9 +18867,15 @@ export declare type TownsquareQueryApi = {
|
|
|
18795
18867
|
export declare type TownsquareQueryApiProjectsByAriArgs = {
|
|
18796
18868
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
18797
18869
|
};
|
|
18870
|
+
export declare type TownsquareQueryApiProjectByKeyArgs = {
|
|
18871
|
+
key: Scalars['String'];
|
|
18872
|
+
};
|
|
18798
18873
|
export declare type TownsquareQueryApiGoalsByAriArgs = {
|
|
18799
18874
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
18800
18875
|
};
|
|
18876
|
+
export declare type TownsquareQueryApiGoalByKeyArgs = {
|
|
18877
|
+
key: Scalars['String'];
|
|
18878
|
+
};
|
|
18801
18879
|
export declare type TownsquareQueryApiCommentsByAriArgs = {
|
|
18802
18880
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
18803
18881
|
};
|
|
@@ -18849,6 +18927,22 @@ export declare type TownsquareTagEdge = {
|
|
|
18849
18927
|
cursor: Scalars['String'];
|
|
18850
18928
|
node?: Maybe<TownsquareTag>;
|
|
18851
18929
|
};
|
|
18930
|
+
export declare type TownsquareTargetDate = {
|
|
18931
|
+
__typename?: 'TownsquareTargetDate';
|
|
18932
|
+
confidence?: Maybe<TownsquareTargetDateType>;
|
|
18933
|
+
dateRange?: Maybe<TownsquareTargetDateRange>;
|
|
18934
|
+
label?: Maybe<Scalars['String']>;
|
|
18935
|
+
};
|
|
18936
|
+
export declare type TownsquareTargetDateRange = {
|
|
18937
|
+
__typename?: 'TownsquareTargetDateRange';
|
|
18938
|
+
end?: Maybe<Scalars['DateTime']>;
|
|
18939
|
+
start?: Maybe<Scalars['DateTime']>;
|
|
18940
|
+
};
|
|
18941
|
+
export declare enum TownsquareTargetDateType {
|
|
18942
|
+
Day = "DAY",
|
|
18943
|
+
Month = "MONTH",
|
|
18944
|
+
Quarter = "QUARTER"
|
|
18945
|
+
}
|
|
18852
18946
|
export declare type TownsquareTeam = Node & {
|
|
18853
18947
|
__typename?: 'TownsquareTeam';
|
|
18854
18948
|
avatarUrl?: Maybe<Scalars['String']>;
|
|
@@ -19464,11 +19558,15 @@ export declare type VirtualAgentConfiguration = Node & {
|
|
|
19464
19558
|
id: Scalars['ID'];
|
|
19465
19559
|
respondToQueries: Scalars['Boolean'];
|
|
19466
19560
|
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
19561
|
+
intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjectionResult>;
|
|
19467
19562
|
};
|
|
19468
19563
|
export declare type VirtualAgentConfigurationIntentRuleProjectionsArgs = {
|
|
19469
19564
|
first?: Maybe<Scalars['Int']>;
|
|
19470
19565
|
after?: Maybe<Scalars['String']>;
|
|
19471
19566
|
};
|
|
19567
|
+
export declare type VirtualAgentConfigurationIntentRuleProjectionArgs = {
|
|
19568
|
+
intentId: Scalars['String'];
|
|
19569
|
+
};
|
|
19472
19570
|
export declare type VirtualAgentConfigurationResult = VirtualAgentConfiguration | VirtualAgentQueryError;
|
|
19473
19571
|
export declare type VirtualAgentIntentProjection = Node & {
|
|
19474
19572
|
__typename?: 'VirtualAgentIntentProjection';
|
|
@@ -19508,6 +19606,7 @@ export declare type VirtualAgentIntentRuleProjectionEdge = {
|
|
|
19508
19606
|
cursor: Scalars['String'];
|
|
19509
19607
|
node?: Maybe<VirtualAgentIntentRuleProjection>;
|
|
19510
19608
|
};
|
|
19609
|
+
export declare type VirtualAgentIntentRuleProjectionResult = VirtualAgentIntentRuleProjection | VirtualAgentQueryError;
|
|
19511
19610
|
export declare type VirtualAgentIntentRuleProjectionsConnection = {
|
|
19512
19611
|
__typename?: 'VirtualAgentIntentRuleProjectionsConnection';
|
|
19513
19612
|
edges?: Maybe<Array<VirtualAgentIntentRuleProjectionEdge>>;
|