@forge/cli-shared 3.10.2-next.0 → 3.10.2-next.1
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
|
@@ -5864,6 +5864,7 @@ export declare type CustomerServiceMutationApi = {
|
|
|
5864
5864
|
updateOrganizationAttribute?: Maybe<CustomerServiceAttributeUpdatePayload>;
|
|
5865
5865
|
deleteOrganizationAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
|
|
5866
5866
|
updateOrganizationAttributeValue?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
|
|
5867
|
+
updateOrganizationAttributeValueByName?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
|
|
5867
5868
|
createIndividualAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
|
|
5868
5869
|
updateIndividualAttribute?: Maybe<CustomerServiceAttributeUpdatePayload>;
|
|
5869
5870
|
deleteIndividualAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
|
|
@@ -5889,6 +5890,9 @@ export declare type CustomerServiceMutationApiDeleteOrganizationAttributeArgs =
|
|
|
5889
5890
|
export declare type CustomerServiceMutationApiUpdateOrganizationAttributeValueArgs = {
|
|
5890
5891
|
input: CustomerServiceOrganizationUpdateAttributeInput;
|
|
5891
5892
|
};
|
|
5893
|
+
export declare type CustomerServiceMutationApiUpdateOrganizationAttributeValueByNameArgs = {
|
|
5894
|
+
input: CustomerServiceOrganizationUpdateAttributeByNameInput;
|
|
5895
|
+
};
|
|
5892
5896
|
export declare type CustomerServiceMutationApiCreateIndividualAttributeArgs = {
|
|
5893
5897
|
input: CustomerServiceAttributeCreateInput;
|
|
5894
5898
|
};
|
|
@@ -5923,6 +5927,11 @@ export declare type CustomerServiceOrganizationDeletePayload = Payload & {
|
|
|
5923
5927
|
errors?: Maybe<Array<MutationError>>;
|
|
5924
5928
|
};
|
|
5925
5929
|
export declare type CustomerServiceOrganizationQueryResult = CustomerServiceOrganization | QueryError;
|
|
5930
|
+
export declare type CustomerServiceOrganizationUpdateAttributeByNameInput = {
|
|
5931
|
+
organizationId: Scalars['String'];
|
|
5932
|
+
attributeName: Scalars['String'];
|
|
5933
|
+
attributeValue: Scalars['String'];
|
|
5934
|
+
};
|
|
5926
5935
|
export declare type CustomerServiceOrganizationUpdateAttributeInput = {
|
|
5927
5936
|
organizationId: Scalars['String'];
|
|
5928
5937
|
attributeId: Scalars['String'];
|
|
@@ -7470,48 +7479,6 @@ export declare type DeveloperLogAccessResult = {
|
|
|
7470
7479
|
developerHasAccess: Scalars['Boolean'];
|
|
7471
7480
|
contextId: Scalars['ID'];
|
|
7472
7481
|
};
|
|
7473
|
-
export declare type DirectoryMutation = {
|
|
7474
|
-
__typename?: 'DirectoryMutation';
|
|
7475
|
-
removeUserAccess?: Maybe<DirectoryRemoveUserAccessPayload>;
|
|
7476
|
-
restoreUserAccess?: Maybe<DirectoryRestoreUserAccessPayload>;
|
|
7477
|
-
suspendUserAccess?: Maybe<DirectorySuspendUserAccessPayload>;
|
|
7478
|
-
};
|
|
7479
|
-
export declare type DirectoryMutationRemoveUserAccessArgs = {
|
|
7480
|
-
input?: Maybe<DirectoryRemoveUserInput>;
|
|
7481
|
-
};
|
|
7482
|
-
export declare type DirectoryMutationRestoreUserAccessArgs = {
|
|
7483
|
-
input?: Maybe<DirectoryRestoreUserInput>;
|
|
7484
|
-
};
|
|
7485
|
-
export declare type DirectoryMutationSuspendUserAccessArgs = {
|
|
7486
|
-
input?: Maybe<DirectorySuspendUserInput>;
|
|
7487
|
-
};
|
|
7488
|
-
export declare type DirectoryRemoveUserAccessPayload = Payload & {
|
|
7489
|
-
__typename?: 'DirectoryRemoveUserAccessPayload';
|
|
7490
|
-
success: Scalars['Boolean'];
|
|
7491
|
-
errors?: Maybe<Array<MutationError>>;
|
|
7492
|
-
};
|
|
7493
|
-
export declare type DirectoryRemoveUserInput = {
|
|
7494
|
-
orgId: Scalars['ID'];
|
|
7495
|
-
accountId: Scalars['ID'];
|
|
7496
|
-
};
|
|
7497
|
-
export declare type DirectoryRestoreUserAccessPayload = Payload & {
|
|
7498
|
-
__typename?: 'DirectoryRestoreUserAccessPayload';
|
|
7499
|
-
success: Scalars['Boolean'];
|
|
7500
|
-
errors?: Maybe<Array<MutationError>>;
|
|
7501
|
-
};
|
|
7502
|
-
export declare type DirectoryRestoreUserInput = {
|
|
7503
|
-
orgId: Scalars['ID'];
|
|
7504
|
-
accountId: Scalars['ID'];
|
|
7505
|
-
};
|
|
7506
|
-
export declare type DirectorySuspendUserAccessPayload = Payload & {
|
|
7507
|
-
__typename?: 'DirectorySuspendUserAccessPayload';
|
|
7508
|
-
success: Scalars['Boolean'];
|
|
7509
|
-
errors?: Maybe<Array<MutationError>>;
|
|
7510
|
-
};
|
|
7511
|
-
export declare type DirectorySuspendUserInput = {
|
|
7512
|
-
orgId: Scalars['ID'];
|
|
7513
|
-
accountId: Scalars['ID'];
|
|
7514
|
-
};
|
|
7515
7482
|
export declare type DvcsBitbucketWorkspaceConnection = {
|
|
7516
7483
|
__typename?: 'DvcsBitbucketWorkspaceConnection';
|
|
7517
7484
|
edges?: Maybe<Array<Maybe<DvcsBitbucketWorkspaceEdge>>>;
|
|
@@ -16138,7 +16105,6 @@ export declare type JiraWorklog = Node & {
|
|
|
16138
16105
|
author?: Maybe<User>;
|
|
16139
16106
|
updateAuthor?: Maybe<User>;
|
|
16140
16107
|
timeSpent?: Maybe<JiraEstimate>;
|
|
16141
|
-
remainingEstimate?: Maybe<JiraEstimate>;
|
|
16142
16108
|
created: Scalars['DateTime'];
|
|
16143
16109
|
updated?: Maybe<Scalars['DateTime']>;
|
|
16144
16110
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
@@ -16758,7 +16724,6 @@ export declare type Mutation = {
|
|
|
16758
16724
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
16759
16725
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
16760
16726
|
shepherd?: Maybe<ShepherdMutation>;
|
|
16761
|
-
directory?: Maybe<DirectoryMutation>;
|
|
16762
16727
|
helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
|
|
16763
16728
|
jsw?: Maybe<JswMutation>;
|
|
16764
16729
|
createColumn?: Maybe<CreateColumnOutput>;
|
|
@@ -19594,7 +19559,6 @@ export declare enum RateLimitingCurrency {
|
|
|
19594
19559
|
TeamSearchCurrency = "TEAM_SEARCH_CURRENCY",
|
|
19595
19560
|
PolarisCurrency = "POLARIS_CURRENCY",
|
|
19596
19561
|
CompassSynchronizeLinkAssociationsCurrency = "COMPASS_SYNCHRONIZE_LINK_ASSOCIATIONS_CURRENCY",
|
|
19597
|
-
DirectoryCurrency = "DIRECTORY_CURRENCY",
|
|
19598
19562
|
HelpObjectStoreCurrency = "HELP_OBJECT_STORE_CURRENCY",
|
|
19599
19563
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
19600
19564
|
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|