@forge/cli-shared 3.19.0-next.5 → 3.19.0-next.6
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
|
@@ -6217,7 +6217,7 @@ export type ContributorFailed = {
|
|
|
6217
6217
|
};
|
|
6218
6218
|
export type ContributorRolesFailed = {
|
|
6219
6219
|
__typename?: 'ContributorRolesFailed';
|
|
6220
|
-
|
|
6220
|
+
accountId: Scalars['ID'];
|
|
6221
6221
|
failed: Array<FailedRoles>;
|
|
6222
6222
|
};
|
|
6223
6223
|
export type CopyPolarisInsightsContainerInput = {
|
|
@@ -7034,6 +7034,11 @@ export type CustomerServiceIndividual = Node & {
|
|
|
7034
7034
|
name: Scalars['String'];
|
|
7035
7035
|
attributes: Array<CustomerServiceAttributeValue>;
|
|
7036
7036
|
organizations: Array<CustomerServiceOrganization>;
|
|
7037
|
+
notes: Array<CustomerServiceNote>;
|
|
7038
|
+
};
|
|
7039
|
+
export type CustomerServiceIndividualNotesArgs = {
|
|
7040
|
+
startAt?: Maybe<Scalars['Int']>;
|
|
7041
|
+
maxResults?: Maybe<Scalars['Int']>;
|
|
7037
7042
|
};
|
|
7038
7043
|
export type CustomerServiceIndividualDeletePayload = Payload & {
|
|
7039
7044
|
__typename?: 'CustomerServiceIndividualDeletePayload';
|
|
@@ -7080,6 +7085,9 @@ export type CustomerServiceMutationApi = {
|
|
|
7080
7085
|
updateIndividualAttributeConfig?: Maybe<CustomerServiceAttributeConfigMetadataUpdatePayload>;
|
|
7081
7086
|
updateIndividualAttributeValueByName?: Maybe<CustomerServiceIndividualUpdateAttributeValuePayload>;
|
|
7082
7087
|
updateIndividualAttributeMultiValueByName?: Maybe<CustomerServiceIndividualUpdateAttributeValuePayload>;
|
|
7088
|
+
createNote?: Maybe<CustomerServiceNoteCreatePayload>;
|
|
7089
|
+
updateNote?: Maybe<CustomerServiceNoteUpdatePayload>;
|
|
7090
|
+
deleteNote?: Maybe<CustomerServiceNoteDeletePayload>;
|
|
7083
7091
|
};
|
|
7084
7092
|
export type CustomerServiceMutationApiCreateOrganizationArgs = {
|
|
7085
7093
|
input: CustomerServiceOrganizationCreateInput;
|
|
@@ -7129,11 +7137,81 @@ export type CustomerServiceMutationApiUpdateIndividualAttributeValueByNameArgs =
|
|
|
7129
7137
|
export type CustomerServiceMutationApiUpdateIndividualAttributeMultiValueByNameArgs = {
|
|
7130
7138
|
input: CustomerServiceIndividualUpdateAttributeMultiValueByNameInput;
|
|
7131
7139
|
};
|
|
7140
|
+
export type CustomerServiceMutationApiCreateNoteArgs = {
|
|
7141
|
+
input?: Maybe<CustomerServiceNoteCreateInput>;
|
|
7142
|
+
};
|
|
7143
|
+
export type CustomerServiceMutationApiUpdateNoteArgs = {
|
|
7144
|
+
input?: Maybe<CustomerServiceNoteUpdateInput>;
|
|
7145
|
+
};
|
|
7146
|
+
export type CustomerServiceMutationApiDeleteNoteArgs = {
|
|
7147
|
+
input?: Maybe<CustomerServiceNoteDeleteInput>;
|
|
7148
|
+
};
|
|
7149
|
+
export type CustomerServiceNote = {
|
|
7150
|
+
__typename?: 'CustomerServiceNote';
|
|
7151
|
+
id: Scalars['ID'];
|
|
7152
|
+
author: CustomerServiceNoteAuthor;
|
|
7153
|
+
created: Scalars['String'];
|
|
7154
|
+
updated: Scalars['String'];
|
|
7155
|
+
body: Scalars['String'];
|
|
7156
|
+
canEdit: Scalars['Boolean'];
|
|
7157
|
+
canDelete: Scalars['Boolean'];
|
|
7158
|
+
};
|
|
7159
|
+
export type CustomerServiceNoteAuthor = {
|
|
7160
|
+
__typename?: 'CustomerServiceNoteAuthor';
|
|
7161
|
+
id: Scalars['ID'];
|
|
7162
|
+
avatarUrl: Scalars['String'];
|
|
7163
|
+
displayName: Scalars['String'];
|
|
7164
|
+
name: Scalars['String'];
|
|
7165
|
+
emailAddress: Scalars['String'];
|
|
7166
|
+
isDeleted: Scalars['Boolean'];
|
|
7167
|
+
};
|
|
7168
|
+
export type CustomerServiceNoteCreateInput = {
|
|
7169
|
+
entityType: CustomerServiceNoteEntity;
|
|
7170
|
+
entityId: Scalars['ID'];
|
|
7171
|
+
body: Scalars['String'];
|
|
7172
|
+
};
|
|
7173
|
+
export type CustomerServiceNoteCreatePayload = Payload & {
|
|
7174
|
+
__typename?: 'CustomerServiceNoteCreatePayload';
|
|
7175
|
+
success: Scalars['Boolean'];
|
|
7176
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7177
|
+
successfullyCreatedNote?: Maybe<CustomerServiceNote>;
|
|
7178
|
+
};
|
|
7179
|
+
export type CustomerServiceNoteDeleteInput = {
|
|
7180
|
+
entityType: CustomerServiceNoteEntity;
|
|
7181
|
+
entityId: Scalars['ID'];
|
|
7182
|
+
noteId: Scalars['ID'];
|
|
7183
|
+
};
|
|
7184
|
+
export type CustomerServiceNoteDeletePayload = Payload & {
|
|
7185
|
+
__typename?: 'CustomerServiceNoteDeletePayload';
|
|
7186
|
+
success: Scalars['Boolean'];
|
|
7187
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7188
|
+
};
|
|
7189
|
+
export declare enum CustomerServiceNoteEntity {
|
|
7190
|
+
Organization = "ORGANIZATION",
|
|
7191
|
+
Customer = "CUSTOMER"
|
|
7192
|
+
}
|
|
7193
|
+
export type CustomerServiceNoteUpdateInput = {
|
|
7194
|
+
entityType: CustomerServiceNoteEntity;
|
|
7195
|
+
entityId: Scalars['ID'];
|
|
7196
|
+
noteId: Scalars['ID'];
|
|
7197
|
+
body: Scalars['String'];
|
|
7198
|
+
};
|
|
7199
|
+
export type CustomerServiceNoteUpdatePayload = Payload & {
|
|
7200
|
+
__typename?: 'CustomerServiceNoteUpdatePayload';
|
|
7201
|
+
success: Scalars['Boolean'];
|
|
7202
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7203
|
+
successfullyUpdatedNote?: Maybe<CustomerServiceNote>;
|
|
7204
|
+
};
|
|
7132
7205
|
export type CustomerServiceOrganization = Node & {
|
|
7133
7206
|
__typename?: 'CustomerServiceOrganization';
|
|
7134
7207
|
id: Scalars['ID'];
|
|
7135
7208
|
name: Scalars['String'];
|
|
7136
7209
|
attributes: Array<CustomerServiceAttributeValue>;
|
|
7210
|
+
notes: Array<CustomerServiceNote>;
|
|
7211
|
+
};
|
|
7212
|
+
export type CustomerServiceOrganizationNotesArgs = {
|
|
7213
|
+
startAt?: Maybe<Scalars['Int']>;
|
|
7214
|
+
maxResults?: Maybe<Scalars['Int']>;
|
|
7137
7215
|
};
|
|
7138
7216
|
export type CustomerServiceOrganizationCreateInput = {
|
|
7139
7217
|
id: Scalars['ID'];
|
|
@@ -9471,7 +9549,8 @@ export type ForgeAuditLogEdge = {
|
|
|
9471
9549
|
export declare enum ForgeAuditLogsActionType {
|
|
9472
9550
|
ContributorAdded = "CONTRIBUTOR_ADDED",
|
|
9473
9551
|
ContributorRemoved = "CONTRIBUTOR_REMOVED",
|
|
9474
|
-
OwnershipTransferred = "OWNERSHIP_TRANSFERRED"
|
|
9552
|
+
OwnershipTransferred = "OWNERSHIP_TRANSFERRED",
|
|
9553
|
+
ContributorRoleUpdated = "CONTRIBUTOR_ROLE_UPDATED"
|
|
9475
9554
|
}
|
|
9476
9555
|
export type ForgeAuditLogsAppContributor = {
|
|
9477
9556
|
__typename?: 'ForgeAuditLogsAppContributor';
|
|
@@ -14525,6 +14604,16 @@ export type JiraIssueFieldSetEdge = {
|
|
|
14525
14604
|
node?: Maybe<JiraIssueFieldSet>;
|
|
14526
14605
|
cursor: Scalars['String'];
|
|
14527
14606
|
};
|
|
14607
|
+
export type JiraIssueFieldUnsupportedErrorExtension = QueryErrorExtension & {
|
|
14608
|
+
__typename?: 'JiraIssueFieldUnsupportedErrorExtension';
|
|
14609
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
14610
|
+
errorType?: Maybe<Scalars['String']>;
|
|
14611
|
+
fieldId?: Maybe<Scalars['String']>;
|
|
14612
|
+
fieldName?: Maybe<Scalars['String']>;
|
|
14613
|
+
fieldType?: Maybe<Scalars['String']>;
|
|
14614
|
+
isRequiredField?: Maybe<Scalars['Boolean']>;
|
|
14615
|
+
isUserPreferredField?: Maybe<Scalars['Boolean']>;
|
|
14616
|
+
};
|
|
14528
14617
|
export type JiraIssueFieldsInput = {
|
|
14529
14618
|
priority?: Maybe<JiraPriorityInput>;
|
|
14530
14619
|
multiselectComponents?: Maybe<JiraMultiSelectComponentFieldInput>;
|
|
@@ -15128,7 +15217,8 @@ export declare enum JiraIssueViewTimestampDisplayMode {
|
|
|
15128
15217
|
}
|
|
15129
15218
|
export declare enum JiraIteration {
|
|
15130
15219
|
Iteration_1 = "ITERATION_1",
|
|
15131
|
-
Iteration_2 = "ITERATION_2"
|
|
15220
|
+
Iteration_2 = "ITERATION_2",
|
|
15221
|
+
IterationDynamic = "ITERATION_DYNAMIC"
|
|
15132
15222
|
}
|
|
15133
15223
|
export declare enum JiraJqlBuilderSearchMode {
|
|
15134
15224
|
Basic = "BASIC",
|
|
@@ -29460,7 +29550,7 @@ export type UpdateAppContributorRoleInput = {
|
|
|
29460
29550
|
updates: Array<UpdateAppContributorRolePayload>;
|
|
29461
29551
|
};
|
|
29462
29552
|
export type UpdateAppContributorRolePayload = {
|
|
29463
|
-
|
|
29553
|
+
accountId: Scalars['ID'];
|
|
29464
29554
|
add: Array<Maybe<AppContributorRole>>;
|
|
29465
29555
|
remove: Array<Maybe<AppContributorRole>>;
|
|
29466
29556
|
};
|