@forge/cli-shared 2.3.1-next.1 → 2.3.1-next.2
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
|
@@ -544,6 +544,7 @@ export declare type AppInstallationInput = {
|
|
|
544
544
|
environmentKey: Scalars['String'];
|
|
545
545
|
async?: Maybe<Scalars['Boolean']>;
|
|
546
546
|
licenseOverride?: Maybe<LicenseOverrideState>;
|
|
547
|
+
provisionRequestId?: Maybe<Scalars['ID']>;
|
|
547
548
|
};
|
|
548
549
|
export declare type AppInstallationLicense = {
|
|
549
550
|
__typename?: 'AppInstallationLicense';
|
|
@@ -5634,6 +5635,134 @@ export declare enum GrantCheckProduct {
|
|
|
5634
5635
|
Compass = "COMPASS",
|
|
5635
5636
|
NoGrantChecks = "NO_GRANT_CHECKS"
|
|
5636
5637
|
}
|
|
5638
|
+
export declare type HelpCenter = {
|
|
5639
|
+
__typename?: 'HelpCenter';
|
|
5640
|
+
helpCenterId: Scalars['ID'];
|
|
5641
|
+
collections?: Maybe<Array<HelpCenterCollection>>;
|
|
5642
|
+
};
|
|
5643
|
+
export declare type HelpCenterBulkCreateCollectionsInput = {
|
|
5644
|
+
helpCenterCreateCollectionInputItem: Array<HelpCenterCreateCollectionInput>;
|
|
5645
|
+
};
|
|
5646
|
+
export declare type HelpCenterBulkDeleteCollectionInput = {
|
|
5647
|
+
helpCenterCollectionDeleteInput: Array<HelpCenterCollectionDeleteInput>;
|
|
5648
|
+
};
|
|
5649
|
+
export declare type HelpCenterBulkUpdateCollectionInput = {
|
|
5650
|
+
helpCenterUpdateCollectionInputItem: Array<HelpCenterUpdateCollectionInput>;
|
|
5651
|
+
};
|
|
5652
|
+
export declare type HelpCenterCollection = {
|
|
5653
|
+
__typename?: 'HelpCenterCollection';
|
|
5654
|
+
collectionId: Scalars['ID'];
|
|
5655
|
+
items?: Maybe<HelpCenterCollectionItemConnection>;
|
|
5656
|
+
name: Scalars['String'];
|
|
5657
|
+
description?: Maybe<Scalars['String']>;
|
|
5658
|
+
properties?: Maybe<Scalars['JSON']>;
|
|
5659
|
+
};
|
|
5660
|
+
export declare type HelpCenterCollectionItemsArgs = {
|
|
5661
|
+
first?: Maybe<Scalars['Int']>;
|
|
5662
|
+
after?: Maybe<Scalars['String']>;
|
|
5663
|
+
last?: Maybe<Scalars['Int']>;
|
|
5664
|
+
before?: Maybe<Scalars['String']>;
|
|
5665
|
+
};
|
|
5666
|
+
export declare type HelpCenterCollectionDeleteInput = {
|
|
5667
|
+
helpCenterId: Scalars['ID'];
|
|
5668
|
+
collectionId: Scalars['ID'];
|
|
5669
|
+
};
|
|
5670
|
+
export declare type HelpCenterCollectionItem = {
|
|
5671
|
+
__typename?: 'HelpCenterCollectionItem';
|
|
5672
|
+
ari: Scalars['ID'];
|
|
5673
|
+
};
|
|
5674
|
+
export declare type HelpCenterCollectionItemConnection = {
|
|
5675
|
+
__typename?: 'HelpCenterCollectionItemConnection';
|
|
5676
|
+
edges?: Maybe<Array<Maybe<HelpCenterCollectionItemEdge>>>;
|
|
5677
|
+
nodes?: Maybe<Array<Maybe<HelpCenterCollectionItem>>>;
|
|
5678
|
+
pageInfo: PageInfo;
|
|
5679
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5680
|
+
};
|
|
5681
|
+
export declare type HelpCenterCollectionItemEdge = {
|
|
5682
|
+
__typename?: 'HelpCenterCollectionItemEdge';
|
|
5683
|
+
cursor: Scalars['String'];
|
|
5684
|
+
node?: Maybe<HelpCenterCollectionItem>;
|
|
5685
|
+
};
|
|
5686
|
+
export declare type HelpCenterCollectionItemInput = {
|
|
5687
|
+
ari: Scalars['ID'];
|
|
5688
|
+
};
|
|
5689
|
+
export declare type HelpCenterCollectionResult = HelpCenterCollection | HelpCenterQueryErrors;
|
|
5690
|
+
export declare type HelpCenterCreateCollectionInput = {
|
|
5691
|
+
helpCenterId: Scalars['ID'];
|
|
5692
|
+
items: Array<HelpCenterCollectionItemInput>;
|
|
5693
|
+
name: Scalars['String'];
|
|
5694
|
+
description?: Maybe<Scalars['String']>;
|
|
5695
|
+
properties?: Maybe<Scalars['JSON']>;
|
|
5696
|
+
};
|
|
5697
|
+
export declare type HelpCenterCreateCollectionPayload = Payload & {
|
|
5698
|
+
__typename?: 'HelpCenterCreateCollectionPayload';
|
|
5699
|
+
success: Scalars['Boolean'];
|
|
5700
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5701
|
+
successfullyCreatedCollectionIds: Array<Maybe<HelpCenterSuccessfullyCreatedCollectionIds>>;
|
|
5702
|
+
};
|
|
5703
|
+
export declare type HelpCenterDeleteUpdateCollectionPayload = Payload & {
|
|
5704
|
+
__typename?: 'HelpCenterDeleteUpdateCollectionPayload';
|
|
5705
|
+
success: Scalars['Boolean'];
|
|
5706
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5707
|
+
};
|
|
5708
|
+
export declare type HelpCenterMutationApi = {
|
|
5709
|
+
__typename?: 'HelpCenterMutationApi';
|
|
5710
|
+
createCollection: HelpCenterCreateCollectionPayload;
|
|
5711
|
+
updateCollection: HelpCenterDeleteUpdateCollectionPayload;
|
|
5712
|
+
updateCollectionsOrder: HelpCenterUpdateCollectionsOrderPayload;
|
|
5713
|
+
deleteCollection: HelpCenterDeleteUpdateCollectionPayload;
|
|
5714
|
+
};
|
|
5715
|
+
export declare type HelpCenterMutationApiCreateCollectionArgs = {
|
|
5716
|
+
input: HelpCenterBulkCreateCollectionsInput;
|
|
5717
|
+
};
|
|
5718
|
+
export declare type HelpCenterMutationApiUpdateCollectionArgs = {
|
|
5719
|
+
input: HelpCenterBulkUpdateCollectionInput;
|
|
5720
|
+
};
|
|
5721
|
+
export declare type HelpCenterMutationApiUpdateCollectionsOrderArgs = {
|
|
5722
|
+
input: HelpCenterUpdateCollectionsOrderInput;
|
|
5723
|
+
};
|
|
5724
|
+
export declare type HelpCenterMutationApiDeleteCollectionArgs = {
|
|
5725
|
+
input: HelpCenterBulkDeleteCollectionInput;
|
|
5726
|
+
};
|
|
5727
|
+
export declare type HelpCenterQueryApi = {
|
|
5728
|
+
__typename?: 'HelpCenterQueryApi';
|
|
5729
|
+
helpCenter: HelpCenterQueryResult;
|
|
5730
|
+
helpCenterCollection: HelpCenterCollectionResult;
|
|
5731
|
+
};
|
|
5732
|
+
export declare type HelpCenterQueryApiHelpCenterArgs = {
|
|
5733
|
+
helpCenterId: Scalars['ID'];
|
|
5734
|
+
};
|
|
5735
|
+
export declare type HelpCenterQueryApiHelpCenterCollectionArgs = {
|
|
5736
|
+
helpCenterId: Scalars['ID'];
|
|
5737
|
+
collectionId: Scalars['ID'];
|
|
5738
|
+
};
|
|
5739
|
+
export declare type HelpCenterQueryErrors = {
|
|
5740
|
+
__typename?: 'HelpCenterQueryErrors';
|
|
5741
|
+
errors?: Maybe<Array<QueryError>>;
|
|
5742
|
+
};
|
|
5743
|
+
export declare type HelpCenterQueryResult = HelpCenter | HelpCenterQueryErrors;
|
|
5744
|
+
export declare type HelpCenterSuccessfullyCreatedCollectionIds = {
|
|
5745
|
+
__typename?: 'HelpCenterSuccessfullyCreatedCollectionIds';
|
|
5746
|
+
helpCenterId: Scalars['ID'];
|
|
5747
|
+
collectionIds: Scalars['ID'];
|
|
5748
|
+
};
|
|
5749
|
+
export declare type HelpCenterUpdateCollectionInput = {
|
|
5750
|
+
helpCenterId: Scalars['ID'];
|
|
5751
|
+
collectionId: Scalars['ID'];
|
|
5752
|
+
items: Array<HelpCenterCollectionItemInput>;
|
|
5753
|
+
name: Scalars['String'];
|
|
5754
|
+
description?: Maybe<Scalars['String']>;
|
|
5755
|
+
properties?: Maybe<Scalars['JSON']>;
|
|
5756
|
+
};
|
|
5757
|
+
export declare type HelpCenterUpdateCollectionsOrderInput = {
|
|
5758
|
+
helpCenterId: Scalars['ID'];
|
|
5759
|
+
collectionIds: Array<Scalars['ID']>;
|
|
5760
|
+
};
|
|
5761
|
+
export declare type HelpCenterUpdateCollectionsOrderPayload = Payload & {
|
|
5762
|
+
__typename?: 'HelpCenterUpdateCollectionsOrderPayload';
|
|
5763
|
+
success: Scalars['Boolean'];
|
|
5764
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5765
|
+
};
|
|
5637
5766
|
export declare type HostedResourcePreSignedUrl = {
|
|
5638
5767
|
__typename?: 'HostedResourcePreSignedUrl';
|
|
5639
5768
|
uploadUrl: Scalars['String'];
|
|
@@ -11263,6 +11392,7 @@ export declare type Mutation = {
|
|
|
11263
11392
|
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
11264
11393
|
deleteAppEnvironmentVariable?: Maybe<DeleteAppEnvironmentVariablePayload>;
|
|
11265
11394
|
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
11395
|
+
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
11266
11396
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
11267
11397
|
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
11268
11398
|
};
|
|
@@ -13008,6 +13138,7 @@ export declare type Query = {
|
|
|
13008
13138
|
marketplaceUser?: Maybe<MarketplaceUser>;
|
|
13009
13139
|
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
13010
13140
|
appDeployment?: Maybe<AppDeployment>;
|
|
13141
|
+
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
13011
13142
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
13012
13143
|
extensionsEcho?: Maybe<Scalars['String']>;
|
|
13013
13144
|
extensionContexts?: Maybe<Array<ExtensionContext>>;
|
|
@@ -13336,7 +13467,11 @@ export declare type RankingDiffPayload = {
|
|
|
13336
13467
|
};
|
|
13337
13468
|
export declare enum RateLimitingCurrency {
|
|
13338
13469
|
TestingService = "TESTING_SERVICE",
|
|
13470
|
+
DevopsContainerRelationshipsReadCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_READ_CURRENCY",
|
|
13471
|
+
DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
|
|
13339
13472
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
13473
|
+
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
13474
|
+
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
13340
13475
|
TeamsCurrency = "TEAMS_CURRENCY",
|
|
13341
13476
|
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
13342
13477
|
CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY"
|
|
@@ -14131,7 +14266,7 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
|
|
|
14131
14266
|
};
|
|
14132
14267
|
export declare type ShepherdAlert = {
|
|
14133
14268
|
__typename?: 'ShepherdAlert';
|
|
14134
|
-
|
|
14269
|
+
assignee?: Maybe<ShepherdUser>;
|
|
14135
14270
|
cloudId?: Maybe<Scalars['ID']>;
|
|
14136
14271
|
createdOn: Scalars['DateTime'];
|
|
14137
14272
|
id: Scalars['ID'];
|
|
@@ -14168,6 +14303,7 @@ export declare type ShepherdAppInfo = {
|
|
|
14168
14303
|
loginUrl: Scalars['String'];
|
|
14169
14304
|
};
|
|
14170
14305
|
export declare type ShepherdCreateAlertInput = {
|
|
14306
|
+
assignee?: Maybe<Scalars['ID']>;
|
|
14171
14307
|
cloudId?: Maybe<Scalars['ID']>;
|
|
14172
14308
|
orgId: Scalars['ID'];
|
|
14173
14309
|
status?: Maybe<ShepherdAlertStatus>;
|
|
@@ -14179,6 +14315,10 @@ export declare type ShepherdCreateAlertPayload = Payload & {
|
|
|
14179
14315
|
node?: Maybe<ShepherdAlert>;
|
|
14180
14316
|
success: Scalars['Boolean'];
|
|
14181
14317
|
};
|
|
14318
|
+
export declare type ShepherdCreateEmailInput = {
|
|
14319
|
+
email?: Maybe<Scalars['String']>;
|
|
14320
|
+
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14321
|
+
};
|
|
14182
14322
|
export declare type ShepherdCreateOrganizationInput = {
|
|
14183
14323
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
14184
14324
|
id: Scalars['ID'];
|
|
@@ -14189,6 +14329,40 @@ export declare type ShepherdCreateOrganizationPayload = Payload & {
|
|
|
14189
14329
|
node?: Maybe<ShepherdOrganization>;
|
|
14190
14330
|
success: Scalars['Boolean'];
|
|
14191
14331
|
};
|
|
14332
|
+
export declare type ShepherdCreateSubscriptionInput = {
|
|
14333
|
+
email?: Maybe<ShepherdCreateEmailInput>;
|
|
14334
|
+
orgId: Scalars['ID'];
|
|
14335
|
+
webhook?: Maybe<ShepherdCreateWebhookInput>;
|
|
14336
|
+
};
|
|
14337
|
+
export declare type ShepherdCreateSubscriptionPayload = Payload & {
|
|
14338
|
+
__typename?: 'ShepherdCreateSubscriptionPayload';
|
|
14339
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14340
|
+
node?: Maybe<ShepherdWebhookSubscription>;
|
|
14341
|
+
success: Scalars['Boolean'];
|
|
14342
|
+
};
|
|
14343
|
+
export declare type ShepherdCreateWebhookInput = {
|
|
14344
|
+
authToken?: Maybe<Scalars['String']>;
|
|
14345
|
+
callbackURL: Scalars['URL'];
|
|
14346
|
+
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14347
|
+
};
|
|
14348
|
+
export declare type ShepherdEmailConnection = {
|
|
14349
|
+
__typename?: 'ShepherdEmailConnection';
|
|
14350
|
+
edges?: Maybe<Array<Maybe<ShepherdEmailEdge>>>;
|
|
14351
|
+
};
|
|
14352
|
+
export declare type ShepherdEmailEdge = {
|
|
14353
|
+
__typename?: 'ShepherdEmailEdge';
|
|
14354
|
+
node?: Maybe<ShepherdEmailSubscription>;
|
|
14355
|
+
};
|
|
14356
|
+
export declare type ShepherdEmailSubscription = ShepherdSubscription & {
|
|
14357
|
+
__typename?: 'ShepherdEmailSubscription';
|
|
14358
|
+
createdBy: Scalars['String'];
|
|
14359
|
+
createdOn: Scalars['DateTime'];
|
|
14360
|
+
email: Scalars['String'];
|
|
14361
|
+
id: Scalars['ID'];
|
|
14362
|
+
status: ShepherdSubscriptionStatus;
|
|
14363
|
+
updatedBy?: Maybe<Scalars['String']>;
|
|
14364
|
+
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14365
|
+
};
|
|
14192
14366
|
export declare type ShepherdGenericQueryErrorExtension = QueryErrorExtension & {
|
|
14193
14367
|
__typename?: 'ShepherdGenericQueryErrorExtension';
|
|
14194
14368
|
errorType?: Maybe<Scalars['String']>;
|
|
@@ -14199,8 +14373,10 @@ export declare type ShepherdMutation = {
|
|
|
14199
14373
|
__typename?: 'ShepherdMutation';
|
|
14200
14374
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
14201
14375
|
createOrganization?: Maybe<ShepherdCreateOrganizationPayload>;
|
|
14376
|
+
createSubscription?: Maybe<ShepherdCreateSubscriptionPayload>;
|
|
14202
14377
|
updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
|
|
14203
14378
|
updateOrganization?: Maybe<ShepherdUpdateOrganizationPayload>;
|
|
14379
|
+
updateSubscription?: Maybe<ShepherdUpdateSubscriptionPayload>;
|
|
14204
14380
|
};
|
|
14205
14381
|
export declare type ShepherdMutationCreateAlertArgs = {
|
|
14206
14382
|
input: ShepherdCreateAlertInput;
|
|
@@ -14208,6 +14384,9 @@ export declare type ShepherdMutationCreateAlertArgs = {
|
|
|
14208
14384
|
export declare type ShepherdMutationCreateOrganizationArgs = {
|
|
14209
14385
|
input: ShepherdCreateOrganizationInput;
|
|
14210
14386
|
};
|
|
14387
|
+
export declare type ShepherdMutationCreateSubscriptionArgs = {
|
|
14388
|
+
input: ShepherdCreateSubscriptionInput;
|
|
14389
|
+
};
|
|
14211
14390
|
export declare type ShepherdMutationUpdateAlertArgs = {
|
|
14212
14391
|
id: Scalars['ID'];
|
|
14213
14392
|
input: ShepherdUpdateAlertInput;
|
|
@@ -14216,19 +14395,25 @@ export declare type ShepherdMutationUpdateOrganizationArgs = {
|
|
|
14216
14395
|
id: Scalars['ID'];
|
|
14217
14396
|
input: ShepherdUpdateOrganizationInput;
|
|
14218
14397
|
};
|
|
14398
|
+
export declare type ShepherdMutationUpdateSubscriptionArgs = {
|
|
14399
|
+
id: Scalars['ID'];
|
|
14400
|
+
input: ShepherdUpdateSubscriptionInput;
|
|
14401
|
+
};
|
|
14219
14402
|
export declare type ShepherdOrganization = {
|
|
14220
14403
|
__typename?: 'ShepherdOrganization';
|
|
14221
14404
|
createdOn: Scalars['DateTime'];
|
|
14222
14405
|
enabled: Scalars['Boolean'];
|
|
14223
14406
|
id: Scalars['ID'];
|
|
14407
|
+
subscriptions?: Maybe<ShepherdSubscriptionsResult>;
|
|
14224
14408
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14225
14409
|
};
|
|
14410
|
+
export declare type ShepherdOrganizationResult = QueryError | ShepherdOrganization;
|
|
14226
14411
|
export declare type ShepherdQuery = {
|
|
14227
14412
|
__typename?: 'ShepherdQuery';
|
|
14228
14413
|
shepherdAlert?: Maybe<ShepherdAlertResult>;
|
|
14229
14414
|
shepherdAlerts?: Maybe<ShepherdAlertsResult>;
|
|
14230
14415
|
shepherdAppInfo: ShepherdAppInfo;
|
|
14231
|
-
shepherdOrganization?: Maybe<
|
|
14416
|
+
shepherdOrganization?: Maybe<ShepherdOrganizationResult>;
|
|
14232
14417
|
shepherdUser?: Maybe<ShepherdUser>;
|
|
14233
14418
|
};
|
|
14234
14419
|
export declare type ShepherdQueryShepherdAlertArgs = {
|
|
@@ -14244,7 +14429,21 @@ export declare enum ShepherdQueryErrorType {
|
|
|
14244
14429
|
NoProductAccess = "NO_PRODUCT_ACCESS",
|
|
14245
14430
|
Unauthorized = "UNAUTHORIZED"
|
|
14246
14431
|
}
|
|
14432
|
+
export declare type ShepherdSubscription = {
|
|
14433
|
+
createdBy: Scalars['String'];
|
|
14434
|
+
createdOn: Scalars['DateTime'];
|
|
14435
|
+
id: Scalars['ID'];
|
|
14436
|
+
status: ShepherdSubscriptionStatus;
|
|
14437
|
+
updatedBy?: Maybe<Scalars['String']>;
|
|
14438
|
+
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14439
|
+
};
|
|
14440
|
+
export declare enum ShepherdSubscriptionStatus {
|
|
14441
|
+
Active = "ACTIVE",
|
|
14442
|
+
Inactive = "INACTIVE"
|
|
14443
|
+
}
|
|
14444
|
+
export declare type ShepherdSubscriptionsResult = ShepherdEmailConnection | ShepherdWebhookConnection;
|
|
14247
14445
|
export declare type ShepherdUpdateAlertInput = {
|
|
14446
|
+
assignee?: Maybe<Scalars['ID']>;
|
|
14248
14447
|
status?: Maybe<ShepherdAlertStatus>;
|
|
14249
14448
|
};
|
|
14250
14449
|
export declare type ShepherdUpdateAlertPayload = Payload & {
|
|
@@ -14253,6 +14452,10 @@ export declare type ShepherdUpdateAlertPayload = Payload & {
|
|
|
14253
14452
|
node?: Maybe<ShepherdAlert>;
|
|
14254
14453
|
success: Scalars['Boolean'];
|
|
14255
14454
|
};
|
|
14455
|
+
export declare type ShepherdUpdateEmailInput = {
|
|
14456
|
+
email?: Maybe<ShepherdCreateEmailInput>;
|
|
14457
|
+
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14458
|
+
};
|
|
14256
14459
|
export declare type ShepherdUpdateOrganizationInput = {
|
|
14257
14460
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
14258
14461
|
};
|
|
@@ -14262,10 +14465,44 @@ export declare type ShepherdUpdateOrganizationPayload = Payload & {
|
|
|
14262
14465
|
node?: Maybe<ShepherdOrganization>;
|
|
14263
14466
|
success: Scalars['Boolean'];
|
|
14264
14467
|
};
|
|
14468
|
+
export declare type ShepherdUpdateSubscriptionInput = {
|
|
14469
|
+
email?: Maybe<ShepherdUpdateEmailInput>;
|
|
14470
|
+
orgId: Scalars['ID'];
|
|
14471
|
+
webhook?: Maybe<ShepherdUpdateWebhookInput>;
|
|
14472
|
+
};
|
|
14473
|
+
export declare type ShepherdUpdateSubscriptionPayload = Payload & {
|
|
14474
|
+
__typename?: 'ShepherdUpdateSubscriptionPayload';
|
|
14475
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14476
|
+
node?: Maybe<ShepherdWebhookSubscription>;
|
|
14477
|
+
success: Scalars['Boolean'];
|
|
14478
|
+
};
|
|
14479
|
+
export declare type ShepherdUpdateWebhookInput = {
|
|
14480
|
+
callbackURL?: Maybe<Scalars['URL']>;
|
|
14481
|
+
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14482
|
+
};
|
|
14265
14483
|
export declare type ShepherdUser = {
|
|
14266
14484
|
__typename?: 'ShepherdUser';
|
|
14267
14485
|
user?: Maybe<User>;
|
|
14268
14486
|
};
|
|
14487
|
+
export declare type ShepherdWebhookConnection = {
|
|
14488
|
+
__typename?: 'ShepherdWebhookConnection';
|
|
14489
|
+
edges?: Maybe<Array<Maybe<ShepherdWebhookEdge>>>;
|
|
14490
|
+
};
|
|
14491
|
+
export declare type ShepherdWebhookEdge = {
|
|
14492
|
+
__typename?: 'ShepherdWebhookEdge';
|
|
14493
|
+
node?: Maybe<ShepherdWebhookSubscription>;
|
|
14494
|
+
};
|
|
14495
|
+
export declare type ShepherdWebhookSubscription = ShepherdSubscription & {
|
|
14496
|
+
__typename?: 'ShepherdWebhookSubscription';
|
|
14497
|
+
authToken: Scalars['String'];
|
|
14498
|
+
callbackURL: Scalars['String'];
|
|
14499
|
+
createdBy: Scalars['String'];
|
|
14500
|
+
createdOn: Scalars['DateTime'];
|
|
14501
|
+
id: Scalars['ID'];
|
|
14502
|
+
status: ShepherdSubscriptionStatus;
|
|
14503
|
+
updatedBy?: Maybe<Scalars['String']>;
|
|
14504
|
+
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14505
|
+
};
|
|
14269
14506
|
export declare type SoftwareBoard = {
|
|
14270
14507
|
__typename?: 'SoftwareBoard';
|
|
14271
14508
|
id?: Maybe<Scalars['ID']>;
|