@forge/cli-shared 3.16.0-next.23 → 3.16.0-next.24
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
|
@@ -329,6 +329,259 @@ export type AddPolarisColumnInput = {
|
|
|
329
329
|
heading?: Maybe<Scalars['String']>;
|
|
330
330
|
};
|
|
331
331
|
export type Admin = JiraUser | JiraUserGroup;
|
|
332
|
+
export type AdminAllowlistFeature = {
|
|
333
|
+
__typename?: 'AdminAllowlistFeature';
|
|
334
|
+
ip: Scalars['Int'];
|
|
335
|
+
};
|
|
336
|
+
export declare enum AdminAuditLogEventTypes {
|
|
337
|
+
AdminActivity = "ADMIN_ACTIVITY",
|
|
338
|
+
UserActivity = "USER_ACTIVITY"
|
|
339
|
+
}
|
|
340
|
+
export type AdminAuditLogFeature = {
|
|
341
|
+
__typename?: 'AdminAuditLogFeature';
|
|
342
|
+
allInclusive: Scalars['Boolean'];
|
|
343
|
+
events: Array<Maybe<AdminAuditLogEventTypes>>;
|
|
344
|
+
};
|
|
345
|
+
export type AdminByokPolicy = {
|
|
346
|
+
__typename?: 'AdminByokPolicy';
|
|
347
|
+
awsAccount: Scalars['String'];
|
|
348
|
+
policyId: Scalars['String'];
|
|
349
|
+
policyName: Scalars['String'];
|
|
350
|
+
};
|
|
351
|
+
export type AdminCheckWorkflowStatusOutput = {
|
|
352
|
+
__typename?: 'AdminCheckWorkflowStatusOutput';
|
|
353
|
+
status: AdminCheckWorkflowStatusResult;
|
|
354
|
+
};
|
|
355
|
+
export declare enum AdminCheckWorkflowStatusResult {
|
|
356
|
+
Executing = "EXECUTING",
|
|
357
|
+
Failure = "FAILURE",
|
|
358
|
+
Success = "SUCCESS"
|
|
359
|
+
}
|
|
360
|
+
export type AdminCreateWorkspaceInputAttributes = {
|
|
361
|
+
name: Scalars['String'];
|
|
362
|
+
productKey: Scalars['String'];
|
|
363
|
+
slug: Scalars['String'];
|
|
364
|
+
type: Scalars['String'];
|
|
365
|
+
};
|
|
366
|
+
export type AdminCreateWorkspaceOutput = {
|
|
367
|
+
__typename?: 'AdminCreateWorkspaceOutput';
|
|
368
|
+
id: Scalars['String'];
|
|
369
|
+
workflowId: Scalars['String'];
|
|
370
|
+
};
|
|
371
|
+
export type AdminDataResidencyFeature = {
|
|
372
|
+
__typename?: 'AdminDataResidencyFeature';
|
|
373
|
+
realms: Array<AdminRealmTypes>;
|
|
374
|
+
};
|
|
375
|
+
export type AdminEntitlementFeatures = {
|
|
376
|
+
__typename?: 'AdminEntitlementFeatures';
|
|
377
|
+
allowlisting?: Maybe<AdminAllowlistFeature>;
|
|
378
|
+
auditLog?: Maybe<AdminAuditLogFeature>;
|
|
379
|
+
dataResidency?: Maybe<AdminDataResidencyFeature>;
|
|
380
|
+
mobileDevicePolicy?: Maybe<AdminMobileDevicePolicyFeature>;
|
|
381
|
+
releaseTrack?: Maybe<AdminReleaseTrackFeature>;
|
|
382
|
+
sandbox?: Maybe<AdminSandboxFeature>;
|
|
383
|
+
};
|
|
384
|
+
export declare enum AdminFeatureType {
|
|
385
|
+
Allowlisting = "ALLOWLISTING",
|
|
386
|
+
AtlassianIntelligence = "ATLASSIAN_INTELLIGENCE"
|
|
387
|
+
}
|
|
388
|
+
export type AdminMobileDevicePolicyFeature = {
|
|
389
|
+
__typename?: 'AdminMobileDevicePolicyFeature';
|
|
390
|
+
enabled: Scalars['Boolean'];
|
|
391
|
+
};
|
|
392
|
+
export type AdminMutation = {
|
|
393
|
+
__typename?: 'AdminMutation';
|
|
394
|
+
createWorkspace: AdminCreateWorkspaceOutput;
|
|
395
|
+
linkWorkspaceToOrg: Scalars['Boolean'];
|
|
396
|
+
};
|
|
397
|
+
export type AdminMutationCreateWorkspaceArgs = {
|
|
398
|
+
attributes: AdminCreateWorkspaceInputAttributes;
|
|
399
|
+
orgId: Scalars['String'];
|
|
400
|
+
};
|
|
401
|
+
export type AdminMutationLinkWorkspaceToOrgArgs = {
|
|
402
|
+
orgId: Scalars['String'];
|
|
403
|
+
workspaceAri: Scalars['String'];
|
|
404
|
+
};
|
|
405
|
+
export type AdminOrganization = {
|
|
406
|
+
__typename?: 'AdminOrganization';
|
|
407
|
+
checkWorkflowStatus: AdminCheckWorkflowStatusOutput;
|
|
408
|
+
id: Scalars['ID'];
|
|
409
|
+
workspace: AdminWorkspace;
|
|
410
|
+
workspaceByUserContext: AdminWorkspace;
|
|
411
|
+
workspacePlans: Array<AdminWorkspacePlan>;
|
|
412
|
+
workspaceTypes: Array<AdminUiProductType>;
|
|
413
|
+
workspaces: AdminWorkspaces;
|
|
414
|
+
workspacesTotalCount: Scalars['Int'];
|
|
415
|
+
};
|
|
416
|
+
export type AdminOrganizationCheckWorkflowStatusArgs = {
|
|
417
|
+
workflowId: Scalars['String'];
|
|
418
|
+
};
|
|
419
|
+
export type AdminOrganizationWorkspaceArgs = {
|
|
420
|
+
id: Scalars['String'];
|
|
421
|
+
};
|
|
422
|
+
export type AdminOrganizationWorkspaceByUserContextArgs = {
|
|
423
|
+
id: Scalars['String'];
|
|
424
|
+
};
|
|
425
|
+
export type AdminOrganizationWorkspacesArgs = {
|
|
426
|
+
cursor?: Maybe<Scalars['String']>;
|
|
427
|
+
excludeSandboxes?: Maybe<Scalars['Boolean']>;
|
|
428
|
+
features?: Maybe<Array<AdminFeatureType>>;
|
|
429
|
+
limit?: Maybe<Scalars['Int']>;
|
|
430
|
+
plans?: Maybe<Array<AdminWorkspacePlan>>;
|
|
431
|
+
policies?: Maybe<Array<AdminPolicyType>>;
|
|
432
|
+
query?: Maybe<Scalars['String']>;
|
|
433
|
+
shouldNotQueryAdminPortfolio?: Maybe<Scalars['Boolean']>;
|
|
434
|
+
sortBy?: Maybe<Scalars['String']>;
|
|
435
|
+
sortOrder?: Maybe<AdminSortOrder>;
|
|
436
|
+
types?: Maybe<Array<AdminUiProductType>>;
|
|
437
|
+
};
|
|
438
|
+
export declare enum AdminPolicyType {
|
|
439
|
+
CustomDomains = "CUSTOM_DOMAINS"
|
|
440
|
+
}
|
|
441
|
+
export type AdminProductEntitlements = {
|
|
442
|
+
__typename?: 'AdminProductEntitlements';
|
|
443
|
+
edition?: Maybe<Scalars['String']>;
|
|
444
|
+
features: AdminEntitlementFeatures;
|
|
445
|
+
};
|
|
446
|
+
export type AdminProductLinks = {
|
|
447
|
+
__typename?: 'AdminProductLinks';
|
|
448
|
+
self?: Maybe<Scalars['String']>;
|
|
449
|
+
};
|
|
450
|
+
export type AdminProductOffline = {
|
|
451
|
+
__typename?: 'AdminProductOffline';
|
|
452
|
+
reason: AdminProductOfflineReason;
|
|
453
|
+
};
|
|
454
|
+
export declare enum AdminProductOfflineReason {
|
|
455
|
+
Maintenance = "maintenance",
|
|
456
|
+
Migration = "migration",
|
|
457
|
+
Other = "other",
|
|
458
|
+
SandboxDataClone = "sandbox_data_clone",
|
|
459
|
+
SandboxDelete = "sandbox_delete",
|
|
460
|
+
SandboxReset = "sandbox_reset",
|
|
461
|
+
SandboxSoftDelete = "sandbox_soft_delete",
|
|
462
|
+
Support = "support",
|
|
463
|
+
SuspendedForDestruction = "suspended_for_destruction",
|
|
464
|
+
SuspendedPayment = "suspended_payment",
|
|
465
|
+
SuspendedSecurity = "suspended_security"
|
|
466
|
+
}
|
|
467
|
+
export type AdminQuery = {
|
|
468
|
+
__typename?: 'AdminQuery';
|
|
469
|
+
organization: AdminOrganization;
|
|
470
|
+
};
|
|
471
|
+
export type AdminQueryOrganizationArgs = {
|
|
472
|
+
id: Scalars['String'];
|
|
473
|
+
};
|
|
474
|
+
export declare enum AdminRealmTypes {
|
|
475
|
+
Au = "au",
|
|
476
|
+
De = "de",
|
|
477
|
+
Eu = "eu",
|
|
478
|
+
Global = "global",
|
|
479
|
+
Sg = "sg",
|
|
480
|
+
Us = "us"
|
|
481
|
+
}
|
|
482
|
+
export type AdminReleaseTrackFeature = {
|
|
483
|
+
__typename?: 'AdminReleaseTrackFeature';
|
|
484
|
+
tracks: Array<AdminReleaseTrackTracks>;
|
|
485
|
+
};
|
|
486
|
+
export declare enum AdminReleaseTrackTracks {
|
|
487
|
+
FastTrack = "fastTrack",
|
|
488
|
+
PreviewTrack = "previewTrack",
|
|
489
|
+
ScheduledTrack = "scheduledTrack"
|
|
490
|
+
}
|
|
491
|
+
export type AdminSandboxFeature = {
|
|
492
|
+
__typename?: 'AdminSandboxFeature';
|
|
493
|
+
limit: Scalars['Int'];
|
|
494
|
+
};
|
|
495
|
+
export declare enum AdminSandboxTypes {
|
|
496
|
+
Child = "CHILD",
|
|
497
|
+
None = "NONE"
|
|
498
|
+
}
|
|
499
|
+
export type AdminSiteSandbox = {
|
|
500
|
+
__typename?: 'AdminSiteSandbox';
|
|
501
|
+
parentId?: Maybe<Scalars['String']>;
|
|
502
|
+
type: AdminSandboxTypes;
|
|
503
|
+
};
|
|
504
|
+
export declare enum AdminSortOrder {
|
|
505
|
+
Asc = "asc",
|
|
506
|
+
Desc = "desc"
|
|
507
|
+
}
|
|
508
|
+
export declare enum AdminUiProductType {
|
|
509
|
+
Analytics = "ANALYTICS",
|
|
510
|
+
Avocado = "AVOCADO",
|
|
511
|
+
Beacon = "BEACON",
|
|
512
|
+
Bitbucket = "BITBUCKET",
|
|
513
|
+
CloudAdmin = "CLOUD_ADMIN",
|
|
514
|
+
Compass = "COMPASS",
|
|
515
|
+
Confluence = "CONFLUENCE",
|
|
516
|
+
Fabric = "FABRIC",
|
|
517
|
+
JiraAdmin = "JIRA_ADMIN",
|
|
518
|
+
JiraCore = "JIRA_CORE",
|
|
519
|
+
JiraIncidentManager = "JIRA_INCIDENT_MANAGER",
|
|
520
|
+
JiraProductDiscovery = "JIRA_PRODUCT_DISCOVERY",
|
|
521
|
+
JiraServiceDesk = "JIRA_SERVICE_DESK",
|
|
522
|
+
JiraSoftware = "JIRA_SOFTWARE",
|
|
523
|
+
Mercury = "MERCURY",
|
|
524
|
+
Opsgenie = "OPSGENIE",
|
|
525
|
+
Statuspage = "STATUSPAGE",
|
|
526
|
+
Stride = "STRIDE",
|
|
527
|
+
Teamcentral = "TEAMCENTRAL",
|
|
528
|
+
Trello = "TRELLO"
|
|
529
|
+
}
|
|
530
|
+
export type AdminWorkspace = {
|
|
531
|
+
__typename?: 'AdminWorkspace';
|
|
532
|
+
byok?: Maybe<AdminByokPolicy>;
|
|
533
|
+
capacity?: Maybe<Scalars['Int']>;
|
|
534
|
+
entitlements?: Maybe<AdminProductEntitlements>;
|
|
535
|
+
id: Scalars['ID'];
|
|
536
|
+
isCurrentUserPermittedToMutateRole?: Maybe<Scalars['Boolean']>;
|
|
537
|
+
key: Scalars['String'];
|
|
538
|
+
links?: Maybe<AdminProductLinks>;
|
|
539
|
+
name: Scalars['String'];
|
|
540
|
+
offline?: Maybe<Array<AdminProductOffline>>;
|
|
541
|
+
provisionedDate?: Maybe<Scalars['String']>;
|
|
542
|
+
realm?: Maybe<AdminRealmTypes>;
|
|
543
|
+
sandbox?: Maybe<AdminSiteSandbox>;
|
|
544
|
+
siteAvatarUrl?: Maybe<Scalars['String']>;
|
|
545
|
+
siteDisplayName?: Maybe<Scalars['String']>;
|
|
546
|
+
siteId?: Maybe<Scalars['String']>;
|
|
547
|
+
type: AdminUiProductType;
|
|
548
|
+
url?: Maybe<Scalars['String']>;
|
|
549
|
+
usage?: Maybe<Scalars['Int']>;
|
|
550
|
+
};
|
|
551
|
+
export type AdminWorkspaceIsCurrentUserPermittedToMutateRoleArgs = {
|
|
552
|
+
orgId: Scalars['String'];
|
|
553
|
+
};
|
|
554
|
+
export type AdminWorkspaceAriArgs = {
|
|
555
|
+
__typename?: 'AdminWorkspaceAriArgs';
|
|
556
|
+
id: Scalars['String'];
|
|
557
|
+
orgId: Scalars['String'];
|
|
558
|
+
};
|
|
559
|
+
export declare enum AdminWorkspacePlan {
|
|
560
|
+
AtlassianTeams = "AtlassianTeams",
|
|
561
|
+
Beta = "Beta",
|
|
562
|
+
Bitbucket100UsersPremium = "Bitbucket100UsersPremium",
|
|
563
|
+
Enterprise = "Enterprise",
|
|
564
|
+
Essentials = "Essentials",
|
|
565
|
+
Free = "Free",
|
|
566
|
+
None = "None",
|
|
567
|
+
Premium = "Premium",
|
|
568
|
+
Standard = "Standard",
|
|
569
|
+
Unknown = "Unknown"
|
|
570
|
+
}
|
|
571
|
+
export type AdminWorkspaces = {
|
|
572
|
+
__typename?: 'AdminWorkspaces';
|
|
573
|
+
meta: AdminWorkspacesMeta;
|
|
574
|
+
products: Array<AdminWorkspace>;
|
|
575
|
+
};
|
|
576
|
+
export type AdminWorkspacesMeta = {
|
|
577
|
+
__typename?: 'AdminWorkspacesMeta';
|
|
578
|
+
endIndex?: Maybe<Scalars['Int']>;
|
|
579
|
+
next?: Maybe<Scalars['String']>;
|
|
580
|
+
pageSize?: Maybe<Scalars['Int']>;
|
|
581
|
+
prev?: Maybe<Scalars['String']>;
|
|
582
|
+
startIndex?: Maybe<Scalars['Int']>;
|
|
583
|
+
total?: Maybe<Scalars['Int']>;
|
|
584
|
+
};
|
|
332
585
|
export declare enum ApiContext {
|
|
333
586
|
Devops = "DEVOPS"
|
|
334
587
|
}
|
|
@@ -19234,6 +19487,7 @@ export type Mutation = {
|
|
|
19234
19487
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
19235
19488
|
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
19236
19489
|
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
19490
|
+
admin?: Maybe<AdminMutation>;
|
|
19237
19491
|
};
|
|
19238
19492
|
export type MutationCreateJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
19239
19493
|
input: JiraProjectAndDevOpsToolRelationshipCreateInput;
|
|
@@ -21665,6 +21919,7 @@ export type Query = {
|
|
|
21665
21919
|
isSainSearchEnabled?: Maybe<Scalars['Boolean']>;
|
|
21666
21920
|
nlpSearch?: Maybe<NlpSearchResponse>;
|
|
21667
21921
|
nlpFollowUp?: Maybe<NlpFollowUpResponse>;
|
|
21922
|
+
admin?: Maybe<AdminQuery>;
|
|
21668
21923
|
};
|
|
21669
21924
|
export type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
21670
21925
|
id: Scalars['ID'];
|