@forge/cli-shared 3.20.1-next.0 → 3.20.2-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 CHANGED
@@ -1,5 +1,20 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.20.2-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [64ac4be]
8
+ - @forge/manifest@4.20.3-next.0
9
+
10
+ ## 3.20.1
11
+
12
+ ### Patch Changes
13
+
14
+ - 5c39a289: Bumping dependencies via Renovate:
15
+
16
+ - @atlassian/xen-test-util
17
+
3
18
  ## 3.20.1-next.0
4
19
 
5
20
  ### Patch Changes
@@ -702,6 +702,7 @@ export type App = {
702
702
  distributionStatus: Scalars['String']['output'];
703
703
  ensureCollaborator: Scalars['Boolean']['output'];
704
704
  environmentByKey?: Maybe<AppEnvironment>;
705
+ environmentByOauthClient?: Maybe<AppEnvironment>;
705
706
  environments: Array<AppEnvironment>;
706
707
  id: Scalars['ID']['output'];
707
708
  installationsByContexts?: Maybe<AppInstallationByIndexConnection>;
@@ -721,6 +722,9 @@ export type AppDeploymentsArgs = {
721
722
  export type AppEnvironmentByKeyArgs = {
722
723
  key: Scalars['String']['input'];
723
724
  };
725
+ export type AppEnvironmentByOauthClientArgs = {
726
+ oauthClientId: Scalars['ID']['input'];
727
+ };
724
728
  export type AppInstallationsByContextsArgs = {
725
729
  after?: InputMaybe<Scalars['String']['input']>;
726
730
  before?: InputMaybe<Scalars['String']['input']>;
@@ -7142,10 +7146,15 @@ export type CustomerServiceIndividual = Node & {
7142
7146
  __typename?: 'CustomerServiceIndividual';
7143
7147
  attributes: Array<CustomerServiceAttributeValue>;
7144
7148
  id: Scalars['ID']['output'];
7149
+ links: Array<CustomerServiceLink>;
7145
7150
  name: Scalars['String']['output'];
7146
7151
  notes: Array<CustomerServiceNote>;
7147
7152
  organizations: Array<CustomerServiceOrganization>;
7148
7153
  };
7154
+ export type CustomerServiceIndividualLinksArgs = {
7155
+ maxResults?: InputMaybe<Scalars['Int']['input']>;
7156
+ startAt?: InputMaybe<Scalars['Int']['input']>;
7157
+ };
7149
7158
  export type CustomerServiceIndividualNotesArgs = {
7150
7159
  maxResults?: InputMaybe<Scalars['Int']['input']>;
7151
7160
  startAt?: InputMaybe<Scalars['Int']['input']>;
@@ -7177,13 +7186,48 @@ export type CustomerServiceIndividualUpdateAttributeValuePayload = Payload & {
7177
7186
  errors?: Maybe<Array<MutationError>>;
7178
7187
  success: Scalars['Boolean']['output'];
7179
7188
  };
7189
+ export type CustomerServiceLink = {
7190
+ __typename?: 'CustomerServiceLink';
7191
+ displayName?: Maybe<Scalars['String']['output']>;
7192
+ id: Scalars['ID']['output'];
7193
+ url: Scalars['URL']['output'];
7194
+ };
7195
+ export type CustomerServiceLinkCreateInput = {
7196
+ displayName?: InputMaybe<Scalars['String']['input']>;
7197
+ entityId: Scalars['ID']['input'];
7198
+ type: CustomerServiceLinkEntityType;
7199
+ url: Scalars['URL']['input'];
7200
+ };
7201
+ export type CustomerServiceLinkCreatePayload = Payload & {
7202
+ __typename?: 'CustomerServiceLinkCreatePayload';
7203
+ errors?: Maybe<Array<MutationError>>;
7204
+ success: Scalars['Boolean']['output'];
7205
+ successfullyCreatedLink?: Maybe<CustomerServiceLink>;
7206
+ };
7207
+ export type CustomerServiceLinkDeleteInput = {
7208
+ entityId: Scalars['ID']['input'];
7209
+ linkId: Scalars['ID']['input'];
7210
+ type: CustomerServiceLinkEntityType;
7211
+ };
7212
+ export type CustomerServiceLinkDeletePayload = Payload & {
7213
+ __typename?: 'CustomerServiceLinkDeletePayload';
7214
+ errors?: Maybe<Array<MutationError>>;
7215
+ success: Scalars['Boolean']['output'];
7216
+ };
7217
+ export declare enum CustomerServiceLinkEntityType {
7218
+ Customer = "CUSTOMER",
7219
+ Organization = "ORGANIZATION"
7220
+ }
7221
+ export type CustomerServiceLinksQueryResult = CustomerServiceLink | QueryError;
7180
7222
  export type CustomerServiceMutationApi = {
7181
7223
  __typename?: 'CustomerServiceMutationApi';
7182
7224
  createIndividualAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
7225
+ createLink?: Maybe<CustomerServiceLinkCreatePayload>;
7183
7226
  createNote?: Maybe<CustomerServiceNoteCreatePayload>;
7184
7227
  createOrganization?: Maybe<CustomerServiceOrganizationCreatePayload>;
7185
7228
  createOrganizationAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
7186
7229
  deleteIndividualAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
7230
+ deleteLink?: Maybe<CustomerServiceLinkDeletePayload>;
7187
7231
  deleteNote?: Maybe<CustomerServiceNoteDeletePayload>;
7188
7232
  deleteOrganization?: Maybe<CustomerServiceOrganizationDeletePayload>;
7189
7233
  deleteOrganizationAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
@@ -7202,6 +7246,9 @@ export type CustomerServiceMutationApi = {
7202
7246
  export type CustomerServiceMutationApiCreateIndividualAttributeArgs = {
7203
7247
  input: CustomerServiceAttributeCreateInput;
7204
7248
  };
7249
+ export type CustomerServiceMutationApiCreateLinkArgs = {
7250
+ input: CustomerServiceLinkCreateInput;
7251
+ };
7205
7252
  export type CustomerServiceMutationApiCreateNoteArgs = {
7206
7253
  input?: InputMaybe<CustomerServiceNoteCreateInput>;
7207
7254
  };
@@ -7214,6 +7261,9 @@ export type CustomerServiceMutationApiCreateOrganizationAttributeArgs = {
7214
7261
  export type CustomerServiceMutationApiDeleteIndividualAttributeArgs = {
7215
7262
  input: CustomerServiceAttributeDeleteInput;
7216
7263
  };
7264
+ export type CustomerServiceMutationApiDeleteLinkArgs = {
7265
+ input: CustomerServiceLinkDeleteInput;
7266
+ };
7217
7267
  export type CustomerServiceMutationApiDeleteNoteArgs = {
7218
7268
  input?: InputMaybe<CustomerServiceNoteDeleteInput>;
7219
7269
  };
@@ -7316,9 +7366,14 @@ export type CustomerServiceOrganization = Node & {
7316
7366
  __typename?: 'CustomerServiceOrganization';
7317
7367
  attributes: Array<CustomerServiceAttributeValue>;
7318
7368
  id: Scalars['ID']['output'];
7369
+ links: Array<CustomerServiceLink>;
7319
7370
  name: Scalars['String']['output'];
7320
7371
  notes: Array<CustomerServiceNote>;
7321
7372
  };
7373
+ export type CustomerServiceOrganizationLinksArgs = {
7374
+ maxResults?: InputMaybe<Scalars['Int']['input']>;
7375
+ startAt?: InputMaybe<Scalars['Int']['input']>;
7376
+ };
7322
7377
  export type CustomerServiceOrganizationNotesArgs = {
7323
7378
  maxResults?: InputMaybe<Scalars['Int']['input']>;
7324
7379
  startAt?: InputMaybe<Scalars['Int']['input']>;
@@ -15383,6 +15438,16 @@ export type JiraForgeUsersFieldUsersArgs = {
15383
15438
  searchBy?: InputMaybe<Scalars['String']['input']>;
15384
15439
  suggested?: InputMaybe<Scalars['Boolean']['input']>;
15385
15440
  };
15441
+ export type JiraGenericIssueField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
15442
+ __typename?: 'JiraGenericIssueField';
15443
+ aliasFieldId?: Maybe<Scalars['ID']['output']>;
15444
+ description?: Maybe<Scalars['String']['output']>;
15445
+ fieldConfig?: Maybe<JiraFieldConfig>;
15446
+ fieldId: Scalars['String']['output'];
15447
+ id: Scalars['ID']['output'];
15448
+ name: Scalars['String']['output'];
15449
+ type: Scalars['String']['output'];
15450
+ };
15386
15451
  export type JiraGlobalPermission = {
15387
15452
  __typename?: 'JiraGlobalPermission';
15388
15453
  description?: Maybe<Scalars['String']['output']>;
@@ -18856,6 +18921,7 @@ export type JiraQuery = {
18856
18921
  jqlBuilder?: Maybe<JiraJqlBuilder>;
18857
18922
  jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
18858
18923
  jsonUserProperty?: Maybe<JiraEntityPropertyJson>;
18924
+ jwmForm?: Maybe<JiraWorkManagementFormConfiguration>;
18859
18925
  jwmNavigation?: Maybe<JiraWorkManagementNavigation>;
18860
18926
  jwmNavigationByProjectId?: Maybe<JiraWorkManagementNavigation>;
18861
18927
  jwmNavigationByProjectKey?: Maybe<JiraWorkManagementNavigation>;
@@ -19173,6 +19239,10 @@ export type JiraQueryJsonUserPropertyArgs = {
19173
19239
  cloudId: Scalars['ID']['input'];
19174
19240
  propertyKey: Scalars['String']['input'];
19175
19241
  };
19242
+ export type JiraQueryJwmFormArgs = {
19243
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
19244
+ formId: Scalars['ID']['input'];
19245
+ };
19176
19246
  export type JiraQueryJwmNavigationArgs = {
19177
19247
  cloudId: Scalars['ID']['input'];
19178
19248
  };
@@ -22266,6 +22336,30 @@ export type JiraWorkManagementDeleteOverviewPayload = Payload & {
22266
22336
  errors?: Maybe<Array<MutationError>>;
22267
22337
  success: Scalars['Boolean']['output'];
22268
22338
  };
22339
+ export type JiraWorkManagementFormConfiguration = Node & {
22340
+ __typename?: 'JiraWorkManagementFormConfiguration';
22341
+ accessLevel?: Maybe<Scalars['String']['output']>;
22342
+ bannerColor?: Maybe<Scalars['String']['output']>;
22343
+ description?: Maybe<Scalars['String']['output']>;
22344
+ enabled: Scalars['Boolean']['output'];
22345
+ errors?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
22346
+ fields?: Maybe<Array<Maybe<JiraWorkManagementFormField>>>;
22347
+ formId: Scalars['ID']['output'];
22348
+ id: Scalars['ID']['output'];
22349
+ isSubmittableByAllLoggedInUsers: Scalars['Boolean']['output'];
22350
+ issueType?: Maybe<JiraIssueType>;
22351
+ projectId: Scalars['Long']['output'];
22352
+ title: Scalars['String']['output'];
22353
+ updateAuthor?: Maybe<User>;
22354
+ updated: Scalars['DateTime']['output'];
22355
+ };
22356
+ export type JiraWorkManagementFormField = {
22357
+ __typename?: 'JiraWorkManagementFormField';
22358
+ alias?: Maybe<Scalars['String']['output']>;
22359
+ field: JiraIssueField;
22360
+ fieldId: Scalars['ID']['output'];
22361
+ id: Scalars['ID']['output'];
22362
+ };
22269
22363
  export type JiraWorkManagementLicensing = {
22270
22364
  __typename?: 'JiraWorkManagementLicensing';
22271
22365
  currentUserSeatEdition?: Maybe<JiraWorkManagementUserLicenseSeatEdition>;
@@ -27419,6 +27513,7 @@ export type SearchConfluenceFilter = {
27419
27513
  contributorsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
27420
27514
  creatorsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
27421
27515
  labelsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
27516
+ pageStatus?: InputMaybe<Array<Scalars['String']['input']>>;
27422
27517
  range?: InputMaybe<Array<InputMaybe<SearchConfluenceRangeFilter>>>;
27423
27518
  spacesFilter?: InputMaybe<Array<Scalars['String']['input']>>;
27424
27519
  titleMatchOnly?: InputMaybe<Scalars['Boolean']['input']>;