@forge/cli-shared 8.11.0-next.1 → 8.11.0-next.2
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
|
@@ -71014,6 +71014,7 @@ export declare type JiraDateFormulaField = JiraIssueField & JiraIssueFieldConfig
|
|
|
71014
71014
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
71015
71015
|
fieldId: Scalars['String']['output'];
|
|
71016
71016
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
71017
|
+
formulaExpressionConfig?: Maybe<JiraFormulaFieldExpressionConfig>;
|
|
71017
71018
|
id: Scalars['ID']['output'];
|
|
71018
71019
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
71019
71020
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -73038,6 +73039,7 @@ export declare type JiraFormulaFieldDateValue = {
|
|
|
73038
73039
|
export declare type JiraFormulaFieldExpressionConfig = {
|
|
73039
73040
|
__typename?: 'JiraFormulaFieldExpressionConfig';
|
|
73040
73041
|
expression?: Maybe<Scalars['String']['output']>;
|
|
73042
|
+
referencedFields?: Maybe<Array<JiraFormulaReferencedField>>;
|
|
73041
73043
|
};
|
|
73042
73044
|
export declare type JiraFormulaFieldExpressionConfigInput = {
|
|
73043
73045
|
expression?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -73111,6 +73113,11 @@ export declare enum JiraFormulaFieldType {
|
|
|
73111
73113
|
Text = "TEXT"
|
|
73112
73114
|
}
|
|
73113
73115
|
export declare type JiraFormulaFieldValue = JiraFormulaFieldDateValue | JiraFormulaFieldNumberValue | JiraFormulaFieldTextValue;
|
|
73116
|
+
export declare type JiraFormulaReferencedField = {
|
|
73117
|
+
__typename?: 'JiraFormulaReferencedField';
|
|
73118
|
+
fieldId: Scalars['String']['output'];
|
|
73119
|
+
name: Scalars['String']['output'];
|
|
73120
|
+
};
|
|
73114
73121
|
export declare type JiraGeneratedJqlInvalidError = {
|
|
73115
73122
|
__typename?: 'JiraGeneratedJqlInvalidError';
|
|
73116
73123
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -78874,6 +78881,7 @@ export declare type JiraNumberFormulaField = JiraIssueField & JiraIssueFieldConf
|
|
|
78874
78881
|
fieldId: Scalars['String']['output'];
|
|
78875
78882
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
78876
78883
|
formatConfig?: Maybe<JiraNumberFieldFormatConfig>;
|
|
78884
|
+
formulaExpressionConfig?: Maybe<JiraFormulaFieldExpressionConfig>;
|
|
78877
78885
|
id: Scalars['ID']['output'];
|
|
78878
78886
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
78879
78887
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -86320,6 +86328,7 @@ export declare type JiraTextFormulaField = JiraIssueField & JiraIssueFieldConfig
|
|
|
86320
86328
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
86321
86329
|
fieldId: Scalars['String']['output'];
|
|
86322
86330
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
86331
|
+
formulaExpressionConfig?: Maybe<JiraFormulaFieldExpressionConfig>;
|
|
86323
86332
|
id: Scalars['ID']['output'];
|
|
86324
86333
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
86325
86334
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -87306,6 +87315,8 @@ export declare type JiraUsageLimitExceededError = {
|
|
|
87306
87315
|
export declare type JiraUser = {
|
|
87307
87316
|
__typename?: 'JiraUser';
|
|
87308
87317
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
87318
|
+
accountType?: Maybe<Scalars['String']['output']>;
|
|
87319
|
+
appType?: Maybe<Scalars['String']['output']>;
|
|
87309
87320
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
87310
87321
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
87311
87322
|
email?: Maybe<Scalars['String']['output']>;
|
|
@@ -137607,6 +137618,13 @@ export declare type TownsquareCreateTagPayload = {
|
|
|
137607
137618
|
success: Scalars['Boolean']['output'];
|
|
137608
137619
|
tag?: Maybe<TownsquareTag>;
|
|
137609
137620
|
};
|
|
137621
|
+
export declare type TownsquareCustomField = TownsquareNumberCustomField | TownsquareTextCustomField | TownsquareTextSelectCustomField | TownsquareUserCustomField;
|
|
137622
|
+
export declare type TownsquareCustomFieldConnection = {
|
|
137623
|
+
__typename?: 'TownsquareCustomFieldConnection';
|
|
137624
|
+
edges?: Maybe<Array<Maybe<TownsquareCustomFieldEdge>>>;
|
|
137625
|
+
pageInfo: PageInfo;
|
|
137626
|
+
};
|
|
137627
|
+
export declare type TownsquareCustomFieldDefinition = TownsquareNumberCustomFieldDefinition | TownsquareTextCustomFieldDefinition | TownsquareTextSelectCustomFieldDefinition | TownsquareUserCustomFieldDefinition;
|
|
137610
137628
|
export declare type TownsquareCustomFieldDefinitionNode = {
|
|
137611
137629
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
137612
137630
|
creator?: Maybe<User>;
|
|
@@ -137618,10 +137636,22 @@ export declare type TownsquareCustomFieldDefinitionNode = {
|
|
|
137618
137636
|
token?: Maybe<Scalars['String']['output']>;
|
|
137619
137637
|
type?: Maybe<TownsquareCustomFieldType>;
|
|
137620
137638
|
};
|
|
137639
|
+
export declare type TownsquareCustomFieldEdge = {
|
|
137640
|
+
__typename?: 'TownsquareCustomFieldEdge';
|
|
137641
|
+
cursor: Scalars['String']['output'];
|
|
137642
|
+
node?: Maybe<TownsquareCustomField>;
|
|
137643
|
+
};
|
|
137621
137644
|
export declare enum TownsquareCustomFieldEntity {
|
|
137622
137645
|
Goal = "GOAL",
|
|
137623
137646
|
Project = "PROJECT"
|
|
137624
137647
|
}
|
|
137648
|
+
export declare type TownsquareCustomFieldNode = {
|
|
137649
|
+
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
137650
|
+
creator?: Maybe<User>;
|
|
137651
|
+
definition?: Maybe<TownsquareCustomFieldDefinition>;
|
|
137652
|
+
lastModifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
137653
|
+
uuid?: Maybe<Scalars['UUID']['output']>;
|
|
137654
|
+
};
|
|
137625
137655
|
export declare enum TownsquareCustomFieldType {
|
|
137626
137656
|
Number = "NUMBER",
|
|
137627
137657
|
Text = "TEXT",
|
|
@@ -137728,6 +137758,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
137728
137758
|
capabilities?: Maybe<TownsquareGoalCapabilities>;
|
|
137729
137759
|
comments?: Maybe<TownsquareCommentConnection>;
|
|
137730
137760
|
creationDate: Scalars['DateTime']['output'];
|
|
137761
|
+
customFields?: Maybe<TownsquareCustomFieldConnection>;
|
|
137731
137762
|
description?: Maybe<Scalars['String']['output']>;
|
|
137732
137763
|
draftUpdate?: Maybe<TownsquareDraftUpdate>;
|
|
137733
137764
|
dueDate?: Maybe<TownsquareTargetDate>;
|
|
@@ -137771,6 +137802,11 @@ export declare type TownsquareGoalCommentsArgs = {
|
|
|
137771
137802
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
137772
137803
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
137773
137804
|
};
|
|
137805
|
+
export declare type TownsquareGoalCustomFieldsArgs = {
|
|
137806
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
137807
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
137808
|
+
includedCustomFieldIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
137809
|
+
};
|
|
137774
137810
|
export declare type TownsquareGoalFocusAreasArgs = {
|
|
137775
137811
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
137776
137812
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -138732,6 +138768,14 @@ export declare type TownsquareMutationApiUnarchiveGoalArgs = {
|
|
|
138732
138768
|
export declare type TownsquareMutationApiWatchGoalArgs = {
|
|
138733
138769
|
input: TownsquareWatchGoalInput;
|
|
138734
138770
|
};
|
|
138771
|
+
export declare type TownsquareNumberCustomField = TownsquareCustomFieldNode & {
|
|
138772
|
+
__typename?: 'TownsquareNumberCustomField';
|
|
138773
|
+
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
138774
|
+
creator?: Maybe<User>;
|
|
138775
|
+
definition?: Maybe<TownsquareCustomFieldDefinition>;
|
|
138776
|
+
lastModifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
138777
|
+
uuid?: Maybe<Scalars['UUID']['output']>;
|
|
138778
|
+
};
|
|
138735
138779
|
export declare type TownsquareNumberCustomFieldDefinition = Node & TownsquareCustomFieldDefinitionNode & {
|
|
138736
138780
|
__typename?: 'TownsquareNumberCustomFieldDefinition';
|
|
138737
138781
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -138752,6 +138796,7 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
138752
138796
|
comments?: Maybe<TownsquareCommentConnection>;
|
|
138753
138797
|
contributors?: Maybe<TownsquareContributorConnection>;
|
|
138754
138798
|
creationDate?: Maybe<Scalars['Date']['output']>;
|
|
138799
|
+
customFields?: Maybe<TownsquareCustomFieldConnection>;
|
|
138755
138800
|
dependencies?: Maybe<TownsquareProjectDependencyConnection>;
|
|
138756
138801
|
description?: Maybe<TownsquareProjectDescription>;
|
|
138757
138802
|
draftUpdate?: Maybe<TownsquareDraftUpdate>;
|
|
@@ -138817,6 +138862,11 @@ export declare type TownsquareProjectContributorsArgs = {
|
|
|
138817
138862
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
138818
138863
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
138819
138864
|
};
|
|
138865
|
+
export declare type TownsquareProjectCustomFieldsArgs = {
|
|
138866
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
138867
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
138868
|
+
includedCustomFieldIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
138869
|
+
};
|
|
138820
138870
|
export declare type TownsquareProjectDependenciesArgs = {
|
|
138821
138871
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
138822
138872
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -139743,6 +139793,14 @@ export declare type TownsquareTeamEdge = {
|
|
|
139743
139793
|
cursor: Scalars['String']['output'];
|
|
139744
139794
|
node?: Maybe<TeamV2>;
|
|
139745
139795
|
};
|
|
139796
|
+
export declare type TownsquareTextCustomField = TownsquareCustomFieldNode & {
|
|
139797
|
+
__typename?: 'TownsquareTextCustomField';
|
|
139798
|
+
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
139799
|
+
creator?: Maybe<User>;
|
|
139800
|
+
definition?: Maybe<TownsquareCustomFieldDefinition>;
|
|
139801
|
+
lastModifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
139802
|
+
uuid?: Maybe<Scalars['UUID']['output']>;
|
|
139803
|
+
};
|
|
139746
139804
|
export declare type TownsquareTextCustomFieldDefinition = Node & TownsquareCustomFieldDefinitionNode & {
|
|
139747
139805
|
__typename?: 'TownsquareTextCustomFieldDefinition';
|
|
139748
139806
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -139755,6 +139813,14 @@ export declare type TownsquareTextCustomFieldDefinition = Node & TownsquareCusto
|
|
|
139755
139813
|
token?: Maybe<Scalars['String']['output']>;
|
|
139756
139814
|
type?: Maybe<TownsquareCustomFieldType>;
|
|
139757
139815
|
};
|
|
139816
|
+
export declare type TownsquareTextSelectCustomField = TownsquareCustomFieldNode & {
|
|
139817
|
+
__typename?: 'TownsquareTextSelectCustomField';
|
|
139818
|
+
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
139819
|
+
creator?: Maybe<User>;
|
|
139820
|
+
definition?: Maybe<TownsquareCustomFieldDefinition>;
|
|
139821
|
+
lastModifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
139822
|
+
uuid?: Maybe<Scalars['UUID']['output']>;
|
|
139823
|
+
};
|
|
139758
139824
|
export declare type TownsquareTextSelectCustomFieldDefinition = Node & TownsquareCustomFieldDefinitionNode & {
|
|
139759
139825
|
__typename?: 'TownsquareTextSelectCustomFieldDefinition';
|
|
139760
139826
|
canSetMultipleValues?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -139859,6 +139925,19 @@ export declare type TownsquareUserConnection = {
|
|
|
139859
139925
|
edges?: Maybe<Array<Maybe<TownsquareUserEdge>>>;
|
|
139860
139926
|
pageInfo: PageInfo;
|
|
139861
139927
|
};
|
|
139928
|
+
export declare type TownsquareUserCustomField = TownsquareCustomFieldNode & {
|
|
139929
|
+
__typename?: 'TownsquareUserCustomField';
|
|
139930
|
+
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
139931
|
+
creator?: Maybe<User>;
|
|
139932
|
+
definition?: Maybe<TownsquareCustomFieldDefinition>;
|
|
139933
|
+
lastModifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
139934
|
+
uuid?: Maybe<Scalars['UUID']['output']>;
|
|
139935
|
+
values?: Maybe<TownsquareUserConnection>;
|
|
139936
|
+
};
|
|
139937
|
+
export declare type TownsquareUserCustomFieldValuesArgs = {
|
|
139938
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
139939
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
139940
|
+
};
|
|
139862
139941
|
export declare type TownsquareUserCustomFieldDefinition = Node & TownsquareCustomFieldDefinitionNode & {
|
|
139863
139942
|
__typename?: 'TownsquareUserCustomFieldDefinition';
|
|
139864
139943
|
canSetMultipleValues?: Maybe<Scalars['Boolean']['output']>;
|