@forge/cli-shared 6.8.0-next.7 → 6.8.0-next.8-experimental-900adc2
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 +29 -0
- package/out/graphql/graphql-types.d.ts +123 -3
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +28 -19
- package/out/ui/text.js +11 -11
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.8.0-next.8-experimental-900adc2
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- d156658: Switch the `forge create` flow to select product context first
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 2cdac63: forge install should list all scopes
|
|
12
|
+
- 9d231e9: switch the `forge create` cross-context flow to use the new `app.contexts` manifest format
|
|
13
|
+
- 0aad197: Change product wording to context
|
|
14
|
+
- 999a9d0: Update error messages for deployment
|
|
15
|
+
- b503084: switch the `forge create` cross-context flow to use the new `app.contexts` manifest format
|
|
16
|
+
- 210360b: Refactor text functions for easier read and maintenance
|
|
17
|
+
- a7db2e6: improve error message
|
|
18
|
+
- Updated dependencies [9d231e9]
|
|
19
|
+
- Updated dependencies [94e48b9]
|
|
20
|
+
- Updated dependencies [b503084]
|
|
21
|
+
- Updated dependencies [64daaa5]
|
|
22
|
+
- Updated dependencies [3a703de]
|
|
23
|
+
- Updated dependencies [003b1ed]
|
|
24
|
+
- @forge/manifest@8.9.0-next.3-experimental-900adc2
|
|
25
|
+
|
|
26
|
+
## 6.8.0-next.8
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- 0aad197: Change product wording to context
|
|
31
|
+
|
|
3
32
|
## 6.8.0-next.7
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|
|
@@ -9190,6 +9190,11 @@ export declare type ConfluenceBulkNestedConvertToLiveDocsPayload = {
|
|
|
9190
9190
|
success: Scalars['Boolean']['output'];
|
|
9191
9191
|
taskId: Scalars['ID']['output'];
|
|
9192
9192
|
};
|
|
9193
|
+
export declare type ConfluenceBulkPdfExportContent = {
|
|
9194
|
+
areChildrenIncluded?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9195
|
+
contentId: Scalars['ID']['input'];
|
|
9196
|
+
excludedChildrenIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
9197
|
+
};
|
|
9193
9198
|
export declare type ConfluenceCalendarJqlValidationResult = {
|
|
9194
9199
|
__typename?: 'ConfluenceCalendarJqlValidationResult';
|
|
9195
9200
|
errorMessages?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -9476,6 +9481,24 @@ export declare type ConfluenceCreatePagePropertyPayload = Payload & {
|
|
|
9476
9481
|
pageProperty?: Maybe<ConfluencePageProperty>;
|
|
9477
9482
|
success: Scalars['Boolean']['output'];
|
|
9478
9483
|
};
|
|
9484
|
+
export declare type ConfluenceCreatePdfExportTaskForBulkContentInput = {
|
|
9485
|
+
exportContents: Array<InputMaybe<ConfluenceBulkPdfExportContent>>;
|
|
9486
|
+
};
|
|
9487
|
+
export declare type ConfluenceCreatePdfExportTaskForBulkContentPayload = Payload & {
|
|
9488
|
+
__typename?: 'ConfluenceCreatePdfExportTaskForBulkContentPayload';
|
|
9489
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9490
|
+
exportTaskId: Scalars['ID']['output'];
|
|
9491
|
+
success: Scalars['Boolean']['output'];
|
|
9492
|
+
};
|
|
9493
|
+
export declare type ConfluenceCreatePdfExportTaskForSingleContentInput = {
|
|
9494
|
+
contentId: Scalars['ID']['input'];
|
|
9495
|
+
};
|
|
9496
|
+
export declare type ConfluenceCreatePdfExportTaskForSingleContentPayload = Payload & {
|
|
9497
|
+
__typename?: 'ConfluenceCreatePdfExportTaskForSingleContentPayload';
|
|
9498
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9499
|
+
exportTaskId: Scalars['ID']['output'];
|
|
9500
|
+
success: Scalars['Boolean']['output'];
|
|
9501
|
+
};
|
|
9479
9502
|
export declare type ConfluenceCreateSpaceInput = {
|
|
9480
9503
|
key: Scalars['String']['input'];
|
|
9481
9504
|
name: Scalars['String']['input'];
|
|
@@ -15650,6 +15673,20 @@ export declare type ConfluencePageViewerSummary = {
|
|
|
15650
15673
|
lastContribution?: Maybe<ConfluenceContribution>;
|
|
15651
15674
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
15652
15675
|
};
|
|
15676
|
+
export declare enum ConfluencePdfExportState {
|
|
15677
|
+
Done = "DONE",
|
|
15678
|
+
Failed = "FAILED",
|
|
15679
|
+
InProgress = "IN_PROGRESS",
|
|
15680
|
+
Validating = "VALIDATING"
|
|
15681
|
+
}
|
|
15682
|
+
export declare type ConfluencePdfExportTask = {
|
|
15683
|
+
__typename?: 'ConfluencePdfExportTask';
|
|
15684
|
+
downloadLinkPath?: Maybe<Scalars['String']['output']>;
|
|
15685
|
+
estimatedSecondsRemaining?: Maybe<Scalars['Long']['output']>;
|
|
15686
|
+
exportState: ConfluencePdfExportState;
|
|
15687
|
+
progressPercent?: Maybe<Scalars['Int']['output']>;
|
|
15688
|
+
secondsElapsed?: Maybe<Scalars['Long']['output']>;
|
|
15689
|
+
};
|
|
15653
15690
|
export declare type ConfluencePerson = Person & {
|
|
15654
15691
|
__typename?: 'ConfluencePerson';
|
|
15655
15692
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -30568,6 +30605,8 @@ export declare type GraphStore = {
|
|
|
30568
30605
|
cypherQuery: GraphStoreCypherQueryConnection;
|
|
30569
30606
|
deploymentContainsCommit?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitConnection>;
|
|
30570
30607
|
deploymentContainsCommitInverse?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitInverseConnection>;
|
|
30608
|
+
entityIsRelatedToEntity?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityConnection>;
|
|
30609
|
+
entityIsRelatedToEntityInverse?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityInverseConnection>;
|
|
30571
30610
|
externalWorkerConflatesToIdentity3pUser?: Maybe<GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserConnection>;
|
|
30572
30611
|
fetchAllRelationships: GraphStoreAllRelationshipsConnection;
|
|
30573
30612
|
focusAreaAssociatedToProject?: Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection>;
|
|
@@ -31756,6 +31795,20 @@ export declare type GraphStoreDeploymentContainsCommitInverseArgs = {
|
|
|
31756
31795
|
id: Scalars['ID']['input'];
|
|
31757
31796
|
sort?: InputMaybe<GraphStoreDeploymentContainsCommitSortInput>;
|
|
31758
31797
|
};
|
|
31798
|
+
export declare type GraphStoreEntityIsRelatedToEntityArgs = {
|
|
31799
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31800
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31801
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31802
|
+
id: Scalars['ID']['input'];
|
|
31803
|
+
sort?: InputMaybe<GraphStoreEntityIsRelatedToEntitySortInput>;
|
|
31804
|
+
};
|
|
31805
|
+
export declare type GraphStoreEntityIsRelatedToEntityInverseArgs = {
|
|
31806
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31807
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31808
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31809
|
+
id: Scalars['ID']['input'];
|
|
31810
|
+
sort?: InputMaybe<GraphStoreEntityIsRelatedToEntitySortInput>;
|
|
31811
|
+
};
|
|
31759
31812
|
export declare type GraphStoreExternalWorkerConflatesToIdentity3pUserArgs = {
|
|
31760
31813
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31761
31814
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -37345,6 +37398,9 @@ export declare type GraphStoreDeleteVulnerabilityAssociatedIssueRelationshipInpu
|
|
|
37345
37398
|
export declare type GraphStoreDeploymentContainsCommitSortInput = {
|
|
37346
37399
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37347
37400
|
};
|
|
37401
|
+
export declare type GraphStoreEntityIsRelatedToEntitySortInput = {
|
|
37402
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37403
|
+
};
|
|
37348
37404
|
export declare type GraphStoreExternalWorkerConflatesToIdentity3pUserSortInput = {
|
|
37349
37405
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37350
37406
|
};
|
|
@@ -43045,6 +43101,34 @@ export declare type GraphStoreSimplifiedDeploymentContainsCommitInverseEdge = {
|
|
|
43045
43101
|
};
|
|
43046
43102
|
export declare type GraphStoreSimplifiedDeploymentContainsCommitInverseUnion = DeploymentSummary | ExternalDeployment;
|
|
43047
43103
|
export declare type GraphStoreSimplifiedDeploymentContainsCommitUnion = ExternalCommit;
|
|
43104
|
+
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityConnection = HasPageInfo & {
|
|
43105
|
+
__typename?: 'GraphStoreSimplifiedEntityIsRelatedToEntityConnection';
|
|
43106
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityEdge>>>;
|
|
43107
|
+
pageInfo: PageInfo;
|
|
43108
|
+
};
|
|
43109
|
+
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityEdge = {
|
|
43110
|
+
__typename?: 'GraphStoreSimplifiedEntityIsRelatedToEntityEdge';
|
|
43111
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43112
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43113
|
+
id: Scalars['ID']['output'];
|
|
43114
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43115
|
+
node?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityUnion>;
|
|
43116
|
+
};
|
|
43117
|
+
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityInverseConnection = HasPageInfo & {
|
|
43118
|
+
__typename?: 'GraphStoreSimplifiedEntityIsRelatedToEntityInverseConnection';
|
|
43119
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityInverseEdge>>>;
|
|
43120
|
+
pageInfo: PageInfo;
|
|
43121
|
+
};
|
|
43122
|
+
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityInverseEdge = {
|
|
43123
|
+
__typename?: 'GraphStoreSimplifiedEntityIsRelatedToEntityInverseEdge';
|
|
43124
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43125
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43126
|
+
id: Scalars['ID']['output'];
|
|
43127
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43128
|
+
node?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityInverseUnion>;
|
|
43129
|
+
};
|
|
43130
|
+
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
43131
|
+
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityUnion = ConfluenceBlogPost | ConfluencePage;
|
|
43048
43132
|
export declare type GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserConnection = HasPageInfo & {
|
|
43049
43133
|
__typename?: 'GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserConnection';
|
|
43050
43134
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserEdge>>>;
|
|
@@ -63523,6 +63607,7 @@ export declare type JiraQuery = {
|
|
|
63523
63607
|
resourceUsageMetricByIdV2?: Maybe<JiraResourceUsageMetricV2>;
|
|
63524
63608
|
resourceUsageMetricV2?: Maybe<JiraResourceUsageMetricV2>;
|
|
63525
63609
|
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
63610
|
+
resourceUsageMetricsV2?: Maybe<JiraResourceUsageMetricConnectionV2>;
|
|
63526
63611
|
resourceUsageRecommendationStats?: Maybe<JiraResourceUsageRecommendationStats>;
|
|
63527
63612
|
savedFilters?: Maybe<JiraFilterConnection>;
|
|
63528
63613
|
screenById?: Maybe<Array<Maybe<JiraScreen>>>;
|
|
@@ -64365,6 +64450,13 @@ export declare type JiraQueryResourceUsageMetricsArgs = {
|
|
|
64365
64450
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64366
64451
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
64367
64452
|
};
|
|
64453
|
+
export declare type JiraQueryResourceUsageMetricsV2Args = {
|
|
64454
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
64455
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
64456
|
+
cloudId: Scalars['ID']['input'];
|
|
64457
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64458
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
64459
|
+
};
|
|
64368
64460
|
export declare type JiraQueryResourceUsageRecommendationStatsArgs = {
|
|
64369
64461
|
category: JiraRecommendationCategory;
|
|
64370
64462
|
cloudId: Scalars['ID']['input'];
|
|
@@ -65048,11 +65140,23 @@ export declare type JiraResourceUsageMetricConnection = {
|
|
|
65048
65140
|
pageInfo: PageInfo;
|
|
65049
65141
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
65050
65142
|
};
|
|
65143
|
+
export declare type JiraResourceUsageMetricConnectionV2 = {
|
|
65144
|
+
__typename?: 'JiraResourceUsageMetricConnectionV2';
|
|
65145
|
+
edges?: Maybe<Array<Maybe<JiraResourceUsageMetricEdgeV2>>>;
|
|
65146
|
+
nodes?: Maybe<Array<Maybe<JiraResourceUsageMetricV2>>>;
|
|
65147
|
+
pageInfo: PageInfo;
|
|
65148
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
65149
|
+
};
|
|
65051
65150
|
export declare type JiraResourceUsageMetricEdge = {
|
|
65052
65151
|
__typename?: 'JiraResourceUsageMetricEdge';
|
|
65053
65152
|
cursor: Scalars['String']['output'];
|
|
65054
65153
|
node?: Maybe<JiraResourceUsageMetric>;
|
|
65055
65154
|
};
|
|
65155
|
+
export declare type JiraResourceUsageMetricEdgeV2 = {
|
|
65156
|
+
__typename?: 'JiraResourceUsageMetricEdgeV2';
|
|
65157
|
+
cursor: Scalars['String']['output'];
|
|
65158
|
+
node?: Maybe<JiraResourceUsageMetricV2>;
|
|
65159
|
+
};
|
|
65056
65160
|
export declare type JiraResourceUsageMetricV2 = {
|
|
65057
65161
|
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
65058
65162
|
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
@@ -74034,7 +74138,7 @@ export declare type MercuryChangeProposalCommentsArgs = {
|
|
|
74034
74138
|
export declare type MercuryChangeProposalComment = {
|
|
74035
74139
|
__typename?: 'MercuryChangeProposalComment';
|
|
74036
74140
|
content: Scalars['String']['output'];
|
|
74037
|
-
createdBy
|
|
74141
|
+
createdBy?: Maybe<User>;
|
|
74038
74142
|
createdDate: Scalars['String']['output'];
|
|
74039
74143
|
id: Scalars['ID']['output'];
|
|
74040
74144
|
};
|
|
@@ -74327,6 +74431,7 @@ export declare enum MercuryEntityType {
|
|
|
74327
74431
|
ProgramStatusUpdate = "PROGRAM_STATUS_UPDATE"
|
|
74328
74432
|
}
|
|
74329
74433
|
export declare enum MercuryEventType {
|
|
74434
|
+
Archive = "ARCHIVE",
|
|
74330
74435
|
Create = "CREATE",
|
|
74331
74436
|
CreateUpdate = "CREATE_UPDATE",
|
|
74332
74437
|
Delete = "DELETE",
|
|
@@ -74335,6 +74440,7 @@ export declare enum MercuryEventType {
|
|
|
74335
74440
|
Export = "EXPORT",
|
|
74336
74441
|
Import = "IMPORT",
|
|
74337
74442
|
Link = "LINK",
|
|
74443
|
+
Unarchive = "UNARCHIVE",
|
|
74338
74444
|
Unlink = "UNLINK",
|
|
74339
74445
|
Update = "UPDATE"
|
|
74340
74446
|
}
|
|
@@ -75280,7 +75386,7 @@ export declare type MercuryStrategicEventCommentsArgs = {
|
|
|
75280
75386
|
export declare type MercuryStrategicEventComment = {
|
|
75281
75387
|
__typename?: 'MercuryStrategicEventComment';
|
|
75282
75388
|
content: Scalars['String']['output'];
|
|
75283
|
-
createdBy
|
|
75389
|
+
createdBy?: Maybe<User>;
|
|
75284
75390
|
createdDate: Scalars['String']['output'];
|
|
75285
75391
|
id: Scalars['ID']['output'];
|
|
75286
75392
|
};
|
|
@@ -76107,6 +76213,8 @@ export declare type Mutation = {
|
|
|
76107
76213
|
confluenceV2_updatePage?: Maybe<ConfluenceV2UpdatePagePayload>;
|
|
76108
76214
|
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
76109
76215
|
confluence_createCustomRole?: Maybe<ConfluenceCreateCustomRolePayload>;
|
|
76216
|
+
confluence_createPdfExportTaskForBulkContent?: Maybe<ConfluenceCreatePdfExportTaskForBulkContentPayload>;
|
|
76217
|
+
confluence_createPdfExportTaskForSingleContent?: Maybe<ConfluenceCreatePdfExportTaskForSingleContentPayload>;
|
|
76110
76218
|
confluence_deleteCalendarCustomEventType?: Maybe<ConfluenceDeleteCalendarCustomEventTypePayload>;
|
|
76111
76219
|
confluence_deleteCustomRole?: Maybe<ConfluenceDeleteCustomRolePayload>;
|
|
76112
76220
|
confluence_deleteSubCalendarAllFutureEvents?: Maybe<ConfluenceDeleteSubCalendarAllFutureEventsPayload>;
|
|
@@ -77069,6 +77177,12 @@ export declare type MutationConfluence_CreateCustomRoleArgs = {
|
|
|
77069
77177
|
cloudId: Scalars['ID']['input'];
|
|
77070
77178
|
input: ConfluenceCreateCustomRoleInput;
|
|
77071
77179
|
};
|
|
77180
|
+
export declare type MutationConfluence_CreatePdfExportTaskForBulkContentArgs = {
|
|
77181
|
+
input: ConfluenceCreatePdfExportTaskForBulkContentInput;
|
|
77182
|
+
};
|
|
77183
|
+
export declare type MutationConfluence_CreatePdfExportTaskForSingleContentArgs = {
|
|
77184
|
+
input: ConfluenceCreatePdfExportTaskForSingleContentInput;
|
|
77185
|
+
};
|
|
77072
77186
|
export declare type MutationConfluence_DeleteCalendarCustomEventTypeArgs = {
|
|
77073
77187
|
cloudId: Scalars['ID']['input'];
|
|
77074
77188
|
input: ConfluenceDeleteCalendarCustomEventTypeInput;
|
|
@@ -81033,6 +81147,7 @@ export declare type Query = {
|
|
|
81033
81147
|
confluence_empty?: Maybe<Scalars['String']['output']>;
|
|
81034
81148
|
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
81035
81149
|
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
81150
|
+
confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
|
|
81036
81151
|
confluence_refreshMigrationMediaSession?: Maybe<ContentMediaSession>;
|
|
81037
81152
|
confluence_search?: Maybe<ConfluenceSearchConnection>;
|
|
81038
81153
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
@@ -82671,6 +82786,10 @@ export declare type QueryConfluence_ExternalCollaboratorsByCriteriaArgs = {
|
|
|
82671
82786
|
spaceAssignmentType?: InputMaybe<SpaceAssignmentType>;
|
|
82672
82787
|
spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
82673
82788
|
};
|
|
82789
|
+
export declare type QueryConfluence_PdfExportTaskArgs = {
|
|
82790
|
+
cloudId: Scalars['ID']['input'];
|
|
82791
|
+
id: Scalars['ID']['input'];
|
|
82792
|
+
};
|
|
82674
82793
|
export declare type QueryConfluence_RefreshMigrationMediaSessionArgs = {
|
|
82675
82794
|
cloudId: Scalars['ID']['input'];
|
|
82676
82795
|
migrationId: Scalars['String']['input'];
|
|
@@ -84524,6 +84643,7 @@ export declare type RadarWorker = Node & RadarEntity & {
|
|
|
84524
84643
|
id: Scalars['ID']['output'];
|
|
84525
84644
|
preferredName?: Maybe<Scalars['String']['output']>;
|
|
84526
84645
|
type: RadarEntityType;
|
|
84646
|
+
user?: Maybe<User>;
|
|
84527
84647
|
};
|
|
84528
84648
|
export declare type RadarWorkerConnection = RadarConnection & {
|
|
84529
84649
|
__typename?: 'RadarWorkerConnection';
|
|
@@ -95368,7 +95488,7 @@ export declare type UpdateAppDetailsInput = {
|
|
|
95368
95488
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
95369
95489
|
distributionStatus?: InputMaybe<DistributionStatus>;
|
|
95370
95490
|
hasPDReportingApiImplemented?: InputMaybe<Scalars['Boolean']['input']>;
|
|
95371
|
-
name
|
|
95491
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
95372
95492
|
privacyPolicy?: InputMaybe<Scalars['String']['input']>;
|
|
95373
95493
|
storesPersonalData?: InputMaybe<Scalars['Boolean']['input']>;
|
|
95374
95494
|
termsOfService?: InputMaybe<Scalars['String']['input']>;
|