mezon-js-protobuf 1.8.17 → 1.8.19

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/api.ts CHANGED
@@ -2729,6 +2729,8 @@ export interface UpdateAppRequest {
2729
2729
  about: string;
2730
2730
  /** App url. */
2731
2731
  app_url: string;
2732
+ /** need update or not */
2733
+ is_shadow: string;
2732
2734
  }
2733
2735
 
2734
2736
  /** The identifier for an app. */
@@ -25979,6 +25981,7 @@ function createBaseUpdateAppRequest(): UpdateAppRequest {
25979
25981
  token: undefined,
25980
25982
  about: "",
25981
25983
  app_url: "",
25984
+ is_shadow: "",
25982
25985
  };
25983
25986
  }
25984
25987
 
@@ -26005,6 +26008,9 @@ export const UpdateAppRequest = {
26005
26008
  if (message.app_url !== "") {
26006
26009
  writer.uint32(58).string(message.app_url);
26007
26010
  }
26011
+ if (message.is_shadow !== "") {
26012
+ writer.uint32(74).string(message.is_shadow);
26013
+ }
26008
26014
  return writer;
26009
26015
  },
26010
26016
 
@@ -26064,6 +26070,13 @@ export const UpdateAppRequest = {
26064
26070
 
26065
26071
  message.app_url = reader.string();
26066
26072
  continue;
26073
+ case 9:
26074
+ if (tag !== 74) {
26075
+ break;
26076
+ }
26077
+
26078
+ message.is_shadow = reader.string();
26079
+ continue;
26067
26080
  }
26068
26081
  if ((tag & 7) === 4 || tag === 0) {
26069
26082
  break;
@@ -26082,6 +26095,7 @@ export const UpdateAppRequest = {
26082
26095
  token: isSet(object.token) ? String(object.token) : undefined,
26083
26096
  about: isSet(object.about) ? globalThis.String(object.about) : "",
26084
26097
  app_url: isSet(object.app_url) ? globalThis.String(object.app_url) : "",
26098
+ is_shadow: isSet(object.is_shadow) ? globalThis.String(object.is_shadow) : "",
26085
26099
  };
26086
26100
  },
26087
26101
 
@@ -26108,6 +26122,9 @@ export const UpdateAppRequest = {
26108
26122
  if (message.app_url !== "") {
26109
26123
  obj.app_url = message.app_url;
26110
26124
  }
26125
+ if (message.is_shadow !== "") {
26126
+ obj.is_shadow = message.is_shadow;
26127
+ }
26111
26128
  return obj;
26112
26129
  },
26113
26130
 
@@ -26123,6 +26140,7 @@ export const UpdateAppRequest = {
26123
26140
  message.token = object.token ?? undefined;
26124
26141
  message.about = object.about ?? "";
26125
26142
  message.app_url = object.app_url ?? "";
26143
+ message.is_shadow = object.is_shadow ?? "";
26126
26144
  return message;
26127
26145
  },
26128
26146
  };
@@ -2156,6 +2156,8 @@ export interface UpdateAppRequest {
2156
2156
  about: string;
2157
2157
  /** App url. */
2158
2158
  app_url: string;
2159
+ /** need update or not */
2160
+ is_shadow: string;
2159
2161
  }
2160
2162
  /** The identifier for an app. */
2161
2163
  export interface AppId {
@@ -17176,6 +17178,7 @@ export declare const UpdateAppRequest: {
17176
17178
  token?: string | undefined;
17177
17179
  about?: string | undefined;
17178
17180
  app_url?: string | undefined;
17181
+ is_shadow?: string | undefined;
17179
17182
  } & {
17180
17183
  id?: string | undefined;
17181
17184
  appname?: string | undefined;
@@ -17184,6 +17187,7 @@ export declare const UpdateAppRequest: {
17184
17187
  token?: string | undefined;
17185
17188
  about?: string | undefined;
17186
17189
  app_url?: string | undefined;
17190
+ is_shadow?: string | undefined;
17187
17191
  } & { [K in Exclude<keyof I, keyof UpdateAppRequest>]: never; }>(base?: I | undefined): UpdateAppRequest;
17188
17192
  fromPartial<I_1 extends {
17189
17193
  id?: string | undefined;
@@ -17193,6 +17197,7 @@ export declare const UpdateAppRequest: {
17193
17197
  token?: string | undefined;
17194
17198
  about?: string | undefined;
17195
17199
  app_url?: string | undefined;
17200
+ is_shadow?: string | undefined;
17196
17201
  } & {
17197
17202
  id?: string | undefined;
17198
17203
  appname?: string | undefined;
@@ -17201,6 +17206,7 @@ export declare const UpdateAppRequest: {
17201
17206
  token?: string | undefined;
17202
17207
  about?: string | undefined;
17203
17208
  app_url?: string | undefined;
17209
+ is_shadow?: string | undefined;
17204
17210
  } & { [K_1 in Exclude<keyof I_1, keyof UpdateAppRequest>]: never; }>(object: I_1): UpdateAppRequest;
17205
17211
  };
17206
17212
  export declare const AppId: {