@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
package/resources/users/users.ts
DELETED
|
@@ -1,435 +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/users/users.proto" (package "resources.users", 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 { License } from "./licenses";
|
|
14
|
-
import { UserProps } from "./props";
|
|
15
|
-
import { File } from "../filestore/file";
|
|
16
|
-
/**
|
|
17
|
-
* @generated from protobuf message resources.users.UserShort
|
|
18
|
-
*/
|
|
19
|
-
export interface UserShort {
|
|
20
|
-
/**
|
|
21
|
-
* @generated from protobuf field: int32 user_id = 1;
|
|
22
|
-
*/
|
|
23
|
-
userId: number; // @gotags: alias:"id"
|
|
24
|
-
/**
|
|
25
|
-
* @generated from protobuf field: optional string identifier = 2;
|
|
26
|
-
*/
|
|
27
|
-
identifier?: string;
|
|
28
|
-
/**
|
|
29
|
-
* @generated from protobuf field: string job = 3;
|
|
30
|
-
*/
|
|
31
|
-
job: string;
|
|
32
|
-
/**
|
|
33
|
-
* @generated from protobuf field: optional string job_label = 4;
|
|
34
|
-
*/
|
|
35
|
-
jobLabel?: string;
|
|
36
|
-
/**
|
|
37
|
-
* @generated from protobuf field: int32 job_grade = 5;
|
|
38
|
-
*/
|
|
39
|
-
jobGrade: number;
|
|
40
|
-
/**
|
|
41
|
-
* @generated from protobuf field: optional string job_grade_label = 6;
|
|
42
|
-
*/
|
|
43
|
-
jobGradeLabel?: string;
|
|
44
|
-
/**
|
|
45
|
-
* @generated from protobuf field: string firstname = 7;
|
|
46
|
-
*/
|
|
47
|
-
firstname: string;
|
|
48
|
-
/**
|
|
49
|
-
* @generated from protobuf field: string lastname = 8;
|
|
50
|
-
*/
|
|
51
|
-
lastname: string;
|
|
52
|
-
/**
|
|
53
|
-
* @generated from protobuf field: string dateofbirth = 9;
|
|
54
|
-
*/
|
|
55
|
-
dateofbirth: string;
|
|
56
|
-
/**
|
|
57
|
-
* @generated from protobuf field: optional string phone_number = 12;
|
|
58
|
-
*/
|
|
59
|
-
phoneNumber?: string;
|
|
60
|
-
/**
|
|
61
|
-
* @generated from protobuf field: optional resources.filestore.File avatar = 17;
|
|
62
|
-
*/
|
|
63
|
-
avatar?: File;
|
|
64
|
-
}
|
|
65
|
-
/**
|
|
66
|
-
* @generated from protobuf message resources.users.User
|
|
67
|
-
*/
|
|
68
|
-
export interface User {
|
|
69
|
-
/**
|
|
70
|
-
* @generated from protobuf field: int32 user_id = 1;
|
|
71
|
-
*/
|
|
72
|
-
userId: number; // @gotags: alias:"id"
|
|
73
|
-
/**
|
|
74
|
-
* @generated from protobuf field: optional string identifier = 2;
|
|
75
|
-
*/
|
|
76
|
-
identifier?: string;
|
|
77
|
-
/**
|
|
78
|
-
* @generated from protobuf field: string job = 3;
|
|
79
|
-
*/
|
|
80
|
-
job: string;
|
|
81
|
-
/**
|
|
82
|
-
* @generated from protobuf field: optional string job_label = 4;
|
|
83
|
-
*/
|
|
84
|
-
jobLabel?: string;
|
|
85
|
-
/**
|
|
86
|
-
* @generated from protobuf field: int32 job_grade = 5;
|
|
87
|
-
*/
|
|
88
|
-
jobGrade: number;
|
|
89
|
-
/**
|
|
90
|
-
* @generated from protobuf field: optional string job_grade_label = 6;
|
|
91
|
-
*/
|
|
92
|
-
jobGradeLabel?: string;
|
|
93
|
-
/**
|
|
94
|
-
* @generated from protobuf field: string firstname = 7;
|
|
95
|
-
*/
|
|
96
|
-
firstname: string;
|
|
97
|
-
/**
|
|
98
|
-
* @generated from protobuf field: string lastname = 8;
|
|
99
|
-
*/
|
|
100
|
-
lastname: string;
|
|
101
|
-
/**
|
|
102
|
-
* @generated from protobuf field: string dateofbirth = 9;
|
|
103
|
-
*/
|
|
104
|
-
dateofbirth: string;
|
|
105
|
-
/**
|
|
106
|
-
* @generated from protobuf field: optional string sex = 10;
|
|
107
|
-
*/
|
|
108
|
-
sex?: string;
|
|
109
|
-
/**
|
|
110
|
-
* @generated from protobuf field: optional string height = 11;
|
|
111
|
-
*/
|
|
112
|
-
height?: string;
|
|
113
|
-
/**
|
|
114
|
-
* @generated from protobuf field: optional string phone_number = 12;
|
|
115
|
-
*/
|
|
116
|
-
phoneNumber?: string;
|
|
117
|
-
/**
|
|
118
|
-
* @generated from protobuf field: optional int32 visum = 13;
|
|
119
|
-
*/
|
|
120
|
-
visum?: number;
|
|
121
|
-
/**
|
|
122
|
-
* @generated from protobuf field: optional int32 playtime = 14;
|
|
123
|
-
*/
|
|
124
|
-
playtime?: number;
|
|
125
|
-
/**
|
|
126
|
-
* @generated from protobuf field: resources.users.UserProps props = 15;
|
|
127
|
-
*/
|
|
128
|
-
props?: UserProps; // @gotags: alias:"fivenet_user_props"
|
|
129
|
-
/**
|
|
130
|
-
* @generated from protobuf field: repeated resources.users.License licenses = 16;
|
|
131
|
-
*/
|
|
132
|
-
licenses: License[]; // @gotags: alias:"user_licenses"
|
|
133
|
-
/**
|
|
134
|
-
* @generated from protobuf field: optional resources.filestore.File avatar = 17;
|
|
135
|
-
*/
|
|
136
|
-
avatar?: File;
|
|
137
|
-
/**
|
|
138
|
-
* @generated from protobuf field: optional string group = 18;
|
|
139
|
-
*/
|
|
140
|
-
group?: string;
|
|
141
|
-
}
|
|
142
|
-
// @generated message type with reflection information, may provide speed optimized methods
|
|
143
|
-
class UserShort$Type extends MessageType<UserShort> {
|
|
144
|
-
constructor() {
|
|
145
|
-
super("resources.users.UserShort", [
|
|
146
|
-
{ no: 1, name: "user_id", kind: "scalar", T: 5 /*ScalarType.INT32*/, options: { "validate.rules": { int32: { gt: 0 } } } },
|
|
147
|
-
{ no: 2, name: "identifier", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { maxLen: "64" } } } },
|
|
148
|
-
{ no: 3, name: "job", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { maxLen: "20" } } } },
|
|
149
|
-
{ no: 4, name: "job_label", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { maxLen: "50" } } } },
|
|
150
|
-
{ no: 5, name: "job_grade", kind: "scalar", T: 5 /*ScalarType.INT32*/, options: { "validate.rules": { int32: { gt: -1 } } } },
|
|
151
|
-
{ no: 6, name: "job_grade_label", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { maxLen: "50" } } } },
|
|
152
|
-
{ no: 7, name: "firstname", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1", maxLen: "50" } } } },
|
|
153
|
-
{ no: 8, name: "lastname", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1", maxLen: "50" } } } },
|
|
154
|
-
{ no: 9, name: "dateofbirth", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { len: "10" } } } },
|
|
155
|
-
{ no: 12, name: "phone_number", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { maxLen: "20" } } } },
|
|
156
|
-
{ no: 17, name: "avatar", kind: "message", T: () => File }
|
|
157
|
-
]);
|
|
158
|
-
}
|
|
159
|
-
create(value?: PartialMessage<UserShort>): UserShort {
|
|
160
|
-
const message = globalThis.Object.create((this.messagePrototype!));
|
|
161
|
-
message.userId = 0;
|
|
162
|
-
message.job = "";
|
|
163
|
-
message.jobGrade = 0;
|
|
164
|
-
message.firstname = "";
|
|
165
|
-
message.lastname = "";
|
|
166
|
-
message.dateofbirth = "";
|
|
167
|
-
if (value !== undefined)
|
|
168
|
-
reflectionMergePartial<UserShort>(this, message, value);
|
|
169
|
-
return message;
|
|
170
|
-
}
|
|
171
|
-
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: UserShort): UserShort {
|
|
172
|
-
let message = target ?? this.create(), end = reader.pos + length;
|
|
173
|
-
while (reader.pos < end) {
|
|
174
|
-
let [fieldNo, wireType] = reader.tag();
|
|
175
|
-
switch (fieldNo) {
|
|
176
|
-
case /* int32 user_id */ 1:
|
|
177
|
-
message.userId = reader.int32();
|
|
178
|
-
break;
|
|
179
|
-
case /* optional string identifier */ 2:
|
|
180
|
-
message.identifier = reader.string();
|
|
181
|
-
break;
|
|
182
|
-
case /* string job */ 3:
|
|
183
|
-
message.job = reader.string();
|
|
184
|
-
break;
|
|
185
|
-
case /* optional string job_label */ 4:
|
|
186
|
-
message.jobLabel = reader.string();
|
|
187
|
-
break;
|
|
188
|
-
case /* int32 job_grade */ 5:
|
|
189
|
-
message.jobGrade = reader.int32();
|
|
190
|
-
break;
|
|
191
|
-
case /* optional string job_grade_label */ 6:
|
|
192
|
-
message.jobGradeLabel = reader.string();
|
|
193
|
-
break;
|
|
194
|
-
case /* string firstname */ 7:
|
|
195
|
-
message.firstname = reader.string();
|
|
196
|
-
break;
|
|
197
|
-
case /* string lastname */ 8:
|
|
198
|
-
message.lastname = reader.string();
|
|
199
|
-
break;
|
|
200
|
-
case /* string dateofbirth */ 9:
|
|
201
|
-
message.dateofbirth = reader.string();
|
|
202
|
-
break;
|
|
203
|
-
case /* optional string phone_number */ 12:
|
|
204
|
-
message.phoneNumber = reader.string();
|
|
205
|
-
break;
|
|
206
|
-
case /* optional resources.filestore.File avatar */ 17:
|
|
207
|
-
message.avatar = File.internalBinaryRead(reader, reader.uint32(), options, message.avatar);
|
|
208
|
-
break;
|
|
209
|
-
default:
|
|
210
|
-
let u = options.readUnknownField;
|
|
211
|
-
if (u === "throw")
|
|
212
|
-
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
213
|
-
let d = reader.skip(wireType);
|
|
214
|
-
if (u !== false)
|
|
215
|
-
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
return message;
|
|
219
|
-
}
|
|
220
|
-
internalBinaryWrite(message: UserShort, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
221
|
-
/* int32 user_id = 1; */
|
|
222
|
-
if (message.userId !== 0)
|
|
223
|
-
writer.tag(1, WireType.Varint).int32(message.userId);
|
|
224
|
-
/* optional string identifier = 2; */
|
|
225
|
-
if (message.identifier !== undefined)
|
|
226
|
-
writer.tag(2, WireType.LengthDelimited).string(message.identifier);
|
|
227
|
-
/* string job = 3; */
|
|
228
|
-
if (message.job !== "")
|
|
229
|
-
writer.tag(3, WireType.LengthDelimited).string(message.job);
|
|
230
|
-
/* optional string job_label = 4; */
|
|
231
|
-
if (message.jobLabel !== undefined)
|
|
232
|
-
writer.tag(4, WireType.LengthDelimited).string(message.jobLabel);
|
|
233
|
-
/* int32 job_grade = 5; */
|
|
234
|
-
if (message.jobGrade !== 0)
|
|
235
|
-
writer.tag(5, WireType.Varint).int32(message.jobGrade);
|
|
236
|
-
/* optional string job_grade_label = 6; */
|
|
237
|
-
if (message.jobGradeLabel !== undefined)
|
|
238
|
-
writer.tag(6, WireType.LengthDelimited).string(message.jobGradeLabel);
|
|
239
|
-
/* string firstname = 7; */
|
|
240
|
-
if (message.firstname !== "")
|
|
241
|
-
writer.tag(7, WireType.LengthDelimited).string(message.firstname);
|
|
242
|
-
/* string lastname = 8; */
|
|
243
|
-
if (message.lastname !== "")
|
|
244
|
-
writer.tag(8, WireType.LengthDelimited).string(message.lastname);
|
|
245
|
-
/* string dateofbirth = 9; */
|
|
246
|
-
if (message.dateofbirth !== "")
|
|
247
|
-
writer.tag(9, WireType.LengthDelimited).string(message.dateofbirth);
|
|
248
|
-
/* optional string phone_number = 12; */
|
|
249
|
-
if (message.phoneNumber !== undefined)
|
|
250
|
-
writer.tag(12, WireType.LengthDelimited).string(message.phoneNumber);
|
|
251
|
-
/* optional resources.filestore.File avatar = 17; */
|
|
252
|
-
if (message.avatar)
|
|
253
|
-
File.internalBinaryWrite(message.avatar, writer.tag(17, WireType.LengthDelimited).fork(), options).join();
|
|
254
|
-
let u = options.writeUnknownFields;
|
|
255
|
-
if (u !== false)
|
|
256
|
-
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
257
|
-
return writer;
|
|
258
|
-
}
|
|
259
|
-
}
|
|
260
|
-
/**
|
|
261
|
-
* @generated MessageType for protobuf message resources.users.UserShort
|
|
262
|
-
*/
|
|
263
|
-
export const UserShort = new UserShort$Type();
|
|
264
|
-
// @generated message type with reflection information, may provide speed optimized methods
|
|
265
|
-
class User$Type extends MessageType<User> {
|
|
266
|
-
constructor() {
|
|
267
|
-
super("resources.users.User", [
|
|
268
|
-
{ no: 1, name: "user_id", kind: "scalar", T: 5 /*ScalarType.INT32*/, options: { "validate.rules": { int32: { gt: 0 } } } },
|
|
269
|
-
{ no: 2, name: "identifier", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { maxLen: "64" } } } },
|
|
270
|
-
{ no: 3, name: "job", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { maxLen: "20" } } } },
|
|
271
|
-
{ no: 4, name: "job_label", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { maxLen: "50" } } } },
|
|
272
|
-
{ no: 5, name: "job_grade", kind: "scalar", T: 5 /*ScalarType.INT32*/, options: { "validate.rules": { int32: { gt: -1 } } } },
|
|
273
|
-
{ no: 6, name: "job_grade_label", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { maxLen: "50" } } } },
|
|
274
|
-
{ no: 7, name: "firstname", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1", maxLen: "50" } } } },
|
|
275
|
-
{ no: 8, name: "lastname", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1", maxLen: "50" } } } },
|
|
276
|
-
{ no: 9, name: "dateofbirth", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { len: "10" } } } },
|
|
277
|
-
{ no: 10, name: "sex", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1", maxLen: "2" } } } },
|
|
278
|
-
{ no: 11, name: "height", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/ },
|
|
279
|
-
{ no: 12, name: "phone_number", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { maxLen: "20" } } } },
|
|
280
|
-
{ no: 13, name: "visum", kind: "scalar", opt: true, T: 5 /*ScalarType.INT32*/, options: { "validate.rules": { int32: { gte: 0 } } } },
|
|
281
|
-
{ no: 14, name: "playtime", kind: "scalar", opt: true, T: 5 /*ScalarType.INT32*/, options: { "validate.rules": { int32: { gte: 0 } } } },
|
|
282
|
-
{ no: 15, name: "props", kind: "message", T: () => UserProps },
|
|
283
|
-
{ no: 16, name: "licenses", kind: "message", repeat: 2 /*RepeatType.UNPACKED*/, T: () => License },
|
|
284
|
-
{ no: 17, name: "avatar", kind: "message", T: () => File },
|
|
285
|
-
{ no: 18, name: "group", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { maxLen: "50" } } } }
|
|
286
|
-
]);
|
|
287
|
-
}
|
|
288
|
-
create(value?: PartialMessage<User>): User {
|
|
289
|
-
const message = globalThis.Object.create((this.messagePrototype!));
|
|
290
|
-
message.userId = 0;
|
|
291
|
-
message.job = "";
|
|
292
|
-
message.jobGrade = 0;
|
|
293
|
-
message.firstname = "";
|
|
294
|
-
message.lastname = "";
|
|
295
|
-
message.dateofbirth = "";
|
|
296
|
-
message.licenses = [];
|
|
297
|
-
if (value !== undefined)
|
|
298
|
-
reflectionMergePartial<User>(this, message, value);
|
|
299
|
-
return message;
|
|
300
|
-
}
|
|
301
|
-
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: User): User {
|
|
302
|
-
let message = target ?? this.create(), end = reader.pos + length;
|
|
303
|
-
while (reader.pos < end) {
|
|
304
|
-
let [fieldNo, wireType] = reader.tag();
|
|
305
|
-
switch (fieldNo) {
|
|
306
|
-
case /* int32 user_id */ 1:
|
|
307
|
-
message.userId = reader.int32();
|
|
308
|
-
break;
|
|
309
|
-
case /* optional string identifier */ 2:
|
|
310
|
-
message.identifier = reader.string();
|
|
311
|
-
break;
|
|
312
|
-
case /* string job */ 3:
|
|
313
|
-
message.job = reader.string();
|
|
314
|
-
break;
|
|
315
|
-
case /* optional string job_label */ 4:
|
|
316
|
-
message.jobLabel = reader.string();
|
|
317
|
-
break;
|
|
318
|
-
case /* int32 job_grade */ 5:
|
|
319
|
-
message.jobGrade = reader.int32();
|
|
320
|
-
break;
|
|
321
|
-
case /* optional string job_grade_label */ 6:
|
|
322
|
-
message.jobGradeLabel = reader.string();
|
|
323
|
-
break;
|
|
324
|
-
case /* string firstname */ 7:
|
|
325
|
-
message.firstname = reader.string();
|
|
326
|
-
break;
|
|
327
|
-
case /* string lastname */ 8:
|
|
328
|
-
message.lastname = reader.string();
|
|
329
|
-
break;
|
|
330
|
-
case /* string dateofbirth */ 9:
|
|
331
|
-
message.dateofbirth = reader.string();
|
|
332
|
-
break;
|
|
333
|
-
case /* optional string sex */ 10:
|
|
334
|
-
message.sex = reader.string();
|
|
335
|
-
break;
|
|
336
|
-
case /* optional string height */ 11:
|
|
337
|
-
message.height = reader.string();
|
|
338
|
-
break;
|
|
339
|
-
case /* optional string phone_number */ 12:
|
|
340
|
-
message.phoneNumber = reader.string();
|
|
341
|
-
break;
|
|
342
|
-
case /* optional int32 visum */ 13:
|
|
343
|
-
message.visum = reader.int32();
|
|
344
|
-
break;
|
|
345
|
-
case /* optional int32 playtime */ 14:
|
|
346
|
-
message.playtime = reader.int32();
|
|
347
|
-
break;
|
|
348
|
-
case /* resources.users.UserProps props */ 15:
|
|
349
|
-
message.props = UserProps.internalBinaryRead(reader, reader.uint32(), options, message.props);
|
|
350
|
-
break;
|
|
351
|
-
case /* repeated resources.users.License licenses */ 16:
|
|
352
|
-
message.licenses.push(License.internalBinaryRead(reader, reader.uint32(), options));
|
|
353
|
-
break;
|
|
354
|
-
case /* optional resources.filestore.File avatar */ 17:
|
|
355
|
-
message.avatar = File.internalBinaryRead(reader, reader.uint32(), options, message.avatar);
|
|
356
|
-
break;
|
|
357
|
-
case /* optional string group */ 18:
|
|
358
|
-
message.group = reader.string();
|
|
359
|
-
break;
|
|
360
|
-
default:
|
|
361
|
-
let u = options.readUnknownField;
|
|
362
|
-
if (u === "throw")
|
|
363
|
-
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
364
|
-
let d = reader.skip(wireType);
|
|
365
|
-
if (u !== false)
|
|
366
|
-
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
367
|
-
}
|
|
368
|
-
}
|
|
369
|
-
return message;
|
|
370
|
-
}
|
|
371
|
-
internalBinaryWrite(message: User, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
372
|
-
/* int32 user_id = 1; */
|
|
373
|
-
if (message.userId !== 0)
|
|
374
|
-
writer.tag(1, WireType.Varint).int32(message.userId);
|
|
375
|
-
/* optional string identifier = 2; */
|
|
376
|
-
if (message.identifier !== undefined)
|
|
377
|
-
writer.tag(2, WireType.LengthDelimited).string(message.identifier);
|
|
378
|
-
/* string job = 3; */
|
|
379
|
-
if (message.job !== "")
|
|
380
|
-
writer.tag(3, WireType.LengthDelimited).string(message.job);
|
|
381
|
-
/* optional string job_label = 4; */
|
|
382
|
-
if (message.jobLabel !== undefined)
|
|
383
|
-
writer.tag(4, WireType.LengthDelimited).string(message.jobLabel);
|
|
384
|
-
/* int32 job_grade = 5; */
|
|
385
|
-
if (message.jobGrade !== 0)
|
|
386
|
-
writer.tag(5, WireType.Varint).int32(message.jobGrade);
|
|
387
|
-
/* optional string job_grade_label = 6; */
|
|
388
|
-
if (message.jobGradeLabel !== undefined)
|
|
389
|
-
writer.tag(6, WireType.LengthDelimited).string(message.jobGradeLabel);
|
|
390
|
-
/* string firstname = 7; */
|
|
391
|
-
if (message.firstname !== "")
|
|
392
|
-
writer.tag(7, WireType.LengthDelimited).string(message.firstname);
|
|
393
|
-
/* string lastname = 8; */
|
|
394
|
-
if (message.lastname !== "")
|
|
395
|
-
writer.tag(8, WireType.LengthDelimited).string(message.lastname);
|
|
396
|
-
/* string dateofbirth = 9; */
|
|
397
|
-
if (message.dateofbirth !== "")
|
|
398
|
-
writer.tag(9, WireType.LengthDelimited).string(message.dateofbirth);
|
|
399
|
-
/* optional string sex = 10; */
|
|
400
|
-
if (message.sex !== undefined)
|
|
401
|
-
writer.tag(10, WireType.LengthDelimited).string(message.sex);
|
|
402
|
-
/* optional string height = 11; */
|
|
403
|
-
if (message.height !== undefined)
|
|
404
|
-
writer.tag(11, WireType.LengthDelimited).string(message.height);
|
|
405
|
-
/* optional string phone_number = 12; */
|
|
406
|
-
if (message.phoneNumber !== undefined)
|
|
407
|
-
writer.tag(12, WireType.LengthDelimited).string(message.phoneNumber);
|
|
408
|
-
/* optional int32 visum = 13; */
|
|
409
|
-
if (message.visum !== undefined)
|
|
410
|
-
writer.tag(13, WireType.Varint).int32(message.visum);
|
|
411
|
-
/* optional int32 playtime = 14; */
|
|
412
|
-
if (message.playtime !== undefined)
|
|
413
|
-
writer.tag(14, WireType.Varint).int32(message.playtime);
|
|
414
|
-
/* resources.users.UserProps props = 15; */
|
|
415
|
-
if (message.props)
|
|
416
|
-
UserProps.internalBinaryWrite(message.props, writer.tag(15, WireType.LengthDelimited).fork(), options).join();
|
|
417
|
-
/* repeated resources.users.License licenses = 16; */
|
|
418
|
-
for (let i = 0; i < message.licenses.length; i++)
|
|
419
|
-
License.internalBinaryWrite(message.licenses[i], writer.tag(16, WireType.LengthDelimited).fork(), options).join();
|
|
420
|
-
/* optional resources.filestore.File avatar = 17; */
|
|
421
|
-
if (message.avatar)
|
|
422
|
-
File.internalBinaryWrite(message.avatar, writer.tag(17, WireType.LengthDelimited).fork(), options).join();
|
|
423
|
-
/* optional string group = 18; */
|
|
424
|
-
if (message.group !== undefined)
|
|
425
|
-
writer.tag(18, WireType.LengthDelimited).string(message.group);
|
|
426
|
-
let u = options.writeUnknownFields;
|
|
427
|
-
if (u !== false)
|
|
428
|
-
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
429
|
-
return writer;
|
|
430
|
-
}
|
|
431
|
-
}
|
|
432
|
-
/**
|
|
433
|
-
* @generated MessageType for protobuf message resources.users.User
|
|
434
|
-
*/
|
|
435
|
-
export const User = new User$Type();
|
|
@@ -1,41 +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 "services/internet/ads.proto" (package "services.internet", syntax proto3)
|
|
3
|
-
// @ts-nocheck
|
|
4
|
-
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
|
5
|
-
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
|
|
6
|
-
import { AdsService } from "./ads";
|
|
7
|
-
import { stackIntercept } from "@protobuf-ts/runtime-rpc";
|
|
8
|
-
import type { GetAdsResponse } from "./ads";
|
|
9
|
-
import type { GetAdsRequest } from "./ads";
|
|
10
|
-
import type { UnaryCall } from "@protobuf-ts/runtime-rpc";
|
|
11
|
-
import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
|
|
12
|
-
/**
|
|
13
|
-
* @generated from protobuf service services.internet.AdsService
|
|
14
|
-
*/
|
|
15
|
-
export interface IAdsServiceClient {
|
|
16
|
-
/**
|
|
17
|
-
* @perm: Name=Any
|
|
18
|
-
*
|
|
19
|
-
* @generated from protobuf rpc: GetAds(services.internet.GetAdsRequest) returns (services.internet.GetAdsResponse);
|
|
20
|
-
*/
|
|
21
|
-
getAds(input: GetAdsRequest, options?: RpcOptions): UnaryCall<GetAdsRequest, GetAdsResponse>;
|
|
22
|
-
}
|
|
23
|
-
/**
|
|
24
|
-
* @generated from protobuf service services.internet.AdsService
|
|
25
|
-
*/
|
|
26
|
-
export class AdsServiceClient implements IAdsServiceClient, ServiceInfo {
|
|
27
|
-
typeName = AdsService.typeName;
|
|
28
|
-
methods = AdsService.methods;
|
|
29
|
-
options = AdsService.options;
|
|
30
|
-
constructor(private readonly _transport: RpcTransport) {
|
|
31
|
-
}
|
|
32
|
-
/**
|
|
33
|
-
* @perm: Name=Any
|
|
34
|
-
*
|
|
35
|
-
* @generated from protobuf rpc: GetAds(services.internet.GetAdsRequest) returns (services.internet.GetAdsResponse);
|
|
36
|
-
*/
|
|
37
|
-
getAds(input: GetAdsRequest, options?: RpcOptions): UnaryCall<GetAdsRequest, GetAdsResponse> {
|
|
38
|
-
const method = this.methods[0], opt = this._transport.mergeOptions(options);
|
|
39
|
-
return stackIntercept<GetAdsRequest, GetAdsResponse>("unary", this._transport, method, opt, input);
|
|
40
|
-
}
|
|
41
|
-
}
|
package/services/internet/ads.ts
DELETED
|
@@ -1,145 +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 "services/internet/ads.proto" (package "services.internet", syntax proto3)
|
|
3
|
-
// @ts-nocheck
|
|
4
|
-
import { ServiceType } from "@protobuf-ts/runtime-rpc";
|
|
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 { Ad } from "../../resources/internet/ads";
|
|
15
|
-
import { AdType } from "../../resources/internet/ads";
|
|
16
|
-
/**
|
|
17
|
-
* @generated from protobuf message services.internet.GetAdsRequest
|
|
18
|
-
*/
|
|
19
|
-
export interface GetAdsRequest {
|
|
20
|
-
/**
|
|
21
|
-
* @generated from protobuf field: resources.internet.AdType ad_type = 1;
|
|
22
|
-
*/
|
|
23
|
-
adType: AdType;
|
|
24
|
-
/**
|
|
25
|
-
* @generated from protobuf field: int32 count = 2;
|
|
26
|
-
*/
|
|
27
|
-
count: number;
|
|
28
|
-
}
|
|
29
|
-
/**
|
|
30
|
-
* @generated from protobuf message services.internet.GetAdsResponse
|
|
31
|
-
*/
|
|
32
|
-
export interface GetAdsResponse {
|
|
33
|
-
/**
|
|
34
|
-
* @generated from protobuf field: repeated resources.internet.Ad ads = 1;
|
|
35
|
-
*/
|
|
36
|
-
ads: Ad[];
|
|
37
|
-
}
|
|
38
|
-
// @generated message type with reflection information, may provide speed optimized methods
|
|
39
|
-
class GetAdsRequest$Type extends MessageType<GetAdsRequest> {
|
|
40
|
-
constructor() {
|
|
41
|
-
super("services.internet.GetAdsRequest", [
|
|
42
|
-
{ no: 1, name: "ad_type", kind: "enum", T: () => ["resources.internet.AdType", AdType, "AD_TYPE_"], options: { "validate.rules": { enum: { definedOnly: true } } } },
|
|
43
|
-
{ no: 2, name: "count", kind: "scalar", T: 5 /*ScalarType.INT32*/ }
|
|
44
|
-
]);
|
|
45
|
-
}
|
|
46
|
-
create(value?: PartialMessage<GetAdsRequest>): GetAdsRequest {
|
|
47
|
-
const message = globalThis.Object.create((this.messagePrototype!));
|
|
48
|
-
message.adType = 0;
|
|
49
|
-
message.count = 0;
|
|
50
|
-
if (value !== undefined)
|
|
51
|
-
reflectionMergePartial<GetAdsRequest>(this, message, value);
|
|
52
|
-
return message;
|
|
53
|
-
}
|
|
54
|
-
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetAdsRequest): GetAdsRequest {
|
|
55
|
-
let message = target ?? this.create(), end = reader.pos + length;
|
|
56
|
-
while (reader.pos < end) {
|
|
57
|
-
let [fieldNo, wireType] = reader.tag();
|
|
58
|
-
switch (fieldNo) {
|
|
59
|
-
case /* resources.internet.AdType ad_type */ 1:
|
|
60
|
-
message.adType = reader.int32();
|
|
61
|
-
break;
|
|
62
|
-
case /* int32 count */ 2:
|
|
63
|
-
message.count = reader.int32();
|
|
64
|
-
break;
|
|
65
|
-
default:
|
|
66
|
-
let u = options.readUnknownField;
|
|
67
|
-
if (u === "throw")
|
|
68
|
-
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
69
|
-
let d = reader.skip(wireType);
|
|
70
|
-
if (u !== false)
|
|
71
|
-
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
return message;
|
|
75
|
-
}
|
|
76
|
-
internalBinaryWrite(message: GetAdsRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
77
|
-
/* resources.internet.AdType ad_type = 1; */
|
|
78
|
-
if (message.adType !== 0)
|
|
79
|
-
writer.tag(1, WireType.Varint).int32(message.adType);
|
|
80
|
-
/* int32 count = 2; */
|
|
81
|
-
if (message.count !== 0)
|
|
82
|
-
writer.tag(2, WireType.Varint).int32(message.count);
|
|
83
|
-
let u = options.writeUnknownFields;
|
|
84
|
-
if (u !== false)
|
|
85
|
-
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
86
|
-
return writer;
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
/**
|
|
90
|
-
* @generated MessageType for protobuf message services.internet.GetAdsRequest
|
|
91
|
-
*/
|
|
92
|
-
export const GetAdsRequest = new GetAdsRequest$Type();
|
|
93
|
-
// @generated message type with reflection information, may provide speed optimized methods
|
|
94
|
-
class GetAdsResponse$Type extends MessageType<GetAdsResponse> {
|
|
95
|
-
constructor() {
|
|
96
|
-
super("services.internet.GetAdsResponse", [
|
|
97
|
-
{ no: 1, name: "ads", kind: "message", repeat: 2 /*RepeatType.UNPACKED*/, T: () => Ad }
|
|
98
|
-
]);
|
|
99
|
-
}
|
|
100
|
-
create(value?: PartialMessage<GetAdsResponse>): GetAdsResponse {
|
|
101
|
-
const message = globalThis.Object.create((this.messagePrototype!));
|
|
102
|
-
message.ads = [];
|
|
103
|
-
if (value !== undefined)
|
|
104
|
-
reflectionMergePartial<GetAdsResponse>(this, message, value);
|
|
105
|
-
return message;
|
|
106
|
-
}
|
|
107
|
-
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetAdsResponse): GetAdsResponse {
|
|
108
|
-
let message = target ?? this.create(), end = reader.pos + length;
|
|
109
|
-
while (reader.pos < end) {
|
|
110
|
-
let [fieldNo, wireType] = reader.tag();
|
|
111
|
-
switch (fieldNo) {
|
|
112
|
-
case /* repeated resources.internet.Ad ads */ 1:
|
|
113
|
-
message.ads.push(Ad.internalBinaryRead(reader, reader.uint32(), options));
|
|
114
|
-
break;
|
|
115
|
-
default:
|
|
116
|
-
let u = options.readUnknownField;
|
|
117
|
-
if (u === "throw")
|
|
118
|
-
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
119
|
-
let d = reader.skip(wireType);
|
|
120
|
-
if (u !== false)
|
|
121
|
-
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
return message;
|
|
125
|
-
}
|
|
126
|
-
internalBinaryWrite(message: GetAdsResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
127
|
-
/* repeated resources.internet.Ad ads = 1; */
|
|
128
|
-
for (let i = 0; i < message.ads.length; i++)
|
|
129
|
-
Ad.internalBinaryWrite(message.ads[i], writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
|
130
|
-
let u = options.writeUnknownFields;
|
|
131
|
-
if (u !== false)
|
|
132
|
-
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
133
|
-
return writer;
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
/**
|
|
137
|
-
* @generated MessageType for protobuf message services.internet.GetAdsResponse
|
|
138
|
-
*/
|
|
139
|
-
export const GetAdsResponse = new GetAdsResponse$Type();
|
|
140
|
-
/**
|
|
141
|
-
* @generated ServiceType for protobuf service services.internet.AdsService
|
|
142
|
-
*/
|
|
143
|
-
export const AdsService = new ServiceType("services.internet.AdsService", [
|
|
144
|
-
{ name: "GetAds", options: {}, I: GetAdsRequest, O: GetAdsResponse }
|
|
145
|
-
]);
|