@forge/cli-shared 8.11.1-next.2-experimental-2969aa0 → 8.11.1-next.2-experimental-e14a289
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
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 8.11.1-next.2-experimental-
|
|
3
|
+
## 8.11.1-next.2-experimental-e14a289
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 475e2ec: Added global proxy setting for running CLI commands behind a proxy
|
|
4
8
|
|
|
5
9
|
### Patch Changes
|
|
6
10
|
|
|
7
11
|
- 8b24052: fix bug in forge containers tunnel docker compose logic
|
|
8
12
|
- Updated dependencies [c7544d8]
|
|
9
13
|
- Updated dependencies [7c2186c]
|
|
10
|
-
- @forge/manifest@11.3.0-next.1-experimental-
|
|
14
|
+
- @forge/manifest@11.3.0-next.1-experimental-e14a289
|
|
11
15
|
|
|
12
16
|
## 8.11.1-next.2
|
|
13
17
|
|
|
@@ -5502,6 +5502,14 @@ export declare type AssetsDmCleansingStatisticsResponse = {
|
|
|
5502
5502
|
filteredReasons: Scalars['Int']['output'];
|
|
5503
5503
|
objects: Array<AssetsDmCleansingStatisticsObjectData>;
|
|
5504
5504
|
};
|
|
5505
|
+
export declare type AssetsDmCreateCleansingReasonInput = {
|
|
5506
|
+
reason: Scalars['String']['input'];
|
|
5507
|
+
};
|
|
5508
|
+
export declare type AssetsDmCreateCleansingReasonResponse = {
|
|
5509
|
+
__typename?: 'AssetsDMCreateCleansingReasonResponse';
|
|
5510
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
5511
|
+
message: Scalars['String']['output'];
|
|
5512
|
+
};
|
|
5505
5513
|
export declare type AssetsDmCreateDataSourceTypeInput = {
|
|
5506
5514
|
defaultGap?: InputMaybe<Scalars['Int']['input']>;
|
|
5507
5515
|
name: Scalars['String']['input'];
|
|
@@ -24044,6 +24052,8 @@ export declare type CplsDeleteContributorWorkAssociationPayload = Payload & {
|
|
|
24044
24052
|
export declare type CplsFilterConfiguration = {
|
|
24045
24053
|
__typename?: 'CplsFilterConfiguration';
|
|
24046
24054
|
contributorDataEntities?: Maybe<CplsContributorDataEntityConnection>;
|
|
24055
|
+
customContributionTargets?: Maybe<CplsCustomContributionTargetConnection>;
|
|
24056
|
+
jiraWorkItems?: Maybe<CplsJiraWorkItemConnection>;
|
|
24047
24057
|
};
|
|
24048
24058
|
export declare type CplsFilterConfigurationContributorDataEntitiesArgs = {
|
|
24049
24059
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -24051,15 +24061,47 @@ export declare type CplsFilterConfigurationContributorDataEntitiesArgs = {
|
|
|
24051
24061
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24052
24062
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
24053
24063
|
};
|
|
24064
|
+
export declare type CplsFilterConfigurationCustomContributionTargetsArgs = {
|
|
24065
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
24066
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
24067
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24068
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
24069
|
+
};
|
|
24070
|
+
export declare type CplsFilterConfigurationJiraWorkItemsArgs = {
|
|
24071
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
24072
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
24073
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24074
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
24075
|
+
};
|
|
24054
24076
|
export declare type CplsFilterConfigurationType = CplsFilterConfiguration | QueryError;
|
|
24055
24077
|
export declare type CplsFilters = {
|
|
24056
24078
|
__typename?: 'CplsFilters';
|
|
24057
24079
|
contributorDataIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
24080
|
+
customContributionTargets?: Maybe<Array<Scalars['ID']['output']>>;
|
|
24081
|
+
jiraWorkItems?: Maybe<Array<Scalars['ID']['output']>>;
|
|
24082
|
+
workTypes?: Maybe<Array<CplsWorkType>>;
|
|
24058
24083
|
};
|
|
24059
24084
|
export declare type CplsFiltersInput = {
|
|
24060
24085
|
contributorDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
24086
|
+
customContributionTargets?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
24087
|
+
jiraWorkItems?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
24061
24088
|
workTypes?: InputMaybe<Array<CplsWorkType>>;
|
|
24062
24089
|
};
|
|
24090
|
+
export declare type CplsJiraWorkItem = {
|
|
24091
|
+
__typename?: 'CplsJiraWorkItem';
|
|
24092
|
+
jiraWorkItem?: Maybe<JiraIssue>;
|
|
24093
|
+
jiraWorkItemId: Scalars['ID']['output'];
|
|
24094
|
+
};
|
|
24095
|
+
export declare type CplsJiraWorkItemConnection = HasPageInfo & {
|
|
24096
|
+
__typename?: 'CplsJiraWorkItemConnection';
|
|
24097
|
+
edges?: Maybe<Array<CplsJiraWorkItemEdge>>;
|
|
24098
|
+
pageInfo: PageInfo;
|
|
24099
|
+
};
|
|
24100
|
+
export declare type CplsJiraWorkItemEdge = {
|
|
24101
|
+
__typename?: 'CplsJiraWorkItemEdge';
|
|
24102
|
+
cursor: Scalars['String']['output'];
|
|
24103
|
+
node?: Maybe<CplsJiraWorkItem>;
|
|
24104
|
+
};
|
|
24063
24105
|
export declare type CplsMutationErrorExtension = MutationErrorExtension & {
|
|
24064
24106
|
__typename?: 'CplsMutationErrorExtension';
|
|
24065
24107
|
errorId?: Maybe<Scalars['String']['output']>;
|
|
@@ -28121,6 +28163,7 @@ export declare type DevAiRovoDevSession = Node & {
|
|
|
28121
28163
|
repository?: Maybe<DevAiRovoDevRepository>;
|
|
28122
28164
|
sandboxStatus?: Maybe<DevAiRovoDevSandboxStatus>;
|
|
28123
28165
|
sessionStatus?: Maybe<DevAiRovoDevSessionStatus>;
|
|
28166
|
+
sessionTitle?: Maybe<Scalars['String']['output']>;
|
|
28124
28167
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
28125
28168
|
workspaceAri?: Maybe<Scalars['ID']['output']>;
|
|
28126
28169
|
};
|
|
@@ -37887,6 +37930,7 @@ export declare type GraphStore = {
|
|
|
37887
37930
|
askHasSubmitterInverse?: Maybe<GraphStoreSimplifiedAskHasSubmitterInverseConnection>;
|
|
37888
37931
|
askHasSubmittingTeam?: Maybe<GraphStoreSimplifiedAskHasSubmittingTeamConnection>;
|
|
37889
37932
|
askHasSubmittingTeamInverse?: Maybe<GraphStoreSimplifiedAskHasSubmittingTeamInverseConnection>;
|
|
37933
|
+
atlasGoalHasAtlasTagInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasAtlasTagInverseConnection>;
|
|
37890
37934
|
atlasGoalHasContributor?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorConnection>;
|
|
37891
37935
|
atlasGoalHasContributorInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorInverseConnection>;
|
|
37892
37936
|
atlasGoalHasFollower?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerConnection>;
|
|
@@ -37910,6 +37954,7 @@ export declare type GraphStore = {
|
|
|
37910
37954
|
atlasProjectContributesToAtlasGoalRelationship?: Maybe<GraphStoreFullAtlasProjectContributesToAtlasGoalConnection>;
|
|
37911
37955
|
atlasProjectDependsOnAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectConnection>;
|
|
37912
37956
|
atlasProjectDependsOnAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverseConnection>;
|
|
37957
|
+
atlasProjectHasAtlasTagInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasAtlasTagInverseConnection>;
|
|
37913
37958
|
atlasProjectHasContributor?: Maybe<GraphStoreSimplifiedAtlasProjectHasContributorConnection>;
|
|
37914
37959
|
atlasProjectHasContributorInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasContributorInverseConnection>;
|
|
37915
37960
|
atlasProjectHasFollower?: Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerConnection>;
|
|
@@ -38855,6 +38900,14 @@ export declare type GraphStoreAskHasSubmittingTeamInverseArgs = {
|
|
|
38855
38900
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
38856
38901
|
sort?: InputMaybe<GraphStoreAskHasSubmittingTeamSortInput>;
|
|
38857
38902
|
};
|
|
38903
|
+
export declare type GraphStoreAtlasGoalHasAtlasTagInverseArgs = {
|
|
38904
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38905
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38906
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38907
|
+
id: Scalars['ID']['input'];
|
|
38908
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
38909
|
+
sort?: InputMaybe<GraphStoreAtlasGoalHasAtlasTagSortInput>;
|
|
38910
|
+
};
|
|
38858
38911
|
export declare type GraphStoreAtlasGoalHasContributorArgs = {
|
|
38859
38912
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
38860
38913
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -39029,6 +39082,14 @@ export declare type GraphStoreAtlasProjectDependsOnAtlasProjectInverseArgs = {
|
|
|
39029
39082
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
39030
39083
|
sort?: InputMaybe<GraphStoreAtlasProjectDependsOnAtlasProjectSortInput>;
|
|
39031
39084
|
};
|
|
39085
|
+
export declare type GraphStoreAtlasProjectHasAtlasTagInverseArgs = {
|
|
39086
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39087
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39088
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39089
|
+
id: Scalars['ID']['input'];
|
|
39090
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
39091
|
+
sort?: InputMaybe<GraphStoreAtlasProjectHasAtlasTagSortInput>;
|
|
39092
|
+
};
|
|
39032
39093
|
export declare type GraphStoreAtlasProjectHasContributorArgs = {
|
|
39033
39094
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
39034
39095
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -45526,6 +45587,9 @@ export declare type GraphStoreAtiFilterInput = {
|
|
|
45526
45587
|
is?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
45527
45588
|
isNot?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
45528
45589
|
};
|
|
45590
|
+
export declare type GraphStoreAtlasGoalHasAtlasTagSortInput = {
|
|
45591
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45592
|
+
};
|
|
45529
45593
|
export declare type GraphStoreAtlasGoalHasContributorSortInput = {
|
|
45530
45594
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45531
45595
|
};
|
|
@@ -45601,6 +45665,9 @@ export declare type GraphStoreAtlasProjectContributesToAtlasGoalSortInput = {
|
|
|
45601
45665
|
export declare type GraphStoreAtlasProjectDependsOnAtlasProjectSortInput = {
|
|
45602
45666
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45603
45667
|
};
|
|
45668
|
+
export declare type GraphStoreAtlasProjectHasAtlasTagSortInput = {
|
|
45669
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45670
|
+
};
|
|
45604
45671
|
export declare type GraphStoreAtlasProjectHasContributorSortInput = {
|
|
45605
45672
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45606
45673
|
};
|
|
@@ -53055,6 +53122,20 @@ export declare type GraphStoreSimplifiedAskHasSubmittingTeamInverseEdge = {
|
|
|
53055
53122
|
};
|
|
53056
53123
|
export declare type GraphStoreSimplifiedAskHasSubmittingTeamInverseUnion = SpfAsk;
|
|
53057
53124
|
export declare type GraphStoreSimplifiedAskHasSubmittingTeamUnion = TeamV2;
|
|
53125
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasAtlasTagInverseConnection = HasPageInfo & {
|
|
53126
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasAtlasTagInverseConnection';
|
|
53127
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasAtlasTagInverseEdge>>>;
|
|
53128
|
+
pageInfo: PageInfo;
|
|
53129
|
+
};
|
|
53130
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasAtlasTagInverseEdge = {
|
|
53131
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasAtlasTagInverseEdge';
|
|
53132
|
+
createdAt: Scalars['DateTime']['output'];
|
|
53133
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
53134
|
+
id: Scalars['ID']['output'];
|
|
53135
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
53136
|
+
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasAtlasTagInverseUnion>;
|
|
53137
|
+
};
|
|
53138
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasAtlasTagInverseUnion = TownsquareGoal;
|
|
53058
53139
|
export declare type GraphStoreSimplifiedAtlasGoalHasContributorConnection = HasPageInfo & {
|
|
53059
53140
|
__typename?: 'GraphStoreSimplifiedAtlasGoalHasContributorConnection';
|
|
53060
53141
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasContributorEdge>>>;
|
|
@@ -53279,6 +53360,20 @@ export declare type GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverse
|
|
|
53279
53360
|
};
|
|
53280
53361
|
export declare type GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverseUnion = TownsquareProject;
|
|
53281
53362
|
export declare type GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectUnion = TownsquareProject;
|
|
53363
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasAtlasTagInverseConnection = HasPageInfo & {
|
|
53364
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasAtlasTagInverseConnection';
|
|
53365
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasAtlasTagInverseEdge>>>;
|
|
53366
|
+
pageInfo: PageInfo;
|
|
53367
|
+
};
|
|
53368
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasAtlasTagInverseEdge = {
|
|
53369
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasAtlasTagInverseEdge';
|
|
53370
|
+
createdAt: Scalars['DateTime']['output'];
|
|
53371
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
53372
|
+
id: Scalars['ID']['output'];
|
|
53373
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
53374
|
+
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasAtlasTagInverseUnion>;
|
|
53375
|
+
};
|
|
53376
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasAtlasTagInverseUnion = TownsquareProject;
|
|
53282
53377
|
export declare type GraphStoreSimplifiedAtlasProjectHasContributorConnection = HasPageInfo & {
|
|
53283
53378
|
__typename?: 'GraphStoreSimplifiedAtlasProjectHasContributorConnection';
|
|
53284
53379
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasContributorEdge>>>;
|
|
@@ -90490,6 +90585,8 @@ export declare enum JsmConversationMessageSource {
|
|
|
90490
90585
|
}
|
|
90491
90586
|
export declare enum JsmConversationStatus {
|
|
90492
90587
|
Closed = "CLOSED",
|
|
90588
|
+
InProgress = "IN_PROGRESS",
|
|
90589
|
+
Missed = "MISSED",
|
|
90493
90590
|
Requested = "REQUESTED",
|
|
90494
90591
|
Unassigned = "UNASSIGNED"
|
|
90495
90592
|
}
|
|
@@ -99859,6 +99956,7 @@ export declare type Mutation = {
|
|
|
99859
99956
|
assetsDM_autoColumnMapping?: Maybe<AssetsDmAutoColumnMappingResponse>;
|
|
99860
99957
|
assetsDM_configureDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
|
|
99861
99958
|
assetsDM_configureDefaultDataSourceMapping?: Maybe<Array<AssetsDmDataSourceMapping>>;
|
|
99959
|
+
assetsDM_createCleansingReason?: Maybe<AssetsDmCreateCleansingReasonResponse>;
|
|
99862
99960
|
assetsDM_createDataSourceType?: Maybe<AssetsDmCreateDataSourceTypeResponse>;
|
|
99863
99961
|
assetsDM_createObjectTag?: Maybe<AssetsDmObjectTagCreateResponse>;
|
|
99864
99962
|
assetsDM_createObjectsListExportRequest?: Maybe<AssetsDmObjectsListExportRequestCreateResponse>;
|
|
@@ -100939,6 +101037,11 @@ export declare type MutationAssetsDm_ConfigureDefaultDataSourceMappingArgs = {
|
|
|
100939
101037
|
objectClassName: Scalars['String']['input'];
|
|
100940
101038
|
workspaceId: Scalars['ID']['input'];
|
|
100941
101039
|
};
|
|
101040
|
+
export declare type MutationAssetsDm_CreateCleansingReasonArgs = {
|
|
101041
|
+
cloudId: Scalars['ID']['input'];
|
|
101042
|
+
input: AssetsDmCreateCleansingReasonInput;
|
|
101043
|
+
workspaceId: Scalars['ID']['input'];
|
|
101044
|
+
};
|
|
100942
101045
|
export declare type MutationAssetsDm_CreateDataSourceTypeArgs = {
|
|
100943
101046
|
cloudId: Scalars['String']['input'];
|
|
100944
101047
|
input: AssetsDmCreateDataSourceTypeInput;
|
|
@@ -138991,6 +139094,24 @@ export declare type TownsquareCustomFieldNode = {
|
|
|
138991
139094
|
lastModifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
138992
139095
|
uuid?: Maybe<Scalars['UUID']['output']>;
|
|
138993
139096
|
};
|
|
139097
|
+
export declare type TownsquareCustomFieldNumberSavedValueConnection = {
|
|
139098
|
+
__typename?: 'TownsquareCustomFieldNumberSavedValueConnection';
|
|
139099
|
+
edges?: Maybe<Array<Maybe<TownsquareCustomFieldNumberSavedValueEdge>>>;
|
|
139100
|
+
pageInfo: PageInfo;
|
|
139101
|
+
};
|
|
139102
|
+
export declare type TownsquareCustomFieldNumberSavedValueEdge = {
|
|
139103
|
+
__typename?: 'TownsquareCustomFieldNumberSavedValueEdge';
|
|
139104
|
+
cursor: Scalars['String']['output'];
|
|
139105
|
+
node?: Maybe<TownsquareCustomFieldNumberSavedValueNode>;
|
|
139106
|
+
};
|
|
139107
|
+
export declare type TownsquareCustomFieldNumberSavedValueNode = Node & TownsquareCustomFieldSavedValueNode & {
|
|
139108
|
+
__typename?: 'TownsquareCustomFieldNumberSavedValueNode';
|
|
139109
|
+
id: Scalars['ID']['output'];
|
|
139110
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
139111
|
+
};
|
|
139112
|
+
export declare type TownsquareCustomFieldSavedValueNode = {
|
|
139113
|
+
id: Scalars['ID']['output'];
|
|
139114
|
+
};
|
|
138994
139115
|
export declare type TownsquareCustomFieldTextSavedValueConnection = {
|
|
138995
139116
|
__typename?: 'TownsquareCustomFieldTextSavedValueConnection';
|
|
138996
139117
|
edges?: Maybe<Array<Maybe<TownsquareCustomFieldTextSavedValueEdge>>>;
|
|
@@ -139001,7 +139122,7 @@ export declare type TownsquareCustomFieldTextSavedValueEdge = {
|
|
|
139001
139122
|
cursor: Scalars['String']['output'];
|
|
139002
139123
|
node?: Maybe<TownsquareCustomFieldTextSavedValueNode>;
|
|
139003
139124
|
};
|
|
139004
|
-
export declare type TownsquareCustomFieldTextSavedValueNode = Node & {
|
|
139125
|
+
export declare type TownsquareCustomFieldTextSavedValueNode = Node & TownsquareCustomFieldSavedValueNode & {
|
|
139005
139126
|
__typename?: 'TownsquareCustomFieldTextSavedValueNode';
|
|
139006
139127
|
id: Scalars['ID']['output'];
|
|
139007
139128
|
value?: Maybe<Scalars['String']['output']>;
|
|
@@ -140234,6 +140355,7 @@ export declare type TownsquareNumberCustomField = TownsquareCustomFieldNode & {
|
|
|
140234
140355
|
definition?: Maybe<TownsquareCustomFieldDefinition>;
|
|
140235
140356
|
lastModifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
140236
140357
|
uuid?: Maybe<Scalars['UUID']['output']>;
|
|
140358
|
+
value?: Maybe<TownsquareCustomFieldNumberSavedValueNode>;
|
|
140237
140359
|
};
|
|
140238
140360
|
export declare type TownsquareNumberCustomFieldDefinition = Node & TownsquareCustomFieldDefinitionNode & {
|
|
140239
140361
|
__typename?: 'TownsquareNumberCustomFieldDefinition';
|