@forge/cli-shared 3.17.0-next.11 → 3.17.0-next.12
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
|
@@ -323,6 +323,17 @@ export type AddCompassComponentLabelsPayload = Payload & {
|
|
|
323
323
|
errors?: Maybe<Array<MutationError>>;
|
|
324
324
|
componentDetails?: Maybe<CompassComponent>;
|
|
325
325
|
};
|
|
326
|
+
export type AddMultipleAppContributorInput = {
|
|
327
|
+
appId: Scalars['ID'];
|
|
328
|
+
newContributorEmails: Array<Scalars['String']>;
|
|
329
|
+
role: AppContributorRole;
|
|
330
|
+
};
|
|
331
|
+
export type AddMultipleAppContributorResponsePayload = Payload & {
|
|
332
|
+
__typename?: 'AddMultipleAppContributorResponsePayload';
|
|
333
|
+
success: Scalars['Boolean'];
|
|
334
|
+
contributorsFailed: Array<Maybe<ContributorFailed>>;
|
|
335
|
+
errors?: Maybe<Array<MutationError>>;
|
|
336
|
+
};
|
|
326
337
|
export type AddPolarisColumnInput = {
|
|
327
338
|
before?: Maybe<Scalars['ID']>;
|
|
328
339
|
field: Scalars['ID'];
|
|
@@ -6117,6 +6128,11 @@ export type ContextEventObject = {
|
|
|
6117
6128
|
type: Scalars['String'];
|
|
6118
6129
|
attributes: Scalars['JSON'];
|
|
6119
6130
|
};
|
|
6131
|
+
export type ContributorFailed = {
|
|
6132
|
+
__typename?: 'ContributorFailed';
|
|
6133
|
+
email: Scalars['String'];
|
|
6134
|
+
reason: Scalars['String'];
|
|
6135
|
+
};
|
|
6120
6136
|
export type CopyPolarisInsightsContainerInput = {
|
|
6121
6137
|
project: Scalars['ID'];
|
|
6122
6138
|
container?: Maybe<Scalars['ID']>;
|
|
@@ -6813,7 +6829,9 @@ export declare enum CustomerServiceAttributeTypeName {
|
|
|
6813
6829
|
Text = "TEXT",
|
|
6814
6830
|
Email = "EMAIL",
|
|
6815
6831
|
Url = "URL",
|
|
6832
|
+
Date = "DATE",
|
|
6816
6833
|
Number = "NUMBER",
|
|
6834
|
+
Phone = "PHONE",
|
|
6817
6835
|
Select = "SELECT",
|
|
6818
6836
|
Multiselect = "MULTISELECT"
|
|
6819
6837
|
}
|
|
@@ -8672,6 +8690,7 @@ export type EcosystemMutation = {
|
|
|
8672
8690
|
__typename?: 'EcosystemMutation';
|
|
8673
8691
|
updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
|
|
8674
8692
|
addAppContributor?: Maybe<AddAppContributorResponsePayload>;
|
|
8693
|
+
addMultipleAppContributor?: Maybe<AddMultipleAppContributorResponsePayload>;
|
|
8675
8694
|
removeAppContributors?: Maybe<RemoveAppContributorsResponsePayload>;
|
|
8676
8695
|
updateAppOwnership?: Maybe<UpdateAppOwnershipResponsePayload>;
|
|
8677
8696
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
@@ -8686,6 +8705,9 @@ export type EcosystemMutationUpdateAppHostServiceScopesArgs = {
|
|
|
8686
8705
|
export type EcosystemMutationAddAppContributorArgs = {
|
|
8687
8706
|
input: AddAppContributorInput;
|
|
8688
8707
|
};
|
|
8708
|
+
export type EcosystemMutationAddMultipleAppContributorArgs = {
|
|
8709
|
+
input: AddMultipleAppContributorInput;
|
|
8710
|
+
};
|
|
8689
8711
|
export type EcosystemMutationRemoveAppContributorsArgs = {
|
|
8690
8712
|
input: RemoveAppContributorsInput;
|
|
8691
8713
|
};
|