@leaflow/sdk 0.74.3 → 0.74.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/billing/v1/schema.d.ts +30 -12
- package/package.json +1 -1
|
@@ -1502,18 +1502,6 @@ export interface components {
|
|
|
1502
1502
|
/** Format: int64 */
|
|
1503
1503
|
status: number;
|
|
1504
1504
|
};
|
|
1505
|
-
/**
|
|
1506
|
-
* @description Names in other languages, keyed by BCP 47 language tag. Where your locale is absent, use
|
|
1507
|
-
* the plain `name`; there is no fallback between related tags.
|
|
1508
|
-
*/
|
|
1509
|
-
Translations: {
|
|
1510
|
-
[key: string]: string;
|
|
1511
|
-
};
|
|
1512
|
-
/**
|
|
1513
|
-
* @description A decimal string, in the currency stated alongside it.
|
|
1514
|
-
* @example 10.2500000000
|
|
1515
|
-
*/
|
|
1516
|
-
Money: string;
|
|
1517
1505
|
CatalogProduct: {
|
|
1518
1506
|
/** Format: uuid */
|
|
1519
1507
|
id: string;
|
|
@@ -3086,6 +3074,36 @@ export interface components {
|
|
|
3086
3074
|
id: string;
|
|
3087
3075
|
lookup_key?: string;
|
|
3088
3076
|
};
|
|
3077
|
+
/**
|
|
3078
|
+
* @description Text in other languages, keyed by BCP 47 language tag (`zh-Hans`, `en`, `ja`).
|
|
3079
|
+
*
|
|
3080
|
+
* When your locale is absent, use the plain field next to this one. **There is no fallback
|
|
3081
|
+
* chain**: a missing `zh-Hans` does not fall back to `zh`.
|
|
3082
|
+
*
|
|
3083
|
+
* Resolving server-side by `Accept-Language` is deliberately not done — the public catalogue is
|
|
3084
|
+
* cached and served from a CDN, and one cache serves every language only if the response does
|
|
3085
|
+
* not depend on the request's language.
|
|
3086
|
+
* @example {
|
|
3087
|
+
* "ja": "クラウドサーバー",
|
|
3088
|
+
* "fr": "Serveur cloud"
|
|
3089
|
+
* }
|
|
3090
|
+
*/
|
|
3091
|
+
Translations: {
|
|
3092
|
+
[key: string]: string;
|
|
3093
|
+
};
|
|
3094
|
+
/**
|
|
3095
|
+
* @description A decimal string, in the currency stated alongside it.
|
|
3096
|
+
*
|
|
3097
|
+
* **The currency is not part of this type.** It is carried by a `currency` field next to the
|
|
3098
|
+
* amount, or by the account the amount belongs to. Reading an amount without that field is
|
|
3099
|
+
* reading a number with no unit.
|
|
3100
|
+
*
|
|
3101
|
+
* It is a string rather than a JSON number because a JSON number is a float in most parsers,
|
|
3102
|
+
* and a float loses precision on the first arithmetic. Nothing on this platform puts an amount
|
|
3103
|
+
* through a float.
|
|
3104
|
+
* @example 10.2500000000
|
|
3105
|
+
*/
|
|
3106
|
+
Money: string;
|
|
3089
3107
|
};
|
|
3090
3108
|
responses: {
|
|
3091
3109
|
/** @description Unchanged since the `ETag` that was sent. No body. */
|