@forge/cli-shared 3.16.0-next.18 → 3.16.0-next.19

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,5 +1,11 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.16.0-next.19
4
+
5
+ ### Patch Changes
6
+
7
+ - 0cb957de: Update conf dependency
8
+
3
9
  ## 3.16.0-next.18
4
10
 
5
11
  ### Patch Changes
@@ -374,10 +374,16 @@ export declare type App = {
374
374
  tags?: Maybe<Array<Scalars['String']>>;
375
375
  ensureCollaborator: Scalars['Boolean'];
376
376
  marketplaceApp?: Maybe<MarketplaceApp>;
377
+ deployments?: Maybe<AppDeploymentConnection>;
377
378
  };
378
379
  export declare type AppEnvironmentByKeyArgs = {
379
380
  key: Scalars['String'];
380
381
  };
382
+ export declare type AppDeploymentsArgs = {
383
+ interval: IntervalInput;
384
+ first?: Maybe<Scalars['Int']>;
385
+ after?: Maybe<Scalars['String']>;
386
+ };
381
387
  export declare type AppAdminQuery = {
382
388
  __typename?: 'AppAdminQuery';
383
389
  appId: Scalars['ID'];
@@ -428,6 +434,18 @@ export declare type AppDeployment = {
428
434
  createdBy?: Maybe<User>;
429
435
  createdAt: Scalars['String'];
430
436
  stages?: Maybe<Array<AppDeploymentStage>>;
437
+ majorVersion?: Maybe<AppEnvironmentVersion>;
438
+ };
439
+ export declare type AppDeploymentConnection = {
440
+ __typename?: 'AppDeploymentConnection';
441
+ edges?: Maybe<Array<Maybe<AppDeploymentEdge>>>;
442
+ nodes: Array<Maybe<AppDeployment>>;
443
+ pageInfo?: Maybe<PageInfo>;
444
+ };
445
+ export declare type AppDeploymentEdge = {
446
+ __typename?: 'AppDeploymentEdge';
447
+ cursor: Scalars['String'];
448
+ node?: Maybe<AppDeployment>;
431
449
  };
432
450
  export declare type AppDeploymentEvent = {
433
451
  createdAt: Scalars['String'];
@@ -6276,6 +6294,7 @@ export declare type CustomerServiceAttribute = {
6276
6294
  __typename?: 'CustomerServiceAttribute';
6277
6295
  id: Scalars['ID'];
6278
6296
  name: Scalars['String'];
6297
+ type: CustomerServiceAttributeType;
6279
6298
  config?: Maybe<CustomerServiceAttributeConfigMetadata>;
6280
6299
  };
6281
6300
  export declare type CustomerServiceAttributeConfigMetadata = {
@@ -6293,6 +6312,7 @@ export declare type CustomerServiceAttributeConfigMetadataUpdatePayload = Payloa
6293
6312
  };
6294
6313
  export declare type CustomerServiceAttributeCreateInput = {
6295
6314
  name: Scalars['String'];
6315
+ type?: Maybe<CustomerServiceAttributeCreateTypeInput>;
6296
6316
  };
6297
6317
  export declare type CustomerServiceAttributeCreatePayload = Payload & {
6298
6318
  __typename?: 'CustomerServiceAttributeCreatePayload';
@@ -6300,6 +6320,10 @@ export declare type CustomerServiceAttributeCreatePayload = Payload & {
6300
6320
  errors?: Maybe<Array<MutationError>>;
6301
6321
  successfullyCreatedAttribute?: Maybe<CustomerServiceAttribute>;
6302
6322
  };
6323
+ export declare type CustomerServiceAttributeCreateTypeInput = {
6324
+ name?: Maybe<CustomerServiceAttributeTypeName>;
6325
+ options?: Maybe<Array<Scalars['String']>>;
6326
+ };
6303
6327
  export declare type CustomerServiceAttributeDeleteInput = {
6304
6328
  id: Scalars['ID'];
6305
6329
  };
@@ -6308,9 +6332,23 @@ export declare type CustomerServiceAttributeDeletePayload = Payload & {
6308
6332
  success: Scalars['Boolean'];
6309
6333
  errors?: Maybe<Array<MutationError>>;
6310
6334
  };
6335
+ export declare type CustomerServiceAttributeType = {
6336
+ __typename?: 'CustomerServiceAttributeType';
6337
+ name: CustomerServiceAttributeTypeName;
6338
+ options?: Maybe<Array<Scalars['String']>>;
6339
+ };
6340
+ export declare enum CustomerServiceAttributeTypeName {
6341
+ Text = "TEXT",
6342
+ Email = "EMAIL",
6343
+ Url = "URL",
6344
+ Number = "NUMBER",
6345
+ Select = "SELECT",
6346
+ Multiselect = "MULTISELECT"
6347
+ }
6311
6348
  export declare type CustomerServiceAttributeUpdateInput = {
6312
6349
  id: Scalars['ID'];
6313
6350
  name: Scalars['String'];
6351
+ type?: Maybe<CustomerServiceAttributeUpdateTypeInput>;
6314
6352
  };
6315
6353
  export declare type CustomerServiceAttributeUpdatePayload = Payload & {
6316
6354
  __typename?: 'CustomerServiceAttributeUpdatePayload';
@@ -6318,11 +6356,17 @@ export declare type CustomerServiceAttributeUpdatePayload = Payload & {
6318
6356
  errors?: Maybe<Array<MutationError>>;
6319
6357
  successfullyUpdatedAttribute?: Maybe<CustomerServiceAttribute>;
6320
6358
  };
6359
+ export declare type CustomerServiceAttributeUpdateTypeInput = {
6360
+ name?: Maybe<CustomerServiceAttributeTypeName>;
6361
+ options?: Maybe<Array<Scalars['String']>>;
6362
+ };
6321
6363
  export declare type CustomerServiceAttributeValue = {
6322
6364
  __typename?: 'CustomerServiceAttributeValue';
6323
6365
  id: Scalars['ID'];
6324
6366
  name: Scalars['String'];
6367
+ type: CustomerServiceAttributeType;
6325
6368
  value?: Maybe<Scalars['String']>;
6369
+ values?: Maybe<Array<Maybe<Scalars['String']>>>;
6326
6370
  config?: Maybe<CustomerServiceAttributeConfigMetadata>;
6327
6371
  };
6328
6372
  export declare type CustomerServiceAttributes = {
@@ -6334,7 +6378,7 @@ export declare type CustomerServiceIndividual = Node & {
6334
6378
  __typename?: 'CustomerServiceIndividual';
6335
6379
  id: Scalars['ID'];
6336
6380
  name: Scalars['String'];
6337
- attributes?: Maybe<Array<Maybe<CustomerServiceAttributeValue>>>;
6381
+ attributes: Array<Maybe<CustomerServiceAttributeValue>>;
6338
6382
  };
6339
6383
  export declare type CustomerServiceIndividualDeletePayload = Payload & {
6340
6384
  __typename?: 'CustomerServiceIndividualDeletePayload';
@@ -6352,6 +6396,11 @@ export declare type CustomerServiceIndividualUpdateAttributeInput = {
6352
6396
  attributeId: Scalars['String'];
6353
6397
  attributeValue: Scalars['String'];
6354
6398
  };
6399
+ export declare type CustomerServiceIndividualUpdateAttributeMultiValueByNameInput = {
6400
+ accountId: Scalars['String'];
6401
+ attributeName: Scalars['String'];
6402
+ attributeValues: Array<Scalars['String']>;
6403
+ };
6355
6404
  export declare type CustomerServiceIndividualUpdateAttributeValuePayload = Payload & {
6356
6405
  __typename?: 'CustomerServiceIndividualUpdateAttributeValuePayload';
6357
6406
  success: Scalars['Boolean'];
@@ -6369,11 +6418,13 @@ export declare type CustomerServiceMutationApi = {
6369
6418
  updateOrganizationAttributeConfig?: Maybe<CustomerServiceAttributeConfigMetadataUpdatePayload>;
6370
6419
  updateOrganizationAttributeValue?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
6371
6420
  updateOrganizationAttributeValueByName?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
6421
+ updateOrganizationAttributeMultiValueByName?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
6372
6422
  createIndividualAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
6373
6423
  updateIndividualAttribute?: Maybe<CustomerServiceAttributeUpdatePayload>;
6374
6424
  deleteIndividualAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
6375
6425
  updateIndividualAttributeConfig?: Maybe<CustomerServiceAttributeConfigMetadataUpdatePayload>;
6376
6426
  updateIndividualAttributeValueByName?: Maybe<CustomerServiceIndividualUpdateAttributeValuePayload>;
6427
+ updateIndividualAttributeMultiValueByName?: Maybe<CustomerServiceIndividualUpdateAttributeValuePayload>;
6377
6428
  };
6378
6429
  export declare type CustomerServiceMutationApiCreateOrganizationArgs = {
6379
6430
  input: CustomerServiceOrganizationCreateInput;
@@ -6402,6 +6453,9 @@ export declare type CustomerServiceMutationApiUpdateOrganizationAttributeValueAr
6402
6453
  export declare type CustomerServiceMutationApiUpdateOrganizationAttributeValueByNameArgs = {
6403
6454
  input: CustomerServiceOrganizationUpdateAttributeByNameInput;
6404
6455
  };
6456
+ export declare type CustomerServiceMutationApiUpdateOrganizationAttributeMultiValueByNameArgs = {
6457
+ input: CustomerServiceOrganizationUpdateAttributeMultiValueByNameInput;
6458
+ };
6405
6459
  export declare type CustomerServiceMutationApiCreateIndividualAttributeArgs = {
6406
6460
  input: CustomerServiceAttributeCreateInput;
6407
6461
  };
@@ -6417,11 +6471,14 @@ export declare type CustomerServiceMutationApiUpdateIndividualAttributeConfigArg
6417
6471
  export declare type CustomerServiceMutationApiUpdateIndividualAttributeValueByNameArgs = {
6418
6472
  input: CustomerServiceIndividualUpdateAttributeByNameInput;
6419
6473
  };
6474
+ export declare type CustomerServiceMutationApiUpdateIndividualAttributeMultiValueByNameArgs = {
6475
+ input: CustomerServiceIndividualUpdateAttributeMultiValueByNameInput;
6476
+ };
6420
6477
  export declare type CustomerServiceOrganization = Node & {
6421
6478
  __typename?: 'CustomerServiceOrganization';
6422
6479
  id: Scalars['ID'];
6423
6480
  name: Scalars['String'];
6424
- attributes?: Maybe<Array<Maybe<CustomerServiceAttributeValue>>>;
6481
+ attributes: Array<Maybe<CustomerServiceAttributeValue>>;
6425
6482
  };
6426
6483
  export declare type CustomerServiceOrganizationCreateInput = {
6427
6484
  id: Scalars['ID'];
@@ -6452,6 +6509,11 @@ export declare type CustomerServiceOrganizationUpdateAttributeInput = {
6452
6509
  attributeId: Scalars['String'];
6453
6510
  attributeValue: Scalars['String'];
6454
6511
  };
6512
+ export declare type CustomerServiceOrganizationUpdateAttributeMultiValueByNameInput = {
6513
+ organizationId: Scalars['String'];
6514
+ attributeName: Scalars['String'];
6515
+ attributeValues: Array<Scalars['String']>;
6516
+ };
6455
6517
  export declare type CustomerServiceOrganizationUpdateAttributeValuePayload = Payload & {
6456
6518
  __typename?: 'CustomerServiceOrganizationUpdateAttributeValuePayload';
6457
6519
  success: Scalars['Boolean'];
@@ -9898,6 +9960,10 @@ export declare type IntervalFilter = {
9898
9960
  start: Scalars['String'];
9899
9961
  end: Scalars['String'];
9900
9962
  };
9963
+ export declare type IntervalInput = {
9964
+ startTime: Scalars['DateTime'];
9965
+ endTime: Scalars['DateTime'];
9966
+ };
9901
9967
  export declare type InvocationMetrics = {
9902
9968
  __typename?: 'InvocationMetrics';
9903
9969
  appTimeMs?: Maybe<Scalars['Float']>;
@@ -10579,11 +10645,6 @@ export declare type JiraBulkEditFieldsEdge = {
10579
10645
  node?: Maybe<JiraBulkEditField>;
10580
10646
  cursor: Scalars['String'];
10581
10647
  };
10582
- export declare type JiraBulkEditInput = {
10583
- selectedActions?: Maybe<Array<Maybe<Scalars['String']>>>;
10584
- selectedIssueIds: Array<Scalars['ID']>;
10585
- editedFieldsInput: JiraIssueFieldsInput;
10586
- };
10587
10648
  export declare enum JiraBulkEditMultiSelectFieldOptions {
10588
10649
  Add = "ADD",
10589
10650
  Remove = "REMOVE",
@@ -10602,12 +10663,6 @@ export declare type JiraBulkEditResponseBulkEditFieldsArgs = {
10602
10663
  last?: Maybe<Scalars['Int']>;
10603
10664
  before?: Maybe<Scalars['String']>;
10604
10665
  };
10605
- export declare type JiraBulkOperationInput = {
10606
- bulkEditInput?: Maybe<JiraBulkEditInput>;
10607
- };
10608
- export declare enum JiraBulkOperationType {
10609
- BulkEdit = "BULK_EDIT"
10610
- }
10611
10666
  export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
10612
10667
  __typename?: 'JiraCMDBField';
10613
10668
  id: Scalars['ID'];
@@ -12351,11 +12406,6 @@ export declare type JiraIssueFieldSetEdge = {
12351
12406
  node?: Maybe<JiraIssueFieldSet>;
12352
12407
  cursor: Scalars['String'];
12353
12408
  };
12354
- export declare type JiraIssueFieldsInput = {
12355
- priority?: Maybe<JiraPriorityInput>;
12356
- singleSelectUserPickerFields?: Maybe<Array<JiraSingleSelectUserPickerFieldInput>>;
12357
- labelsFields?: Maybe<Array<JiraLabelsFieldInput>>;
12358
- };
12359
12409
  export declare type JiraIssueHierarchyConfigData = {
12360
12410
  __typename?: 'JiraIssueHierarchyConfigData';
12361
12411
  hierarchyLevel?: Maybe<JiraIssueTypeHierarchyLevel>;
@@ -13438,11 +13488,6 @@ export declare type JiraLabelsFieldLabelsArgs = {
13438
13488
  suggested?: Maybe<Scalars['Boolean']>;
13439
13489
  sessionId?: Maybe<Scalars['ID']>;
13440
13490
  };
13441
- export declare type JiraLabelsFieldInput = {
13442
- fieldId: Scalars['ID'];
13443
- labels?: Maybe<Array<JiraLabelsInput>>;
13444
- bulkEditMultiSelectFieldOption?: Maybe<JiraBulkEditMultiSelectFieldOptions>;
13445
- };
13446
13491
  export declare type JiraLabelsFieldOperationInput = {
13447
13492
  operation: JiraMultiValueFieldOperations;
13448
13493
  labels: Array<Scalars['String']>;
@@ -13453,9 +13498,6 @@ export declare type JiraLabelsFieldPayload = Payload & {
13453
13498
  errors?: Maybe<Array<MutationError>>;
13454
13499
  field?: Maybe<JiraLabelsField>;
13455
13500
  };
13456
- export declare type JiraLabelsInput = {
13457
- name: Scalars['String'];
13458
- };
13459
13501
  export declare type JiraLinkIssueToVersionRelatedWorkInput = {
13460
13502
  issueId?: Maybe<Scalars['ID']>;
13461
13503
  relatedWorkType: JiraVersionRelatedWorkType;
@@ -13709,7 +13751,6 @@ export declare type JiraMutation = {
13709
13751
  deleteJiraVersionApprover?: Maybe<JiraVersionDeleteApproverPayload>;
13710
13752
  updateJiraVersionApproverDescription?: Maybe<JiraVersionUpdateApproverDescriptionPayload>;
13711
13753
  updateJiraVersionApproverStatus?: Maybe<JiraVersionUpdateApproverStatusPayload>;
13712
- submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
13713
13754
  devOps?: Maybe<JiraDevOpsMutation>;
13714
13755
  createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
13715
13756
  updateProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
@@ -13921,10 +13962,6 @@ export declare type JiraMutationUpdateJiraVersionApproverDescriptionArgs = {
13921
13962
  export declare type JiraMutationUpdateJiraVersionApproverStatusArgs = {
13922
13963
  input: JiraVersionUpdateApproverStatusInput;
13923
13964
  };
13924
- export declare type JiraMutationSubmitBulkOperationArgs = {
13925
- cloudId: Scalars['ID'];
13926
- input: JiraSubmitBulkOperationInput;
13927
- };
13928
13965
  export declare type JiraMutationCreateProjectShortcutArgs = {
13929
13966
  input: JiraCreateShortcutInput;
13930
13967
  };
@@ -14486,9 +14523,6 @@ export declare type JiraPriorityFieldPayload = Payload & {
14486
14523
  errors?: Maybe<Array<MutationError>>;
14487
14524
  field?: Maybe<JiraPriorityField>;
14488
14525
  };
14489
- export declare type JiraPriorityInput = {
14490
- priorityId: Scalars['ID'];
14491
- };
14492
14526
  export declare type JiraProformaForms = {
14493
14527
  __typename?: 'JiraProformaForms';
14494
14528
  hasProjectForms?: Maybe<Scalars['Boolean']>;
@@ -16762,10 +16796,6 @@ export declare type JiraSingleSelectUserPickerFieldUsersArgs = {
16762
16796
  suggested?: Maybe<Scalars['Boolean']>;
16763
16797
  sessionId?: Maybe<Scalars['ID']>;
16764
16798
  };
16765
- export declare type JiraSingleSelectUserPickerFieldInput = {
16766
- fieldId: Scalars['ID'];
16767
- user: JiraUserInput;
16768
- };
16769
16799
  export declare type JiraSingleSelectUserPickerFieldOperationInput = {
16770
16800
  operation: JiraSingleValueFieldOperations;
16771
16801
  id?: Maybe<Scalars['ID']>;
@@ -16952,22 +16982,6 @@ export declare type JiraStoryPointEstimateFieldPayload = Payload & {
16952
16982
  errors?: Maybe<Array<MutationError>>;
16953
16983
  field?: Maybe<JiraNumberField>;
16954
16984
  };
16955
- export declare type JiraSubmitBulkOperationInput = {
16956
- bulkOperationType: JiraBulkOperationType;
16957
- bulkOperationInput: JiraBulkOperationInput;
16958
- };
16959
- export declare type JiraSubmitBulkOperationPayload = Payload & {
16960
- __typename?: 'JiraSubmitBulkOperationPayload';
16961
- success: Scalars['Boolean'];
16962
- errors?: Maybe<Array<MutationError>>;
16963
- progress?: Maybe<JiraSubmitBulkOperationProgress>;
16964
- };
16965
- export declare type JiraSubmitBulkOperationProgress = Node & {
16966
- __typename?: 'JiraSubmitBulkOperationProgress';
16967
- id: Scalars['ID'];
16968
- taskId: Scalars['String'];
16969
- submittedTime: Scalars['DateTime'];
16970
- };
16971
16985
  export declare type JiraSubtasksField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
16972
16986
  __typename?: 'JiraSubtasksField';
16973
16987
  id: Scalars['ID'];
@@ -17468,9 +17482,6 @@ export declare type JiraUserGroup = {
17468
17482
  accountId?: Maybe<Scalars['String']>;
17469
17483
  displayName?: Maybe<Scalars['String']>;
17470
17484
  };
17471
- export declare type JiraUserInput = {
17472
- accountId: Scalars['ID'];
17473
- };
17474
17485
  export declare type JiraUserIssueFieldConfiguration = {
17475
17486
  userFieldConfig?: Maybe<JiraUserFieldConfig>;
17476
17487
  };
@@ -17720,7 +17731,8 @@ export declare enum JiraVersionDetailsCollapsedUi {
17720
17731
  Description = "DESCRIPTION",
17721
17732
  RelatedWork = "RELATED_WORK",
17722
17733
  Issues = "ISSUES",
17723
- ProgressCard = "PROGRESS_CARD"
17734
+ ProgressCard = "PROGRESS_CARD",
17735
+ RightSidebar = "RIGHT_SIDEBAR"
17724
17736
  }
17725
17737
  export declare type JiraVersionDetailsCollapsedUisInput = {
17726
17738
  collapsedUis: Array<JiraVersionDetailsCollapsedUi>;
@@ -21329,6 +21341,7 @@ export declare type Query = {
21329
21341
  tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
21330
21342
  surfacePlatform: SurfacePlatformQueryApi;
21331
21343
  helpLayout?: Maybe<HelpLayoutQueryApi>;
21344
+ sandbox?: Maybe<Sandbox>;
21332
21345
  xflow?: Maybe<Scalars['String']>;
21333
21346
  virtualAgent?: Maybe<VirtualAgentQueryApi>;
21334
21347
  jiraReleases?: Maybe<JiraReleases>;
@@ -22560,6 +22573,21 @@ export declare type RoadmapsQueryRoadmapDeriveFieldsArgs = {
22560
22573
  jqlContexts?: Maybe<Array<Scalars['String']>>;
22561
22574
  customFilterIds?: Maybe<Array<Scalars['ID']>>;
22562
22575
  };
22576
+ export declare type Sandbox = {
22577
+ __typename?: 'Sandbox';
22578
+ events?: Maybe<Array<Maybe<SandboxEvent>>>;
22579
+ };
22580
+ export declare type SandboxEvent = {
22581
+ __typename?: 'SandboxEvent';
22582
+ orgId?: Maybe<Scalars['ID']>;
22583
+ };
22584
+ export declare type SandboxSubscription = {
22585
+ __typename?: 'SandboxSubscription';
22586
+ onSandboxUpdated?: Maybe<SandboxEvent>;
22587
+ };
22588
+ export declare type SandboxSubscriptionOnSandboxUpdatedArgs = {
22589
+ orgId: Scalars['ID'];
22590
+ };
22563
22591
  export declare type ScanPolarisProjectInput = {
22564
22592
  project: Scalars['ID'];
22565
22593
  refresh?: Maybe<Scalars['Boolean']>;
@@ -23171,6 +23199,7 @@ export declare type SecurityContainer = {
23171
23199
  url?: Maybe<Scalars['URL']>;
23172
23200
  icon?: Maybe<Scalars['URL']>;
23173
23201
  providerName?: Maybe<Scalars['String']>;
23202
+ providerId?: Maybe<Scalars['String']>;
23174
23203
  lastUpdated?: Maybe<Scalars['DateTime']>;
23175
23204
  };
23176
23205
  export declare type SecurityWorkspace = {
@@ -23178,6 +23207,7 @@ export declare type SecurityWorkspace = {
23178
23207
  url?: Maybe<Scalars['URL']>;
23179
23208
  icon?: Maybe<Scalars['URL']>;
23180
23209
  providerName?: Maybe<Scalars['String']>;
23210
+ providerId?: Maybe<Scalars['String']>;
23181
23211
  lastUpdated?: Maybe<Scalars['DateTime']>;
23182
23212
  };
23183
23213
  export declare type ServiceProvider = {
@@ -24149,6 +24179,8 @@ export declare type SoftwareSprintMetadata = {
24149
24179
  numCompletedIssues?: Maybe<Scalars['Int']>;
24150
24180
  numOpenIssues?: Maybe<Scalars['Int']>;
24151
24181
  top100CompletedCardKeysWithIncompleteChildren?: Maybe<Array<Maybe<Scalars['String']>>>;
24182
+ unestimatedIssueKeys?: Maybe<Array<Maybe<Scalars['String']>>>;
24183
+ unestimatedIssueCount?: Maybe<Scalars['Int']>;
24152
24184
  };
24153
24185
  export declare enum SortDirection {
24154
24186
  Asc = "ASC",
@@ -24267,6 +24299,7 @@ export declare type Subscription = {
24267
24299
  devOps?: Maybe<AriGraphSubscriptions>;
24268
24300
  onJiraIssueCreatedForUser?: Maybe<JiraOnIssueCreatedForUserResponseType>;
24269
24301
  testing?: Maybe<TestingSubscription>;
24302
+ sandbox?: Maybe<SandboxSubscription>;
24270
24303
  };
24271
24304
  export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
24272
24305
  cloudId: Scalars['ID'];
@@ -24962,6 +24995,7 @@ export declare type ThirdPartySecurityContainer = SecurityContainer & Node & {
24962
24995
  url?: Maybe<Scalars['URL']>;
24963
24996
  icon?: Maybe<Scalars['URL']>;
24964
24997
  providerName?: Maybe<Scalars['String']>;
24998
+ providerId?: Maybe<Scalars['String']>;
24965
24999
  lastUpdated?: Maybe<Scalars['DateTime']>;
24966
25000
  };
24967
25001
  export declare type ThirdPartySecurityWorkspace = SecurityWorkspace & Node & {
@@ -24971,6 +25005,7 @@ export declare type ThirdPartySecurityWorkspace = SecurityWorkspace & Node & {
24971
25005
  url?: Maybe<Scalars['URL']>;
24972
25006
  icon?: Maybe<Scalars['URL']>;
24973
25007
  providerName?: Maybe<Scalars['String']>;
25008
+ providerId?: Maybe<Scalars['String']>;
24974
25009
  lastUpdated?: Maybe<Scalars['DateTime']>;
24975
25010
  };
24976
25011
  export declare type TimeSeriesPoint = {