@forge/cli-shared 8.2.0-next.2 → 8.2.0-next.3
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/file-system/file-system-reader.d.ts.map +1 -1
- package/out/file-system/file-system-reader.js +9 -6
- package/out/graphql/graphql-types.d.ts +59 -0
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +14 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"file-system-reader.d.ts","sourceRoot":"","sources":["../../src/file-system/file-system-reader.ts"],"names":[],"mappings":";;;AAAA,OAAO,EAA4B,MAAM,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"file-system-reader.d.ts","sourceRoot":"","sources":["../../src/file-system/file-system-reader.ts"],"names":[],"mappings":";;;AAAA,OAAO,EAA4B,MAAM,IAAI,CAAC;AAW9C,aAAK,cAAc,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,CAAC,KAAK,KAAK,OAAO,CAAC;AAEjE,qBAAa,gBAAgB;IACpB,UAAU,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO;IAIrC,QAAQ,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS;IAQxC,aAAa,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC;IAS5D,gBAAgB,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,aAAa,CAAC,MAAM,GAAG,cAAc,CAAC,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC;IAgBtG,QAAQ,CAAC,EAAE,OAAO,EAAE,SAAiB,EAAE,EAAE;QAAE,OAAO,EAAE,MAAM,CAAC;QAAC,SAAS,CAAC,EAAE,OAAO,CAAA;KAAE,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC;IAmB3G,mBAAmB,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO;IAI7C,cAAc,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS;IAQ9C,mBAAmB,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC;IASxE,gBAAgB,IAAI,MAAM;IAI1B,SAAS,CAAC,IAAI,EAAE,MAAM,GAAG,SAAS,GAAG,MAAM;IAO3C,OAAO,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS;IAQvC,kBAAkB,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC;IAW/E,OAAO,CAAC,eAAe;IAQV,eAAe,CAAC,QAAQ,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC;CAIpE"}
|
|
@@ -8,6 +8,7 @@ const os_1 = require("os");
|
|
|
8
8
|
const path_1 = tslib_1.__importStar(require("path"));
|
|
9
9
|
const util_1 = require("util");
|
|
10
10
|
const recursive_readdir_1 = tslib_1.__importDefault(require("recursive-readdir"));
|
|
11
|
+
const get_folder_size_1 = tslib_1.__importDefault(require("get-folder-size"));
|
|
11
12
|
const shared_1 = require("../shared");
|
|
12
13
|
const FILE_NOT_FOUND_CODE = 'ENOENT';
|
|
13
14
|
class FileSystemReader {
|
|
@@ -96,12 +97,14 @@ class FileSystemReader {
|
|
|
96
97
|
}
|
|
97
98
|
}
|
|
98
99
|
async getFolderSizeAsync(directory) {
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
100
|
+
return new Promise((resolve) => {
|
|
101
|
+
(0, get_folder_size_1.default)(directory, (err, size) => {
|
|
102
|
+
if (err) {
|
|
103
|
+
resolve(undefined);
|
|
104
|
+
}
|
|
105
|
+
return resolve(size);
|
|
106
|
+
});
|
|
107
|
+
});
|
|
105
108
|
}
|
|
106
109
|
handleFileError(error) {
|
|
107
110
|
if (error && error.code === FILE_NOT_FOUND_CODE) {
|
|
@@ -56658,12 +56658,14 @@ export declare enum JiraDeploymentsFeaturePrecondition {
|
|
|
56658
56658
|
}
|
|
56659
56659
|
export declare type JiraDetailedView = JiraIssueSearchViewMetadata & JiraView & Node & {
|
|
56660
56660
|
__typename?: 'JiraDetailedView';
|
|
56661
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
56661
56662
|
error?: Maybe<QueryError>;
|
|
56662
56663
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
56663
56664
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
56664
56665
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
56665
56666
|
id: Scalars['ID']['output'];
|
|
56666
56667
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
56668
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
56667
56669
|
issues?: Maybe<JiraIssueConnection>;
|
|
56668
56670
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
56669
56671
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -56680,6 +56682,9 @@ export declare type JiraDetailedViewFieldSetsArgs = {
|
|
|
56680
56682
|
export declare type JiraDetailedViewHasDefaultFieldSetsArgs = {
|
|
56681
56683
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
56682
56684
|
};
|
|
56685
|
+
export declare type JiraDetailedViewIsViewConfigModifiedArgs = {
|
|
56686
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
56687
|
+
};
|
|
56683
56688
|
export declare type JiraDetailedViewIssuesArgs = {
|
|
56684
56689
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
56685
56690
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -58427,6 +58432,7 @@ export declare type JiraGroupInput = {
|
|
|
58427
58432
|
};
|
|
58428
58433
|
export declare type JiraGroupedListView = JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
58429
58434
|
__typename?: 'JiraGroupedListView';
|
|
58435
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
58430
58436
|
error?: Maybe<QueryError>;
|
|
58431
58437
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
58432
58438
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
@@ -58434,6 +58440,7 @@ export declare type JiraGroupedListView = JiraIssueSearchViewMetadata & JiraSpre
|
|
|
58434
58440
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
58435
58441
|
id: Scalars['ID']['output'];
|
|
58436
58442
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
58443
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
58437
58444
|
jql?: Maybe<Scalars['String']['output']>;
|
|
58438
58445
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
58439
58446
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -58463,6 +58470,9 @@ export declare type JiraGroupedListViewGroupsArgs = {
|
|
|
58463
58470
|
export declare type JiraGroupedListViewHasDefaultFieldSetsArgs = {
|
|
58464
58471
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
58465
58472
|
};
|
|
58473
|
+
export declare type JiraGroupedListViewIsViewConfigModifiedArgs = {
|
|
58474
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
58475
|
+
};
|
|
58466
58476
|
export declare type JiraGroupedListViewViewSettingsArgs = {
|
|
58467
58477
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
58468
58478
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -60061,12 +60071,15 @@ export declare type JiraIssueSearchStatus = {
|
|
|
60061
60071
|
};
|
|
60062
60072
|
export declare type JiraIssueSearchView = JiraIssueSearchViewMetadata & Node & {
|
|
60063
60073
|
__typename?: 'JiraIssueSearchView';
|
|
60074
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
60064
60075
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
60065
60076
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
60066
60077
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
60067
60078
|
id: Scalars['ID']['output'];
|
|
60068
60079
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
60080
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
60069
60081
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
60082
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
60070
60083
|
viewConfigSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
60071
60084
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
60072
60085
|
};
|
|
@@ -60081,6 +60094,9 @@ export declare type JiraIssueSearchViewFieldSetsArgs = {
|
|
|
60081
60094
|
export declare type JiraIssueSearchViewHasDefaultFieldSetsArgs = {
|
|
60082
60095
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
60083
60096
|
};
|
|
60097
|
+
export declare type JiraIssueSearchViewIsViewConfigModifiedArgs = {
|
|
60098
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
60099
|
+
};
|
|
60084
60100
|
export declare type JiraIssueSearchViewViewConfigSettingsArgs = {
|
|
60085
60101
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
60086
60102
|
};
|
|
@@ -60152,12 +60168,15 @@ export declare enum JiraIssueSearchViewLayout {
|
|
|
60152
60168
|
List = "LIST"
|
|
60153
60169
|
}
|
|
60154
60170
|
export declare type JiraIssueSearchViewMetadata = {
|
|
60171
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
60155
60172
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
60156
60173
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
60157
60174
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
60158
60175
|
id: Scalars['ID']['output'];
|
|
60159
60176
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
60177
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
60160
60178
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
60179
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
60161
60180
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
60162
60181
|
};
|
|
60163
60182
|
export declare type JiraIssueSearchViewMetadataFieldSetsArgs = {
|
|
@@ -60171,6 +60190,9 @@ export declare type JiraIssueSearchViewMetadataFieldSetsArgs = {
|
|
|
60171
60190
|
export declare type JiraIssueSearchViewMetadataHasDefaultFieldSetsArgs = {
|
|
60172
60191
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
60173
60192
|
};
|
|
60193
|
+
export declare type JiraIssueSearchViewMetadataIsViewConfigModifiedArgs = {
|
|
60194
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
60195
|
+
};
|
|
60174
60196
|
export declare type JiraIssueSearchViewPayload = Payload & {
|
|
60175
60197
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
60176
60198
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -61398,12 +61420,14 @@ export declare type JiraLinkedIssuesInput = {
|
|
|
61398
61420
|
};
|
|
61399
61421
|
export declare type JiraListView = JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
61400
61422
|
__typename?: 'JiraListView';
|
|
61423
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
61401
61424
|
error?: Maybe<QueryError>;
|
|
61402
61425
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
61403
61426
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
61404
61427
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
61405
61428
|
id: Scalars['ID']['output'];
|
|
61406
61429
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
61430
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
61407
61431
|
issues?: Maybe<JiraIssueConnection>;
|
|
61408
61432
|
jql?: Maybe<Scalars['String']['output']>;
|
|
61409
61433
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
@@ -61423,6 +61447,9 @@ export declare type JiraListViewFieldSetsArgs = {
|
|
|
61423
61447
|
export declare type JiraListViewHasDefaultFieldSetsArgs = {
|
|
61424
61448
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61425
61449
|
};
|
|
61450
|
+
export declare type JiraListViewIsViewConfigModifiedArgs = {
|
|
61451
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
61452
|
+
};
|
|
61426
61453
|
export declare type JiraListViewIssuesArgs = {
|
|
61427
61454
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61428
61455
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -68987,14 +69014,17 @@ export declare type JiraSpreadsheetGroupEdge = {
|
|
|
68987
69014
|
};
|
|
68988
69015
|
export declare type JiraSpreadsheetGroupFieldValue = JiraGoal | JiraOption | JiraPriority | JiraStatus | JiraStoryPoint;
|
|
68989
69016
|
export declare type JiraSpreadsheetView = {
|
|
69017
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
68990
69018
|
error?: Maybe<QueryError>;
|
|
68991
69019
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
68992
69020
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
68993
69021
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
68994
69022
|
id: Scalars['ID']['output'];
|
|
68995
69023
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
69024
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
68996
69025
|
jql?: Maybe<Scalars['String']['output']>;
|
|
68997
69026
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
69027
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
68998
69028
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
68999
69029
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
69000
69030
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
@@ -69010,6 +69040,9 @@ export declare type JiraSpreadsheetViewFieldSetsArgs = {
|
|
|
69010
69040
|
export declare type JiraSpreadsheetViewHasDefaultFieldSetsArgs = {
|
|
69011
69041
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
69012
69042
|
};
|
|
69043
|
+
export declare type JiraSpreadsheetViewIsViewConfigModifiedArgs = {
|
|
69044
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
69045
|
+
};
|
|
69013
69046
|
export declare type JiraSpreadsheetViewViewSettingsArgs = {
|
|
69014
69047
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
69015
69048
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -84480,6 +84513,7 @@ export declare type Query = {
|
|
|
84480
84513
|
devai_flowSessionResume?: Maybe<DevAiFlowPipeline>;
|
|
84481
84514
|
devai_flowSessionsByCreatorAndCloudId?: Maybe<Array<Maybe<DevAiFlowSession>>>;
|
|
84482
84515
|
devai_flowSessionsByIssueKeyAndCloudId?: Maybe<DevAiFlowSessionConnection>;
|
|
84516
|
+
devai_getPrefillRepoUrlForFlow?: Maybe<DevAiFlowRepository>;
|
|
84483
84517
|
devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
|
|
84484
84518
|
devai_rovoDevAgentsWorkspace?: Maybe<DevAiWorkspace>;
|
|
84485
84519
|
devai_technicalPlannerJobById?: Maybe<DevAiTechnicalPlannerJob>;
|
|
@@ -84557,6 +84591,7 @@ export declare type Query = {
|
|
|
84557
84591
|
helpObjectStore_searchPortals?: Maybe<HelpObjectStorePortalSearchResponse>;
|
|
84558
84592
|
helpObjectStore_searchRequestTypes?: Maybe<HelpObjectStoreRequestTypeSearchResponse>;
|
|
84559
84593
|
homeUserSettings?: Maybe<HomeUserSettings>;
|
|
84594
|
+
home_tagSearch?: Maybe<TownsquareTagConnection>;
|
|
84560
84595
|
identity_groupsByIds?: Maybe<Array<IdentityGroup>>;
|
|
84561
84596
|
incomingLinksCount?: Maybe<IncomingLinksCount>;
|
|
84562
84597
|
inlineTasks?: Maybe<InlineTasksQueryResult>;
|
|
@@ -85888,6 +85923,10 @@ export declare type QueryDevai_FlowSessionsByIssueKeyAndCloudIdArgs = {
|
|
|
85888
85923
|
issueKey: Scalars['String']['input'];
|
|
85889
85924
|
statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
|
|
85890
85925
|
};
|
|
85926
|
+
export declare type QueryDevai_GetPrefillRepoUrlForFlowArgs = {
|
|
85927
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
85928
|
+
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
85929
|
+
};
|
|
85891
85930
|
export declare type QueryDevai_RovoDevAgentsUserArgs = {
|
|
85892
85931
|
atlassianAccountId?: InputMaybe<Scalars['ID']['input']>;
|
|
85893
85932
|
cloudId: Scalars['ID']['input'];
|
|
@@ -86156,6 +86195,13 @@ export declare type QueryHelpObjectStore_SearchRequestTypesArgs = {
|
|
|
86156
86195
|
portalId?: InputMaybe<Scalars['String']['input']>;
|
|
86157
86196
|
queryTerm: Scalars['String']['input'];
|
|
86158
86197
|
};
|
|
86198
|
+
export declare type QueryHome_TagSearchArgs = {
|
|
86199
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86200
|
+
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
86201
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86202
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
86203
|
+
sort?: InputMaybe<Array<InputMaybe<TownsquareTagSortEnum>>>;
|
|
86204
|
+
};
|
|
86159
86205
|
export declare type QueryIdentity_GroupsByIdsArgs = {
|
|
86160
86206
|
ids: Array<Scalars['ID']['input']>;
|
|
86161
86207
|
};
|
|
@@ -93180,6 +93226,7 @@ export declare type SpfAskLink = {
|
|
|
93180
93226
|
attachedByUserId?: Maybe<Scalars['String']['output']>;
|
|
93181
93227
|
attachedDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
93182
93228
|
id: Scalars['ID']['output'];
|
|
93229
|
+
linkText?: Maybe<Scalars['String']['output']>;
|
|
93183
93230
|
url: Scalars['URL']['output'];
|
|
93184
93231
|
};
|
|
93185
93232
|
export declare type SpfAskLinkConnection = {
|
|
@@ -93233,6 +93280,7 @@ export declare type SpfAskTransition = {
|
|
|
93233
93280
|
};
|
|
93234
93281
|
export declare type SpfAttachAskLinkInput = {
|
|
93235
93282
|
askId: Scalars['ID']['input'];
|
|
93283
|
+
linkText?: InputMaybe<Scalars['String']['input']>;
|
|
93236
93284
|
url: Scalars['URL']['input'];
|
|
93237
93285
|
};
|
|
93238
93286
|
export declare type SpfAttachAskLinkPayload = Payload & {
|
|
@@ -96007,6 +96055,17 @@ export declare type TownsquareTagEdge = {
|
|
|
96007
96055
|
cursor: Scalars['String']['output'];
|
|
96008
96056
|
node?: Maybe<TownsquareTag>;
|
|
96009
96057
|
};
|
|
96058
|
+
export declare enum TownsquareTagSortEnum {
|
|
96059
|
+
EntityCountDesc = "ENTITY_COUNT_DESC",
|
|
96060
|
+
IdAsc = "ID_ASC",
|
|
96061
|
+
IdDesc = "ID_DESC",
|
|
96062
|
+
NameAsc = "NAME_ASC",
|
|
96063
|
+
NameDesc = "NAME_DESC",
|
|
96064
|
+
UsageAsc = "USAGE_ASC",
|
|
96065
|
+
UsageDesc = "USAGE_DESC",
|
|
96066
|
+
WatcherAsc = "WATCHER_ASC",
|
|
96067
|
+
WatcherDesc = "WATCHER_DESC"
|
|
96068
|
+
}
|
|
96010
96069
|
export declare type TownsquareTargetDate = {
|
|
96011
96070
|
__typename?: 'TownsquareTargetDate';
|
|
96012
96071
|
confidence?: Maybe<TownsquareTargetDateType>;
|