mezon-js 2.11.28 → 2.11.29
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 +3 -1
- package/dist/api.gen.d.ts +1 -0
- package/package.json +1 -1
package/api.gen.ts
CHANGED
@@ -2027,6 +2027,8 @@ export interface ApiPinMessage {
|
|
2027
2027
|
sender_id?: string;
|
2028
2028
|
//
|
2029
2029
|
username?: string;
|
2030
|
+
//
|
2031
|
+
attachment?: string;
|
2030
2032
|
}
|
2031
2033
|
|
2032
2034
|
/** */
|
@@ -2172,7 +2174,7 @@ export interface ApiRole {
|
|
2172
2174
|
//
|
2173
2175
|
title?: string;
|
2174
2176
|
//
|
2175
|
-
order_role
|
2177
|
+
order_role?: number;
|
2176
2178
|
}
|
2177
2179
|
|
2178
2180
|
/** A list of role description, usually a result of a list operation. */
|
package/dist/api.gen.d.ts
CHANGED