@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
package/dist/{types → es/es2018/types}/src/generated/types/CredentialInputRepresentation.d.ts
RENAMED
|
@@ -1,45 +1,45 @@
|
|
|
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 = "954bf557ea2c26a3166c652906d6cd91";
|
|
3
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
-
export declare const RepresentationType: string;
|
|
5
|
-
export declare function normalize(input: CredentialInputRepresentation, existing: CredentialInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CredentialInputRepresentationNormalized;
|
|
6
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
-
export declare function equals(existing: CredentialInputRepresentationNormalized, incoming: CredentialInputRepresentationNormalized): boolean;
|
|
8
|
-
export declare function deepFreeze(input: CredentialInputRepresentation): void;
|
|
9
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CredentialInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
-
/**
|
|
12
|
-
* Credential input representation
|
|
13
|
-
*
|
|
14
|
-
* Keys:
|
|
15
|
-
* (none)
|
|
16
|
-
*/
|
|
17
|
-
export interface CredentialInputRepresentationNormalized {
|
|
18
|
-
/** Authentication protocol of the external credential */
|
|
19
|
-
authenticationProtocol: string;
|
|
20
|
-
/** Protocol specific credentials */
|
|
21
|
-
credentials: {
|
|
22
|
-
[key: string]: string;
|
|
23
|
-
};
|
|
24
|
-
/** External Credential DeveloperName */
|
|
25
|
-
externalCredential: string;
|
|
26
|
-
/** Principal Name of principals */
|
|
27
|
-
principalName: string;
|
|
28
|
-
/** Principal Type of principals. Allowed values are NamedPrincipal or PerUserPrincipal */
|
|
29
|
-
principalType: string;
|
|
30
|
-
}
|
|
31
|
-
/**
|
|
32
|
-
* Credential input representation
|
|
33
|
-
*
|
|
34
|
-
* Keys:
|
|
35
|
-
* (none)
|
|
36
|
-
*/
|
|
37
|
-
export interface CredentialInputRepresentation {
|
|
38
|
-
authenticationProtocol: string;
|
|
39
|
-
credentials: {
|
|
40
|
-
[key: string]: string;
|
|
41
|
-
};
|
|
42
|
-
externalCredential: string;
|
|
43
|
-
principalName: string;
|
|
44
|
-
principalType: string;
|
|
45
|
-
}
|
|
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 = "954bf557ea2c26a3166c652906d6cd91";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: CredentialInputRepresentation, existing: CredentialInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CredentialInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: CredentialInputRepresentationNormalized, incoming: CredentialInputRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: CredentialInputRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CredentialInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Credential input representation
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface CredentialInputRepresentationNormalized {
|
|
18
|
+
/** Authentication protocol of the external credential */
|
|
19
|
+
authenticationProtocol: string;
|
|
20
|
+
/** Protocol specific credentials */
|
|
21
|
+
credentials: {
|
|
22
|
+
[key: string]: string;
|
|
23
|
+
};
|
|
24
|
+
/** External Credential DeveloperName */
|
|
25
|
+
externalCredential: string;
|
|
26
|
+
/** Principal Name of principals */
|
|
27
|
+
principalName: string;
|
|
28
|
+
/** Principal Type of principals. Allowed values are NamedPrincipal or PerUserPrincipal */
|
|
29
|
+
principalType: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Credential input representation
|
|
33
|
+
*
|
|
34
|
+
* Keys:
|
|
35
|
+
* (none)
|
|
36
|
+
*/
|
|
37
|
+
export interface CredentialInputRepresentation {
|
|
38
|
+
authenticationProtocol: string;
|
|
39
|
+
credentials: {
|
|
40
|
+
[key: string]: string;
|
|
41
|
+
};
|
|
42
|
+
externalCredential: string;
|
|
43
|
+
principalName: string;
|
|
44
|
+
principalType: string;
|
|
45
|
+
}
|
|
@@ -1,33 +1,33 @@
|
|
|
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 = "3ef906c711ac375edb6b96a9e61f73d8";
|
|
3
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
-
export declare const RepresentationType: string;
|
|
5
|
-
export declare function normalize(input: CredentialMapRepresentation, existing: CredentialMapRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CredentialMapRepresentationNormalized;
|
|
6
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
-
export declare function equals(existing: CredentialMapRepresentationNormalized, incoming: CredentialMapRepresentationNormalized): boolean;
|
|
8
|
-
export declare function deepFreeze(input: CredentialMapRepresentation): void;
|
|
9
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CredentialMapRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
-
/**
|
|
12
|
-
* credentials map wrapper used in CredentialInputRepresentation
|
|
13
|
-
*
|
|
14
|
-
* Keys:
|
|
15
|
-
* (none)
|
|
16
|
-
*/
|
|
17
|
-
export interface CredentialMapRepresentationNormalized {
|
|
18
|
-
/** wrapped credentials map */
|
|
19
|
-
map: {
|
|
20
|
-
[key: string]: string;
|
|
21
|
-
};
|
|
22
|
-
}
|
|
23
|
-
/**
|
|
24
|
-
* credentials map wrapper used in CredentialInputRepresentation
|
|
25
|
-
*
|
|
26
|
-
* Keys:
|
|
27
|
-
* (none)
|
|
28
|
-
*/
|
|
29
|
-
export interface CredentialMapRepresentation {
|
|
30
|
-
map: {
|
|
31
|
-
[key: string]: string;
|
|
32
|
-
};
|
|
33
|
-
}
|
|
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 = "3ef906c711ac375edb6b96a9e61f73d8";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: CredentialMapRepresentation, existing: CredentialMapRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CredentialMapRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: CredentialMapRepresentationNormalized, incoming: CredentialMapRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: CredentialMapRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CredentialMapRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* credentials map wrapper used in CredentialInputRepresentation
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface CredentialMapRepresentationNormalized {
|
|
18
|
+
/** wrapped credentials map */
|
|
19
|
+
map: {
|
|
20
|
+
[key: string]: string;
|
|
21
|
+
};
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* credentials map wrapper used in CredentialInputRepresentation
|
|
25
|
+
*
|
|
26
|
+
* Keys:
|
|
27
|
+
* (none)
|
|
28
|
+
*/
|
|
29
|
+
export interface CredentialMapRepresentation {
|
|
30
|
+
map: {
|
|
31
|
+
[key: string]: string;
|
|
32
|
+
};
|
|
33
|
+
}
|
|
@@ -1,63 +1,63 @@
|
|
|
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 = "ec83d5fbf9eda3a00e329c792f6bc5a0";
|
|
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
|
-
externalCredential: string;
|
|
7
|
-
principalType: string;
|
|
8
|
-
principalName: string | null;
|
|
9
|
-
}
|
|
10
|
-
export type CredentialRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
-
export type PartialCredentialRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
12
|
-
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
|
|
13
|
-
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): CredentialRepresentationNormalizedKeyMetadata;
|
|
14
|
-
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: CredentialRepresentation): string;
|
|
15
|
-
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: CredentialRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
16
|
-
export declare function normalize(input: CredentialRepresentation, existing: CredentialRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CredentialRepresentationNormalized;
|
|
17
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
18
|
-
export declare function equals(existing: CredentialRepresentationNormalized, incoming: CredentialRepresentationNormalized): boolean;
|
|
19
|
-
export declare function deepFreeze(input: CredentialRepresentation): void;
|
|
20
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
21
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CredentialRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
22
|
-
/**
|
|
23
|
-
* Output representation for Credential
|
|
24
|
-
*
|
|
25
|
-
* Keys:
|
|
26
|
-
* externalCredential (string): externalCredential
|
|
27
|
-
* principalType (string): principalType
|
|
28
|
-
* principalName (string | null): principalName
|
|
29
|
-
*/
|
|
30
|
-
export interface CredentialRepresentationNormalized {
|
|
31
|
-
/** Authentication protocol of the external credential */
|
|
32
|
-
authenticationProtocol: string;
|
|
33
|
-
/** Authentication Status. It's authenticated if external credential has all required credentials for this principal */
|
|
34
|
-
authenticationStatus: string;
|
|
35
|
-
/** Protocol specific credentials */
|
|
36
|
-
credentials: {
|
|
37
|
-
[key: string]: string;
|
|
38
|
-
};
|
|
39
|
-
/** External credential developer name */
|
|
40
|
-
externalCredential: string;
|
|
41
|
-
/** Principal parameter name associated with these credentials */
|
|
42
|
-
principalName: string | null;
|
|
43
|
-
/** Principal Type. It's either NamedPrincipal or PerUserPrincipal */
|
|
44
|
-
principalType: string;
|
|
45
|
-
}
|
|
46
|
-
/**
|
|
47
|
-
* Output representation for Credential
|
|
48
|
-
*
|
|
49
|
-
* Keys:
|
|
50
|
-
* externalCredential (string): externalCredential
|
|
51
|
-
* principalType (string): principalType
|
|
52
|
-
* principalName (string | null): principalName
|
|
53
|
-
*/
|
|
54
|
-
export interface CredentialRepresentation {
|
|
55
|
-
authenticationProtocol: string;
|
|
56
|
-
authenticationStatus: string;
|
|
57
|
-
credentials: {
|
|
58
|
-
[key: string]: string;
|
|
59
|
-
};
|
|
60
|
-
externalCredential: string;
|
|
61
|
-
principalName: string | null;
|
|
62
|
-
principalType: string;
|
|
63
|
-
}
|
|
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 = "ec83d5fbf9eda3a00e329c792f6bc5a0";
|
|
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
|
+
externalCredential: string;
|
|
7
|
+
principalType: string;
|
|
8
|
+
principalName: string | null;
|
|
9
|
+
}
|
|
10
|
+
export type CredentialRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
+
export type PartialCredentialRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
12
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
|
|
13
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): CredentialRepresentationNormalizedKeyMetadata;
|
|
14
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: CredentialRepresentation): string;
|
|
15
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: CredentialRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
16
|
+
export declare function normalize(input: CredentialRepresentation, existing: CredentialRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CredentialRepresentationNormalized;
|
|
17
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
18
|
+
export declare function equals(existing: CredentialRepresentationNormalized, incoming: CredentialRepresentationNormalized): boolean;
|
|
19
|
+
export declare function deepFreeze(input: CredentialRepresentation): void;
|
|
20
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
21
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CredentialRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
22
|
+
/**
|
|
23
|
+
* Output representation for Credential
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* externalCredential (string): externalCredential
|
|
27
|
+
* principalType (string): principalType
|
|
28
|
+
* principalName (string | null): principalName
|
|
29
|
+
*/
|
|
30
|
+
export interface CredentialRepresentationNormalized {
|
|
31
|
+
/** Authentication protocol of the external credential */
|
|
32
|
+
authenticationProtocol: string;
|
|
33
|
+
/** Authentication Status. It's authenticated if external credential has all required credentials for this principal */
|
|
34
|
+
authenticationStatus: string;
|
|
35
|
+
/** Protocol specific credentials */
|
|
36
|
+
credentials: {
|
|
37
|
+
[key: string]: string;
|
|
38
|
+
};
|
|
39
|
+
/** External credential developer name */
|
|
40
|
+
externalCredential: string;
|
|
41
|
+
/** Principal parameter name associated with these credentials */
|
|
42
|
+
principalName: string | null;
|
|
43
|
+
/** Principal Type. It's either NamedPrincipal or PerUserPrincipal */
|
|
44
|
+
principalType: string;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Output representation for Credential
|
|
48
|
+
*
|
|
49
|
+
* Keys:
|
|
50
|
+
* externalCredential (string): externalCredential
|
|
51
|
+
* principalType (string): principalType
|
|
52
|
+
* principalName (string | null): principalName
|
|
53
|
+
*/
|
|
54
|
+
export interface CredentialRepresentation {
|
|
55
|
+
authenticationProtocol: string;
|
|
56
|
+
authenticationStatus: string;
|
|
57
|
+
credentials: {
|
|
58
|
+
[key: string]: string;
|
|
59
|
+
};
|
|
60
|
+
externalCredential: string;
|
|
61
|
+
principalName: string | null;
|
|
62
|
+
principalType: string;
|
|
63
|
+
}
|
package/dist/{types → es/es2018/types}/src/generated/types/ExternalCredentialListRepresentation.d.ts
RENAMED
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
-
import { ExternalCredentialRepresentation as ExternalCredentialRepresentation_ExternalCredentialRepresentation } from './ExternalCredentialRepresentation';
|
|
3
|
-
export declare const VERSION = "81417919a5a3d6b3e4fc26ab05d87aea";
|
|
4
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
-
export declare const RepresentationType: string;
|
|
6
|
-
export declare function normalize(input: ExternalCredentialListRepresentation, existing: ExternalCredentialListRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExternalCredentialListRepresentationNormalized;
|
|
7
|
-
export interface DynamicIngestParams {
|
|
8
|
-
externalCredentials: $64$luvio_engine_ResourceIngest;
|
|
9
|
-
}
|
|
10
|
-
export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: ExternalCredentialListRepresentation, existing: ExternalCredentialListRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => ExternalCredentialListRepresentationNormalized;
|
|
11
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
12
|
-
export interface DynamicSelectParams {
|
|
13
|
-
externalCredentials?: $64$luvio_engine_LinkSelection;
|
|
14
|
-
}
|
|
15
|
-
export declare const dynamicSelect: (params: DynamicSelectParams) => $64$luvio_engine_FragmentSelection;
|
|
16
|
-
export declare function equals(existing: ExternalCredentialListRepresentationNormalized, incoming: ExternalCredentialListRepresentationNormalized): boolean;
|
|
17
|
-
export declare function deepFreeze(input: ExternalCredentialListRepresentation): void;
|
|
18
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
19
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ExternalCredentialListRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
20
|
-
export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$luvio_engine_ResourceIngest;
|
|
21
|
-
/**
|
|
22
|
-
* Output representation for External Credential List
|
|
23
|
-
*
|
|
24
|
-
* Keys:
|
|
25
|
-
* (none)
|
|
26
|
-
*/
|
|
27
|
-
export interface ExternalCredentialListRepresentationNormalized {
|
|
28
|
-
/** List of external credentials */
|
|
29
|
-
externalCredentials: Array<$64$luvio_engine_StoreLink>;
|
|
30
|
-
}
|
|
31
|
-
/**
|
|
32
|
-
* Output representation for External Credential List
|
|
33
|
-
*
|
|
34
|
-
* Keys:
|
|
35
|
-
* (none)
|
|
36
|
-
*/
|
|
37
|
-
export interface ExternalCredentialListRepresentation {
|
|
38
|
-
externalCredentials: Array<ExternalCredentialRepresentation_ExternalCredentialRepresentation>;
|
|
39
|
-
}
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
import { ExternalCredentialRepresentation as ExternalCredentialRepresentation_ExternalCredentialRepresentation } from './ExternalCredentialRepresentation';
|
|
3
|
+
export declare const VERSION = "81417919a5a3d6b3e4fc26ab05d87aea";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: ExternalCredentialListRepresentation, existing: ExternalCredentialListRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExternalCredentialListRepresentationNormalized;
|
|
7
|
+
export interface DynamicIngestParams {
|
|
8
|
+
externalCredentials: $64$luvio_engine_ResourceIngest;
|
|
9
|
+
}
|
|
10
|
+
export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: ExternalCredentialListRepresentation, existing: ExternalCredentialListRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => ExternalCredentialListRepresentationNormalized;
|
|
11
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
12
|
+
export interface DynamicSelectParams {
|
|
13
|
+
externalCredentials?: $64$luvio_engine_LinkSelection;
|
|
14
|
+
}
|
|
15
|
+
export declare const dynamicSelect: (params: DynamicSelectParams) => $64$luvio_engine_FragmentSelection;
|
|
16
|
+
export declare function equals(existing: ExternalCredentialListRepresentationNormalized, incoming: ExternalCredentialListRepresentationNormalized): boolean;
|
|
17
|
+
export declare function deepFreeze(input: ExternalCredentialListRepresentation): void;
|
|
18
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
19
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ExternalCredentialListRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
20
|
+
export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$luvio_engine_ResourceIngest;
|
|
21
|
+
/**
|
|
22
|
+
* Output representation for External Credential List
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* (none)
|
|
26
|
+
*/
|
|
27
|
+
export interface ExternalCredentialListRepresentationNormalized {
|
|
28
|
+
/** List of external credentials */
|
|
29
|
+
externalCredentials: Array<$64$luvio_engine_StoreLink>;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Output representation for External Credential List
|
|
33
|
+
*
|
|
34
|
+
* Keys:
|
|
35
|
+
* (none)
|
|
36
|
+
*/
|
|
37
|
+
export interface ExternalCredentialListRepresentation {
|
|
38
|
+
externalCredentials: Array<ExternalCredentialRepresentation_ExternalCredentialRepresentation>;
|
|
39
|
+
}
|
|
@@ -1,35 +1,35 @@
|
|
|
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 = "0874099e8f2a31ddf81f3ce490386603";
|
|
3
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
-
export declare const RepresentationType: string;
|
|
5
|
-
export declare function normalize(input: ExternalCredentialPrincipalRepresentation, existing: ExternalCredentialPrincipalRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExternalCredentialPrincipalRepresentationNormalized;
|
|
6
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
-
export declare function equals(existing: ExternalCredentialPrincipalRepresentationNormalized, incoming: ExternalCredentialPrincipalRepresentationNormalized): boolean;
|
|
8
|
-
export declare function deepFreeze(input: ExternalCredentialPrincipalRepresentation): void;
|
|
9
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ExternalCredentialPrincipalRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
-
/**
|
|
12
|
-
* Output representation for an External Credential principal
|
|
13
|
-
*
|
|
14
|
-
* Keys:
|
|
15
|
-
* (none)
|
|
16
|
-
*/
|
|
17
|
-
export interface ExternalCredentialPrincipalRepresentationNormalized {
|
|
18
|
-
/** Authentication Status for credentials */
|
|
19
|
-
authenticationStatus: string;
|
|
20
|
-
/** Principal name */
|
|
21
|
-
principalName: string;
|
|
22
|
-
/** Principal Type. It's either NamedPrincipal or PerUser */
|
|
23
|
-
principalType: string;
|
|
24
|
-
}
|
|
25
|
-
/**
|
|
26
|
-
* Output representation for an External Credential principal
|
|
27
|
-
*
|
|
28
|
-
* Keys:
|
|
29
|
-
* (none)
|
|
30
|
-
*/
|
|
31
|
-
export interface ExternalCredentialPrincipalRepresentation {
|
|
32
|
-
authenticationStatus: string;
|
|
33
|
-
principalName: string;
|
|
34
|
-
principalType: string;
|
|
35
|
-
}
|
|
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 = "0874099e8f2a31ddf81f3ce490386603";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ExternalCredentialPrincipalRepresentation, existing: ExternalCredentialPrincipalRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExternalCredentialPrincipalRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ExternalCredentialPrincipalRepresentationNormalized, incoming: ExternalCredentialPrincipalRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: ExternalCredentialPrincipalRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ExternalCredentialPrincipalRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Output representation for an External Credential principal
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface ExternalCredentialPrincipalRepresentationNormalized {
|
|
18
|
+
/** Authentication Status for credentials */
|
|
19
|
+
authenticationStatus: string;
|
|
20
|
+
/** Principal name */
|
|
21
|
+
principalName: string;
|
|
22
|
+
/** Principal Type. It's either NamedPrincipal or PerUser */
|
|
23
|
+
principalType: string;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Output representation for an External Credential principal
|
|
27
|
+
*
|
|
28
|
+
* Keys:
|
|
29
|
+
* (none)
|
|
30
|
+
*/
|
|
31
|
+
export interface ExternalCredentialPrincipalRepresentation {
|
|
32
|
+
authenticationStatus: string;
|
|
33
|
+
principalName: string;
|
|
34
|
+
principalType: string;
|
|
35
|
+
}
|
package/dist/{types → es/es2018/types}/src/generated/types/ExternalCredentialRepresentation.d.ts
RENAMED
|
@@ -1,55 +1,55 @@
|
|
|
1
|
-
import { ExternalCredentialPrincipalRepresentation as ExternalCredentialPrincipalRepresentation_ExternalCredentialPrincipalRepresentation } from './ExternalCredentialPrincipalRepresentation';
|
|
2
|
-
import { NamedCredentialRepresentation as NamedCredentialRepresentation_NamedCredentialRepresentation } from './NamedCredentialRepresentation';
|
|
3
|
-
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';
|
|
4
|
-
export declare const VERSION = "fd37a032d72e3491fe4d211486a3fea1";
|
|
5
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
-
export declare const RepresentationType: string;
|
|
7
|
-
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
8
|
-
developerName: string;
|
|
9
|
-
}
|
|
10
|
-
export type ExternalCredentialRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
-
export type PartialExternalCredentialRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
12
|
-
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
|
|
13
|
-
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): ExternalCredentialRepresentationNormalizedKeyMetadata;
|
|
14
|
-
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: ExternalCredentialRepresentation): string;
|
|
15
|
-
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: ExternalCredentialRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
16
|
-
export declare function normalize(input: ExternalCredentialRepresentation, existing: ExternalCredentialRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExternalCredentialRepresentationNormalized;
|
|
17
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
18
|
-
export declare function equals(existing: ExternalCredentialRepresentationNormalized, incoming: ExternalCredentialRepresentationNormalized): boolean;
|
|
19
|
-
export declare function deepFreeze(input: ExternalCredentialRepresentation): void;
|
|
20
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
21
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ExternalCredentialRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
22
|
-
/**
|
|
23
|
-
* Output representation for External Credential
|
|
24
|
-
*
|
|
25
|
-
* Keys:
|
|
26
|
-
* developerName (string): developerName
|
|
27
|
-
*/
|
|
28
|
-
export interface ExternalCredentialRepresentationNormalized {
|
|
29
|
-
/** Authentication protocol of the external credential */
|
|
30
|
-
authenticationProtocol: string;
|
|
31
|
-
/** Authentication Status. It's authenticated if external credential has all required credentials for at least one principal */
|
|
32
|
-
authenticationStatus: string;
|
|
33
|
-
/** External Credential developer name */
|
|
34
|
-
developerName: string;
|
|
35
|
-
/** External Credential master label */
|
|
36
|
-
masterLabel: string;
|
|
37
|
-
/** List of principals the credential has */
|
|
38
|
-
principals: Array<ExternalCredentialPrincipalRepresentation_ExternalCredentialPrincipalRepresentation>;
|
|
39
|
-
/** List of named credentials associated to the external credential */
|
|
40
|
-
relatedNamedCredentials: Array<NamedCredentialRepresentation_NamedCredentialRepresentation>;
|
|
41
|
-
}
|
|
42
|
-
/**
|
|
43
|
-
* Output representation for External Credential
|
|
44
|
-
*
|
|
45
|
-
* Keys:
|
|
46
|
-
* developerName (string): developerName
|
|
47
|
-
*/
|
|
48
|
-
export interface ExternalCredentialRepresentation {
|
|
49
|
-
authenticationProtocol: string;
|
|
50
|
-
authenticationStatus: string;
|
|
51
|
-
developerName: string;
|
|
52
|
-
masterLabel: string;
|
|
53
|
-
principals: Array<ExternalCredentialPrincipalRepresentation_ExternalCredentialPrincipalRepresentation>;
|
|
54
|
-
relatedNamedCredentials: Array<NamedCredentialRepresentation_NamedCredentialRepresentation>;
|
|
55
|
-
}
|
|
1
|
+
import { ExternalCredentialPrincipalRepresentation as ExternalCredentialPrincipalRepresentation_ExternalCredentialPrincipalRepresentation } from './ExternalCredentialPrincipalRepresentation';
|
|
2
|
+
import { NamedCredentialRepresentation as NamedCredentialRepresentation_NamedCredentialRepresentation } from './NamedCredentialRepresentation';
|
|
3
|
+
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';
|
|
4
|
+
export declare const VERSION = "fd37a032d72e3491fe4d211486a3fea1";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
8
|
+
developerName: string;
|
|
9
|
+
}
|
|
10
|
+
export type ExternalCredentialRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
+
export type PartialExternalCredentialRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
12
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
|
|
13
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): ExternalCredentialRepresentationNormalizedKeyMetadata;
|
|
14
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: ExternalCredentialRepresentation): string;
|
|
15
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: ExternalCredentialRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
16
|
+
export declare function normalize(input: ExternalCredentialRepresentation, existing: ExternalCredentialRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExternalCredentialRepresentationNormalized;
|
|
17
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
18
|
+
export declare function equals(existing: ExternalCredentialRepresentationNormalized, incoming: ExternalCredentialRepresentationNormalized): boolean;
|
|
19
|
+
export declare function deepFreeze(input: ExternalCredentialRepresentation): void;
|
|
20
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
21
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ExternalCredentialRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
22
|
+
/**
|
|
23
|
+
* Output representation for External Credential
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* developerName (string): developerName
|
|
27
|
+
*/
|
|
28
|
+
export interface ExternalCredentialRepresentationNormalized {
|
|
29
|
+
/** Authentication protocol of the external credential */
|
|
30
|
+
authenticationProtocol: string;
|
|
31
|
+
/** Authentication Status. It's authenticated if external credential has all required credentials for at least one principal */
|
|
32
|
+
authenticationStatus: string;
|
|
33
|
+
/** External Credential developer name */
|
|
34
|
+
developerName: string;
|
|
35
|
+
/** External Credential master label */
|
|
36
|
+
masterLabel: string;
|
|
37
|
+
/** List of principals the credential has */
|
|
38
|
+
principals: Array<ExternalCredentialPrincipalRepresentation_ExternalCredentialPrincipalRepresentation>;
|
|
39
|
+
/** List of named credentials associated to the external credential */
|
|
40
|
+
relatedNamedCredentials: Array<NamedCredentialRepresentation_NamedCredentialRepresentation>;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* Output representation for External Credential
|
|
44
|
+
*
|
|
45
|
+
* Keys:
|
|
46
|
+
* developerName (string): developerName
|
|
47
|
+
*/
|
|
48
|
+
export interface ExternalCredentialRepresentation {
|
|
49
|
+
authenticationProtocol: string;
|
|
50
|
+
authenticationStatus: string;
|
|
51
|
+
developerName: string;
|
|
52
|
+
masterLabel: string;
|
|
53
|
+
principals: Array<ExternalCredentialPrincipalRepresentation_ExternalCredentialPrincipalRepresentation>;
|
|
54
|
+
relatedNamedCredentials: Array<NamedCredentialRepresentation_NamedCredentialRepresentation>;
|
|
55
|
+
}
|
package/dist/{types → es/es2018/types}/src/generated/types/NamedCredentialRepresentation.d.ts
RENAMED
|
@@ -1,32 +1,32 @@
|
|
|
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 = "95db03e0e8990cc8f51f006ccf355bf9";
|
|
3
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
-
export declare const RepresentationType: string;
|
|
5
|
-
export declare function normalize(input: NamedCredentialRepresentation, existing: NamedCredentialRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): NamedCredentialRepresentationNormalized;
|
|
6
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
-
export declare function equals(existing: NamedCredentialRepresentationNormalized, incoming: NamedCredentialRepresentationNormalized): boolean;
|
|
8
|
-
export declare function deepFreeze(input: NamedCredentialRepresentation): void;
|
|
9
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: NamedCredentialRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
-
/**
|
|
12
|
-
* Output representation for a named credential associated to an external credential
|
|
13
|
-
*
|
|
14
|
-
* Keys:
|
|
15
|
-
* (none)
|
|
16
|
-
*/
|
|
17
|
-
export interface NamedCredentialRepresentationNormalized {
|
|
18
|
-
/** NamedCredential developer name */
|
|
19
|
-
developerName: string;
|
|
20
|
-
/** NamedCredential master label */
|
|
21
|
-
masterLabel: string;
|
|
22
|
-
}
|
|
23
|
-
/**
|
|
24
|
-
* Output representation for a named credential associated to an external credential
|
|
25
|
-
*
|
|
26
|
-
* Keys:
|
|
27
|
-
* (none)
|
|
28
|
-
*/
|
|
29
|
-
export interface NamedCredentialRepresentation {
|
|
30
|
-
developerName: string;
|
|
31
|
-
masterLabel: string;
|
|
32
|
-
}
|
|
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 = "95db03e0e8990cc8f51f006ccf355bf9";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: NamedCredentialRepresentation, existing: NamedCredentialRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): NamedCredentialRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: NamedCredentialRepresentationNormalized, incoming: NamedCredentialRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: NamedCredentialRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: NamedCredentialRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Output representation for a named credential associated to an external credential
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface NamedCredentialRepresentationNormalized {
|
|
18
|
+
/** NamedCredential developer name */
|
|
19
|
+
developerName: string;
|
|
20
|
+
/** NamedCredential master label */
|
|
21
|
+
masterLabel: string;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Output representation for a named credential associated to an external credential
|
|
25
|
+
*
|
|
26
|
+
* Keys:
|
|
27
|
+
* (none)
|
|
28
|
+
*/
|
|
29
|
+
export interface NamedCredentialRepresentation {
|
|
30
|
+
developerName: string;
|
|
31
|
+
masterLabel: string;
|
|
32
|
+
}
|