@salesforce/lds-adapters-service-gis 0.1.0-dev1
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/LICENSE.txt +82 -0
- package/dist/es/es2018/service-gis.js +1670 -0
- package/dist/es/es2018/types/src/generated/adapters/adapter-utils.d.ts +62 -0
- package/dist/es/es2018/types/src/generated/adapters/createGisExternalAuthIdentityProvider.d.ts +20 -0
- package/dist/es/es2018/types/src/generated/adapters/getGisExternalAuthAccessToken.d.ts +27 -0
- package/dist/es/es2018/types/src/generated/adapters/getGisExternalAuthIdentityProviders.d.ts +27 -0
- package/dist/es/es2018/types/src/generated/adapters/getGisExtlMapObjectConfig.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/adapters/getGisRelatedObjectConfig.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +5 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +10 -0
- package/dist/es/es2018/types/src/generated/resources/getGisAuthGisExternalAccessToken.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/resources/getGisAuthGisExternalAuthIdentityProviders.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/resources/getGisConfigGisExtlMapObjectConfig.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/resources/getGisConfigGisRelatedObjectConfig.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/resources/postGisAuthGisExternalAuthIdentityProvider.d.ts +17 -0
- package/dist/es/es2018/types/src/generated/types/ErrorResponse.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/GisExternalAccessTokenOutputRepresentation.d.ts +35 -0
- package/dist/es/es2018/types/src/generated/types/GisExternalAuthIdentityProviderCollectionRepresentation.d.ts +42 -0
- package/dist/es/es2018/types/src/generated/types/GisExternalAuthIdentityProviderInputRepresentation.d.ts +44 -0
- package/dist/es/es2018/types/src/generated/types/GisExternalAuthIdentityProviderOutputRepresentation.d.ts +56 -0
- package/dist/es/es2018/types/src/generated/types/GisExtlMapObjectConfigCollectionRepresentation.d.ts +42 -0
- package/dist/es/es2018/types/src/generated/types/GisExtlMapObjectConfigOutputRepresentation.d.ts +50 -0
- package/dist/es/es2018/types/src/generated/types/GisRelatedObjectConfigCollectionRepresentation.d.ts +42 -0
- package/dist/es/es2018/types/src/generated/types/GisRelatedObjectConfigOutputRepresentation.d.ts +62 -0
- package/dist/es/es2018/types/src/generated/types/type-utils.d.ts +32 -0
- package/package.json +68 -0
- package/sfdc/index.d.ts +1 -0
- package/sfdc/index.js +1750 -0
- package/src/raml/api.raml +270 -0
- package/src/raml/luvio.raml +77 -0
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { Adapter as $64$luvio_engine_Adapter, Snapshot as $64$luvio_engine_Snapshot, UnfulfilledSnapshot as $64$luvio_engine_UnfulfilledSnapshot, AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const ObjectPrototypeHasOwnProperty: (v: PropertyKey) => boolean;
|
|
3
|
+
declare const ObjectKeys: {
|
|
4
|
+
(o: object): string[];
|
|
5
|
+
(o: {}): string[];
|
|
6
|
+
}, ObjectCreate: {
|
|
7
|
+
(o: object | null): any;
|
|
8
|
+
(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
|
|
9
|
+
};
|
|
10
|
+
export { ObjectCreate, ObjectKeys };
|
|
11
|
+
export declare const ArrayIsArray: (arg: any) => arg is any[];
|
|
12
|
+
export declare const ArrayPrototypePush: (...items: any[]) => number;
|
|
13
|
+
export interface AdapterValidationConfig {
|
|
14
|
+
displayName: string;
|
|
15
|
+
parameters: {
|
|
16
|
+
required: string[];
|
|
17
|
+
optional: string[];
|
|
18
|
+
unsupported?: string[];
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Validates an adapter config is well-formed.
|
|
23
|
+
* @param config The config to validate.
|
|
24
|
+
* @param adapter The adapter validation configuration.
|
|
25
|
+
* @param oneOf The keys the config must contain at least one of.
|
|
26
|
+
* @throws A TypeError if config doesn't satisfy the adapter's config validation.
|
|
27
|
+
*/
|
|
28
|
+
export declare function validateConfig<T>(config: Untrusted<T>, adapter: AdapterValidationConfig, oneOf?: string[]): void;
|
|
29
|
+
export declare function untrustedIsObject<Base>(untrusted: unknown): untrusted is Untrusted<Base>;
|
|
30
|
+
export type UncoercedConfiguration<Base, Options extends {
|
|
31
|
+
[key in keyof Base]?: any;
|
|
32
|
+
}> = {
|
|
33
|
+
[Key in keyof Base]?: Base[Key] | Options[Key];
|
|
34
|
+
};
|
|
35
|
+
export type Untrusted<Base> = Partial<Base>;
|
|
36
|
+
export declare function areRequiredParametersPresent<T>(config: any, configPropertyNames: AdapterValidationConfig): config is T;
|
|
37
|
+
export declare function refreshable<C, D, R>(adapter: $64$luvio_engine_Adapter<C, D>, resolve: (config: unknown) => Promise<$64$luvio_engine_Snapshot<R>>): $64$luvio_engine_Adapter<C, D>;
|
|
38
|
+
export declare const SNAPSHOT_STATE_FULFILLED = "Fulfilled";
|
|
39
|
+
export declare const SNAPSHOT_STATE_UNFULFILLED = "Unfulfilled";
|
|
40
|
+
export declare const snapshotRefreshOptions: {
|
|
41
|
+
overrides: {
|
|
42
|
+
headers: {
|
|
43
|
+
'Cache-Control': string;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* A deterministic JSON stringify implementation. Heavily adapted from https://github.com/epoberezkin/fast-json-stable-stringify.
|
|
49
|
+
* This is needed because insertion order for JSON.stringify(object) affects output:
|
|
50
|
+
* JSON.stringify({a: 1, b: 2})
|
|
51
|
+
* "{"a":1,"b":2}"
|
|
52
|
+
* JSON.stringify({b: 2, a: 1})
|
|
53
|
+
* "{"b":2,"a":1}"
|
|
54
|
+
* @param data Data to be JSON-stringified.
|
|
55
|
+
* @returns JSON.stringified value with consistent ordering of keys.
|
|
56
|
+
*/
|
|
57
|
+
export declare function stableJSONStringify(node: any): string | undefined;
|
|
58
|
+
export declare function getFetchResponseStatusText(status: number): string;
|
|
59
|
+
export declare function isUnfulfilledSnapshot<T, U>(snapshot: $64$luvio_engine_Snapshot<T, U>): snapshot is $64$luvio_engine_UnfulfilledSnapshot<T, U>;
|
|
60
|
+
export declare function generateParamConfigMetadata(name: string, required: boolean, resourceType: $64$luvio_engine_AdapterConfigMetadata['resourceType'], typeCheckShape: $64$luvio_engine_AdapterConfigMetadata['typeCheckShape'], isArrayShape?: boolean, coerceFn?: (v: unknown) => unknown): $64$luvio_engine_AdapterConfigMetadata;
|
|
61
|
+
export declare function buildAdapterValidationConfig(displayName: string, paramsMeta: $64$luvio_engine_AdapterConfigMetadata[]): AdapterValidationConfig;
|
|
62
|
+
export declare const keyPrefix = "gis";
|
package/dist/es/es2018/types/src/generated/adapters/createGisExternalAuthIdentityProvider.d.ts
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, 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_postGisAuthGisExternalAuthIdentityProvider_ResourceRequestConfig } from '../resources/postGisAuthGisExternalAuthIdentityProvider';
|
|
4
|
+
import { GisExternalAuthIdentityProviderOutputRepresentation as types_GisExternalAuthIdentityProviderOutputRepresentation_GisExternalAuthIdentityProviderOutputRepresentation } from '../types/GisExternalAuthIdentityProviderOutputRepresentation';
|
|
5
|
+
export declare const adapterName = "createGisExternalAuthIdentityProvider";
|
|
6
|
+
export declare const createGisExternalAuthIdentityProvider_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const createGisExternalAuthIdentityProvider_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface CreateGisExternalAuthIdentityProviderConfig {
|
|
9
|
+
authType: string;
|
|
10
|
+
baseUrl: string;
|
|
11
|
+
clientId: string;
|
|
12
|
+
clientSecret: string;
|
|
13
|
+
gisProvider: string;
|
|
14
|
+
name: string;
|
|
15
|
+
}
|
|
16
|
+
export declare const createResourceParams: (config: CreateGisExternalAuthIdentityProviderConfig) => resources_postGisAuthGisExternalAuthIdentityProvider_ResourceRequestConfig;
|
|
17
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<CreateGisExternalAuthIdentityProviderConfig>): adapter$45$utils_Untrusted<CreateGisExternalAuthIdentityProviderConfig>;
|
|
18
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): CreateGisExternalAuthIdentityProviderConfig | null;
|
|
19
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: CreateGisExternalAuthIdentityProviderConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_GisExternalAuthIdentityProviderOutputRepresentation_GisExternalAuthIdentityProviderOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_GisExternalAuthIdentityProviderOutputRepresentation_GisExternalAuthIdentityProviderOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_GisExternalAuthIdentityProviderOutputRepresentation_GisExternalAuthIdentityProviderOutputRepresentation, any>>;
|
|
20
|
+
export declare const createGisExternalAuthIdentityProviderAdapterFactory: $64$luvio_engine_AdapterFactory<CreateGisExternalAuthIdentityProviderConfig, types_GisExternalAuthIdentityProviderOutputRepresentation_GisExternalAuthIdentityProviderOutputRepresentation>;
|
|
@@ -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_getGisAuthGisExternalAccessToken_ResourceRequestConfig } from '../resources/getGisAuthGisExternalAccessToken';
|
|
4
|
+
import { GisExternalAccessTokenOutputRepresentation as types_GisExternalAccessTokenOutputRepresentation_GisExternalAccessTokenOutputRepresentation } from '../types/GisExternalAccessTokenOutputRepresentation';
|
|
5
|
+
export declare const adapterName = "getGisExternalAuthAccessToken";
|
|
6
|
+
export declare const getGisExternalAuthAccessToken_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getGisExternalAuthAccessToken_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetGisExternalAuthAccessTokenConfig {
|
|
9
|
+
authSettingsId: string;
|
|
10
|
+
}
|
|
11
|
+
export declare const createResourceParams: (config: GetGisExternalAuthAccessTokenConfig) => resources_getGisAuthGisExternalAccessToken_ResourceRequestConfig;
|
|
12
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetGisExternalAuthAccessTokenConfig): string;
|
|
13
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetGisExternalAuthAccessTokenConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
14
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetGisExternalAuthAccessTokenConfig>): adapter$45$utils_Untrusted<GetGisExternalAuthAccessTokenConfig>;
|
|
15
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetGisExternalAuthAccessTokenConfig | null;
|
|
16
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetGisExternalAuthAccessTokenConfig): $64$luvio_engine_Fragment;
|
|
17
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetGisExternalAuthAccessTokenConfig): $64$luvio_engine_Snapshot<types_GisExternalAccessTokenOutputRepresentation_GisExternalAccessTokenOutputRepresentation, any>;
|
|
18
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetGisExternalAuthAccessTokenConfig, resourceParams: resources_getGisAuthGisExternalAccessToken_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_GisExternalAccessTokenOutputRepresentation_GisExternalAccessTokenOutputRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_GisExternalAccessTokenOutputRepresentation_GisExternalAccessTokenOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_GisExternalAccessTokenOutputRepresentation_GisExternalAccessTokenOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_GisExternalAccessTokenOutputRepresentation_GisExternalAccessTokenOutputRepresentation, any>>;
|
|
19
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetGisExternalAuthAccessTokenConfig, resourceParams: resources_getGisAuthGisExternalAccessToken_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
20
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetGisExternalAuthAccessTokenConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_GisExternalAccessTokenOutputRepresentation_GisExternalAccessTokenOutputRepresentation, any>>;
|
|
21
|
+
export type BuildSnapshotContext = {
|
|
22
|
+
luvio: $64$luvio_engine_Luvio;
|
|
23
|
+
config: GetGisExternalAuthAccessTokenConfig;
|
|
24
|
+
};
|
|
25
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_GisExternalAccessTokenOutputRepresentation_GisExternalAccessTokenOutputRepresentation, any>>;
|
|
26
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_GisExternalAccessTokenOutputRepresentation_GisExternalAccessTokenOutputRepresentation>): $64$luvio_engine_Snapshot<types_GisExternalAccessTokenOutputRepresentation_GisExternalAccessTokenOutputRepresentation, any>;
|
|
27
|
+
export declare const getGisExternalAuthAccessTokenAdapterFactory: $64$luvio_engine_AdapterFactory<GetGisExternalAuthAccessTokenConfig, types_GisExternalAccessTokenOutputRepresentation_GisExternalAccessTokenOutputRepresentation>;
|
|
@@ -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_getGisAuthGisExternalAuthIdentityProviders_ResourceRequestConfig } from '../resources/getGisAuthGisExternalAuthIdentityProviders';
|
|
4
|
+
import { GisExternalAuthIdentityProviderCollectionRepresentation as types_GisExternalAuthIdentityProviderCollectionRepresentation_GisExternalAuthIdentityProviderCollectionRepresentation } from '../types/GisExternalAuthIdentityProviderCollectionRepresentation';
|
|
5
|
+
export declare const adapterName = "getGisExternalAuthIdentityProviders";
|
|
6
|
+
export declare const getGisExternalAuthIdentityProviders_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getGisExternalAuthIdentityProviders_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetGisExternalAuthIdentityProvidersConfig {
|
|
9
|
+
limitByProfile: boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare const createResourceParams: (config: GetGisExternalAuthIdentityProvidersConfig) => resources_getGisAuthGisExternalAuthIdentityProviders_ResourceRequestConfig;
|
|
12
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetGisExternalAuthIdentityProvidersConfig): string;
|
|
13
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetGisExternalAuthIdentityProvidersConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
14
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetGisExternalAuthIdentityProvidersConfig>): adapter$45$utils_Untrusted<GetGisExternalAuthIdentityProvidersConfig>;
|
|
15
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetGisExternalAuthIdentityProvidersConfig | null;
|
|
16
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetGisExternalAuthIdentityProvidersConfig): $64$luvio_engine_Fragment;
|
|
17
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetGisExternalAuthIdentityProvidersConfig): $64$luvio_engine_Snapshot<types_GisExternalAuthIdentityProviderCollectionRepresentation_GisExternalAuthIdentityProviderCollectionRepresentation, any>;
|
|
18
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetGisExternalAuthIdentityProvidersConfig, resourceParams: resources_getGisAuthGisExternalAuthIdentityProviders_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_GisExternalAuthIdentityProviderCollectionRepresentation_GisExternalAuthIdentityProviderCollectionRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_GisExternalAuthIdentityProviderCollectionRepresentation_GisExternalAuthIdentityProviderCollectionRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_GisExternalAuthIdentityProviderCollectionRepresentation_GisExternalAuthIdentityProviderCollectionRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_GisExternalAuthIdentityProviderCollectionRepresentation_GisExternalAuthIdentityProviderCollectionRepresentation, any>>;
|
|
19
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetGisExternalAuthIdentityProvidersConfig, resourceParams: resources_getGisAuthGisExternalAuthIdentityProviders_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
20
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetGisExternalAuthIdentityProvidersConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_GisExternalAuthIdentityProviderCollectionRepresentation_GisExternalAuthIdentityProviderCollectionRepresentation, any>>;
|
|
21
|
+
export type BuildSnapshotContext = {
|
|
22
|
+
luvio: $64$luvio_engine_Luvio;
|
|
23
|
+
config: GetGisExternalAuthIdentityProvidersConfig;
|
|
24
|
+
};
|
|
25
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_GisExternalAuthIdentityProviderCollectionRepresentation_GisExternalAuthIdentityProviderCollectionRepresentation, any>>;
|
|
26
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_GisExternalAuthIdentityProviderCollectionRepresentation_GisExternalAuthIdentityProviderCollectionRepresentation>): $64$luvio_engine_Snapshot<types_GisExternalAuthIdentityProviderCollectionRepresentation_GisExternalAuthIdentityProviderCollectionRepresentation, any>;
|
|
27
|
+
export declare const getGisExternalAuthIdentityProvidersAdapterFactory: $64$luvio_engine_AdapterFactory<GetGisExternalAuthIdentityProvidersConfig, types_GisExternalAuthIdentityProviderCollectionRepresentation_GisExternalAuthIdentityProviderCollectionRepresentation>;
|
|
@@ -0,0 +1,28 @@
|
|
|
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_getGisConfigGisExtlMapObjectConfig_ResourceRequestConfig } from '../resources/getGisConfigGisExtlMapObjectConfig';
|
|
4
|
+
import { GisExtlMapObjectConfigCollectionRepresentation as types_GisExtlMapObjectConfigCollectionRepresentation_GisExtlMapObjectConfigCollectionRepresentation } from '../types/GisExtlMapObjectConfigCollectionRepresentation';
|
|
5
|
+
export declare const adapterName = "getGisExtlMapObjectConfig";
|
|
6
|
+
export declare const getGisExtlMapObjectConfig_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getGisExtlMapObjectConfig_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetGisExtlMapObjectConfigConfig {
|
|
9
|
+
id?: string;
|
|
10
|
+
objectName?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare const createResourceParams: (config: GetGisExtlMapObjectConfigConfig) => resources_getGisConfigGisExtlMapObjectConfig_ResourceRequestConfig;
|
|
13
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetGisExtlMapObjectConfigConfig): string;
|
|
14
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetGisExtlMapObjectConfigConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetGisExtlMapObjectConfigConfig>): adapter$45$utils_Untrusted<GetGisExtlMapObjectConfigConfig>;
|
|
16
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetGisExtlMapObjectConfigConfig | null;
|
|
17
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetGisExtlMapObjectConfigConfig): $64$luvio_engine_Fragment;
|
|
18
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetGisExtlMapObjectConfigConfig): $64$luvio_engine_Snapshot<types_GisExtlMapObjectConfigCollectionRepresentation_GisExtlMapObjectConfigCollectionRepresentation, any>;
|
|
19
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetGisExtlMapObjectConfigConfig, resourceParams: resources_getGisConfigGisExtlMapObjectConfig_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_GisExtlMapObjectConfigCollectionRepresentation_GisExtlMapObjectConfigCollectionRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_GisExtlMapObjectConfigCollectionRepresentation_GisExtlMapObjectConfigCollectionRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_GisExtlMapObjectConfigCollectionRepresentation_GisExtlMapObjectConfigCollectionRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_GisExtlMapObjectConfigCollectionRepresentation_GisExtlMapObjectConfigCollectionRepresentation, any>>;
|
|
20
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetGisExtlMapObjectConfigConfig, resourceParams: resources_getGisConfigGisExtlMapObjectConfig_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
21
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetGisExtlMapObjectConfigConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_GisExtlMapObjectConfigCollectionRepresentation_GisExtlMapObjectConfigCollectionRepresentation, any>>;
|
|
22
|
+
export type BuildSnapshotContext = {
|
|
23
|
+
luvio: $64$luvio_engine_Luvio;
|
|
24
|
+
config: GetGisExtlMapObjectConfigConfig;
|
|
25
|
+
};
|
|
26
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_GisExtlMapObjectConfigCollectionRepresentation_GisExtlMapObjectConfigCollectionRepresentation, any>>;
|
|
27
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_GisExtlMapObjectConfigCollectionRepresentation_GisExtlMapObjectConfigCollectionRepresentation>): $64$luvio_engine_Snapshot<types_GisExtlMapObjectConfigCollectionRepresentation_GisExtlMapObjectConfigCollectionRepresentation, any>;
|
|
28
|
+
export declare const getGisExtlMapObjectConfigAdapterFactory: $64$luvio_engine_AdapterFactory<GetGisExtlMapObjectConfigConfig, types_GisExtlMapObjectConfigCollectionRepresentation_GisExtlMapObjectConfigCollectionRepresentation>;
|
|
@@ -0,0 +1,28 @@
|
|
|
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_getGisConfigGisRelatedObjectConfig_ResourceRequestConfig } from '../resources/getGisConfigGisRelatedObjectConfig';
|
|
4
|
+
import { GisRelatedObjectConfigCollectionRepresentation as types_GisRelatedObjectConfigCollectionRepresentation_GisRelatedObjectConfigCollectionRepresentation } from '../types/GisRelatedObjectConfigCollectionRepresentation';
|
|
5
|
+
export declare const adapterName = "getGisRelatedObjectConfig";
|
|
6
|
+
export declare const getGisRelatedObjectConfig_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getGisRelatedObjectConfig_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetGisRelatedObjectConfigConfig {
|
|
9
|
+
id?: string;
|
|
10
|
+
objectName?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare const createResourceParams: (config: GetGisRelatedObjectConfigConfig) => resources_getGisConfigGisRelatedObjectConfig_ResourceRequestConfig;
|
|
13
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetGisRelatedObjectConfigConfig): string;
|
|
14
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetGisRelatedObjectConfigConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetGisRelatedObjectConfigConfig>): adapter$45$utils_Untrusted<GetGisRelatedObjectConfigConfig>;
|
|
16
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetGisRelatedObjectConfigConfig | null;
|
|
17
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetGisRelatedObjectConfigConfig): $64$luvio_engine_Fragment;
|
|
18
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetGisRelatedObjectConfigConfig): $64$luvio_engine_Snapshot<types_GisRelatedObjectConfigCollectionRepresentation_GisRelatedObjectConfigCollectionRepresentation, any>;
|
|
19
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetGisRelatedObjectConfigConfig, resourceParams: resources_getGisConfigGisRelatedObjectConfig_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_GisRelatedObjectConfigCollectionRepresentation_GisRelatedObjectConfigCollectionRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_GisRelatedObjectConfigCollectionRepresentation_GisRelatedObjectConfigCollectionRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_GisRelatedObjectConfigCollectionRepresentation_GisRelatedObjectConfigCollectionRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_GisRelatedObjectConfigCollectionRepresentation_GisRelatedObjectConfigCollectionRepresentation, any>>;
|
|
20
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetGisRelatedObjectConfigConfig, resourceParams: resources_getGisConfigGisRelatedObjectConfig_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
21
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetGisRelatedObjectConfigConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_GisRelatedObjectConfigCollectionRepresentation_GisRelatedObjectConfigCollectionRepresentation, any>>;
|
|
22
|
+
export type BuildSnapshotContext = {
|
|
23
|
+
luvio: $64$luvio_engine_Luvio;
|
|
24
|
+
config: GetGisRelatedObjectConfigConfig;
|
|
25
|
+
};
|
|
26
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_GisRelatedObjectConfigCollectionRepresentation_GisRelatedObjectConfigCollectionRepresentation, any>>;
|
|
27
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_GisRelatedObjectConfigCollectionRepresentation_GisRelatedObjectConfigCollectionRepresentation>): $64$luvio_engine_Snapshot<types_GisRelatedObjectConfigCollectionRepresentation_GisRelatedObjectConfigCollectionRepresentation, any>;
|
|
28
|
+
export declare const getGisRelatedObjectConfigAdapterFactory: $64$luvio_engine_AdapterFactory<GetGisRelatedObjectConfigConfig, types_GisRelatedObjectConfigCollectionRepresentation_GisRelatedObjectConfigCollectionRepresentation>;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { getGisExternalAuthAccessTokenAdapterFactory } from '../adapters/getGisExternalAuthAccessToken';
|
|
2
|
+
export { createGisExternalAuthIdentityProviderAdapterFactory } from '../adapters/createGisExternalAuthIdentityProvider';
|
|
3
|
+
export { getGisExternalAuthIdentityProvidersAdapterFactory } from '../adapters/getGisExternalAuthIdentityProviders';
|
|
4
|
+
export { getGisExtlMapObjectConfigAdapterFactory } from '../adapters/getGisExtlMapObjectConfig';
|
|
5
|
+
export { getGisRelatedObjectConfigAdapterFactory } from '../adapters/getGisRelatedObjectConfig';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
declare let createGisExternalAuthIdentityProvider: any;
|
|
2
|
+
declare let getGisExternalAuthAccessToken: any;
|
|
3
|
+
declare let getGisExternalAuthIdentityProviders: any;
|
|
4
|
+
declare let getGisExtlMapObjectConfig: any;
|
|
5
|
+
declare let getGisRelatedObjectConfig: any;
|
|
6
|
+
declare let getGisExternalAuthAccessToken_imperative: any;
|
|
7
|
+
declare let getGisExternalAuthIdentityProviders_imperative: any;
|
|
8
|
+
declare let getGisExtlMapObjectConfig_imperative: any;
|
|
9
|
+
declare let getGisRelatedObjectConfig_imperative: any;
|
|
10
|
+
export { createGisExternalAuthIdentityProvider, getGisExternalAuthAccessToken, getGisExternalAuthIdentityProviders, getGisExtlMapObjectConfig, getGisRelatedObjectConfig, getGisExternalAuthAccessToken_imperative, getGisExternalAuthIdentityProviders_imperative, getGisExtlMapObjectConfig_imperative, getGisRelatedObjectConfig_imperative, };
|
|
@@ -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 { GisExternalAccessTokenOutputRepresentation as types_GisExternalAccessTokenOutputRepresentation_GisExternalAccessTokenOutputRepresentation } from '../types/GisExternalAccessTokenOutputRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
queryParams: {
|
|
5
|
+
authSettingsId: 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_GisExternalAccessTokenOutputRepresentation_GisExternalAccessTokenOutputRepresentation): void;
|
|
12
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_GisExternalAccessTokenOutputRepresentation_GisExternalAccessTokenOutputRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_GisExternalAccessTokenOutputRepresentation_GisExternalAccessTokenOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_GisExternalAccessTokenOutputRepresentation_GisExternalAccessTokenOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_GisExternalAccessTokenOutputRepresentation_GisExternalAccessTokenOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_GisExternalAccessTokenOutputRepresentation_GisExternalAccessTokenOutputRepresentation, any>;
|
|
13
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_GisExternalAccessTokenOutputRepresentation_GisExternalAccessTokenOutputRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
14
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
15
|
+
export default createResourceRequest;
|
package/dist/es/es2018/types/src/generated/resources/getGisAuthGisExternalAuthIdentityProviders.d.ts
ADDED
|
@@ -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 { GisExternalAuthIdentityProviderCollectionRepresentation as types_GisExternalAuthIdentityProviderCollectionRepresentation_GisExternalAuthIdentityProviderCollectionRepresentation } from '../types/GisExternalAuthIdentityProviderCollectionRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
queryParams: {
|
|
5
|
+
limitByProfile: boolean;
|
|
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_GisExternalAuthIdentityProviderCollectionRepresentation_GisExternalAuthIdentityProviderCollectionRepresentation): void;
|
|
12
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_GisExternalAuthIdentityProviderCollectionRepresentation_GisExternalAuthIdentityProviderCollectionRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_GisExternalAuthIdentityProviderCollectionRepresentation_GisExternalAuthIdentityProviderCollectionRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_GisExternalAuthIdentityProviderCollectionRepresentation_GisExternalAuthIdentityProviderCollectionRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_GisExternalAuthIdentityProviderCollectionRepresentation_GisExternalAuthIdentityProviderCollectionRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_GisExternalAuthIdentityProviderCollectionRepresentation_GisExternalAuthIdentityProviderCollectionRepresentation, any>;
|
|
13
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_GisExternalAuthIdentityProviderCollectionRepresentation_GisExternalAuthIdentityProviderCollectionRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
14
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
15
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,16 @@
|
|
|
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 { GisExtlMapObjectConfigCollectionRepresentation as types_GisExtlMapObjectConfigCollectionRepresentation_GisExtlMapObjectConfigCollectionRepresentation } from '../types/GisExtlMapObjectConfigCollectionRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
queryParams: {
|
|
5
|
+
id?: string;
|
|
6
|
+
objectName?: string;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
10
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
11
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
12
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_GisExtlMapObjectConfigCollectionRepresentation_GisExtlMapObjectConfigCollectionRepresentation): void;
|
|
13
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_GisExtlMapObjectConfigCollectionRepresentation_GisExtlMapObjectConfigCollectionRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_GisExtlMapObjectConfigCollectionRepresentation_GisExtlMapObjectConfigCollectionRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_GisExtlMapObjectConfigCollectionRepresentation_GisExtlMapObjectConfigCollectionRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_GisExtlMapObjectConfigCollectionRepresentation_GisExtlMapObjectConfigCollectionRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_GisExtlMapObjectConfigCollectionRepresentation_GisExtlMapObjectConfigCollectionRepresentation, any>;
|
|
14
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_GisExtlMapObjectConfigCollectionRepresentation_GisExtlMapObjectConfigCollectionRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
15
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
16
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,16 @@
|
|
|
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 { GisRelatedObjectConfigCollectionRepresentation as types_GisRelatedObjectConfigCollectionRepresentation_GisRelatedObjectConfigCollectionRepresentation } from '../types/GisRelatedObjectConfigCollectionRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
queryParams: {
|
|
5
|
+
id?: string;
|
|
6
|
+
objectName?: string;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
10
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
11
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
12
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_GisRelatedObjectConfigCollectionRepresentation_GisRelatedObjectConfigCollectionRepresentation): void;
|
|
13
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_GisRelatedObjectConfigCollectionRepresentation_GisRelatedObjectConfigCollectionRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_GisRelatedObjectConfigCollectionRepresentation_GisRelatedObjectConfigCollectionRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_GisRelatedObjectConfigCollectionRepresentation_GisRelatedObjectConfigCollectionRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_GisRelatedObjectConfigCollectionRepresentation_GisRelatedObjectConfigCollectionRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_GisRelatedObjectConfigCollectionRepresentation_GisRelatedObjectConfigCollectionRepresentation, any>;
|
|
14
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_GisRelatedObjectConfigCollectionRepresentation_GisRelatedObjectConfigCollectionRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
15
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
16
|
+
export default createResourceRequest;
|
package/dist/es/es2018/types/src/generated/resources/postGisAuthGisExternalAuthIdentityProvider.d.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
import { GisExternalAuthIdentityProviderOutputRepresentation as types_GisExternalAuthIdentityProviderOutputRepresentation_GisExternalAuthIdentityProviderOutputRepresentation } from '../types/GisExternalAuthIdentityProviderOutputRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
body: {
|
|
5
|
+
authType: string;
|
|
6
|
+
baseUrl: string;
|
|
7
|
+
clientId: string;
|
|
8
|
+
clientSecret: string;
|
|
9
|
+
gisProvider: string;
|
|
10
|
+
name: string;
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
14
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_GisExternalAuthIdentityProviderOutputRepresentation_GisExternalAuthIdentityProviderOutputRepresentation): void;
|
|
15
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_GisExternalAuthIdentityProviderOutputRepresentation_GisExternalAuthIdentityProviderOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_GisExternalAuthIdentityProviderOutputRepresentation_GisExternalAuthIdentityProviderOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_GisExternalAuthIdentityProviderOutputRepresentation_GisExternalAuthIdentityProviderOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_GisExternalAuthIdentityProviderOutputRepresentation_GisExternalAuthIdentityProviderOutputRepresentation, any>;
|
|
16
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
17
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,31 @@
|
|
|
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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "d0845035c095bb2d7d27b706da70f807";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ErrorResponse, existing: ErrorResponseNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ErrorResponseNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ErrorResponseNormalized, incoming: ErrorResponseNormalized): boolean;
|
|
8
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ErrorResponse, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Error response
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface ErrorResponseNormalized {
|
|
17
|
+
/** Error code */
|
|
18
|
+
code: string;
|
|
19
|
+
/** Error message */
|
|
20
|
+
message: string;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Error response
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface ErrorResponse {
|
|
29
|
+
code: string;
|
|
30
|
+
message: string;
|
|
31
|
+
}
|
package/dist/es/es2018/types/src/generated/types/GisExternalAccessTokenOutputRepresentation.d.ts
ADDED
|
@@ -0,0 +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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const TTL = 300;
|
|
3
|
+
export declare const VERSION = "534766993185fd21f5aac8e706c226bf";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: GisExternalAccessTokenOutputRepresentation, existing: GisExternalAccessTokenOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GisExternalAccessTokenOutputRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: GisExternalAccessTokenOutputRepresentationNormalized, incoming: GisExternalAccessTokenOutputRepresentationNormalized): 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: GisExternalAccessTokenOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Output representation for an External GIS authentication token
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface GisExternalAccessTokenOutputRepresentationNormalized {
|
|
18
|
+
/** The token expiration time */
|
|
19
|
+
expiresIn: number;
|
|
20
|
+
/** The access token used to authenticate against GIS services (e.g., 'esri') */
|
|
21
|
+
token: string;
|
|
22
|
+
/** The type of token (e.g., 'Bearer') */
|
|
23
|
+
type: string;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Output representation for an External GIS authentication token
|
|
27
|
+
*
|
|
28
|
+
* Keys:
|
|
29
|
+
* (none)
|
|
30
|
+
*/
|
|
31
|
+
export interface GisExternalAccessTokenOutputRepresentation {
|
|
32
|
+
expiresIn: number;
|
|
33
|
+
token: string;
|
|
34
|
+
type: string;
|
|
35
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
import { GisExternalAuthIdentityProviderOutputRepresentation as GisExternalAuthIdentityProviderOutputRepresentation_GisExternalAuthIdentityProviderOutputRepresentation } from './GisExternalAuthIdentityProviderOutputRepresentation';
|
|
3
|
+
export declare const TTL = 300;
|
|
4
|
+
export declare const VERSION = "a7ac614251e70adfb9330b0fcdbfcbf2";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: GisExternalAuthIdentityProviderCollectionRepresentation, existing: GisExternalAuthIdentityProviderCollectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GisExternalAuthIdentityProviderCollectionRepresentationNormalized;
|
|
8
|
+
export interface DynamicIngestParams {
|
|
9
|
+
gisExternalAuthIdentityProviderOutputRepresentation: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
}
|
|
11
|
+
export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: GisExternalAuthIdentityProviderCollectionRepresentation, existing: GisExternalAuthIdentityProviderCollectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => GisExternalAuthIdentityProviderCollectionRepresentationNormalized;
|
|
12
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
13
|
+
export interface DynamicSelectParams {
|
|
14
|
+
gisExternalAuthIdentityProviderOutputRepresentation?: $64$luvio_engine_LinkSelection;
|
|
15
|
+
}
|
|
16
|
+
export declare const dynamicSelect: (params: DynamicSelectParams) => $64$luvio_engine_FragmentSelection;
|
|
17
|
+
export declare function equals(existing: GisExternalAuthIdentityProviderCollectionRepresentationNormalized, incoming: GisExternalAuthIdentityProviderCollectionRepresentationNormalized): boolean;
|
|
18
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
19
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: GisExternalAuthIdentityProviderCollectionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
20
|
+
export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$luvio_engine_ResourceIngest;
|
|
21
|
+
/**
|
|
22
|
+
* Represents collection of Gis ExternalProviders
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* (none)
|
|
26
|
+
*/
|
|
27
|
+
export interface GisExternalAuthIdentityProviderCollectionRepresentationNormalized {
|
|
28
|
+
/** Gis ExternalProvider total count */
|
|
29
|
+
count: number;
|
|
30
|
+
/** Gis ExternalProviders list */
|
|
31
|
+
gisExternalAuthIdentityProviderOutputRepresentation: Array<$64$luvio_engine_StoreLink>;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Represents collection of Gis ExternalProviders
|
|
35
|
+
*
|
|
36
|
+
* Keys:
|
|
37
|
+
* (none)
|
|
38
|
+
*/
|
|
39
|
+
export interface GisExternalAuthIdentityProviderCollectionRepresentation {
|
|
40
|
+
count: number;
|
|
41
|
+
gisExternalAuthIdentityProviderOutputRepresentation: Array<GisExternalAuthIdentityProviderOutputRepresentation_GisExternalAuthIdentityProviderOutputRepresentation>;
|
|
42
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const TTL = 300;
|
|
3
|
+
export declare const VERSION = "0c42f828e9db29003a259773744aa8a1";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: GisExternalAuthIdentityProviderInputRepresentation, existing: GisExternalAuthIdentityProviderInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GisExternalAuthIdentityProviderInputRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: GisExternalAuthIdentityProviderInputRepresentationNormalized, incoming: GisExternalAuthIdentityProviderInputRepresentationNormalized): 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: GisExternalAuthIdentityProviderInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Input representation for creating a GIS External Auth Identity Provider
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface GisExternalAuthIdentityProviderInputRepresentationNormalized {
|
|
18
|
+
/** Selected authentication method */
|
|
19
|
+
authType: string;
|
|
20
|
+
/** Base URL for the map provider API */
|
|
21
|
+
baseUrl: string;
|
|
22
|
+
/** Client ID for authentication */
|
|
23
|
+
clientId: string;
|
|
24
|
+
/** Client secret for authentication */
|
|
25
|
+
clientSecret: string;
|
|
26
|
+
/** Selected map provider */
|
|
27
|
+
gisProvider: string;
|
|
28
|
+
/** Name of the GIS Authentication setup */
|
|
29
|
+
name: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Input representation for creating a GIS External Auth Identity Provider
|
|
33
|
+
*
|
|
34
|
+
* Keys:
|
|
35
|
+
* (none)
|
|
36
|
+
*/
|
|
37
|
+
export interface GisExternalAuthIdentityProviderInputRepresentation {
|
|
38
|
+
authType: string;
|
|
39
|
+
baseUrl: string;
|
|
40
|
+
clientId: string;
|
|
41
|
+
clientSecret: string;
|
|
42
|
+
gisProvider: string;
|
|
43
|
+
name: string;
|
|
44
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
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 TTL = 300;
|
|
3
|
+
export declare const VERSION = "0f69e4358dd6aed8111c869611c4526c";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
7
|
+
id: string;
|
|
8
|
+
}
|
|
9
|
+
export type GisExternalAuthIdentityProviderOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
10
|
+
export type PartialGisExternalAuthIdentityProviderOutputRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
|
|
12
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): GisExternalAuthIdentityProviderOutputRepresentationNormalizedKeyMetadata;
|
|
13
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: GisExternalAuthIdentityProviderOutputRepresentation): string;
|
|
14
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: GisExternalAuthIdentityProviderOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function normalize(input: GisExternalAuthIdentityProviderOutputRepresentation, existing: GisExternalAuthIdentityProviderOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GisExternalAuthIdentityProviderOutputRepresentationNormalized;
|
|
16
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
17
|
+
export declare function equals(existing: GisExternalAuthIdentityProviderOutputRepresentationNormalized, incoming: GisExternalAuthIdentityProviderOutputRepresentationNormalized): boolean;
|
|
18
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
19
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: GisExternalAuthIdentityProviderOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
20
|
+
/**
|
|
21
|
+
* Output representation for External Auth Identity Provider
|
|
22
|
+
*
|
|
23
|
+
* Keys:
|
|
24
|
+
* id (string): id
|
|
25
|
+
*/
|
|
26
|
+
export interface GisExternalAuthIdentityProviderOutputRepresentationNormalized {
|
|
27
|
+
/** Selected map provider */
|
|
28
|
+
authType: string;
|
|
29
|
+
/** Identity provider base url */
|
|
30
|
+
baseUrl: string;
|
|
31
|
+
/** Client ID for authentication */
|
|
32
|
+
clientId: string;
|
|
33
|
+
/** External Auth Identity Provider full name */
|
|
34
|
+
fullName: string;
|
|
35
|
+
/** Selected map provider */
|
|
36
|
+
gisProvider: string;
|
|
37
|
+
/** External Auth Identity Provider ID */
|
|
38
|
+
id: string;
|
|
39
|
+
/** Label for External Auth Identity Provider */
|
|
40
|
+
label: string;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* Output representation for External Auth Identity Provider
|
|
44
|
+
*
|
|
45
|
+
* Keys:
|
|
46
|
+
* id (string): id
|
|
47
|
+
*/
|
|
48
|
+
export interface GisExternalAuthIdentityProviderOutputRepresentation {
|
|
49
|
+
authType: string;
|
|
50
|
+
baseUrl: string;
|
|
51
|
+
clientId: string;
|
|
52
|
+
fullName: string;
|
|
53
|
+
gisProvider: string;
|
|
54
|
+
id: string;
|
|
55
|
+
label: string;
|
|
56
|
+
}
|
package/dist/es/es2018/types/src/generated/types/GisExtlMapObjectConfigCollectionRepresentation.d.ts
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
import { GisExtlMapObjectConfigOutputRepresentation as GisExtlMapObjectConfigOutputRepresentation_GisExtlMapObjectConfigOutputRepresentation } from './GisExtlMapObjectConfigOutputRepresentation';
|
|
3
|
+
export declare const TTL = 300;
|
|
4
|
+
export declare const VERSION = "9cba8584dbb15a650cd322528530d375";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: GisExtlMapObjectConfigCollectionRepresentation, existing: GisExtlMapObjectConfigCollectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GisExtlMapObjectConfigCollectionRepresentationNormalized;
|
|
8
|
+
export interface DynamicIngestParams {
|
|
9
|
+
gisExtlMapObjectConfigs: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
}
|
|
11
|
+
export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: GisExtlMapObjectConfigCollectionRepresentation, existing: GisExtlMapObjectConfigCollectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => GisExtlMapObjectConfigCollectionRepresentationNormalized;
|
|
12
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
13
|
+
export interface DynamicSelectParams {
|
|
14
|
+
gisExtlMapObjectConfigs?: $64$luvio_engine_LinkSelection;
|
|
15
|
+
}
|
|
16
|
+
export declare const dynamicSelect: (params: DynamicSelectParams) => $64$luvio_engine_FragmentSelection;
|
|
17
|
+
export declare function equals(existing: GisExtlMapObjectConfigCollectionRepresentationNormalized, incoming: GisExtlMapObjectConfigCollectionRepresentationNormalized): boolean;
|
|
18
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
19
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: GisExtlMapObjectConfigCollectionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
20
|
+
export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$luvio_engine_ResourceIngest;
|
|
21
|
+
/**
|
|
22
|
+
* Represents collection of GIS External Map Object Configurations
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* (none)
|
|
26
|
+
*/
|
|
27
|
+
export interface GisExtlMapObjectConfigCollectionRepresentationNormalized {
|
|
28
|
+
/** Total count of GIS External Map Object Configurations */
|
|
29
|
+
count: number;
|
|
30
|
+
/** List of GIS External Map Object Configurations */
|
|
31
|
+
gisExtlMapObjectConfigs: Array<$64$luvio_engine_StoreLink>;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Represents collection of GIS External Map Object Configurations
|
|
35
|
+
*
|
|
36
|
+
* Keys:
|
|
37
|
+
* (none)
|
|
38
|
+
*/
|
|
39
|
+
export interface GisExtlMapObjectConfigCollectionRepresentation {
|
|
40
|
+
count: number;
|
|
41
|
+
gisExtlMapObjectConfigs: Array<GisExtlMapObjectConfigOutputRepresentation_GisExtlMapObjectConfigOutputRepresentation>;
|
|
42
|
+
}
|