mezon-js 2.7.12 → 2.7.13

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/api.gen.ts CHANGED
@@ -814,6 +814,8 @@ export interface ApiStorageObjects {
814
814
 
815
815
  /** Update a user's account details. */
816
816
  export interface ApiUpdateAccountRequest {
817
+ //
818
+ about_me?: string;
817
819
  //A URL for an avatar image.
818
820
  avatar_url?: string;
819
821
  //The display name of the user.
@@ -868,6 +870,8 @@ export interface ApiUploadAttachmentRequest {
868
870
 
869
871
  /** A user in the server. */
870
872
  export interface ApiUser {
873
+ //
874
+ about_me?: string;
871
875
  //The Apple Sign In ID in the user's account.
872
876
  apple_id?: string;
873
877
  //A URL for an avatar image.
package/dist/api.gen.d.ts CHANGED
@@ -471,6 +471,7 @@ export interface ApiStorageObjects {
471
471
  }
472
472
  /** Update a user's account details. */
473
473
  export interface ApiUpdateAccountRequest {
474
+ about_me?: string;
474
475
  avatar_url?: string;
475
476
  display_name?: string;
476
477
  lang_tag?: string;
@@ -503,6 +504,7 @@ export interface ApiUploadAttachmentRequest {
503
504
  }
504
505
  /** A user in the server. */
505
506
  export interface ApiUser {
507
+ about_me?: string;
506
508
  apple_id?: string;
507
509
  avatar_url?: string;
508
510
  create_time?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.7.12",
3
+ "version": "2.7.13",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },