@salesforce/lds-adapters-uiapi 1.288.0 → 1.290.0

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.
Files changed (30) hide show
  1. package/dist/es/es2018/types/src/generated/adapters/createRecord.d.ts +1 -0
  2. package/dist/es/es2018/types/src/generated/adapters/getQuickActionLayout.d.ts +2 -0
  3. package/dist/es/es2018/types/src/generated/adapters/updateRecord.d.ts +1 -0
  4. package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +1 -1
  5. package/dist/es/es2018/types/src/generated/resources/deleteUiApiFormsHealthCheckByApiName.d.ts +11 -0
  6. package/dist/es/es2018/types/src/generated/resources/deleteUiApiListInfoByListViewId.d.ts +11 -0
  7. package/dist/es/es2018/types/src/generated/resources/getUiApiActionsLayoutByActionApiName.d.ts +4 -0
  8. package/dist/es/es2018/types/src/generated/resources/getUiApiFormsHealthCheckByApiName.d.ts +15 -0
  9. package/dist/es/es2018/types/src/generated/resources/getUiApiListRecordsByListViewId.d.ts +1 -1
  10. package/dist/es/es2018/types/src/generated/resources/patchUiApiFormsHealthCheckByApiName.d.ts +9 -0
  11. package/dist/es/es2018/types/src/generated/resources/patchUiApiRecordsByRecordId.d.ts +1 -0
  12. package/dist/es/es2018/types/src/generated/resources/postUiApiListRecordsByListViewId.d.ts +24 -0
  13. package/dist/es/es2018/types/src/generated/resources/postUiApiRecords.d.ts +1 -0
  14. package/dist/es/es2018/types/src/generated/resources/putUiApiFormsHealthCheckByApiName.d.ts +9 -0
  15. package/dist/es/es2018/types/src/generated/types/ActionInputRepresentation.d.ts +3 -3
  16. package/dist/es/es2018/types/src/generated/types/AdvancedLookupDisplayInfoFieldRepresentation.d.ts +3 -3
  17. package/dist/es/es2018/types/src/generated/types/GraphQLBatchInputRepresentation.d.ts +28 -0
  18. package/dist/es/es2018/types/src/generated/types/HealthCheckRepresentation.d.ts +28 -0
  19. package/dist/es/es2018/types/src/generated/types/ListInfoInputRepresentation.d.ts +1 -1
  20. package/dist/es/es2018/types/src/generated/types/ListInfoShareRepresentation.d.ts +1 -1
  21. package/dist/es/es2018/types/src/generated/types/ObjectInfoRepresentation.d.ts +1 -1
  22. package/dist/es/es2018/types/src/generated/types/RecordAvatarBulkMapRepresentation.d.ts +1 -1
  23. package/dist/es/es2018/types/src/generated/types/RecordTypeInfoRepresentation.d.ts +1 -1
  24. package/dist/es/es2018/types/src/graphql-artifacts/types/Setup__SetupQuery/getFieldType.d.ts +5 -0
  25. package/dist/es/es2018/uiapi-records-service.js +210 -201
  26. package/package.json +6 -6
  27. package/sfdc/graphqlAdapters.js +26 -21
  28. package/sfdc/index.js +188 -184
  29. package/src/raml/api.raml +474 -46
  30. package/src/raml/luvio.raml +2 -2
@@ -6,6 +6,7 @@ export declare const adapterName = "createRecord";
6
6
  export declare const createRecord_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
7
7
  export declare const createRecord_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
8
  export interface CreateRecordConfig {
9
+ handleOwnerChange?: boolean;
9
10
  includeFieldsInBody?: boolean;
10
11
  triggerOtherEmail?: boolean;
11
12
  triggerUserEmail?: boolean;
@@ -7,6 +7,8 @@ export declare const getQuickActionLayout_ConfigPropertyMetadata: $64$luvio_engi
7
7
  export declare const getQuickActionLayout_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
8
  export interface GetQuickActionLayoutConfig {
9
9
  actionApiName: string;
10
+ objectApiName?: string;
11
+ recordTypeId?: string;
10
12
  }
11
13
  export declare const createResourceParams: (config: GetQuickActionLayoutConfig) => resources_getUiApiActionsLayoutByActionApiName_ResourceRequestConfig;
12
14
  export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetQuickActionLayoutConfig): string;
@@ -7,6 +7,7 @@ export declare const updateRecord_ConfigPropertyMetadata: $64$luvio_engine_Adapt
7
7
  export declare const updateRecord_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
8
  export interface UpdateRecordConfig {
9
9
  recordId: string;
10
+ handleOwnerChange?: boolean;
10
11
  triggerOtherEmail?: boolean;
11
12
  triggerUserEmail?: boolean;
12
13
  useDefaultRule?: boolean;
@@ -19,8 +19,8 @@ export { getLayoutUserStateAdapterFactory } from '../adapters/getLayoutUserState
19
19
  export { getListInfosByNameAdapterFactory } from '../adapters/getListInfosByName';
20
20
  export { getListInfosByObjectNameAdapterFactory } from '../adapters/getListInfosByObjectName';
21
21
  export { createListInfoAdapterFactory } from '../adapters/createListInfo';
22
- export { getListInfoByNameAdapterFactory } from '../adapters/getListInfoByName';
23
22
  export { deleteListInfoAdapterFactory } from '../adapters/deleteListInfo';
23
+ export { getListInfoByNameAdapterFactory } from '../adapters/getListInfoByName';
24
24
  export { updateListInfoByNameAdapterFactory } from '../adapters/updateListInfoByName';
25
25
  export { getListObjectInfoAdapterFactory } from '../adapters/getListObjectInfo';
26
26
  export { getListPreferencesAdapterFactory } from '../adapters/getListPreferences';
@@ -0,0 +1,11 @@
1
+ import { Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
2
+ export interface ResourceRequestConfig {
3
+ urlParams: {
4
+ apiName: string;
5
+ };
6
+ }
7
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
8
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
9
+ export declare function getResponseCacheKeys(cacheKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig): void;
10
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
11
+ export default createResourceRequest;
@@ -0,0 +1,11 @@
1
+ import { Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
2
+ export interface ResourceRequestConfig {
3
+ urlParams: {
4
+ listViewId: string;
5
+ };
6
+ }
7
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
8
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
9
+ export declare function getResponseCacheKeys(cacheKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig): void;
10
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
11
+ export default createResourceRequest;
@@ -4,6 +4,10 @@ export interface ResourceRequestConfig {
4
4
  urlParams: {
5
5
  actionApiName: string;
6
6
  };
7
+ queryParams: {
8
+ objectApiName?: string;
9
+ recordTypeId?: string;
10
+ };
7
11
  }
8
12
  export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
9
13
  export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
@@ -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 { HealthCheckRepresentation as types_HealthCheckRepresentation_HealthCheckRepresentation } from '../types/HealthCheckRepresentation';
3
+ export interface ResourceRequestConfig {
4
+ urlParams: {
5
+ apiName: 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_HealthCheckRepresentation_HealthCheckRepresentation): void;
12
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_HealthCheckRepresentation_HealthCheckRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_HealthCheckRepresentation_HealthCheckRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_HealthCheckRepresentation_HealthCheckRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_HealthCheckRepresentation_HealthCheckRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_HealthCheckRepresentation_HealthCheckRepresentation, any>;
13
+ export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_HealthCheckRepresentation_HealthCheckRepresentation>): $64$luvio_engine_ErrorSnapshot;
14
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
15
+ export default createResourceRequest;
@@ -10,8 +10,8 @@ export interface ResourceRequestConfig {
10
10
  pageSize?: number;
11
11
  pageToken?: string;
12
12
  searchTerm?: string;
13
- where?: string;
14
13
  sortBy?: Array<string>;
14
+ where?: string;
15
15
  };
16
16
  }
17
17
  export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
@@ -0,0 +1,9 @@
1
+ import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
2
+ export interface ResourceRequestConfig {
3
+ urlParams: {
4
+ apiName: string;
5
+ };
6
+ }
7
+ export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
8
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
9
+ export default createResourceRequest;
@@ -5,6 +5,7 @@ export interface ResourceRequestConfig {
5
5
  recordId: string;
6
6
  };
7
7
  queryParams: {
8
+ handleOwnerChange?: boolean;
8
9
  triggerOtherEmail?: boolean;
9
10
  triggerUserEmail?: boolean;
10
11
  useDefaultRule?: boolean;
@@ -0,0 +1,24 @@
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 { ListRecordCollectionRepresentation as types_ListRecordCollectionRepresentation_ListRecordCollectionRepresentation } from '../types/ListRecordCollectionRepresentation';
3
+ export interface ResourceRequestConfig {
4
+ urlParams: {
5
+ listViewId: string;
6
+ };
7
+ queryParams: {
8
+ sortBy?: Array<string>;
9
+ };
10
+ body: {
11
+ fields?: Array<string>;
12
+ optionalFields?: Array<string>;
13
+ pageSize?: number;
14
+ pageToken?: string;
15
+ searchTerm?: string;
16
+ sortBy?: Array<string>;
17
+ where?: string;
18
+ };
19
+ }
20
+ export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
21
+ export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ListRecordCollectionRepresentation_ListRecordCollectionRepresentation): void;
22
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ListRecordCollectionRepresentation_ListRecordCollectionRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ListRecordCollectionRepresentation_ListRecordCollectionRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ListRecordCollectionRepresentation_ListRecordCollectionRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ListRecordCollectionRepresentation_ListRecordCollectionRepresentation, any>;
23
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
24
+ export default createResourceRequest;
@@ -2,6 +2,7 @@ import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment,
2
2
  import { RecordRepresentation as types_RecordRepresentation_RecordRepresentation } from '../types/RecordRepresentation';
3
3
  export interface ResourceRequestConfig {
4
4
  queryParams: {
5
+ handleOwnerChange?: boolean;
5
6
  includeFieldsInBody?: boolean;
6
7
  triggerOtherEmail?: boolean;
7
8
  triggerUserEmail?: boolean;
@@ -0,0 +1,9 @@
1
+ import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
2
+ export interface ResourceRequestConfig {
3
+ urlParams: {
4
+ apiName: string;
5
+ };
6
+ }
7
+ export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
8
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
9
+ export default createResourceRequest;
@@ -1,5 +1,5 @@
1
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 = "cc3e00b2e2880ae93fe8ef92a8a4bc32";
2
+ export declare const VERSION = "5e13070b6653469f16a5bbe0c4e52aba";
3
3
  export declare function validate(obj: any, path?: string): TypeError | null;
4
4
  export declare const RepresentationType: string;
5
5
  export declare function normalize(input: ActionInputRepresentation, existing: ActionInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ActionInputRepresentationNormalized;
@@ -8,7 +8,7 @@ export declare function equals(existing: ActionInputRepresentationNormalized, in
8
8
  export declare const ingest: $64$luvio_engine_ResourceIngest;
9
9
  export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ActionInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
10
  /**
11
- * Query (using POST) for actions in multiple related lists.
11
+ * Query (using POST) for action's query param input representation.
12
12
  *
13
13
  * Keys:
14
14
  * (none)
@@ -26,7 +26,7 @@ export interface ActionInputRepresentationNormalized {
26
26
  sections?: Array<string>;
27
27
  }
28
28
  /**
29
- * Query (using POST) for actions in multiple related lists.
29
+ * Query (using POST) for action's query param input representation.
30
30
  *
31
31
  * Keys:
32
32
  * (none)
@@ -1,5 +1,5 @@
1
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 = "8fe70439dbf33022585a7f49b380a2b3";
2
+ export declare const VERSION = "c37dfaedbb65893bc278dc6b26decfed";
3
3
  export declare function validate(obj: any, path?: string): TypeError | null;
4
4
  export declare const RepresentationType: string;
5
5
  export declare function normalize(input: AdvancedLookupDisplayInfoFieldRepresentation, existing: AdvancedLookupDisplayInfoFieldRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AdvancedLookupDisplayInfoFieldRepresentationNormalized;
@@ -8,7 +8,7 @@ export declare function equals(existing: AdvancedLookupDisplayInfoFieldRepresent
8
8
  export declare const ingest: $64$luvio_engine_ResourceIngest;
9
9
  export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: AdvancedLookupDisplayInfoFieldRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
10
  /**
11
- * Search Lookups - Advanced Lookup Display Info Fields metadata
11
+ * Search Lookups - Advanced Lookup Display Info Field metadata
12
12
  *
13
13
  * Keys:
14
14
  * (none)
@@ -22,7 +22,7 @@ export interface AdvancedLookupDisplayInfoFieldRepresentationNormalized {
22
22
  objectApiName: string;
23
23
  }
24
24
  /**
25
- * Search Lookups - Advanced Lookup Display Info Fields metadata
25
+ * Search Lookups - Advanced Lookup Display Info Field metadata
26
26
  *
27
27
  * Keys:
28
28
  * (none)
@@ -0,0 +1,28 @@
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 = "3b0cb065fe5b19ee64a32dfcc80ebbf6";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: GraphQLBatchInputRepresentation, existing: GraphQLBatchInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GraphQLBatchInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: GraphQLBatchInputRepresentationNormalized, incoming: GraphQLBatchInputRepresentationNormalized): 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: GraphQLBatchInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * GraphQL Batch Input Rep
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface GraphQLBatchInputRepresentationNormalized {
17
+ /** The list of graphQL operations to keep and update. */
18
+ batchQuery: Array<{}>;
19
+ }
20
+ /**
21
+ * GraphQL Batch Input Rep
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface GraphQLBatchInputRepresentation {
27
+ batchQuery: Array<{}>;
28
+ }
@@ -0,0 +1,28 @@
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 = "8ca37d9f13fd8fbff45bcfcbd74937ee";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: HealthCheckRepresentation, existing: HealthCheckRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): HealthCheckRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: HealthCheckRepresentationNormalized, incoming: HealthCheckRepresentationNormalized): 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: HealthCheckRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * api health check output
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface HealthCheckRepresentationNormalized {
17
+ /** Result. */
18
+ result: string;
19
+ }
20
+ /**
21
+ * api health check output
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface HealthCheckRepresentation {
27
+ result: string;
28
+ }
@@ -20,7 +20,7 @@ export interface ListInfoInputRepresentationNormalized {
20
20
  displayColumns?: Array<string>;
21
21
  /** Input representation for filterLogicString. */
22
22
  filterLogicString?: string;
23
- /** Describes how the list view is filtered. */
23
+ /** Input representation for filter metadata. */
24
24
  filteredByInfo?: Array<ListFilterByInfoInputRepresentation_ListFilterByInfoInputRepresentation>;
25
25
  /** Input representation for label. */
26
26
  label?: string;
@@ -16,7 +16,7 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
16
16
  export interface ListInfoShareRepresentationNormalized {
17
17
  /** The label for this shared item. */
18
18
  label: string;
19
- /** The group API name for this shared item. */
19
+ /** The API name for this shared item. */
20
20
  shareApiName: string;
21
21
  }
22
22
  /**
@@ -40,7 +40,7 @@ export interface ObjectInfoRepresentationNormalized {
40
40
  createable: boolean;
41
41
  /** Indicates whether the object is custom. */
42
42
  custom: boolean;
43
- /** The ID for the default record type for this object, if any. Null if there is none, or only a master type. */
43
+ /** The ID for the default record type for this object, if any. Null if there is none, or only a primary type. */
44
44
  defaultRecordTypeId: string | null;
45
45
  /** Indicates whether the object can be deleted. */
46
46
  deletable: boolean;
@@ -2,7 +2,7 @@ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Lu
2
2
  import { RecordAvatarBatchRepresentation as RecordAvatarBatchRepresentation_RecordAvatarBatchRepresentation } from './RecordAvatarBatchRepresentation';
3
3
  import { ErrorBadRequestRecordAvatarBatchRepresentation as ErrorBadRequestRecordAvatarBatchRepresentation_ErrorBadRequestRecordAvatarBatchRepresentation } from './ErrorBadRequestRecordAvatarBatchRepresentation';
4
4
  import { ErrorRecordAvatarBatchRepresentation as ErrorRecordAvatarBatchRepresentation_ErrorRecordAvatarBatchRepresentation } from './ErrorRecordAvatarBatchRepresentation';
5
- export declare const TTL = 300000;
5
+ export declare const TTL = 1800000;
6
6
  export declare const VERSION = "c44c049fa6ad7cf7e932c0aab9107d86";
7
7
  export declare function validate(obj: any, path?: string): TypeError | null;
8
8
  export declare const RepresentationType: string;
@@ -18,7 +18,7 @@ export interface RecordTypeInfoRepresentationNormalized {
18
18
  available: boolean;
19
19
  /** Indicates whether this is the default record type mapping for the associated object. */
20
20
  defaultRecordTypeMapping: boolean;
21
- /** Whether this is the master record type. The master record type is the default record type that’s used when a record has no custom record type associated with it. */
21
+ /** Whether this is the primary record type. The primary record type is the default record type that’s used when a record has no custom record type associated with it. */
22
22
  master: boolean;
23
23
  /** The record's object API name. */
24
24
  name: string;
@@ -0,0 +1,5 @@
1
+ import type { FieldNode } from '@luvio/graphql-parser';
2
+ export declare function getFieldType(field: FieldNode): {
3
+ isArray: boolean;
4
+ typename: string;
5
+ } | undefined;