@leaflow/sdk 0.24.0 → 0.26.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.
@@ -1737,6 +1737,12 @@ export interface components {
1737
1737
  action: string;
1738
1738
  /** @description The user who initiated the operation. Empty when the platform performed it */
1739
1739
  actor: string | null;
1740
+ /**
1741
+ * @description The name this user went by at the time of the operation, recorded alongside the operation itself. It is not refreshed afterwards: the record states who acted then, and a name read today is a statement about a different moment.
1742
+ *
1743
+ * Null on entries recorded before this field existed, and on entries performed by the platform. An empty string means the account had no name recorded.
1744
+ */
1745
+ actor_name: string | null;
1740
1746
  /** @description True when the operation was performed by the platform */
1741
1747
  by_platform: boolean;
1742
1748
  /** Format: date-time */
@@ -393,6 +393,8 @@ export interface components {
393
393
  token: string;
394
394
  };
395
395
  MemberResource: {
396
+ /** @description MD5 hash of the lowercased, trimmed email address, for use with Gravatar-compatible avatar services. Empty if the account has no email address. */
397
+ avatar_hash: string;
396
398
  /** Format: date-time */
397
399
  created_at: string;
398
400
  created_by: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leaflow/sdk",
3
- "version": "0.24.0",
3
+ "version": "0.26.0",
4
4
  "description": "Leaflow 平台 API 的 TypeScript SDK",
5
5
  "license": "MIT",
6
6
  "repository": {