@salesforce/lds-adapters-platform-named-credential 1.124.2 → 1.124.4
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/dist/es/es2018/platform-named-credential.js +990 -990
- package/dist/{types → es/es2018/types}/src/generated/adapters/adapter-utils.d.ts +66 -66
- package/dist/{types → es/es2018/types}/src/generated/adapters/deleteCredential.d.ts +15 -15
- package/dist/{types → es/es2018/types}/src/generated/adapters/getExternalCredentials.d.ts +25 -25
- package/dist/{types → es/es2018/types}/src/generated/adapters/getOAuthCredentialAuthUrl.d.ts +15 -15
- package/dist/{types → es/es2018/types}/src/generated/artifacts/main.d.ts +3 -3
- package/dist/{types → es/es2018/types}/src/generated/artifacts/sfdc.d.ts +5 -5
- package/dist/{types → es/es2018/types}/src/generated/resources/deleteNamedCredentialsCredential.d.ts +14 -14
- package/dist/{types → es/es2018/types}/src/generated/resources/getNamedCredentialsCredential.d.ts +17 -17
- package/dist/{types → es/es2018/types}/src/generated/resources/getNamedCredentialsExternalCredentials.d.ts +12 -12
- package/dist/{types → es/es2018/types}/src/generated/resources/getNamedCredentialsExternalCredentialsByDeveloperName.d.ts +15 -15
- package/dist/{types → es/es2018/types}/src/generated/resources/postNamedCredentialsCredential.d.ts +18 -18
- package/dist/{types → es/es2018/types}/src/generated/resources/postNamedCredentialsCredentialAuthUrlOAuth.d.ts +13 -13
- package/dist/{types → es/es2018/types}/src/generated/resources/putNamedCredentialsCredential.d.ts +18 -18
- package/dist/{types → es/es2018/types}/src/generated/types/CredentialInputRepresentation.d.ts +45 -45
- package/dist/{types → es/es2018/types}/src/generated/types/CredentialMapRepresentation.d.ts +33 -33
- package/dist/{types → es/es2018/types}/src/generated/types/CredentialRepresentation.d.ts +63 -63
- package/dist/{types → es/es2018/types}/src/generated/types/ExternalCredentialListRepresentation.d.ts +39 -39
- package/dist/{types → es/es2018/types}/src/generated/types/ExternalCredentialPrincipalRepresentation.d.ts +35 -35
- package/dist/{types → es/es2018/types}/src/generated/types/ExternalCredentialRepresentation.d.ts +55 -55
- package/dist/{types → es/es2018/types}/src/generated/types/NamedCredentialRepresentation.d.ts +32 -32
- package/dist/{types → es/es2018/types}/src/generated/types/OAuthCredentialAuthUrlInputRepresentation.d.ts +38 -38
- package/dist/{types → es/es2018/types}/src/generated/types/OAuthCredentialAuthUrlInputRepresentationWrapper.d.ts +30 -30
- package/dist/{types → es/es2018/types}/src/generated/types/OAuthCredentialAuthUrlRepresentation.d.ts +47 -47
- package/dist/{types → es/es2018/types}/src/generated/types/type-utils.d.ts +39 -39
- package/package.json +5 -5
- package/sfdc/index.d.ts +1 -1
- package/sfdc/index.js +1019 -1019
- package/dist/umd/es2018/platform-named-credential.js +0 -1039
- package/dist/umd/es5/platform-named-credential.js +0 -1045
|
@@ -1,38 +1,38 @@
|
|
|
1
|
-
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "ae3cff49f7858fe6262942c88d380d25";
|
|
3
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
-
export declare const RepresentationType: string;
|
|
5
|
-
export declare function normalize(input: OAuthCredentialAuthUrlInputRepresentation, existing: OAuthCredentialAuthUrlInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): OAuthCredentialAuthUrlInputRepresentationNormalized;
|
|
6
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
-
export declare function equals(existing: OAuthCredentialAuthUrlInputRepresentationNormalized, incoming: OAuthCredentialAuthUrlInputRepresentationNormalized): boolean;
|
|
8
|
-
export declare function deepFreeze(input: OAuthCredentialAuthUrlInputRepresentation): void;
|
|
9
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: OAuthCredentialAuthUrlInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
-
/**
|
|
12
|
-
* OAuth authentication flow input representation
|
|
13
|
-
*
|
|
14
|
-
* Keys:
|
|
15
|
-
* (none)
|
|
16
|
-
*/
|
|
17
|
-
export interface OAuthCredentialAuthUrlInputRepresentationNormalized {
|
|
18
|
-
/** External Credential DeveloperName */
|
|
19
|
-
externalCredential: string;
|
|
20
|
-
/** Principal Name of principals */
|
|
21
|
-
principalName: string;
|
|
22
|
-
/** Principal Type of principals. Allowed values are NamedPrincipal or PerUser */
|
|
23
|
-
principalType: string;
|
|
24
|
-
/** optional return url to be applied to the authentication url */
|
|
25
|
-
returnUrl: string;
|
|
26
|
-
}
|
|
27
|
-
/**
|
|
28
|
-
* OAuth authentication flow input representation
|
|
29
|
-
*
|
|
30
|
-
* Keys:
|
|
31
|
-
* (none)
|
|
32
|
-
*/
|
|
33
|
-
export interface OAuthCredentialAuthUrlInputRepresentation {
|
|
34
|
-
externalCredential: string;
|
|
35
|
-
principalName: string;
|
|
36
|
-
principalType: string;
|
|
37
|
-
returnUrl: string;
|
|
38
|
-
}
|
|
1
|
+
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "ae3cff49f7858fe6262942c88d380d25";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: OAuthCredentialAuthUrlInputRepresentation, existing: OAuthCredentialAuthUrlInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): OAuthCredentialAuthUrlInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: OAuthCredentialAuthUrlInputRepresentationNormalized, incoming: OAuthCredentialAuthUrlInputRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: OAuthCredentialAuthUrlInputRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: OAuthCredentialAuthUrlInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* OAuth authentication flow input representation
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface OAuthCredentialAuthUrlInputRepresentationNormalized {
|
|
18
|
+
/** External Credential DeveloperName */
|
|
19
|
+
externalCredential: string;
|
|
20
|
+
/** Principal Name of principals */
|
|
21
|
+
principalName: string;
|
|
22
|
+
/** Principal Type of principals. Allowed values are NamedPrincipal or PerUser */
|
|
23
|
+
principalType: string;
|
|
24
|
+
/** optional return url to be applied to the authentication url */
|
|
25
|
+
returnUrl: string;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* OAuth authentication flow input representation
|
|
29
|
+
*
|
|
30
|
+
* Keys:
|
|
31
|
+
* (none)
|
|
32
|
+
*/
|
|
33
|
+
export interface OAuthCredentialAuthUrlInputRepresentation {
|
|
34
|
+
externalCredential: string;
|
|
35
|
+
principalName: string;
|
|
36
|
+
principalType: string;
|
|
37
|
+
returnUrl: string;
|
|
38
|
+
}
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
import { OAuthCredentialAuthUrlInputRepresentation as OAuthCredentialAuthUrlInputRepresentation_OAuthCredentialAuthUrlInputRepresentation } from './OAuthCredentialAuthUrlInputRepresentation';
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
-
export declare const VERSION = "9d537a6243022d2a55e52d04f8ae55e4";
|
|
4
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
-
export declare const RepresentationType: string;
|
|
6
|
-
export declare function normalize(input: OAuthCredentialAuthUrlInputRepresentationWrapper, existing: OAuthCredentialAuthUrlInputRepresentationWrapperNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): OAuthCredentialAuthUrlInputRepresentationWrapperNormalized;
|
|
7
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
-
export declare function equals(existing: OAuthCredentialAuthUrlInputRepresentationWrapperNormalized, incoming: OAuthCredentialAuthUrlInputRepresentationWrapperNormalized): boolean;
|
|
9
|
-
export declare function deepFreeze(input: OAuthCredentialAuthUrlInputRepresentationWrapper): void;
|
|
10
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: OAuthCredentialAuthUrlInputRepresentationWrapper, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
-
/**
|
|
13
|
-
* Wrapper for OAuthCredentialAuthUrlInputRepresentation
|
|
14
|
-
*
|
|
15
|
-
* Keys:
|
|
16
|
-
* (none)
|
|
17
|
-
*/
|
|
18
|
-
export interface OAuthCredentialAuthUrlInputRepresentationWrapperNormalized {
|
|
19
|
-
/** Input representation to generate auth url */
|
|
20
|
-
requestBody: OAuthCredentialAuthUrlInputRepresentation_OAuthCredentialAuthUrlInputRepresentation;
|
|
21
|
-
}
|
|
22
|
-
/**
|
|
23
|
-
* Wrapper for OAuthCredentialAuthUrlInputRepresentation
|
|
24
|
-
*
|
|
25
|
-
* Keys:
|
|
26
|
-
* (none)
|
|
27
|
-
*/
|
|
28
|
-
export interface OAuthCredentialAuthUrlInputRepresentationWrapper {
|
|
29
|
-
requestBody: OAuthCredentialAuthUrlInputRepresentation_OAuthCredentialAuthUrlInputRepresentation;
|
|
30
|
-
}
|
|
1
|
+
import { OAuthCredentialAuthUrlInputRepresentation as OAuthCredentialAuthUrlInputRepresentation_OAuthCredentialAuthUrlInputRepresentation } from './OAuthCredentialAuthUrlInputRepresentation';
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "9d537a6243022d2a55e52d04f8ae55e4";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: OAuthCredentialAuthUrlInputRepresentationWrapper, existing: OAuthCredentialAuthUrlInputRepresentationWrapperNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): OAuthCredentialAuthUrlInputRepresentationWrapperNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: OAuthCredentialAuthUrlInputRepresentationWrapperNormalized, incoming: OAuthCredentialAuthUrlInputRepresentationWrapperNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: OAuthCredentialAuthUrlInputRepresentationWrapper): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: OAuthCredentialAuthUrlInputRepresentationWrapper, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* Wrapper for OAuthCredentialAuthUrlInputRepresentation
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface OAuthCredentialAuthUrlInputRepresentationWrapperNormalized {
|
|
19
|
+
/** Input representation to generate auth url */
|
|
20
|
+
requestBody: OAuthCredentialAuthUrlInputRepresentation_OAuthCredentialAuthUrlInputRepresentation;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Wrapper for OAuthCredentialAuthUrlInputRepresentation
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface OAuthCredentialAuthUrlInputRepresentationWrapper {
|
|
29
|
+
requestBody: OAuthCredentialAuthUrlInputRepresentation_OAuthCredentialAuthUrlInputRepresentation;
|
|
30
|
+
}
|
package/dist/{types → es/es2018/types}/src/generated/types/OAuthCredentialAuthUrlRepresentation.d.ts
RENAMED
|
@@ -1,47 +1,47 @@
|
|
|
1
|
-
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "1e72de165572264bf8309eccfc284fd6";
|
|
3
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
-
export declare const RepresentationType: string;
|
|
5
|
-
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
6
|
-
authenticationUrl: string;
|
|
7
|
-
}
|
|
8
|
-
export type OAuthCredentialAuthUrlRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
9
|
-
export type PartialOAuthCredentialAuthUrlRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
10
|
-
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
|
|
11
|
-
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): OAuthCredentialAuthUrlRepresentationNormalizedKeyMetadata;
|
|
12
|
-
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: OAuthCredentialAuthUrlRepresentation): string;
|
|
13
|
-
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: OAuthCredentialAuthUrlRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
14
|
-
export declare function normalize(input: OAuthCredentialAuthUrlRepresentation, existing: OAuthCredentialAuthUrlRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): OAuthCredentialAuthUrlRepresentationNormalized;
|
|
15
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
16
|
-
export declare function equals(existing: OAuthCredentialAuthUrlRepresentationNormalized, incoming: OAuthCredentialAuthUrlRepresentationNormalized): boolean;
|
|
17
|
-
export declare function deepFreeze(input: OAuthCredentialAuthUrlRepresentation): void;
|
|
18
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
19
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: OAuthCredentialAuthUrlRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
20
|
-
/**
|
|
21
|
-
* Output representation for OAuth authentication url for a User's Credential
|
|
22
|
-
*
|
|
23
|
-
* Keys:
|
|
24
|
-
* authenticationUrl (string): authenticationUrl
|
|
25
|
-
*/
|
|
26
|
-
export interface OAuthCredentialAuthUrlRepresentationNormalized {
|
|
27
|
-
/** OAuth authentication url for a User's Credential */
|
|
28
|
-
authenticationUrl: string;
|
|
29
|
-
/** External Credential DeveloperName */
|
|
30
|
-
externalCredential: string;
|
|
31
|
-
/** Credential principal name */
|
|
32
|
-
principalName: string;
|
|
33
|
-
/** Credential principal type. It's either NamedPrincipal or PerUserPrincipal */
|
|
34
|
-
principalType: string;
|
|
35
|
-
}
|
|
36
|
-
/**
|
|
37
|
-
* Output representation for OAuth authentication url for a User's Credential
|
|
38
|
-
*
|
|
39
|
-
* Keys:
|
|
40
|
-
* authenticationUrl (string): authenticationUrl
|
|
41
|
-
*/
|
|
42
|
-
export interface OAuthCredentialAuthUrlRepresentation {
|
|
43
|
-
authenticationUrl: string;
|
|
44
|
-
externalCredential: string;
|
|
45
|
-
principalName: string;
|
|
46
|
-
principalType: string;
|
|
47
|
-
}
|
|
1
|
+
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "1e72de165572264bf8309eccfc284fd6";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
6
|
+
authenticationUrl: string;
|
|
7
|
+
}
|
|
8
|
+
export type OAuthCredentialAuthUrlRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
9
|
+
export type PartialOAuthCredentialAuthUrlRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
10
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
|
|
11
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): OAuthCredentialAuthUrlRepresentationNormalizedKeyMetadata;
|
|
12
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: OAuthCredentialAuthUrlRepresentation): string;
|
|
13
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: OAuthCredentialAuthUrlRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
14
|
+
export declare function normalize(input: OAuthCredentialAuthUrlRepresentation, existing: OAuthCredentialAuthUrlRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): OAuthCredentialAuthUrlRepresentationNormalized;
|
|
15
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
16
|
+
export declare function equals(existing: OAuthCredentialAuthUrlRepresentationNormalized, incoming: OAuthCredentialAuthUrlRepresentationNormalized): boolean;
|
|
17
|
+
export declare function deepFreeze(input: OAuthCredentialAuthUrlRepresentation): void;
|
|
18
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
19
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: OAuthCredentialAuthUrlRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
20
|
+
/**
|
|
21
|
+
* Output representation for OAuth authentication url for a User's Credential
|
|
22
|
+
*
|
|
23
|
+
* Keys:
|
|
24
|
+
* authenticationUrl (string): authenticationUrl
|
|
25
|
+
*/
|
|
26
|
+
export interface OAuthCredentialAuthUrlRepresentationNormalized {
|
|
27
|
+
/** OAuth authentication url for a User's Credential */
|
|
28
|
+
authenticationUrl: string;
|
|
29
|
+
/** External Credential DeveloperName */
|
|
30
|
+
externalCredential: string;
|
|
31
|
+
/** Credential principal name */
|
|
32
|
+
principalName: string;
|
|
33
|
+
/** Credential principal type. It's either NamedPrincipal or PerUserPrincipal */
|
|
34
|
+
principalType: string;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* Output representation for OAuth authentication url for a User's Credential
|
|
38
|
+
*
|
|
39
|
+
* Keys:
|
|
40
|
+
* authenticationUrl (string): authenticationUrl
|
|
41
|
+
*/
|
|
42
|
+
export interface OAuthCredentialAuthUrlRepresentation {
|
|
43
|
+
authenticationUrl: string;
|
|
44
|
+
externalCredential: string;
|
|
45
|
+
principalName: string;
|
|
46
|
+
principalType: string;
|
|
47
|
+
}
|
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
import { NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
-
export declare const ObjectFreeze: {
|
|
3
|
-
<T extends Function>(f: T): T;
|
|
4
|
-
<T_1 extends {
|
|
5
|
-
[idx: string]: object | U | null | undefined;
|
|
6
|
-
}, U extends string | number | bigint | boolean | symbol>(o: T_1): Readonly<T_1>;
|
|
7
|
-
<T_2>(o: T_2): Readonly<T_2>;
|
|
8
|
-
}, ObjectKeys: {
|
|
9
|
-
(o: object): string[];
|
|
10
|
-
(o: {}): string[];
|
|
11
|
-
}, ObjectCreate: {
|
|
12
|
-
(o: object | null): any;
|
|
13
|
-
(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
|
|
14
|
-
}, ObjectAssign: {
|
|
15
|
-
<T extends {}, U>(target: T, source: U): T & U;
|
|
16
|
-
<T_1 extends {}, U_1, V>(target: T_1, source1: U_1, source2: V): T_1 & U_1 & V;
|
|
17
|
-
<T_2 extends {}, U_2, V_1, W>(target: T_2, source1: U_2, source2: V_1, source3: W): T_2 & U_2 & V_1 & W;
|
|
18
|
-
(target: object, ...sources: any[]): any;
|
|
19
|
-
};
|
|
20
|
-
export declare const ArrayIsArray: (arg: any) => arg is any[];
|
|
21
|
-
export declare const JSONStringify: {
|
|
22
|
-
(value: any, replacer?: ((this: any, key: string, value: any) => any) | undefined, space?: string | number | undefined): string;
|
|
23
|
-
(value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string;
|
|
24
|
-
};
|
|
25
|
-
type AllowedPrimitives = boolean | string | number | Date | null;
|
|
26
|
-
type Value<T> = T extends AllowedPrimitives ? T : RecursivePartial<T>;
|
|
27
|
-
export type RecursivePartial<T> = null | {
|
|
28
|
-
[P in keyof T]?: T[P] extends Array<infer U> ? Array<Value<U>> | null : Value<T[P]> | null;
|
|
29
|
-
};
|
|
30
|
-
export declare function equalsArray<U, V extends U[]>(a: V, b: V, equalsItem: (itemA: U, itemB: U) => boolean | void): boolean;
|
|
31
|
-
export declare function equalsObject<U, V extends {
|
|
32
|
-
[key: string]: U;
|
|
33
|
-
}>(a: V, b: V, equalsProp: (propA: U, propB: U) => boolean | void): boolean;
|
|
34
|
-
export declare function deepFreeze(value: any): void;
|
|
35
|
-
export declare function createLink(ref: string | $64$luvio_engine_NormalizedKeyMetadata): {
|
|
36
|
-
__ref: string;
|
|
37
|
-
};
|
|
38
|
-
export declare function assignMetadataLink(entry: any, metadataKey: string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
39
|
-
export {};
|
|
1
|
+
import { NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const ObjectFreeze: {
|
|
3
|
+
<T extends Function>(f: T): T;
|
|
4
|
+
<T_1 extends {
|
|
5
|
+
[idx: string]: object | U | null | undefined;
|
|
6
|
+
}, U extends string | number | bigint | boolean | symbol>(o: T_1): Readonly<T_1>;
|
|
7
|
+
<T_2>(o: T_2): Readonly<T_2>;
|
|
8
|
+
}, ObjectKeys: {
|
|
9
|
+
(o: object): string[];
|
|
10
|
+
(o: {}): string[];
|
|
11
|
+
}, ObjectCreate: {
|
|
12
|
+
(o: object | null): any;
|
|
13
|
+
(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
|
|
14
|
+
}, ObjectAssign: {
|
|
15
|
+
<T extends {}, U>(target: T, source: U): T & U;
|
|
16
|
+
<T_1 extends {}, U_1, V>(target: T_1, source1: U_1, source2: V): T_1 & U_1 & V;
|
|
17
|
+
<T_2 extends {}, U_2, V_1, W>(target: T_2, source1: U_2, source2: V_1, source3: W): T_2 & U_2 & V_1 & W;
|
|
18
|
+
(target: object, ...sources: any[]): any;
|
|
19
|
+
};
|
|
20
|
+
export declare const ArrayIsArray: (arg: any) => arg is any[];
|
|
21
|
+
export declare const JSONStringify: {
|
|
22
|
+
(value: any, replacer?: ((this: any, key: string, value: any) => any) | undefined, space?: string | number | undefined): string;
|
|
23
|
+
(value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string;
|
|
24
|
+
};
|
|
25
|
+
type AllowedPrimitives = boolean | string | number | Date | null;
|
|
26
|
+
type Value<T> = T extends AllowedPrimitives ? T : RecursivePartial<T>;
|
|
27
|
+
export type RecursivePartial<T> = null | {
|
|
28
|
+
[P in keyof T]?: T[P] extends Array<infer U> ? Array<Value<U>> | null : Value<T[P]> | null;
|
|
29
|
+
};
|
|
30
|
+
export declare function equalsArray<U, V extends U[]>(a: V, b: V, equalsItem: (itemA: U, itemB: U) => boolean | void): boolean;
|
|
31
|
+
export declare function equalsObject<U, V extends {
|
|
32
|
+
[key: string]: U;
|
|
33
|
+
}>(a: V, b: V, equalsProp: (propA: U, propB: U) => boolean | void): boolean;
|
|
34
|
+
export declare function deepFreeze(value: any): void;
|
|
35
|
+
export declare function createLink(ref: string | $64$luvio_engine_NormalizedKeyMetadata): {
|
|
36
|
+
__ref: string;
|
|
37
|
+
};
|
|
38
|
+
export declare function assignMetadataLink(entry: any, metadataKey: string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
39
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-platform-named-credential",
|
|
3
|
-
"version": "1.124.
|
|
3
|
+
"version": "1.124.4",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Named Credential APIs",
|
|
6
|
-
"main": "dist/
|
|
6
|
+
"main": "dist/es/es2018/platform-named-credential.js",
|
|
7
7
|
"module": "dist/es/es2018/platform-named-credential.js",
|
|
8
|
-
"types": "dist/types/src/generated/artifacts/main.d.ts",
|
|
8
|
+
"types": "dist/es/es2018/types/src/generated/artifacts/main.d.ts",
|
|
9
9
|
"files": [
|
|
10
10
|
"dist",
|
|
11
11
|
"sfdc",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"exports": {
|
|
15
15
|
".": {
|
|
16
16
|
"import": "./dist/es/es2018/platform-named-credential.js",
|
|
17
|
-
"require": "./dist/
|
|
18
|
-
"types": "./dist/types/src/generated/artifacts/main.d.ts"
|
|
17
|
+
"require": "./dist/es/es2018/platform-named-credential.js",
|
|
18
|
+
"types": "./dist/es/es2018/types/src/generated/artifacts/main.d.ts"
|
|
19
19
|
},
|
|
20
20
|
"./sfdc": {
|
|
21
21
|
"import": "./sfdc/index.js",
|
package/sfdc/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from '../dist/types/src/generated/artifacts/sfdc';
|
|
1
|
+
export * from '../dist/es/es2018/types/src/generated/artifacts/sfdc';
|