@salesforce/lds-adapters-platform-i18n 1.134.2 → 1.134.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/sfdc/index.js
CHANGED
package/src/raml/api.raml
CHANGED
|
@@ -148,19 +148,20 @@ types:
|
|
|
148
148
|
type: string
|
|
149
149
|
/connect/i18n:
|
|
150
150
|
/statecountry:
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
151
|
+
# TODO: Hand rolled
|
|
152
|
+
# post:
|
|
153
|
+
# description: Retrieve the list of States and Countries with labels in given
|
|
154
|
+
# locales language.
|
|
155
|
+
# responses:
|
|
156
|
+
# '200':
|
|
157
|
+
# description: Success
|
|
158
|
+
# body:
|
|
159
|
+
# application/json:
|
|
160
|
+
# type: StateCountryTranslations
|
|
161
|
+
# body:
|
|
162
|
+
# application/json:
|
|
163
|
+
# type: StateCountryInputRequest
|
|
164
|
+
# (oas-body-name): stateCountryInput
|
|
164
165
|
/timezones/{locale}:
|
|
165
166
|
get:
|
|
166
167
|
description: Fetch list of timezones supported with localized labels.
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, 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 { StateCountryTranslations as types_StateCountryTranslations_StateCountryTranslations } from '../types/StateCountryTranslations';
|
|
3
|
-
export interface ResourceRequestConfig {
|
|
4
|
-
body: {
|
|
5
|
-
countries: Array<string>;
|
|
6
|
-
filterType: string;
|
|
7
|
-
locale: string;
|
|
8
|
-
states: Array<string>;
|
|
9
|
-
};
|
|
10
|
-
}
|
|
11
|
-
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
12
|
-
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_StateCountryTranslations_StateCountryTranslations): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
13
|
-
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_StateCountryTranslations_StateCountryTranslations>): $64$luvio_engine_FulfilledSnapshot<types_StateCountryTranslations_StateCountryTranslations, {}> | $64$luvio_engine_StaleSnapshot<types_StateCountryTranslations_StateCountryTranslations, {}> | $64$luvio_engine_PendingSnapshot<types_StateCountryTranslations_StateCountryTranslations, any>;
|
|
14
|
-
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
15
|
-
export default createResourceRequest;
|