@forge/cli-shared 3.19.0-next.5 → 3.19.0-next.7

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.19.0-next.7
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [b6d6adbe]
8
+ - @forge/manifest@4.20.1-next.3
9
+
10
+ ## 3.19.0-next.6
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [c02dfc6e]
15
+ - @forge/manifest@4.20.1-next.2
16
+
3
17
  ## 3.19.0-next.5
4
18
 
5
19
  ### Minor Changes
@@ -1072,6 +1072,31 @@ export type AppLogLines = {
1072
1072
  nodes?: Maybe<Array<Maybe<AppLogLine>>>;
1073
1073
  pageInfo: PageInfo;
1074
1074
  };
1075
+ export type AppLogsWithMetaData = {
1076
+ __typename?: 'AppLogsWithMetaData';
1077
+ invocationId: Scalars['String'];
1078
+ appId: Scalars['String'];
1079
+ environmentId: Scalars['String'];
1080
+ appVersion: Scalars['String'];
1081
+ installationContext: Scalars['String'];
1082
+ ts: Scalars['String'];
1083
+ message?: Maybe<Scalars['String']>;
1084
+ lvl?: Maybe<Scalars['String']>;
1085
+ functionKey?: Maybe<Scalars['String']>;
1086
+ cloudwatchId?: Maybe<Scalars['String']>;
1087
+ moduleKey?: Maybe<Scalars['String']>;
1088
+ moduleType?: Maybe<Scalars['String']>;
1089
+ other?: Maybe<Scalars['String']>;
1090
+ traceId?: Maybe<Scalars['String']>;
1091
+ p?: Maybe<Scalars['String']>;
1092
+ error?: Maybe<Scalars['String']>;
1093
+ };
1094
+ export type AppLogsWithMetaDataResponse = {
1095
+ __typename?: 'AppLogsWithMetaDataResponse';
1096
+ appLogs: Array<AppLogsWithMetaData>;
1097
+ hasNextPage: Scalars['Boolean'];
1098
+ totalLogs: Scalars['Int'];
1099
+ };
1075
1100
  export type AppNetworkEgressPermission = {
1076
1101
  __typename?: 'AppNetworkEgressPermission';
1077
1102
  type?: Maybe<AppNetworkPermissionType>;
@@ -5943,11 +5968,16 @@ export type ConnectAppScope = {
5943
5968
  export type ConnectedDataQuery = {
5944
5969
  __typename?: 'ConnectedDataQuery';
5945
5970
  services?: Maybe<DevOpsService>;
5971
+ incidentWithId?: Maybe<JsmIncident>;
5946
5972
  };
5947
5973
  export type ConnectedDataQueryServicesArgs = {
5948
5974
  id: Scalars['ID'];
5949
5975
  cloudId: Scalars['ID'];
5950
5976
  };
5977
+ export type ConnectedDataQueryIncidentWithIdArgs = {
5978
+ id: Scalars['ID'];
5979
+ cloudId: Scalars['ID'];
5980
+ };
5951
5981
  export type ContainerEventObject = {
5952
5982
  __typename?: 'ContainerEventObject';
5953
5983
  id: Scalars['ID'];
@@ -6217,7 +6247,7 @@ export type ContributorFailed = {
6217
6247
  };
6218
6248
  export type ContributorRolesFailed = {
6219
6249
  __typename?: 'ContributorRolesFailed';
6220
- email: Scalars['String'];
6250
+ accountId: Scalars['ID'];
6221
6251
  failed: Array<FailedRoles>;
6222
6252
  };
6223
6253
  export type CopyPolarisInsightsContainerInput = {
@@ -7034,6 +7064,11 @@ export type CustomerServiceIndividual = Node & {
7034
7064
  name: Scalars['String'];
7035
7065
  attributes: Array<CustomerServiceAttributeValue>;
7036
7066
  organizations: Array<CustomerServiceOrganization>;
7067
+ notes: Array<CustomerServiceNote>;
7068
+ };
7069
+ export type CustomerServiceIndividualNotesArgs = {
7070
+ startAt?: Maybe<Scalars['Int']>;
7071
+ maxResults?: Maybe<Scalars['Int']>;
7037
7072
  };
7038
7073
  export type CustomerServiceIndividualDeletePayload = Payload & {
7039
7074
  __typename?: 'CustomerServiceIndividualDeletePayload';
@@ -7080,6 +7115,9 @@ export type CustomerServiceMutationApi = {
7080
7115
  updateIndividualAttributeConfig?: Maybe<CustomerServiceAttributeConfigMetadataUpdatePayload>;
7081
7116
  updateIndividualAttributeValueByName?: Maybe<CustomerServiceIndividualUpdateAttributeValuePayload>;
7082
7117
  updateIndividualAttributeMultiValueByName?: Maybe<CustomerServiceIndividualUpdateAttributeValuePayload>;
7118
+ createNote?: Maybe<CustomerServiceNoteCreatePayload>;
7119
+ updateNote?: Maybe<CustomerServiceNoteUpdatePayload>;
7120
+ deleteNote?: Maybe<CustomerServiceNoteDeletePayload>;
7083
7121
  };
7084
7122
  export type CustomerServiceMutationApiCreateOrganizationArgs = {
7085
7123
  input: CustomerServiceOrganizationCreateInput;
@@ -7129,11 +7167,81 @@ export type CustomerServiceMutationApiUpdateIndividualAttributeValueByNameArgs =
7129
7167
  export type CustomerServiceMutationApiUpdateIndividualAttributeMultiValueByNameArgs = {
7130
7168
  input: CustomerServiceIndividualUpdateAttributeMultiValueByNameInput;
7131
7169
  };
7170
+ export type CustomerServiceMutationApiCreateNoteArgs = {
7171
+ input?: Maybe<CustomerServiceNoteCreateInput>;
7172
+ };
7173
+ export type CustomerServiceMutationApiUpdateNoteArgs = {
7174
+ input?: Maybe<CustomerServiceNoteUpdateInput>;
7175
+ };
7176
+ export type CustomerServiceMutationApiDeleteNoteArgs = {
7177
+ input?: Maybe<CustomerServiceNoteDeleteInput>;
7178
+ };
7179
+ export type CustomerServiceNote = {
7180
+ __typename?: 'CustomerServiceNote';
7181
+ id: Scalars['ID'];
7182
+ author: CustomerServiceNoteAuthor;
7183
+ created: Scalars['String'];
7184
+ updated: Scalars['String'];
7185
+ body: Scalars['String'];
7186
+ canEdit: Scalars['Boolean'];
7187
+ canDelete: Scalars['Boolean'];
7188
+ };
7189
+ export type CustomerServiceNoteAuthor = {
7190
+ __typename?: 'CustomerServiceNoteAuthor';
7191
+ id: Scalars['ID'];
7192
+ avatarUrl: Scalars['String'];
7193
+ displayName: Scalars['String'];
7194
+ name: Scalars['String'];
7195
+ emailAddress: Scalars['String'];
7196
+ isDeleted: Scalars['Boolean'];
7197
+ };
7198
+ export type CustomerServiceNoteCreateInput = {
7199
+ entityType: CustomerServiceNoteEntity;
7200
+ entityId: Scalars['ID'];
7201
+ body: Scalars['String'];
7202
+ };
7203
+ export type CustomerServiceNoteCreatePayload = Payload & {
7204
+ __typename?: 'CustomerServiceNoteCreatePayload';
7205
+ success: Scalars['Boolean'];
7206
+ errors?: Maybe<Array<MutationError>>;
7207
+ successfullyCreatedNote?: Maybe<CustomerServiceNote>;
7208
+ };
7209
+ export type CustomerServiceNoteDeleteInput = {
7210
+ entityType: CustomerServiceNoteEntity;
7211
+ entityId: Scalars['ID'];
7212
+ noteId: Scalars['ID'];
7213
+ };
7214
+ export type CustomerServiceNoteDeletePayload = Payload & {
7215
+ __typename?: 'CustomerServiceNoteDeletePayload';
7216
+ success: Scalars['Boolean'];
7217
+ errors?: Maybe<Array<MutationError>>;
7218
+ };
7219
+ export declare enum CustomerServiceNoteEntity {
7220
+ Organization = "ORGANIZATION",
7221
+ Customer = "CUSTOMER"
7222
+ }
7223
+ export type CustomerServiceNoteUpdateInput = {
7224
+ entityType: CustomerServiceNoteEntity;
7225
+ entityId: Scalars['ID'];
7226
+ noteId: Scalars['ID'];
7227
+ body: Scalars['String'];
7228
+ };
7229
+ export type CustomerServiceNoteUpdatePayload = Payload & {
7230
+ __typename?: 'CustomerServiceNoteUpdatePayload';
7231
+ success: Scalars['Boolean'];
7232
+ errors?: Maybe<Array<MutationError>>;
7233
+ successfullyUpdatedNote?: Maybe<CustomerServiceNote>;
7234
+ };
7132
7235
  export type CustomerServiceOrganization = Node & {
7133
7236
  __typename?: 'CustomerServiceOrganization';
7134
7237
  id: Scalars['ID'];
7135
7238
  name: Scalars['String'];
7136
7239
  attributes: Array<CustomerServiceAttributeValue>;
7240
+ notes: Array<CustomerServiceNote>;
7241
+ };
7242
+ export type CustomerServiceOrganizationNotesArgs = {
7243
+ startAt?: Maybe<Scalars['Int']>;
7244
+ maxResults?: Maybe<Scalars['Int']>;
7137
7245
  };
7138
7246
  export type CustomerServiceOrganizationCreateInput = {
7139
7247
  id: Scalars['ID'];
@@ -7762,6 +7870,10 @@ export type DevOpsDevInfoProvider = DevOpsDataProvider & {
7762
7870
  appInstallationId?: Maybe<Scalars['ID']>;
7763
7871
  supportedActions?: Maybe<DevOpsSupportedActions>;
7764
7872
  providerType?: Maybe<DevOpsProviderType>;
7873
+ workspaces?: Maybe<ToolchainWorkspaceConnection>;
7874
+ };
7875
+ export type DevOpsDevInfoProviderWorkspacesArgs = {
7876
+ cloudId: Scalars['ID'];
7765
7877
  };
7766
7878
  export type DevOpsDocument = Node & {
7767
7879
  __typename?: 'DevOpsDocument';
@@ -9471,7 +9583,8 @@ export type ForgeAuditLogEdge = {
9471
9583
  export declare enum ForgeAuditLogsActionType {
9472
9584
  ContributorAdded = "CONTRIBUTOR_ADDED",
9473
9585
  ContributorRemoved = "CONTRIBUTOR_REMOVED",
9474
- OwnershipTransferred = "OWNERSHIP_TRANSFERRED"
9586
+ OwnershipTransferred = "OWNERSHIP_TRANSFERRED",
9587
+ ContributorRoleUpdated = "CONTRIBUTOR_ROLE_UPDATED"
9475
9588
  }
9476
9589
  export type ForgeAuditLogsAppContributor = {
9477
9590
  __typename?: 'ForgeAuditLogsAppContributor';
@@ -11000,7 +11113,7 @@ export type HelpCenterHelpDeskPayload = Payload & {
11000
11113
  __typename?: 'HelpCenterHelpDeskPayload';
11001
11114
  success: Scalars['Boolean'];
11002
11115
  errors?: Maybe<Array<MutationError>>;
11003
- helpDeskId: Scalars['ID'];
11116
+ helpDeskId?: Maybe<Scalars['ID']>;
11004
11117
  };
11005
11118
  export type HelpCenterHelpDeskQueryResult = HelpCenterHelpDesk | QueryError;
11006
11119
  export type HelpCenterHelpDeskUpdateInput = {
@@ -11152,7 +11265,8 @@ export type HelpCenterTopicItemInput = {
11152
11265
  export type HelpCenterTopicResult = HelpCenterTopic | QueryError;
11153
11266
  export declare enum HelpCenterType {
11154
11267
  Advanced = "ADVANCED",
11155
- Basic = "BASIC"
11268
+ Basic = "BASIC",
11269
+ Unified = "UNIFIED"
11156
11270
  }
11157
11271
  export type HelpCenterUpdateInput = {
11158
11272
  helpCenterAri: Scalars['String'];
@@ -12308,6 +12422,75 @@ export type IssueDevOpsTestSummary = {
12308
12422
  numberFailed?: Maybe<Scalars['Int']>;
12309
12423
  numberSkipped?: Maybe<Scalars['Int']>;
12310
12424
  };
12425
+ export type JsmAssignee = {
12426
+ __typename?: 'JSMAssignee';
12427
+ id: Scalars['ID'];
12428
+ };
12429
+ export type JsmIncident = {
12430
+ __typename?: 'JSMIncident';
12431
+ id: Scalars['ID'];
12432
+ summary?: Maybe<Scalars['String']>;
12433
+ description?: Maybe<Scalars['String']>;
12434
+ reporter?: Maybe<User>;
12435
+ assignee?: Maybe<User>;
12436
+ priority?: Maybe<JsmPriority>;
12437
+ status?: Maybe<JsmStatus>;
12438
+ participants?: Maybe<Array<Maybe<User>>>;
12439
+ issueLinks?: Maybe<Array<Maybe<JsmIssueLink>>>;
12440
+ majorIncident?: Maybe<JsmMajorIncident>;
12441
+ affectedServices?: Maybe<Array<Maybe<DevOpsService>>>;
12442
+ responders?: Maybe<Array<Maybe<JsmResponder>>>;
12443
+ linkedAlerts?: Maybe<Array<Maybe<JsmLinkedAlerts>>>;
12444
+ };
12445
+ export type JsmIssueKey = {
12446
+ __typename?: 'JSMIssueKey';
12447
+ key?: Maybe<Scalars['String']>;
12448
+ };
12449
+ export type JsmIssueLink = {
12450
+ __typename?: 'JSMIssueLink';
12451
+ type?: Maybe<JsmIssueLinkType>;
12452
+ inwardIssue?: Maybe<JiraIssue>;
12453
+ outwardIssue?: Maybe<JiraIssue>;
12454
+ };
12455
+ export type JsmIssueLinkInwardIssueArgs = {
12456
+ cloudId: Scalars['ID'];
12457
+ };
12458
+ export type JsmIssueLinkOutwardIssueArgs = {
12459
+ cloudId: Scalars['ID'];
12460
+ };
12461
+ export type JsmIssueLinkType = {
12462
+ __typename?: 'JSMIssueLinkType';
12463
+ id: Scalars['ID'];
12464
+ };
12465
+ export type JsmLinkedAlerts = {
12466
+ __typename?: 'JSMLinkedAlerts';
12467
+ id: Scalars['ID'];
12468
+ };
12469
+ export declare enum JsmMajorIncident {
12470
+ MajorIncident = "MAJOR_INCIDENT"
12471
+ }
12472
+ export type JsmPriority = {
12473
+ __typename?: 'JSMPriority';
12474
+ id: Scalars['ID'];
12475
+ name?: Maybe<Scalars['String']>;
12476
+ };
12477
+ export type JsmReporter = {
12478
+ __typename?: 'JSMReporter';
12479
+ id: Scalars['ID'];
12480
+ };
12481
+ export type JsmResponder = AppUser | AtlassianAccountUser | CustomerUser | OpsgenieTeam;
12482
+ export type JsmStatus = {
12483
+ __typename?: 'JSMStatus';
12484
+ id: Scalars['ID'];
12485
+ name?: Maybe<Scalars['String']>;
12486
+ statusCategory?: Maybe<JsmStatusCategory>;
12487
+ };
12488
+ export type JsmStatusCategory = {
12489
+ __typename?: 'JSMStatusCategory';
12490
+ id: Scalars['ID'];
12491
+ key?: Maybe<Scalars['String']>;
12492
+ name?: Maybe<Scalars['String']>;
12493
+ };
12311
12494
  export type JiraAdf = {
12312
12495
  __typename?: 'JiraADF';
12313
12496
  json?: Maybe<Scalars['JSON']>;
@@ -14525,6 +14708,16 @@ export type JiraIssueFieldSetEdge = {
14525
14708
  node?: Maybe<JiraIssueFieldSet>;
14526
14709
  cursor: Scalars['String'];
14527
14710
  };
14711
+ export type JiraIssueFieldUnsupportedErrorExtension = QueryErrorExtension & {
14712
+ __typename?: 'JiraIssueFieldUnsupportedErrorExtension';
14713
+ statusCode?: Maybe<Scalars['Int']>;
14714
+ errorType?: Maybe<Scalars['String']>;
14715
+ fieldId?: Maybe<Scalars['String']>;
14716
+ fieldName?: Maybe<Scalars['String']>;
14717
+ fieldType?: Maybe<Scalars['String']>;
14718
+ isRequiredField?: Maybe<Scalars['Boolean']>;
14719
+ isUserPreferredField?: Maybe<Scalars['Boolean']>;
14720
+ };
14528
14721
  export type JiraIssueFieldsInput = {
14529
14722
  priority?: Maybe<JiraPriorityInput>;
14530
14723
  multiselectComponents?: Maybe<JiraMultiSelectComponentFieldInput>;
@@ -15128,7 +15321,8 @@ export declare enum JiraIssueViewTimestampDisplayMode {
15128
15321
  }
15129
15322
  export declare enum JiraIteration {
15130
15323
  Iteration_1 = "ITERATION_1",
15131
- Iteration_2 = "ITERATION_2"
15324
+ Iteration_2 = "ITERATION_2",
15325
+ IterationDynamic = "ITERATION_DYNAMIC"
15132
15326
  }
15133
15327
  export declare enum JiraJqlBuilderSearchMode {
15134
15328
  Basic = "BASIC",
@@ -24129,6 +24323,7 @@ export type Query = {
24129
24323
  appLogLines?: Maybe<AppLogLineConnection>;
24130
24324
  developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
24131
24325
  installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
24326
+ appLogsWithMetaData?: Maybe<AppLogsWithMetaDataResponse>;
24132
24327
  team?: Maybe<TeamQuery>;
24133
24328
  roadmaps?: Maybe<RoadmapsQuery>;
24134
24329
  jwmOverview?: Maybe<JiraWorkManagementOverviewResult>;
@@ -24501,6 +24696,14 @@ export type QueryDeveloperLogAccessArgs = {
24501
24696
  export type QueryInstallationContextsWithLogAccessArgs = {
24502
24697
  appId: Scalars['ID'];
24503
24698
  };
24699
+ export type QueryAppLogsWithMetaDataArgs = {
24700
+ appId: Scalars['String'];
24701
+ environmentId: Scalars['String'];
24702
+ offset: Scalars['Int'];
24703
+ limit: Scalars['Int'];
24704
+ queryStartTime: Scalars['String'];
24705
+ query?: Maybe<LogQueryInput>;
24706
+ };
24504
24707
  export type QueryJwmOverviewArgs = {
24505
24708
  id: Scalars['ID'];
24506
24709
  };
@@ -28420,6 +28623,7 @@ export type TrelloBoard = Node & {
28420
28623
  __typename?: 'TrelloBoard';
28421
28624
  closed: Scalars['Boolean'];
28422
28625
  creationMethod?: Maybe<Scalars['String']>;
28626
+ creator?: Maybe<TrelloMember>;
28423
28627
  description?: Maybe<TrelloDescription>;
28424
28628
  enterprise?: Maybe<TrelloEnterprise>;
28425
28629
  enterpriseOwned: Scalars['Boolean'];
@@ -28432,10 +28636,12 @@ export type TrelloBoard = Node & {
28432
28636
  members?: Maybe<TrelloBoardMembershipsConnection>;
28433
28637
  name: Scalars['String'];
28434
28638
  objectId: Scalars['ID'];
28639
+ popularLabelNamesByColor?: Maybe<Array<TrelloPopularLabelForColor>>;
28435
28640
  prefs: TrelloBoardPrefs;
28436
28641
  premiumFeatures?: Maybe<Array<Maybe<Scalars['String']>>>;
28437
28642
  shortLink: Scalars['TrelloShortLink'];
28438
28643
  shortUrl?: Maybe<Scalars['URL']>;
28644
+ tags?: Maybe<TrelloTagConnection>;
28439
28645
  url?: Maybe<Scalars['URL']>;
28440
28646
  viewer?: Maybe<TrelloBoardViewer>;
28441
28647
  workspace?: Maybe<TrelloWorkspace>;
@@ -28454,6 +28660,10 @@ export type TrelloBoardMembersArgs = {
28454
28660
  filter?: Maybe<TrelloBoardMembershipFilterInput>;
28455
28661
  first?: Maybe<Scalars['Int']>;
28456
28662
  };
28663
+ export type TrelloBoardTagsArgs = {
28664
+ after?: Maybe<Scalars['String']>;
28665
+ first?: Maybe<Scalars['Int']>;
28666
+ };
28457
28667
  export type TrelloBoardAttachmentsLimits = {
28458
28668
  __typename?: 'TrelloBoardAttachmentsLimits';
28459
28669
  perBoard?: Maybe<TrelloLimitProps>;
@@ -29163,6 +29373,11 @@ export declare enum TrelloPluginDataScope {
29163
29373
  Card = "CARD",
29164
29374
  Organization = "ORGANIZATION"
29165
29375
  }
29376
+ export type TrelloPopularLabelForColor = {
29377
+ __typename?: 'TrelloPopularLabelForColor';
29378
+ color?: Maybe<Scalars['String']>;
29379
+ labelName?: Maybe<Scalars['String']>;
29380
+ };
29166
29381
  export type TrelloQueryApi = {
29167
29382
  __typename?: 'TrelloQueryApi';
29168
29383
  board?: Maybe<TrelloBoard>;
@@ -29377,12 +29592,14 @@ export type TrelloWorkspace = Node & {
29377
29592
  __typename?: 'TrelloWorkspace';
29378
29593
  description: Scalars['String'];
29379
29594
  displayName: Scalars['String'];
29595
+ enterprise?: Maybe<TrelloEnterprise>;
29380
29596
  id: Scalars['ID'];
29381
29597
  logoHash?: Maybe<Scalars['String']>;
29382
29598
  logoUrl?: Maybe<Scalars['String']>;
29383
29599
  members?: Maybe<TrelloWorkspaceMembershipsConnection>;
29384
29600
  name: Scalars['String'];
29385
29601
  objectId: Scalars['ID'];
29602
+ prefs: TrelloWorkspacePrefs;
29386
29603
  tags?: Maybe<TrelloTagConnection>;
29387
29604
  url: Scalars['String'];
29388
29605
  website?: Maybe<Scalars['String']>;
@@ -29419,6 +29636,10 @@ export type TrelloWorkspaceMembershipsConnection = {
29419
29636
  nodes?: Maybe<Array<TrelloMember>>;
29420
29637
  pageInfo: PageInfo;
29421
29638
  };
29639
+ export type TrelloWorkspacePrefs = {
29640
+ __typename?: 'TrelloWorkspacePrefs';
29641
+ associatedDomain?: Maybe<Scalars['String']>;
29642
+ };
29422
29643
  export type TunnelDefinitionsInput = {
29423
29644
  faasTunnelUrl?: Maybe<Scalars['URL']>;
29424
29645
  customUI?: Maybe<Array<Maybe<CustomUiTunnelDefinitionInput>>>;
@@ -29460,7 +29681,7 @@ export type UpdateAppContributorRoleInput = {
29460
29681
  updates: Array<UpdateAppContributorRolePayload>;
29461
29682
  };
29462
29683
  export type UpdateAppContributorRolePayload = {
29463
- email: Scalars['String'];
29684
+ accountId: Scalars['ID'];
29464
29685
  add: Array<Maybe<AppContributorRole>>;
29465
29686
  remove: Array<Maybe<AppContributorRole>>;
29466
29687
  };