@salesforce/lds-adapters-platform-external-connectivity 1.404.0-dev16 → 1.404.0-dev18

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.
@@ -7,11 +7,15 @@ export declare const adapterName = "createConnection";
7
7
  export declare const createConnection_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
8
8
  export declare const createConnection_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
9
9
  export interface CreateConnectionConfig {
10
- authenticationTypeInput: types_AuthenticationTypeInputRepresentation_AuthenticationTypeInputRepresentation;
10
+ authenticationTypeInput?: types_AuthenticationTypeInputRepresentation_AuthenticationTypeInputRepresentation;
11
11
  agentActionEnabled?: boolean | null;
12
12
  connectorDeveloperName: string;
13
13
  description: string;
14
14
  name: string;
15
+ connectionType?: string;
16
+ connectionParameters?: {
17
+ [key: string]: unknown;
18
+ };
15
19
  }
16
20
  export declare const createResourceParams: (config: CreateConnectionConfig) => resources_postExternalConnectivityConnections_ResourceRequestConfig;
17
21
  export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<CreateConnectionConfig>): adapter$45$utils_Untrusted<CreateConnectionConfig>;
@@ -0,0 +1,27 @@
1
+ import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Fragment as $64$luvio_engine_Fragment, Snapshot as $64$luvio_engine_Snapshot, FetchResponse as $64$luvio_engine_FetchResponse, ErrorResponse as $64$luvio_engine_ErrorResponse, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, CoercedAdapterRequestContext as $64$luvio_engine_CoercedAdapterRequestContext, StoreLookup as $64$luvio_engine_StoreLookup, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
2
+ import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
3
+ import { ResourceRequestConfig as resources_getExternalConnectivityConnectionsNamedCredentialsByNamedCredentialName_ResourceRequestConfig } from '../resources/getExternalConnectivityConnectionsNamedCredentialsByNamedCredentialName';
4
+ import { ExternalConnectivityGetNamedCredentialResultRepresentation as types_ExternalConnectivityGetNamedCredentialResultRepresentation_ExternalConnectivityGetNamedCredentialResultRepresentation } from '../types/ExternalConnectivityGetNamedCredentialResultRepresentation';
5
+ export declare const adapterName = "getNamedCredentialConfig";
6
+ export declare const getNamedCredentialConfig_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
7
+ export declare const getNamedCredentialConfig_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
+ export interface GetNamedCredentialConfigConfig {
9
+ namedCredentialName: string;
10
+ }
11
+ export declare const createResourceParams: (config: GetNamedCredentialConfigConfig) => resources_getExternalConnectivityConnectionsNamedCredentialsByNamedCredentialName_ResourceRequestConfig;
12
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetNamedCredentialConfigConfig): string;
13
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetNamedCredentialConfigConfig): $64$luvio_engine_NormalizedKeyMetadata;
14
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetNamedCredentialConfigConfig>): adapter$45$utils_Untrusted<GetNamedCredentialConfigConfig>;
15
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetNamedCredentialConfigConfig | null;
16
+ export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetNamedCredentialConfigConfig): $64$luvio_engine_Fragment;
17
+ export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetNamedCredentialConfigConfig): $64$luvio_engine_Snapshot<types_ExternalConnectivityGetNamedCredentialResultRepresentation_ExternalConnectivityGetNamedCredentialResultRepresentation, any>;
18
+ export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetNamedCredentialConfigConfig, resourceParams: resources_getExternalConnectivityConnectionsNamedCredentialsByNamedCredentialName_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ExternalConnectivityGetNamedCredentialResultRepresentation_ExternalConnectivityGetNamedCredentialResultRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_ExternalConnectivityGetNamedCredentialResultRepresentation_ExternalConnectivityGetNamedCredentialResultRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ExternalConnectivityGetNamedCredentialResultRepresentation_ExternalConnectivityGetNamedCredentialResultRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ExternalConnectivityGetNamedCredentialResultRepresentation_ExternalConnectivityGetNamedCredentialResultRepresentation, any>>;
19
+ export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetNamedCredentialConfigConfig, resourceParams: resources_getExternalConnectivityConnectionsNamedCredentialsByNamedCredentialName_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
20
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetNamedCredentialConfigConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_ExternalConnectivityGetNamedCredentialResultRepresentation_ExternalConnectivityGetNamedCredentialResultRepresentation, any>>;
21
+ export type BuildSnapshotContext = {
22
+ luvio: $64$luvio_engine_Luvio;
23
+ config: GetNamedCredentialConfigConfig;
24
+ };
25
+ export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_ExternalConnectivityGetNamedCredentialResultRepresentation_ExternalConnectivityGetNamedCredentialResultRepresentation, any>>;
26
+ export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_ExternalConnectivityGetNamedCredentialResultRepresentation_ExternalConnectivityGetNamedCredentialResultRepresentation>): $64$luvio_engine_Snapshot<types_ExternalConnectivityGetNamedCredentialResultRepresentation_ExternalConnectivityGetNamedCredentialResultRepresentation, any>;
27
+ export declare const getNamedCredentialConfigAdapterFactory: $64$luvio_engine_AdapterFactory<GetNamedCredentialConfigConfig, types_ExternalConnectivityGetNamedCredentialResultRepresentation_ExternalConnectivityGetNamedCredentialResultRepresentation>;
@@ -8,11 +8,15 @@ export declare const updateConnection_ConfigPropertyMetadata: $64$luvio_engine_A
8
8
  export declare const updateConnection_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
9
9
  export interface UpdateConnectionConfig {
10
10
  connectionDeveloperName: string;
11
- authenticationTypeInput: types_AuthenticationTypeInputRepresentation_AuthenticationTypeInputRepresentation;
11
+ authenticationTypeInput?: types_AuthenticationTypeInputRepresentation_AuthenticationTypeInputRepresentation;
12
12
  agentActionEnabled?: boolean | null;
13
13
  connectorDeveloperName: string;
14
14
  description: string;
15
15
  name: string;
16
+ connectionType?: string;
17
+ connectionParameters?: {
18
+ [key: string]: unknown;
19
+ };
16
20
  }
17
21
  export declare const createResourceParams: (config: UpdateConnectionConfig) => resources_putExternalConnectivityConnectionsByConnectionDeveloperName_ResourceRequestConfig;
18
22
  export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<UpdateConnectionConfig>): adapter$45$utils_Untrusted<UpdateConnectionConfig>;
@@ -1,6 +1,7 @@
1
1
  export { getConnectionsAdapterFactory } from '../adapters/getConnections';
2
2
  export { createConnectionAdapterFactory } from '../adapters/createConnection';
3
3
  export { deleteConnectionAdapterFactory } from '../adapters/deleteConnection';
4
+ export { getNamedCredentialConfigAdapterFactory } from '../adapters/getNamedCredentialConfig';
4
5
  export { getConnectionDetailsAdapterFactory } from '../adapters/getConnectionDetails';
5
6
  export { updateConnectionAdapterFactory } from '../adapters/updateConnection';
6
7
  export { getExternalConnectivityConnectionReferencedFlowsAdapterFactory } from '../adapters/getExternalConnectivityConnectionReferencedFlows';
@@ -7,6 +7,7 @@ declare let getConnectors: any;
7
7
  declare let getExternalConnectivityConnectionReferencedFlows: any;
8
8
  declare let getExternalIdentityProviders: any;
9
9
  declare let getInvocableActions: any;
10
+ declare let getNamedCredentialConfig: any;
10
11
  declare let refreshMetadata: any;
11
12
  declare let testConnection: any;
12
13
  declare let updateConnection: any;
@@ -17,6 +18,7 @@ declare let getConnectors_imperative: any;
17
18
  declare let getExternalConnectivityConnectionReferencedFlows_imperative: any;
18
19
  declare let getExternalIdentityProviders_imperative: any;
19
20
  declare let getInvocableActions_imperative: any;
21
+ declare let getNamedCredentialConfig_imperative: any;
20
22
  declare let notifyConnectionListUpdateAvailable: any;
21
- export { createConnection, deleteConnection, getConnectionDetails, getConnections, getConnectorDetails, getConnectors, getExternalConnectivityConnectionReferencedFlows, getExternalIdentityProviders, getInvocableActions, refreshMetadata, testConnection, updateConnection, getConnectionDetails_imperative, getConnections_imperative, getConnectorDetails_imperative, getConnectors_imperative, getExternalConnectivityConnectionReferencedFlows_imperative, getExternalIdentityProviders_imperative, getInvocableActions_imperative, };
23
+ export { createConnection, deleteConnection, getConnectionDetails, getConnections, getConnectorDetails, getConnectors, getExternalConnectivityConnectionReferencedFlows, getExternalIdentityProviders, getInvocableActions, getNamedCredentialConfig, refreshMetadata, testConnection, updateConnection, getConnectionDetails_imperative, getConnections_imperative, getConnectorDetails_imperative, getConnectors_imperative, getExternalConnectivityConnectionReferencedFlows_imperative, getExternalIdentityProviders_imperative, getInvocableActions_imperative, getNamedCredentialConfig_imperative, };
22
24
  export { notifyConnectionListUpdateAvailable };
@@ -0,0 +1,15 @@
1
+ import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, FetchResponse as $64$luvio_engine_FetchResponse, SnapshotRefresh as $64$luvio_engine_SnapshotRefresh, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ErrorResponse as $64$luvio_engine_ErrorResponse, ErrorSnapshot as $64$luvio_engine_ErrorSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
2
+ import { ExternalConnectivityGetNamedCredentialResultRepresentation as types_ExternalConnectivityGetNamedCredentialResultRepresentation_ExternalConnectivityGetNamedCredentialResultRepresentation } from '../types/ExternalConnectivityGetNamedCredentialResultRepresentation';
3
+ export interface ResourceRequestConfig {
4
+ urlParams: {
5
+ namedCredentialName: string;
6
+ };
7
+ }
8
+ export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
9
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
10
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
11
+ export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ExternalConnectivityGetNamedCredentialResultRepresentation_ExternalConnectivityGetNamedCredentialResultRepresentation): void;
12
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ExternalConnectivityGetNamedCredentialResultRepresentation_ExternalConnectivityGetNamedCredentialResultRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ExternalConnectivityGetNamedCredentialResultRepresentation_ExternalConnectivityGetNamedCredentialResultRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ExternalConnectivityGetNamedCredentialResultRepresentation_ExternalConnectivityGetNamedCredentialResultRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ExternalConnectivityGetNamedCredentialResultRepresentation_ExternalConnectivityGetNamedCredentialResultRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ExternalConnectivityGetNamedCredentialResultRepresentation_ExternalConnectivityGetNamedCredentialResultRepresentation, any>;
13
+ export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ExternalConnectivityGetNamedCredentialResultRepresentation_ExternalConnectivityGetNamedCredentialResultRepresentation>): $64$luvio_engine_ErrorSnapshot;
14
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
15
+ export default createResourceRequest;
@@ -3,11 +3,15 @@ import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment,
3
3
  import { ExternalConnectivityConnectionCreatedRepresentation as types_ExternalConnectivityConnectionCreatedRepresentation_ExternalConnectivityConnectionCreatedRepresentation } from '../types/ExternalConnectivityConnectionCreatedRepresentation';
4
4
  export interface ResourceRequestConfig {
5
5
  body: {
6
- authenticationTypeInput: types_AuthenticationTypeInputRepresentation_AuthenticationTypeInputRepresentation;
6
+ authenticationTypeInput?: types_AuthenticationTypeInputRepresentation_AuthenticationTypeInputRepresentation;
7
7
  agentActionEnabled?: boolean | null;
8
8
  connectorDeveloperName: string;
9
9
  description: string;
10
10
  name: string;
11
+ connectionType?: string;
12
+ connectionParameters?: {
13
+ [key: string]: unknown;
14
+ };
11
15
  };
12
16
  }
13
17
  export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
@@ -6,11 +6,15 @@ export interface ResourceRequestConfig {
6
6
  connectionDeveloperName: string;
7
7
  };
8
8
  body: {
9
- authenticationTypeInput: types_AuthenticationTypeInputRepresentation_AuthenticationTypeInputRepresentation;
9
+ authenticationTypeInput?: types_AuthenticationTypeInputRepresentation_AuthenticationTypeInputRepresentation;
10
10
  agentActionEnabled?: boolean | null;
11
11
  connectorDeveloperName: string;
12
12
  description: string;
13
13
  name: string;
14
+ connectionType?: string;
15
+ connectionParameters?: {
16
+ [key: string]: unknown;
17
+ };
14
18
  };
15
19
  }
16
20
  export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
@@ -1,6 +1,6 @@
1
1
  import { AuthenticationTypeInputRepresentation as AuthenticationTypeInputRepresentation_AuthenticationTypeInputRepresentation } from './AuthenticationTypeInputRepresentation';
2
2
  import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
- export declare const VERSION = "936adf8063b1ed5d4e151227d2d92245";
3
+ export declare const VERSION = "13904a1884f2fc8d5c79d404e775b0aa";
4
4
  export declare function validate(obj: any, path?: string): TypeError | null;
5
5
  export declare const RepresentationType: string;
6
6
  export declare function normalize(input: ExternalConnectivityConnectionInputRepresentation, existing: ExternalConnectivityConnectionInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExternalConnectivityConnectionInputRepresentationNormalized;
@@ -18,7 +18,13 @@ export interface ExternalConnectivityConnectionInputRepresentationNormalized {
18
18
  /** Sets the Connection Enabled For Agent Action */
19
19
  agentActionEnabled?: boolean | null;
20
20
  /** Sets the Authentication Type Input */
21
- authenticationTypeInput: AuthenticationTypeInputRepresentation_AuthenticationTypeInputRepresentation;
21
+ authenticationTypeInput?: AuthenticationTypeInputRepresentation_AuthenticationTypeInputRepresentation;
22
+ /** Connection parameters as key-value pairs */
23
+ connectionParameters?: {
24
+ [key: string]: unknown;
25
+ };
26
+ /** Sets the connectionType */
27
+ connectionType?: string;
22
28
  /** Sets the Connector Developer Name */
23
29
  connectorDeveloperName: string;
24
30
  /** Sets the description */
@@ -34,7 +40,11 @@ export interface ExternalConnectivityConnectionInputRepresentationNormalized {
34
40
  */
35
41
  export interface ExternalConnectivityConnectionInputRepresentation {
36
42
  agentActionEnabled?: boolean | null;
37
- authenticationTypeInput: AuthenticationTypeInputRepresentation_AuthenticationTypeInputRepresentation;
43
+ authenticationTypeInput?: AuthenticationTypeInputRepresentation_AuthenticationTypeInputRepresentation;
44
+ connectionParameters?: {
45
+ [key: string]: unknown;
46
+ };
47
+ connectionType?: string;
38
48
  connectorDeveloperName: string;
39
49
  description: string;
40
50
  name: string;
@@ -0,0 +1,53 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const TTL = 500;
3
+ export declare const VERSION = "c36b48fc8c9e4c961cfdf9533fb78bec";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: ExternalConnectivityGetNamedCredentialResultRepresentation, existing: ExternalConnectivityGetNamedCredentialResultRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExternalConnectivityGetNamedCredentialResultRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_BaseFragment;
8
+ export declare function equals(existing: ExternalConnectivityGetNamedCredentialResultRepresentationNormalized, incoming: ExternalConnectivityGetNamedCredentialResultRepresentationNormalized): boolean;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ExternalConnectivityGetNamedCredentialResultRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Output representation for External Connectivity Get Named Credential Config
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface ExternalConnectivityGetNamedCredentialResultRepresentationNormalized {
18
+ /** Authentication Protocol */
19
+ authenticationProtocol: string | null;
20
+ /** Named Credential Description */
21
+ description: string | null;
22
+ /** Error Message */
23
+ errorMessage: string | null;
24
+ /** External Credential Label */
25
+ externalCredentialLabel: string | null;
26
+ /** Identity Provider Label */
27
+ identityProvider: string | null;
28
+ /** Named Credential Label */
29
+ label: string | null;
30
+ /** Named Credential Name */
31
+ namedCredentialName: string | null;
32
+ /** Named Credential Type */
33
+ ncType: string | null;
34
+ /** Principal Name */
35
+ principalName: string | null;
36
+ }
37
+ /**
38
+ * Output representation for External Connectivity Get Named Credential Config
39
+ *
40
+ * Keys:
41
+ * (none)
42
+ */
43
+ export interface ExternalConnectivityGetNamedCredentialResultRepresentation {
44
+ authenticationProtocol: string | null;
45
+ description: string | null;
46
+ errorMessage: string | null;
47
+ externalCredentialLabel: string | null;
48
+ identityProvider: string | null;
49
+ label: string | null;
50
+ namedCredentialName: string | null;
51
+ ncType: string | null;
52
+ principalName: string | null;
53
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-platform-external-connectivity",
3
- "version": "1.404.0-dev16",
3
+ "version": "1.404.0-dev18",
4
4
  "description": "A set of API for external connectivity",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "dist/es/es2018/platform-external-connectivity.js",
@@ -41,10 +41,10 @@
41
41
  "test:unit:debug": "node --inspect-brk ../../node_modules/.bin/jest --runInBand"
42
42
  },
43
43
  "dependencies": {
44
- "@salesforce/lds-bindings": "^1.404.0-dev16"
44
+ "@salesforce/lds-bindings": "^1.404.0-dev18"
45
45
  },
46
46
  "devDependencies": {
47
- "@salesforce/lds-compiler-plugins": "^1.404.0-dev16"
47
+ "@salesforce/lds-compiler-plugins": "^1.404.0-dev18"
48
48
  },
49
49
  "nx": {
50
50
  "targets": {