@forge/cli-shared 3.20.1 → 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
|
@@ -7146,10 +7146,15 @@ export type CustomerServiceIndividual = Node & {
|
|
|
7146
7146
|
__typename?: 'CustomerServiceIndividual';
|
|
7147
7147
|
attributes: Array<CustomerServiceAttributeValue>;
|
|
7148
7148
|
id: Scalars['ID']['output'];
|
|
7149
|
+
links: Array<CustomerServiceLink>;
|
|
7149
7150
|
name: Scalars['String']['output'];
|
|
7150
7151
|
notes: Array<CustomerServiceNote>;
|
|
7151
7152
|
organizations: Array<CustomerServiceOrganization>;
|
|
7152
7153
|
};
|
|
7154
|
+
export type CustomerServiceIndividualLinksArgs = {
|
|
7155
|
+
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
7156
|
+
startAt?: InputMaybe<Scalars['Int']['input']>;
|
|
7157
|
+
};
|
|
7153
7158
|
export type CustomerServiceIndividualNotesArgs = {
|
|
7154
7159
|
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
7155
7160
|
startAt?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -7181,13 +7186,48 @@ export type CustomerServiceIndividualUpdateAttributeValuePayload = Payload & {
|
|
|
7181
7186
|
errors?: Maybe<Array<MutationError>>;
|
|
7182
7187
|
success: Scalars['Boolean']['output'];
|
|
7183
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;
|
|
7184
7222
|
export type CustomerServiceMutationApi = {
|
|
7185
7223
|
__typename?: 'CustomerServiceMutationApi';
|
|
7186
7224
|
createIndividualAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
|
|
7225
|
+
createLink?: Maybe<CustomerServiceLinkCreatePayload>;
|
|
7187
7226
|
createNote?: Maybe<CustomerServiceNoteCreatePayload>;
|
|
7188
7227
|
createOrganization?: Maybe<CustomerServiceOrganizationCreatePayload>;
|
|
7189
7228
|
createOrganizationAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
|
|
7190
7229
|
deleteIndividualAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
|
|
7230
|
+
deleteLink?: Maybe<CustomerServiceLinkDeletePayload>;
|
|
7191
7231
|
deleteNote?: Maybe<CustomerServiceNoteDeletePayload>;
|
|
7192
7232
|
deleteOrganization?: Maybe<CustomerServiceOrganizationDeletePayload>;
|
|
7193
7233
|
deleteOrganizationAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
|
|
@@ -7206,6 +7246,9 @@ export type CustomerServiceMutationApi = {
|
|
|
7206
7246
|
export type CustomerServiceMutationApiCreateIndividualAttributeArgs = {
|
|
7207
7247
|
input: CustomerServiceAttributeCreateInput;
|
|
7208
7248
|
};
|
|
7249
|
+
export type CustomerServiceMutationApiCreateLinkArgs = {
|
|
7250
|
+
input: CustomerServiceLinkCreateInput;
|
|
7251
|
+
};
|
|
7209
7252
|
export type CustomerServiceMutationApiCreateNoteArgs = {
|
|
7210
7253
|
input?: InputMaybe<CustomerServiceNoteCreateInput>;
|
|
7211
7254
|
};
|
|
@@ -7218,6 +7261,9 @@ export type CustomerServiceMutationApiCreateOrganizationAttributeArgs = {
|
|
|
7218
7261
|
export type CustomerServiceMutationApiDeleteIndividualAttributeArgs = {
|
|
7219
7262
|
input: CustomerServiceAttributeDeleteInput;
|
|
7220
7263
|
};
|
|
7264
|
+
export type CustomerServiceMutationApiDeleteLinkArgs = {
|
|
7265
|
+
input: CustomerServiceLinkDeleteInput;
|
|
7266
|
+
};
|
|
7221
7267
|
export type CustomerServiceMutationApiDeleteNoteArgs = {
|
|
7222
7268
|
input?: InputMaybe<CustomerServiceNoteDeleteInput>;
|
|
7223
7269
|
};
|
|
@@ -7320,9 +7366,14 @@ export type CustomerServiceOrganization = Node & {
|
|
|
7320
7366
|
__typename?: 'CustomerServiceOrganization';
|
|
7321
7367
|
attributes: Array<CustomerServiceAttributeValue>;
|
|
7322
7368
|
id: Scalars['ID']['output'];
|
|
7369
|
+
links: Array<CustomerServiceLink>;
|
|
7323
7370
|
name: Scalars['String']['output'];
|
|
7324
7371
|
notes: Array<CustomerServiceNote>;
|
|
7325
7372
|
};
|
|
7373
|
+
export type CustomerServiceOrganizationLinksArgs = {
|
|
7374
|
+
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
7375
|
+
startAt?: InputMaybe<Scalars['Int']['input']>;
|
|
7376
|
+
};
|
|
7326
7377
|
export type CustomerServiceOrganizationNotesArgs = {
|
|
7327
7378
|
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
7328
7379
|
startAt?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -15387,6 +15438,16 @@ export type JiraForgeUsersFieldUsersArgs = {
|
|
|
15387
15438
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
15388
15439
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15389
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
|
+
};
|
|
15390
15451
|
export type JiraGlobalPermission = {
|
|
15391
15452
|
__typename?: 'JiraGlobalPermission';
|
|
15392
15453
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -18860,6 +18921,7 @@ export type JiraQuery = {
|
|
|
18860
18921
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
18861
18922
|
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
18862
18923
|
jsonUserProperty?: Maybe<JiraEntityPropertyJson>;
|
|
18924
|
+
jwmForm?: Maybe<JiraWorkManagementFormConfiguration>;
|
|
18863
18925
|
jwmNavigation?: Maybe<JiraWorkManagementNavigation>;
|
|
18864
18926
|
jwmNavigationByProjectId?: Maybe<JiraWorkManagementNavigation>;
|
|
18865
18927
|
jwmNavigationByProjectKey?: Maybe<JiraWorkManagementNavigation>;
|
|
@@ -19177,6 +19239,10 @@ export type JiraQueryJsonUserPropertyArgs = {
|
|
|
19177
19239
|
cloudId: Scalars['ID']['input'];
|
|
19178
19240
|
propertyKey: Scalars['String']['input'];
|
|
19179
19241
|
};
|
|
19242
|
+
export type JiraQueryJwmFormArgs = {
|
|
19243
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
19244
|
+
formId: Scalars['ID']['input'];
|
|
19245
|
+
};
|
|
19180
19246
|
export type JiraQueryJwmNavigationArgs = {
|
|
19181
19247
|
cloudId: Scalars['ID']['input'];
|
|
19182
19248
|
};
|
|
@@ -22270,6 +22336,30 @@ export type JiraWorkManagementDeleteOverviewPayload = Payload & {
|
|
|
22270
22336
|
errors?: Maybe<Array<MutationError>>;
|
|
22271
22337
|
success: Scalars['Boolean']['output'];
|
|
22272
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
|
+
};
|
|
22273
22363
|
export type JiraWorkManagementLicensing = {
|
|
22274
22364
|
__typename?: 'JiraWorkManagementLicensing';
|
|
22275
22365
|
currentUserSeatEdition?: Maybe<JiraWorkManagementUserLicenseSeatEdition>;
|