@fivenet-app/gen 2025.5.3 → 2026.3.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.
- package/README.md +1 -1
- package/buf/validate/validate.ts +11301 -0
- package/clients.ts +193 -154
- package/codegen/dbscanner/dbscanner.ts +91 -0
- package/codegen/perms/perms.ts +287 -0
- package/codegen/sanitizer/sanitizer.ts +113 -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 +217 -160
- package/resources/accounts/accounts.ts +115 -47
- package/resources/accounts/{oauth2.ts → oauth2/oauth2.ts} +33 -32
- package/resources/audit/audit.ts +172 -53
- package/resources/calendar/{access.ts → access/access.ts} +72 -71
- package/resources/calendar/calendar.ts +79 -543
- package/resources/calendar/entries/entries.ts +474 -0
- package/resources/centrum/access/access.ts +345 -0
- package/resources/centrum/dispatchers/dispatchers.ts +149 -0
- package/resources/centrum/{dispatches.ts → dispatches/dispatches.ts} +267 -164
- package/resources/centrum/joblist.ts +136 -0
- package/resources/centrum/settings/settings.ts +657 -0
- package/resources/centrum/{units_access.ts → units/access/access.ts} +78 -79
- package/resources/centrum/{units.ts → units/units.ts} +230 -130
- package/resources/clientconfig/clientconfig.ts +1015 -0
- package/resources/collab/collab.ts +805 -0
- package/resources/common/content/content.ts +169 -63
- package/resources/common/content/diff_activity.ts +267 -0
- package/resources/common/database/database.ts +92 -35
- package/resources/common/error.ts +17 -16
- 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/cron → cron}/cron.ts +77 -65
- package/resources/discord/discord.ts +209 -0
- package/resources/documents/{access.ts → access/access.ts} +75 -76
- package/resources/documents/{activity.ts → activity/activity.ts} +349 -124
- package/resources/documents/approval/approval.ts +945 -0
- package/resources/documents/{category.ts → category/category.ts} +25 -32
- package/resources/documents/{comment.ts → comment/comment.ts} +35 -34
- package/resources/documents/data/data.ts +303 -0
- package/resources/documents/documents.ts +374 -686
- package/resources/{common/uuid.ts → documents/forms/forms.ts} +22 -21
- package/resources/documents/pins/pins.ts +127 -0
- package/resources/documents/references/references.ts +187 -0
- package/resources/documents/relations/relations.ts +184 -0
- package/resources/documents/{requests.ts → requests/requests.ts} +45 -44
- package/resources/documents/stamps/stamp.ts +355 -0
- package/resources/documents/{templates.ts → templates/templates.ts} +524 -199
- package/resources/documents/workflow/workflow.ts +600 -0
- 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/{common/grpcws → grpcws}/grpcws.ts +66 -65
- package/resources/jobs/{activity.ts → colleagues/activity/activity.ts} +83 -86
- package/resources/jobs/{colleagues.ts → colleagues/colleagues.ts} +76 -80
- package/resources/jobs/{conduct.ts → conduct/conduct.ts} +86 -62
- package/resources/jobs/jobs.ts +14 -13
- package/resources/jobs/{labels.ts → labels/labels.ts} +36 -37
- package/resources/jobs/{job_props.ts → props/props.ts} +63 -65
- package/resources/jobs/{job_settings.ts → settings/settings.ts} +89 -96
- package/resources/jobs/{timeclock.ts → timeclock/timeclock.ts} +42 -41
- package/resources/laws/laws.ts +40 -49
- package/resources/livemap/coords.ts +81 -0
- package/resources/livemap/heatmap/heatmap.ts +93 -0
- package/resources/livemap/{livemap.ts → markers/marker_marker.ts} +68 -335
- package/resources/livemap/markers/user_marker.ts +377 -0
- package/resources/mailer/{access.ts → access/access.ts} +119 -118
- package/resources/mailer/{email.ts → emails/email.ts} +38 -41
- package/resources/mailer/{events.ts → events/events.ts} +44 -43
- package/resources/mailer/{message.ts → messages/message.ts} +69 -74
- package/resources/mailer/{settings.ts → settings/settings.ts} +23 -25
- package/resources/mailer/{template.ts → templates/template.ts} +37 -40
- package/resources/mailer/{thread.ts → threads/thread.ts} +93 -94
- package/resources/notifications/clientview/clientview.ts +239 -0
- package/resources/notifications/{events.ts → events/events.ts} +67 -130
- package/resources/notifications/notifications.ts +55 -60
- package/resources/permissions/{attributes.ts → attributes/attributes.ts} +94 -237
- package/resources/permissions/events/events.ts +149 -0
- package/resources/permissions/{permissions.ts → permissions/permissions.ts} +127 -47
- package/resources/qualifications/{access.ts → access/access.ts} +43 -42
- package/resources/qualifications/{exam.ts → exam/exam.ts} +419 -229
- package/resources/qualifications/qualifications.ts +327 -388
- package/resources/settings/banner.ts +14 -21
- package/resources/settings/config.ts +663 -79
- package/resources/settings/data.ts +90 -0
- package/resources/settings/perms.ts +151 -0
- package/resources/settings/status.ts +533 -0
- package/resources/stats/stats.ts +382 -2
- package/resources/sync/{activity.ts → activity/activity.ts} +126 -46
- package/resources/sync/data/data.ts +1001 -0
- package/resources/sync/data/v2/data.ts +220 -0
- package/resources/timestamp/timestamp.ts +3 -2
- package/resources/{centrum/user_unit.ts → tracker/mapping.ts} +44 -44
- package/resources/userinfo/userinfo.ts +442 -0
- package/resources/users/{activity.ts → activity/activity.ts} +182 -166
- package/resources/users/{labels.ts → labels/labels.ts} +27 -30
- package/resources/users/{licenses.ts → licenses/licenses.ts} +18 -17
- package/resources/users/{props.ts → props/props.ts} +109 -77
- package/resources/users/short/user.ts +184 -0
- package/resources/users/user.ts +528 -0
- package/resources/vehicles/activity/activity.ts +231 -0
- package/resources/vehicles/props/props.ts +125 -0
- package/resources/vehicles/vehicles.ts +43 -18
- package/resources/wiki/{access.ts → access/access.ts} +72 -71
- package/resources/wiki/{activity.ts → activity/activity.ts} +218 -102
- package/resources/wiki/page.ts +164 -93
- package/services/auth/auth.client.ts +45 -35
- package/services/auth/auth.ts +498 -288
- package/services/calendar/calendar.client.ts +32 -91
- package/services/calendar/calendar.ts +157 -134
- package/services/centrum/centrum.client.ts +97 -137
- package/services/centrum/centrum.ts +755 -352
- package/services/citizens/citizens.client.ts +70 -39
- package/services/citizens/citizens.ts +226 -112
- package/services/completor/completor.client.ts +16 -35
- package/services/completor/completor.ts +95 -54
- package/services/documents/approval.client.ts +188 -0
- package/services/documents/approval.ts +1776 -0
- 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 +579 -619
- package/services/documents/forms.client.ts +51 -0
- package/services/documents/forms.ts +232 -0
- package/services/documents/stamps.client.ts +77 -0
- package/services/documents/stamps.ts +481 -0
- package/services/documents/stats.client.ts +38 -0
- package/services/documents/stats.ts +245 -0
- package/services/filestore/filestore.client.ts +86 -0
- package/services/filestore/filestore.ts +262 -0
- package/services/jobs/conduct.client.ts +40 -28
- package/services/jobs/conduct.ts +183 -56
- package/services/jobs/jobs.client.ts +22 -61
- package/services/jobs/jobs.ts +138 -121
- package/services/jobs/stats.client.ts +38 -0
- package/services/jobs/stats.ts +207 -0
- package/services/jobs/timeclock.client.ts +8 -19
- package/services/jobs/timeclock.ts +76 -75
- package/services/livemap/livemap.client.ts +8 -19
- package/services/livemap/livemap.ts +297 -126
- package/services/mailer/mailer.client.ts +44 -127
- package/services/mailer/mailer.ts +266 -269
- package/services/notifications/notifications.client.ts +65 -0
- package/services/{notificator/notificator.ts → notifications/notifications.ts} +126 -83
- package/services/qualifications/qualifications.client.ts +46 -91
- package/services/qualifications/qualifications.ts +250 -209
- package/services/settings/accounts.client.ts +31 -33
- package/services/settings/accounts.ts +251 -67
- 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 +7 -6
- package/services/settings/laws.client.ts +10 -25
- package/services/settings/laws.ts +30 -29
- package/services/settings/settings.client.ts +57 -103
- package/services/settings/settings.ts +237 -633
- package/services/settings/system.client.ts +103 -0
- package/services/settings/system.ts +718 -0
- package/services/stats/stats.client.ts +9 -8
- package/services/stats/stats.ts +27 -26
- package/services/sync/sync.client.ts +16 -15
- package/services/sync/sync.ts +174 -97
- package/services/sync/v2/sync.client.ts +331 -0
- package/services/sync/v2/sync.ts +1766 -0
- package/services/vehicles/vehicles.client.ts +17 -7
- package/services/vehicles/vehicles.ts +170 -25
- 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 +97 -67
- package/svcs.ts +174 -106
- package/resources/centrum/attributes.ts +0 -186
- package/resources/centrum/disponents.ts +0 -81
- package/resources/centrum/settings.ts +0 -307
- package/resources/documents/workflow.ts +0 -351
- 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/resources/sync/data.ts +0 -587
- package/resources/users/users.ts +0 -435
- 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
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
// @generated by protobuf-ts 2.10.0 with parameter optimize_speed,long_type_number,force_server_none
|
|
2
|
-
// @generated from protobuf file "resources/centrum/disponents.proto" (package "resources.centrum", syntax proto3)
|
|
3
|
-
// @ts-nocheck
|
|
4
|
-
import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
|
|
5
|
-
import type { IBinaryWriter } from "@protobuf-ts/runtime";
|
|
6
|
-
import { WireType } from "@protobuf-ts/runtime";
|
|
7
|
-
import type { BinaryReadOptions } from "@protobuf-ts/runtime";
|
|
8
|
-
import type { IBinaryReader } from "@protobuf-ts/runtime";
|
|
9
|
-
import { UnknownFieldHandler } from "@protobuf-ts/runtime";
|
|
10
|
-
import type { PartialMessage } from "@protobuf-ts/runtime";
|
|
11
|
-
import { reflectionMergePartial } from "@protobuf-ts/runtime";
|
|
12
|
-
import { MessageType } from "@protobuf-ts/runtime";
|
|
13
|
-
import { Colleague } from "../jobs/colleagues";
|
|
14
|
-
/**
|
|
15
|
-
* @generated from protobuf message resources.centrum.Disponents
|
|
16
|
-
*/
|
|
17
|
-
export interface Disponents {
|
|
18
|
-
/**
|
|
19
|
-
* @generated from protobuf field: string job = 1;
|
|
20
|
-
*/
|
|
21
|
-
job: string;
|
|
22
|
-
/**
|
|
23
|
-
* @generated from protobuf field: repeated resources.jobs.Colleague disponents = 2;
|
|
24
|
-
*/
|
|
25
|
-
disponents: Colleague[];
|
|
26
|
-
}
|
|
27
|
-
// @generated message type with reflection information, may provide speed optimized methods
|
|
28
|
-
class Disponents$Type extends MessageType<Disponents> {
|
|
29
|
-
constructor() {
|
|
30
|
-
super("resources.centrum.Disponents", [
|
|
31
|
-
{ no: 1, name: "job", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { maxLen: "20" } } } },
|
|
32
|
-
{ no: 2, name: "disponents", kind: "message", repeat: 2 /*RepeatType.UNPACKED*/, T: () => Colleague }
|
|
33
|
-
]);
|
|
34
|
-
}
|
|
35
|
-
create(value?: PartialMessage<Disponents>): Disponents {
|
|
36
|
-
const message = globalThis.Object.create((this.messagePrototype!));
|
|
37
|
-
message.job = "";
|
|
38
|
-
message.disponents = [];
|
|
39
|
-
if (value !== undefined)
|
|
40
|
-
reflectionMergePartial<Disponents>(this, message, value);
|
|
41
|
-
return message;
|
|
42
|
-
}
|
|
43
|
-
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Disponents): Disponents {
|
|
44
|
-
let message = target ?? this.create(), end = reader.pos + length;
|
|
45
|
-
while (reader.pos < end) {
|
|
46
|
-
let [fieldNo, wireType] = reader.tag();
|
|
47
|
-
switch (fieldNo) {
|
|
48
|
-
case /* string job */ 1:
|
|
49
|
-
message.job = reader.string();
|
|
50
|
-
break;
|
|
51
|
-
case /* repeated resources.jobs.Colleague disponents */ 2:
|
|
52
|
-
message.disponents.push(Colleague.internalBinaryRead(reader, reader.uint32(), options));
|
|
53
|
-
break;
|
|
54
|
-
default:
|
|
55
|
-
let u = options.readUnknownField;
|
|
56
|
-
if (u === "throw")
|
|
57
|
-
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
58
|
-
let d = reader.skip(wireType);
|
|
59
|
-
if (u !== false)
|
|
60
|
-
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
return message;
|
|
64
|
-
}
|
|
65
|
-
internalBinaryWrite(message: Disponents, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
66
|
-
/* string job = 1; */
|
|
67
|
-
if (message.job !== "")
|
|
68
|
-
writer.tag(1, WireType.LengthDelimited).string(message.job);
|
|
69
|
-
/* repeated resources.jobs.Colleague disponents = 2; */
|
|
70
|
-
for (let i = 0; i < message.disponents.length; i++)
|
|
71
|
-
Colleague.internalBinaryWrite(message.disponents[i], writer.tag(2, WireType.LengthDelimited).fork(), options).join();
|
|
72
|
-
let u = options.writeUnknownFields;
|
|
73
|
-
if (u !== false)
|
|
74
|
-
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
75
|
-
return writer;
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
/**
|
|
79
|
-
* @generated MessageType for protobuf message resources.centrum.Disponents
|
|
80
|
-
*/
|
|
81
|
-
export const Disponents = new Disponents$Type();
|
|
@@ -1,307 +0,0 @@
|
|
|
1
|
-
// @generated by protobuf-ts 2.10.0 with parameter optimize_speed,long_type_number,force_server_none
|
|
2
|
-
// @generated from protobuf file "resources/centrum/settings.proto" (package "resources.centrum", syntax proto3)
|
|
3
|
-
// @ts-nocheck
|
|
4
|
-
import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
|
|
5
|
-
import type { IBinaryWriter } from "@protobuf-ts/runtime";
|
|
6
|
-
import { WireType } from "@protobuf-ts/runtime";
|
|
7
|
-
import type { BinaryReadOptions } from "@protobuf-ts/runtime";
|
|
8
|
-
import type { IBinaryReader } from "@protobuf-ts/runtime";
|
|
9
|
-
import { UnknownFieldHandler } from "@protobuf-ts/runtime";
|
|
10
|
-
import type { PartialMessage } from "@protobuf-ts/runtime";
|
|
11
|
-
import { reflectionMergePartial } from "@protobuf-ts/runtime";
|
|
12
|
-
import { MessageType } from "@protobuf-ts/runtime";
|
|
13
|
-
/**
|
|
14
|
-
* @generated from protobuf message resources.centrum.Settings
|
|
15
|
-
*/
|
|
16
|
-
export interface Settings {
|
|
17
|
-
/**
|
|
18
|
-
* @generated from protobuf field: string job = 1;
|
|
19
|
-
*/
|
|
20
|
-
job: string;
|
|
21
|
-
/**
|
|
22
|
-
* @generated from protobuf field: bool enabled = 2;
|
|
23
|
-
*/
|
|
24
|
-
enabled: boolean;
|
|
25
|
-
/**
|
|
26
|
-
* @generated from protobuf field: resources.centrum.CentrumMode mode = 3;
|
|
27
|
-
*/
|
|
28
|
-
mode: CentrumMode;
|
|
29
|
-
/**
|
|
30
|
-
* @generated from protobuf field: resources.centrum.CentrumMode fallback_mode = 4;
|
|
31
|
-
*/
|
|
32
|
-
fallbackMode: CentrumMode;
|
|
33
|
-
/**
|
|
34
|
-
* @generated from protobuf field: optional resources.centrum.PredefinedStatus predefined_status = 5;
|
|
35
|
-
*/
|
|
36
|
-
predefinedStatus?: PredefinedStatus;
|
|
37
|
-
/**
|
|
38
|
-
* @generated from protobuf field: resources.centrum.Timings timings = 6;
|
|
39
|
-
*/
|
|
40
|
-
timings?: Timings;
|
|
41
|
-
}
|
|
42
|
-
/**
|
|
43
|
-
* @dbscanner: json
|
|
44
|
-
*
|
|
45
|
-
* @generated from protobuf message resources.centrum.PredefinedStatus
|
|
46
|
-
*/
|
|
47
|
-
export interface PredefinedStatus {
|
|
48
|
-
/**
|
|
49
|
-
* @sanitize: method=StripTags
|
|
50
|
-
*
|
|
51
|
-
* @generated from protobuf field: repeated string unit_status = 1;
|
|
52
|
-
*/
|
|
53
|
-
unitStatus: string[];
|
|
54
|
-
/**
|
|
55
|
-
* @sanitize: method=StripTags
|
|
56
|
-
*
|
|
57
|
-
* @generated from protobuf field: repeated string dispatch_status = 2;
|
|
58
|
-
*/
|
|
59
|
-
dispatchStatus: string[];
|
|
60
|
-
}
|
|
61
|
-
/**
|
|
62
|
-
* @dbscanner: json
|
|
63
|
-
*
|
|
64
|
-
* @generated from protobuf message resources.centrum.Timings
|
|
65
|
-
*/
|
|
66
|
-
export interface Timings {
|
|
67
|
-
/**
|
|
68
|
-
* @generated from protobuf field: int64 dispatch_max_wait = 1;
|
|
69
|
-
*/
|
|
70
|
-
dispatchMaxWait: number;
|
|
71
|
-
/**
|
|
72
|
-
* @generated from protobuf field: bool require_unit = 2;
|
|
73
|
-
*/
|
|
74
|
-
requireUnit: boolean;
|
|
75
|
-
/**
|
|
76
|
-
* @generated from protobuf field: int64 require_unit_reminder_seconds = 3;
|
|
77
|
-
*/
|
|
78
|
-
requireUnitReminderSeconds: number;
|
|
79
|
-
}
|
|
80
|
-
/**
|
|
81
|
-
* @generated from protobuf enum resources.centrum.CentrumMode
|
|
82
|
-
*/
|
|
83
|
-
export enum CentrumMode {
|
|
84
|
-
/**
|
|
85
|
-
* @generated from protobuf enum value: CENTRUM_MODE_UNSPECIFIED = 0;
|
|
86
|
-
*/
|
|
87
|
-
UNSPECIFIED = 0,
|
|
88
|
-
/**
|
|
89
|
-
* @generated from protobuf enum value: CENTRUM_MODE_MANUAL = 1;
|
|
90
|
-
*/
|
|
91
|
-
MANUAL = 1,
|
|
92
|
-
/**
|
|
93
|
-
* @generated from protobuf enum value: CENTRUM_MODE_CENTRAL_COMMAND = 2;
|
|
94
|
-
*/
|
|
95
|
-
CENTRAL_COMMAND = 2,
|
|
96
|
-
/**
|
|
97
|
-
* @generated from protobuf enum value: CENTRUM_MODE_AUTO_ROUND_ROBIN = 3;
|
|
98
|
-
*/
|
|
99
|
-
AUTO_ROUND_ROBIN = 3,
|
|
100
|
-
/**
|
|
101
|
-
* @generated from protobuf enum value: CENTRUM_MODE_SIMPLIFIED = 4;
|
|
102
|
-
*/
|
|
103
|
-
SIMPLIFIED = 4
|
|
104
|
-
}
|
|
105
|
-
// @generated message type with reflection information, may provide speed optimized methods
|
|
106
|
-
class Settings$Type extends MessageType<Settings> {
|
|
107
|
-
constructor() {
|
|
108
|
-
super("resources.centrum.Settings", [
|
|
109
|
-
{ no: 1, name: "job", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { maxLen: "20" } } } },
|
|
110
|
-
{ no: 2, name: "enabled", kind: "scalar", T: 8 /*ScalarType.BOOL*/ },
|
|
111
|
-
{ no: 3, name: "mode", kind: "enum", T: () => ["resources.centrum.CentrumMode", CentrumMode, "CENTRUM_MODE_"], options: { "validate.rules": { enum: { definedOnly: true } } } },
|
|
112
|
-
{ no: 4, name: "fallback_mode", kind: "enum", T: () => ["resources.centrum.CentrumMode", CentrumMode, "CENTRUM_MODE_"], options: { "validate.rules": { enum: { definedOnly: true } } } },
|
|
113
|
-
{ no: 5, name: "predefined_status", kind: "message", T: () => PredefinedStatus },
|
|
114
|
-
{ no: 6, name: "timings", kind: "message", T: () => Timings }
|
|
115
|
-
]);
|
|
116
|
-
}
|
|
117
|
-
create(value?: PartialMessage<Settings>): Settings {
|
|
118
|
-
const message = globalThis.Object.create((this.messagePrototype!));
|
|
119
|
-
message.job = "";
|
|
120
|
-
message.enabled = false;
|
|
121
|
-
message.mode = 0;
|
|
122
|
-
message.fallbackMode = 0;
|
|
123
|
-
if (value !== undefined)
|
|
124
|
-
reflectionMergePartial<Settings>(this, message, value);
|
|
125
|
-
return message;
|
|
126
|
-
}
|
|
127
|
-
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Settings): Settings {
|
|
128
|
-
let message = target ?? this.create(), end = reader.pos + length;
|
|
129
|
-
while (reader.pos < end) {
|
|
130
|
-
let [fieldNo, wireType] = reader.tag();
|
|
131
|
-
switch (fieldNo) {
|
|
132
|
-
case /* string job */ 1:
|
|
133
|
-
message.job = reader.string();
|
|
134
|
-
break;
|
|
135
|
-
case /* bool enabled */ 2:
|
|
136
|
-
message.enabled = reader.bool();
|
|
137
|
-
break;
|
|
138
|
-
case /* resources.centrum.CentrumMode mode */ 3:
|
|
139
|
-
message.mode = reader.int32();
|
|
140
|
-
break;
|
|
141
|
-
case /* resources.centrum.CentrumMode fallback_mode */ 4:
|
|
142
|
-
message.fallbackMode = reader.int32();
|
|
143
|
-
break;
|
|
144
|
-
case /* optional resources.centrum.PredefinedStatus predefined_status */ 5:
|
|
145
|
-
message.predefinedStatus = PredefinedStatus.internalBinaryRead(reader, reader.uint32(), options, message.predefinedStatus);
|
|
146
|
-
break;
|
|
147
|
-
case /* resources.centrum.Timings timings */ 6:
|
|
148
|
-
message.timings = Timings.internalBinaryRead(reader, reader.uint32(), options, message.timings);
|
|
149
|
-
break;
|
|
150
|
-
default:
|
|
151
|
-
let u = options.readUnknownField;
|
|
152
|
-
if (u === "throw")
|
|
153
|
-
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
154
|
-
let d = reader.skip(wireType);
|
|
155
|
-
if (u !== false)
|
|
156
|
-
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
return message;
|
|
160
|
-
}
|
|
161
|
-
internalBinaryWrite(message: Settings, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
162
|
-
/* string job = 1; */
|
|
163
|
-
if (message.job !== "")
|
|
164
|
-
writer.tag(1, WireType.LengthDelimited).string(message.job);
|
|
165
|
-
/* bool enabled = 2; */
|
|
166
|
-
if (message.enabled !== false)
|
|
167
|
-
writer.tag(2, WireType.Varint).bool(message.enabled);
|
|
168
|
-
/* resources.centrum.CentrumMode mode = 3; */
|
|
169
|
-
if (message.mode !== 0)
|
|
170
|
-
writer.tag(3, WireType.Varint).int32(message.mode);
|
|
171
|
-
/* resources.centrum.CentrumMode fallback_mode = 4; */
|
|
172
|
-
if (message.fallbackMode !== 0)
|
|
173
|
-
writer.tag(4, WireType.Varint).int32(message.fallbackMode);
|
|
174
|
-
/* optional resources.centrum.PredefinedStatus predefined_status = 5; */
|
|
175
|
-
if (message.predefinedStatus)
|
|
176
|
-
PredefinedStatus.internalBinaryWrite(message.predefinedStatus, writer.tag(5, WireType.LengthDelimited).fork(), options).join();
|
|
177
|
-
/* resources.centrum.Timings timings = 6; */
|
|
178
|
-
if (message.timings)
|
|
179
|
-
Timings.internalBinaryWrite(message.timings, writer.tag(6, WireType.LengthDelimited).fork(), options).join();
|
|
180
|
-
let u = options.writeUnknownFields;
|
|
181
|
-
if (u !== false)
|
|
182
|
-
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
183
|
-
return writer;
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
/**
|
|
187
|
-
* @generated MessageType for protobuf message resources.centrum.Settings
|
|
188
|
-
*/
|
|
189
|
-
export const Settings = new Settings$Type();
|
|
190
|
-
// @generated message type with reflection information, may provide speed optimized methods
|
|
191
|
-
class PredefinedStatus$Type extends MessageType<PredefinedStatus> {
|
|
192
|
-
constructor() {
|
|
193
|
-
super("resources.centrum.PredefinedStatus", [
|
|
194
|
-
{ no: 1, name: "unit_status", kind: "scalar", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { repeated: { maxItems: "20", items: { string: { maxLen: "64" } } } } } },
|
|
195
|
-
{ no: 2, name: "dispatch_status", kind: "scalar", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { repeated: { maxItems: "20", items: { string: { maxLen: "64" } } } } } }
|
|
196
|
-
]);
|
|
197
|
-
}
|
|
198
|
-
create(value?: PartialMessage<PredefinedStatus>): PredefinedStatus {
|
|
199
|
-
const message = globalThis.Object.create((this.messagePrototype!));
|
|
200
|
-
message.unitStatus = [];
|
|
201
|
-
message.dispatchStatus = [];
|
|
202
|
-
if (value !== undefined)
|
|
203
|
-
reflectionMergePartial<PredefinedStatus>(this, message, value);
|
|
204
|
-
return message;
|
|
205
|
-
}
|
|
206
|
-
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: PredefinedStatus): PredefinedStatus {
|
|
207
|
-
let message = target ?? this.create(), end = reader.pos + length;
|
|
208
|
-
while (reader.pos < end) {
|
|
209
|
-
let [fieldNo, wireType] = reader.tag();
|
|
210
|
-
switch (fieldNo) {
|
|
211
|
-
case /* repeated string unit_status */ 1:
|
|
212
|
-
message.unitStatus.push(reader.string());
|
|
213
|
-
break;
|
|
214
|
-
case /* repeated string dispatch_status */ 2:
|
|
215
|
-
message.dispatchStatus.push(reader.string());
|
|
216
|
-
break;
|
|
217
|
-
default:
|
|
218
|
-
let u = options.readUnknownField;
|
|
219
|
-
if (u === "throw")
|
|
220
|
-
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
221
|
-
let d = reader.skip(wireType);
|
|
222
|
-
if (u !== false)
|
|
223
|
-
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
224
|
-
}
|
|
225
|
-
}
|
|
226
|
-
return message;
|
|
227
|
-
}
|
|
228
|
-
internalBinaryWrite(message: PredefinedStatus, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
229
|
-
/* repeated string unit_status = 1; */
|
|
230
|
-
for (let i = 0; i < message.unitStatus.length; i++)
|
|
231
|
-
writer.tag(1, WireType.LengthDelimited).string(message.unitStatus[i]);
|
|
232
|
-
/* repeated string dispatch_status = 2; */
|
|
233
|
-
for (let i = 0; i < message.dispatchStatus.length; i++)
|
|
234
|
-
writer.tag(2, WireType.LengthDelimited).string(message.dispatchStatus[i]);
|
|
235
|
-
let u = options.writeUnknownFields;
|
|
236
|
-
if (u !== false)
|
|
237
|
-
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
238
|
-
return writer;
|
|
239
|
-
}
|
|
240
|
-
}
|
|
241
|
-
/**
|
|
242
|
-
* @generated MessageType for protobuf message resources.centrum.PredefinedStatus
|
|
243
|
-
*/
|
|
244
|
-
export const PredefinedStatus = new PredefinedStatus$Type();
|
|
245
|
-
// @generated message type with reflection information, may provide speed optimized methods
|
|
246
|
-
class Timings$Type extends MessageType<Timings> {
|
|
247
|
-
constructor() {
|
|
248
|
-
super("resources.centrum.Timings", [
|
|
249
|
-
{ no: 1, name: "dispatch_max_wait", kind: "scalar", T: 3 /*ScalarType.INT64*/, L: 2 /*LongType.NUMBER*/, options: { "validate.rules": { int64: { lt: "6000", gt: "30" } } } },
|
|
250
|
-
{ no: 2, name: "require_unit", kind: "scalar", T: 8 /*ScalarType.BOOL*/ },
|
|
251
|
-
{ no: 3, name: "require_unit_reminder_seconds", kind: "scalar", T: 3 /*ScalarType.INT64*/, L: 2 /*LongType.NUMBER*/, options: { "validate.rules": { int64: { lt: "6000", gt: "30" } } } }
|
|
252
|
-
]);
|
|
253
|
-
}
|
|
254
|
-
create(value?: PartialMessage<Timings>): Timings {
|
|
255
|
-
const message = globalThis.Object.create((this.messagePrototype!));
|
|
256
|
-
message.dispatchMaxWait = 0;
|
|
257
|
-
message.requireUnit = false;
|
|
258
|
-
message.requireUnitReminderSeconds = 0;
|
|
259
|
-
if (value !== undefined)
|
|
260
|
-
reflectionMergePartial<Timings>(this, message, value);
|
|
261
|
-
return message;
|
|
262
|
-
}
|
|
263
|
-
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Timings): Timings {
|
|
264
|
-
let message = target ?? this.create(), end = reader.pos + length;
|
|
265
|
-
while (reader.pos < end) {
|
|
266
|
-
let [fieldNo, wireType] = reader.tag();
|
|
267
|
-
switch (fieldNo) {
|
|
268
|
-
case /* int64 dispatch_max_wait */ 1:
|
|
269
|
-
message.dispatchMaxWait = reader.int64().toNumber();
|
|
270
|
-
break;
|
|
271
|
-
case /* bool require_unit */ 2:
|
|
272
|
-
message.requireUnit = reader.bool();
|
|
273
|
-
break;
|
|
274
|
-
case /* int64 require_unit_reminder_seconds */ 3:
|
|
275
|
-
message.requireUnitReminderSeconds = reader.int64().toNumber();
|
|
276
|
-
break;
|
|
277
|
-
default:
|
|
278
|
-
let u = options.readUnknownField;
|
|
279
|
-
if (u === "throw")
|
|
280
|
-
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
281
|
-
let d = reader.skip(wireType);
|
|
282
|
-
if (u !== false)
|
|
283
|
-
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
284
|
-
}
|
|
285
|
-
}
|
|
286
|
-
return message;
|
|
287
|
-
}
|
|
288
|
-
internalBinaryWrite(message: Timings, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
289
|
-
/* int64 dispatch_max_wait = 1; */
|
|
290
|
-
if (message.dispatchMaxWait !== 0)
|
|
291
|
-
writer.tag(1, WireType.Varint).int64(message.dispatchMaxWait);
|
|
292
|
-
/* bool require_unit = 2; */
|
|
293
|
-
if (message.requireUnit !== false)
|
|
294
|
-
writer.tag(2, WireType.Varint).bool(message.requireUnit);
|
|
295
|
-
/* int64 require_unit_reminder_seconds = 3; */
|
|
296
|
-
if (message.requireUnitReminderSeconds !== 0)
|
|
297
|
-
writer.tag(3, WireType.Varint).int64(message.requireUnitReminderSeconds);
|
|
298
|
-
let u = options.writeUnknownFields;
|
|
299
|
-
if (u !== false)
|
|
300
|
-
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
301
|
-
return writer;
|
|
302
|
-
}
|
|
303
|
-
}
|
|
304
|
-
/**
|
|
305
|
-
* @generated MessageType for protobuf message resources.centrum.Timings
|
|
306
|
-
*/
|
|
307
|
-
export const Timings = new Timings$Type();
|