@salesforce/lds-adapters-platform-i18n 1.134.2 → 1.134.3

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-platform-i18n",
3
- "version": "1.134.2",
3
+ "version": "1.134.3",
4
4
  "description": "Glboalization Services",
5
5
  "license": "MIT",
6
6
  "main": "dist/es/es2018/platform-i18n.js",
package/sfdc/index.js CHANGED
@@ -365,4 +365,4 @@ withDefaultLuvio((luvio) => {
365
365
  });
366
366
 
367
367
  export { getTimezonesByLocale, getTimezonesByLocale_imperative };
368
- // version: 1.134.2-29b530b89
368
+ // version: 1.134.3-ea1008c6e
package/src/raml/api.raml CHANGED
@@ -148,19 +148,20 @@ types:
148
148
  type: string
149
149
  /connect/i18n:
150
150
  /statecountry:
151
- post:
152
- description: Retrieve the list of States and Countries with labels in given
153
- locales language.
154
- responses:
155
- '200':
156
- description: Success
157
- body:
158
- application/json:
159
- type: StateCountryTranslations
160
- body:
161
- application/json:
162
- type: StateCountryInputRequest
163
- (oas-body-name): stateCountryInput
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;