@fivenet-app/gen 2025.5.2 → 2025.9.1
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/buf/validate/validate.ts +11301 -0
- package/clients.ts +157 -154
- package/codegen/dbscanner/dbscanner.ts +91 -0
- package/codegen/perms/perms.ts +208 -0
- package/codegen/sanitizer/sanitizer.ts +80 -0
- package/google/protobuf/any.ts +4 -3
- package/google/protobuf/descriptor.ts +393 -239
- package/google/protobuf/duration.ts +4 -3
- package/google/protobuf/struct.ts +485 -0
- package/google/protobuf/timestamp.ts +4 -3
- package/package.json +3 -3
- package/perms.ts +85 -159
- package/resources/accounts/accounts.ts +26 -25
- package/resources/accounts/oauth2.ts +30 -29
- package/resources/audit/audit.ts +36 -35
- package/resources/calendar/access.ts +49 -48
- package/resources/calendar/calendar.ts +122 -126
- package/resources/centrum/access.ts +345 -0
- package/resources/centrum/attributes.ts +8 -11
- package/resources/centrum/dispatchers.ts +149 -0
- package/resources/centrum/dispatches.ts +252 -115
- package/resources/centrum/settings.ts +384 -34
- package/resources/centrum/units.ts +112 -92
- package/resources/centrum/units_access.ts +54 -55
- package/resources/clientconfig/clientconfig.ts +890 -0
- package/resources/collab/collab.ts +817 -0
- package/resources/common/content/content.ts +113 -30
- package/resources/common/cron/cron.ts +43 -31
- package/resources/common/database/database.ts +92 -35
- package/resources/common/error.ts +17 -16
- package/resources/common/grpcws/grpcws.ts +24 -23
- package/resources/common/i18n.ts +20 -24
- package/resources/common/id_mapping.ts +69 -0
- package/resources/common/tests/objects.ts +4 -3
- package/resources/common/uuid.ts +4 -3
- package/resources/discord/discord.ts +209 -0
- package/resources/documents/access.ts +52 -53
- package/resources/documents/activity.ts +235 -58
- package/resources/documents/category.ts +20 -27
- package/resources/documents/comment.ts +26 -25
- package/resources/documents/documents.ts +335 -262
- package/resources/documents/pins.ts +127 -0
- package/resources/documents/requests.ts +31 -30
- package/resources/documents/signoff.ts +55 -0
- package/resources/documents/state.ts +69 -0
- package/resources/documents/templates.ts +119 -136
- package/resources/documents/workflow.ts +35 -24
- package/resources/file/file.ts +152 -0
- package/{services/settings → resources/file}/filestore.ts +179 -165
- package/resources/file/meta.ts +148 -0
- package/resources/jobs/activity.ts +39 -42
- package/resources/jobs/colleagues.ts +67 -60
- package/resources/jobs/conduct.ts +29 -30
- package/resources/jobs/job_props.ts +46 -48
- package/resources/jobs/job_settings.ts +45 -52
- package/resources/jobs/jobs.ts +14 -13
- package/resources/jobs/labels.ts +21 -22
- package/resources/jobs/timeclock.ts +26 -25
- package/resources/laws/laws.ts +40 -49
- package/resources/livemap/coords.ts +81 -0
- package/resources/livemap/heatmap.ts +93 -0
- package/resources/livemap/{livemap.ts → marker_marker.ts} +43 -310
- package/resources/livemap/user_marker.ts +298 -0
- package/resources/mailer/access.ts +75 -74
- package/resources/mailer/email.ts +24 -27
- package/resources/mailer/events.ts +25 -24
- package/resources/mailer/message.ts +45 -50
- package/resources/mailer/settings.ts +12 -15
- package/resources/mailer/template.ts +25 -28
- package/resources/mailer/thread.ts +70 -71
- package/resources/notifications/client_view.ts +239 -0
- package/resources/notifications/events.ts +50 -101
- package/resources/notifications/notifications.ts +52 -57
- package/resources/permissions/attributes.ts +63 -206
- package/resources/permissions/events.ts +149 -0
- package/resources/permissions/permissions.ts +103 -34
- package/resources/qualifications/access.ts +27 -26
- package/resources/qualifications/exam.ts +188 -126
- package/resources/qualifications/qualifications.ts +370 -303
- package/resources/settings/banner.ts +14 -21
- package/resources/settings/config.ts +163 -79
- package/resources/settings/perms.ts +151 -0
- package/resources/settings/status.ts +533 -0
- package/resources/stats/stats.ts +3 -2
- package/resources/sync/activity.ts +24 -23
- package/resources/sync/data.ts +94 -26
- package/resources/timestamp/timestamp.ts +3 -2
- package/resources/{centrum/user_unit.ts → tracker/mapping.ts} +44 -44
- package/resources/userinfo/user_info.ts +464 -0
- package/resources/users/activity.ts +80 -85
- package/resources/users/labels.ts +18 -21
- package/resources/users/licenses.ts +9 -8
- package/resources/users/props.ts +61 -51
- package/resources/users/users.ts +100 -78
- package/resources/vehicles/activity.ts +231 -0
- package/resources/vehicles/props.ts +103 -0
- package/resources/vehicles/vehicles.ts +28 -15
- package/resources/wiki/access.ts +49 -48
- package/resources/wiki/activity.ts +133 -51
- package/resources/wiki/page.ts +134 -87
- package/services/auth/auth.client.ts +24 -27
- package/services/auth/auth.ts +222 -195
- package/services/calendar/calendar.client.ts +32 -91
- package/services/calendar/calendar.ts +110 -109
- package/services/centrum/centrum.client.ts +97 -137
- package/services/centrum/centrum.ts +701 -298
- package/services/citizens/citizens.client.ts +70 -39
- package/services/citizens/citizens.ts +183 -93
- package/services/completor/completor.client.ts +16 -35
- package/services/completor/completor.ts +65 -44
- package/services/documents/collab.client.ts +46 -0
- package/services/documents/collab.ts +13 -0
- package/services/documents/documents.client.ts +88 -217
- package/services/documents/documents.ts +490 -508
- package/services/filestore/filestore.client.ts +86 -0
- package/services/filestore/filestore.ts +262 -0
- package/services/jobs/conduct.client.ts +10 -25
- package/services/jobs/conduct.ts +36 -35
- package/services/jobs/jobs.client.ts +22 -61
- package/services/jobs/jobs.ts +108 -91
- package/services/jobs/timeclock.client.ts +8 -19
- package/services/jobs/timeclock.ts +47 -46
- package/services/livemap/livemap.client.ts +8 -19
- package/services/livemap/livemap.ts +290 -119
- package/services/mailer/mailer.client.ts +44 -127
- package/services/mailer/mailer.ts +213 -216
- package/services/notifications/notifications.client.ts +65 -0
- package/services/{notificator/notificator.ts → notifications/notifications.ts} +117 -74
- package/services/qualifications/qualifications.client.ts +46 -91
- package/services/qualifications/qualifications.ts +181 -175
- package/services/settings/accounts.client.ts +10 -25
- package/services/settings/accounts.ts +64 -41
- package/services/settings/config.client.ts +6 -13
- package/services/settings/config.ts +8 -7
- package/services/settings/cron.client.ts +4 -7
- package/services/settings/cron.ts +4 -3
- package/services/settings/laws.client.ts +10 -25
- package/services/settings/laws.ts +29 -28
- package/services/settings/settings.client.ts +57 -103
- package/services/settings/settings.ts +190 -607
- package/services/settings/system.client.ts +90 -0
- package/services/settings/system.ts +618 -0
- package/services/stats/stats.client.ts +4 -3
- package/services/stats/stats.ts +4 -3
- package/services/sync/sync.client.ts +16 -15
- package/services/sync/sync.ts +82 -52
- package/services/vehicles/vehicles.client.ts +17 -7
- package/services/vehicles/vehicles.ts +169 -24
- package/services/wiki/collab.client.ts +46 -0
- package/services/wiki/collab.ts +13 -0
- package/services/wiki/wiki.client.ts +28 -37
- package/services/wiki/wiki.ts +93 -63
- package/svcs.ts +79 -103
- package/resources/centrum/disponents.ts +0 -81
- package/resources/filestore/file.ts +0 -204
- package/resources/internet/access.ts +0 -358
- package/resources/internet/ads.ts +0 -257
- package/resources/internet/domain.ts +0 -328
- package/resources/internet/page.ts +0 -428
- package/resources/internet/search.ts +0 -128
- package/resources/livemap/tracker.ts +0 -81
- package/services/internet/ads.client.ts +0 -41
- package/services/internet/ads.ts +0 -145
- package/services/internet/domain.client.ts +0 -109
- package/services/internet/domain.ts +0 -658
- package/services/internet/internet.client.ts +0 -58
- package/services/internet/internet.ts +0 -268
- package/services/notificator/notificator.client.ts +0 -76
- package/services/settings/filestore.client.ts +0 -75
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
// @generated by protobuf-ts 2.11.1 with parameter force_server_none,long_type_number,optimize_speed,ts_nocheck
|
|
2
|
+
// @generated from protobuf file "resources/settings/perms.proto" (package "resources.settings", syntax proto3)
|
|
3
|
+
// tslint:disable
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
|
|
6
|
+
import type { IBinaryWriter } from "@protobuf-ts/runtime";
|
|
7
|
+
import { WireType } from "@protobuf-ts/runtime";
|
|
8
|
+
import type { BinaryReadOptions } from "@protobuf-ts/runtime";
|
|
9
|
+
import type { IBinaryReader } from "@protobuf-ts/runtime";
|
|
10
|
+
import { UnknownFieldHandler } from "@protobuf-ts/runtime";
|
|
11
|
+
import type { PartialMessage } from "@protobuf-ts/runtime";
|
|
12
|
+
import { reflectionMergePartial } from "@protobuf-ts/runtime";
|
|
13
|
+
import { MessageType } from "@protobuf-ts/runtime";
|
|
14
|
+
import { RoleAttribute } from "../permissions/attributes";
|
|
15
|
+
import { PermItem } from "../permissions/permissions";
|
|
16
|
+
/**
|
|
17
|
+
* @generated from protobuf message resources.settings.PermsUpdate
|
|
18
|
+
*/
|
|
19
|
+
export interface PermsUpdate {
|
|
20
|
+
/**
|
|
21
|
+
* @generated from protobuf field: repeated resources.permissions.PermItem to_update = 1
|
|
22
|
+
*/
|
|
23
|
+
toUpdate: PermItem[];
|
|
24
|
+
/**
|
|
25
|
+
* @generated from protobuf field: repeated resources.permissions.PermItem to_remove = 2
|
|
26
|
+
*/
|
|
27
|
+
toRemove: PermItem[];
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* @generated from protobuf message resources.settings.AttrsUpdate
|
|
31
|
+
*/
|
|
32
|
+
export interface AttrsUpdate {
|
|
33
|
+
/**
|
|
34
|
+
* @generated from protobuf field: repeated resources.permissions.RoleAttribute to_update = 1
|
|
35
|
+
*/
|
|
36
|
+
toUpdate: RoleAttribute[];
|
|
37
|
+
/**
|
|
38
|
+
* @generated from protobuf field: repeated resources.permissions.RoleAttribute to_remove = 2
|
|
39
|
+
*/
|
|
40
|
+
toRemove: RoleAttribute[];
|
|
41
|
+
}
|
|
42
|
+
// @generated message type with reflection information, may provide speed optimized methods
|
|
43
|
+
class PermsUpdate$Type extends MessageType<PermsUpdate> {
|
|
44
|
+
constructor() {
|
|
45
|
+
super("resources.settings.PermsUpdate", [
|
|
46
|
+
{ no: 1, name: "to_update", kind: "message", repeat: 2 /*RepeatType.UNPACKED*/, T: () => PermItem },
|
|
47
|
+
{ no: 2, name: "to_remove", kind: "message", repeat: 2 /*RepeatType.UNPACKED*/, T: () => PermItem }
|
|
48
|
+
]);
|
|
49
|
+
}
|
|
50
|
+
create(value?: PartialMessage<PermsUpdate>): PermsUpdate {
|
|
51
|
+
const message = globalThis.Object.create((this.messagePrototype!));
|
|
52
|
+
message.toUpdate = [];
|
|
53
|
+
message.toRemove = [];
|
|
54
|
+
if (value !== undefined)
|
|
55
|
+
reflectionMergePartial<PermsUpdate>(this, message, value);
|
|
56
|
+
return message;
|
|
57
|
+
}
|
|
58
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: PermsUpdate): PermsUpdate {
|
|
59
|
+
let message = target ?? this.create(), end = reader.pos + length;
|
|
60
|
+
while (reader.pos < end) {
|
|
61
|
+
let [fieldNo, wireType] = reader.tag();
|
|
62
|
+
switch (fieldNo) {
|
|
63
|
+
case /* repeated resources.permissions.PermItem to_update */ 1:
|
|
64
|
+
message.toUpdate.push(PermItem.internalBinaryRead(reader, reader.uint32(), options));
|
|
65
|
+
break;
|
|
66
|
+
case /* repeated resources.permissions.PermItem to_remove */ 2:
|
|
67
|
+
message.toRemove.push(PermItem.internalBinaryRead(reader, reader.uint32(), options));
|
|
68
|
+
break;
|
|
69
|
+
default:
|
|
70
|
+
let u = options.readUnknownField;
|
|
71
|
+
if (u === "throw")
|
|
72
|
+
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
73
|
+
let d = reader.skip(wireType);
|
|
74
|
+
if (u !== false)
|
|
75
|
+
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
return message;
|
|
79
|
+
}
|
|
80
|
+
internalBinaryWrite(message: PermsUpdate, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
81
|
+
/* repeated resources.permissions.PermItem to_update = 1; */
|
|
82
|
+
for (let i = 0; i < message.toUpdate.length; i++)
|
|
83
|
+
PermItem.internalBinaryWrite(message.toUpdate[i], writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
|
84
|
+
/* repeated resources.permissions.PermItem to_remove = 2; */
|
|
85
|
+
for (let i = 0; i < message.toRemove.length; i++)
|
|
86
|
+
PermItem.internalBinaryWrite(message.toRemove[i], writer.tag(2, WireType.LengthDelimited).fork(), options).join();
|
|
87
|
+
let u = options.writeUnknownFields;
|
|
88
|
+
if (u !== false)
|
|
89
|
+
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
90
|
+
return writer;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
/**
|
|
94
|
+
* @generated MessageType for protobuf message resources.settings.PermsUpdate
|
|
95
|
+
*/
|
|
96
|
+
export const PermsUpdate = new PermsUpdate$Type();
|
|
97
|
+
// @generated message type with reflection information, may provide speed optimized methods
|
|
98
|
+
class AttrsUpdate$Type extends MessageType<AttrsUpdate> {
|
|
99
|
+
constructor() {
|
|
100
|
+
super("resources.settings.AttrsUpdate", [
|
|
101
|
+
{ no: 1, name: "to_update", kind: "message", repeat: 2 /*RepeatType.UNPACKED*/, T: () => RoleAttribute },
|
|
102
|
+
{ no: 2, name: "to_remove", kind: "message", repeat: 2 /*RepeatType.UNPACKED*/, T: () => RoleAttribute }
|
|
103
|
+
]);
|
|
104
|
+
}
|
|
105
|
+
create(value?: PartialMessage<AttrsUpdate>): AttrsUpdate {
|
|
106
|
+
const message = globalThis.Object.create((this.messagePrototype!));
|
|
107
|
+
message.toUpdate = [];
|
|
108
|
+
message.toRemove = [];
|
|
109
|
+
if (value !== undefined)
|
|
110
|
+
reflectionMergePartial<AttrsUpdate>(this, message, value);
|
|
111
|
+
return message;
|
|
112
|
+
}
|
|
113
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AttrsUpdate): AttrsUpdate {
|
|
114
|
+
let message = target ?? this.create(), end = reader.pos + length;
|
|
115
|
+
while (reader.pos < end) {
|
|
116
|
+
let [fieldNo, wireType] = reader.tag();
|
|
117
|
+
switch (fieldNo) {
|
|
118
|
+
case /* repeated resources.permissions.RoleAttribute to_update */ 1:
|
|
119
|
+
message.toUpdate.push(RoleAttribute.internalBinaryRead(reader, reader.uint32(), options));
|
|
120
|
+
break;
|
|
121
|
+
case /* repeated resources.permissions.RoleAttribute to_remove */ 2:
|
|
122
|
+
message.toRemove.push(RoleAttribute.internalBinaryRead(reader, reader.uint32(), options));
|
|
123
|
+
break;
|
|
124
|
+
default:
|
|
125
|
+
let u = options.readUnknownField;
|
|
126
|
+
if (u === "throw")
|
|
127
|
+
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
128
|
+
let d = reader.skip(wireType);
|
|
129
|
+
if (u !== false)
|
|
130
|
+
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
return message;
|
|
134
|
+
}
|
|
135
|
+
internalBinaryWrite(message: AttrsUpdate, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
136
|
+
/* repeated resources.permissions.RoleAttribute to_update = 1; */
|
|
137
|
+
for (let i = 0; i < message.toUpdate.length; i++)
|
|
138
|
+
RoleAttribute.internalBinaryWrite(message.toUpdate[i], writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
|
139
|
+
/* repeated resources.permissions.RoleAttribute to_remove = 2; */
|
|
140
|
+
for (let i = 0; i < message.toRemove.length; i++)
|
|
141
|
+
RoleAttribute.internalBinaryWrite(message.toRemove[i], writer.tag(2, WireType.LengthDelimited).fork(), options).join();
|
|
142
|
+
let u = options.writeUnknownFields;
|
|
143
|
+
if (u !== false)
|
|
144
|
+
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
145
|
+
return writer;
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
/**
|
|
149
|
+
* @generated MessageType for protobuf message resources.settings.AttrsUpdate
|
|
150
|
+
*/
|
|
151
|
+
export const AttrsUpdate = new AttrsUpdate$Type();
|
|
@@ -0,0 +1,533 @@
|
|
|
1
|
+
// @generated by protobuf-ts 2.11.1 with parameter force_server_none,long_type_number,optimize_speed,ts_nocheck
|
|
2
|
+
// @generated from protobuf file "resources/settings/status.proto" (package "resources.settings", syntax proto3)
|
|
3
|
+
// tslint:disable
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
|
|
6
|
+
import type { IBinaryWriter } from "@protobuf-ts/runtime";
|
|
7
|
+
import { WireType } from "@protobuf-ts/runtime";
|
|
8
|
+
import type { BinaryReadOptions } from "@protobuf-ts/runtime";
|
|
9
|
+
import type { IBinaryReader } from "@protobuf-ts/runtime";
|
|
10
|
+
import { UnknownFieldHandler } from "@protobuf-ts/runtime";
|
|
11
|
+
import type { PartialMessage } from "@protobuf-ts/runtime";
|
|
12
|
+
import { reflectionMergePartial } from "@protobuf-ts/runtime";
|
|
13
|
+
import { MessageType } from "@protobuf-ts/runtime";
|
|
14
|
+
import { Timestamp } from "../timestamp/timestamp";
|
|
15
|
+
/**
|
|
16
|
+
* @generated from protobuf message resources.settings.SystemStatus
|
|
17
|
+
*/
|
|
18
|
+
export interface SystemStatus {
|
|
19
|
+
/**
|
|
20
|
+
* @generated from protobuf field: resources.settings.Database database = 1
|
|
21
|
+
*/
|
|
22
|
+
database?: Database;
|
|
23
|
+
/**
|
|
24
|
+
* @generated from protobuf field: resources.settings.Nats nats = 2
|
|
25
|
+
*/
|
|
26
|
+
nats?: Nats;
|
|
27
|
+
/**
|
|
28
|
+
* @generated from protobuf field: resources.settings.DBSyncStatus dbsync = 3
|
|
29
|
+
*/
|
|
30
|
+
dbsync?: DBSyncStatus;
|
|
31
|
+
/**
|
|
32
|
+
* @generated from protobuf field: resources.settings.VersionStatus version = 4
|
|
33
|
+
*/
|
|
34
|
+
version?: VersionStatus;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* @generated from protobuf message resources.settings.Nats
|
|
38
|
+
*/
|
|
39
|
+
export interface Nats {
|
|
40
|
+
/**
|
|
41
|
+
* @generated from protobuf field: string version = 1
|
|
42
|
+
*/
|
|
43
|
+
version: string;
|
|
44
|
+
/**
|
|
45
|
+
* @generated from protobuf field: bool connected = 2
|
|
46
|
+
*/
|
|
47
|
+
connected: boolean;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* @generated from protobuf message resources.settings.Database
|
|
51
|
+
*/
|
|
52
|
+
export interface Database {
|
|
53
|
+
/**
|
|
54
|
+
* @generated from protobuf field: string version = 1
|
|
55
|
+
*/
|
|
56
|
+
version: string;
|
|
57
|
+
/**
|
|
58
|
+
* @generated from protobuf field: bool connected = 2
|
|
59
|
+
*/
|
|
60
|
+
connected: boolean;
|
|
61
|
+
/**
|
|
62
|
+
* @generated from protobuf field: uint64 migration_version = 3
|
|
63
|
+
*/
|
|
64
|
+
migrationVersion: number;
|
|
65
|
+
/**
|
|
66
|
+
* @generated from protobuf field: bool migration_dirty = 4
|
|
67
|
+
*/
|
|
68
|
+
migrationDirty: boolean;
|
|
69
|
+
/**
|
|
70
|
+
* @generated from protobuf field: string db_charset = 5
|
|
71
|
+
*/
|
|
72
|
+
dbCharset: string;
|
|
73
|
+
/**
|
|
74
|
+
* @generated from protobuf field: string db_collation = 6
|
|
75
|
+
*/
|
|
76
|
+
dbCollation: string;
|
|
77
|
+
/**
|
|
78
|
+
* @generated from protobuf field: bool tables_ok = 7
|
|
79
|
+
*/
|
|
80
|
+
tablesOk: boolean;
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* @generated from protobuf message resources.settings.DBSyncStatus
|
|
84
|
+
*/
|
|
85
|
+
export interface DBSyncStatus {
|
|
86
|
+
/**
|
|
87
|
+
* @generated from protobuf field: bool enabled = 1
|
|
88
|
+
*/
|
|
89
|
+
enabled: boolean;
|
|
90
|
+
/**
|
|
91
|
+
* @generated from protobuf field: optional resources.timestamp.Timestamp last_synced_data = 2
|
|
92
|
+
*/
|
|
93
|
+
lastSyncedData?: Timestamp;
|
|
94
|
+
/**
|
|
95
|
+
* @generated from protobuf field: optional resources.timestamp.Timestamp last_synced_activity = 3
|
|
96
|
+
*/
|
|
97
|
+
lastSyncedActivity?: Timestamp;
|
|
98
|
+
/**
|
|
99
|
+
* @generated from protobuf field: optional string last_dbsync_version = 4
|
|
100
|
+
*/
|
|
101
|
+
lastDbsyncVersion?: string;
|
|
102
|
+
}
|
|
103
|
+
/**
|
|
104
|
+
* @generated from protobuf message resources.settings.VersionStatus
|
|
105
|
+
*/
|
|
106
|
+
export interface VersionStatus {
|
|
107
|
+
/**
|
|
108
|
+
* @generated from protobuf field: string current = 1
|
|
109
|
+
*/
|
|
110
|
+
current: string;
|
|
111
|
+
/**
|
|
112
|
+
* @generated from protobuf field: optional resources.settings.NewVersionInfo new_version = 2
|
|
113
|
+
*/
|
|
114
|
+
newVersion?: NewVersionInfo;
|
|
115
|
+
}
|
|
116
|
+
/**
|
|
117
|
+
* @generated from protobuf message resources.settings.NewVersionInfo
|
|
118
|
+
*/
|
|
119
|
+
export interface NewVersionInfo {
|
|
120
|
+
/**
|
|
121
|
+
* @generated from protobuf field: string version = 1
|
|
122
|
+
*/
|
|
123
|
+
version: string;
|
|
124
|
+
/**
|
|
125
|
+
* @generated from protobuf field: string url = 2
|
|
126
|
+
*/
|
|
127
|
+
url: string;
|
|
128
|
+
/**
|
|
129
|
+
* @generated from protobuf field: optional resources.timestamp.Timestamp release_date = 3
|
|
130
|
+
*/
|
|
131
|
+
releaseDate?: Timestamp;
|
|
132
|
+
}
|
|
133
|
+
// @generated message type with reflection information, may provide speed optimized methods
|
|
134
|
+
class SystemStatus$Type extends MessageType<SystemStatus> {
|
|
135
|
+
constructor() {
|
|
136
|
+
super("resources.settings.SystemStatus", [
|
|
137
|
+
{ no: 1, name: "database", kind: "message", T: () => Database },
|
|
138
|
+
{ no: 2, name: "nats", kind: "message", T: () => Nats },
|
|
139
|
+
{ no: 3, name: "dbsync", kind: "message", T: () => DBSyncStatus },
|
|
140
|
+
{ no: 4, name: "version", kind: "message", T: () => VersionStatus }
|
|
141
|
+
]);
|
|
142
|
+
}
|
|
143
|
+
create(value?: PartialMessage<SystemStatus>): SystemStatus {
|
|
144
|
+
const message = globalThis.Object.create((this.messagePrototype!));
|
|
145
|
+
if (value !== undefined)
|
|
146
|
+
reflectionMergePartial<SystemStatus>(this, message, value);
|
|
147
|
+
return message;
|
|
148
|
+
}
|
|
149
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: SystemStatus): SystemStatus {
|
|
150
|
+
let message = target ?? this.create(), end = reader.pos + length;
|
|
151
|
+
while (reader.pos < end) {
|
|
152
|
+
let [fieldNo, wireType] = reader.tag();
|
|
153
|
+
switch (fieldNo) {
|
|
154
|
+
case /* resources.settings.Database database */ 1:
|
|
155
|
+
message.database = Database.internalBinaryRead(reader, reader.uint32(), options, message.database);
|
|
156
|
+
break;
|
|
157
|
+
case /* resources.settings.Nats nats */ 2:
|
|
158
|
+
message.nats = Nats.internalBinaryRead(reader, reader.uint32(), options, message.nats);
|
|
159
|
+
break;
|
|
160
|
+
case /* resources.settings.DBSyncStatus dbsync */ 3:
|
|
161
|
+
message.dbsync = DBSyncStatus.internalBinaryRead(reader, reader.uint32(), options, message.dbsync);
|
|
162
|
+
break;
|
|
163
|
+
case /* resources.settings.VersionStatus version */ 4:
|
|
164
|
+
message.version = VersionStatus.internalBinaryRead(reader, reader.uint32(), options, message.version);
|
|
165
|
+
break;
|
|
166
|
+
default:
|
|
167
|
+
let u = options.readUnknownField;
|
|
168
|
+
if (u === "throw")
|
|
169
|
+
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
170
|
+
let d = reader.skip(wireType);
|
|
171
|
+
if (u !== false)
|
|
172
|
+
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
return message;
|
|
176
|
+
}
|
|
177
|
+
internalBinaryWrite(message: SystemStatus, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
178
|
+
/* resources.settings.Database database = 1; */
|
|
179
|
+
if (message.database)
|
|
180
|
+
Database.internalBinaryWrite(message.database, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
|
181
|
+
/* resources.settings.Nats nats = 2; */
|
|
182
|
+
if (message.nats)
|
|
183
|
+
Nats.internalBinaryWrite(message.nats, writer.tag(2, WireType.LengthDelimited).fork(), options).join();
|
|
184
|
+
/* resources.settings.DBSyncStatus dbsync = 3; */
|
|
185
|
+
if (message.dbsync)
|
|
186
|
+
DBSyncStatus.internalBinaryWrite(message.dbsync, writer.tag(3, WireType.LengthDelimited).fork(), options).join();
|
|
187
|
+
/* resources.settings.VersionStatus version = 4; */
|
|
188
|
+
if (message.version)
|
|
189
|
+
VersionStatus.internalBinaryWrite(message.version, writer.tag(4, WireType.LengthDelimited).fork(), options).join();
|
|
190
|
+
let u = options.writeUnknownFields;
|
|
191
|
+
if (u !== false)
|
|
192
|
+
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
193
|
+
return writer;
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
/**
|
|
197
|
+
* @generated MessageType for protobuf message resources.settings.SystemStatus
|
|
198
|
+
*/
|
|
199
|
+
export const SystemStatus = new SystemStatus$Type();
|
|
200
|
+
// @generated message type with reflection information, may provide speed optimized methods
|
|
201
|
+
class Nats$Type extends MessageType<Nats> {
|
|
202
|
+
constructor() {
|
|
203
|
+
super("resources.settings.Nats", [
|
|
204
|
+
{ no: 1, name: "version", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "buf.validate.field": { string: { maxLen: "32" } } } },
|
|
205
|
+
{ no: 2, name: "connected", kind: "scalar", T: 8 /*ScalarType.BOOL*/ }
|
|
206
|
+
]);
|
|
207
|
+
}
|
|
208
|
+
create(value?: PartialMessage<Nats>): Nats {
|
|
209
|
+
const message = globalThis.Object.create((this.messagePrototype!));
|
|
210
|
+
message.version = "";
|
|
211
|
+
message.connected = false;
|
|
212
|
+
if (value !== undefined)
|
|
213
|
+
reflectionMergePartial<Nats>(this, message, value);
|
|
214
|
+
return message;
|
|
215
|
+
}
|
|
216
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Nats): Nats {
|
|
217
|
+
let message = target ?? this.create(), end = reader.pos + length;
|
|
218
|
+
while (reader.pos < end) {
|
|
219
|
+
let [fieldNo, wireType] = reader.tag();
|
|
220
|
+
switch (fieldNo) {
|
|
221
|
+
case /* string version */ 1:
|
|
222
|
+
message.version = reader.string();
|
|
223
|
+
break;
|
|
224
|
+
case /* bool connected */ 2:
|
|
225
|
+
message.connected = reader.bool();
|
|
226
|
+
break;
|
|
227
|
+
default:
|
|
228
|
+
let u = options.readUnknownField;
|
|
229
|
+
if (u === "throw")
|
|
230
|
+
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
231
|
+
let d = reader.skip(wireType);
|
|
232
|
+
if (u !== false)
|
|
233
|
+
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
return message;
|
|
237
|
+
}
|
|
238
|
+
internalBinaryWrite(message: Nats, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
239
|
+
/* string version = 1; */
|
|
240
|
+
if (message.version !== "")
|
|
241
|
+
writer.tag(1, WireType.LengthDelimited).string(message.version);
|
|
242
|
+
/* bool connected = 2; */
|
|
243
|
+
if (message.connected !== false)
|
|
244
|
+
writer.tag(2, WireType.Varint).bool(message.connected);
|
|
245
|
+
let u = options.writeUnknownFields;
|
|
246
|
+
if (u !== false)
|
|
247
|
+
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
248
|
+
return writer;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
/**
|
|
252
|
+
* @generated MessageType for protobuf message resources.settings.Nats
|
|
253
|
+
*/
|
|
254
|
+
export const Nats = new Nats$Type();
|
|
255
|
+
// @generated message type with reflection information, may provide speed optimized methods
|
|
256
|
+
class Database$Type extends MessageType<Database> {
|
|
257
|
+
constructor() {
|
|
258
|
+
super("resources.settings.Database", [
|
|
259
|
+
{ no: 1, name: "version", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "buf.validate.field": { string: { maxLen: "32" } } } },
|
|
260
|
+
{ no: 2, name: "connected", kind: "scalar", T: 8 /*ScalarType.BOOL*/ },
|
|
261
|
+
{ no: 3, name: "migration_version", kind: "scalar", T: 4 /*ScalarType.UINT64*/, L: 2 /*LongType.NUMBER*/ },
|
|
262
|
+
{ no: 4, name: "migration_dirty", kind: "scalar", T: 8 /*ScalarType.BOOL*/ },
|
|
263
|
+
{ no: 5, name: "db_charset", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "buf.validate.field": { string: { maxLen: "32" } } } },
|
|
264
|
+
{ no: 6, name: "db_collation", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "buf.validate.field": { string: { maxLen: "32" } } } },
|
|
265
|
+
{ no: 7, name: "tables_ok", kind: "scalar", T: 8 /*ScalarType.BOOL*/ }
|
|
266
|
+
]);
|
|
267
|
+
}
|
|
268
|
+
create(value?: PartialMessage<Database>): Database {
|
|
269
|
+
const message = globalThis.Object.create((this.messagePrototype!));
|
|
270
|
+
message.version = "";
|
|
271
|
+
message.connected = false;
|
|
272
|
+
message.migrationVersion = 0;
|
|
273
|
+
message.migrationDirty = false;
|
|
274
|
+
message.dbCharset = "";
|
|
275
|
+
message.dbCollation = "";
|
|
276
|
+
message.tablesOk = false;
|
|
277
|
+
if (value !== undefined)
|
|
278
|
+
reflectionMergePartial<Database>(this, message, value);
|
|
279
|
+
return message;
|
|
280
|
+
}
|
|
281
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Database): Database {
|
|
282
|
+
let message = target ?? this.create(), end = reader.pos + length;
|
|
283
|
+
while (reader.pos < end) {
|
|
284
|
+
let [fieldNo, wireType] = reader.tag();
|
|
285
|
+
switch (fieldNo) {
|
|
286
|
+
case /* string version */ 1:
|
|
287
|
+
message.version = reader.string();
|
|
288
|
+
break;
|
|
289
|
+
case /* bool connected */ 2:
|
|
290
|
+
message.connected = reader.bool();
|
|
291
|
+
break;
|
|
292
|
+
case /* uint64 migration_version */ 3:
|
|
293
|
+
message.migrationVersion = reader.uint64().toNumber();
|
|
294
|
+
break;
|
|
295
|
+
case /* bool migration_dirty */ 4:
|
|
296
|
+
message.migrationDirty = reader.bool();
|
|
297
|
+
break;
|
|
298
|
+
case /* string db_charset */ 5:
|
|
299
|
+
message.dbCharset = reader.string();
|
|
300
|
+
break;
|
|
301
|
+
case /* string db_collation */ 6:
|
|
302
|
+
message.dbCollation = reader.string();
|
|
303
|
+
break;
|
|
304
|
+
case /* bool tables_ok */ 7:
|
|
305
|
+
message.tablesOk = reader.bool();
|
|
306
|
+
break;
|
|
307
|
+
default:
|
|
308
|
+
let u = options.readUnknownField;
|
|
309
|
+
if (u === "throw")
|
|
310
|
+
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
311
|
+
let d = reader.skip(wireType);
|
|
312
|
+
if (u !== false)
|
|
313
|
+
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
return message;
|
|
317
|
+
}
|
|
318
|
+
internalBinaryWrite(message: Database, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
319
|
+
/* string version = 1; */
|
|
320
|
+
if (message.version !== "")
|
|
321
|
+
writer.tag(1, WireType.LengthDelimited).string(message.version);
|
|
322
|
+
/* bool connected = 2; */
|
|
323
|
+
if (message.connected !== false)
|
|
324
|
+
writer.tag(2, WireType.Varint).bool(message.connected);
|
|
325
|
+
/* uint64 migration_version = 3; */
|
|
326
|
+
if (message.migrationVersion !== 0)
|
|
327
|
+
writer.tag(3, WireType.Varint).uint64(message.migrationVersion);
|
|
328
|
+
/* bool migration_dirty = 4; */
|
|
329
|
+
if (message.migrationDirty !== false)
|
|
330
|
+
writer.tag(4, WireType.Varint).bool(message.migrationDirty);
|
|
331
|
+
/* string db_charset = 5; */
|
|
332
|
+
if (message.dbCharset !== "")
|
|
333
|
+
writer.tag(5, WireType.LengthDelimited).string(message.dbCharset);
|
|
334
|
+
/* string db_collation = 6; */
|
|
335
|
+
if (message.dbCollation !== "")
|
|
336
|
+
writer.tag(6, WireType.LengthDelimited).string(message.dbCollation);
|
|
337
|
+
/* bool tables_ok = 7; */
|
|
338
|
+
if (message.tablesOk !== false)
|
|
339
|
+
writer.tag(7, WireType.Varint).bool(message.tablesOk);
|
|
340
|
+
let u = options.writeUnknownFields;
|
|
341
|
+
if (u !== false)
|
|
342
|
+
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
343
|
+
return writer;
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
/**
|
|
347
|
+
* @generated MessageType for protobuf message resources.settings.Database
|
|
348
|
+
*/
|
|
349
|
+
export const Database = new Database$Type();
|
|
350
|
+
// @generated message type with reflection information, may provide speed optimized methods
|
|
351
|
+
class DBSyncStatus$Type extends MessageType<DBSyncStatus> {
|
|
352
|
+
constructor() {
|
|
353
|
+
super("resources.settings.DBSyncStatus", [
|
|
354
|
+
{ no: 1, name: "enabled", kind: "scalar", T: 8 /*ScalarType.BOOL*/ },
|
|
355
|
+
{ no: 2, name: "last_synced_data", kind: "message", T: () => Timestamp },
|
|
356
|
+
{ no: 3, name: "last_synced_activity", kind: "message", T: () => Timestamp },
|
|
357
|
+
{ no: 4, name: "last_dbsync_version", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/, options: { "buf.validate.field": { string: { maxLen: "32" } } } }
|
|
358
|
+
]);
|
|
359
|
+
}
|
|
360
|
+
create(value?: PartialMessage<DBSyncStatus>): DBSyncStatus {
|
|
361
|
+
const message = globalThis.Object.create((this.messagePrototype!));
|
|
362
|
+
message.enabled = false;
|
|
363
|
+
if (value !== undefined)
|
|
364
|
+
reflectionMergePartial<DBSyncStatus>(this, message, value);
|
|
365
|
+
return message;
|
|
366
|
+
}
|
|
367
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DBSyncStatus): DBSyncStatus {
|
|
368
|
+
let message = target ?? this.create(), end = reader.pos + length;
|
|
369
|
+
while (reader.pos < end) {
|
|
370
|
+
let [fieldNo, wireType] = reader.tag();
|
|
371
|
+
switch (fieldNo) {
|
|
372
|
+
case /* bool enabled */ 1:
|
|
373
|
+
message.enabled = reader.bool();
|
|
374
|
+
break;
|
|
375
|
+
case /* optional resources.timestamp.Timestamp last_synced_data */ 2:
|
|
376
|
+
message.lastSyncedData = Timestamp.internalBinaryRead(reader, reader.uint32(), options, message.lastSyncedData);
|
|
377
|
+
break;
|
|
378
|
+
case /* optional resources.timestamp.Timestamp last_synced_activity */ 3:
|
|
379
|
+
message.lastSyncedActivity = Timestamp.internalBinaryRead(reader, reader.uint32(), options, message.lastSyncedActivity);
|
|
380
|
+
break;
|
|
381
|
+
case /* optional string last_dbsync_version */ 4:
|
|
382
|
+
message.lastDbsyncVersion = reader.string();
|
|
383
|
+
break;
|
|
384
|
+
default:
|
|
385
|
+
let u = options.readUnknownField;
|
|
386
|
+
if (u === "throw")
|
|
387
|
+
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
388
|
+
let d = reader.skip(wireType);
|
|
389
|
+
if (u !== false)
|
|
390
|
+
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
391
|
+
}
|
|
392
|
+
}
|
|
393
|
+
return message;
|
|
394
|
+
}
|
|
395
|
+
internalBinaryWrite(message: DBSyncStatus, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
396
|
+
/* bool enabled = 1; */
|
|
397
|
+
if (message.enabled !== false)
|
|
398
|
+
writer.tag(1, WireType.Varint).bool(message.enabled);
|
|
399
|
+
/* optional resources.timestamp.Timestamp last_synced_data = 2; */
|
|
400
|
+
if (message.lastSyncedData)
|
|
401
|
+
Timestamp.internalBinaryWrite(message.lastSyncedData, writer.tag(2, WireType.LengthDelimited).fork(), options).join();
|
|
402
|
+
/* optional resources.timestamp.Timestamp last_synced_activity = 3; */
|
|
403
|
+
if (message.lastSyncedActivity)
|
|
404
|
+
Timestamp.internalBinaryWrite(message.lastSyncedActivity, writer.tag(3, WireType.LengthDelimited).fork(), options).join();
|
|
405
|
+
/* optional string last_dbsync_version = 4; */
|
|
406
|
+
if (message.lastDbsyncVersion !== undefined)
|
|
407
|
+
writer.tag(4, WireType.LengthDelimited).string(message.lastDbsyncVersion);
|
|
408
|
+
let u = options.writeUnknownFields;
|
|
409
|
+
if (u !== false)
|
|
410
|
+
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
411
|
+
return writer;
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
/**
|
|
415
|
+
* @generated MessageType for protobuf message resources.settings.DBSyncStatus
|
|
416
|
+
*/
|
|
417
|
+
export const DBSyncStatus = new DBSyncStatus$Type();
|
|
418
|
+
// @generated message type with reflection information, may provide speed optimized methods
|
|
419
|
+
class VersionStatus$Type extends MessageType<VersionStatus> {
|
|
420
|
+
constructor() {
|
|
421
|
+
super("resources.settings.VersionStatus", [
|
|
422
|
+
{ no: 1, name: "current", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "buf.validate.field": { string: { maxLen: "32" } } } },
|
|
423
|
+
{ no: 2, name: "new_version", kind: "message", T: () => NewVersionInfo }
|
|
424
|
+
]);
|
|
425
|
+
}
|
|
426
|
+
create(value?: PartialMessage<VersionStatus>): VersionStatus {
|
|
427
|
+
const message = globalThis.Object.create((this.messagePrototype!));
|
|
428
|
+
message.current = "";
|
|
429
|
+
if (value !== undefined)
|
|
430
|
+
reflectionMergePartial<VersionStatus>(this, message, value);
|
|
431
|
+
return message;
|
|
432
|
+
}
|
|
433
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: VersionStatus): VersionStatus {
|
|
434
|
+
let message = target ?? this.create(), end = reader.pos + length;
|
|
435
|
+
while (reader.pos < end) {
|
|
436
|
+
let [fieldNo, wireType] = reader.tag();
|
|
437
|
+
switch (fieldNo) {
|
|
438
|
+
case /* string current */ 1:
|
|
439
|
+
message.current = reader.string();
|
|
440
|
+
break;
|
|
441
|
+
case /* optional resources.settings.NewVersionInfo new_version */ 2:
|
|
442
|
+
message.newVersion = NewVersionInfo.internalBinaryRead(reader, reader.uint32(), options, message.newVersion);
|
|
443
|
+
break;
|
|
444
|
+
default:
|
|
445
|
+
let u = options.readUnknownField;
|
|
446
|
+
if (u === "throw")
|
|
447
|
+
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
448
|
+
let d = reader.skip(wireType);
|
|
449
|
+
if (u !== false)
|
|
450
|
+
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
451
|
+
}
|
|
452
|
+
}
|
|
453
|
+
return message;
|
|
454
|
+
}
|
|
455
|
+
internalBinaryWrite(message: VersionStatus, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
456
|
+
/* string current = 1; */
|
|
457
|
+
if (message.current !== "")
|
|
458
|
+
writer.tag(1, WireType.LengthDelimited).string(message.current);
|
|
459
|
+
/* optional resources.settings.NewVersionInfo new_version = 2; */
|
|
460
|
+
if (message.newVersion)
|
|
461
|
+
NewVersionInfo.internalBinaryWrite(message.newVersion, writer.tag(2, WireType.LengthDelimited).fork(), options).join();
|
|
462
|
+
let u = options.writeUnknownFields;
|
|
463
|
+
if (u !== false)
|
|
464
|
+
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
465
|
+
return writer;
|
|
466
|
+
}
|
|
467
|
+
}
|
|
468
|
+
/**
|
|
469
|
+
* @generated MessageType for protobuf message resources.settings.VersionStatus
|
|
470
|
+
*/
|
|
471
|
+
export const VersionStatus = new VersionStatus$Type();
|
|
472
|
+
// @generated message type with reflection information, may provide speed optimized methods
|
|
473
|
+
class NewVersionInfo$Type extends MessageType<NewVersionInfo> {
|
|
474
|
+
constructor() {
|
|
475
|
+
super("resources.settings.NewVersionInfo", [
|
|
476
|
+
{ no: 1, name: "version", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "buf.validate.field": { string: { maxLen: "32" } } } },
|
|
477
|
+
{ no: 2, name: "url", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "buf.validate.field": { string: { maxLen: "256" } } } },
|
|
478
|
+
{ no: 3, name: "release_date", kind: "message", T: () => Timestamp }
|
|
479
|
+
]);
|
|
480
|
+
}
|
|
481
|
+
create(value?: PartialMessage<NewVersionInfo>): NewVersionInfo {
|
|
482
|
+
const message = globalThis.Object.create((this.messagePrototype!));
|
|
483
|
+
message.version = "";
|
|
484
|
+
message.url = "";
|
|
485
|
+
if (value !== undefined)
|
|
486
|
+
reflectionMergePartial<NewVersionInfo>(this, message, value);
|
|
487
|
+
return message;
|
|
488
|
+
}
|
|
489
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: NewVersionInfo): NewVersionInfo {
|
|
490
|
+
let message = target ?? this.create(), end = reader.pos + length;
|
|
491
|
+
while (reader.pos < end) {
|
|
492
|
+
let [fieldNo, wireType] = reader.tag();
|
|
493
|
+
switch (fieldNo) {
|
|
494
|
+
case /* string version */ 1:
|
|
495
|
+
message.version = reader.string();
|
|
496
|
+
break;
|
|
497
|
+
case /* string url */ 2:
|
|
498
|
+
message.url = reader.string();
|
|
499
|
+
break;
|
|
500
|
+
case /* optional resources.timestamp.Timestamp release_date */ 3:
|
|
501
|
+
message.releaseDate = Timestamp.internalBinaryRead(reader, reader.uint32(), options, message.releaseDate);
|
|
502
|
+
break;
|
|
503
|
+
default:
|
|
504
|
+
let u = options.readUnknownField;
|
|
505
|
+
if (u === "throw")
|
|
506
|
+
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
507
|
+
let d = reader.skip(wireType);
|
|
508
|
+
if (u !== false)
|
|
509
|
+
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
510
|
+
}
|
|
511
|
+
}
|
|
512
|
+
return message;
|
|
513
|
+
}
|
|
514
|
+
internalBinaryWrite(message: NewVersionInfo, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
515
|
+
/* string version = 1; */
|
|
516
|
+
if (message.version !== "")
|
|
517
|
+
writer.tag(1, WireType.LengthDelimited).string(message.version);
|
|
518
|
+
/* string url = 2; */
|
|
519
|
+
if (message.url !== "")
|
|
520
|
+
writer.tag(2, WireType.LengthDelimited).string(message.url);
|
|
521
|
+
/* optional resources.timestamp.Timestamp release_date = 3; */
|
|
522
|
+
if (message.releaseDate)
|
|
523
|
+
Timestamp.internalBinaryWrite(message.releaseDate, writer.tag(3, WireType.LengthDelimited).fork(), options).join();
|
|
524
|
+
let u = options.writeUnknownFields;
|
|
525
|
+
if (u !== false)
|
|
526
|
+
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
527
|
+
return writer;
|
|
528
|
+
}
|
|
529
|
+
}
|
|
530
|
+
/**
|
|
531
|
+
* @generated MessageType for protobuf message resources.settings.NewVersionInfo
|
|
532
|
+
*/
|
|
533
|
+
export const NewVersionInfo = new NewVersionInfo$Type();
|