@forge/cli-shared 3.1.1-next.3 → 3.1.1

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,23 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [0871a3b]
8
+ - Updated dependencies [1c51c99]
9
+ - Updated dependencies [f8d567a]
10
+ - Updated dependencies [47a47a4]
11
+ - Updated dependencies [aa3a70e]
12
+ - @forge/manifest@4.3.0
13
+
14
+ ## 3.1.1-next.4
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [aa3a70e]
19
+ - @forge/manifest@4.3.0-next.4
20
+
3
21
  ## 3.1.1-next.3
4
22
 
5
23
  ### Patch Changes
@@ -720,6 +720,10 @@ export declare type AppPermission = {
720
720
  egress?: Maybe<Array<AppNetworkEgressPermission>>;
721
721
  securityPolicies?: Maybe<Array<AppSecurityPoliciesPermission>>;
722
722
  };
723
+ export declare type AppPrincipal = {
724
+ __typename?: 'AppPrincipal';
725
+ id?: Maybe<Scalars['ID']>;
726
+ };
723
727
  export declare type AppSecurityPoliciesPermission = {
724
728
  __typename?: 'AppSecurityPoliciesPermission';
725
729
  type?: Maybe<AppSecurityPoliciesPermissionType>;
@@ -6200,10 +6204,12 @@ export declare type DevOpsTool = Node & {
6200
6204
  group: DevOpsToolGroup;
6201
6205
  category: DevOpsToolCategory;
6202
6206
  supportsContainers: Scalars['Boolean'];
6207
+ containerRelationshipType?: Maybe<Scalars['ID']>;
6203
6208
  recommended: Scalars['Boolean'];
6204
6209
  integration?: Maybe<DevOpsToolIntegration>;
6205
6210
  namespaces?: Maybe<DevOpsToolNamespaceConnection>;
6206
6211
  auth?: Maybe<DevOpsToolAuth>;
6212
+ containerRelationships?: Maybe<AriGraphRelationshipConnection>;
6207
6213
  jiraProjectRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
6208
6214
  };
6209
6215
  export declare type DevOpsToolNamespacesArgs = {
@@ -6211,6 +6217,13 @@ export declare type DevOpsToolNamespacesArgs = {
6211
6217
  first?: Maybe<Scalars['Int']>;
6212
6218
  after?: Maybe<Scalars['String']>;
6213
6219
  };
6220
+ export declare type DevOpsToolContainerRelationshipsArgs = {
6221
+ jiraProjectId: Scalars['ID'];
6222
+ filter?: Maybe<AriGraphRelationshipsFilter>;
6223
+ first?: Maybe<Scalars['Int']>;
6224
+ after?: Maybe<Scalars['String']>;
6225
+ sort?: Maybe<AriGraphRelationshipsSort>;
6226
+ };
6214
6227
  export declare type DevOpsToolJiraProjectRelationshipsArgs = {
6215
6228
  jiraProjectId?: Maybe<Scalars['ID']>;
6216
6229
  first?: Maybe<Scalars['Int']>;
@@ -6224,7 +6237,9 @@ export declare type DevOpsToolAppLinks = {
6224
6237
  configure?: Maybe<Scalars['String']>;
6225
6238
  getStarted?: Maybe<Scalars['String']>;
6226
6239
  };
6227
- export declare type DevOpsToolAuth = DevOpsToolDefaultAuth | DevOpsToolOAuth;
6240
+ export declare type DevOpsToolAuth = {
6241
+ authenticated: Scalars['Boolean'];
6242
+ };
6228
6243
  export declare type DevOpsToolAvatar = {
6229
6244
  __typename?: 'DevOpsToolAvatar';
6230
6245
  url: Scalars['URL'];
@@ -6312,7 +6327,7 @@ export declare type DevOpsToolContainerNameConflict = {
6312
6327
  __typename?: 'DevOpsToolContainerNameConflict';
6313
6328
  name?: Maybe<Scalars['String']>;
6314
6329
  };
6315
- export declare type DevOpsToolDefaultAuth = {
6330
+ export declare type DevOpsToolDefaultAuth = DevOpsToolAuth & {
6316
6331
  __typename?: 'DevOpsToolDefaultAuth';
6317
6332
  authenticated: Scalars['Boolean'];
6318
6333
  };
@@ -6354,21 +6369,31 @@ export declare type DevOpsToolGroupEdge = {
6354
6369
  cursor: Scalars['String'];
6355
6370
  node?: Maybe<DevOpsToolGroup>;
6356
6371
  };
6357
- export declare type DevOpsToolIntegration = DevOpsToolIntegrationApp | DevOpsToolIntegrationProduct;
6358
- export declare type DevOpsToolIntegrationApp = {
6372
+ export declare type DevOpsToolIntegration = {
6373
+ key: Scalars['String'];
6374
+ name: Scalars['String'];
6375
+ installed: Scalars['Boolean'];
6376
+ iconUrl?: Maybe<Scalars['String']>;
6377
+ };
6378
+ export declare type DevOpsToolIntegrationApp = DevOpsToolIntegration & {
6359
6379
  __typename?: 'DevOpsToolIntegrationApp';
6360
6380
  appKey: Scalars['String'];
6381
+ key: Scalars['String'];
6361
6382
  appName: Scalars['String'];
6383
+ name: Scalars['String'];
6362
6384
  marketplaceType: Scalars['String'];
6363
6385
  installed: Scalars['Boolean'];
6364
6386
  iconUrl?: Maybe<Scalars['String']>;
6365
6387
  links?: Maybe<DevOpsToolAppLinks>;
6366
6388
  };
6367
- export declare type DevOpsToolIntegrationProduct = {
6389
+ export declare type DevOpsToolIntegrationProduct = DevOpsToolIntegration & {
6368
6390
  __typename?: 'DevOpsToolIntegrationProduct';
6369
6391
  productKey: Scalars['String'];
6392
+ key: Scalars['String'];
6370
6393
  productName: Scalars['String'];
6394
+ name: Scalars['String'];
6371
6395
  available: Scalars['Boolean'];
6396
+ installed: Scalars['Boolean'];
6372
6397
  iconUrl?: Maybe<Scalars['String']>;
6373
6398
  };
6374
6399
  export declare enum DevOpsToolIntegrationType {
@@ -6415,7 +6440,7 @@ export declare enum DevOpsToolNavbarConnectionStateTab {
6415
6440
  OncallTab = "ONCALL_TAB",
6416
6441
  PagesTab = "PAGES_TAB"
6417
6442
  }
6418
- export declare type DevOpsToolOAuth = {
6443
+ export declare type DevOpsToolOAuth = DevOpsToolAuth & {
6419
6444
  __typename?: 'DevOpsToolOAuth';
6420
6445
  authenticated: Scalars['Boolean'];
6421
6446
  oauthUrl: Scalars['String'];
@@ -6674,8 +6699,10 @@ export declare type EventSourceEventsArgs = {
6674
6699
  export declare type Extension = {
6675
6700
  __typename?: 'Extension';
6676
6701
  id: Scalars['ID'];
6702
+ appId: Scalars['ID'];
6677
6703
  definitionId: Scalars['ID'];
6678
6704
  environmentId: Scalars['ID'];
6705
+ versionId: Scalars['ID'];
6679
6706
  environmentKey: Scalars['String'];
6680
6707
  environmentType: Scalars['String'];
6681
6708
  installationId: Scalars['String'];
@@ -6684,6 +6711,8 @@ export declare type Extension = {
6684
6711
  appOwner?: Maybe<User>;
6685
6712
  appVersion?: Maybe<Scalars['String']>;
6686
6713
  properties: Scalars['JSON'];
6714
+ scopes: Array<Scalars['String']>;
6715
+ principal?: Maybe<AppPrincipal>;
6687
6716
  migrationKey?: Maybe<Scalars['String']>;
6688
6717
  license?: Maybe<AppInstallationLicense>;
6689
6718
  egress?: Maybe<Array<AppNetworkEgressPermissionExtension>>;
@@ -7080,7 +7109,9 @@ export declare type FortifiedMetricsIntervalRange = {
7080
7109
  export declare type FortifiedMetricsQuery = {
7081
7110
  __typename?: 'FortifiedMetricsQuery';
7082
7111
  appKey: Scalars['ID'];
7112
+ appAvailability?: Maybe<FortifiedSuccessRateMetricQuery>;
7083
7113
  installationCallbacks?: Maybe<FortifiedSuccessRateMetricQuery>;
7114
+ webhooks?: Maybe<FortifiedSuccessRateMetricQuery>;
7084
7115
  };
7085
7116
  export declare type FortifiedMetricsQueryFilters = {
7086
7117
  interval: FortifiedMetricsIntervalInput;
@@ -8281,6 +8312,7 @@ export declare type JiraCmdbObjectAttributeValue = {
8281
8312
  user?: Maybe<User>;
8282
8313
  group?: Maybe<JiraGroup>;
8283
8314
  status?: Maybe<JiraCmdbStatusType>;
8315
+ project?: Maybe<JiraProject>;
8284
8316
  value?: Maybe<Scalars['String']>;
8285
8317
  displayValue?: Maybe<Scalars['String']>;
8286
8318
  searchValue?: Maybe<Scalars['String']>;
@@ -13162,6 +13194,9 @@ export declare type JiraVersionReleaseNotesOptionsIssueFieldsArgs = {
13162
13194
  before?: Maybe<Scalars['String']>;
13163
13195
  searchString?: Maybe<Scalars['String']>;
13164
13196
  };
13197
+ export declare type JiraVersionReleaseNotesArgs = {
13198
+ releaseNoteConfiguration?: Maybe<JiraVersionReleaseNotesConfigurationInput>;
13199
+ };
13165
13200
  export declare type JiraVersionConnectAddonIframeData = {
13166
13201
  __typename?: 'JiraVersionConnectAddonIframeData';
13167
13202
  appKey?: Maybe<Scalars['String']>;
@@ -13232,6 +13267,11 @@ export declare type JiraVersionRelatedWorkEdge = {
13232
13267
  cursor?: Maybe<Scalars['String']>;
13233
13268
  node?: Maybe<JiraVersionRelatedWork>;
13234
13269
  };
13270
+ export declare type JiraVersionReleaseNotesConfigurationInput = {
13271
+ issueFieldIds: Array<Scalars['ID']>;
13272
+ issueTypeIds: Array<Scalars['ID']>;
13273
+ issueKeyConfig: JiraReleaseNotesIssueKeyConfig;
13274
+ };
13235
13275
  export declare type JiraVersionResult = JiraVersion | QueryError;
13236
13276
  export declare enum JiraVersionStatus {
13237
13277
  Released = "RELEASED",
@@ -13421,6 +13461,17 @@ export declare type MarketplaceAppCategory = {
13421
13461
  __typename?: 'MarketplaceAppCategory';
13422
13462
  name: Scalars['String'];
13423
13463
  };
13464
+ export declare type MarketplaceAppConnection = {
13465
+ __typename?: 'MarketplaceAppConnection';
13466
+ edges?: Maybe<Array<Maybe<MarketplaceAppConnectionEdge>>>;
13467
+ pageInfo: PageInfo;
13468
+ totalCount: Scalars['Int'];
13469
+ };
13470
+ export declare type MarketplaceAppConnectionEdge = {
13471
+ __typename?: 'MarketplaceAppConnectionEdge';
13472
+ cursor: Scalars['String'];
13473
+ node?: Maybe<MarketplaceApp>;
13474
+ };
13424
13475
  export declare type MarketplaceAppDeployment = {
13425
13476
  compatibleProducts: Array<CompatibleAtlassianProduct>;
13426
13477
  };
@@ -13512,6 +13563,10 @@ export declare type MarketplaceAppWatchersInfo = {
13512
13563
  isUserWatchingApp: Scalars['Boolean'];
13513
13564
  watchersCount: Scalars['Int'];
13514
13565
  };
13566
+ export declare type MarketplaceAppsFilter = {
13567
+ productHostingOptions?: Maybe<Array<AtlassianProductHostingType>>;
13568
+ cloudFortifiedStatus?: Maybe<Array<MarketplaceProgramStatus>>;
13569
+ };
13515
13570
  export declare enum MarketplaceBillingCycle {
13516
13571
  Annual = "ANNUAL",
13517
13572
  Monthly = "MONTHLY"
@@ -13962,6 +14017,7 @@ export declare type Mutation = {
13962
14017
  archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
13963
14018
  unarchivePolarisInsights?: Maybe<UnarchivePolarisInsightsPayload>;
13964
14019
  createPolarisPlay?: Maybe<CreatePolarisPlayPayload>;
14020
+ updatePolarisPlay?: Maybe<UpdatePolarisPlayPayload>;
13965
14021
  createPolarisPlayContribution?: Maybe<CreatePolarisPlayContributionPayload>;
13966
14022
  updatePolarisPlayContribution?: Maybe<UpdatePolarisPlayContributionPayload>;
13967
14023
  deletePolarisPlayContribution?: Maybe<DeletePolarisPlayContributionPayload>;
@@ -14244,6 +14300,9 @@ export declare type MutationUnarchivePolarisInsightsArgs = {
14244
14300
  export declare type MutationCreatePolarisPlayArgs = {
14245
14301
  input: CreatePolarisPlayInput;
14246
14302
  };
14303
+ export declare type MutationUpdatePolarisPlayArgs = {
14304
+ input: UpdatePolarisPlayInput;
14305
+ };
14247
14306
  export declare type MutationCreatePolarisPlayContributionArgs = {
14248
14307
  input: CreatePolarisPlayContribution;
14249
14308
  };
@@ -15862,6 +15921,7 @@ export declare type Query = {
15862
15921
  marketplaceApp?: Maybe<MarketplaceApp>;
15863
15922
  marketplaceAppByKey?: Maybe<MarketplaceApp>;
15864
15923
  marketplaceAppByCloudAppId?: Maybe<MarketplaceApp>;
15924
+ myMarketplaceApps?: Maybe<MarketplaceAppConnection>;
15865
15925
  marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
15866
15926
  marketplaceUser?: Maybe<MarketplaceUser>;
15867
15927
  compass?: Maybe<CompassCatalogQueryApi>;
@@ -16107,6 +16167,11 @@ export declare type QueryMarketplaceAppByKeyArgs = {
16107
16167
  export declare type QueryMarketplaceAppByCloudAppIdArgs = {
16108
16168
  cloudAppId: Scalars['ID'];
16109
16169
  };
16170
+ export declare type QueryMyMarketplaceAppsArgs = {
16171
+ filter?: Maybe<MarketplaceAppsFilter>;
16172
+ first?: Maybe<Scalars['Int']>;
16173
+ after?: Maybe<Scalars['String']>;
16174
+ };
16110
16175
  export declare type QueryMarketplacePricingPlanArgs = {
16111
16176
  appId: Scalars['ID'];
16112
16177
  hostingType: AtlassianProductHostingType;
@@ -17546,18 +17611,23 @@ export declare enum ShepherdAlertTemplateType {
17546
17611
  CreatedPolicy = "CREATED_POLICY",
17547
17612
  CreatedSamlConfig = "CREATED_SAML_CONFIG",
17548
17613
  CreatedTunnel = "CREATED_TUNNEL",
17614
+ CreateUserProvisioning = "CREATE_USER_PROVISIONING",
17549
17615
  Default = "DEFAULT",
17550
17616
  DeletedAuthPolicy = "DELETED_AUTH_POLICY",
17617
+ DeletedDomain = "DELETED_DOMAIN",
17551
17618
  DeletedPolicy = "DELETED_POLICY",
17552
17619
  DeletedTunnel = "DELETED_TUNNEL",
17553
17620
  EnableScimSync = "ENABLE_SCIM_SYNC",
17621
+ ExportedOrgeventscsv = "EXPORTED_ORGEVENTSCSV",
17554
17622
  InitiatedGsyncConnection = "INITIATED_GSYNC_CONNECTION",
17623
+ RotateScimDirectoryToken = "ROTATE_SCIM_DIRECTORY_TOKEN",
17555
17624
  TokenCreated = "TOKEN_CREATED",
17556
17625
  UpdatedAuthPolicy = "UPDATED_AUTH_POLICY",
17557
17626
  UpdatedPolicy = "UPDATED_POLICY",
17558
17627
  UpdatedSamlConfig = "UPDATED_SAML_CONFIG",
17559
17628
  UserGrantedRole = "USER_GRANTED_ROLE",
17560
- UserRevokedRole = "USER_REVOKED_ROLE"
17629
+ UserRevokedRole = "USER_REVOKED_ROLE",
17630
+ VerifiedDomainVerification = "VERIFIED_DOMAIN_VERIFICATION"
17561
17631
  }
17562
17632
  export declare type ShepherdAlertsConnection = {
17563
17633
  __typename?: 'ShepherdAlertsConnection';
@@ -17612,9 +17682,17 @@ export declare type ShepherdCreateOrganizationPayload = Payload & {
17612
17682
  node?: Maybe<ShepherdOrganization>;
17613
17683
  success: Scalars['Boolean'];
17614
17684
  };
17685
+ export declare type ShepherdCreateSlackInput = {
17686
+ authToken: Scalars['String'];
17687
+ callbackURL: Scalars['URL'];
17688
+ channelId: Scalars['String'];
17689
+ status: ShepherdSubscriptionStatus;
17690
+ teamId: Scalars['String'];
17691
+ };
17615
17692
  export declare type ShepherdCreateSubscriptionInput = {
17616
17693
  email?: Maybe<ShepherdCreateEmailInput>;
17617
17694
  orgId: Scalars['ID'];
17695
+ slack?: Maybe<ShepherdCreateSlackInput>;
17618
17696
  webhook?: Maybe<ShepherdCreateWebhookInput>;
17619
17697
  };
17620
17698
  export declare type ShepherdCreateSubscriptionPayload = Payload & {
@@ -17643,7 +17721,7 @@ export declare type ShepherdEmailConnection = {
17643
17721
  __typename?: 'ShepherdEmailConnection';
17644
17722
  edges?: Maybe<Array<Maybe<ShepherdEmailEdge>>>;
17645
17723
  };
17646
- export declare type ShepherdEmailEdge = {
17724
+ export declare type ShepherdEmailEdge = ShepherdSubscriptionEdge & {
17647
17725
  __typename?: 'ShepherdEmailEdge';
17648
17726
  node?: Maybe<ShepherdEmailSubscription>;
17649
17727
  };
@@ -17718,6 +17796,7 @@ export declare type ShepherdQuery = {
17718
17796
  shepherdAppInfo: ShepherdAppInfo;
17719
17797
  shepherdConfig?: Maybe<ShepherdConfigResult>;
17720
17798
  shepherdOrganization?: Maybe<ShepherdOrganizationResult>;
17799
+ shepherdSubscriptions?: Maybe<ShepherdSubscriptionsResult>;
17721
17800
  shepherdUser?: Maybe<ShepherdUser>;
17722
17801
  };
17723
17802
  export declare type ShepherdQueryShepherdAlertArgs = {
@@ -17729,10 +17808,29 @@ export declare type ShepherdQueryShepherdAlertsArgs = {
17729
17808
  export declare type ShepherdQueryShepherdOrganizationArgs = {
17730
17809
  id: Scalars['ID'];
17731
17810
  };
17811
+ export declare type ShepherdQueryShepherdSubscriptionsArgs = {
17812
+ orgId: Scalars['ID'];
17813
+ };
17732
17814
  export declare enum ShepherdQueryErrorType {
17733
17815
  NoProductAccess = "NO_PRODUCT_ACCESS",
17734
17816
  Unauthorized = "UNAUTHORIZED"
17735
17817
  }
17818
+ export declare type ShepherdSlackEdge = ShepherdSubscriptionEdge & {
17819
+ __typename?: 'ShepherdSlackEdge';
17820
+ node?: Maybe<ShepherdSlackSubscription>;
17821
+ };
17822
+ export declare type ShepherdSlackSubscription = ShepherdSubscription & {
17823
+ __typename?: 'ShepherdSlackSubscription';
17824
+ callbackURL: Scalars['String'];
17825
+ channelId: Scalars['String'];
17826
+ createdBy: Scalars['String'];
17827
+ createdOn: Scalars['DateTime'];
17828
+ id: Scalars['ID'];
17829
+ status: ShepherdSubscriptionStatus;
17830
+ teamId: Scalars['String'];
17831
+ updatedBy?: Maybe<Scalars['String']>;
17832
+ updatedOn?: Maybe<Scalars['DateTime']>;
17833
+ };
17736
17834
  export declare type ShepherdSubscription = {
17737
17835
  createdBy: Scalars['String'];
17738
17836
  createdOn: Scalars['DateTime'];
@@ -17741,11 +17839,18 @@ export declare type ShepherdSubscription = {
17741
17839
  updatedBy?: Maybe<Scalars['String']>;
17742
17840
  updatedOn?: Maybe<Scalars['DateTime']>;
17743
17841
  };
17842
+ export declare type ShepherdSubscriptionConnection = {
17843
+ __typename?: 'ShepherdSubscriptionConnection';
17844
+ edges?: Maybe<Array<Maybe<ShepherdSubscriptionEdge>>>;
17845
+ };
17846
+ export declare type ShepherdSubscriptionEdge = {
17847
+ node?: Maybe<ShepherdSubscription>;
17848
+ };
17744
17849
  export declare enum ShepherdSubscriptionStatus {
17745
17850
  Active = "ACTIVE",
17746
17851
  Inactive = "INACTIVE"
17747
17852
  }
17748
- export declare type ShepherdSubscriptionsResult = ShepherdEmailConnection | ShepherdWebhookConnection;
17853
+ export declare type ShepherdSubscriptionsResult = QueryError | ShepherdEmailConnection | ShepherdSubscriptionConnection | ShepherdWebhookConnection;
17749
17854
  export declare type ShepherdTestSubscriptionError = {
17750
17855
  __typename?: 'ShepherdTestSubscriptionError';
17751
17856
  reason?: Maybe<Scalars['String']>;
@@ -17780,9 +17885,17 @@ export declare type ShepherdUpdateOrganizationPayload = Payload & {
17780
17885
  node?: Maybe<ShepherdOrganization>;
17781
17886
  success: Scalars['Boolean'];
17782
17887
  };
17888
+ export declare type ShepherdUpdateSlackInput = {
17889
+ authToken?: Maybe<Scalars['String']>;
17890
+ callbackURL?: Maybe<Scalars['URL']>;
17891
+ channelId?: Maybe<Scalars['String']>;
17892
+ status?: Maybe<ShepherdSubscriptionStatus>;
17893
+ teamId?: Maybe<Scalars['String']>;
17894
+ };
17783
17895
  export declare type ShepherdUpdateSubscriptionInput = {
17784
17896
  email?: Maybe<ShepherdUpdateEmailInput>;
17785
17897
  orgId: Scalars['ID'];
17898
+ slack?: Maybe<ShepherdUpdateSlackInput>;
17786
17899
  webhook?: Maybe<ShepherdUpdateWebhookInput>;
17787
17900
  };
17788
17901
  export declare type ShepherdUpdateSubscriptionPayload = Payload & {
@@ -17804,7 +17917,7 @@ export declare type ShepherdWebhookConnection = {
17804
17917
  __typename?: 'ShepherdWebhookConnection';
17805
17918
  edges?: Maybe<Array<Maybe<ShepherdWebhookEdge>>>;
17806
17919
  };
17807
- export declare type ShepherdWebhookEdge = {
17920
+ export declare type ShepherdWebhookEdge = ShepherdSubscriptionEdge & {
17808
17921
  __typename?: 'ShepherdWebhookEdge';
17809
17922
  node?: Maybe<ShepherdWebhookSubscription>;
17810
17923
  };
@@ -19383,6 +19496,16 @@ export declare type UpdatePolarisPlayContributionPayload = {
19383
19496
  errors?: Maybe<Array<MutationError>>;
19384
19497
  node?: Maybe<PolarisPlayContribution>;
19385
19498
  };
19499
+ export declare type UpdatePolarisPlayInput = {
19500
+ id: Scalars['ID'];
19501
+ parameters?: Maybe<Scalars['JSON']>;
19502
+ };
19503
+ export declare type UpdatePolarisPlayPayload = {
19504
+ __typename?: 'UpdatePolarisPlayPayload';
19505
+ success: Scalars['Boolean'];
19506
+ errors?: Maybe<Array<MutationError>>;
19507
+ node?: Maybe<PolarisPlay>;
19508
+ };
19386
19509
  export declare type UpdatePolarisSnippetInput = {
19387
19510
  id?: Maybe<Scalars['ID']>;
19388
19511
  oauthClientId?: Maybe<Scalars['String']>;