@forge/cli-shared 3.11.0-next.6 → 3.11.0-next.8
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 +15 -0
- package/out/graphql/graphql-types.d.ts +179 -13
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +2 -0
- package/out/shared/environment.d.ts +3 -1
- package/out/shared/environment.d.ts.map +1 -1
- package/out/shared/environment.js +15 -4
- package/out/ui/text.d.ts +6 -6
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +6 -6
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.11.0-next.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 97b57e7: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- unzipper
|
|
10
|
+
- @types/unzipper
|
|
11
|
+
|
|
12
|
+
## 3.11.0-next.7
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 3e7edfb: Fix consistency of environment name in the CLI
|
|
17
|
+
|
|
3
18
|
## 3.11.0-next.6
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -350,9 +350,11 @@ export declare enum ApiGroup {
|
|
|
350
350
|
VirtualAgent = "VIRTUAL_AGENT",
|
|
351
351
|
CollaborationGraph = "COLLABORATION_GRAPH",
|
|
352
352
|
DevopsThirdParty = "DEVOPS_THIRD_PARTY",
|
|
353
|
+
DevopsToolchain = "DEVOPS_TOOLCHAIN",
|
|
353
354
|
CloudAdmin = "CLOUD_ADMIN",
|
|
354
355
|
CustomerService = "CUSTOMER_SERVICE",
|
|
355
|
-
SurfacePlatform = "SURFACE_PLATFORM"
|
|
356
|
+
SurfacePlatform = "SURFACE_PLATFORM",
|
|
357
|
+
AppRecommendations = "APP_RECOMMENDATIONS"
|
|
356
358
|
}
|
|
357
359
|
export declare type App = {
|
|
358
360
|
__typename?: 'App';
|
|
@@ -3551,6 +3553,7 @@ export declare type CompassScorecardAppliedToComponentsThresholdFilter = {
|
|
|
3551
3553
|
export declare type CompassScorecardComponentStats = {
|
|
3552
3554
|
__typename?: 'CompassScorecardComponentStats';
|
|
3553
3555
|
componentStats?: Maybe<CompassComponentStats>;
|
|
3556
|
+
scorecardCriteriaStats?: Maybe<Array<CompassScorecardCriteriaStats>>;
|
|
3554
3557
|
totalCount: Scalars['Int'];
|
|
3555
3558
|
};
|
|
3556
3559
|
export declare type CompassScorecardComponentStatsQueryResult = CompassScorecardComponentStats | QueryError;
|
|
@@ -3579,6 +3582,14 @@ export declare type CompassScorecardCriteriaScore = {
|
|
|
3579
3582
|
export declare type CompassScorecardCriteriaScoreQuery = {
|
|
3580
3583
|
componentId: Scalars['ID'];
|
|
3581
3584
|
};
|
|
3585
|
+
export declare type CompassScorecardCriteriaStats = {
|
|
3586
|
+
__typename?: 'CompassScorecardCriteriaStats';
|
|
3587
|
+
scorecardCriteriaId: Scalars['ID'];
|
|
3588
|
+
weight: Scalars['Int'];
|
|
3589
|
+
passing: Scalars['Int'];
|
|
3590
|
+
failing: Scalars['Int'];
|
|
3591
|
+
error: Scalars['Int'];
|
|
3592
|
+
};
|
|
3582
3593
|
export declare type CompassScorecardEdge = {
|
|
3583
3594
|
__typename?: 'CompassScorecardEdge';
|
|
3584
3595
|
cursor: Scalars['String'];
|
|
@@ -6046,6 +6057,15 @@ export declare type DateSearchInput = {
|
|
|
6046
6057
|
earliestStart?: Maybe<Scalars['String']>;
|
|
6047
6058
|
latestStart?: Maybe<Scalars['String']>;
|
|
6048
6059
|
};
|
|
6060
|
+
export declare type DeleteAppEnvironmentInput = {
|
|
6061
|
+
appAri: Scalars['ID'];
|
|
6062
|
+
environmentKey: Scalars['String'];
|
|
6063
|
+
};
|
|
6064
|
+
export declare type DeleteAppEnvironmentResponse = Payload & {
|
|
6065
|
+
__typename?: 'DeleteAppEnvironmentResponse';
|
|
6066
|
+
success: Scalars['Boolean'];
|
|
6067
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6068
|
+
};
|
|
6049
6069
|
export declare type DeleteAppEnvironmentVariableInput = {
|
|
6050
6070
|
environment: AppEnvironmentInput;
|
|
6051
6071
|
key: Scalars['String'];
|
|
@@ -6384,6 +6404,7 @@ export declare type DevOps = {
|
|
|
6384
6404
|
providers?: Maybe<DevOpsProviders>;
|
|
6385
6405
|
providersByIds?: Maybe<Array<Maybe<DevOpsDataProvider>>>;
|
|
6386
6406
|
ariGraph?: Maybe<AriGraph>;
|
|
6407
|
+
graph?: Maybe<Graph>;
|
|
6387
6408
|
toolchain?: Maybe<Toolchain>;
|
|
6388
6409
|
};
|
|
6389
6410
|
export declare type DevOpsEntitiesByAssociationsArgs = {
|
|
@@ -6740,6 +6761,8 @@ export declare type DevOpsMutation = {
|
|
|
6740
6761
|
__typename?: 'DevOpsMutation';
|
|
6741
6762
|
_empty?: Maybe<Scalars['String']>;
|
|
6742
6763
|
ariGraph?: Maybe<AriGraphMutation>;
|
|
6764
|
+
graph?: Maybe<GraphMutation>;
|
|
6765
|
+
toolchain?: Maybe<ToolchainMutation>;
|
|
6743
6766
|
};
|
|
6744
6767
|
export declare type DevOpsMutation_EmptyArgs = {
|
|
6745
6768
|
cloudId?: Maybe<Scalars['ID']>;
|
|
@@ -7527,6 +7550,7 @@ export declare type EcosystemMutation = {
|
|
|
7527
7550
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
7528
7551
|
updateUserInstallationRules?: Maybe<UserInstallationRulesPayload>;
|
|
7529
7552
|
createAppEnvironment?: Maybe<CreateAppEnvironmentResponse>;
|
|
7553
|
+
deleteAppEnvironment?: Maybe<DeleteAppEnvironmentResponse>;
|
|
7530
7554
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
7531
7555
|
};
|
|
7532
7556
|
export declare type EcosystemMutationUpdateAppHostServiceScopesArgs = {
|
|
@@ -7547,6 +7571,9 @@ export declare type EcosystemMutationUpdateUserInstallationRulesArgs = {
|
|
|
7547
7571
|
export declare type EcosystemMutationCreateAppEnvironmentArgs = {
|
|
7548
7572
|
input: CreateAppEnvironmentInput;
|
|
7549
7573
|
};
|
|
7574
|
+
export declare type EcosystemMutationDeleteAppEnvironmentArgs = {
|
|
7575
|
+
input: DeleteAppEnvironmentInput;
|
|
7576
|
+
};
|
|
7550
7577
|
export declare type EcosystemMutationForgeAlertsArgs = {
|
|
7551
7578
|
appId: Scalars['ID'];
|
|
7552
7579
|
};
|
|
@@ -8304,6 +8331,98 @@ export declare enum GrantCheckProduct {
|
|
|
8304
8331
|
Compass = "COMPASS",
|
|
8305
8332
|
NoGrantChecks = "NO_GRANT_CHECKS"
|
|
8306
8333
|
}
|
|
8334
|
+
export declare type Graph = {
|
|
8335
|
+
__typename?: 'Graph';
|
|
8336
|
+
issueAssociatedPr?: Maybe<GraphJiraPullRequestConnection>;
|
|
8337
|
+
issueAssociatedPrInverse?: Maybe<GraphJiraIssueConnection>;
|
|
8338
|
+
issueAssociatedPrRelationship?: Maybe<GraphIssueAssociatedPrRelationshipConnection>;
|
|
8339
|
+
issueAssociatedPrRelationshipInverse?: Maybe<GraphIssueAssociatedPrRelationshipConnection>;
|
|
8340
|
+
};
|
|
8341
|
+
export declare type GraphIssueAssociatedPrArgs = {
|
|
8342
|
+
after?: Maybe<Scalars['String']>;
|
|
8343
|
+
first?: Maybe<Scalars['Int']>;
|
|
8344
|
+
from: Scalars['ID'];
|
|
8345
|
+
};
|
|
8346
|
+
export declare type GraphIssueAssociatedPrInverseArgs = {
|
|
8347
|
+
after?: Maybe<Scalars['String']>;
|
|
8348
|
+
first?: Maybe<Scalars['Int']>;
|
|
8349
|
+
to: Scalars['ID'];
|
|
8350
|
+
};
|
|
8351
|
+
export declare type GraphIssueAssociatedPrRelationshipArgs = {
|
|
8352
|
+
after?: Maybe<Scalars['String']>;
|
|
8353
|
+
first?: Maybe<Scalars['Int']>;
|
|
8354
|
+
from: Scalars['ID'];
|
|
8355
|
+
};
|
|
8356
|
+
export declare type GraphIssueAssociatedPrRelationshipInverseArgs = {
|
|
8357
|
+
after?: Maybe<Scalars['String']>;
|
|
8358
|
+
first?: Maybe<Scalars['Int']>;
|
|
8359
|
+
to: Scalars['ID'];
|
|
8360
|
+
};
|
|
8361
|
+
export declare type GraphCreateIssueAssociatedPrInput = {
|
|
8362
|
+
from: Scalars['ID'];
|
|
8363
|
+
sequenceNumber?: Maybe<Scalars['Long']>;
|
|
8364
|
+
to: Scalars['ID'];
|
|
8365
|
+
updatedAt?: Maybe<Scalars['DateTime']>;
|
|
8366
|
+
};
|
|
8367
|
+
export declare type GraphIssueAssociatedPrPayload = Payload & {
|
|
8368
|
+
__typename?: 'GraphIssueAssociatedPrPayload';
|
|
8369
|
+
errors?: Maybe<Array<MutationError>>;
|
|
8370
|
+
issueAssociatedPrRelationship: Array<Maybe<GraphIssueAssociatedPrRelationship>>;
|
|
8371
|
+
success: Scalars['Boolean'];
|
|
8372
|
+
};
|
|
8373
|
+
export declare type GraphIssueAssociatedPrRelationship = Node & {
|
|
8374
|
+
__typename?: 'GraphIssueAssociatedPrRelationship';
|
|
8375
|
+
from: GraphJiraIssue;
|
|
8376
|
+
id: Scalars['ID'];
|
|
8377
|
+
lastUpdated: Scalars['DateTime'];
|
|
8378
|
+
to: GraphJiraPullRequest;
|
|
8379
|
+
};
|
|
8380
|
+
export declare type GraphIssueAssociatedPrRelationshipConnection = {
|
|
8381
|
+
__typename?: 'GraphIssueAssociatedPrRelationshipConnection';
|
|
8382
|
+
edges: Array<Maybe<GraphIssueAssociatedPrRelationshipEdge>>;
|
|
8383
|
+
pageInfo: PageInfo;
|
|
8384
|
+
};
|
|
8385
|
+
export declare type GraphIssueAssociatedPrRelationshipEdge = {
|
|
8386
|
+
__typename?: 'GraphIssueAssociatedPrRelationshipEdge';
|
|
8387
|
+
cursor?: Maybe<Scalars['String']>;
|
|
8388
|
+
node: GraphIssueAssociatedPrRelationship;
|
|
8389
|
+
};
|
|
8390
|
+
export declare type GraphJiraIssue = Node & {
|
|
8391
|
+
__typename?: 'GraphJiraIssue';
|
|
8392
|
+
id: Scalars['ID'];
|
|
8393
|
+
};
|
|
8394
|
+
export declare type GraphJiraIssueConnection = {
|
|
8395
|
+
__typename?: 'GraphJiraIssueConnection';
|
|
8396
|
+
edges: Array<Maybe<GraphJiraIssueEdge>>;
|
|
8397
|
+
pageInfo: PageInfo;
|
|
8398
|
+
};
|
|
8399
|
+
export declare type GraphJiraIssueEdge = {
|
|
8400
|
+
__typename?: 'GraphJiraIssueEdge';
|
|
8401
|
+
cursor?: Maybe<Scalars['String']>;
|
|
8402
|
+
node: GraphJiraIssue;
|
|
8403
|
+
};
|
|
8404
|
+
export declare type GraphJiraPullRequest = Node & {
|
|
8405
|
+
__typename?: 'GraphJiraPullRequest';
|
|
8406
|
+
id: Scalars['ID'];
|
|
8407
|
+
pullRequest?: Maybe<DevOpsPullRequestDetails>;
|
|
8408
|
+
};
|
|
8409
|
+
export declare type GraphJiraPullRequestConnection = {
|
|
8410
|
+
__typename?: 'GraphJiraPullRequestConnection';
|
|
8411
|
+
edges: Array<Maybe<GraphJiraPullRequestEdge>>;
|
|
8412
|
+
pageInfo: PageInfo;
|
|
8413
|
+
};
|
|
8414
|
+
export declare type GraphJiraPullRequestEdge = {
|
|
8415
|
+
__typename?: 'GraphJiraPullRequestEdge';
|
|
8416
|
+
cursor?: Maybe<Scalars['String']>;
|
|
8417
|
+
node: GraphJiraPullRequest;
|
|
8418
|
+
};
|
|
8419
|
+
export declare type GraphMutation = {
|
|
8420
|
+
__typename?: 'GraphMutation';
|
|
8421
|
+
createIssueAssociatedPr?: Maybe<GraphIssueAssociatedPrPayload>;
|
|
8422
|
+
};
|
|
8423
|
+
export declare type GraphMutationCreateIssueAssociatedPrArgs = {
|
|
8424
|
+
input: GraphCreateIssueAssociatedPrInput;
|
|
8425
|
+
};
|
|
8307
8426
|
export declare type HasPageInfo = {
|
|
8308
8427
|
pageInfo: PageInfo;
|
|
8309
8428
|
};
|
|
@@ -9407,6 +9526,7 @@ export declare type JiraCannedResponseUpdatePayload = Payload & {
|
|
|
9407
9526
|
export declare type JiraCascadingOption = {
|
|
9408
9527
|
__typename?: 'JiraCascadingOption';
|
|
9409
9528
|
parentOptionValue?: Maybe<JiraOption>;
|
|
9529
|
+
parentValue?: Maybe<JiraParentOption>;
|
|
9410
9530
|
childOptionValue?: Maybe<JiraOption>;
|
|
9411
9531
|
};
|
|
9412
9532
|
export declare type JiraCascadingOptions = {
|
|
@@ -9436,6 +9556,7 @@ export declare type JiraCascadingSelectField = Node & JiraIssueField & JiraIssue
|
|
|
9436
9556
|
description?: Maybe<Scalars['String']>;
|
|
9437
9557
|
cascadingOption?: Maybe<JiraCascadingOption>;
|
|
9438
9558
|
cascadingOptions?: Maybe<JiraCascadingOptionsConnection>;
|
|
9559
|
+
parentOptions?: Maybe<JiraParentOptionConnection>;
|
|
9439
9560
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
9440
9561
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
9441
9562
|
};
|
|
@@ -9445,6 +9566,13 @@ export declare type JiraCascadingSelectFieldCascadingOptionsArgs = {
|
|
|
9445
9566
|
last?: Maybe<Scalars['Int']>;
|
|
9446
9567
|
before?: Maybe<Scalars['String']>;
|
|
9447
9568
|
};
|
|
9569
|
+
export declare type JiraCascadingSelectFieldParentOptionsArgs = {
|
|
9570
|
+
first?: Maybe<Scalars['Int']>;
|
|
9571
|
+
after?: Maybe<Scalars['String']>;
|
|
9572
|
+
last?: Maybe<Scalars['Int']>;
|
|
9573
|
+
before?: Maybe<Scalars['String']>;
|
|
9574
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
9575
|
+
};
|
|
9448
9576
|
export declare type JiraCascadingSelectFieldOperationInput = {
|
|
9449
9577
|
operation: JiraSingleValueFieldOperations;
|
|
9450
9578
|
parentOption?: Maybe<Scalars['ID']>;
|
|
@@ -11500,9 +11628,11 @@ export declare type JiraJqlBuilder = {
|
|
|
11500
11628
|
};
|
|
11501
11629
|
export declare type JiraJqlBuilderHydrateJqlQueryArgs = {
|
|
11502
11630
|
query?: Maybe<Scalars['String']>;
|
|
11631
|
+
viewContext?: Maybe<JiraJqlViewContext>;
|
|
11503
11632
|
};
|
|
11504
11633
|
export declare type JiraJqlBuilderHydrateJqlQueryForFilterArgs = {
|
|
11505
11634
|
id: Scalars['ID'];
|
|
11635
|
+
viewContext?: Maybe<JiraJqlViewContext>;
|
|
11506
11636
|
};
|
|
11507
11637
|
export declare type JiraJqlBuilderFieldsArgs = {
|
|
11508
11638
|
jqlContext?: Maybe<Scalars['String']>;
|
|
@@ -11524,6 +11654,7 @@ export declare type JiraJqlBuilderRecentFieldsArgs = {
|
|
|
11524
11654
|
export declare type JiraJqlBuilderFieldValuesArgs = {
|
|
11525
11655
|
jqlContext?: Maybe<Scalars['String']>;
|
|
11526
11656
|
jqlTerm: Scalars['String'];
|
|
11657
|
+
viewContext?: Maybe<JiraJqlViewContext>;
|
|
11527
11658
|
searchString?: Maybe<Scalars['String']>;
|
|
11528
11659
|
first?: Maybe<Scalars['Int']>;
|
|
11529
11660
|
after?: Maybe<Scalars['String']>;
|
|
@@ -12661,6 +12792,32 @@ export declare type JiraParentIssueField = Node & JiraIssueField & JiraIssueFiel
|
|
|
12661
12792
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
12662
12793
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
12663
12794
|
};
|
|
12795
|
+
export declare type JiraParentOption = Node & {
|
|
12796
|
+
__typename?: 'JiraParentOption';
|
|
12797
|
+
id: Scalars['ID'];
|
|
12798
|
+
value?: Maybe<Scalars['String']>;
|
|
12799
|
+
isDisabled?: Maybe<Scalars['Boolean']>;
|
|
12800
|
+
childOptions?: Maybe<JiraOptionConnection>;
|
|
12801
|
+
};
|
|
12802
|
+
export declare type JiraParentOptionChildOptionsArgs = {
|
|
12803
|
+
first?: Maybe<Scalars['Int']>;
|
|
12804
|
+
after?: Maybe<Scalars['String']>;
|
|
12805
|
+
last?: Maybe<Scalars['Int']>;
|
|
12806
|
+
before?: Maybe<Scalars['String']>;
|
|
12807
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
12808
|
+
};
|
|
12809
|
+
export declare type JiraParentOptionConnection = {
|
|
12810
|
+
__typename?: 'JiraParentOptionConnection';
|
|
12811
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
12812
|
+
pageInfo: PageInfo;
|
|
12813
|
+
edges?: Maybe<Array<Maybe<JiraParentOptionEdge>>>;
|
|
12814
|
+
errors?: Maybe<Array<QueryError>>;
|
|
12815
|
+
};
|
|
12816
|
+
export declare type JiraParentOptionEdge = {
|
|
12817
|
+
__typename?: 'JiraParentOptionEdge';
|
|
12818
|
+
node?: Maybe<JiraParentOption>;
|
|
12819
|
+
cursor: Scalars['String'];
|
|
12820
|
+
};
|
|
12664
12821
|
export declare type JiraParentVisibility = {
|
|
12665
12822
|
__typename?: 'JiraParentVisibility';
|
|
12666
12823
|
hasEpicLinkFieldDependency?: Maybe<Scalars['Boolean']>;
|
|
@@ -19166,7 +19323,7 @@ export declare type Query = {
|
|
|
19166
19323
|
jwmOverviews?: Maybe<JiraWorkManagementOverviewConnectionResult>;
|
|
19167
19324
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
19168
19325
|
surfacePlatform: SurfacePlatformQueryApi;
|
|
19169
|
-
xflow?: Maybe<
|
|
19326
|
+
xflow?: Maybe<Scalars['String']>;
|
|
19170
19327
|
virtualAgent?: Maybe<VirtualAgentQueryApi>;
|
|
19171
19328
|
jiraReleases?: Maybe<JiraReleases>;
|
|
19172
19329
|
appDeployment?: Maybe<AppDeployment>;
|
|
@@ -22599,6 +22756,26 @@ export declare type ToolchainContainerEdge = {
|
|
|
22599
22756
|
cursor: Scalars['String'];
|
|
22600
22757
|
node?: Maybe<ToolchainContainer>;
|
|
22601
22758
|
};
|
|
22759
|
+
export declare type ToolchainCreateContainerInput = {
|
|
22760
|
+
cloudId: Scalars['ID'];
|
|
22761
|
+
providerId?: Maybe<Scalars['ID']>;
|
|
22762
|
+
workspaceId?: Maybe<Scalars['ID']>;
|
|
22763
|
+
name: Scalars['String'];
|
|
22764
|
+
type?: Maybe<Scalars['String']>;
|
|
22765
|
+
};
|
|
22766
|
+
export declare type ToolchainCreateContainerPayload = Payload & {
|
|
22767
|
+
__typename?: 'ToolchainCreateContainerPayload';
|
|
22768
|
+
success: Scalars['Boolean'];
|
|
22769
|
+
errors?: Maybe<Array<MutationError>>;
|
|
22770
|
+
createdContainer?: Maybe<ToolchainContainer>;
|
|
22771
|
+
};
|
|
22772
|
+
export declare type ToolchainMutation = {
|
|
22773
|
+
__typename?: 'ToolchainMutation';
|
|
22774
|
+
createContainer?: Maybe<ToolchainCreateContainerPayload>;
|
|
22775
|
+
};
|
|
22776
|
+
export declare type ToolchainMutationCreateContainerArgs = {
|
|
22777
|
+
input: ToolchainCreateContainerInput;
|
|
22778
|
+
};
|
|
22602
22779
|
export declare type TownsquareComment = Node & {
|
|
22603
22780
|
__typename?: 'TownsquareComment';
|
|
22604
22781
|
creator?: Maybe<User>;
|
|
@@ -24022,17 +24199,6 @@ export declare type WebTriggerUrlInput = {
|
|
|
24022
24199
|
triggerKey: Scalars['String'];
|
|
24023
24200
|
contextId: Scalars['ID'];
|
|
24024
24201
|
};
|
|
24025
|
-
export declare type XFlowQuery = {
|
|
24026
|
-
__typename?: 'XFlowQuery';
|
|
24027
|
-
recommendedApps?: Maybe<Array<XFlowRecommendedApp>>;
|
|
24028
|
-
};
|
|
24029
|
-
export declare type XFlowQueryRecommendedAppsArgs = {
|
|
24030
|
-
site: Scalars['ID'];
|
|
24031
|
-
};
|
|
24032
|
-
export declare type XFlowRecommendedApp = {
|
|
24033
|
-
__typename?: 'XFlowRecommendedApp';
|
|
24034
|
-
appKey: Scalars['String'];
|
|
24035
|
-
};
|
|
24036
24202
|
export declare type _AppliedDirective = {
|
|
24037
24203
|
__typename?: '_AppliedDirective';
|
|
24038
24204
|
name: Scalars['String'];
|