@forge/cli-shared 9.3.0-next.15 → 9.3.0-next.16
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 +6 -0
- package/out/graphql/graphql-types.d.ts +11 -11
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +12 -12
- package/out/ui/text.d.ts +2 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -162933,7 +162933,6 @@ export type MercuryArchiveOrganizationValidationPayload = Payload & {
|
|
|
162933
162933
|
export type MercuryAsk = Node & {
|
|
162934
162934
|
__typename?: 'MercuryAsk';
|
|
162935
162935
|
activities?: Maybe<MercuryAskActivityConnection>;
|
|
162936
|
-
askStatus: MercuryAskStatusEnum;
|
|
162937
162936
|
comments?: Maybe<MercuryThreadedCommentConnection>;
|
|
162938
162937
|
connectedWork?: Maybe<MercuryAskConnectedWorkConnection>;
|
|
162939
162938
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -162958,6 +162957,7 @@ export type MercuryAsk = Node & {
|
|
|
162958
162957
|
receivingOrganizationId?: Maybe<Scalars['ID']['output']>;
|
|
162959
162958
|
receivingTeam?: Maybe<TeamV2>;
|
|
162960
162959
|
receivingTeamId?: Maybe<Scalars['ID']['output']>;
|
|
162960
|
+
status: MercuryAskStatus;
|
|
162961
162961
|
submitter?: Maybe<User>;
|
|
162962
162962
|
submitterId: Scalars['ID']['output'];
|
|
162963
162963
|
submittingOrganization?: Maybe<MercuryOrganization>;
|
|
@@ -163138,8 +163138,8 @@ export type MercuryAskActivityUpdatedProposedDate = MercuryAskActivityUpdatedVal
|
|
|
163138
163138
|
export type MercuryAskActivityUpdatedStatus = MercuryAskActivityUpdatedValue & {
|
|
163139
163139
|
__typename?: 'MercuryAskActivityUpdatedStatus';
|
|
163140
163140
|
attribute: MercuryAskActivityAttribute;
|
|
163141
|
-
newValue?: Maybe<
|
|
163142
|
-
oldValue?: Maybe<
|
|
163141
|
+
newValue?: Maybe<MercuryAskStatus>;
|
|
163142
|
+
oldValue?: Maybe<MercuryAskStatus>;
|
|
163143
163143
|
};
|
|
163144
163144
|
export type MercuryAskActivityUpdatedString = MercuryAskActivityUpdatedValue & {
|
|
163145
163145
|
__typename?: 'MercuryAskActivityUpdatedString';
|
|
@@ -163264,7 +163264,7 @@ export declare enum MercuryAskPriority {
|
|
|
163264
163264
|
Medium = "MEDIUM"
|
|
163265
163265
|
}
|
|
163266
163266
|
export type MercuryAskResult = MercuryAsk | QueryError;
|
|
163267
|
-
export declare enum
|
|
163267
|
+
export declare enum MercuryAskStatus {
|
|
163268
163268
|
Accepted = "ACCEPTED",
|
|
163269
163269
|
Canceled = "CANCELED",
|
|
163270
163270
|
Deferred = "DEFERRED",
|
|
@@ -163281,13 +163281,13 @@ export type MercuryAskStatusUpdate = {
|
|
|
163281
163281
|
createdByUserId?: Maybe<Scalars['ID']['output']>;
|
|
163282
163282
|
description?: Maybe<Scalars['String']['output']>;
|
|
163283
163283
|
id: Scalars['ID']['output'];
|
|
163284
|
-
newAskStatus?: Maybe<MercuryAskStatusEnum>;
|
|
163285
163284
|
newProposedBy?: Maybe<User>;
|
|
163286
163285
|
newProposedDate?: Maybe<MercuryAskTargetDate>;
|
|
163286
|
+
newStatus?: Maybe<MercuryAskStatus>;
|
|
163287
163287
|
newTargetDate?: Maybe<MercuryAskTargetDate>;
|
|
163288
|
-
oldAskStatus?: Maybe<MercuryAskStatusEnum>;
|
|
163289
163288
|
oldProposedBy?: Maybe<User>;
|
|
163290
163289
|
oldProposedDate?: Maybe<MercuryAskTargetDate>;
|
|
163290
|
+
oldStatus?: Maybe<MercuryAskStatus>;
|
|
163291
163291
|
oldTargetDate?: Maybe<MercuryAskTargetDate>;
|
|
163292
163292
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
163293
163293
|
updatedBy?: Maybe<User>;
|
|
@@ -163310,8 +163310,8 @@ export type MercuryAskStatusUpdateEdge = {
|
|
|
163310
163310
|
};
|
|
163311
163311
|
export type MercuryAskStatusUpdateResult = MercuryAskStatusUpdate | QueryError;
|
|
163312
163312
|
export type MercuryAskStatusUpdateStatusInput = {
|
|
163313
|
-
askStatus: MercuryAskStatusEnum;
|
|
163314
163313
|
id: Scalars['ID']['input'];
|
|
163314
|
+
status: MercuryAskStatus;
|
|
163315
163315
|
};
|
|
163316
163316
|
export type MercuryAskStatusUpdateTargetDateInput = {
|
|
163317
163317
|
id: Scalars['ID']['input'];
|
|
@@ -163334,7 +163334,7 @@ export declare enum MercuryAskTargetDateType {
|
|
|
163334
163334
|
export type MercuryAskTransition = {
|
|
163335
163335
|
__typename?: 'MercuryAskTransition';
|
|
163336
163336
|
askId: Scalars['ID']['output'];
|
|
163337
|
-
|
|
163337
|
+
status?: Maybe<MercuryAskStatus>;
|
|
163338
163338
|
unmetRequirements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
163339
163339
|
};
|
|
163340
163340
|
export type MercuryAskUpdatedField = {
|
|
@@ -164181,7 +164181,6 @@ export type MercuryCreateAskCustomFieldDefinitionInput = {
|
|
|
164181
164181
|
coreCustomFieldDefinition?: InputMaybe<MercuryCreateCoreCustomFieldDefinitionInput>;
|
|
164182
164182
|
};
|
|
164183
164183
|
export type MercuryCreateAskInput = {
|
|
164184
|
-
askStatus: MercuryAskStatusEnum;
|
|
164185
164184
|
cloudId: Scalars['ID']['input'];
|
|
164186
164185
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
164187
164186
|
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -164191,6 +164190,7 @@ export type MercuryCreateAskInput = {
|
|
|
164191
164190
|
priority: MercuryAskPriority;
|
|
164192
164191
|
receivingOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
164193
164192
|
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
164193
|
+
status: MercuryAskStatus;
|
|
164194
164194
|
submitterId: Scalars['ID']['input'];
|
|
164195
164195
|
submittingOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
164196
164196
|
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -164198,13 +164198,12 @@ export type MercuryCreateAskInput = {
|
|
|
164198
164198
|
};
|
|
164199
164199
|
export type MercuryCreateAskStatusUpdateInput = {
|
|
164200
164200
|
askId: Scalars['ID']['input'];
|
|
164201
|
-
askStatus?: InputMaybe<MercuryAskStatusEnum>;
|
|
164202
164201
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
164203
164202
|
proposedDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
164203
|
+
status?: InputMaybe<MercuryAskStatus>;
|
|
164204
164204
|
targetDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
164205
164205
|
};
|
|
164206
164206
|
export type MercuryCreateAsksAskInput = {
|
|
164207
|
-
askStatus: MercuryAskStatusEnum;
|
|
164208
164207
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
164209
164208
|
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
164210
164209
|
justification?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -164214,6 +164213,7 @@ export type MercuryCreateAsksAskInput = {
|
|
|
164214
164213
|
priority: MercuryAskPriority;
|
|
164215
164214
|
receivingOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
164216
164215
|
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
164216
|
+
status: MercuryAskStatus;
|
|
164217
164217
|
submitterId: Scalars['ID']['input'];
|
|
164218
164218
|
submittingOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
164219
164219
|
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|