@leaflow/sdk 0.74.0 → 0.74.2

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.
@@ -1499,7 +1499,6 @@ export interface components {
1499
1499
  product_id: string | null;
1500
1500
  /** Format: uuid */
1501
1501
  plan_id: string | null;
1502
- lookup_key: string;
1503
1502
  name_translations: {
1504
1503
  [key: string]: string;
1505
1504
  };
@@ -1530,7 +1529,6 @@ export interface components {
1530
1529
  region_id: string;
1531
1530
  /** @description False means a new password can only be set by rebuilding an instance created from this image */
1532
1531
  supports_password_reset: boolean;
1533
- lookup_key?: string;
1534
1532
  };
1535
1533
  ImageListResponseBody: {
1536
1534
  items: components["schemas"]["ImageResource"][];
@@ -1584,7 +1582,6 @@ export interface components {
1584
1582
  product_id: string | null;
1585
1583
  /** Format: uuid */
1586
1584
  plan_id: string | null;
1587
- lookup_key: string;
1588
1585
  name_translations: {
1589
1586
  [key: string]: string;
1590
1587
  };
@@ -1601,7 +1598,8 @@ export interface components {
1601
1598
  RegionResource: {
1602
1599
  country_code: string;
1603
1600
  name: string;
1604
- lookup_key: string;
1601
+ /** @description The region's code, the way the outside world names this place (hk-1). Stable and human-written; it is not an identifier for addressing — every endpoint takes ids. */
1602
+ code: string;
1605
1603
  /** Format: uuid */
1606
1604
  id: string;
1607
1605
  };
@@ -1610,7 +1608,8 @@ export interface components {
1610
1608
  };
1611
1609
  ZoneResource: {
1612
1610
  name: string;
1613
- lookup_key: string;
1611
+ /** @description The zone's code within its region (hk-1-a). Stable and human-written; addressing is by id. */
1612
+ code: string;
1614
1613
  /** Format: uuid */
1615
1614
  id: string;
1616
1615
  };
@@ -2489,7 +2488,6 @@ export interface components {
2489
2488
  /** Format: uuid */
2490
2489
  region_id: string;
2491
2490
  name: string;
2492
- lookup_key: string;
2493
2491
  /** Format: uuid */
2494
2492
  plan_id: string | null;
2495
2493
  /** Format: uuid */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leaflow/sdk",
3
- "version": "0.74.0",
3
+ "version": "0.74.2",
4
4
  "description": "Leaflow 平台 API 的 TypeScript SDK",
5
5
  "license": "MIT",
6
6
  "repository": {